前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >Google Earth Engine(GEE) ——Aqualink海洋表面和次表面温度数据集

Google Earth Engine(GEE) ——Aqualink海洋表面和次表面温度数据集

作者头像
此星光明
发布2024-02-02 14:27:38
1240
发布2024-02-02 14:27:38
举报

Aqualink海洋表面和次表面温度子集 Aqualink是一个由慈善机构资助的系统,帮助人们在海洋温度上升的情况下管理他们当地的海洋生态系统。该系统由卫星连接的水下温度传感器和摄影调查组成,允许与世界各地的科学家进行远程合作。这个出口是作为aqualink.org提供的数据集和网站的一个子集而创建的,作为使海洋温度的原位读数真正成为可能并在全球范围内获得的一部分。aqualink浮标是aqualink与sofarocean的合作,部署这种浮标作为传感器,在表面和不同的深度捕捉海洋温度。它们还能够测量诸如波高和风况等。你可以在这里阅读关于aqualink浮标的信息Aqualink

这些数据集是用我之前写的pyaqua工具下载和处理的,你可以在这里阅读关于aqualink和pyaqua工具。这些数据代表海面温度以及深度温度。这些都是为已部署的浮标而生成的,并被导出CSV文件,然后导入谷歌地球引擎。这些数据集有时间戳和所述变量的值,可以进一步用来评估一段时间的状况。前言 – 床长人工智能教程

这只是从2020-01-04到2021-01-04的56个部署地点的一年的子集,是供用户测试的子集,随着这个项目的发展,数据的格式和时间可能会改变。

数据引证¶ 引用规则将因期刊或需求而异,但一个好的例子是

代码语言:javascript
复制
aqualink.org (2021). Clerke Reef West side, Australia SST. Retrieved from https://aqualink.org/sites/1218

Earth Engine Snippet

代码语言:javascript
复制
var top = ee.FeatureCollection("projects/sat-io/open-datasets/open-ocean/aqualink_top_temp_2020"),
    bottom = ee.FeatureCollection("projects/sat-io/open-datasets/open-ocean/aqualink_bottom_temp_2020");

print('Top readings',top.size())
print('Bottom readings',bottom.size()) 

Map.centerObject(top.first(),7)
Map.addLayer(top)

// Define the chart and print it to the console.
var chart =
    ui.Chart.feature
        .histogram({features: top, property: 'value', maxBuckets: 50})
        .setOptions({
          title: 'Top temp',
          hAxis: {
            title: 'Top temp (C)',
            titleTextStyle: {italic: false, bold: true}
          },
          vAxis: {
            title: 'Observation count',
            titleTextStyle: {italic: false, bold: true}
          },
          colors: ['1d6b99'],
          legend: {position: 'none'}
        });
print(chart);

// Define the chart and print it to the console.
var chart =
    ui.Chart.feature
        .histogram({features: bottom, property: 'value', maxBuckets: 50})
        .setOptions({
          title: 'Bottom temp',
          hAxis: {
            title: 'Bottom temp (C)',
            titleTextStyle: {italic: false, bold: true}
          },
          vAxis: {
            title: 'Observation count',
            titleTextStyle: {italic: false, bold: true}
          },
          colors: ['1d6b99'],
          legend: {position: 'none'}
        });
print(chart);

Sample Code: https://code.earthengine.google.com/?scriptPath=users/sat-io/awesome-gee-catalog-examples:oceans-shorelines/AQUALINK-SUBSET-2020

License

All work and data under the aqualink project are under an MIT license and free and open to the community.

Created by: aqualink org

Curated by: Samapriya Roy

Keywords: : aqualink, buoy, temperature, sea surface temperature, sst, wave, oceans, bleaching, coral reefs, extreme-sea-level

Last updated: 2022-01-05

本文参与 腾讯云自媒体同步曝光计划,分享自作者个人站点/博客。
原始发表:2024-02-01,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体同步曝光计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档