Read|Read and write NetCDF with Python
Read and write NetCDF with Python How to read NetCDF file and write to CSV using Python Python - How to get variable from netcdf file on a specific location and at different level
import xrayds = xray.open_dataset('your_wrf_file.nc')ds_point = ds.sel(lon=76.9525, lat=8.4875)ds_point['Temperature'].plot()# plot profile at point assuming Temperature had dimensions of (level, lat, lon)df = ds_point.to_dataframe()# export dataset to Pandas.DataFrametemp_array = ds_point['Temperature'].values# access the underlying numpy array of the "Temperature" variable
cdo remapnn,lon=76.9525/lat=8.4875 wrf_file.nc pnt_file.nc
https://github.com/NCAR/pynio/blob/develop/examples/pynio_create_nc4.ipynb
【Read|Read and write NetCDF with Python】https://podpac.org/examples.html
推荐阅读
- android第三方框架(五)ButterKnife
- Android中的AES加密-下
- Eddy小文
- 带有Hilt的Android上的依赖注入
- Node.js中readline模块实现终端输入
- android|android studio中ndk的使用
- Android事件传递源码分析
- RxJava|RxJava 在Android项目中的使用(一)
- Android7.0|Android7.0 第三方应用无法访问私有库
- 深入理解|深入理解 Android 9.0 Crash 机制(二)