1
0
Fork 0
mirror of https://github.com/seanmorley15/AdventureLog.git synced 2025-07-19 04:49:37 +02:00

Add Iceland GEOJSON for map visualization

This commit is contained in:
Sean Morley 2024-07-31 09:39:33 -04:00
parent 1293b43976
commit 4e44203239
3 changed files with 106736 additions and 0 deletions

View file

@ -116,3 +116,4 @@ AdventureLog is licensed under the GNU General Public License v3.0.
- [Ireland GEOJSON](https://cartographyvectors.com/map/1399-ireland-provinces)
- [Sweden GEOJSON](https://cartographyvectors.com/map/1521-sweden-with-regions)
- [Switzerland GEOJSON](https://cartographyvectors.com/map/1522-switzerland-with-regions)
- [Iceland GEOJSON](https://cartographyvectors.com/map/1453-iceland-with-regions)

File diff suppressed because it is too large Load diff

View file

@ -40,6 +40,7 @@ class Command(BaseCommand):
('Spain', 'es', 'EU'),
('Switzerland', 'ch', 'EU'),
('Italy', 'it', 'EU'),
('Iceland', 'is', 'EU'),
]
regions = [
@ -488,6 +489,14 @@ class Command(BaseCommand):
('IT-55', 'Umbria', 'it'),
('IT-23', 'Valle d''Aosta', 'it'),
('IT-34', 'Veneto', 'it'),
('IS-1', 'Höfuðborgarsvæði', 'is'),
('IS-2', 'Suðurnes', 'is'),
('IS-3', 'Vesturland', 'is'),
('IS-4', 'Vestfirðir', 'is'),
('IS-5', 'Norðurland vestra', 'is'),
('IS-6', 'Norðurland eystra', 'is'),
('IS-7', 'Austurland', 'is'),
('IS-8', 'Suðurland', 'is'),
]
if not force and (Country.objects.exists() or Region.objects.exists()):