Accuracy

Within the properties of the GeoJSON response, each Naurt parking spot and building entrance is tagged with an accuracy. Naurt currently supports three classifications: high, medium, or low.

AccuracyDescription
highEntrance(s) is guaranteed to be on building perimeter and known to high accuracy.
mediumEntrance(s) detected near building perimeter and position adjusted accordingly.
lowEntrance detection of low quality with possible fallback to standard address based geocode.

Example GeoJSON

geoJSON
{
  "features": [
    {
      "geometry": {
        "coordinates": [
          [
            -0.12777561,
            50.83552396
          ]
        ],
        "type": "MultiPoint"
      },
      "properties": {
        "accuracy": {
          "quality": "high"
        },
        "naurt_type": "naurt_door"
      },
      "type": "Feature"
    },
    {
      "geometry": {
        "coordinates": [
          [
            [
              -0.1278694,
              50.83548944
            ],
            [
              -0.1279046,
              50.8355183
            ],
            [
              -0.12773404,
              50.83560128
            ],
            [
              -0.12769883,
              50.83557241
            ],
            [
              -0.1278694,
              50.83548944
            ]
          ]
        ],
        "type": "Polygon"
      },
      "properties": {
        "accuracy": {
          "quality": "high"
        },
        "minimum_parking_to_door_distance": 7.62,
        "naurt_type": "naurt_parking"
      },
      "type": "Feature"
    }
  ],
  "type": "FeatureCollection"
}