python 解析条件为字典键 / pandas 列 /xarray 变量

python parse condition as dictionary keys / pandas columns /xarray variables

提问人:Vinod Kumar 提问时间:10/31/2023 更新时间:10/31/2023 访问量:35

问:

我想解析以字符串形式提供的条件来过滤 xarray 数据集。 例如,字符串条件可以是 。因此,对于我的 xarray 数据集,包含这些变量将是 .现在我的问题是,我如何定义一个函数,可以将这个字符串过滤条件转换为可用于过滤数据集的查询(例如filter = '(solar_zenith_angle > 50) & (latitude > -17) & (longitude > 56)'dsfilter = (ds.solar_zenith_angle > 50) & (ds.latitude > -17) & (ds.longitude > 56)ds.where(filter))

python pandas 解析 python-xarray

评论

1赞 Barmar 10/31/2023
检查模块是否提供您可以使用的功能。ast

答: 暂无答案