This dataset, pollution_stations_df, is a data frame containing information about pollution measuring stations located in Mexico City. Each record corresponds to a station, including geographic coordinates and elevation. The station with code SS1 was manually added due to its absence in the original dataset; its location was identified through the Audit of Ambient Air Monitoring Stations for the Sistema de Monitoreo Atmosférico de la Ciudad de México.
data(pollution_stations_df)
A data frame with 70 observations and 7 variables:
Station identifier code (character)
Name of the pollution station (character)
Longitude (numeric)
Latitude (numeric)
Elevation above sea level in meters (integer)
Comments or notes (character)
Numerical ID used for internal reference (numeric)
The dataset name has been kept as 'pollution_stations_df' to avoid confusion with other datasets in the R ecosystem. This naming convention helps distinguish this dataset as part of the MexicoDataAPI package and assists users in identifying its specific characteristics. The suffix 'df' indicates that the dataset is a data frame. The original content has not been modified in any way.