Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Blm context fixes #749

Merged
merged 4 commits into from
Nov 6, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
40 changes: 5 additions & 35 deletions RaveBusinessLogic/V2/BLMContext.xml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
</Node>
<Node label="National Priority Areas">
<Children collapsed="true">
<Node label="BLM Restoration Landscapes A" xpath="Datasets/Geopackage[@id='BLM_Restoration_Landscapes_A']/Layers/Vector[@lyrName='BLM_Restoration_Landscapes_A']" type="polygon" symbology="BLM_Restoration_Landscapes_A" />
<Node label="BLM Restoration Landscapes A" xpath="Datasets/Geopackage[@id='BLM_Restoration_Landscapes_A']/Layers/Vector[@lyrName='BLM_Restoration_Landscapes_A']" type="polygon" symbology="BLM_Restoration_Landscapes_A" id="blm_restoration_landscapes_a"/>
<Node label="DOI Keystone Initiatives A" xpath="Datasets/Geopackage[@id='DOI_Keystone_Initiatives_A']/Layers/Vector[@lyrName='DOI_Keystone_Initiatives_A']" type="polygon" symbology="DOI_Keystone_Initiatives_A" />
</Children>
</Node>
Expand All @@ -41,41 +41,11 @@
</Node>
</Children>
</Node>
<!-- <Views default="Default">
<View name="Hydrology" id="Default">
<Views default="Default">
<View name="BLM Priority Restoration Landscapes" id="Default">
<Layers>
<Layer id="perrenial" />
<Layer id="intermittent" />
<Layer id="huc10" />
<Layer id="blm_restoration_landscapes_a"/>
</Layers>
</View>
<View name="Topography" id="Topography">
<Layers>
<Layer id="perrenial" />
<Layer id="intermittent" />
<Layer id="dem" />
<Layer id="hs" />
</Layers>
</View>
<View name="Transportation" id="Transportation">
<Layers>
<Layer id="roads" />
<Layer id="railroads" />
</Layers>
</View>
<View name="Existing Vegetation" id="veg">
<Layers>
<Layer id="perrenial" />
<Layer id="intermittent" />
<Layer id="exveg" />
</Layers>
</View>
<View name="Land Ownership" id="land">
<Layers>
<Layer id="perrenial" />
<Layer id="intermittent" />
<Layer id="owner" />
</Layers>
</View>
</Views> -->
</Views>
</Project>
392 changes: 248 additions & 144 deletions Symbology/qgis/BLMContext/BLM_NLCS_Natl_Monuments_Cons_Areas_A.qml

Large diffs are not rendered by default.

190 changes: 139 additions & 51 deletions Symbology/qgis/BLMContext/BLM_Natl_NLCS_Wilderness_Areas_A.qml

Large diffs are not rendered by default.

478 changes: 283 additions & 195 deletions Symbology/qgis/BLMContext/DOI_Keystone_Initiatives_A.qml

Large diffs are not rendered by default.

