O Departamento do Censo dos Estados Unidos lança regularmente um geodatabase chamado TIGER. Essa tabela contém os valores do Perfil demográfico 1 do censo de 2010 agregados por setor censitário. As áreas de trecho variam muito, mas em áreas urbanas são aproximadamente equivalentes a um bairro. Há cerca de 74.000 recursos de polígonos que cobrem os Estados Unidos, o Distrito de Colúmbia, Porto Rico e as áreas insulares.
Para conferir todos os detalhes técnicos sobre os produtos TIGER 2010, consulte a documentação técnica do TIGER (em inglês).
Cada trecho também inclui atributos com somas das medições de população do DP1 que cruzam o limite. As colunas têm o mesmo nome da coluna "shortname" na tabela de pesquisa DP1.
Esquema da tabela
Esquema da tabela
Nome
Tipo
Descrição
aland10
DOUBLE
Área do terreno
awater10
DOUBLE
Área de água
geoid10
STRING
Identificador do setor censitário: uma concatenação do código FIPS do estado, do código FIPS do condado e do código do setor censitário
intptlat10
STRING
Latitude do ponto interno
intptlon10
STRING
Longitude do ponto interno
namelsad10
STRING
Descrição da área legal/estatística e nome do setor censitário
shape_area
DOUBLE
Área em graus quadrados
shape_leng
DOUBLE
Perímetro em graus
Termos de Uso
Termos de Uso
O Bureau do Censo dos EUA oferece alguns dos dados públicos em formato legível por máquina por meio de uma interface de programação de aplicativos (API). Todo o conteúdo, documentação, código e materiais relacionados disponibilizados a você pela API estão sujeitos a estes termos e condições.
Citações
Citações:
Para a criação de relatórios, publicações, novos conjuntos de dados, produtos ou serviços derivados do conjunto de dados, os usuários precisam citar o US Census Bureau (em inglês).
O Departamento do Censo dos Estados Unidos lança regularmente um geodatabase chamado TIGER. Essa tabela contém os valores do Perfil demográfico 1 do censo de 2010 agregados por quantidade populacional. As áreas de trecho variam muito, mas em áreas urbanas são aproximadamente equivalentes a um bairro. Há cerca de 74.000 recursos de polígonos que cobrem os Estados Unidos, o …
[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)"]]