https://github.com/duketemon/geography
Repository of global and local flags and datasets with info about countries, areas, territories, regions, etc.
https://github.com/duketemon/geography
capitals dataset flags geographic-data geography png population svg
Last synced: 4 months ago
JSON representation
Repository of global and local flags and datasets with info about countries, areas, territories, regions, etc.
- Host: GitHub
- URL: https://github.com/duketemon/geography
- Owner: duketemon
- License: mit
- Created: 2020-12-24T08:26:47.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2021-01-06T20:21:33.000Z (over 5 years ago)
- Last Synced: 2025-06-02T17:35:16.272Z (about 1 year ago)
- Topics: capitals, dataset, flags, geographic-data, geography, png, population, svg
- Homepage:
- Size: 14.8 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## Geography
Repository of global and local flags and datasets with info about countries, areas, territories, regions, etc.
## Repository structure
### ./world
The folder contains flags of countries, territories, unions, and etc. Also in the folder you can find *info.csv* with names, population, and flag paths
Sources: [official UN reports](https://population.un.org/wpp/Download/Standard/Population), and [wikipedia](https://en.wikipedia.org/wiki/Main_Page)
### ./american_states
The folder contains flags of the U.S. states. Also in the folder you can find *info.csv* with names, capitals, largest cities, population, and flag paths
Source: [wikipedia](https://en.wikipedia.org/wiki/Flags_of_the_U.S._states_and_territories)
### ./german_states
The folder contains flags of german administrative states. Also in the folder you can find *info.csv* with names, capitals, area (km.), population, and flag paths
Source: [wikipedia](https://en.wikipedia.org/wiki/States_of_Germany)
### ./italian_regions
The folder contains flags of italian regions. In the folder you can find *info.csv* with names, capitals, area (km.), population, and flag paths
Source: [wikipedia](https://en.wikipedia.org/wiki/Regions_of_Italy)
## Convert SVGs to PNGs
Run the following command from a folder with images
### Linux
```bash
for file in *.svg; do inkscape $file --without-gui --export-width=1000 --export-png ${file%svg}png ; done
```