微软行星云计算Planetary Computer——可视化数据集有哪些?

简介: 微软行星云计算Planetary Computer——可视化数据集有哪些?

简介:

本次的网址如下:

Planetary Computer

对于行星云计算,我之前写过关于微软的云计算的文章具体链接:

微软行星云计算Planetary Computer——行星计算机数据资源管理器介绍!和GEE有啥不同?_此星光明的博客-CSDN博客


数据集

这里的数据集主要包括:

生物多样性

 

代码:

import pystac
import planetary_computer
import rioxarray
item_url = "https://planetarycomputer.microsoft.com/api/stac/v1/collections/hgb/items/hgb"
# Load the individual item metadata and sign the assets
item = pystac.Item.from_file(item_url)
signed_item = planetary_computer.sign(item)
# Open one of the data assets (other asset keys to use: 'belowground', 'aboveground_uncertainty', 'belowground_uncertainty')
asset_href = signed_item.assets["aboveground"].href
ds = rioxarray.open_rasterio(asset_href)
ds

 

DEM数据:

这里有ALOS数据(30m),哥白尼(30m/90m), NASA DEM HGT V001以及USGS 3DEP DEM数据集

 

代码:

 

import pystac
import planetary_computer
import rioxarray
item_url = "https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_049073_20211119_02_T1"
# Load the individual item metadata and sign the assets
item = pystac.Item.from_file(item_url)
signed_item = planetary_computer.sign(item)
# Open one of the data assets (other asset keys to use: 'SR_B2', 'SR_B3', 'SR_B4', 'SR_B5', 'SR_B6', 'SR_B7', 'QA_PIXEL', 'QA_RADSAT', 'SR_QA_AEROSOL')
asset_href = signed_item.assets["SR_B1"].href
ds = rioxarray.open_rasterio(asset_href)
ds


火灾数据集

因数据集的限制,仅有美国本土有:

点击左侧出现的图像我们可以看出年份和影像的分辨率,选择后我们可以再右侧的大地图中看到影像的位置

import pystac
import planetary_computer
import rioxarray
item_url = "https://planetarycomputer.microsoft.com/api/stac/v1/collections/mtbs/items/mtbs_severity_conus_2017_30m"
# Load the individual item metadata and sign the assets
item = pystac.Item.from_file(item_url)
signed_item = planetary_computer.sign(item)
# Open one of the data assets 
asset_href = signed_item.assets["burn-severity"].href
ds = rioxarray.open_rasterio(asset_href)
ds

 

其他影像数据:

有Landsat数据,

我们可以看到每一张影像都有时间和云量的百分比,比较最直观了

这里还有代码:

import pystac
import planetary_computer
import rioxarray
item_url = "https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_065068_20211119_02_T1"
# Load the individual item metadata and sign the assets
item = pystac.Item.from_file(item_url)
signed_item = planetary_computer.sign(item)
# Open one of the data assets (other asset keys to use: 'SR_B2', 'SR_B3', 'SR_B4', 'SR_B5', 'SR_B6', 'SR_B7', 'QA_PIXEL', 'QA_RADSAT', 'SR_QA_AEROSOL')
asset_href = signed_item.assets["SR_B1"].href
ds = rioxarray.open_rasterio(asset_href)
ds

大家可以在本地去试试:


 土地利用/土地分类数据

这里有两个ESRI 10米分辨率数据集 和美国地质调查局间歇土地覆盖数据集

代码:

import pystac
import planetary_computer
import rioxarray
item_url = "https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc/items/60V-2020"
# Load the individual item metadata and sign the assets
item = pystac.Item.from_file(item_url)
signed_item = planetary_computer.sign(item)
# Open one of the data assets 
asset_href = signed_item.assets["data"].href
ds = rioxarray.open_rasterio(asset_href)
ds

全球地表水数据集

代码:

