obspy.station.station.Station.__init__

Station.__init__(code, latitude, longitude, elevation, channels=None, site=None, vault=None, geology=None, equipments=None, operators=None, creation_date=None, termination_date=None, total_number_of_channels=None, selected_number_of_channels=None, description=None, comments=None, start_date=None, end_date=None, restricted_status=None, alternate_code=None, historical_code=None)[source]
Parameters:
  • channels (A list of obspy.station.channel.Channel) All channels belonging to this station.
  • latitude (Latitude) The latitude of the station
  • longitude (Longitude) The longitude of the station
  • elevation The elevation of the station in meter.
  • site These fields describe the location of the station using geopolitical entities (country, city, etc.).
  • vault Type of vault, e.g. WWSSN, tunnel, transportable array, etc
  • geology Type of rock and/or geologic formation.
  • equiment Equipment used by all channels at a station.
  • operator An operating agency and associated contact persons. If there multiple operators, each one should be encapsulated within an Operator tag. Since the Contact element is a generic type that represents any contact person, it also has its own optional Agency element.
  • creation_date (UTCDateTime) Date and time (UTC) when the station was first installed
  • termination_date (UTCDateTime) Date and time (UTC) when the station was terminated or will be terminated. A blank value should be assumed to mean that the station is still active. Optional
  • total_number_of_channels (Integer) Total number of channels recorded at this station. Optional.
  • selected_number_of_channels (Integer) Number of channels recorded at this station and selected by the query that produced this document. Optional.
  • external_references (list of ExternalReference) URI of any type of external report, such as IRIS data reports or dataless SEED volumes. Optional.
  • description (String, optional) A description of the resource
  • comments (List of Comment, optional) An arbitrary number of comments to the resource
  • start_date (UTCDateTime, optional) The start date of the resource
  • end_date (UTCDateTime, optional) The end date of the resource
  • restricted_status (String, optional) The restriction status
  • alternate_code (String, optional) A code used for display or association, alternate to the SEED-compliant code.
  • historical_code (String, optional) A previously used code if different from the current code.

This Page