ACS 2015


Latest data: April 11, 2019, 7:44 p.m.

Elements: 904

Queries: 84097

Views: 2800


Details


General
Category: U.S. Census Bureau
Type: Spatial layer
Link: http://api.estadisticas.gobierno.pr/datasets/namespace/us-census-bureau/dataset/acs-2015/
Slug: acs-2015
Published: True
Scheduling
Scheduling enabled: False
Scheduling: None

Columns


Label Description Name Data Type Size
geometry geometry Geometry N/A
capita_in capita_in Integer N/A
med_fam_in med_fam_in Integer N/A
med_value med_value Integer N/A
pov_t_pop pov_t_pop Float N/A
tot_pop tot_pop Integer N/A
h_units h_units Integer N/A
countyfp10 countyfp10 Integer N/A

Data Preview


Analytics


Views

Queries

Queries


Saved queries

Label Description Link
No saved queries

API


Examples:


Using curl

    curl -X GET http://api.estadisticas.gobierno.pr/api/v1/namespaces/us-census-bureau/datasets/acs-2015/data/
                                        

Or if the dataset is not public, include your API token in the header.

    curl -X GET http://api.estadisticas.gobierno.pr/api/v1/namespaces/us-census-bureau/datasets/acs-2015/data/ -H 'Authorization: Token 9944b09199c62bc...'
                                        

Using Python

    import json, httplib
    connection = httplib.HTTPConnection('api.estadisticas.gobierno.pr', 80)
    connection.connect()
    connection.request('GET', '/api/v1/namespaces/us-census-bureau/datasets/acs-2015/data/?_format=json', '', {})
    result = json.loads(connection.getresponse().read())
    print result                       

Using the Request library

    import requests
    requests.get('http://api.estadisticas.gobierno.pr/api/v1/namespaces/us-census-bureau/datasets/acs-2015/data/?_format=json').json()