RT# 73422 Changes to report Customer Contacts
[freeside.git] / httemplate / misc / xmlhttp-censustract.html
1 <% $return %>\
2 <%init>
3
4 my $DEBUG = 0;
5
6 my $conf = new FS::Conf;
7
8 my $return = {};
9 my $url = "http://data.fcc.gov/api/block/find?format=json&censusYear=" . $cgi->param('census_year') . "&latitude=" . $cgi->param('lat') . "&longitude=" . $cgi->param('lon');
10
11 use LWP::Simple;
12 my $return = get $url;
13
14 </%init>