Difference between revisions of "How to convert data for Geogrid"
Jump to navigation
Jump to search
Line 17: | Line 17: | ||
conda install -c conda-forge simplekml pygrib f90nml pyhdf xmltodict basemap | conda install -c conda-forge simplekml pygrib f90nml pyhdf xmltodict basemap | ||
pip install MesoPy python-cmr | pip install MesoPy python-cmr | ||
+ | |||
+ | Note that <tt>conda</tt> and <tt>pip</tt> are package managers available in the Anaconda Python distribution. | ||
== Get wrfxpy repository == | == Get wrfxpy repository == |
Revision as of 18:45, 2 July 2020
- Back to the WRF-SFIRE user guide.
This wiki page explains how to transform geotiff files to geogrid using convert_geotiff script in wrfxpy.
Get Anaconda3 distribution
Download and install the Python 3 Anaconda Python distribution for your platform. We recommend an installation into the user's home directory.
wget https://repo.continuum.io/archive/Anaconda3-2019.10-Linux-x86_64.sh chmod +x Anaconda3-2019.10-Linux-x86_64.sh ./Anaconda3-2019.10-Linux-x86_64.sh
Install environment
Create a python environment for gdal compatibility. Shortly this is going to be the environment for wrfxpy installation.
conda create -n wrfxpy python=3 gdal netcdf4 pyproj paramiko dill scikit-learn h5py pandas psutil proj4 conda activate wrfxpy conda install -c conda-forge simplekml pygrib f90nml pyhdf xmltodict basemap pip install MesoPy python-cmr
Note that conda and pip are package managers available in the Anaconda Python distribution.
Get wrfxpy repository
Run convert_geotiff.sh
See the github repository for convert_geotiff for the latest documentation and source code.