The data model of a city in the database.
More...
|
| | id = Column(Integer, primary_key=True, nullable=False) |
| |
| | fieldID = Column(Integer, ForeignKey('field.id'), nullable=False) |
| |
| | field = relationship('Field') |
| |
| | x = Column(Float, nullable=False) |
| |
| | y = Column(Float, nullable=False) |
| |
| | z = Column(Float, nullable=False) |
| |
| | Et = Column(Float, nullable=False) |
| |
The data model of a city in the database.
Every Data has a three dimensional coordinates, a field value, and belongs to a specific Field.
◆ Et
| DBCreator.Data.Et = Column(Float, nullable=False) |
|
static |
◆ field
| DBCreator.Data.field = relationship('Field') |
|
static |
◆ fieldID
| DBCreator.Data.fieldID = Column(Integer, ForeignKey('field.id'), nullable=False) |
|
static |
◆ id
| DBCreator.Data.id = Column(Integer, primary_key=True, nullable=False) |
|
static |
| DBCreator.Data.x = Column(Float, nullable=False) |
|
static |
| DBCreator.Data.y = Column(Float, nullable=False) |
|
static |
| DBCreator.Data.z = Column(Float, nullable=False) |
|
static |
The documentation for this class was generated from the following file: