JuliaGeo / GADM.jl

A Julia package for obtaining geographical data from the GADM dataset
https://gadm.org
MIT License
38 stars 4 forks source link

Explore open datasets of geographic borders (countries, states, cities) #1

Closed zerefwayne closed 3 years ago

zerefwayne commented 3 years ago

Resource for obtaining country boundaries (4MB size)

:warning: Size is large :heavy_check_mark: Very detailed

https://data.world/dgreiner/world-spatial-data/file/ne_50m_admin_0_countries.geojson

image

zerefwayne commented 3 years ago

Resource for country boundaries (250KB)

:heavy_check_mark: Size is manageable :warning: Might lack details

https://github.com/johan/world.geo.json/blob/master/countries.geo.json

image

juliohm commented 3 years ago

Based on our discussion in Zulip, it seems that we have a comprehensive dataset by GADM that we could use via DataDeps.jl

I've looked into the other data sources you shared in the docs folder, and only two of them seem reliable:

Where the second is the same as the first but in GeoJSON as opposed to Shapefile. Let's aim our initial efforts with GADM as you suggested. I've noticed that they provide URLs for each country and recommend to download the dataset like this instead of the global dataset. We can create a dictionary or function that maps country codes to URLs in a download.jl file. Looking forward to review a PR :+1:

Closing this issue for now, good job!