L'ensemble de données TIGER du Bureau du recensement des États-Unis contient les limites de 2018 pour les principales divisions gouvernementales des États-Unis. En plus des cinquante États, le Bureau du recensement considère le District de Columbia, Porto Rico et chacune des régions insulaires (Samoa américaines, le Commonwealth des Îles Mariannes du Nord, Guam et les Îles Vierges américaines) comme des équivalents statistiques des États pour la présentation des données.
Chaque fonctionnalité représente un état ou un état équivalent.
Description de la zone légale/statistique pour l'état
MTFCC
STRING
Code de catégorie d'entité MAF/TIGER (=G4000)
NOM
STRING
Nom de l'état
REGION
STRING
Code régional
STATEFP
STRING
Code FIPS de l'État
STATENS
STRING
Code GNIS de l'État
STUSPS
STRING
Abréviation de l'État du service postal des États-Unis
Conditions d'utilisation
Conditions d'utilisation
Le Bureau du recensement des États-Unis propose certaines de ses données publiques dans un format lisible par machine via une interface de programmation d'application (API). L'ensemble du contenu, de la documentation, du code et des éléments associés mis à disposition par le biais de l'API sont soumis aux présentes conditions d'utilisation.
Citations
Citations :
Pour la création de rapports, de publications, de nouveaux ensembles de données, de produits dérivés ou de services résultant de l'ensemble de données, les utilisateurs doivent citer l'US Census Bureau.
L'ensemble de données TIGER du Bureau du recensement des États-Unis contient les limites de 2018 pour les principales divisions gouvernementales des États-Unis. En plus des cinquante États, le Bureau du recensement traite le district de Columbia, Porto Rico et chacune des zones insulaires (Samoa américaines, le Commonwealth des îles Mariannes du Nord, …
[null,null,[],[[["\u003cp\u003eThe TIGER/2018/States dataset provides 2018 boundaries for the primary governmental divisions of the United States, including states and state equivalents.\u003c/p\u003e\n"],["\u003cp\u003eThis dataset is sourced from the United States Census Bureau and includes attributes like land area, water area, and geographic identifiers.\u003c/p\u003e\n"],["\u003cp\u003eUsers can access and analyze the dataset through Earth Engine using FeatureCollection and FeatureView functionalities.\u003c/p\u003e\n"],["\u003cp\u003eThe dataset is subject to the U.S. Census Bureau's terms of service and requires proper citation when used in publications or derived products.\u003c/p\u003e\n"],["\u003cp\u003eEarth Engine offers tools for visualizing and analyzing the dataset, including code examples for creating thematic maps based on attributes like land area.\u003c/p\u003e\n"]]],[],null,["# TIGER: US Census States 2018\n\nDataset Availability\n: 2018-01-01T00:00:00Z--2019-01-01T00: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) [state](/earth-engine/datasets/tags/state) [states](/earth-engine/datasets/tags/states) [table](/earth-engine/datasets/tags/table) [tiger](/earth-engine/datasets/tags/tiger) [us](/earth-engine/datasets/tags/us) \n\n#### Description\n\nThe United States Census Bureau TIGER dataset contains the 2018 boundaries\nfor the primary governmental divisions of the United States. In addition\nto the fifty states, the Census Bureau treats the District of Columbia,\nPuerto Rico, and each of the island areas (American Samoa, the Commonwealth\nof the Northern Mariana Islands, Guam, and the U.S. Virgin Islands) as the\nstatistical equivalents of States for the purpose of data presentation.\nEach feature represents a state or state equivalent.\n\nFor full technical details on all TIGER 2018 products, see the [TIGER\ntechnical documentation](https://www2.census.gov/geo/pdfs/maps-data/data/tiger/tgrshp2018/TGRSHP2018_TechDoc.pdf).\n\n### Table Schema\n\n**Table Schema**\n\n| Name | Type | Description |\n|----------|--------|----------------------------------------------|\n| ALAND | DOUBLE | Land area |\n| AWATER | DOUBLE | Water area |\n| DIVISION | STRING | Division code |\n| FUNCSTAT | STRING | Functional Status |\n| GEOID | STRING | State identifier; state FIPS code |\n| INTPTLAT | STRING | Internal point latitude |\n| INTPTLON | STRING | Internal point longitude |\n| LSAD | STRING | Legal/statistical area description for state |\n| MTFCC | STRING | MAF/TIGER feature class code (=G4000) |\n| NAME | STRING | State name |\n| REGION | STRING | Region code |\n| STATEFP | STRING | State FIPS code |\n| STATENS | STRING | State GNIS code |\n| STUSPS | STRING | US Postal Service state abbreviation |\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 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/2018/States');\nvar visParams = {\n palette: ['purple', 'blue', 'green', 'yellow', 'orange', 'red'],\n min: 500000000.0,\n max: 5e+11,\n opacity: 0.8,\n};\nvar image = ee.Image().float().paint(dataset, 'ALAND');\nMap.setCenter(-99.844, 37.649, 5);\nMap.addLayer(image, visParams, 'TIGER/2018/States');\nMap.addLayer(dataset, null, 'for Inspector', false);\n```\n[Open in Code Editor](https://code.earthengine.google.com/?scriptPath=Examples:Datasets/TIGER/TIGER_2018_States)\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/2018/States_FeatureView');\n\nvar visParams = {\n opacity: 0.8,\n color: {\n property: 'ALAND',\n mode: 'linear',\n palette: ['purple', 'blue', 'green', 'yellow', 'orange', 'red'],\n min: 5e8,\n max: 5e11\n }\n};\n\nfvLayer.setVisParams(visParams);\nfvLayer.setName('US census states');\n\nMap.setCenter(-99.844, 37.649, 5);\nMap.add(fvLayer);\n```\n[Open in Code Editor](https://code.earthengine.google.com/?scriptPath=Examples:Datasets/TIGER/TIGER_2018_States_FeatureView) \n[TIGER: US Census States 2018](/earth-engine/datasets/catalog/TIGER_2018_States) \nThe United States Census Bureau TIGER dataset contains the 2018 boundaries for the primary governmental divisions of the United States. In addition to the fifty states, the Census Bureau treats the District of Columbia, Puerto Rico, and each of the island areas (American Samoa, the Commonwealth of the Northern Mariana ... \nTIGER/2018/States, census,infrastructure-boundaries,state,states,table,tiger,us \n2018-01-01T00:00:00Z/2019-01-01T00: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_2018_States)"]]