panchicore / elasticsearch-geonames

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

ES-GEONAMES transform and load with logstash

The same work for the python script but with posibilities to create the index based in the pipeline defined by the developer in the file logstash-pipeline.conf. This approach is good not only to send the data to ES but also to convert the Geonames CSV data to any output we need. See at the end of this readme a JSON output sample. This method requires logstash installed.

Some changes on the field names were performed, see the grok filter:

%{INT:GeonamesId} %{DATA:Name} %{DATA:ASCIIName} %{DATA:AlternateNames} %{DATA:Latitude} %{DATA:Longitude} %{DATA:FeatureClass} %{DATA:FeatureCode} %{DATA:CountryCode} %{DATA:CountryCode2} %{DATA:Admin1Code} %{DATA:Admin2Code} %{DATA:Admin3Code} %{DATA:Admin4Code} %{DATA:Population} %{DATA:Elevation} %{DATA:DEM} %{DATA:Timezone} %{GREEDYDATA:ModificationDate}"

According the pipeline, In some fields was improved the field type:

  • AlternateNames: this list will be transformed from "alternatenames: comma separated, ascii names automatically transliterated, convenience attribute from alternatename table, varchar(10000)"
  • CountryCode2: transformed from "cc2 : alternate country codes, comma separated, ISO-3166 2-letter country code, 200 characters"

As well as some new fields based on the codes list http://www.geonames.org/export/codes.html:

  • FeatureClass
  • FeatureCode
  • and CountryCode3: based on the dict from the script geonames_elasticsearch_loader.py

Usage

On the logstash folder:

  • Copy environment_variables.sample.sh to environment_variables.sh with your environment vars.
  • Run the index creator sh create_index.sh
  • Start logstash logstash -f logstash-pipeline.conf it will take some seconds to start due big pipeline and will take just a few minutes to finish the ingest (2K per second in my i7 8G machine). The output log will look like 2017-09-01T12:09:14.354Z %{host} %{message} as an info output for you to know when it finishes.
  • Done, enjoy

Todo

  • Fine tune the mappings
  • Load premium data for example places as polygons are very interesting data to load as geo-shapes.
  • Dockerize
  • Publish some Kibana stats

JSON output sample

If looking for JSON output just comment the output > stout > # codec => json, sample:

{
    "Timezone":"Asia/Kabul",
    "ASCIIName":"Pushtah-ye Amir Kushtah'i",
    "Latitude":35.24667,
    "FeatureCode":"MT",
    "type":"place",
    "AlternateNames":[
        "Poshteh-ye Amirkoshteh'i",
        "Poshteh-ye Amīrkoshteh’ī",
        "Pushtah-ye Amir Kushtah'i",
        "Pushtah-ye Amīr Kushtah’ī",
        "Pusta-i-Amirkusta'i",
        "Pusta-i-Amīṟkusta’i",
        "پشتۀ امیر کشته ئی"
    ],
    "Longitude":64.67254,
    "FeatureClass":"T",
    "DEM":"1847",
    "Name":"Pushtah-ye Amīr Kushtah’ī",
    "GeonamesId":1424592,
    "@timestamp":"2017-09-01T09:17:31.824Z",
    "FeatureClassName":"mountain, hill, rock, etc",
    "ModificationDate":"2012-01-19T00:00:00.000Z",
    "FeatureCodeName":"mountain",
    "@version":"1",
    "Admin1Code":"07",
    "Population":0,
    "location":{
        "lon":"64.67254",
        "lat":"35.24667"
    },
    "CountryCode":"AF",
    "CountryCode3":"AFG"
}

Enritching

CountryName

Based on dictionaty containing the ISO code for the country.

es2csv -u "http://localhost:9200" -i geonames_country_info -q '*' -o dict_country_isocode.csv -f ISO Country

Admin1Name and Admin2Name

Admin1ASCIIName and Admin2ASCIIName

FullName

Only if tags: city and region: FullName: Al Hudaydah, Al Hawak, Al Hudaydah, Yemen

Tags

Administrative Divisions Tag

AdminDivisionTags are used to attribute if the object is a city, region or country. Others tags: adm1 and adm2 when record is found in the admin files.

City: is a FeatureClass P and FeatureCode PPL* Capital: PPLC Region: because is part of admin1CodesASCII, admin2Codes datasets Country: because is part of CountryInfo.txt Continent: because is FeatureClass L FeatureCode CONT

You can find this repo in the official GEONAMES client libraries.

Other tags

pop-gt1k, pop-gt5k, pop-gt15k

Premium data

Premium data could be uploaded with the Logstash pipeline, as those updates are updated in a monthly basis, its ideal to keep the index up-to-date. The main requirement to use the premium data ingester is to run the free data first, if you did the steps above you are done, the logic behind update geonames is to download the data each month and run the commands at this moment.

GeonamesID is the key id for the documents, as the premium data references this ID, the logstash pipeline will update the existing places with the additional information:

Airports

%{INT:GeonamesId} %{DATA:Name} %{DATA:FeatureCode} %{DATA:CountryCode} %{DATA:AdminCode1} %{DATA:AdminCode2} %{DATA:TimeZoneId} %{DATA:Latitude} %{DATA:Longitude} %{DATA:IATA} %{DATA:ICAO} %{DATA:Unlocode} %{DATA:CityId} %{DATA:CityName} %{DATA:IsActive}"

Pipeline will update place records where GeonamesId = indexed GeonamesId with:

  • IATA:
  • ICAO:
  • Unlocode:
  • IsActive:

Hierarchy

Parent Child Relation Name 6255147 7729896 7729896 1831722 un m49 region 7729896 1643084 un m49 region 7729896 1655842 un m49 region 7729896 1733045 un m49 region 7729896 1327865 un m49 region

Search 7729896 Set Hierarchy { Parent: { Name: GeonameIds: [6255147] }, Children: { Name: un m49 region GeonameIds: [1831722, 1643084, 1655842, 1733045, 1327865] } }

About


Languages

Language:Python 76.5%Language:Shell 23.5%