Skip to content
Snippets Groups Projects
Commit 8c7453f9 authored by Lene Wasskog's avatar Lene Wasskog
Browse files

feat: Change range to 10-20

parent 8eca722d
No related branches found
No related tags found
No related merge requests found
Pipeline #3772 passed
...@@ -66,7 +66,7 @@ WEB ...@@ -66,7 +66,7 @@ WEB
<h3>Explanation of parameters</h3> <h3>Explanation of parameters</h3>
<ul> <ul>
<li>Warning status = Yellow signifies temperatures below 12°C and low migration risk. Migrations begin at 12°C (orange), and large numbers migrate above 15 °C (red).</li> <li>Warning status = Yellow signifies temperatures below 12°C and low migration risk. Migrations begin at 12°C (orange), and large numbers migrate above 15 °C (red).</li>
<li><span itemprop='temperature'>Maximum air temperature</span> = Areas with daily maximum air temperatures below 12°C are shaded in blue, indicating cooler weather. As temperatures increase, the color shifts gradually to red, with a full red shade marking areas above 22°C. </li> <li><span itemprop='temperature'>Maximum air temperature</span> = Areas with daily maximum air temperatures below 10°C are shaded in blue, indicating cooler weather. As temperatures increase, the color shifts gradually to red, with a full red shade marking areas above 20°C. </li>
</ul> </ul>
</div> </div>
" "
...@@ -195,23 +195,23 @@ LAYER ...@@ -195,23 +195,23 @@ LAYER
END END
CLASSITEM "[pixel]" CLASSITEM "[pixel]"
CLASS CLASS
NAME "Below 12" NAME "Below 10"
EXPRESSION ([pixel] < 12) EXPRESSION ([pixel] < 10)
STYLE STYLE
COLOR 0 0 255 # RGB for blue COLOR 0 0 255 # RGB for blue
END END
END END
CLASS CLASS
NAME "Temperature range" NAME "Temperature range"
EXPRESSION ([pixel] >= 12 AND [pixel] <= 22) EXPRESSION ([pixel] >= 10 AND [pixel] <= 20)
STYLE STYLE
DATARANGE 12 22 DATARANGE 10 20
COLORRANGE 0 0 255 255 0 0 COLORRANGE 0 0 255 255 0 0
END END
END END
CLASS CLASS
NAME "Above 22" NAME "Above 20"
EXPRESSION ([pixel] > 22) EXPRESSION ([pixel] > 20)
STYLE STYLE
COLOR 255 0 0 # RGB for red COLOR 255 0 0 # RGB for red
END END
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment