UploadSpecification.MaximumGeocodingLevel Property
UploadSpecification.MaximumGeocodingLevel Property
Indicates the maximum geocoding level (GeocodingLevel enumeration) to be used to geocode the point-of-interest data. The default geocoding level is street name (and number).
Public MaximumGeocodingLevel As GeocodingLevel
[C#]
public GeocodingLevel MaximumGeocodingLevel;
Remarks
Geocoding levels are applied in the following order: street name, postal code, city name, subdivision/state name, country/region.
For example, if you set the maximum geocoding level to city name, all addresses that cannot be geocoded against street names are geocoded against postal codes. If any addresses cannot be geocoded against postal codes, those addresses are geocoded against city names. If any addresses cannot be geocoded to the city-name level, those records are skipped.
Example
[Visual Basic]
'Create an instance of the customer data service proxy.
Dim custDataService As CustomerDataService = New CustomerDataService
'Assign your credentials.
custDataService.Credentials = _
New NetworkCredential(myUserName, mySecurePassword, myDomainName)
'Set PreAuthenticate to True
custDataService.PreAuthenticate = True
Try
'Define an upload specification object
'and assign all required fields.
Dim uploadSpec As UploadSpecification = New UploadSpecification
uploadSpec.DataSourceName = myDataSourceName
uploadSpec.EntityTypeName = myEntityTypeName
uploadSpec.Environment = LocationDataEnvironment.Staging
uploadSpec.MaximumGeocodingLevel = GeocodingLevel.City
uploadSpec.RejectAmbiguousGeocodes = False
uploadspec.GeometryType = GeometryType.Polygon
'Start an upload job and obtain the job ID.
Dim jobID As String = custDataService.StartUpload(uploadSpec)
Catch e As Exception
Dim message As String = e.Message
'Do your exception handling here.
End Try
[C#]
//Create an instance of the customer data service proxy.
CustomerDataService cds = new CustomerDataService();
//Assign your credentials.
cds.Credentials = new System.Net.NetworkCredential(myUserName,
mySecurePassword, myDomainName);
//Set PreAuthenticate to true
cds.PreAuthenticate = true;
try
{
//Define an upload specification object
//and assign all required fiecds.
UploadSpecification uploadspec = new UploadSpecification();
uploadspec.DataSourceName = myDataSourceName;
uploadspec.EntityTypeName = myEntityTypeName;
uploadspec.Environment = LocationDataEnvironment.Staging;
uploadspec.MaximumGeocodingLevel = GeocodingLevel.City;
uploadspec.RejectAmbiguousGeocodes = false;
uploadspec.GeometryType = GeometryType.Polygon;
//Start an upload job and obtain the job ID.
string jobID = cds.StartUpload(uploadspec);
}
catch(Exception ex)
{
string message = ex.Message;
//Do your exception handling here.
}
See Also
UploadSpecification Class | GeocodingLevel Enumeration