34 changes: 29 additions & 5 deletions Symbology/web/BLMContext/BLM_NLCS_Natl_Monuments_Cons_Areas_A.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,13 @@
{
"$schema": "https://xml.riverscapes.net/Symbology/webRAVEVector.schema.json",
"legend": [
["#117116", "BLM NLCS Natl Monuments Cons Areas A"]
["#a6cee3", "Cooperative Management and Protection Area"],
["#1f78b4", "Forest Reserve"],
["#b2df8a", "National Monuments"],
["#fb9a99", "National Conservation Area"],
["#e31a1c", "National Monuments"],
["#fdbf6f", "National Scenic Area"],
["#ff7f00", "Outstanding Natural Area"]
],
"layerStyles": [
{
Expand All @@ -11,18 +17,36 @@
"source-layer": "blm_nlcs_natl_monuments_cons_areas_a",
"layout": {},
"paint": {
"fill-color": "#117116",
"fill-outline-color": "#20581e"
"fill-color": [
"match",
["get", "sma_code"],
["BLM_CMPA"],
"#a6cee3",
["BLM_FR"],
"#1f78b4",
["BLM_MON"],
"#b2df8a",
["BLM_NCA"],
"#fb9a99",
["BLM_NM"],
"#e31a1c",
["BLM_NSA"],
"#fdbf6f",
["BLM_ONA"],
"#ff7f00",
"#000000"
],
"fill-outline-color": "#3c2745"
}
},
{
"id": "blm_nlcs_natl_monuments_cons_areas_a_symbol",
"type": "symbol",
"source": "composite",
"source-layer": "blm_nlcs_natl_monuments_cons_areas_a",
"minzoom": 8,
"layout": {
"text-field": ["to-string", ["get", "NLCS_NAME"]],
"minzoom": 8
"text-field": ["to-string", ["get", "NLCS_NAME"]]
},
"paint": {}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@
"type": "symbol",
"source": "composite",
"source-layer": "blm_natl_area_critical_env_concern_a",
"minzoom": 8,
"layout": {
"text-field": ["to-string", ["get", "ACEC_NAME"]],
"minzoom": 8
"text-field": ["to-string", ["get", "ACEC_NAME"]]
},
"paint": {}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@
"type": "symbol",
"source": "composite",
"source-layer": "blm_fire_perimeters",
"minzoom": 9,
"layout": {
"text-field": ["to-string", ["get", "INCDNT_NM"]],
"minzoom": 9
"text-field": ["to-string", ["get", "INCDNT_NM"]]
},
"paint": {}
}
Expand Down
4 changes: 2 additions & 2 deletions Symbology/web/BLMContext/BLM_Natl_Grazing_Allotment_P.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@
"type": "symbol",
"source": "composite",
"source-layer": "blm_natl_grazing_allotment",
"minzoom": 8,
"layout": {
"text-field": ["to-string", ["get", "ALLOT_NAME"]],
"minzoom": 8
"text-field": ["to-string", ["get", "ALLOT_NAME"]]
},
"paint": {}
}
Expand Down
4 changes: 2 additions & 2 deletions Symbology/web/BLMContext/BLM_Natl_Land_Use_Plans_2022_A.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@
"type": "symbol",
"source": "composite",
"source-layer": "blm_natl_land_use_plans_2022_a",
"minzoom": 7,
"layout": {
"text-field": ["to-string", ["get", "LUPName"]],
"minzoom": 7
"text-field": ["to-string", ["get", "LUPName"]]
},
"paint": {}
}
Expand Down
15 changes: 13 additions & 2 deletions Symbology/web/BLMContext/BLM_Natl_NLCS_Wilderness_Areas_A.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,23 @@
"id": "blm_natl_nlcs_wilderness_areas_a_fill",
"type": "fill",
"source": "composite",
"source-layer": "blm_nlcs_natl_monuments_cons_areas_a",
"source-layer": "blm_natl_nlcs_wilderness_areas_a",
"layout": {},
"paint": {
"fill-color": "#117116",
"fill-outline-color": "#20581e"
}
}
},
{
"id": "blm_natl_nlcs_wilderness_areas_a_symbol",
"type": "symbol",
"source": "composite",
"source-layer": "blm_natl_nlcs_wilderness_areas_a",
"minzoom": 8,
"layout": {
"text-field": ["to-string", ["get", "NLCS_NAME"]]
},
"paint": {}
}
]
}
Original file line number Diff line number Diff line change
Expand Up @@ -23,19 +23,19 @@
["get", "Habitat_Type"],
["Anthro Mtn"],
"#8dd3c7",
["General Habitat Mgmt. Area"],
["GHMA"],
"#ffffb3",
["Important Habitat Mgmt. Area"],
["IHMA"],
"#bebada",
["Linkage and Connectivity Habitat Mgmt. Area"],
["LCHMA"],
"#fb8072",
["Other Habitat Mgmt. Area"],
["OHMA"],
"#80b1d3",
["Priority Habitat Mgmt. Area"],
["PHMA"],
"#fdb462",
["Restoration Habitat Mgmt. Area"],
["RHMA"],
"#b3de69",
["Undesignated Habitat"],
["UDH"],
"#fccde5",
"#000000"
],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@
"type": "symbol",
"source": "composite",
"source-layer": "blm_natl_wild_horse_and_burro_herd_mgmt_area_a",
"minzoom": 8,
"layout": {
"text-field": ["to-string", ["get", "HMA_NAME"]],
"minzoom": 8
"text-field": ["to-string", ["get", "HMA_NAME"]]
},
"paint": {}
}
Expand Down
16 changes: 13 additions & 3 deletions Symbology/web/BLMContext/DOI_Keystone_Initiatives_A.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@
],
"layerStyles": [
{
"id": "",
"id": "doi_keystone_initiatives_a_fill",
"type": "fill",
"source": "composite",
"source-layer": "",
"source-layer": "doi_keystone_initiatives_a",
"layout": {},
"paint": {
"fill-color": [
Expand All @@ -41,6 +41,16 @@
],
"fill-outline-color": "#232323"
}
}
},
{
"id": "doi_keystone_initiatives_a_symbol",
"type": "symbol",
"source": "composite",
"source-layer": "doi_keystone_initiatives_a",
"layout": {
"text-field": ["to-string", ["get", "KeystoneIn_Name"]]
},
"paint": {}
}
]
}
Loading