미국 인구조사국 TIGER 데이터 세트에는 미국의 기본 정부 부문의 2018년 경계가 포함되어 있습니다. 인구조사국은 50개 주 외에도 워싱턴 D.C., 푸에르토리코, 각 섬 지역 (아메리칸사모아, 북마리아나 제도 연방, 괌, 미국령 버진아일랜드)을 데이터 표시 목적으로 주의 통계적 동등물로 취급합니다.
각 기능은 상태 또는 상태에 상응하는 값을 나타냅니다.
모든 TIGER 2018 제품에 관한 전체 기술 세부정보는 TIGER 기술 문서를 참고하세요.
표 스키마
표 스키마
이름
유형
설명
ALAND
DOUBLE
토지 면적
AWATER
DOUBLE
수역
DIVISION
문자열
부서 코드
FUNCSTAT
문자열
기능 상태
GEOID
문자열
주 식별자, 주 FIPS 코드
INTPTLAT
문자열
내부 지점 위도
INTPTLON
문자열
내부 지점 경도
LSAD
문자열
주의 법적/통계적 지역 설명
MTFCC
문자열
MAF/TIGER 지형지물 클래스 코드 (=G4000)
이름
문자열
상태 이름
REGION
문자열
지역 코드
STATEFP
문자열
주 FIPS 코드
STATENS
문자열
주 GNIS 코드
STUSPS
문자열
미국 우편 서비스 주 약어
이용약관
이용약관
미국 인구조사국은 애플리케이션 프로그래밍 인터페이스(API)를 통해 일부 공개 데이터를 머신 리더블 형식으로 제공합니다. API를 통해 제공되는 모든 콘텐츠, 문서, 코드, 관련 자료에는 이 약관이 적용됩니다.
인용
인용:
데이터 세트에서 파생된 보고서, 간행물, 새 데이터 세트, 파생 제품 또는 서비스를 만드는 경우 사용자는 미국 인구조사국을 인용해야 합니다.
[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)"]]