前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >Google Earth Engine——美国人口普查局的TIGER数据集包含美国主要政府部门的2016年边界。除了50个州之外,人口普查局还将哥伦比亚特区、波多黎各和每个岛屿地区

Google Earth Engine——美国人口普查局的TIGER数据集包含美国主要政府部门的2016年边界。除了50个州之外,人口普查局还将哥伦比亚特区、波多黎各和每个岛屿地区

作者头像
此星光明
发布2024-02-02 12:07:05
1020
发布2024-02-02 12:07:05
举报

The United States Census Bureau TIGER dataset contains the 2016 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 Islands, Guam, and the U.S. Virgin Islands) as the statistical equivalents of States for the purpose of data presentation. Each feature represents a state or state equivalent.

For full technical details on all TIGER 2016 products, see the TIGER technical documentation.

美国人口普查局的TIGER数据集包含美国主要政府部门的2016年边界。除了50个州之外,人口普查局还将哥伦比亚特区、波多黎各和每个岛屿地区(美属萨摩亚、北马里亚纳群岛联邦、关岛和美属维尔京群岛)作为统计学上的等同于州的地区,以便于数据呈现。每个特征代表一个州或州的等同物。

关于所有TIGER 2016产品的全部技术细节,请参见TIGER技术文件。

Dataset Availability

2016-01-01T00:00:00 - 2017-01-02T00:00:00

Dataset Provider

United States Census Bureau

Collection Snippet

ee.FeatureCollection("TIGER/2016/States")

波段信息:

Name

Type

Description

ALAND

Double

Land area

AWATER

Double

Water area

DIVISION

String

Division code

FUNCSTAT

String

Functional Status

GEOID

String

State identifier; state FIPS code

INTPTLAT

String

Internal point latitude

INTPTLON

String

Internal point longitude

LSAD

String

Legal/statistical area description for state

MTFCC

String

MAF/TIGER feature class code (=G4000)

NAME

String

State name

REGION

String

Region code

STATEFP

String

State FIPS code

STATENS

String

State GNIS code

STUSPS

String

US Postal Service state abbreviation

数据使用:

The U.S. Census Bureau offers some of its public data in machine-readable format via an Application Programming Interface (API). All of the content, documentation, code and related materials made available to you through the API are subject to these terms and conditions.

引用:

For the creation of any reports, publications, new data sets, derived products, or services resulting from the data set, users should cite the US Census Bureau.

代码:

代码语言:javascript
复制
var dataset = ee.FeatureCollection('TIGER/2016/States');
var visParams = {
  palette: ['purple', 'blue', 'green', 'yellow', 'orange', 'red'],
  min: 500000000.0,
  max: 5e+11,
  opacity: 0.8,
};
var image = ee.Image().float().paint(dataset, 'ALAND');
Map.setCenter(-99.844, 37.649, 5);
Map.addLayer(image, visParams, 'TIGER/2016/States');
Map.addLayer(dataset, null, 'for Inspector', false);
本文参与 腾讯云自媒体同步曝光计划,分享自作者个人站点/博客。
原始发表:2024-02-01,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体同步曝光计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档