-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #154 from a2e-mmc/dev
Merge dev branch
- Loading branch information
Showing
35 changed files
with
9,617 additions
and
286 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,17 @@ | ||
channels: | ||
- conda-forge | ||
dependencies: | ||
- python=3.7 | ||
- matplotlib=3.1.3 | ||
- numpy=1.18.1 | ||
- scipy=1.4.1 | ||
- pandas=1.0.1 | ||
- xarray=0.15.0 | ||
- dask=2.11.0 | ||
- netcdf4=1.5.3 | ||
- wrf-python=1.3.2 | ||
- utm=0.5.0 | ||
- f90nml=1.1.2 | ||
- elevation=1.0.6 | ||
- rasterio=1.0.25 | ||
- python>=3.10.6 | ||
- matplotlib>=3.5.3 | ||
- numpy>=1.23.2 | ||
- scipy>=1.9.0 | ||
- pandas>=1.4.3 | ||
- xarray>=2022.6.0 | ||
- dask>=2022.8.1 | ||
- netcdf4>=1.6.0 | ||
- wrf-python>=1.3.4 | ||
- utm>=0.7.0 | ||
- f90nml>=1.4.3 | ||
- elevation>=1.1.3 | ||
- rasterio>=1.3.2 | ||
- richdem>=2.3.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
|
||
#import windtools.windtools.plotting as plotting | ||
# | ||
# <module 'windtools.windtools.plotting' from '/home/equon/windtools/windtools/plotting.py'> | ||
# -- the wrong module was imported! | ||
|
||
#from .windtools.windtools import plotting | ||
#print(plotting) | ||
# | ||
# <module 'mmctools.windtools.windtools.plotting' from '/home/equon/a2e-mmc/mmctools/mmctools/windtools/windtools/plotting.py'> | ||
# ImportError: cannot import name 'plot_*' from 'mmctools.plotting' (unknown location) | ||
|
||
#from .windtools.windtools import * | ||
#print(plotting) | ||
# | ||
# NameError: name 'plotting' is not defined | ||
|
||
|
||
# for backwards compatibility, enable `from mmctools.plotting import plot_something` | ||
# enable `from mmctools.foo.bar import baz # to import baz from windtools.foo.bar` | ||
import os | ||
mmctools_module = os.path.split(__file__)[0] | ||
__path__.append(os.path.join(mmctools_module,'windtools','windtools')) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.