Google Earth Engine——美国邮政编码表数据集区(ZCTA)是美国邮政服务(USPS)5位数邮政编码的近似区域代表

简介: Google Earth Engine——美国邮政编码表数据集区(ZCTA)是美国邮政服务(USPS)5位数邮政编码的近似区域代表

ZIP Code tabulation areas (ZCTAs) are approximate area representations of U.S. Postal Service (USPS) 5-digit ZIP Codes. The Census Bureau defines ZCTAs by allocating each Census block that contains addresses to a single ZIP Code tabulation area, usually to the ZCTA that reflects the most frequently occurring ZIP Code for the addresses within that block. Blocks that do not contain addresses but that are completely surrounded by a single ZIP Code tabulation area (enclaves) are assigned to the surrounding ZCTA; those surrounded by multiple ZCTAs will be added to a single ZCTA based on the longest shared border.

 

The Census Bureau identifies 5-digit ZIP Code tabulation areas using a 5- character numeric code that represents the most frequently occurring USPS ZIP Code within that ZCTA. This code may contain leading zeros.

Data users should not use ZCTAs to identify the official USPS ZIP Code for mail delivery. The USPS makes periodic changes to ZIP Codes to support more efficient mail delivery. ZIP Codes that cover primarily nonresidential or post office box addresses may not have a corresponding ZCTA because the delineation process uses primarily residential addresses, resulting in a bias towards ZIP Codes used for city-style mail delivery.

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


邮政编码表区(ZCTA)是美国邮政服务(USPS)5位数邮政编码的近似区域代表。人口普查局通过将每个包含地址的人口普查区分配到一个单一的邮政编码列表区,通常是反映该区块内地址最频繁出现的邮政编码的ZCTA。不包含地址但完全被一个单一的邮政编码列表区(飞地)包围的区块被分配到周围的ZCTA;那些被多个ZCTA包围的区块将根据最长的共同边界被添加到一个ZCTA。

人口普查局使用5位数的数字代码确定5位数的邮政编码列表区,该代码代表该ZCTA内最经常出现的美国邮政邮政编码。这个代码可能包含前导零。

数据用户不应使用ZCTA来确定用于邮寄的官方USPS ZIP Code。美国邮政对邮政编码进行定期修改,以支持更有效的邮件投递。主要涵盖非住宅或邮政信箱地址的邮政编码可能没有相应的ZCTA,因为划定过程主要使用住宅地址,导致对用于城市风格邮件投递的邮政编码的偏爱。

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

Dataset Availability

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

Dataset Provider

United States Census Bureau

Collection Snippet

Copied

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

波段信息:

Name Type Description
ALAND10 Double 2010 Census Land area
AWATER10 Double 2010 Census Water area
CLASSFP10 String 2010 Census FIPS 55 class code
FUNCSTAT10 String 2010 Census functional status (Always "S", for "Statistical entity".)
GEOID10 String 2010 Census 5-digit ZIP Code Tabulation Area identifier
INTPTLAT10 String 2010 Census latitude of the internal point
INTPTLON10 String 2010 Census longitude of the internal point
MTFCC10 String MAF/TIGER feature class code (Always "G6350".)
ZCTA5CE10 String 2010 Census 5-digit ZIP Code Tabulation Area 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/ZCTA5');
var visParams = {
  palette: ['black', 'purple', 'blue', 'green', 'yellow', 'orange', 'red'],
  min: 500000,
  max: 1000000000,
};
var zctaOutlines = ee.Image().float().paint({
  featureCollection: dataset,
  color: 'black',
  width: 1
});
var image = ee.Image().float().paint(dataset, 'ALAND10');
Map.setCenter(-93.8008, 40.7177, 6);
Map.addLayer(image, visParams, 'TIGER/2010/ZCTA5');
Map.addLayer(zctaOutlines, {}, 'borders');
Map.addLayer(dataset, null, 'for Inspector', false);


相关文章
|
6月前
|
数据可视化 定位技术 Sentinel
如何用Google Earth Engine快速、大量下载遥感影像数据?
【2月更文挑战第9天】本文介绍在谷歌地球引擎(Google Earth Engine,GEE)中,批量下载指定时间范围、空间范围的遥感影像数据(包括Landsat、Sentinel等)的方法~
2479 1
如何用Google Earth Engine快速、大量下载遥感影像数据?
|
6月前
|
人工智能 自然语言处理 API
Google Gemma 模型服务:开放的生成式 AI 模型服务
Google Gemma 模型服务:开放的生成式 AI 模型服务
216 4
|
6月前
|
机器学习/深度学习 算法 数据可视化
基于Google Earth Engine云平台构建的多源遥感数据森林地上生物量AGB估算模型含生物量模型应用APP
基于Google Earth Engine云平台构建的多源遥感数据森林地上生物量AGB估算模型含生物量模型应用APP
222 0
|
6月前
|
运维 监控 Serverless
一键开启 GPU 闲置模式,基于函数计算低成本部署 Google Gemma 模型服务
本文介绍如何使用函数计算 GPU 实例闲置模式低成本、快速的部署 Google Gemma 模型服务。
164988 58
|
6月前
|
存储 编解码 数据可视化
Google Earth Engine获取随机抽样点并均匀分布在栅格的不同数值区中
【2月更文挑战第14天】本文介绍在谷歌地球引擎(Google Earth Engine,GEE)中,按照给定的地表分类数据,对每一种不同的地物类型,分别加以全球范围内随机抽样点自动批量选取的方法~
566 1
Google Earth Engine获取随机抽样点并均匀分布在栅格的不同数值区中
|
6月前
|
SQL 存储 人工智能
Google BigQuery深度解析:云端大数据分析服务的威力
【4月更文挑战第8天】本文是关于Google Cloud Platform的BigQuery在大数据和云技术领域的应用分析。BigQuery的核心特性包括无服务器、全托管架构,实现高性能的超大规模并行处理,并严格遵循安全与合规标准。在实战应用中,它用于数据湖分析、机器学习与AI,以及实时数据分析与BI。BigQuery的极致性能、易用性和与GCP生态的整合,使其成为云端大数据分析的强大工具,适用于各种行业场景,帮助企业释放数据价值。作者将持续分享相关技巧和最佳实践。
793 0
|
6月前
|
数据处理
Google Earth Engine(GEE)——sentinel-1数据处理过程中出现错误Dictionary does not contain key: bucketMeans
Google Earth Engine(GEE)——sentinel-1数据处理过程中出现错误Dictionary does not contain key: bucketMeans
111 0
|
6月前
|
编解码 人工智能 算法
Google Earth Engine——促进森林温室气体报告的全球时间序列数据集
Google Earth Engine——促进森林温室气体报告的全球时间序列数据集
88 0
|
6月前
|
编解码 人工智能 数据库
Google Earth Engine(GEE)——全球道路盘查项目全球道路数据库
Google Earth Engine(GEE)——全球道路盘查项目全球道路数据库
143 0
|
6月前
|
编解码
Open Google Earth Engine(OEEL)——matrixUnit(...)中产生常量影像
Open Google Earth Engine(OEEL)——matrixUnit(...)中产生常量影像
76 0

热门文章

最新文章