User Tools

Site Tools


thinkgeo.mapsuite.mapsuitegeocoder.streetmatchingplugin

This is an old revision of the document!


ThinkGeo.MapSuite.MapSuiteGeocoder.StreetMatchingPlugin

<!– Class –> This class is the derived class of the MatchingPlugin class for matching street addresses.

Remarks

Inheritance Hierarchy

Members Summary

Public Constructors

Name Parameters DeclaringType Summary
Public MethodStreetMatchingPlugin This is the constructor of this class.
Public MethodStreetMatchingPlugin String This is the constructor of this class.
Public MethodStreetMatchingPlugin String, MatchMode This is the constructor of this class.

Protected Constructors

Name Parameters DeclaringType Summary

Public Methods

Name Parameters DeclaringType Summary
Public MethodClose MatchingPlugin This method closes the MatchingPlugin. This method is the concrete wrapper for CloseCore.
Public MethodDispose Releases all resources used by the StreetDbfMatchingPlugin.
Public MethodEquals Object Object
Public MethodGetHashCode Object
Public MethodGetType Object
Public MethodMatch String MatchingPlugin This method matches the source text and returns a collection of GeocoderMatch. This method is the concrete wrapper for MatchCore. It firstly formalizes the input sourceText, gets the formalized results and matches them using MatchCore one by one, then returns all of the results within a collection.
Public MethodOpen MatchingPlugin This method opens the MatchingPlugin for use. This method is the concrete wrapper for OpenCore.
Public MethodToString Object

Protected Methods

Name Parameters DeclaringType Summary
Protected MethodCloseCore MatchingPlugin(overriden) This method closes the StreetMatchingPlugin.
Protected MethodFinalize Object(overriden) This method is automatically called after an object becomes inaccessible, unless the object has been exempted from finalization by a call to SuppressFinalize.
Protected MethodFormalize String MatchingPlugin This method formalizes the source text. This method is the concrete wrapper of FormalizeCore.
Protected MethodFormalizeCore String MatchingPlugin(overriden) This method formalizes the source text to get possible street addresses.
Protected MethodMatchCore String MatchingPlugin(overriden) This method matches source text in the corresponding street index files.
Protected MethodMemberwiseClone Object
Protected MethodOpenCore MatchingPlugin(overriden) This method opens the StreetMatchingPlugin.

Public Properties

Name Return DeclaringType Summary
Public PropertyDataPath String This property is the path to the Geocoder data folder.
Public PropertyMatchMode MatchMode This property is the match mode of the street matching plugin.
Public PropertyRankingMultiplier Int32 MatchingPlugin This property is the ranking multipier for GeocoderMatch.
Public PropertyStreetNumberMatchingMode StreetNumberMatchingMode This property is the street number match mode of the street matching plugin.

Protected Properties

Name Return DeclaringType Summary

Public Events

Name Event Arguments DeclaringType Summary

Public Constructors

StreetMatchingPlugin()

This is the constructor of this class.

Remarks

Parameters

Name Type Description

Go Back

StreetMatchingPlugin(String)

This is the constructor of this class.

Remarks

Parameters

Name Type Description
dataPath String<!– System.String –> The path of the Geocoder data folder.

Go Back

StreetMatchingPlugin(String, MatchMode)

This is the constructor of this class.

Remarks

Parameters

Name Type Description
dataPath String<!– System.String –> The path to the Geocoder data folder.
matchMode MatchMode<!– ThinkGeo.MapSuite.MapSuiteGeocoder.MatchMode –> This parameter is the match mode of the street matching plugin.

Go Back

Protected Constructors

Public Methods

Close()

This method closes the MatchingPlugin. This method is the concrete wrapper for CloseCore.

Remarks

Return Value

Return Type Description
Void<!– System.Void –>

Parameters

Name Type Description

<!– ThinkGeo.MapSuite.MapSuiteGeocoder.MatchingPlugin –> Go Back

Dispose()

Releases all resources used by the StreetDbfMatchingPlugin.

Remarks

Return Value

Return Type Description
Void<!– System.Void –>

Parameters

Name Type Description

<!– ThinkGeo.MapSuite.MapSuiteGeocoder.StreetMatchingPlugin –> Go Back

Equals(Object)

Remarks

Return Value

Return Type Description
Boolean<!– System.Boolean –>

Parameters

Name Type Description
obj Object<!– System.Object –>

<!– System.Object –> Go Back

GetHashCode()

Remarks

Return Value

Return Type Description
Int32<!– System.Int32 –>

Parameters

Name Type Description

<!– System.Object –> Go Back

GetType()

Remarks

Return Value

Return Type Description
Type<!– System.Type –>

Parameters

Name Type Description

<!– System.Object –> Go Back

Match(String)

This method matches the source text and returns a collection of GeocoderMatch. This method is the concrete wrapper for MatchCore. It firstly formalizes the input sourceText, gets the formalized results and matches them using MatchCore one by one, then returns all of the results within a collection.

