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

Add Austria

This commit is contained in:
Sean Morley 2024-08-20 18:57:33 -04:00
parent fcb2fe3788
commit f5e721cd82
3 changed files with 2647 additions and 0 deletions

View file

@ -152,3 +152,4 @@ AdventureLog is licensed under the GNU General Public License v3.0.
- [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)
- [Austria GEOJSON](https://github.com/codeforgermany/click_that_hood/blob/main/public/data/austria-states.geojson)

File diff suppressed because it is too large Load diff

View file

@ -66,6 +66,7 @@ class Command(BaseCommand):
('Italy', 'it', 'EU'),
('Iceland', 'is', 'EU'),
('Czech Republic', 'cz', 'EU'),
('Austria', 'at', 'EU'),
]
regions = [
@ -535,6 +536,15 @@ class Command(BaseCommand):
('CZ-71', 'Olomoucký kraj', 'Olomouc Region', 'cz'),
('CZ-72', 'Zlínský kraj', 'Zlín Region', 'cz'),
('CZ-80', 'Moravskoslezský kraj', 'Moravian-Silesian Region', 'cz'),
('AT-1', 'Burgenland', 'Burgenland', 'at'),
('AT-2', 'Kärnten', 'Carinthia', 'at'),
('AT-3', 'Niederösterreich', 'Lower Austria', 'at'),
('AT-4', 'Oberösterreich', 'Upper Austria', 'at'),
('AT-5', 'Salzburg', 'Salzburg', 'at'),
('AT-6', 'Steiermark', 'Styria', 'at'),
('AT-7', 'Tirol', 'Tyrol', 'at'),
('AT-8', 'Vorarlberg', 'Vorarlberg', 'at'),
('AT-9', 'Wien', 'Vienna', 'at'),
]