Data Accuracy
Reference
Naurt provides you with two tools to understand the quality of a match from the geocoder.
- Data Accuracy: the expected quality of geographic data for that address
- Data Confidence: how likely the found address is to be a match
This page will discuss how data accuracy works.
Accuracy
Section titled “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.
| Accuracy | Description |
|---|---|
| high | Entrance(s) is guaranteed to be on building perimeter and known to high accuracy. |
| medium | Entrance(s) detected near building perimeter and position adjusted accordingly. |
| low | Entrance detection of low quality with possible fallback to standard address based geocode. |
Example GeoJSON with Accuracy
Section titled “Example GeoJSON with Accuracy”{ "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"}