import pystac
import planetary_computer
import rioxarray
item_url = "https://planetarycomputer.microsoft.com/api/stac/v1/collections/jrc-gsw/items/90E_80Nv1_3_2020"
# Load the individual item metadata and sign the assets
item = pystac.Item.from_file(item_url)
signed_item = planetary_computer.sign(item)
# Open one of the data assets (other asset keys to use: 'extent', 'occurrence', 'recurrence', 'seasonality', 'transitions')
asset_href = signed_item.assets["change"].href
ds = rioxarray.open_rasterio(asset_href)
ds

以上就是该云平台的展示,只不过目前在线的平台依旧没有开通,但是可以通过 python API进行分析。大家感兴趣的可以去试试


相关文章
|
2月前
|
边缘计算 安全 网络安全
|
7月前
|
机器学习/深度学习 分布式计算 大数据
【云计算与大数据技术】Spark实战项目之判别西瓜好坏(附源码和数据集)
【云计算与大数据技术】Spark实战项目之判别西瓜好坏(附源码和数据集)
114 0
|
SQL 机器学习/深度学习 运维
用公有云的创新速度演进混合云,微软再立云计算产业新标杆
用公有云的创新速度演进混合云,微软再立云计算产业新标杆
252 0
|
存储 传感器 编解码
微软行星云计算planet platform中的高分辨率影像通过API接入Google Earth Engine(GEE)
微软行星云计算planet platform中的高分辨率影像通过API接入Google Earth Engine(GEE)
431 0
微软行星云计算planet platform中的高分辨率影像通过API接入Google Earth Engine(GEE)
|
存储 编解码 算法
微软行星云计算Planetary Computer——重投影和重采样(方法1)
微软行星云计算Planetary Computer——重投影和重采样(方法1)
430 0
微软行星云计算Planetary Computer——重投影和重采样(方法1)
|
数据采集 API 云计算
好消息:微软行星云计算更新发布了Planet Science Update
好消息:微软行星云计算更新发布了Planet Science Update
197 0
好消息:微软行星云计算更新发布了Planet Science Update
|
存储 JavaScript 前端开发
微软行星云计算Planetary Computer——从 STAC API 读取数据
微软行星云计算Planetary Computer——从 STAC API 读取数据
637 0
微软行星云计算Planetary Computer——从 STAC API 读取数据
|
15天前
|
存储 安全 网络安全
云计算与网络安全:技术融合的双刃剑
在数字化浪潮中,云计算如同一股不可阻挡的力量,推动着企业和个人用户步入一个高效、便捷的新时代。然而,随之而来的网络安全问题也如影随形,成为制约云计算发展的阿喀琉斯之踵。本文将探讨云计算服务中的网络安全挑战,揭示信息保护的重要性,并提供实用的安全策略,旨在为读者呈现一场技术与安全的较量,同时指出如何在享受云服务带来的便利的同时,确保数据的安全和隐私。
25 6
|
14天前
|
存储 人工智能 安全
云计算与网络安全:技术融合与挑战
在数字化时代的浪潮中,云计算和网络安全已成为推动社会进步的两大关键技术。本文将探讨云计算服务的发展,网络安全的重要性,以及信息安全技术的演进。我们将通过实例分析,揭示云服务如何增强数据保护,网络安全措施如何应对新兴威胁,以及信息安全技术的创新如何为企业带来竞争优势。文章旨在为读者提供对云计算和网络安全领域的深入理解,并展示它们如何共同塑造我们的未来。
|
13天前
|
监控 安全 网络安全
云计算与网络安全:技术挑战与解决方案
随着云计算技术的飞速发展,其在各行各业的应用越来越广泛。然而,随之而来的网络安全问题也日益凸显。本文将从云服务、网络安全和信息安全等技术领域出发,探讨云计算面临的安全挑战及相应的解决方案。通过实例分析和代码示例,旨在帮助读者更好地理解云计算与网络安全的关系,提高网络安全防护意识。