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 woodbri, 7 years ago

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.

comment:2 by robe, 7 years ago

Summary: Reverse geocder missing North for MN sometimesReverse geocoder missing street suffix direction

comment:3 by robe, 7 years ago

In 15553:

Reverse geocoder missing street suffix direction.
References #3806 for PostGIS 2.4.0

comment:4 by robe, 7 years ago

Resolution: fixed
Status: newclosed

In 15554:

Reverse geocoder missing street suffix direction.
Closes #3806 for PostGIS 2.3.4

Note: See TracTickets for help on using tickets.