Click or drag to resize

ConfidenceScoresTypeBefore Field

Verizon Connect Logo
Print this page
Learn more about Verizon Connect GeoBase.
Get information about the latest release
Confidence that the prefixed-type is correct. e.g. In 'Rue Voltaire', 'Rue' is the type-before.

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

Field Value

Type: Single
Examples
C#
// Geocode an address
GeocodeAddress addr = GeoCoder.GeoCode("20 Enterprise, Aliso Viejo, California", Country.USA)[0];

// How confident is the geocoder that it found the right street TypeBefore?
Console.WriteLine(String.Format("TypeBefore confidence: {0}", addr.ConfidenceScores.TypeBefore));
// Prints 'TypeBefore confidence: 1' 
// 0.0 to 1.0 >> 1 indicates a perfect match.
See Also