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

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

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")

波段信息:

Name Type Description
blockce String 2010 Census tabulation block number
blockid10 String Block identifier: a concatenation of 2010 Census state Federal Information Processing Standards (FIPS) code, county FIPS code, census tract code, and tabulation block number
countyfp10 String County FIPS code
housing10 Double 2010 Census number of housing units
partflg String Partial block flag
pop10 Double Population total as of 2010 census
statefp10 String 2010 Census state FIPS code
tractce10 String 2010 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);


相关文章
|
数据可视化 定位技术 Sentinel
如何用Google Earth Engine快速、大量下载遥感影像数据?
【2月更文挑战第9天】本文介绍在谷歌地球引擎(Google Earth Engine,GEE)中,批量下载指定时间范围、空间范围的遥感影像数据(包括Landsat、Sentinel等)的方法~
5450 1
如何用Google Earth Engine快速、大量下载遥感影像数据?
|
编解码 人工智能 算法
Google Earth Engine——促进森林温室气体报告的全球时间序列数据集
Google Earth Engine——促进森林温室气体报告的全球时间序列数据集
335 0
|
机器学习/深度学习 算法 数据可视化
基于Google Earth Engine云平台构建的多源遥感数据森林地上生物量AGB估算模型含生物量模型应用APP
基于Google Earth Engine云平台构建的多源遥感数据森林地上生物量AGB估算模型含生物量模型应用APP
767 0
|
6月前
|
机器学习/深度学习 人工智能 算法
Google DeepMind新产物: 行星级卫星嵌入数据集(10m)光学+雷达+DEM+climate...
Google 推出 Earth Engine 卫星嵌入数据集,利用 AI 将一年的多源卫星数据压缩至每个 10 米像素,实现高效地理空间分析。基于 AlphaEarth Foundations 模型,该数据集提供 64 维嵌入向量,支持相似性搜索、变化检测、自动聚类和精准分类,助力环境研究与应用。
481 0
|
数据处理
Google Earth Engine(GEE)——sentinel-1数据处理过程中出现错误Dictionary does not contain key: bucketMeans
Google Earth Engine(GEE)——sentinel-1数据处理过程中出现错误Dictionary does not contain key: bucketMeans
374 0
|
数据采集 编解码 人工智能
Google Earth Engine(GEE)——全球每日近地表空气温度(2003-2020年)
Google Earth Engine(GEE)——全球每日近地表空气温度(2003-2020年)
644 0
|
人工智能
Google Earth Engine(GEE)——1984-2019年美国所有土地上的大火烧伤严重程度和范围数据集
Google Earth Engine(GEE)——1984-2019年美国所有土地上的大火烧伤严重程度和范围数据集
253 0
|
编解码 人工智能 数据库
Google Earth Engine(GEE)——全球道路盘查项目全球道路数据库
Google Earth Engine(GEE)——全球道路盘查项目全球道路数据库
427 0
|
编解码
Open Google Earth Engine(OEEL)——matrixUnit(...)中产生常量影像
Open Google Earth Engine(OEEL)——matrixUnit(...)中产生常量影像
281 0
Google Earth Engine(GEE)——导出指定区域的河流和流域范围
Google Earth Engine(GEE)——导出指定区域的河流和流域范围
921 0

推荐镜像

更多