当前位置:   article > 正文

【Python基础绘图】rioxarray读取tif并可视化

rioxarray

rioxarray读取tif并可视化

在这里插入图片描述

01 引言:

python通过rioxarray轻松读取tif数据,并借助cartopy进行可视化,现记录在此分享给更多有需要的同学。

02 结果如下:

在这里插入图片描述

03 代码如下:

# -*- encoding: utf-8 -*-
'''
@File    :   GFHD.PY
@Time    :   2022/02/28 13:42:59
@Author  :   HMX 
@Version :   1.0
@Contact :   kzdhb8023@163.com
'''

# here put the import lib
import cartopy.crs as ccrs
import cartopy.feature as cfeature
import cmaps
import matplotlib as mpl
import matplotlib.pyplot as plt
import numpy as np
from cartopy.mpl.ticker import LatitudeFormatter, LongitudeFormatter
import rioxarray as rxr

def cm2inch(value): 
    return value/2.54


size1 = 10.5
fontdict = {'weight': 'bold','size':size1,'color':'k','family':'SimHei'}
mpl.rcParams.update(
    {
    'text.usetex': False,
    'font.family': 'stixgeneral',
    'mathtext.fontset': 'stix',
    "font.family":'serif',
    "font.size": size1,
    "mathtext.fontset":'stix',
    "font.serif": ['Times New Roman'],
    }
    )


proj=ccrs.PlateCarree()
fig,ax = plt.subplots(1, 1,figsize=(cm2inch(16),cm2inch(9)),dpi=100, subplot_kw={'projection': proj})
extent = [-180,180,-90,90]

ax.add_feature(cfeature.COASTLINE.with_scale('50m'), linewidth=0.5, zorder=2,color = 'k')# 添加海岸线
ax.add_feature(cfeature.LAND)#添加陆地

ax.set_xticks(np.arange(extent[0], extent[1] + 1, 60), crs = proj)
ax.set_yticks(np.arange(extent[-2], extent[-1] + 1,30), crs = proj)
ax.xaxis.set_major_formatter(LongitudeFormatter(zero_direction_label=False))
ax.yaxis.set_major_formatter(LatitudeFormatter())
ax.xaxis.set_major_formatter(LongitudeFormatter(zero_direction_label=False))
ax.yaxis.set_major_formatter(LatitudeFormatter())
ax.set_extent(extent, crs=ccrs.PlateCarree())
ax.minorticks_on()

filename=r'E:\Project\World\GFHD2005\GFHD2005_Resample.TIF'
ds = rxr.open_rasterio(filename)

lon,lat = np.meshgrid(ds['x'],ds['y'])
data = ds[0]

lev=np.arange(0,51,5)
cf=ax.contourf(lon,lat,data,levels=lev,extend='neither',transform=ccrs.PlateCarree(),cmap=cmaps.rainbow)
plt.subplots_adjust(right=0.86)
ax2 = fig.add_axes([0.875,0.17,0.02,0.654])
b=plt.colorbar(cf,shrink=0.93,orientation='vertical',extend='both',pad=0.035,aspect=30,ticks=lev,cax=ax2)
b.ax.set_ylabel(r'冠层高度/$\mathrm{m}$',fontdict = fontdict)

plt.savefig(r'E:\Project\Figure\GFHD2005.png',dpi = 600)
plt.show()
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
  • 66
  • 67
  • 68
  • 69

​如果对你有帮助的话,请‘点赞’、‘收藏’,‘关注’,你们的支持是我更新的动力。
欢迎关注公众号【森气笔记】。

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/笔触狂放9/article/detail/329849
推荐阅读
相关标签
  

闽ICP备14008679号