Skip to content

Commit

Permalink
Added Missing Valley Bottom Symbology #548
Browse files Browse the repository at this point in the history
  • Loading branch information
KellyMWhitehead committed Dec 12, 2024
1 parent 4e17a3d commit f3c05c2
Show file tree
Hide file tree
Showing 5 changed files with 6,938 additions and 6,816 deletions.
19 changes: 19 additions & 0 deletions Images/valley_bottom.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion src/QRiS/qris_map_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ def build_valley_bottom_layer(self, valley_bottom: ValleyBottom) -> QgsMapLayer:
return existing_layer

fc_path = f'{self.project.project_file}|layername=valley_bottom_features'
feature_layer = self.create_db_item_feature_layer(self.project.map_guid, group_layer, fc_path, valley_bottom, 'valley_bottom_id', 'valley_bottoms')
feature_layer = self.create_db_item_feature_layer(self.project.map_guid, group_layer, fc_path, valley_bottom, 'valley_bottom_id', 'valley_bottom')

# setup fields
self.set_hidden(feature_layer, 'fid', 'Valley Bottom Feature ID')
Expand Down
2 changes: 1 addition & 1 deletion src/model/valley_bottom.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ def __init__(self, id: int, name: str, description: str, metadata: dict = None):
super().__init__('valley_bottoms', id, name)
self.description = description
self.metadata = metadata
self.icon = 'polygon'
self.icon = 'valley_bottom'
self.fc_name = 'valley_bottom_features'
self.fc_id_column_name = 'valley_bottom_id'

Expand Down
Loading

0 comments on commit f3c05c2

Please sign in to comment.