Peter,
I agree with you.... It would make sense to me that you should be able to get a partial match to an address with a similar street number (13 -> 15), but I don't know if it's possible with ArcGIS locators.
Were you ever able to find any way of tweaking the scoring or match rules?
Dan
Please vote for this idea:
Peter,
The reason we don't allow incorrect house number is because this locator type is supposed to be the most accurate type of match that you can obtain. Generally we would suggest that you create a Dual Ranges locator as well and add the 2 locators to a composite locator instead. If you don't have this data, there is a way to customize the locator style template file to build a locator without requiring the house number to be correct.
What you would do is the following.
1. Open the USAddress.lot.xml file with a XML editor or text editor like Notpad++.
2. Search for "<mapping_schema ref="SingleAddressSearch" />"
3. Replace with "<mapping_schema ref="SingleAddressPolygonCentroid" />".
4. Build the locator again.
Let me know if you have any questions.
Brad
Gotta go with Brad on this one: A single address locator is just that. I have address points that I am now incorporating into my 9-1-1 dispatch locators. Sometimes a parcel or other physical address is not right along the street it is addressed to; a point is absolute.
Consequently, I'm big fan of address points for my use in geocoding and single address locators for them. I composite them with a US Streets locator so if I don't have a point or the incident is in an intersection, I'm good to go.
(Between the two 9-1-1 call centers I contract to, I'm responsible for addressing about 3,000 9-1-1 calls a day, every day. Probably a bunch more this holiday weekend. Please stay safe out there!)
Brad Niemand:
there is a way to customize the locator style template file to build a locator without requiring the house number to be correct.
What you would do is the following.
1. Open the USAddress.lot.xml file with a XML editor or text editor like Notpad++.
2. Search for "<mapping_schema ref="SingleAddressSearch" />"
3. Replace with "<mapping_schema ref="SingleAddressPolygonCentroid" />".
4. Build the locator again.
We tried changing the mapping_schema ref and rebuilding the locator, but did not see any change. Are there any addtional steps needed to change the scoring weight of the house number component?
Thanks,
Dan
You might need to reduce the MinimumMatchScore and/or MinimumCandidateScore for the locator.
Brad
Sure, reducing the min match/candidate scores will show more low-scoring matches, but the issue is how do we increase the score of a candidate that has a house number that is closer to the input address than some other random house number on the same street.
For exmaple, if I enter "916 I ST", get back all of the addresses on I ST with the same score...
101 I ST, score 55
1609 I ST, score 55
2322 I ST, score 55
915 I ST, score 55
910 I ST, score 55
401 I ST, score 55
+ many, many more
We should be able to adjust the scoring rules to promote 910 & 915 to have higher scores than the rest. Obviously, we don't want these scores to be 100, because they don't match. However, 910 & 915 are closer to 916 than the others, so the scoring should reflect that.
I hope that a 10.x locator style can be customized to change the way that the house number matches to behave more like it did with 9.x style locators.
Thanks,
Dan
Search for the following:
<mapping_schema name="SingleAddress" geom_type="point">
Under this section you will see a field defined for "House" It will look like this:
<field name="House" grammar_ref="House">
<desc>House number</desc>
<preferred_name>HN</preferred_name>
<preferred_name>ADDRESS</preferred_name>
</field>
Replace it with this and you will get the functionality you want:
<field name="House" grammar_ref="House">
<desc>House number</desc>
<preferred_name>HN</preferred_name>
<preferred_name>ADDRESS</preferred_name>
<scoring_method ref="match_house_to_range">
<init_properties>
<prop name="MatchHouseToRange:DistanceScoring:Method">Linear</prop>
</init_properties>
<parameter>
<input_value/>
</parameter>
<parameter>
<field_value ref="House"/>
</parameter>
<parameter>
<field_value ref="House"/>
</parameter>
<parameter>
<value>B</value>
</parameter>
</scoring_method>
</field>
Brad
Thanks Brad. Would this be in addition to .... or instead of .... the "mapping_schema ref" change suggested previously?
This would be in addition to the mapping_schema ref changes mentioned before.
Brad