Das US Census Bureau veröffentlicht regelmäßig eine Geodatabase namens TIGER. Diese Tabelle enthält die Werte des Demographic Profile 1 aus der Volkszählung von 2010, die nach Zählbezirk zusammengefasst wurden. Die Größe von Zählbezirken variiert stark, entspricht in städtischen Gebieten aber in etwa einem Stadtteil. Es gibt etwa 74.000 Polygon-Features, die die USA, den District of Columbia, Puerto Rico und die Inselgebiete abdecken.
Jeder Zählbezirk enthält auch Attribute mit Summen der DP1-Bevölkerungsmessungen, die die Grenze überschneiden. Die Spalten haben denselben Namen wie die Spalte „Kurzname“ in der DP1-Nachschlagetabelle.
Tabellenschema
Tabellenschema
Name
Typ
Beschreibung
aland10
DOUBLE
Landfläche
awater10
DOUBLE
Wasserfläche
geoid10
STRING
Kennung des Erhebungsgebiets: eine Verkettung des FIPS-Codes des Bundesstaats, des FIPS-Codes des Bezirks und des Codes des Erhebungsgebiets
intptlat10
STRING
Breitengrad des internen Punkts
intptlon10
STRING
Längengrad des internen Punkts
namelsad10
STRING
Beschreibung des rechtlichen/statistischen Gebiets und Name des Census Tract
shape_area
DOUBLE
Fläche in Quadratgrad
shape_leng
DOUBLE
Perimeter in Grad
Nutzungsbedingungen
Nutzungsbedingungen
Das US Census Bureau bietet einige seiner öffentlichen Daten in maschinenlesbarem Format über eine API (Application Programming Interface) an. Alle Inhalte, Dokumentationen, Codes und zugehörigen Materialien, die Ihnen über die API zur Verfügung gestellt werden, unterliegen diesen Nutzungsbedingungen.
Zitate
Quellenangaben:
Bei der Erstellung von Berichten, Publikationen, neuen Datasets, abgeleiteten Produkten oder Diensten, die aus dem Dataset resultieren, sollten Nutzer das US Census Bureau zitieren.
Ein FeatureView ist eine beschleunigte Darstellung eines FeatureCollection, die nur angezeigt werden kann. Weitere Informationen finden Sie in der Dokumentation zu FeatureView.
Das United States Census Bureau veröffentlicht regelmäßig eine Geodatabase namens TIGER. Diese Tabelle enthält die Werte des demografischen Profils 1 der Volkszählung von 2010, die nach Volkszählungsgebiet zusammengefasst wurden. Die Größe von Zählbezirken variiert stark, in städtischen Gebieten entspricht sie in etwa einem Stadtteil. Es gibt etwa 74.000 Polygon-Features für die USA, …
[null,null,[],[[["\u003cp\u003eThe TIGER/2010/Tracts_DP1 dataset provides 2010 US Census Demographic Profile 1 data aggregated by census tract.\u003c/p\u003e\n"],["\u003cp\u003eIt includes approximately 74,000 polygon features covering the United States, District of Columbia, Puerto Rico, and Island Areas.\u003c/p\u003e\n"],["\u003cp\u003eData is provided by the United States Census Bureau and is available for the date 2010-01-01.\u003c/p\u003e\n"],["\u003cp\u003eCensus tracts represent relatively small, homogenous neighborhood-sized areas, although their size can vary.\u003c/p\u003e\n"],["\u003cp\u003eThe dataset includes demographic attributes such as population counts and can be accessed and analyzed within Google Earth Engine.\u003c/p\u003e\n"]]],[],null,["# TIGER: US Census Tracts Demographic - Profile 1\n\nDataset Availability\n: 2010-01-01T00:00:00Z--2010-01-02T00:00:00Z\n\nDataset Provider\n:\n\n\n [United States Census Bureau](https://www.census.gov/programs-surveys/geography/guidance/tiger-data-products-guide.html)\n\nTags\n:\n [census](/earth-engine/datasets/tags/census) [infrastructure-boundaries](/earth-engine/datasets/tags/infrastructure-boundaries) [table](/earth-engine/datasets/tags/table) [tiger](/earth-engine/datasets/tags/tiger) [us](/earth-engine/datasets/tags/us) \n demographic \n human \nsocial \n\n#### Description\n\nThe United States Census Bureau regularly releases\na geodatabase named TIGER. This table contains the 2010 census\nDemographic Profile 1 values aggregated by census tract. Tract\nareas vary tremendously, but in urban areas are roughly equivalent\nto a neighborhood. There are about 74,000 polygon features covering\nthe United States, the District of Columbia, Puerto Rico, and\nthe [Island areas](https://www.census.gov/data/tables/2010/dec/2010-island-areas.html).\n\nFor full technical details on all TIGER 2010 products, see\nthe [TIGER technical documentation](https://www2.census.gov/geo/pdfs/maps-data/data/tiger/tgrshp2010/TGRSHP10SF1.pdf).\n\nEach tract also includes attributes with sums of the DP1\npopulation measurements that intersect the boundary. The columns\nhave the same name as the shortname column in the [DP1 lookup\ntable](https://developers.google.com/earth-engine/tiger_2010_tract_dp1_metadata).\n\n### Table Schema\n\n**Table Schema**\n\n| Name | Type | Description |\n|------------|--------|------------------------------------------------------------------------------------------------------|\n| aland10 | DOUBLE | Land area |\n| awater10 | DOUBLE | Water area |\n| geoid10 | STRING | Census tract identifier: a concatenation of state FIPS code, county FIPS code, and census tract code |\n| intptlat10 | STRING | Latitude of the internal point |\n| intptlon10 | STRING | Longitude of the internal point |\n| namelsad10 | STRING | Legal/statistical area description and the census tract name |\n| shape_area | DOUBLE | Area in square degrees |\n| shape_leng | DOUBLE | Perimeter in degrees |\n\n### Terms of Use\n\n**Terms of Use**\n\nThe U.S. Census Bureau offers some of its public data\nin machine-readable format via an Application Programming Interface\n(API). All of the content, documentation, code and related materials\nmade available to you through the API are subject to [these terms and\nconditions](https://www.census.gov/data/developers/about/terms-of-service.html).\n\n### Citations\n\nCitations:\n\n- For the creation of any reports, publications, new data sets, derived\n products, or services resulting from the data set, users should\n [cite the US Census Bureau](https://www.census.gov/about/policies/citation.html).\n\n### Explore with Earth Engine\n\n| **Important:** Earth Engine is a platform for petabyte-scale scientific analysis and visualization of geospatial datasets, both for public benefit and for business and government users. Earth Engine is free to use for research, education, and nonprofit use. To get started, please [register for Earth Engine access.](https://console.cloud.google.com/earth-engine)\n\n### Code Editor (JavaScript)\n\n```javascript\nvar dataset = ee.FeatureCollection('TIGER/2010/Tracts_DP1');\nvar visParams = {\n min: 0,\n max: 4000,\n opacity: 0.8,\n};\n\n// Turn the strings into numbers\ndataset = dataset.map(function (f) {\n return f.set('shape_area', ee.Number.parse(f.get('dp0010001')));\n});\n\nMap.setCenter(-103.882, 43.036, 8);\nvar image = ee.Image().float().paint(dataset, 'dp0010001');\n\nMap.addLayer(image, visParams, 'TIGER/2010/Tracts_DP1');\nMap.addLayer(dataset, null, 'for Inspector', false);\n```\n[Open in Code Editor](https://code.earthengine.google.com/?scriptPath=Examples:Datasets/TIGER/TIGER_2010_Tracts_DP1)\n\n### Visualize as a FeatureView\n\n\nA `FeatureView` is a view-only, accelerated representation of a\n`FeatureCollection`. For more details, visit the\n[`FeatureView` documentation.](/earth-engine/guides/featureview_overview)\n| **Important:** Earth Engine is a platform for petabyte-scale scientific analysis and visualization of geospatial datasets, both for public benefit and for business and government users. Earth Engine is free to use for research, education, and nonprofit use. To get started, please [register for Earth Engine access.](https://console.cloud.google.com/earth-engine)\n\n### Code Editor (JavaScript)\n\n```javascript\nvar fvLayer = ui.Map.FeatureViewLayer('TIGER/2010/Tracts_DP1_FeatureView');\n\nvar visParams = {\n opacity: 0.8,\n color: {\n property: 'dp0010001',\n mode: 'linear',\n palette: ['black', 'white'],\n min: 0,\n max: 4000\n }\n};\n\nfvLayer.setVisParams(visParams);\nfvLayer.setName('US census tracts demographics');\n\nMap.setCenter(-103.882, 43.036, 8);\nMap.add(fvLayer);\n```\n[Open in Code Editor](https://code.earthengine.google.com/?scriptPath=Examples:Datasets/TIGER/TIGER_2010_Tracts_DP1_FeatureView) \n[TIGER: US Census Tracts Demographic - Profile 1](/earth-engine/datasets/catalog/TIGER_2010_Tracts_DP1) \nThe United States Census Bureau regularly releases a geodatabase named TIGER. This table contains the 2010 census Demographic Profile 1 values aggregated by census tract. Tract areas vary tremendously, but in urban areas are roughly equivalent to a neighborhood. There are about 74,000 polygon features covering the United States, the ... \nTIGER/2010/Tracts_DP1, census,infrastructure-boundaries,table,tiger,us \n2010-01-01T00:00:00Z/2010-01-02T00:00:00Z \n-14.69 -180 71.567 -64.435 \nGoogle Earth Engine \nhttps://developers.google.com/earth-engine/datasets\n\n- [](https://doi.org/https://www.census.gov/programs-surveys/geography/guidance/tiger-data-products-guide.html)\n- [](https://doi.org/https://developers.google.com/earth-engine/datasets/catalog/TIGER_2010_Tracts_DP1)"]]