Google Earth Engine——飓风最佳轨迹数据库(HURDAT2)。太平洋盆地1949-2018年。

简介: Google Earth Engine——飓风最佳轨迹数据库(HURDAT2)。太平洋盆地1949-2018年。

Hurricane best track database (HURDAT2).

Pacific basin 1949-2018.

飓风最佳轨迹数据库(HURDAT2)。

太平洋盆地1949-2018年。

Dataset Availability

1949-06-11T00:00:00 - 2018-11-09T00:00:00

Dataset Provider

NOAA NHC

Collection Snippet

ee.FeatureCollection("NOAA/NHC/HURDAT2/pacific")

Name Type Description
seq Double ATCF cyclone number for that year
name String Hurricane name. e.g. "ALEX"
datetime String Observation time in UTC. Format is YYYY-MM-DDTHH:MM:SS.
record_id String Single letter desinating a specific event in a hurricane track. An empty string if no code. - C – Closest approach to a coast not followed by a landfall - G – Genesis - I – An intensity peak in terms of both pressure and wind - L – Landfall (center of system crossing a coastline) - P – Minimum in central pressure - R – Provides additional detail on the intensity of the cyclone when rapid changes are underway - S – Change of status of the system - T – Provides additional detail on the track (position) of the cyclone - W – Maximum sustained wind speed
status String Status of system: - DB – Disturbance (of any intensity) - ET - Unknown. The only occurrence is in HARVEY. - EX – Extratropical cyclone (of any intensity) - HU – Tropical cyclone of hurricane intensity (> 64 knots) - LO – A low that is neither a tropical cyclone, a subtropical cyclone, nor an extratropical cyclone (of any intensity) - SD – Subtropical cyclone of subtropical depression intensity (< 34 knots) - SS – Subtropical cyclone of subtropical storm intensity (> 34 knots) - TD – Tropical cyclone of tropical depression intensity (< 34 knots) - TS – Tropical cyclone of tropical storm intensity (34-63 knots) - WV – Tropical Wave (of any intensity)
max_wind_kts Double Maximum wind speed
min_pressure Double Minimum pressure
numEntries Double Number of points for a particular hurricane
radii_ne_34kt Double 34 kt wind radii maximum extent in northeastern quadrant
radii_se_34kt Double 34 kt wind radii maximum extent in southeastern quadrant
radii_sw_34kt Double 34 kt wind radii maximum extent in southwestern quadrant
radii_nw_34kt Double 34 kt wind radii maximum extent in northwestern quadrant
radii_ne_50kt Double 50 kt wind radii maximum extent in northeastern quadrant
radii_se_50kt Double 50 kt wind radii maximum extent in southeastern quadrant
radii_sw_50kt Double 50 kt wind radii maximum extent in southwestern quadrant
radii_nw_50kt Double 50 kt wind radii maximum extent in northwestern quadrant
radii_ne_64kt Double 64 kt wind radii maximum extent in northeastern quadrant
radii_se_64kt Double 64 kt wind radii maximum extent in southeastern quadrant
radii_sw_64kt Double 64 kt wind radii maximum extent in southwestern quadrant
radii_nw_64kt Double 64 kt wind radii maximum extent in northwestern quadrant
basin String Ocean basin. Always "AL" for Atlantic.
id String Code for a particular hurricane. "AL" followed by a 2 digit cyclone number followed by a 4-digit year. e.g. "AL162018"
year Double Year in which the hurricane occurred


使用说明:

NOAA data, information, and products, regardless of the method of delivery, are not subject to copyright and carry no restrictions on their subsequent use by the public. Once obtained, they may be put to any lawful use.NOAA的数据、信息和产品,无论其交付方式如何,都不受版权保护,对公众的后续使用也没有限制。一旦获得,它们可以被用于任何合法用途。

代码:

