- 数据集可用时间
- 2022-06-01T00:00:00Z–2026-04-16T00:00:00Z
- 数据集生产者
- Copernicus Marine Service
- 时间分辨率
- 1 天
- 标签
说明
Copernicus Marine Physics 2D Daily Mean Fields (cmems_mod_glo_phy_anfc_0.083deg_P1D-m) 以 8 公里的分辨率提供全球每日平均海洋表面和底部变量。
Operational Mercator 全球海洋分析和预测系统每天都会提供 10 天的 2D 全球海洋预测。 时序按时间聚合,以达到两整年的时序滑动窗口。此产品包括全球海洋从上到下的温度、盐度、洋流、海平面、混合层深度和冰参数的每日平均文件。
频段
频段
像元大小:9276.62 米(所有频段)
| 名称 | 单位 | 像元大小 | 说明 |
|---|---|---|---|
sialb |
% | 9276.62 米 | 海冰的平均反照率 |
siage |
y | 9276.62 米 | 海冰的平均年龄 |
siconc |
无量纲 | 9276.62 米 | 海冰浓度 |
ist |
°C | 9276.62 米 | 海冰表面温度 |
sivelo |
米/秒 | 9276.62 米 | 海冰速度 |
sithick |
米 | 9276.62 米 | 海冰厚度 |
sisnthick |
米 | 9276.62 米 | 海冰表面积雪厚度 |
mlotst |
米 | 9276.62 米 | 混合层深度 |
pbo |
Pa | 9276.62 米 | 海底的海水压力 |
sob |
psu | 9276.62 米 | 海底盐度 |
zos |
米 | 9276.62 米 | 海平面高度 |
tob |
°C | 9276.62 米 | 海底温度 |
usi |
米/秒 | 9276.62 米 | 海冰向东速度 |
vsi |
米/秒 | 9276.62 米 | 海冰向北速度 |
图像属性
图像属性
| 名称 | 类型 | 说明 |
|---|---|---|
| lag_hours | 双精度 | 对于过去观测,观测时间和运行时间之间的小时数。 |
| forecast_hours | 双精度 | 对于未来观测,观测时间和运行时间之间的小时数。 |
| observation_time | 双精度 | 观测的有效时间,以毫秒为单位。 |
| observation_type | STRING | 观测类型:
|
| run_time | 双精度 | 生成观测的时间,以毫秒为单位。 |
使用条款
使用条款
此数据集根据服务等级协议 (SLA) 发布,使用缩写“CMEMS”或简称“Copernicus Marine Service”,两者均表示欧盟哥白尼海洋环境监测服务。许可协议的核心亮点与关键条款详见本文档:许可
引用
引用:
E.U. Copernicus Marine Service Information (2024). Global Ocean Physics Analysis and Forecast. doi:10.48670/moi-00016
通过 Earth Engine 探索
代码编辑器 (JavaScript)
var dataset = ee.ImageCollection("COPERNICUS/MARINE/GLOBAL_ANALYSISFORECAST_PHY_DAILY") .filter(ee.Filter.date('2024-07-01', '2024-07-15')); var elevation = dataset.select('zos'); var elevationVis = { min: -2.0, max: 1.5, palette: ['0000ff', '00ffff', 'ffff00', 'ff0000', 'ffffff'], }; Map.setCenter(-140.5, 52.2, 2); Map.addLayer(elevation, elevationVis, 'Sea Surface Height');