https://github.com/seporaitis/lt-geojson
Various level exports of lithuanian administrative districts in GeoJSON format for data visualizations.
https://github.com/seporaitis/lt-geojson
data-visualization geojson gis gis-data lithuania lithuanian map
Last synced: 5 months ago
JSON representation
Various level exports of lithuanian administrative districts in GeoJSON format for data visualizations.
- Host: GitHub
- URL: https://github.com/seporaitis/lt-geojson
- Owner: seporaitis
- Created: 2018-03-06T23:47:16.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2019-01-11T10:22:27.000Z (over 6 years ago)
- Last Synced: 2024-11-30T22:12:08.455Z (5 months ago)
- Topics: data-visualization, geojson, gis, gis-data, lithuania, lithuanian, map
- Language: Jupyter Notebook
- Homepage:
- Size: 15.1 MB
- Stars: 4
- Watchers: 1
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Maps of Lithuania in GeoJSON Format
Various level exports of lithuanian administrative districts in GeoJSON format.
Exported using [Overpass](http://overpass-turbo.eu/)
## Counties (Apskritys)
Overpass query:
```
[out:json][timeout:45];
area["ISO3166-1"="LT"]->.a;
(relation(area.a)["admin_level"=4][boundary="administrative"];);
out body;
>;
out skel qt;
```Preview:

## Municipalities (Savivaldybės)
Overpass query:
```
[out:json][timeout:45];
area["ISO3166-1"="LT"]->.a;
(relation(area.a)["admin_level"=5][boundary="administrative"];);
out body;
>;
out skel qt;
```Preview:

## Subdistricts (Seniunijos)
Overpass query:
```
[out:json][timeout:45];
area["ISO3166-1"="LT"]->.a;
(relation(area.a)["admin_level"~"^6|10$"]["name"~"seniūnija$"][boundary="administrative"];);
out body;
>;
out skel qt;
```Preview:

# Examples
See [example Jupyter notebook](example.ipynb).
# License
Map data © OpenStreetMap contributors.
Data is made available using [Open Database Licence](https://www.opendatacommons.org/licenses/odbl).