summaryrefslogtreecommitdiff
path: root/httemplate/misc/xmlhttp-censustract.html
blob: 8a76860472c4f24a212a87961b34545a90ff7c5a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<% $return %>\
<%init>

my $DEBUG = 0;

my $conf = new FS::Conf;

my $return = {};
my $url = "http://data.fcc.gov/api/block/find?format=json&censusYear=" . $cgi->param('census_year') . "&latitude=" . $cgi->param('lat') . "&longitude=" . $cgi->param('lon');

use LWP::Simple;
my $return = get $url;

</%init>