Google Earth Engine——美国人口普查局的TIGER数据集包含美国各州主要法律部门的2018年边界。在大多数州,这些实体被称为 “县“。在路易斯安那州,这些州被称为 “教区“。

The United States Census Bureau TIGER dataset contains the 2018 boundaries for primary legal divisions of US states. In most states, these entities are termed "counties". In Louisiana, these divisions are known as "parishes".

 

Alaska has governmental entities called "boroughs" which fill a similar governmental role to counties, but in some areas those governmental responsibilities are handled directly by the state and sometimes by a city. For Alaska, county equivalent entities thus include

  1. organized boroughs,
  2. combined city and borough entities (e.g. Juneau),
  3. municipalities, and
  4. census areas.

The census areas are delineated cooperatively for statistical purposes by the State of Alaska and the Census Bureau.

In four states (Maryland, Missouri, Nevada, and Virginia), there are one or more incorporated places that are independent of any county organization and thus constitute primary divisions of their states. These incorporated places are known as independent cities and are treated as county-equivalent entities for purposes of data presentation.

The District of Columbia and Guam have no primary divisions and each area is considered a county-equivalent entity for purposes of data presentation. The Census Bureau treats the following entities as equivalents of counties for purposes of data presentation: municipios in Puerto Rico, districts and islands in America Samoa, municipalities in the Commonwealth of the Northern Mariana Islands, and islands in the U.S. Virgin Islands.

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

美国人口普查局的TIGER数据集包含美国各州主要法律部门的2018年边界。在大多数州,这些实体被称为 "县"。在路易斯安那州,这些部门被称为 "教区"。

阿拉斯加有被称为 "区 "的政府实体,它们扮演着与县类似的政府角色,但在一些地区,这些政府职责由州政府直接处理,有时由一个城市处理。因此,对于阿拉斯加来说,相当于县的实体包括

有组织的区。
市和区的合并实体(如朱诺)。
市政当局,以及
人口普查区。
人口普查区是由阿拉斯加州和人口普查局为统计目的合作划定的。

在四个州(马里兰州、密苏里州、内华达州和弗吉尼亚州),有一个或多个独立于任何县级组织的地方,因此构成其州的主要划分。这些地方被称为独立的城市,并被视为等同于县的实体,以便提供数据。

哥伦比亚特区和关岛没有主要的部门,每个地区都被认为是一个县级的实体,以便于数据显示。人口普查局将以下实体视为等同于县的数据:波多黎各的市,美属萨摩亚的区和岛,北马里亚纳群岛联邦的市,以及美属维尔京群岛的岛。

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

Dataset Availability

2018-01-01T00:00:00 - 2019-01-01T00:00:00

Dataset Provider

United States Census Bureau

Collection Snippet

ee.FeatureCollection("TIGER/2018/Counties")

NameTypeDescription
ALANDDoubleLand area
AWATERDoubleWater area
CBSAFPStringMetropolitan statistical area/micropolitan statistical area code
CLASSFPStringFIPS class code
COUNTYFPStringCounty FIPS code
COUNTYNSStringCounty GNIS code
CSAFPStringCombined statistical area code
FUNCSTATStringFunctional Status
GEOIDStringCounty identifier; a concatenation of state FIPS code and county FIPS code
INTPTLATStringInternal point latitude
INTPTLONStringInternal point longitude
LSADStringLegal/statistical area description for the county
METDIVFPStringMetropolitan division code
MTFCCStringMAF/TIGER feature class code (=G4020)
NAMEStringCounty name
NAMELSADStringName and the translated legal/statistical area description for the county
STATEFPStringState FIPS 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/2018/Counties');
var visParams = {
  palette: ['purple', 'blue', 'green', 'yellow', 'orange', 'red'],
  min: 0,
  max: 50,
  opacity: 0.8,
};

// Turn the strings into numbers
dataset = dataset.map(function (f) {
  return f.set('STATEFP', ee.Number.parse(f.get('STATEFP')));
});

var image = ee.Image().float().paint(dataset, 'STATEFP');
var countyOutlines = ee.Image().float().paint({
  featureCollection: dataset,
  color: 'black',
  width: 1
});

Map.setCenter(-99.844, 37.649, 5);
Map.addLayer(image, visParams, 'TIGER/2018/Counties');
Map.addLayer(countyOutlines, {}, 'county outlines');
Map.addLayer(dataset, null, 'for Inspector', false);

 

要利用Google Earth Engine绘制2020重庆土地覆盖率数据集并统计各类土地覆盖率的面积,可以按照以下步骤操作: 1. 打开Google Earth Engine平台并登录账户。 2. 在搜索栏中输入“重庆市”,并选择适当的地理边界范围。 3. 在代码编辑器中输入以下代码,用于显示重庆市的地图: ```javascript Map.addLayer(ee.Image().paint({ 'featureCollection': ee.FeatureCollection('TIGER/2018/States'), 'color': 'black', 'width': 2}), {}, 'US States'); ``` 4. 在代码编辑器中输入以下代码,用于导入2020重庆市的土地覆盖率数据集并显示在地图上: ```javascript //选择2020重庆市的MODIS土地覆盖率数据集 var lc = ee.ImageCollection('MODIS/006/MCD12Q1') .filterDate('2020-01-01', '2020-12-31') .select('LC_Type1'); //对土地覆盖率数据集进行分类 var lc_class = lc.map(function(img){ return img.clip(chongqing) .reproject('EPSG:4326', null, 500) .uint8() .rename('landcover'); }); //添加土地覆盖率图层到地图中 var lc_vis_params = { min: 0, max: 17, palette: ['05450a', '086a10', '54a708', '78d203', '009900', 'c6b044', 'dcd159', 'dade48', 'fbff13', 'b6ff05', '27ff87', 'c24f44', 'a5a5a5', 'ff6d4c', '69fff8', 'f9ffa4', '1c0dff'] }; Map.addLayer(lc_class, lc_vis_params, 'Land Cover'); ``` 5. 在代码编辑器中输入以下代码,用于统计各类土地覆盖率的面积并显示在控制台窗口: ```javascript //计算土地覆盖率各类别的面积 var lc_area = lc_class.reduceRegions({ collection: chongqing, reducer: ee.Reducer.sum().group(0), scale: 500 }); //打印结果到控制台窗口 print(lc_area); ``` 6. 运行代码并等待结果输出,可以在控制台窗口中查看各类土地覆盖率的面积统计结果。 需要注意的是,Google Earth Engine的使用需要一定的编程基础和相关知识,如JavaScript、遥感影像处理等。同时,统计土地覆盖率面积需要选择合适的面积单位和计算方法,如平方米或平方公里等。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

打赏作者

此星光明

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

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

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

打赏作者

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

抵扣说明:

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

余额充值