Convenient JavaScript utilities for working with Census APIs: Statistics, Cartographic GeoJSON, lat/lng -> FIPS, and other niceties (written in ClojureScript)
As per someone's suggestion, I'm adding an request for using the SDKs geo call to filter a second (mashed up) point-based (series of lat / longs) data set. For example:
I have a bunch of locations of crimes of a certain sort
I call the SDK to dump out block-groups for my county
I want the block groups to include: population, income and age
Hereby, I want:
use case # 1: find crimes in areas with income > $x
use case # 2: show crimes per capita for each block group (e.g., in info window on a map)
use case # 3: tally up the total crimes in each block group to find correlations between crime and income and/or age
note: this is just a hypothetical... any such point-data filtering by census geo + census data mashup is implied...
As per someone's suggestion, I'm adding an request for using the SDKs geo call to filter a second (mashed up) point-based (series of lat / longs) data set. For example:
I have a bunch of locations of crimes of a certain sort I call the SDK to dump out block-groups for my county I want the block groups to include: population, income and age
Hereby, I want: use case # 1: find crimes in areas with income > $x use case # 2: show crimes per capita for each block group (e.g., in info window on a map) use case # 3: tally up the total crimes in each block group to find correlations between crime and income and/or age
note: this is just a hypothetical... any such point-data filtering by census geo + census data mashup is implied...