Click or drag to resize

GeocodeAddressConfidence Field

Verizon Connect Logo
Print this page
Learn more about Verizon Connect GeoBase.
Get information about the latest release
An expression of confidence of the geocoding engine in nominating this result as being the correct result. The confidence is a decimal number between 0 and 1; with 1 representing the highest confidence. The confidence is only applicable to forward geocode results; it is not applicable to drill down geocode results.

Namespace:  Telogis.GeoBase
Assembly:  geobase.net (in geobase.net.dll) Version: 4.99.0.0
Syntax
public float Confidence

Field Value

Type: Single
Examples
C#
GeocodeAddress addr = GeoCoder.GeoCode("20 Enterprise, Aliso Viejo, California", Country.USA)[0];
Console.WriteLine("Confidence that the address found is correct: {0}", addr.Confidence);
// 'Confidence that the address found is correct: 1'
// 0.0 to 1.0. 1.0 being certainty.
See Also