├── README.md ├── countries.geojson └── datapackage.json /README.md: -------------------------------------------------------------------------------- 1 | badge 2 | 3 | # DEPRECATED 4 | Please use the newer and better maintained datapackage https://github.com/datasets/geo-countries 5 | 6 | ## Data 7 | Geodata data package providing geojson polygons for all the world's countries. 8 | Perfect for use in apps and visualizations. 9 | 10 | -------------------------------------------------------------------------------- /datapackage.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "geo-boundaries-world-110m", 3 | "title": "Country Polygons as GeoJSON at 1:110m", 4 | "version": "0.1.0", 5 | "description": "geodata data package providing geojson polygons for all the world's countries", 6 | "repository": { 7 | "type": "git", 8 | "url": "git://github.com/datasets/geo-boundaries-world-110m.git" 9 | }, 10 | "sources": [{ 11 | "name": "Natural Earth", 12 | "web": "http://www.naturalearthdata.com/downloads/10m-cultural-vectors/" 13 | }], 14 | "keywords": [ 15 | "geodata", 16 | "vector" 17 | ], 18 | "licenses": [{ 19 | "type": "ODC-PDDL", 20 | "url": "http://opendatacommons.org/licenses/pddl/1.0/" 21 | }], 22 | "resources": [ 23 | { 24 | "name": "countries", 25 | "path": "countries.geojson", 26 | "format": "geojson", 27 | "mediatype": "application/json", 28 | "bytes": 689418 29 | } 30 | ], 31 | "bugs": { 32 | "url": "https://github.com/datasets/geo-boundaries-world-110m/issues" 33 | }, 34 | "homepage": "https://github.com/datasets/geo-boundaries-world-110m" 35 | } 36 | --------------------------------------------------------------------------------