GSSHAPY
stable
  • Introduction
  • Logging
  • Getting Started
  • Changes in Version 2.2
  • Supported Files
  • API Documentation
    • Input File Objects
      • Project File
      • Channel Input File
      • Grid Pipe File
      • Grid Stream File
      • Hydrometeorological Files
      • Map Files
      • Mapping Table File
      • Output Location Files
      • Precipitation File
      • Projection File
      • Replacement File
      • Snow Simulation Related Files
        • NWSRFS File
        • Supporting Objects
        • Orographic Gage File
        • Supporting Objects
      • Storm Pipe Network File
    • Output File Objects
    • Base Classes
    • GsshaPy Utilities API
    • GRID API
    • Modeling API
GSSHAPY
  • Docs »
  • API Documentation »
  • Snow Simulation Related Files
  • Edit on GitHub

Snow Simulation Related Files¶

There are two files that are used for snow simulations.

NWSRFS File¶

File extension: None

class gsshapy.orm.NwsrfsFile[source]¶

Bases: sqlalchemy.ext.declarative.api.Base, gsshapy.base.file_base.GsshaPyFileObjectBase

Object interface for the NWSRFS Snow File.

The contents of this file is abstracted into one supporting object: NwsrfsRecord.

See: GSSHAWIKI

tableName = u'snw_nwsrfs_files'¶

Database tablename

id¶

PK

numBands¶

INTEGER

fileExtension¶

STRING

nwsrfsRecords¶

RELATIONSHIP

projectFile¶

RELATIONSHIP

Supporting Objects¶

class gsshapy.orm.NwsrfsRecord(lowerElev, upperElev, mfMin, mfMax, scf, frUse, tipm, nmf, fua, plwhc)[source]¶

Bases: sqlalchemy.ext.declarative.api.Base

Object containing data for a single NWSRFS record from the NWSRFS snow file.

tableName = u'snw_nwsrfs_records'¶

Database tablename

id¶

PK

nwsrfsFileID¶

FK

nwsrfsFile¶

RELATIONSHIP

lowerElev¶

INTEGER

upperElev¶

INTEGER

mfMin¶

FLOAT

mfMax¶

FLOAT

scf¶

FLOAT

frUse¶

FLOAT

tipm¶

FLOAT

nmf¶

FLOAT

fua¶

FLOAT

plwhc¶

FLOAT

Orographic Gage File¶

File extension: None

class gsshapy.orm.OrographicGageFile[source]¶

Bases: sqlalchemy.ext.declarative.api.Base, gsshapy.base.file_base.GsshaPyFileObjectBase

Object interface for the Orographic Gage File.

The contents of this file is abstracted into one supporting object: OrographicMeasurement.

See: GSSHAWIKI

tableName = u'snw_orographic_gage_files'¶

Database tablename

id¶

PK

numSites¶

INTEGER

elevBase¶

FLOAT

elev2¶

FLOAT

fileExtension¶

STRING

orographicMeasurements¶

RELATIONSHIP

projectFile¶

RELATIONSHIP

Supporting Objects¶

class gsshapy.orm.OrographicMeasurement(dateTime, temp2)[source]¶

Bases: sqlalchemy.ext.declarative.api.Base

Object containing data for a single orographic gage as defined in the orographic gage file.

tableName = u'snw_orographic_measurements'¶

Database tablename

id¶

PK

orthoGageID¶

FK

orographicGageFile¶

RELATIONSHIP

dateTime¶

DATETIME

temp2¶

FLOAT

Next Previous

© Copyright 2014-2017, Brigham Young University & US Army Engineer Research and Development Center. Revision 7ee8ae16.

Built with Sphinx using a theme provided by Read the Docs.