Remarks

Return Value

Return Type Description
Collection<GeocoderMatch><!– System.Collections.ObjectModel.Collection{ThinkGeo.MapSuite.MapSuiteGeocoder.GeocoderMatch} –> A collection of GeocoderMatch.

Parameters

Name Type Description
sourceText String<!– System.String –> The source text to match.

<!– ThinkGeo.MapSuite.MapSuiteGeocoder.MatchingPlugin –> Go Back

Open()

This method opens the MatchingPlugin for use. This method is the concrete wrapper for OpenCore.

Remarks

Return Value

Return Type Description
Void<!– System.Void –>

Parameters

Name Type Description

<!– ThinkGeo.MapSuite.MapSuiteGeocoder.MatchingPlugin –> Go Back

ToString()

Remarks

Return Value

Return Type Description
String<!– System.String –>

Parameters

Name Type Description

<!– System.Object –> Go Back

Protected Methods

CloseCore()

This method closes the StreetMatchingPlugin.

Remarks

Return Value

Return Type Description
Void<!– System.Void –>

Parameters

Name Type Description

<!– ThinkGeo.MapSuite.MapSuiteGeocoder.MatchingPlugin(overriden) –> Go Back

Finalize()

This method is automatically called after an object becomes inaccessible, unless the object has been exempted from finalization by a call to SuppressFinalize.

Remarks

Return Value

Return Type Description
Void<!– System.Void –>

Parameters

Name Type Description

<!– System.Object(overriden) –> Go Back

Formalize(String)

This method formalizes the source text. This method is the concrete wrapper of FormalizeCore.

Remarks

Return Value

Return Type Description
Collection<String><!– System.Collections.ObjectModel.Collection{System.String} –> The collection of formalized strings.

Parameters

Name Type Description
sourceText String<!– System.String –> The source text to formalize.

<!– ThinkGeo.MapSuite.MapSuiteGeocoder.MatchingPlugin –> Go Back

FormalizeCore(String)

This method formalizes the source text to get possible street addresses.

Remarks

Return Value

Return Type Description
Collection<String><!– System.Collections.ObjectModel.Collection{System.String} –> The collection containing possible street addresses.

Parameters

Name Type Description
sourceText String<!– System.String –> The source text to formalize.

<!– ThinkGeo.MapSuite.MapSuiteGeocoder.MatchingPlugin(overriden) –> Go Back

MatchCore(String)

This method matches source text in the corresponding street index files.

Remarks

Return Value

Return Type Description
Collection<GeocoderMatch><!– System.Collections.ObjectModel.Collection{ThinkGeo.MapSuite.MapSuiteGeocoder.GeocoderMatch} –> The collection of GeocoderMatch objects.

Parameters

Name Type Description
sourceText String<!– System.String –> The source text to match.

<!– ThinkGeo.MapSuite.MapSuiteGeocoder.MatchingPlugin(overriden) –> Go Back

MemberwiseClone()

Remarks

Return Value

Return Type Description
Object<!– System.Object –>

Parameters

Name Type Description

<!– System.Object –> Go Back

OpenCore()

This method opens the StreetMatchingPlugin.

Remarks

Return Value

Return Type Description
Void<!– System.Void –>

Parameters

Name Type Description

<!– ThinkGeo.MapSuite.MapSuiteGeocoder.MatchingPlugin(overriden) –> Go Back

Public Properties

DataPath

This property is the path to the Geocoder data folder.

Remarks

Return Value

Return Type
String<!– System.String –>

<!– ThinkGeo.MapSuite.MapSuiteGeocoder.StreetMatchingPlugin –> Go Back

MatchMode

This property is the match mode of the street matching plugin.

Remarks

Return Value

Return Type
MatchMode<!– ThinkGeo.MapSuite.MapSuiteGeocoder.MatchMode –>

<!– ThinkGeo.MapSuite.MapSuiteGeocoder.StreetMatchingPlugin –> Go Back

RankingMultiplier

This property is the ranking multipier for GeocoderMatch.

Remarks

Return Value

Return Type
Int32<!– System.Int32 –>

<!– ThinkGeo.MapSuite.MapSuiteGeocoder.MatchingPlugin –> Go Back

StreetNumberMatchingMode

This property is the street number match mode of the street matching plugin.

Remarks

Return Value

Return Type
StreetNumberMatchingMode<!– ThinkGeo.MapSuite.MapSuiteGeocoder.StreetNumberMatchingMode –>

<!– ThinkGeo.MapSuite.MapSuiteGeocoder.StreetMatchingPlugin –> Go Back

Protected Properties

Public Events

thinkgeo.mapsuite.mapsuitegeocoder.streetmatchingplugin.1440040131.txt.gz · Last modified: 2015/09/21 07:04 (external edit)