// Show hurricane tracks and points for 1993.
var hurricanes = ee.FeatureCollection('NOAA/NHC/HURDAT2/pacific');
var year = '1993';
var points = hurricanes.filter(ee.Filter.date(ee.Date(year).getRange('year')));
// Find all of the hurricane ids.
var GetId = function(point) {
  return ee.Feature(point).get('id');
};
var storm_ids = points.toList(1000).map(GetId).distinct();
// Create a line for each hurricane.
var lines = ee.FeatureCollection(storm_ids.map(function(storm_id){
  var pts = points.filter(ee.Filter.eq('id', ee.String(storm_id)));
  pts = pts.sort('system:time_start');
  var line = ee.Geometry.LineString(pts.geometry().coordinates());
  var feature = ee.Feature(line);
  return feature.set('id', storm_id);
}));
Map.addLayer(lines, {color: 'red'}, 'tracks');
Map.addLayer(points, {color: 'black'}, 'points');
Map.setCenter(210, 30, 3);


相关文章
|
3月前
|
数据可视化 定位技术 Sentinel
如何用Google Earth Engine快速、大量下载遥感影像数据?
【2月更文挑战第9天】本文介绍在谷歌地球引擎(Google Earth Engine,GEE)中,批量下载指定时间范围、空间范围的遥感影像数据(包括Landsat、Sentinel等)的方法~
644 0
如何用Google Earth Engine快速、大量下载遥感影像数据?
|
3月前
|
编解码 人工智能 算法
Google Earth Engine——促进森林温室气体报告的全球时间序列数据集
Google Earth Engine——促进森林温室气体报告的全球时间序列数据集
31 0
|
3月前
|
机器学习/深度学习 算法 数据可视化
基于Google Earth Engine云平台构建的多源遥感数据森林地上生物量AGB估算模型含生物量模型应用APP
基于Google Earth Engine云平台构建的多源遥感数据森林地上生物量AGB估算模型含生物量模型应用APP
110 0
|
2月前
|
存储 编解码 数据可视化
Google Earth Engine获取随机抽样点并均匀分布在栅格的不同数值区中
【2月更文挑战第14天】本文介绍在谷歌地球引擎(Google Earth Engine,GEE)中,按照给定的地表分类数据,对每一种不同的地物类型,分别加以全球范围内随机抽样点自动批量选取的方法~
273 0
Google Earth Engine获取随机抽样点并均匀分布在栅格的不同数值区中
|
3月前
|
数据处理
Google Earth Engine(GEE)——sentinel-1数据处理过程中出现错误Dictionary does not contain key: bucketMeans
Google Earth Engine(GEE)——sentinel-1数据处理过程中出现错误Dictionary does not contain key: bucketMeans
32 0
|
3月前
|
数据采集 编解码 人工智能
Google Earth Engine(GEE)——全球每日近地表空气温度(2003-2020年)
Google Earth Engine(GEE)——全球每日近地表空气温度(2003-2020年)
73 0
|
3月前
|
人工智能
Google Earth Engine(GEE)——1984-2019年美国所有土地上的大火烧伤严重程度和范围数据集
Google Earth Engine(GEE)——1984-2019年美国所有土地上的大火烧伤严重程度和范围数据集
24 0
|
3天前
|
关系型数据库 MySQL 数据库
docker MySQL删除数据库时的错误(errno: 39)
docker MySQL删除数据库时的错误(errno: 39)
10 0
|
1天前
|
关系型数据库 MySQL 数据库
mysql 设置环境变量与未设置环境变量连接数据库的区别
设置与未设置MySQL环境变量在连接数据库时主要区别在于命令输入方式和系统便捷性。设置环境变量后,可直接使用`mysql -u 用户名 -p`命令连接,而无需指定完整路径,提升便利性和灵活性。未设置时,需输入完整路径如`C:\Program Files\MySQL\...`,操作繁琐且易错。为提高效率和减少错误,推荐安装后设置环境变量。[查看视频讲解](https://www.bilibili.com/video/BV1vH4y137HC/)。
17 3
mysql 设置环境变量与未设置环境变量连接数据库的区别
|
3天前
|
关系型数据库 MySQL 数据库连接
用Navicat备份Mysql演示系统数据库的时候出:Too Many Connections
用Navicat备份Mysql演示系统数据库的时候出:Too Many Connections
10 0

热门文章

最新文章