Research
Security News
Quasar RAT Disguised as an npm Package for Detecting Vulnerabilities in Ethereum Smart Contracts
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
Convenience functions for working with Census APIs: Statistics, Cartographic GeoJSON, lat/lng -> FIPS, and other niceties.
census
FunctionCitySDK v2.0 ships the census
function, which takes two arguments:
census
function and applied to the responseBrief overview of each argument parameter that can be passed into CitySDK v2.0
Parameter | Description | Geocodes | Stats | GeoJSON | GeoJSON with Stats |
---|---|---|---|---|---|
vintage | Refers to the reference year (typically release year) of the data requested | ✔ | ✔ | ✔ | ✔ |
geoHierarchy | The geographic scope and hierarchical path to the data requested | ✔ | ✔ | ✔ | ✔ |
sourcePath | Refers to the Census survey and/or product from which your request should be filled | ✔ | ✔ | ||
values | For Census statistics, values request counts/estimates by their unique identifier | ✔ | ✔ | ||
predicates | Used as a filter available on some values with ranges denoted using : | ✔* | ✔* | ||
statsKey | You may request a key for Census' statistics API here | ✔** | ✔** | ||
geoResolution | One of three available resolutions of GeoJSON ("20m" , "5m" , and "500k" ) | ✔ | ✔ |
Notes:
*
: predicates
are optional
**
: statsKey
is optional for < 500 requests daily
With the exception of "microdata" statistics (not yet available via Census' API), all Census data is aggregated to geographic areas of different sizes. As such, all of Census' API's require a set of/unique geographic identifier(s) to return any data (AKA: GEOIDs). Given that these identifiers are not common knowledge, the CitySDK provides a way for the user to identify their geographic scope of interest using a geographic coordinate (latitude + longitude).
This functionality can be used either stand-alone or as part of other census
parameter sets. Under the hood, this functionality calls the TigerWeb Web Mapping Service with the lat
& lng
provided and returns a JSON object that includes the appropriate GEOIDs for identifying your geographic area of interest. The signature of this returned object matches that of the geoHiearchy
parameter and thus can be used as a part of an argument to other functionality (explained in more detail below).
There are two ways to scope your request using this functionality:
You may pass a {"lat" : <float>, "lng" : <float>}
object as the first and only subargument to a geography within the geoHierarchy
parameter:
import census from 'citySDK'
census(
{
"vintage" : "2015",
"geoHierarchy" : {
"county" : {
"lat" : 28.2639,
"lng" : -80.7214
}
}
},
(r) => console.log(r)
)
// -> {"vintage":"2015","geoHierarchy":{"state":"12","county":"009"}}
Notice how the function prepends an additional geographic component ("state" : "12"
) to the response object. This is the correct behavior. In this example, we requested a specific county using a coordinate. However, in order to fully qualify the geographic area (GEOID) associated with the county, the state is needed. In this example the fully qualified GEOID would be 12009
with the first two digits (12
) qualifying the state and 009
qualifying the county within that state. This appropriate geographic hierarchy creation is handled by the function for you.
import census from 'citySDK'
census(
{
"vintage" : "2015",
"geoHierarchy" : {
"state" : {
"lat" : 28.2639,
"lng" : -80.7214
},
"county" : "*" // <- syntax = "<descendant>" : "*"
}
},
(r) => console.log(r)
)
// -> {"vintage":"2015","geoHierarchy":{"state":"12","county":"*"}}
All Census-defined geographic areas are composed of Census "Blocks". Some of these composed areas - themselves - compose into higher-order areas. These nested relationships between certain geographic areas allows the Census data user to request all descendants of a particular type.
geoHierarchy
object ("county" : "*"
). It is important to use the "*"
expression signifying that you want all of the specified level of descendants within the geography for which you supply a coordinate. No other expression will work.geoHierarchy
object to an ordered set, so this part of your request object must be in descending hierarchical order from parent -> child/descendant. E.g. - in the above - an object that contained {"county" : "*", "state" : {"lat" <lat> "lng" <lng>}}
would not work.This parameter set will call the Census Statistics API and reformat the results with a couple highly requested features:
There are two ways to request Census statistics using census
:
values
of estimates and other statistical valuespredicates
"values"
by ID:import census from 'citySDK'
census(
{
"vintage" : "2015",
"geoHierarchy" : {
"county" : {
"lat" : 28.2639,
"lng" : -80.7214
}
},
"sourcePath" : ["cbp"], // required
"values" : ["ESTAB"] // required
},
(r) => console.log(r)
)
// -> [{"ESTAB":13648,"state":"12","county":"009"}]
Here, we added the parameters for sourcePath
(the path to the survey and/or source of the statistics) and values
(the identifiers of the statistics we're interested in). By including these parameters within your argument object, you trigger the census
function to get statistics. This "deploy on parameter set" strategy is how the census
function determines your intent.
You're probably thinking: "How am I supposed to know what codes to use inside those parameters?" - or - "Where did that "cbp"
/"ESTAB"
stuff come from?" One thing you will need to get familiar with - if not already - before using this feature is the Census Discovery Tool. Also, there are a couple of communities within which you are invited to ask for help.
Break out into separate section
.html
and .json
)/groups.html
/geography.json
/examples.html
/variables/<variable>
: get details for a variable"values"
by ID:import census from 'citySDK'
census(
{
"vintage" : "2015",
"geoHierarchy" : {
"county" : {
"lat" : 28.2639,
"lng" : -80.7214
}
},
"sourcePath" : ["cbp"], // required
"values" : ["ESTAB"], // required
"statsKey" : "<your key here>" // required for > 500 calls per day
},
(r) => console.log(r)
)
// -> [{"ESTAB":13648,"state":"12","county":"009"}]
predicates
:predicates
Predicates are used to create a sub-selection of statistical values based on a given range or categorical qualifyer. The syntax for predicates
is an object containing key/value pairs where the key is a "variable" identifyer (see [variables]) and the value can be one of a few different types:
Int
, the value can be a numerical range separated by a :
. For example, using the 2017 American Community Survey 1-year to get Population for all counties within Virginia with populations between 0 and 100000 people:
census(
{
"vintage" : "2017",
"geoHierarchy" : {
"state" : "51"
"county" : "*"
},
"sourcePath" : ["acs" "acs1"],
"values" : ["NAME"]
"predicates" : {
"B01001_001E" : "0:100000" // number range separated by `:`
},
"statsKey" : "<your key here>"
},
(r) => console.log(r)
)
/* ->
[
{
"NAME":"Augusta County, Virginia",
"B01001_001E" : 75144,
"state":"51",
"county":"015"
},
{
"NAME":"Bedford County, Virginia",
"B01001_001E" : 77974,
"state":"51",
"county":"019"
},
...
]
*/
For some sources (e.g., the American Community Survey), most of the values
can also be used as predicates
. In others, (e.g., International Trade), predicates
are a key part of the statistical query. In either case, at least one value within values
must be supplied, even if it's the same as the key used in predicates
.
[variables]: #discovery-variables ===========TBD============= [predicate type]: #discovery-predicates ===========TBD=============
You can also use the CitySDK to retrieve Cartographic Boundary files, which have been translated into GeoJSON. The only additional parameter you'll need to know is a simple declaration of geoResolution
of which there are three options:
Resolution | Map Scale | Benefits | Costs |
---|---|---|---|
500k | 1:500,000 | Greatest variety of summary levels & Most detailed | largest file sizes |
5m | 1:5,000,000 | Balance between size and detectable area size | lowest variety of available area types |
20m | 1:20,000,000 | Smallest file sizes | lowest level of detail |
census(
{
"vintage" : "2017",
"geoHierarchy" : {
"state" : "51"
"county" : "*"
},
"geoResolution" : "500k"
},
(r) => console.log(r)
)
It's important to note that - when querying for these GeoJSON files - you may retrieve a larger area than your request argument specifies. The reason for this is that the files are (currently) stored at two geographic levels: National and by State. Thus, the query above will attempt to resolve, at the state level, all counties, but because counties are stored at the national level in vintage 2017, all the counties in the US will be returned by this query.
If you wish to get back only those geographies you specify, you may do so by using the last and perhaps most useful feature included in the v2.0 release: Getting GeoJSON with statistics included within the "FeatureCollection"
properties
object!
There are a number of reasons you might want to merge your statistics into their GeoJSON/geographic boundaries, all of which are relevant when seeking to map Census data:
values
)predicates
)For this kind of request, all parameters are used (predicates
are optional):
census(
{
"vintage" : "2017",
"geoHierarchy" : {
"state" : "51"
"county" : "*"
},
"sourcePath" : ["acs" "acs1"],
"values" : ["NAME"]
"predicates" : { // optional
"B01001_001E" : "0:100000"
},
"statsKey" : "<your key here>",
"geoResolution" : "500k"
},
(r) => console.log(r)
)
// Call the WMS only
{
vintage: 2014,
geoHierarchy: { state: { lat: 28.2639, lng: -80.7214 }, county: '*' }
}
// Getting the stats for a single county
{
vintage: 2016,
geoHierarchy: { county: { lat: 28.2639, lng: -80.7214 } },
sourcePath: [ 'acs', 'acs5' ],
predicates: { B00001_001E: '0:1000000' },
values: [ 'B01001_001E' ]
}
// strings are valid as vintages as well
{
vintage: '2015',
geoHierarchy: { county: { lat: 28.2639, lng: -80.7214 } },
sourcePath: [ 'cbp' ],
values: [ 'ESTAB' ]
}
// Just geojson for all the counties within a state located by a given coordinate
{
vintage: 2014,
geoHierarchy: { state: { lat: 28.2639, lng: -80.7214 }, county: '*' },
geoResolution: '500k'
}
// For large request expect to have to increase `node --max-old-space-size=4096`
{
vintage: 2016,
sourcePath: [ 'acs', 'acs5' ],
values: [ 'B25001_001E' ],
geoHierarchy: { 'zip-code-tabulation-area': '*' },
geoResolution: '500k'
}
FAQs
Convenience functions for working with Census APIs: Statistics, Cartographic GeoJSON, lat/lng -> FIPS, and other niceties.
The npm package census-js receives a total of 2 weekly downloads. As such, census-js popularity was classified as not popular.
We found that census-js demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
Security News
Research
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
Research
Security News
Socket researchers discovered a malware campaign on npm delivering the Skuld infostealer via typosquatted packages, exposing sensitive data.