load_stations(filename,
type,
origins=(0, 0),
deltas=(0, 0),
lengths=(0, 0))
Loads stations description from text file. Removes stations outside
the domain described by origins, deltas and lengths (if specified).
-
- Parameters:
filename -
Name of the file that describes the stations.
(type=string)
type -
The type of the initialization strings in the file. It could
be Default, Pioneer, Emep or Bdqa.
(type=string)
origins -
(latitude, longitude) as coordinates of the first cell in the
mesh.
(type=(float, float))
deltas -
mesh sizes on latitude and longitude.
(type=(float, float))
lengths -
lengths of the mesh on latitude and longitude.
(type=(int, int))
- Returns:
-
sequence of stations loaded from specified file.
(type=sequence of Station)
|