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

NameTypeDescription
seqDoubleATCF cyclone number for that year
nameStringHurricane name. e.g. "ALEX"
datetimeStringObservation time in UTC. Format is YYYY-MM-DDTHH:MM:SS.
record_idStringSingle 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
statusStringStatus 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_ktsDoubleMaximum wind speed
min_pressureDoubleMinimum pressure
numEntriesDoubleNumber of points for a particular hurricane
radii_ne_34ktDouble34 kt wind radii maximum extent in northeastern quadrant
radii_se_34ktDouble34 kt wind radii maximum extent in southeastern quadrant
radii_sw_34ktDouble34 kt wind radii maximum extent in southwestern quadrant
radii_nw_34ktDouble34 kt wind radii maximum extent in northwestern quadrant
radii_ne_50ktDouble50 kt wind radii maximum extent in northeastern quadrant
radii_se_50ktDouble50 kt wind radii maximum extent in southeastern quadrant
radii_sw_50ktDouble50 kt wind radii maximum extent in southwestern quadrant
radii_nw_50ktDouble50 kt wind radii maximum extent in northwestern quadrant
radii_ne_64ktDouble64 kt wind radii maximum extent in northeastern quadrant
radii_se_64ktDouble64 kt wind radii maximum extent in southeastern quadrant
radii_sw_64ktDouble64 kt wind radii maximum extent in southwestern quadrant
radii_nw_64ktDouble64 kt wind radii maximum extent in northwestern quadrant
basinStringOcean basin. Always "AL" for Atlantic.
idStringCode for a particular hurricane. "AL" followed by a 2 digit cyclone number followed by a 4-digit year. e.g. "AL162018"
yearDoubleYear 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);

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

打赏作者

此星光明

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

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

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

打赏作者

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

抵扣说明:

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

余额充值