gpt4 book ai didi

scipy - NetCDF:如何屏蔽/过滤掉全局数据集中的非土地值,最好使用 Python 和/或 NCO?

转载 作者:行者123 更新时间:2023-12-02 06:49:05 25 4
gpt4 key购买 nike

我有一个分辨率为 0.25 度的全局数据,我想对其进行屏蔽,以便它只包含陆地上的数据值。

数据涵盖经度维度的完整 360 度和纬度维度的 -60 到 60 度。

下面列出了文件头以及摘要经纬度坐标值:

netcdf cmorph_global_daily {
dimensions:
lat = UNLIMITED ; // (480 currently)
lon = 1440 ;
time = 7305 ;
variables:
float lat(lat) ;
lat:units = "degrees_north" ;
lat:long_name = "Latitude" ;
float lon(lon) ;
lon:units = "degrees_east" ;
lon:long_name = "Longitude" ;
float prcp(lat, lon, time) ;
prcp:_FillValue = NaNf ;
prcp:units = "mm" ;
prcp:standard_name = "precipitation" ;
prcp:long_name = "Precipitation" ;
prcp:description = "CMORPH Version 1.0BETA Version, daily precip from 00Z-24Z" ;
int time(time) ;
time:units = "days since 1900-01-01" ;
time:long_name = "Time" ;
time:calendar = "gregorian" ;

// global attributes:
:history = "Mon Mar 26 10:44:42 2018: ncpdq -a lat,lon,time cmorph_adjusted_daily.nc latlontime/cmorph_adjusted_daily.nc\nThu Mar 15 10:21:10 2018: ncks -4 cmorph_adjusted_daily.nc cmorph_adjusted_daily.nc" ;
:nco_openmp_thread_number = 1 ;
:title = "CMORPH Version 1.0BETA Version, daily precip from 00Z-24Z" ;
:NCO = "4.7.2" ;
data:

lat = -59.875, -59.625, -59.375, -59.125, ..., 59.125, 59.375, 59.625, 59.875 ;
lon = 0.125, 0.375, 0.625, 0.875, 1.125, ..., 359.125, 359.375, 359.625, 359.875 ;

我更愿意使用 Python/numpy 和/或 NCO 来执行此操作,因为这是我常用的工具集。

最佳答案

一旦你在同一个网格上有一个变量来屏蔽,你可以使用ncap2 where ,例如,

ncap2 -s 'where(LANDMASK != 1) prcp=prcp@_FillValue' in.nc out.nc

如果您的蒙版与您的数据位于不同的网格上,您可以使用(在 Linux/Mac 上)ncremap 的掩码功能,例如,使用类似的东西将您的数据重新映射到您的掩码(反之亦然)

ncremap --msk_dst=LANDMASK -d mask.nc prcp_in.nc prcp_out.nc

关于scipy - NetCDF:如何屏蔽/过滤掉全局数据集中的非土地值,最好使用 Python 和/或 NCO?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49548372/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com