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

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

 

这些数据集是用我之前写的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

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

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