Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: about 1 month 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 (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2019-01-11T10:22:27.000Z (almost 6 years ago)
- Last Synced: 2024-11-30T22:12:08.455Z (about 1 month 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:
![counties.png](images/counties.png)
## 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:
![municipalities.png](images/municipalities.png)
## 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:
![subdistricts.png](images/subdistricts.png)
# 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).