We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bcd8e66 commit b79f4edCopy full SHA for b79f4ed
src/config_generator/qgs_reader.py
@@ -273,6 +273,8 @@ def layer_path(layer_id):
273
result[name] = {}
274
for layer in visibilityPreset.findall('./layer'):
275
layer_id = layer.get('id')
276
+ if layer_id not in layer_map:
277
+ continue
278
path = layer_path(layer_id)
279
if layer_map[layer_id] not in hidden_layers and \
280
geom_types[layer_id] != 'WKBNoGeometry' and geom_types[layer_id] != 'NoGeometry' and \
0 commit comments