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

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

 

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

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

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

aqualink.org (2021). Clerke Reef West side, Australia SST. Retrieved from https://aqualink.org/sites/1218

Earth Engine Snippet

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

 

  • 0
    点赞
  • 3
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

打赏作者

此星光明

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

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

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

打赏作者

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

抵扣说明:

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

余额充值