Skip to content
Snippets Groups Projects
Commit b9db9478 authored by Tor-Einar Skog's avatar Tor-Einar Skog
Browse files

Convert legend to Json

parent 7dd6c6d0
Branches
No related tags found
No related merge requests found
...@@ -106,12 +106,34 @@ LAYER ...@@ -106,12 +106,34 @@ LAYER
"wms_title" "Carrot rust fly (Psila rosae) temperature model {{ timestep_date }}" "wms_title" "Carrot rust fly (Psila rosae) temperature model {{ timestep_date }}"
{% for language in languages %} {% for language in languages %}
"wms_abstract.{{language.language_code}}" " "wms_abstract.{{language.language_code}}" "
<ul style=\"list-style: none; padding: 0;\"> {
<li style=\"margin-bottom: 5px;\"><span style=\"background-color: #707070;\">&nbsp;&nbsp;&nbsp;</span> {{language.no_forecast}}</li> \"legendItems\": [
<li style=\"margin-bottom: 5px;\"><span style=\"background-color: #00B457;\">&nbsp;&nbsp;&nbsp;</span> {{language.no_risk}}</li> {
<li style=\"margin-bottom: 5px;\"><span style=\"background-color: #FFCC00;\">&nbsp;&nbsp;&nbsp;</span> {{language.possible_risk}}</li> \"isWarningStatus\": true,
<li><span style=\"background-color: #FF0000;\">&nbsp;&nbsp;&nbsp;</span> {{language.high_risk}}</li> \"classification\": 0,
</ul> \"legendLabel\": \"{{ language.no_forecast }}\",
\"legendIconCSS\": \"width: 25px; background-color: #707070;\"
},
{
\"isWarningStatus\": true,
\"classification\": 2,
\"legendLabel\": \"{{ language.no_risk }}\",
\"legendIconCSS\": \"width: 25px; background-color: #00B457;\"
},
{
\"isWarningStatus\": true,
\"classification\": 3,
\"legendLabel\": \"{{ language.possible_risk }}\",
\"legendIconCSS\": \"width: 25px; background-color: #FFCC00;\"
},
{
\"isWarningStatus\": true,
\"classification\": 4,
\"legendLabel\": \"{{ language.high_risk }}\",
\"legendIconCSS\": \"width: 25px; background-color: #FF0000;\"
}
]
}
" "
{% endfor %} {% endfor %}
END END
...@@ -159,6 +181,16 @@ LAYER ...@@ -159,6 +181,16 @@ LAYER
"wms_title" "Carrot rust fly (Psila rosae) temperature model Day Degrees {{ timestep_date }}" "wms_title" "Carrot rust fly (Psila rosae) temperature model Day Degrees {{ timestep_date }}"
{% for language in languages %} {% for language in languages %}
"wms_abstract.{{language.language_code}}" " "wms_abstract.{{language.language_code}}" "
{
\"legendItems\": [
{
\"isWarningStatus\": false,
\"classification\": 0,
\"legendLabel\": \"{{ language.day_degrees }}\",
\"legendIconCSS\": \"width: 25px; background: linear-gradient(to right, #0000FF, #FF0000);\"
}
]
}
<ul style=\"list-style: none; padding: 0;\"> <ul style=\"list-style: none; padding: 0;\">
<li style=\"margin-bottom: 5px;\"><span style=\"display: inline-block; width: 25px; background: linear-gradient(to right, #0000FF, #FF0000);\">&nbsp;</span> {{language.day_degrees}}</li> <li style=\"margin-bottom: 5px;\"><span style=\"display: inline-block; width: 25px; background: linear-gradient(to right, #0000FF, #FF0000);\">&nbsp;</span> {{language.day_degrees}}</li>
</ul> </ul>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment