Went down the rabbit hole, luckily it wasn’t too deep. Found a list of all the data sources for snapmap. One of them was GeoNames.

After registering an account I tried sending a request for the place name at Molvær, and got a response listing “Moldvær” as the name:

GET http://api.geonames.org/findNearbyPlaceNameJSON?lat=62.438800&lng=6.177996&username=<redacted>
{
  "geonames": [
    {
      "adminCode1": "08",
      "lng": "6.17721",
      "distance": "0.0907",
      "geonameId": 9404071,
      "toponymName": "Moldvær",
      "countryId": "3144096",
      "fcl": "P",
      "population": 0,
      "countryCode": "NO",
      "name": "Moldvær",
      "fclName": "city, village,...",
      "adminCodes1": {
        "ISO3166_2": "15"
      },
      "countryName": "Norway",
      "fcodeName": "populated locality",
      "adminName1": "Møre og Romsdal",
      "lat": "62.43807",
      "fcode": "PPLL"
    }
  ]
}

I suspect this is the source of the wrong name.

3 Likes