当前位置: 首页>>代码示例>>Python>>正文


Python Data.get_aoi_lat_lon方法代码示例

本文整理汇总了Python中pycmbs.data.Data.get_aoi_lat_lon方法的典型用法代码示例。如果您正苦于以下问题:Python Data.get_aoi_lat_lon方法的具体用法?Python Data.get_aoi_lat_lon怎么用?Python Data.get_aoi_lat_lon使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在pycmbs.data.Data的用法示例。


在下文中一共展示了Data.get_aoi_lat_lon方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: RegionBboxLatLon

# 需要导入模块: from pycmbs.data import Data [as 别名]
# 或者: from pycmbs.data.Data import get_aoi_lat_lon [as 别名]
import matplotlib.pyplot as plt

# specify some region using bounding box
# here: 20deg W ... 30 DEG E, 40 DEG S ... 5 DEG N
r = RegionBboxLatLon(777, -20.0, 30.0, -40.0, 5.0, label="testregion")  # 777 is just the ID value

# read some data as Data object
filename = download.get_sample_file(name="air", return_object=False)
air = Data(filename, "air", read=True)

# generate some plot BEFORE the masking
map_plot(air, title="before", use_basemap=True)

# now mask the data ...
air.get_aoi_lat_lon(r)

# generate some plot AFTER the masking
map_plot(air, title="after", use_basemap=True)

# ... o.k., so far so good, but the dataset "air" still contains data for the entire domain.
# even if it is masked it will eat some of your memory. You can see this by plotting the size of the matrix
print(air.shape)

# wouldn't it be nice to just remove everything which is not needed?
# Here you go ...
air.cut_bounding_box()
map_plot(air, title="after cutting", use_basemap=True)

# still looks the same, isn't  it? No it isn't, look at the size!
print(air.shape)
开发者ID:jian-peng,项目名称:pycmbs,代码行数:32,代码来源:05_mask_a_region.py


注:本文中的pycmbs.data.Data.get_aoi_lat_lon方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。