diff options
author | Guilhem Moulin <guilhem@fripost.org> | 2024-06-03 19:04:21 +0200 |
---|---|---|
committer | Guilhem Moulin <guilhem@fripost.org> | 2024-06-03 19:05:04 +0200 |
commit | 729a5df4ba9889aebcd51787ec11a4d0d1ea5477 (patch) | |
tree | dcbb26c0f22bd85529400ea62033d08a9aaa40a8 | |
parent | e06f305b47663b3f20839e989b21a8e759179f16 (diff) |
webmap-download-mrr: Don't bother sorting the feature list.
-rw-r--r-- | webmap-download-mrr.py | 2 |
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 |