Google Earth Engine——街区数据集包含2010年的人口普查街区,最小单位大致相当于一个城市街区。超过1100万个多边形特征,覆盖美国、哥伦比亚特区、波多黎各和岛屿地区。

这篇博客介绍了TIGER地理数据库,它包含了2010年美国人口普查的详细街区数据。数据集覆盖了超过1100万个特征,涉及人口、住房等信息。通过API获取数据,并展示了如何使用代码将人口数据转化为可视化的地图层。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

The United States Census Bureau regularly releases a geodatabase named TIGER. This dataset contains the 2010 census blocks, roughly equivalent to a city block. There are just over 11 million polygon features covering the United States, the District of Columbia, Puerto Rico, and the Island areas.

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

美国人口普查局定期发布一个名为TIGER的地理数据库。这个数据集包含2010年的人口普查街区,大致相当于一个城市街区。有刚刚超过1100万个多边形特征,覆盖美国、哥伦比亚特区、波多黎各和岛屿地区。

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

Dataset Availability

2010-01-01T00:00:00 - 2010-01-02T00:00:00

Dataset Provider

United States Census Bureau

Collection Snippet

ee.FeatureCollection("TIGER/2010/Blocks")

波段信息:

NameTypeDescription
blockceString2010 Census tabulation block number
blockid10StringBlock identifier: a concatenation of 2010 Census state Federal Information Processing Standards (FIPS) code, county FIPS code, census tract code, and tabulation block number
countyfp10StringCounty FIPS code
housing10Double2010 Census number of housing units
partflgStringPartial block flag
pop10DoublePopulation total as of 2010 census
statefp10String2010 Census state FIPS code
tractce10String2010 Census tract code

使用说明:

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. 

代码:

var dataset = ee.FeatureCollection('TIGER/2010/Blocks');
var visParams = {
  min: 0.0,
  max: 700.0,
  palette: ['black', 'brown', 'yellow', 'orange', 'red']
};

// 将字符串转为数字类型
dataset = dataset.map(function (f) {
  return f.set('pop10', ee.Number.parse(f.get('pop10')));
});

var image = ee.Image().float().paint(dataset, 'pop10');

Map.setCenter(-73.99172, 40.74101, 13);
Map.addLayer(image, visParams, 'TIGER/2010/Blocks');
Map.addLayer(dataset, null, 'for Inspector', false);

 

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

此星光明

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值