Skip to content

Estación¤

Introducción¤

La Estación es el componente principal de Paricia. La Estación es propietaria de los datos de medición, que le permiten visualizar los datos existentes y añadir nuevos conjuntos, y captura una gran cantidad de metadatos sobre la ubicación geográfica de la estación, incluyendo longitud, latitud y altitud, pero también región, cuenca, ecosistema o área cubierta.

También posee otro parámetro clave utilizado durante el proceso de ingesta de datos: la zona horaria donde se encuentra la estación, que se utiliza para interpretar la hora de los conjuntos de datos.

Zona horaria incorrecta

Si este parámetro no se define correctamente, la hora de los datos asociados a la estación se interpretará de forma incorrecta. Compruebe el parámetro antes de cargar los datos, especialmente la primera vez.

Como se indica en la página de permisos, la visibilidad de las estaciones puede tomar una tercera opción, interna, que sólo permite a los usuarios registrados visualizar los datos de la estación. Las estaciones también requieren permiso de "cambio" para poder cargar datos asociados a esa estación y luego validarlos.

Diagrama UML de los modelos de la aplicación Station.
Figure 1: Diagrama UML de los modelos de la aplicación Station.

Componentes básicos¤

Country ¤

The country where a station or region is in.

Attributes:

Name Type Description
id int

Primary key.

name str

Country name.

Region ¤

A region within a country.

Attributes:

Name Type Description
id int

Primary key.

name str

Name of the region.

country Country

Country where the region is located.

Ecosystem ¤

The ecosystem associated with a station.

Attributes:

Name Type Description
id int

Primary key.

name str

Name of the ecosystem, e.g. rain forest.

Institution ¤

Institutional partner responsible for a station.

Attributes:

Name Type Description
id int

Primary key.

name str

Name of the institution.

StationType ¤

Type of the station, indicating what it measures.

Attributes:

Name Type Description
id int

Primary key.

name str

Name of the station type, e.g. pluvometric, hydrological.

Place ¤

Specific place that a station is situated.

Attributes:

Name Type Description
id int

Primary key.

name str

Name of the place, e.g. Huaraz.

image ImageField

Photography/Map of the location.

Basin ¤

River(s) basin where the station is located e.g. El Carmen.

Attributes:

Name Type Description
id int

Primary key.

name str

Name of the basin, e.g. El Carmen.

image ImageField

Photography/Map of the basin.

file FileField

PDF file with details of the basin.

PlaceBasin ¤

Associates a Basin with a Place and an image.

Attributes:

Name Type Description
id int

Primary key.

place Place

Place of the association.

basin Basin

Basin of the association.

image ImageField

Photography/Map of the place within the basin.

Componentes principales¤

Station ¤

Main representation of a station, including several metadata.

Attributes:

Name Type Description
visibility str

Visibility level of the object, including an "internal" option.

station_id int

Primary key.

station_code str

Unique code for the station.

station_name str

Brief description of the station.

station_type StationType

Type of the station.

country Country

Country where the station is located.

region Region

Region within the Country where the station is located.

ecosystem Ecosystem

Ecosystem associated with the station.

institution Institution

Institutional partner responsible for the station.

place_basin PlaceBasin

Place-Basin association.

station_state bool

Is the station operational?

timezone str

Timezone of the station.

station_latitude Decimal

Latitude of the station, in degrees [-90 to 90].

station_longitude Decimal

Longitude of the station, in degrees [-180 to 180].

station_altitude int

Altitude of the station.

influence_km Decimal

Area of influence in km2.

station_file ImageField

Photography of the station.

station_external bool

Is the station external?

variables str

Comma-separated list of variables measured by the station.