mirror of
https://github.com/Unidata/python-awips.git
synced 2025-02-23 22:57:56 -05:00
need MasterLevel.MasterLevel in Level
This commit is contained in:
parent
3c580ed1fc
commit
f51a590e51
1 changed files with 1 additions and 1 deletions
|
@ -31,7 +31,7 @@ class Level(object):
|
|||
matcher = LEVEL_NAMING_REGEX.match(str(levelString))
|
||||
if matcher is not None:
|
||||
self.levelonevalue = numpy.float64(matcher.group(1))
|
||||
self.masterLevel = MasterLevel(matcher.group(3))
|
||||
self.masterLevel = MasterLevel.MasterLevel(matcher.group(3))
|
||||
levelTwo = matcher.group(2)
|
||||
if levelTwo:
|
||||
self.leveltwovalue = numpy.float64(levelTwo)
|
||||
|
|
Loading…
Add table
Reference in a new issue