使用经纬度坐标从卫星图像中获取最近的像素值

2024-10-17 08:36:36 发布

您现在位置:Python中文网/ 问答频道 /正文

我有卫星图像文件。加载到dask数组中。我想得到感兴趣的纬度和经度的像素值(最接近)

卫星图像在GEOS投影中。我有经度和纬度信息作为2D numpy数组

Satellite Image file

我已将其加载到dask数据数组中

from satpy import Scene
import matplotlib as plt
import os

cwd = os.getcwd()

fn = os.path.join(cwd, 'EUMETSAT_data/1Jan21/MSG1-SEVI-MSG15-0100-NA-20210101185741.815000000Z-20210101185757-1479430.nat')

files = [fn]

scn = Scene(filenames=files, reader='seviri_l1b_native')
scn.load(["VIS006"])
da = scn['VIS006']

这就是dask阵列的外观: enter image description hereenter image description here

我在satpy的帮助下从area属性读取lon lats:

lon, lat = scn['VIS006'].attrs['area'].get_lonlats()
print(lon.shape)
print(lat.shape)

(1179, 808)
(1179, 808)

我得到了一个2d numpy数组,每个数组的经度和纬度都是坐标,但我不能使用它们进行切片或选择

获取最近的lat-long像素信息的最佳实践/方法是什么? 如何将数据投影到lat-long坐标上,然后用于索引以获得像素值

最后,我想得到感兴趣的lat long的像素值(最近的)

提前感谢


Tags: import信息os像素数组感兴趣longdask
3条回答

@serge ballesta-谢谢你的指导

回答我自己的问题

将纬度和经度(platecaree投影)投影到GEOS投影CRS上。找到x和y。使用此x和y以及xarray的最近选择方法从dask数组中获取像素值

import cartopy.crs as ccrs

data_crs = ccrs.Geostationary(central_longitude=41.5, satellite_height=35785831, false_easting=0, false_northing=0, globe=None, sweep_axis='y')

lon = 77.541677 # longitude of interest
lat = 8.079148 # latitude of interst

# lon lat system in 
x, y = data_crs.transform_point(lon, lat, src_crs=ccrs.PlateCarree())

dn = ds.sel(x=x,y=y, method='nearest')

您正在使用的AreaDefinition对象(.attrs['area'])有几种方法可以获取不同的坐标信息

area = scn['VIS006'].attrs['area']
col_idx, row_idx = area.get_xy_from_lonlat(lons, lats)

scn['VIS006'].values[row_idx, col_idx]

请注意,行和列是翻转的。get_xy_from_lonlat方法应该适用于数组或标量

如果您感兴趣的话,还有其他方法可以获得每个像素的X/Y坐标

您可以通过以下方式找到位置:

import numpy as np
px,py = (23.0,55.0) # some location to take out values:

dist = np.sqrt(np.cos(lat*np.pi/180.0)*(lon-px)**2+(lat-py)**2); # this is the distance matrix from point (px,py)
kkout = np.squeeze(np.where(np.abs(dist)==np.nanmin(dist))); # find location where distance is minimum
print(kkout) # you will see the row and column, where to take out data

相关问题 更多 >