Revert changes to Basic Typology Classification

Key to be different from dropdown text
This commit is contained in:
Mike Simpson 2023-07-26 15:30:56 +01:00
parent 75fe7dda4c
commit 06de97145e
2 changed files with 18 additions and 18 deletions

View File

@ -975,39 +975,39 @@
</Style> </Style>
<Style name="typology_classification"> <Style name="typology_classification">
<Rule> <Rule>
<Filter>[typology_classification] = "1-3 storeys: Detached"</Filter> <Filter>[typology_classification] = "Low-rise: Not part of a group/cluster (1-3 core floors- excluding extensions)"</Filter>
<PolygonSymbolizer fill="#002C7C" /> <PolygonSymbolizer fill="#002C7C" />
</Rule> </Rule>
<Rule> <Rule>
<Filter>[typology_classification] = "1-3 storeys: Tightly grouped"</Filter> <Filter>[typology_classification] = "Low-rise: Part of dense block/row/terrace"</Filter>
<PolygonSymbolizer fill="#006FA4" /> <PolygonSymbolizer fill="#006FA4" />
</Rule> </Rule>
<Rule> <Rule>
<Filter>[typology_classification] = "1-3 storeys: Loosely grouped"</Filter> <Filter>[typology_classification] = "Low-rise: Part of group of widely spaced blocks (includes semi-detached houses)"</Filter>
<PolygonSymbolizer fill="#00B2CB" /> <PolygonSymbolizer fill="#00B2CB" />
</Rule> </Rule>
<Rule> <Rule>
<Filter>[typology_classification] = "4-7 storeys: Detached"</Filter> <Filter>[typology_classification] = "Mid-rise: Not part of a group/cluster (4-7 core floors)"</Filter>
<PolygonSymbolizer fill="#FF5D00" /> <PolygonSymbolizer fill="#FF5D00" />
</Rule> </Rule>
<Rule> <Rule>
<Filter>[typology_classification] = "4-7 storeys: Tightly grouped"</Filter> <Filter>[typology_classification] = "Mid-rise: Part of group of densely spaced blocks"</Filter>
<PolygonSymbolizer fill="#FF8000" /> <PolygonSymbolizer fill="#FF8000" />
</Rule> </Rule>
<Rule> <Rule>
<Filter>[typology_classification] = "4-7 storeys: Loosely grouped"</Filter> <Filter>[typology_classification] = "Mid-rise: Part of group of widely spaced blocks"</Filter>
<PolygonSymbolizer fill="#FFA200" /> <PolygonSymbolizer fill="#FFA200" />
</Rule> </Rule>
<Rule> <Rule>
<Filter>[typology_classification] = "8+ storeys: Detached"</Filter> <Filter>[typology_classification] = "High rise: Not part of a group/cluster"</Filter>
<PolygonSymbolizer fill="#580C04" /> <PolygonSymbolizer fill="#580C04" />
</Rule> </Rule>
<Rule> <Rule>
<Filter>[typology_classification] = "8+ storeys: Tightly grouped"</Filter> <Filter>[typology_classification] = "High-rise: Part of group of densely spaced blocks (8 + core floors)"</Filter>
<PolygonSymbolizer fill="#AA1E0E" /> <PolygonSymbolizer fill="#AA1E0E" />
</Rule> </Rule>
<Rule> <Rule>
<Filter>[typology_classification] = "8+ storeys: Loosely grouped"</Filter> <Filter>[typology_classification] = "High-rise: Part of group of widely spaced blocks"</Filter>
<PolygonSymbolizer fill="#FB2F18" /> <PolygonSymbolizer fill="#FB2F18" />
</Rule> </Rule>

View File

@ -305,15 +305,15 @@ export const categoryMapsConfig: {[key in Category]: CategoryMapDefinition[]} =
legend: { legend: {
title: 'Typology classification', title: 'Typology classification',
elements: [ elements: [
{ color: '#002C7C', text: '1-3 storeys: Detached' }, { color: '#002C7C', text: 'Low-rise: Not part of a group/cluster (1-3 core floors- excluding extensions)' },
{ color: '#006FA4', text: '1-3 storeys: Tightly grouped' }, { color: '#006FA4', text: 'Low-rise: Part of dense block/row/terrace' },
{ color: '#00B2CB', text: '1-3 storeys: Loosely grouped' }, { color: '#00B2CB', text: 'Low-rise: Part of group of widely spaced blocks (includes semi-detached houses)' },
{ color: '#FF5D00', text: '4-7 storeys: Detached' }, { color: '#FF5D00', text: 'Mid-rise: Not part of a group/cluster (4-7 core floors)' },
{ color: '#FF8000', text: '4-7 storeys: Tightly grouped' }, { color: '#FF8000', text: 'Mid-rise: Part of group of densely spaced blocks' },
{ color: '#FFA200', text: '4-7 storeys: Loosely grouped' }, { color: '#FFA200', text: 'Mid-rise: Part of group of widely spaced blocks' },
{ color: '#580C04', text: '8+ storeys: Detached' }, { color: '#580C04', text: 'High rise: Not part of a group/cluster' },
{ color: '#AA1E0E', text: '8+ storeys: Tightly grouped' }, { color: '#AA1E0E', text: 'High-rise: Part of group of densely spaced blocks (8 + core floors)' },
{ color: '#FB2F18', text: '8+ storeys: Loosely grouped' }, { color: '#FB2F18', text: 'High-rise: Part of group of widely spaced blocks' },
] ]
} }
}, },