Opened 7 years ago
Closed 7 years ago
#3806 closed defect (fixed)
Reverse geocoder missing street suffix direction
Reported by: | robe | Owned by: | robe |
---|---|---|---|
Priority: | blocker | Milestone: | PostGIS 2.3.4 |
Component: | tiger geocoder | Version: | 2.3.x |
Keywords: | Cc: |
Description
SELECT pprint_addy(addy) As address, ST_X(geomout) As longitude, ST_Y(geomout) AS latitude, rating FROM geocode('212 3rd Ave N, MINNEAPOLIS, MN 55401',1); Note how this correctly contains north suffix. address | longitude | latitude | rating --------------------------------------+-------------------+------------------+-------- 212 3rd Ave N, Minneapolis, MN 55401 | -93.2718721957046 | 44.9851031382459 | 0 (1 row)
SELECT pprint_addy(addy[1]) FROM reverse_geocode(ST_Point(-93.271872, 44.98510)); pprint_addy ------------------------------------ 212 3rd Ave, Minneapolis, MN 55401 (1 row)
But reverse geocoding the same address leaves out the north.
Change History (4)
comment:1 by , 7 years ago
comment:2 by , 7 years ago
Summary: | Reverse geocder missing North for MN sometimes → Reverse geocoder missing street suffix direction |
---|
Note:
See TracTickets
for help on using tickets.
You should look at the underlying Tiger record. It might be possible that the N. is ignored when geocoding and and the location returned is from a record the does not include the N. so when you reverse geocode you only get what is on the record.