Skip to content

Commit

Permalink
Merge pull request #36 from nansencenter/issue30_refactor
Browse files Browse the repository at this point in the history
#30 merge branches
  • Loading branch information
korvinos authored Feb 7, 2018
2 parents 05acb73 + 1cf2785 commit 30bcdcf
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
5 changes: 5 additions & 0 deletions openwind/openwind.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
from nansat.nansat import Nansat

class OpenWind(Nansat):

def __init__(self, **kwargs):
5 changes: 4 additions & 1 deletion openwind/sar_wind.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,10 @@

from nansat.tools import OptionError
from nansat.nansat import Nansat, Domain, _import_mappers
from nansat.nansatmap import Nansatmap
try:
from nansat.nansatmap import Nansatmap
except ImportError:
warnings.warn('Nansatmap is removed from nansat, method save_wind_map_image will not work')
from openwind.cmod5n import cmod5n_inverse

class TimeDiffError(Exception):
Expand Down

0 comments on commit 30bcdcf

Please sign in to comment.