Trees | Indices | Help |
|
---|
|
object --+ | point.Point --+ | trigpoints.Trigpoint --+ | Station
Since: 0.2.0
|
|||
|
|||
str
|
|
||
Inherited from Inherited from Inherited from |
|
|||
alt_id Alternate location identifier(either ICAO or WMO) |
|||
altitude Location's altitude |
|||
country Country name |
|||
latitude Location's latitude |
|||
longitude Locations's longitude |
|||
name Location's name |
|||
rbsn True if station belongs to RSBN |
|||
state State name, if station is in the US |
|||
ua_altitude Station's upper air elevation |
|||
ua_latitude Station's upper air latitude |
|||
ua_longitude Station's upper air longitude |
|||
wmo WMO region code |
|||
Inherited from Inherited from |
|
|||
Inherited from Inherited from |
|
Initialise a new Station object >>> Station('EGLL', 'London / Heathrow Airport', None, ... 'United Kingdom', 6, 51.4833333333, -0.45, None, None, 24, ... 0, True) Station('EGLL', 'London / Heathrow Airport', None, 'United Kingdom', 6, 51.4833333333, -0.45, None, None, 24, 0, True)
|
Pretty printed location string >>> Heathrow = Station("EGLL", "London / Heathrow Airport", None, ... "United Kingdom", 6, 51.048333, -0.450000, None, ... None, 24, 0, True) >>> print(Heathrow) London / Heathrow Airport (EGLL - N51.048°; W000.450°) >>> print(Heathrow.__str__(mode="dms")) London / Heathrow Airport (EGLL - 51°02'53"N, 000°27'00"W) >>> print(Heathrow.__str__(mode="dm")) London / Heathrow Airport (EGLL - 51°02.90'N, 000°27.00'W) >>> Heathrow.alt_id = None >>> print(Heathrow) London / Heathrow Airport (N51.048°; W000.450°)
See Also: trigpoints.point.Point |
Trees | Indices | Help |
|
---|
Generated by Epydoc 3.0.1 on Tue May 20 12:41:49 2008 | http://epydoc.sourceforge.net |