summaryrefslogtreecommitdiff
path: root/FS/FS/Misc
diff options
context:
space:
mode:
authorMark Wells <mark@freeside.biz>2013-06-12 12:52:02 -0700
committerMark Wells <mark@freeside.biz>2013-06-12 12:52:02 -0700
commit0266575848902925e0615525e4466d835dbff2cf (patch)
tree86f261fcbb237f9904617c3705beeb260f9f351e /FS/FS/Misc
parentb08e4e3db911095e19371b66ec061dfff8a704d8 (diff)
fix census tract formatting from EZLocate, #13763 and #23425
Diffstat (limited to 'FS/FS/Misc')
-rw-r--r--FS/FS/Misc/Geo.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/FS/FS/Misc/Geo.pm b/FS/FS/Misc/Geo.pm
index 2ad8311..3ab1ea7 100644
--- a/FS/FS/Misc/Geo.pm
+++ b/FS/FS/Misc/Geo.pm
@@ -393,7 +393,7 @@ sub standardize_ezlocate {
latitude => $match->{MAT_LAT},
longitude => $match->{MAT_LON},
censustract => $match->{FIPS_ST}.$match->{FIPS_CTY}.
- sprintf('%04.2f',$match->{CEN_TRCT}),
+ sprintf('%07.2f',$match->{CEN_TRCT}),
addr_clean => 'Y',
};
}