Metadata for used data

BTW, could you please take a short look at Reverse Geocode API playgound - street layer not selectable, I guess this would be easy to fix.

Ping @amandus or @amoncaldas for this.

Maybe it would be possible to set up a changelog for the geocoder, which shows when the data have been updated, something like https://openmaptiles.com/changelog/?

Realistically I wouldn’t want to do this. Geocoding is veeery much a complimentary product for us and this would add another small maintenance document. Yes, tiny, but want to avoid this in any case.

Would it be possible that you share your Pelias configuration (import settings)?

Sure. We’re not using Docker. Also not yet ES 5, though I gotta do the migration soon it seems…

{
  "logger": {
    "level": "info",
    "timestamp": true,
    "colorize": true
  },
  "esclient": {
    "hosts": [
      {
        "host": "192.168.2.71",
        "port": 9200
      },
      {
        "host": "192.168.2.72",
        "port": 9200
      },
      {
        "host": "192.168.2.73",
        "port": 9200
      },
      {
        "host": "192.168.2.74",
        "port": 9200
      }
    ]
  },
  "elasticsearch": {
    "settings": {
      "index": {
        "number_of_replicas": "0",
        "number_of_shards": "24",
        "refresh_interval": "1m"
      }
    }
  },
  "schema": {
    "indexName": "pelias_20190626"
  },
  "interpolation": {
    "client": {
      "adapter": "http",
      "host": "http://localhost:3100"
    }
  },
  "imports": {
    "adminLookup": {
      "enabled": true,
      "maxConcurrentRequests": 1000
    },
    "geonames": {
      "datapath": "/srv/pelias_importer_ext/data/gn",
      "countryCode": "ALL"
    },
    "openaddresses": {
      "datapath": "/srv/pelias_importer_ext/data/oa",
      "files": []
    },
    "openstreetmap": {
      "download": [
        {
          "sourceURL": "https://planet.openstreetmap.org/pbf/planet-latest.osm.pbf"
        }
      ],
      "datapath": "/srv/pelias_importer_ext/data/osm",
      "leveldbpath": "/srv/pelias_importer_ext/tmp",
      "import": [
        {
          "filename": "planet-latest.osm.pbf"
        }
      ]
    },
    "whosonfirst": {
      "datapath": "/srv/pelias_importer_ext/data/wof",
      "importVenues": false,
      "importPostalcodes": true,
      "sqlite": true
    },
    "polyline": {
      "datapath": "/srv/pelias_importer_ext/data/polylines",
      "files": [
        "road_network.polylines"
      ]
    }
  }
}