Ticket #1105 (closed defect: duplicate)

Opened 23 months ago

Last modified 23 months ago

Normalizing Addresses with commas

Reported by: egouge Owned by: robe
Priority: medium Milestone: PostGIS 2.0.0
Component: tiger geocoder Version: trunk
Keywords: Cc:

Description

The following works as I would expect.

select normalize_address('949 N 3rd St, New Hyde Park, NY 11040');

normalize_address


(949,N,3rd,St,"New Hyde Park",NY,11040,t)

However if a "," is added after the state, then I get a completely different answer, which is not what I would expect:

select normalize_address('949 N 3rd St, New Hyde Park, NY, 11040');

normalize_address


(949,N,"3rd St, New Hyde",ParkNY,11040,t)

See Thread:  http://postgis.refractions.net/pipermail/postgis-devel/2011-June/014051.html

Change History

Changed 23 months ago by egouge

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

Sorry I see this is already dealt with.

See: http://trac.osgeo.org/postgis/ticket/1086

Note: See TracTickets for help on using tickets.