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


Python Data.cut_bounding_box方法代码示例

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


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

示例1: Data

# 需要导入模块: from pycmbs.data import Data [as 别名]
# 或者: from pycmbs.data.Data import cut_bounding_box [as 别名]
# 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)

# To illustrate what happens, you can plot WITHOUT using a map projection
map_plot(air, title="after cutting (no projection)")

plt.show()
开发者ID:jian-peng,项目名称:pycmbs,代码行数:31,代码来源:05_mask_a_region.py


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