summaryrefslogtreecommitdiff
path: root/FS/FS/Misc
diff options
context:
space:
mode:
authorMark Wells <mark@freeside.biz>2013-06-12 12:33:34 -0700
committerMark Wells <mark@freeside.biz>2013-06-12 12:33:34 -0700
commit59340bb2d8c9bd8445b6890da2a57b6f004b4b97 (patch)
treeed1bb8bae4ff6f25db3f5c14eb44ab479964e171 /FS/FS/Misc
parentcee1acbe4e7c3bc6ce12cc3b665b742dd28fd2e1 (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 2ad8311d0..3ab1ea72f 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',
};
}