全球Aqualink海洋表面和次表面温度子集

举报
此星光明 发表于 2023/04/13 17:29:11 2023/04/13
【摘要】 ​ Aqualink海洋表面和次表面温度子集Aqualink是一个由慈善机构资助的系统,帮助人们在海洋温度上升的情况下管理他们当地的海洋生态系统。该系统由卫星连接的水下温度传感器和摄影调查组成,允许与世界各地的科学家进行远程合作。这个出口是作为aqualink.org提供的数据集和网站的一个子集而创建的,作为使海洋温度的原位读数真正成为可能并在全球范围内获得的一部分。aqualink浮标是a...

 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

 

【版权声明】本文为华为云社区用户原创内容,转载时必须标注文章的来源(华为云社区)、文章链接、文章作者等基本信息, 否则作者和本社区有权追究责任。如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱: cloudbbs@huaweicloud.com
  • 点赞
  • 收藏
  • 关注作者

评论(0

0/1000
抱歉,系统识别当前为高风险访问,暂不支持该操作

全部回复

上滑加载中

设置昵称

在此一键设置昵称,即可参与社区互动!

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。