Ticket #1112 (closed defect: fixed)

Opened 2 years ago

Last modified 2 years ago

Interstate 35W Service Road

Reported by: mikepease Owned by: robe
Priority: high Milestone: PostGIS 2.0.0
Component: tiger geocoder Version: 1.5.X
Keywords: Cc:

Description

Depending on how this address is written, it either is fast and accurate, or slow and wrong.

--Original address: --8401 W 35W Service Dr NE, Blaine, MN 55449

--full address on Interstate service road geocodes to completely wrong place

select * from geocode('8401 W 35W Service Dr NE, Blaine, MN 55449')

--This works great!

select abs(ST_X(geomout)::numeric(8,5)) 'W, ' ST_Y(geomout)::numeric(8,5) 'N' as lat_lon, * from geocode('8401 35W, Blaine, MN 55449')

--This works great!

select abs(ST_X(geomout)::numeric(8,5)) 'W, ' ST_Y(geomout)::numeric(8,5) 'N' as lat_lon, * from geocode('8401 35W West, Blaine, MN 55449')

--This takes 2.5 minutes to run and gets the wrong answer

select * from geocode('8401 West 35W, Blaine, MN 55449')

--This takes 2.5 minutes to run and gets the wrong answer

select * from geocode('8401 W 35W, Blaine, MN 55449')

Change History

Changed 2 years ago by robe

  • status changed from new to closed
  • resolution set to fixed

fixed at r7632

Note: See TracTickets for help on using tickets.