コード例 #1
0
ファイル: UniformDB.py プロジェクト: koson/spatialdata
 def __init__(self, name="uniformdb"):
   """
   Constructor.
   """
   SpatialDBObj.__init__(self, name)
   from pyre.units import parser
   self.parser = parser()
   return
コード例 #2
0
  def __init__(self, name="userfunctiondb"):
    """
    Constructor.
    """
    SpatialDBObj.__init__(self, name)

    # This data member should be initialized in derived classes.
    #
    # self.functions = [(name, pointer_to_queryfn, units)]
    self.functions = []
    return
コード例 #3
0
ファイル: CompositeDB.py プロジェクト: koson/spatialdata
 def __init__(self, name="compositedb"):
   """
   Constructor.
   """
   SpatialDBObj.__init__(self, name)
   return
コード例 #4
0
ファイル: SimpleDB.py プロジェクト: koson/spatialdata
 def __init__(self, name="simpledb"):
   """
   Constructor.
   """
   SpatialDBObj.__init__(self, name)
   return
コード例 #5
0
ファイル: CompositeDB.py プロジェクト: jedbrown/spatialdata
 def __init__(self, name="compositedb"):
     """
 Constructor.
 """
     SpatialDBObj.__init__(self, name)
     return
コード例 #6
0
ファイル: GravityField.py プロジェクト: jedbrown/spatialdata
 def __init__(self, name="gravityfield"):
     """
 Constructor.
 """
     SpatialDBObj.__init__(self, name)
     return
コード例 #7
0
 def __init__(self, name="simpledb"):
     """
 Constructor.
 """
     SpatialDBObj.__init__(self, name)
     return
コード例 #8
0
ファイル: SCECCVMH.py プロジェクト: geodynamics/spatialdata
 def __init__(self, name="sceccvmh"):
   """
   Constructor.
   """
   SpatialDBObj.__init__(self, name)
   return
コード例 #9
0
 def __init__(self, name="gravityfield"):
   """
   Constructor.
   """
   SpatialDBObj.__init__(self, name)
   return
コード例 #10
0
ファイル: SCECCVMH.py プロジェクト: jedbrown/spatialdata
 def __init__(self, name="sceccvmh"):
     """
 Constructor.
 """
     SpatialDBObj.__init__(self, name)
     return