Ticket #1113 (closed defect: fixed)
"Old" Road name not found
| Reported by: | mikepease | Owned by: | robe |
|---|---|---|---|
| Priority: | medium | Milestone: | PostGIS 2.0.0 |
| Component: | tiger geocoder | Version: | 1.5.X |
| Keywords: | Cc: |
Description
There are several roads in Minnesota that were replaced by a newer road or highway. The older road is still there, but the name was changed to "Old Yada Yada Road".
The geocoder is not finding these "Old" roads. But it finds them if you take out the word "Old" from the street name. Some examples:
--8040 OLD CEDAR AVE S, BLOOMINGTON, MN 55425 --17405 Old Rockford Rd, Plymouth, MN 55446 --198 OLD CONSTANCE BLVD, ANDOVER, MN 55304
--fails with "Old"
select abs(ST_X(geomout)::numeric(8,5))
--works without "Old"
select abs(ST_X(geomout)::numeric(8,5))
--fails with "Old"
select abs(ST_X(geomout)::numeric(8,5))
--works without "Old"
select abs(ST_X(geomout)::numeric(8,5))
--fails with "Old"
select abs(ST_X(geomout)::numeric(8,5))
--works without "Old"
select abs(ST_X(geomout)::numeric(8,5))
