Skip to content

Data Accuracy

Reference

Naurt provides you with two tools to understand the quality of a match from the geocoder.

  1. Data Accuracy: the expected quality of geographic data for that address
  2. Data Confidence: how likely the found address is to be a match

This page will discuss how data accuracy works.

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.
{
"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"
}