GEE 将裁剪后的Sentinel-2影像 在ArcGIS中去除空值


在ArcGIS中,可以使用栅格计算器(Raster Calculator)工具来设置NoData值为空。以下是在ArcGIS中将NoData值设置为空的步骤:

  • 打开ArcGIS软件并加载下载的Sentinel-2影像数据。
    • 影像Nodata空值以黑色背景呈现,影响矢量数据叠加。
  • 在ArcGIS中选择栅格计算器工具:依次点击 Spatial Analyst -> Map Algebra -> Raster Calculator,操作文档如下:
    • https://pro.arcgis.com/zh-cn/pro-app/3.0/tool-reference/image-analyst/raster-calculator.htm
  • 在打开的栅格计算器对话框中,输入以下表达式来将NoData值设置为空:
    • 其中,"YourRaster" 是你加载的影像数据的名称。
php 复制代码
Con(IsNull("YourRaster"), 0, "YourRaster")
  • 点击"OK"按钮运行计算器。
  • 完成后,新的栅格数据将添加到地图中,并且所有原始数据中的NoData值将被设置为空值。

如果这对您有所帮助,希望点赞支持一下作者! 😊

点击查看原文
https://mp.weixin.qq.com/s?__biz=Mzk0MTU1MjU5Mw==&mid=2247484732&idx=1&sn=4f208a45d5acaad45a92831b9c3f5bcb&chksm=c2d1e382f5a66a9455dfed564bab0086336e0c67d4831efec96518488dff510ea423a8c5fa20#rd

相关推荐
码代码的小农3 小时前
深入浅出Sentinel:分布式系统的流量防卫兵
sentinel
冬_冬_5 小时前
ArcGIS Pro跨图层复制粘贴
arcgis
搬砖天才、1 天前
日常记录-redis主从复制(master-slave)+ Sentinel 哨兵(高可用)
数据库·redis·sentinel
是赵敢敢啊1 天前
sentinel
sentinel
东阳马生架构2 天前
Sentinel源码—9.限流算法的实现对比二
算法·sentinel
东阳马生架构2 天前
Sentinel源码—9.限流算法的实现对比一
算法·sentinel
东阳马生架构3 天前
Sentinel源码—9.限流算法的实现对比
sentinel
东阳马生架构3 天前
Sentinel源码—7.参数限流和注解的实现二
java·sentinel
东阳马生架构3 天前
Sentinel源码—8.限流算法和设计模式总结一
算法·sentinel
i小杨3 天前
pyenv-virtualenv(python 版本管理工具)
python·arcgis·virtualenv