Update README.md
Browse files
README.md
CHANGED
@@ -48,4 +48,33 @@ dataset_info:
|
|
48 |
---
|
49 |
# Dataset Card for "geonames"
|
50 |
|
51 |
-
[More Information needed](https://github.com/huggingface/datasets/blob/main/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
48 |
---
|
49 |
# Dataset Card for "geonames"
|
50 |
|
51 |
+
[More Information needed](https://github.com/huggingface/datasets/blob/main/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
|
52 |
+
|
53 |
+
[Source](https://download.geonames.org/export/dump/)
|
54 |
+
|
55 |
+
```
|
56 |
+
"geonameid", # integer id of record in geonames database
|
57 |
+
"name", # name of geographical point (utf8) varchar(200)
|
58 |
+
"asciiname", # name of geographical point in plain ascii characters, varchar(200)
|
59 |
+
"alternatenames",
|
60 |
+
# alternatenames, comma separated, ascii names automatically transliterated, convenience attribute from alternatename table, varchar(10000)
|
61 |
+
"latitude", # latitude in decimal degrees (wgs84)
|
62 |
+
"longitude", # longitude in decimal degrees (wgs84)
|
63 |
+
"feature_class", # see http://www.geonames.org/export/codes.html, char(1)
|
64 |
+
"feature_code", # see http://www.geonames.org/export/codes.html, varchar(10)
|
65 |
+
"country_code", # ISO-3166 2-letter country code, 2 characters
|
66 |
+
"cc2",
|
67 |
+
# alternate country codes, comma separated, ISO-3166 2-letter country code, 200 characters
|
68 |
+
"admin1_code",
|
69 |
+
# fipscode (subject to change to iso code), see exceptions below, see file admin1Codes.txt for display names of this code; varchar(20)
|
70 |
+
"admin2_code",
|
71 |
+
# code for the second administrative division, a county in the US, see file admin2Codes.txt; varchar(80)
|
72 |
+
"admin3_code", # code for third level administrative division, varchar(20)
|
73 |
+
"admin4_code", # code for fourth level administrative division, varchar(20)
|
74 |
+
"population", # bigint (8 byte int)
|
75 |
+
"elevation", # in meters, integer
|
76 |
+
"dem",
|
77 |
+
# digital elevation model, srtm3 or gtopo30, average elevation of 3''x3'' (ca 90mx90m) or 30''x30'' (ca 900mx900m) area in meters, integer. srtm processed by cgiar/ciat.
|
78 |
+
"timezone", # the iana timezone id (see file timeZone.txt) varchar(40)
|
79 |
+
"modification_date", # date of last modification in yyyy-MM-dd format"
|
80 |
+
```
|