https://github.com/abilian/geonames-sandbox
https://github.com/abilian/geonames-sandbox
Last synced: about 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/abilian/geonames-sandbox
- Owner: abilian
- Created: 2024-05-10T07:54:08.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-05-13T15:08:14.000Z (about 2 years ago)
- Last Synced: 2024-05-21T00:21:49.301Z (about 2 years ago)
- Language: Python
- Size: 25.4 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# geonames
## ZIP Codes
Source: https://download.geonames.org/export/zip/allCountries.zip
data: `data/allCountries.txt`
Format: tab-separated values
```
country code : iso country code, 2 characters
postal code : varchar(20)
place name : varchar(180)
admin name1 : 1. order subdivision (state) varchar(100)
admin code1 : 1. order subdivision (state) varchar(20)
admin name2 : 2. order subdivision (county/province) varchar(100)
admin code2 : 2. order subdivision (county/province) varchar(20)
admin name3 : 3. order subdivision (community) varchar(100)
admin code3 : 3. order subdivision (community) varchar(20)
latitude : estimated latitude (wgs84)
longitude : estimated longitude (wgs84)
accuracy : accuracy of lat/lng from 1=estimated, 4=geonameid, 6=centroid of addresses or shape
```