|
def | __init__ (self, name, description='', xcoordinate=None, ycoordinate=None, satres=0.1, satFilename='ortho-cal.png', alignments='', sidewalks='', bikepaths='') |
|
def | __getitem__ (self, i) |
|
def | getFilename (self) |
|
Definition at line 84 of file metadata.py.
◆ __init__()
def lib.metadata.Site.__init__ |
( |
|
self, |
|
|
|
name, |
|
|
|
description = '' , |
|
|
|
xcoordinate = None , |
|
|
|
ycoordinate = None , |
|
|
|
satres = 0.1 , |
|
|
|
satFilename = 'ortho-cal.png' , |
|
|
|
alignments = '' , |
|
|
|
sidewalks = '' , |
|
|
|
bikepaths = '' |
|
) |
| |
Definition at line 97 of file metadata.py.
97 def __init__(self, name, description = '', xcoordinate = None, ycoordinate = None, satres=0.1, satFilename='ortho-cal.png', alignments='', sidewalks='', bikepaths=''):
99 self.description = description
100 try: self.xcoordinate =
int(xcoordinate)
101 except: self.xcoordinate =
None 102 try: self.ycoordinate =
int(ycoordinate)
103 except: self.ycoordinate =
None 104 try: self.satres = float(satres)
105 except: self.satres =
None 106 self.satFilename = satFilename
107 self.alignments = alignments
108 self.sidewalks = sidewalks
109 self.bikepaths = bikepaths
◆ __getitem__()
def lib.metadata.Site.__getitem__ |
( |
|
self, |
|
|
|
i |
|
) |
| |
Definition at line 111 of file metadata.py.
111 def __getitem__(self, i):
return self.camera_views[i]
◆ getFilename()
def lib.metadata.Site.getFilename |
( |
|
self | ) |
|
Definition at line 113 of file metadata.py.
113 def getFilename(self):
◆ alignments
lib.metadata.Site.alignments = Column(String) |
|
static |
◆ bikepaths
lib.metadata.Site.bikepaths = Column(String) |
|
static |
◆ description
lib.metadata.Site.description = Column(String) |
|
static |
◆ idx
lib.metadata.Site.idx = Column(Integer, primary_key=True) |
|
static |
◆ name
lib.metadata.Site.name = Column(String) |
|
static |
◆ satFilename
lib.metadata.Site.satFilename = Column(String) |
|
static |
◆ satres
lib.metadata.Site.satres = Column(Float) |
|
static |
◆ sidewalks
lib.metadata.Site.sidewalks = Column(String) |
|
static |
◆ xcoordinate
lib.metadata.Site.xcoordinate = Column(Float) |
|
static |
◆ ycoordinate
lib.metadata.Site.ycoordinate = Column(Float) |
|
static |
The documentation for this class was generated from the following file: