Opened 12 years ago

Closed 11 years ago

#1355 closed defect (wontfix)

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: master
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 (4)

comment:1 by robe, 12 years ago

Status: newassigned

comment:2 by robe, 12 years ago

Milestone: PostGIS 2.0.0PostGIS 2.1.0

comment:3 by woodbri, 11 years ago

Cc: woodbri added

PAGC tools handle these.

comment:4 by robe, 11 years ago

Resolution: wontfix
Status: assignedclosed
Note: See TracTickets for help on using tickets.