new color for submitted planning applications

This commit is contained in:
Mateusz Konieczny 2022-12-22 16:32:38 +01:00
parent 80714255b1
commit 18fd538609
2 changed files with 9 additions and 9 deletions

View File

@ -388,8 +388,8 @@
<Style name="planning_applications_status_all">
<Rule>
<Filter>[status] = "Submitted"</Filter>
<PolygonSymbolizer fill="#800080"/>
<LineSymbolizer stroke="#800080" stroke-width="1.75" />
<PolygonSymbolizer fill="#a040a0"/>
<LineSymbolizer stroke="#a040a0" stroke-width="1.75" />
</Rule>
<Rule>
<Filter>[status] = "Approved"</Filter>
@ -425,8 +425,8 @@
<Style name="planning_applications_status_recent">
<Rule>
<Filter>[status] = "Submitted" and [days_since_registered_with_local_authority_date] &lt; 366</Filter>
<PolygonSymbolizer fill="#800080"/>
<LineSymbolizer stroke="#800080" stroke-width="1.75" />
<PolygonSymbolizer fill="#a040a0"/>
<LineSymbolizer stroke="#a040a0" stroke-width="1.75" />
</Rule>
<Rule>
<Filter>[status] = "Approved" and [days_since_decision_date] &lt; 366</Filter>
@ -457,8 +457,8 @@
<Style name="planning_applications_status_very_recent">
<Rule>
<Filter>[status] = "Submitted" and [days_since_registered_with_local_authority_date] &lt;= 30</Filter>
<PolygonSymbolizer fill="#800080"/>
<LineSymbolizer stroke="#800080" stroke-width="1.75" />
<PolygonSymbolizer fill="#a040a0"/>
<LineSymbolizer stroke="#a040a0" stroke-width="1.75" />
</Rule>
<Rule>
<Filter>[status] = "Approved" and [days_since_decision_date] &lt;= 30</Filter>

View File

@ -177,7 +177,7 @@ export const categoryMapsConfig: {[key in Category]: CategoryMapDefinition[]} =
title: 'All planning applications available from GLA (official data)',
disclaimer: 'The map shows official data available from the GLA Planning London Datahub. What you are looking at is mainly applications from 2019 onwards.',
elements: [
{ color: '#800080', text: 'Submitted, awaiting decision' },
{ color: '#a040a0', text: 'Submitted, awaiting decision' },
{ color: '#fff200', text: 'Appeal In Progress' },
{ color: '#16cf15', text: 'Approved' },
{ color: '#e31d23', text: 'Rejected' },
@ -192,7 +192,7 @@ export const categoryMapsConfig: {[key in Category]: CategoryMapDefinition[]} =
title: 'Last 12 months - planning applications submissions/decisions (official data)',
disclaimer: 'The map shows applications where the submission or decision data falls within last 12 months.',
elements: [
{ color: '#800080', text: 'Submitted, awaiting decision' },
{ color: '#a040a0', text: 'Submitted, awaiting decision' },
{ color: '#fff200', text: 'Appeal In Progress' },
{ color: '#16cf15', text: 'Approved' },
{ color: '#e31d23', text: 'Rejected' },
@ -207,7 +207,7 @@ export const categoryMapsConfig: {[key in Category]: CategoryMapDefinition[]} =
title: 'Last 30 days - planning applications submissions/decisions (official data)',
disclaimer: 'The map shows applications where the submission or decision data falls within last 30 days.',
elements: [
{ color: '#800080', text: 'Submitted, awaiting decision' },
{ color: '#a040a0', text: 'Submitted, awaiting decision' },
{ color: '#fff200', text: 'Appeal In Progress' },
{ color: '#16cf15', text: 'Approved' },
{ color: '#e31d23', text: 'Rejected' },