From 489e2526347375803e6154791ffb033ea0af9cf6 Mon Sep 17 00:00:00 2001 From: Ivan Kohler Date: Mon, 11 Apr 2022 15:43:29 -0700 Subject: [PATCH] strip address suffixes for better census coding, RT#86245 --- FS/FS/Misc/Geo.pm | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/FS/FS/Misc/Geo.pm b/FS/FS/Misc/Geo.pm index e301a9406..b3f3c6860 100644 --- a/FS/FS/Misc/Geo.pm +++ b/FS/FS/Misc/Geo.pm @@ -133,8 +133,11 @@ sub get_censustract_uscensus { my $url = 'https://geocoding.geo.census.gov/geocoder/geographies/address?'; + my $address1 = $location->{address1}; + $address1 =~ s/(apt|ste|suite|unit)[\s\d]\w*\s*$//i; + my $query_hash = { - street => $location->{address1}, + street => $address1, city => $location->{city}, state => $location->{state}, benchmark => 'Public_AR_Current', -- 2.20.1