Ticket #1355 (closed defect: wontfix)

Opened 18 months ago

Last modified 7 weeks ago

Normalizing internal addresses with non-numeric unit identifier strips unit identifier

Reported by: bpanulla Owned by: robe
Priority: medium Milestone: PostGIS 2.1.0
Component: tiger geocoder Version: trunk
Keywords: Cc: woodbri

Description

Normalizing an address with an internal component that starts with a non-numeric character component strips out the internal component.

STE A

SELECT (addy).*
FROM normalize_address('100 E BROADWAY AVE STE A, TUCSON, AZ') AS addy;
AddressPre-DirStreet Street TypePost-DirInternalLocalityStateZipparsed
100EBROADWAYAveSTETUSCONAZt

BLDG C

SELECT (addy).*
FROM normalize_address('100 E BROADWAY AVE BLDG C, TUCSON, AZ') AS addy;
AddressPre-DirStreet Street TypePost-DirInternalLocalityStateZipparsed
100EBROADWAYAveBLDGTUSCONAZt

This works: BLDG 3C

SELECT (addy).*
FROM normalize_address('100 E BROADWAY AVE BLDG 3C, TUCSON, AZ') AS addy;
AddressPre-DirStreet Street TypePost-DirInternalLocalityStateZipparsed
100EBROADWAYAveBLDG 3CTUSCONAZt

Change History

Changed 18 months ago by robe

  • status changed from new to assigned

Changed 15 months ago by robe

  • milestone changed from PostGIS 2.0.0 to PostGIS 2.1.0

Changed 5 months ago by woodbri

  • cc woodbri added

PAGC tools handle these.

Changed 7 weeks ago by robe

  • status changed from assigned to closed
  • resolution set to wontfix
Note: See TracTickets for help on using tickets.