gpt4 book ai didi

python-xarray - xarray : reverse an array along one coordinate

转载 作者:行者123 更新时间:2023-12-04 14:37:41 29 4
gpt4 key购买 nike

对于我的数据数组,我有坐标经度、纬度和时间。我只想沿纬度反转数组,以便 [90, 85, ..., -85, -90]变成 [-90, -80, ..., 85, 90] .

最佳答案

同意@jhamman 的回应,即最低限度可重复的示例会有所帮助

我想你可以用

da = xr.tutorial.open_dataset('air_temperature')
da.reindex(lat=list(reversed(da.lat)))`

关于python-xarray - xarray : reverse an array along one coordinate,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54677161/

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