aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGuilhem Moulin <guilhem@fripost.org>2024-06-03 19:04:21 +0200
committerGuilhem Moulin <guilhem@fripost.org>2024-06-03 19:05:04 +0200
commit729a5df4ba9889aebcd51787ec11a4d0d1ea5477 (patch)
treedcbb26c0f22bd85529400ea62033d08a9aaa40a8
parente06f305b47663b3f20839e989b21a8e759179f16 (diff)
webmap-download-mrr: Don't bother sorting the feature list.
-rw-r--r--webmap-download-mrr.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/webmap-download-mrr.py b/webmap-download-mrr.py
index 2d8612c..6a25e98 100644
--- a/webmap-download-mrr.py
+++ b/webmap-download-mrr.py
@@ -621,7 +621,7 @@ def download(dl, dest, dir_fd=None, headers={}, session=requests, progress=None)
'type': 'FeatureCollection',
'name': layername,
'crs': crs,
- 'features': sorted(features.values(), key=lambda f: f['properties']['Name']),
+ 'features': list(features.values()),
}
# write the destination GeoJSON file