normalize_address: Internal address prefix sometimes get caught in post dir
— this works
SELECT * FROM normalize_address('529 Main Street, Apt 201, Boston, MA 02129');
address | predirabbrev | streetname | streettypeabbrev | postdirabbrev | internal | location | stateabbrev | zip | parsed
---------+--------------+------------+------------------+---------------+----------+----------+-------------+-------+--------
529 | | Main | St | | Apt 201 | Boston | MA | 02129 | t
But this has Suite bleed into postdirabbrev because it starts with S
SELECT * FROM normalize_address('529 Main Street, Suite 201, Boston, MA 02129');
address | predirabbrev | streetname | streettypeabbrev | postdirabbrev | internal | location | stateabbrev | zip | parsed
---------+--------------+------------+------------------+---------------+-----------+----------+-------------+-------+--------
529 | | Main | St | S | Suite 201 | Boston | MA | 02129 | t
Change History
(10)
Description: |
modified (diff)
|
Milestone: |
PostGIS 2.0.0 → PostGIS 2.1.0
|
Milestone: |
PostGIS 2.1.0 → PostGIS 2.0.1
|
Milestone: |
PostGIS 2.0.1 → PostGIS 2.1.0
|
Milestone: |
PostGIS 2.1.0 → PostGIS Future
|
Milestone: |
PostGIS Future → PostGIS 2.2.0
|
Resolution: |
→ fixed
|
Status: |
new → closed
|
Also # leaves out internal address.