User Tools

Site Tools


thinkgeo.mapsuite.mapsuitegeocoder.matchingplugin

ThinkGeo.MapSuite.MapSuiteGeocoder.MatchingPlugin

Note: The page was created before Map Suite 10. Map Suite 10.0 organized many classes into new namespaces and assemblies as well as had a few minor breaks in compatibility. The majority of previously built code should work without modification assuming the new namespaces are added. For guidance on upgrading your existing code, please check out MapSuite 10 Upgrade Guide.

This class is the abstract class encapsulating matching operations. The MatchingPlugIn class is the key class in the Geocoder. It formalizes the source text using GeocoderFormalizer, tries to match in some kinds of datasets and returns a MatchResult object. MatchingPlugIn can work independently or can be combined to work together with others to accomplish complicated matching requirements.

Inheritance Hierarchy

Members Summary

Public Constructors

Protected Constructors

MatchingPlugin()

  • This is the constructor of this class.
Remarks
  • For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.MapSuiteGeocoder.MatchingPlugin#MatchingPlugin.28.29
Parameters

Public Methods

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
  • For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.MapSuiteGeocoder.MatchingPlugin#Match.28String.29
Return Value
  • Type:Collection<GeocoderMatch>
  • Description:A collection of GeocoderMatch.
Parameters
  • sourceText
    • Type:String
    • Description:The source text to match.

Open()

  • This method opens the MatchingPlugin for use. This method is the concrete wrapper for OpenCore.
Remarks
  • For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.MapSuiteGeocoder.MatchingPlugin#Open.28.29
Return Value
  • Type:Void
  • Description:N/A
Parameters

Close()

  • This method closes the MatchingPlugin. This method is the concrete wrapper for CloseCore.
Remarks
  • For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.MapSuiteGeocoder.MatchingPlugin#Close.28.29
Return Value
  • Type:Void
  • Description:N/A
Parameters

ToString()

  • N/A
Remarks
  • For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.MapSuiteGeocoder.MatchingPlugin#ToString.28.29
Return Value
  • Type:String
  • Description:N/A
Parameters

Equals(Object)

  • N/A
Remarks
  • For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.MapSuiteGeocoder.MatchingPlugin#Equals.28Object.29
Return Value
  • Type:Boolean
  • Description:N/A
Parameters
  • obj
    • Type:Object
    • Description:N/A

GetHashCode()

  • N/A
Remarks
  • For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.MapSuiteGeocoder.MatchingPlugin#GetHashCode.28.29
Return Value
  • Type:Int32
  • Description:N/A
Parameters

GetType()

  • N/A
Remarks
  • For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.MapSuiteGeocoder.MatchingPlugin#GetType.28.29
Return Value
  • Type:Type
  • Description:N/A
Parameters

Protected Methods

MatchCore(String)

  • This method is an abstract method used to match source text. It will match the source text and return the result within a collection of GeocoderMatch.
Remarks
  • For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.MapSuiteGeocoder.MatchingPlugin#MatchCore.28String.29
Return Value
  • Type:Collection<GeocoderMatch>
  • Description:A collection of GeocoderMatch.
Parameters
  • sourceText
    • Type:String
    • Description:The source text to match.

Formalize(String)

  • This method formalizes the source text. This method is the concrete wrapper of FormalizeCore.
Remarks
  • For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.MapSuiteGeocoder.MatchingPlugin#Formalize.28String.29
Return Value
  • Type:Collection<String>
  • Description:The collection of formalized strings.
Parameters
  • sourceText
    • Type:String
    • Description:The source text to formalize.

FormalizeCore(String)

  • This method formalizes the source text.
Remarks
  • For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.MapSuiteGeocoder.MatchingPlugin#FormalizeCore.28String.29
Return Value
  • Type:Collection<String>
  • Description:The collection of formalized strings.
Parameters
  • sourceText
    • Type:String
    • Description:The source text to formalize.

OpenCore()

  • This method opens the MatchingPlugin for use.
Remarks
  • For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.MapSuiteGeocoder.MatchingPlugin#OpenCore.28.29
Return Value
  • Type:Void
  • Description:N/A
Parameters

CloseCore()

  • This method closes the MatchingPlugin.
Remarks
  • For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.MapSuiteGeocoder.MatchingPlugin#CloseCore.28.29
Return Value
  • Type:Void
  • Description:N/A
Parameters

oxM=(GeocoderMatch)

  • N/A
Remarks
  • N/A
Return Value
  • Type:Void
  • Description:N/A
Parameters

Finalize()

  • N/A
Remarks
  • For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.MapSuiteGeocoder.MatchingPlugin#Finalize.28.29
Return Value
  • Type:Void
  • Description:N/A
Parameters

MemberwiseClone()

  • N/A
Remarks
  • For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.MapSuiteGeocoder.MatchingPlugin#MemberwiseClone.28.29
Return Value
  • Type:Object
  • Description:N/A
Parameters

CleanSourceText(String,IEnumerable<String>)

  • Cleans all special symbols present in the source text.
Remarks
  • For the most updated Info for this topic, please check it here:
Return Value
  • Type:String
  • Description:The clean text with the specified strings removed.
Parameters
  • sourceText
    • Type:String
    • Description:The source text need to formalize.
  • stringsToRemove
    • Type:IEnumerable<String>
    • Description:The strings that need to be cleaned.

pBM=(GeocoderMatch)

  • N/A
Remarks
  • N/A
Return Value
  • Type:Void
  • Description:N/A
Parameters

Public Properties

RankingMultiplier

This property is the ranking multipier for GeocoderMatch.

Remarks

For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.MapSuiteGeocoder.MatchingPlugin#RankingMultiplier

Return Value
  • Type:Int32

Protected Properties

Public Events

thinkgeo.mapsuite.mapsuitegeocoder.matchingplugin.txt · Last modified: 2017/03/16 21:59 (external edit)