This shows you the differences between two versions of the page.
| Both sides previous revision Previous revision Next revision | Previous revision | ||
|
thinkgeo.mapsuite.mapsuitegeocoder.soundexdbfmatchingplugin [2015/09/21 07:04] admin |
thinkgeo.mapsuite.mapsuitegeocoder.soundexdbfmatchingplugin [2017/03/16 21:59] (current) |
||
|---|---|---|---|
| Line 1: | Line 1: | ||
| ====== ThinkGeo.MapSuite.MapSuiteGeocoder.SoundexDbfMatchingPlugin ====== | ====== ThinkGeo.MapSuite.MapSuiteGeocoder.SoundexDbfMatchingPlugin ====== | ||
| + | |||
| + | {{section>upgrade_map_suite_to_10.0}} | ||
| + | |||
| This class implements soundex matching operations. There are two columns in the DBF file that are necessary for soundex matching. The first is the soundex value generated by certain Soundex algorithms (by default this is implemented by SimplifiedSoundex). The second is the exact value. | This class implements soundex matching operations. There are two columns in the DBF file that are necessary for soundex matching. The first is the soundex value generated by certain Soundex algorithms (by default this is implemented by SimplifiedSoundex). The second is the exact value. | ||
| ===== Inheritance Hierarchy ===== | ===== Inheritance Hierarchy ===== | ||
| Line 10: | Line 13: | ||
| ** {{wiki:PublicMethod.gif|}} SoundexDbfMatchingPlugin() ** | ** {{wiki:PublicMethod.gif|}} SoundexDbfMatchingPlugin() ** | ||
| - | This is the constructor of this class. | + | * //This is the constructor of this class.// |
| == Remarks == | == Remarks == | ||
| - | N/A | + | * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.MapSuiteGeocoder.SoundexDbfMatchingPlugin#SoundexDbfMatchingPlugin.28.29// |
| == Parameters == | == Parameters == | ||
| <div newline></div> | <div newline></div> | ||
| ** {{wiki:PublicMethod.gif|}} SoundexDbfMatchingPlugin(String,String) ** | ** {{wiki:PublicMethod.gif|}} SoundexDbfMatchingPlugin(String,String) ** | ||
| - | This is the constructor of this class. | + | * //This is the constructor of this class.// |
| == Remarks == | == Remarks == | ||
| - | N/A | + | * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.MapSuiteGeocoder.SoundexDbfMatchingPlugin#SoundexDbfMatchingPlugin.28String.2C_String.29// |
| == Parameters == | == Parameters == | ||
| * //pathFileName// | * //pathFileName// | ||
| Line 34: | Line 37: | ||
| ** {{wiki:PublicMethod.gif|}} GetRecord(Int32) ** | ** {{wiki:PublicMethod.gif|}} GetRecord(Int32) ** | ||
| - | N/A | + | * //This method gets a record by record index from the DBF file.// |
| == Remarks == | == Remarks == | ||
| - | N/A | + | * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.MapSuiteGeocoder.SoundexDbfMatchingPlugin#GetRecord.28Int32.29// |
| == Return Value == | == Return Value == | ||
| * Type:Dictionary<String,String> | * Type:Dictionary<String,String> | ||
| - | * Description:N/A | + | * Description:The record value. |
| == Parameters == | == Parameters == | ||
| * //recordNumber// | * //recordNumber// | ||
| * Type:Int32 | * Type:Int32 | ||
| - | * Description:N/A | + | * Description:This parameter is the record number. |
| <div newline></div> | <div newline></div> | ||
| ** {{wiki:PublicMethod.gif|}} GetRecords(Int32,Int32) ** | ** {{wiki:PublicMethod.gif|}} GetRecords(Int32,Int32) ** | ||
| - | N/A | + | * //This method gets records by using the specified range.// |
| == Remarks == | == Remarks == | ||
| - | N/A | + | * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.MapSuiteGeocoder.SoundexDbfMatchingPlugin#GetRecords.28Int32.2C_Int32.29// |
| == Return Value == | == Return Value == | ||
| * Type:Collection<Dictionary<String,String>> | * Type:Collection<Dictionary<String,String>> | ||
| - | * Description:N/A | + | * Description:The collection of record values. |
| == Parameters == | == Parameters == | ||
| * //firstRecordNumber// | * //firstRecordNumber// | ||
| * Type:Int32 | * Type:Int32 | ||
| - | * Description:N/A | + | * Description:This parameter is the first record number to get. |
| * //count// | * //count// | ||
| * Type:Int32 | * Type:Int32 | ||
| - | * Description:N/A | + | * Description:This parameter is the record count to return. |
| <div newline></div> | <div newline></div> | ||
| ** {{wiki:PublicMethod.gif|}} AddRecord(IEnumerable<Object>) ** | ** {{wiki:PublicMethod.gif|}} AddRecord(IEnumerable<Object>) ** | ||
| - | N/A | + | * //This method adds one record to the DBF file.// |
| == Remarks == | == Remarks == | ||
| - | N/A | + | * //For the most updated Info for this topic, please check it here:// |
| == Return Value == | == Return Value == | ||
| Line 81: | Line 84: | ||
| * //values// | * //values// | ||
| * Type:IEnumerable<Object> | * Type:IEnumerable<Object> | ||
| - | * Description:N/A | + | * Description:This parameter represents a record in the DBF file. |
| <div newline></div> | <div newline></div> | ||
| ** {{wiki:PublicMethod.gif|}} Dispose() ** | ** {{wiki:PublicMethod.gif|}} Dispose() ** | ||
| - | N/A | + | * //Releases all resources used by the DbfMatchingPlugin.// |
| == Remarks == | == Remarks == | ||
| - | N/A | + | * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.MapSuiteGeocoder.SoundexDbfMatchingPlugin#Dispose.28.29// |
| == Return Value == | == Return Value == | ||
| Line 98: | Line 101: | ||
| ** {{wiki:PublicMethod.gif|}} Match(String) ** | ** {{wiki:PublicMethod.gif|}} Match(String) ** | ||
| - | N/A | + | * //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 == | == Remarks == | ||
| - | N/A | + | * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.MapSuiteGeocoder.SoundexDbfMatchingPlugin#Match.28String.29// |
| == Return Value == | == Return Value == | ||
| * Type:Collection<[[ThinkGeo.MapSuite.MapSuiteGeocoder.GeocoderMatch|GeocoderMatch]]> | * Type:Collection<[[ThinkGeo.MapSuite.MapSuiteGeocoder.GeocoderMatch|GeocoderMatch]]> | ||
| - | * Description:N/A | + | * Description:A collection of GeocoderMatch. |
| == Parameters == | == Parameters == | ||
| * //sourceText// | * //sourceText// | ||
| * Type:String | * Type:String | ||
| - | * Description:N/A | + | * Description:The source text to match. |
| <div newline></div> | <div newline></div> | ||
| ** {{wiki:PublicMethod.gif|}} Open() ** | ** {{wiki:PublicMethod.gif|}} Open() ** | ||
| - | N/A | + | * //This method opens the MatchingPlugin for use. This method is the concrete wrapper for OpenCore.// |
| == Remarks == | == Remarks == | ||
| - | N/A | + | * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.MapSuiteGeocoder.SoundexDbfMatchingPlugin#Open.28.29// |
| == Return Value == | == Return Value == | ||
| Line 126: | Line 129: | ||
| ** {{wiki:PublicMethod.gif|}} Close() ** | ** {{wiki:PublicMethod.gif|}} Close() ** | ||
| - | N/A | + | * //This method closes the MatchingPlugin. This method is the concrete wrapper for CloseCore.// |
| == Remarks == | == Remarks == | ||
| - | N/A | + | * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.MapSuiteGeocoder.SoundexDbfMatchingPlugin#Close.28.29// |
| == Return Value == | == Return Value == | ||
| Line 138: | Line 141: | ||
| ** {{wiki:PublicMethod.gif|}} ToString() ** | ** {{wiki:PublicMethod.gif|}} ToString() ** | ||
| - | N/A | + | * //N/A// |
| == Remarks == | == Remarks == | ||
| - | N/A | + | * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.MapSuiteGeocoder.SoundexDbfMatchingPlugin#ToString.28.29// |
| == Return Value == | == Return Value == | ||
| Line 150: | Line 153: | ||
| ** {{wiki:PublicMethod.gif|}} Equals(Object) ** | ** {{wiki:PublicMethod.gif|}} Equals(Object) ** | ||
| - | N/A | + | * //N/A// |
| == Remarks == | == Remarks == | ||
| - | N/A | + | * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.MapSuiteGeocoder.SoundexDbfMatchingPlugin#Equals.28Object.29// |
| == Return Value == | == Return Value == | ||
| Line 166: | Line 169: | ||
| ** {{wiki:PublicMethod.gif|}} GetHashCode() ** | ** {{wiki:PublicMethod.gif|}} GetHashCode() ** | ||
| - | N/A | + | * //N/A// |
| == Remarks == | == Remarks == | ||
| - | N/A | + | * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.MapSuiteGeocoder.SoundexDbfMatchingPlugin#GetHashCode.28.29// |
| == Return Value == | == Return Value == | ||
| Line 178: | Line 181: | ||
| ** {{wiki:PublicMethod.gif|}} GetType() ** | ** {{wiki:PublicMethod.gif|}} GetType() ** | ||
| - | N/A | + | * //N/A// |
| == Remarks == | == Remarks == | ||
| - | N/A | + | * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.MapSuiteGeocoder.SoundexDbfMatchingPlugin#GetType.28.29// |
| == Return Value == | == Return Value == | ||
| Line 191: | Line 194: | ||
| ** {{wiki:ProtectedMethod.gif|}} MatchCore(String) ** | ** {{wiki:ProtectedMethod.gif|}} MatchCore(String) ** | ||
| - | This method matches source text in corresponding index files. This function tries to get all MatchItems by using binary searching in MatchDbf, but there could be many inaccurate results returned because of Soundex. Thus, it loops through each MatchItem, calculates the ditance between the result and the source according to the Levenshteins algorithm, then finds the result with the shortest distance. | + | * //This method matches source text in corresponding index files. This function tries to get all MatchItems by using binary searching in MatchDbf, but there could be many inaccurate results returned because of Soundex. Thus, it loops through each MatchItem, calculates the ditance between the result and the source according to the Levenshteins algorithm, then finds the result with the shortest distance.// |
| == Remarks == | == Remarks == | ||
| - | N/A | + | * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.MapSuiteGeocoder.SoundexDbfMatchingPlugin#MatchCore.28String.29// |
| == Return Value == | == Return Value == | ||
| Line 207: | Line 210: | ||
| ** {{wiki:ProtectedMethod.gif|}} OpenCore() ** | ** {{wiki:ProtectedMethod.gif|}} OpenCore() ** | ||
| - | N/A | + | * //N/A// |
| == Remarks == | == Remarks == | ||
| - | N/A | + | * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.MapSuiteGeocoder.SoundexDbfMatchingPlugin#OpenCore.28.29// |
| == Return Value == | == Return Value == | ||
| Line 219: | Line 222: | ||
| ** {{wiki:ProtectedMethod.gif|}} CloseCore() ** | ** {{wiki:ProtectedMethod.gif|}} CloseCore() ** | ||
| - | N/A | + | * //N/A// |
| == Remarks == | == Remarks == | ||
| - | N/A | + | * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.MapSuiteGeocoder.SoundexDbfMatchingPlugin#CloseCore.28.29// |
| == Return Value == | == Return Value == | ||
| Line 231: | Line 234: | ||
| ** {{wiki:ProtectedMethod.gif|}} SearchUpperBound(Int32,Int32,String,String) ** | ** {{wiki:ProtectedMethod.gif|}} SearchUpperBound(Int32,Int32,String,String) ** | ||
| - | N/A | + | * //This method gets the record number of the upper boundary of the matched results.// |
| == Remarks == | == Remarks == | ||
| - | N/A | + | * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.MapSuiteGeocoder.SoundexDbfMatchingPlugin#SearchUpperBound.28Int32.2C_Int32.2C_String.2C_String.29// |
| == Return Value == | == Return Value == | ||
| * Type:Int32 | * Type:Int32 | ||
| - | * Description:N/A | + | * Description:The record number of the upper boundary of the matched results. |
| == Parameters == | == Parameters == | ||
| * //firstRecordNumber// | * //firstRecordNumber// | ||
| * Type:Int32 | * Type:Int32 | ||
| - | * Description:N/A | + | * Description:The first record number for the search. |
| * //lastRecordNumber// | * //lastRecordNumber// | ||
| * Type:Int32 | * Type:Int32 | ||
| - | * Description:N/A | + | * Description:The last record number for the search. |
| * //sourceText// | * //sourceText// | ||
| * Type:String | * Type:String | ||
| - | * Description:N/A | + | * Description:The source text to search for. |
| * //columnName// | * //columnName// | ||
| * Type:String | * Type:String | ||
| - | * Description:N/A | + | * Description:The name of the column on which the search is based. |
| <div newline></div> | <div newline></div> | ||
| ** {{wiki:ProtectedMethod.gif|}} SearchLowerBound(Int32,Int32,String,String) ** | ** {{wiki:ProtectedMethod.gif|}} SearchLowerBound(Int32,Int32,String,String) ** | ||
| - | N/A | + | * //This method gets the record number of the lower boundary of the matched results.// |
| == Remarks == | == Remarks == | ||
| - | N/A | + | * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.MapSuiteGeocoder.SoundexDbfMatchingPlugin#SearchLowerBound.28Int32.2C_Int32.2C_String.2C_String.29// |
| == Return Value == | == Return Value == | ||
| * Type:Int32 | * Type:Int32 | ||
| - | * Description:N/A | + | * Description:The record number of the lower boundary of the matched results. |
| == Parameters == | == Parameters == | ||
| * //firstRecordNumber// | * //firstRecordNumber// | ||
| * Type:Int32 | * Type:Int32 | ||
| - | * Description:N/A | + | * Description:The first record number for the search. |
| * //lastRecordNumber// | * //lastRecordNumber// | ||
| * Type:Int32 | * Type:Int32 | ||
| - | * Description:N/A | + | * Description:The last record number for the search. |
| * //sourceText// | * //sourceText// | ||
| * Type:String | * Type:String | ||
| - | * Description:N/A | + | * Description:The source text to search for. |
| * //columnName// | * //columnName// | ||
| * Type:String | * Type:String | ||
| - | * Description:N/A | + | * Description:The name of the column on which the search is based. |
| <div newline></div> | <div newline></div> | ||
| ** {{wiki:ProtectedMethod.gif|}} GetKeyColumnName() ** | ** {{wiki:ProtectedMethod.gif|}} GetKeyColumnName() ** | ||
| - | N/A | + | * //This method gets the key column name from the DBF file.// |
| == Remarks == | == Remarks == | ||
| - | N/A | + | * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.MapSuiteGeocoder.SoundexDbfMatchingPlugin#GetKeyColumnName.28.29// |
| == Return Value == | == Return Value == | ||
| * Type:String | * Type:String | ||
| - | * Description:N/A | + | * Description:The key column name. |
| == Parameters == | == Parameters == | ||
| Line 299: | Line 302: | ||
| ** {{wiki:ProtectedMethod.gif|}} BinarySearch(Int32,Int32,String,String) ** | ** {{wiki:ProtectedMethod.gif|}} BinarySearch(Int32,Int32,String,String) ** | ||
| - | N/A | + | * //This method does a binary search on the DBF file and returns the record it hits.// |
| == Remarks == | == Remarks == | ||
| - | N/A | + | * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.MapSuiteGeocoder.SoundexDbfMatchingPlugin#BinarySearch.28Int32.2C_Int32.2C_String.2C_String.29// |
| == Return Value == | == Return Value == | ||
| * Type:Dictionary<String,String> | * Type:Dictionary<String,String> | ||
| - | * Description:N/A | + | * Description:The record hits in the search. |
| == Parameters == | == Parameters == | ||
| * //firstRecordNumber// | * //firstRecordNumber// | ||
| * Type:Int32 | * Type:Int32 | ||
| - | * Description:N/A | + | * Description:The first record number for the search. |
| * //lastRecordNumber// | * //lastRecordNumber// | ||
| * Type:Int32 | * Type:Int32 | ||
| - | * Description:N/A | + | * Description:The last record number for the search. |
| * //sourceText// | * //sourceText// | ||
| * Type:String | * Type:String | ||
| - | * Description:N/A | + | * Description:The source text to match. |
| * //columnName// | * //columnName// | ||
| * Type:String | * Type:String | ||
| - | * Description:N/A | + | * Description:The name of the column on which the binaray search is based. |
| <div newline></div> | <div newline></div> | ||
| ** {{wiki:ProtectedMethod.gif|}} Finalize() ** | ** {{wiki:ProtectedMethod.gif|}} Finalize() ** | ||
| - | N/A | + | * //N/A// |
| == Remarks == | == Remarks == | ||
| - | N/A | + | * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.MapSuiteGeocoder.SoundexDbfMatchingPlugin#Finalize.28.29// |
| == Return Value == | == Return Value == | ||
| Line 339: | Line 342: | ||
| ** {{wiki:ProtectedMethod.gif|}} Formalize(String) ** | ** {{wiki:ProtectedMethod.gif|}} Formalize(String) ** | ||
| - | N/A | + | * //This method formalizes the source text. This method is the concrete wrapper of FormalizeCore.// |
| == Remarks == | == Remarks == | ||
| - | N/A | + | * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.MapSuiteGeocoder.SoundexDbfMatchingPlugin#Formalize.28String.29// |
| == Return Value == | == Return Value == | ||
| * Type:Collection<String> | * Type:Collection<String> | ||
| - | * Description:N/A | + | * Description:The collection of formalized strings. |
| == Parameters == | == Parameters == | ||
| * //sourceText// | * //sourceText// | ||
| * Type:String | * Type:String | ||
| - | * Description:N/A | + | * Description:The source text to formalize. |
| <div newline></div> | <div newline></div> | ||
| ** {{wiki:ProtectedMethod.gif|}} FormalizeCore(String) ** | ** {{wiki:ProtectedMethod.gif|}} FormalizeCore(String) ** | ||
| - | N/A | + | * //This method formalizes the source text.// |
| == Remarks == | == Remarks == | ||
| - | N/A | + | * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.MapSuiteGeocoder.SoundexDbfMatchingPlugin#FormalizeCore.28String.29// |
| == Return Value == | == Return Value == | ||
| * Type:Collection<String> | * Type:Collection<String> | ||
| - | * Description:N/A | + | * Description:The collection of formalized strings. |
| == Parameters == | == Parameters == | ||
| * //sourceText// | * //sourceText// | ||
| * Type:String | * Type:String | ||
| - | * Description:N/A | + | * Description:The source text to formalize. |
| <div newline></div> | <div newline></div> | ||
| ** {{wiki:ProtectedMethod.gif|}} oxM=(GeocoderMatch) ** | ** {{wiki:ProtectedMethod.gif|}} oxM=(GeocoderMatch) ** | ||
| - | N/A | + | * //N/A// |
| == Remarks == | == Remarks == | ||
| - | N/A | + | * //N/A// |
| == Return Value == | == Return Value == | ||
| Line 387: | Line 390: | ||
| ** {{wiki:ProtectedMethod.gif|}} MemberwiseClone() ** | ** {{wiki:ProtectedMethod.gif|}} MemberwiseClone() ** | ||
| - | N/A | + | * //N/A// |
| == Remarks == | == Remarks == | ||
| - | N/A | + | * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.MapSuiteGeocoder.SoundexDbfMatchingPlugin#MemberwiseClone.28.29// |
| == Return Value == | == Return Value == | ||
| Line 402: | Line 405: | ||
| This property is the column name for the real value. | This property is the column name for the real value. | ||
| == Remarks == | == Remarks == | ||
| - | N/A | + | For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.MapSuiteGeocoder.SoundexDbfMatchingPlugin#SoundexRealValueColumnName |
| == Return Value == | == Return Value == | ||
| * Type:String | * Type:String | ||
| Line 408: | Line 411: | ||
| ** {{wiki:PublicProperty.gif|}} PathFileName ** | ** {{wiki:PublicProperty.gif|}} PathFileName ** | ||
| - | N/A | + | Gets and sets the path and file name of the DBF file to be used for Geocoding. |
| == Remarks == | == Remarks == | ||
| - | N/A | + | For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.MapSuiteGeocoder.SoundexDbfMatchingPlugin#PathFileName |
| == Return Value == | == Return Value == | ||
| * Type:String | * Type:String | ||
| Line 416: | Line 419: | ||
| ** {{wiki:PublicProperty.gif|}} ReadWriteMode ** | ** {{wiki:PublicProperty.gif|}} ReadWriteMode ** | ||
| - | N/A | + | The read/write mode for the DBF file. |
| == Remarks == | == Remarks == | ||
| - | N/A | + | For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.MapSuiteGeocoder.SoundexDbfMatchingPlugin#ReadWriteMode |
| == Return Value == | == Return Value == | ||
| * Type:[[ThinkGeo.MapSuite.MapSuiteGeocoder.DbfMatchingPluginReadWriteMode|DbfMatchingPluginReadWriteMode]] | * Type:[[ThinkGeo.MapSuite.MapSuiteGeocoder.DbfMatchingPluginReadWriteMode|DbfMatchingPluginReadWriteMode]] | ||
| Line 424: | Line 427: | ||
| ** {{wiki:PublicProperty.gif|}} RecordCount ** | ** {{wiki:PublicProperty.gif|}} RecordCount ** | ||
| - | N/A | + | This record count of the DBF file. |
| == Remarks == | == Remarks == | ||
| - | N/A | + | For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.MapSuiteGeocoder.SoundexDbfMatchingPlugin#RecordCount |
| == Return Value == | == Return Value == | ||
| * Type:Int32 | * Type:Int32 | ||
| Line 432: | Line 435: | ||
| ** {{wiki:PublicProperty.gif|}} RankingMultiplier ** | ** {{wiki:PublicProperty.gif|}} RankingMultiplier ** | ||
| - | N/A | + | This property is the ranking multipier for GeocoderMatch. |
| == Remarks == | == Remarks == | ||
| - | N/A | + | For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.MapSuiteGeocoder.SoundexDbfMatchingPlugin#RankingMultiplier |
| == Return Value == | == Return Value == | ||
| * Type:Int32 | * Type:Int32 | ||