Using xarray to read EBAS data
Using xarray to read EBAS data#
See more at http://ebas.nilu.no/ and https://ebas.nilu.no/thredds/
requirements pip install threddsclient
The EBAS database collects observational data on atmospheric chemical composition and physical properties from a variety of national and international research projects and monitoring programs, such as ACTRIS, AMAP, EMEP, GAW and HELCOM, as well as for the Norwegian monitoring programs funded by the Norwegian Environment Agency, the Ministry of Climate and Environment and NILU – Norwegian Institute for Air Research.
See all files available: https://thredds.nilu.no/thredds/catalog/ebas/catalog.html
# You need to first install threddsclient:
# remember to do in terminal pip install threddsclient
import threddsclient
import xarray as xr
# Find url addresses for files on EBAS
all_opendap_urls = threddsclient.opendap_urls(
'https://thredds.nilu.no/thredds/catalog/ebas/catalog.xml')
#Example 1 nephelometer scattering coefficient data
# get all data urls for one station, e.g., Zeppelin NO0042G
opendap_urls = [x for x in all_opendap_urls if 'NO0042G' in x]
# get all scattering data urls
opendap_urls = [x for x in opendap_urls if 'nephelometer' in x]
opendap_urls
['https://thredds.nilu.no/thredds/dodsC/ebas/NO0042G.20100101000000.20150216111241.nephelometer..pm10.4y.1h.SE02L_TSI_3563_ZEP_dry.SE02L_scat_coef.lev2.nc',
'https://thredds.nilu.no/thredds/dodsC/ebas/NO0042G.20080708135939.20181213000000.nephelometer..aerosol_humidified.3mo.6h.CH02L_TSI_3563_ZEP_ref+TSI_3563_ZEP_wet.CH02L_hygro_tandem_neph_CorrData.lev2.nc']
# read multiple files
# the problem with this example is,
# that the files are from different instruments
# thus, they need to be treated and digested one by one.
dsmf = xr.open_mfdataset(opendap_urls)
dsmf
<xarray.Dataset> Dimensions: ( time: 35451, metadata_time: 5, Wavelength: 3, RH_base: 1, RH_humidified: 1, ... aerosol_light_scattering_coefficient_prec1587_qc_flags: 2, aerosol_light_scattering_coefficient_perc8413_qc_flags: 2, pressure_qc_flags: 2, aerosol_light_backscattering_coefficient_prec1587_qc_flags: 2, aerosol_light_backscattering_coefficient_amean_qc_flags: 2, aerosol_light_backscattering_coefficient_perc8413_qc_flags: 2) Coordinates: * time (time) datetime64[ns] ... * metadata_time (metadata_time) datetime64[ns] ... * Wavelength (Wavelength) float64 ... * RH_base (RH_base) float64 ... * RH_humidified (RH_humidified) float64 ... * RH_base_max (RH_base_max) float64 ... * RH (RH) float64 ... * Location (Location) |S64 ... Dimensions without coordinates: tbnds, aerosol_light_scattering_enhancement_factor_qc_flags, aerosol_light_backscattering_coefficient_qc_flags, aerosol_light_backscattering_enhancement_factor_qc_flags, aerosol_light_scattering_coefficient_qc_flags, temperature_qc_flags, ... aerosol_light_scattering_coefficient_prec1587_qc_flags, aerosol_light_scattering_coefficient_perc8413_qc_flags, pressure_qc_flags, aerosol_light_backscattering_coefficient_prec1587_qc_flags, aerosol_light_backscattering_coefficient_amean_qc_flags, aerosol_light_backscattering_coefficient_perc8413_qc_flags Data variables: (12/41) time_bnds (time, tbnds) datetime64[ns] dask.array<chunksize=(35451, 2), meta=np.ndarray> metadata_time_bnds (metadata_time, tbnds) datetime64[ns] dask.array<chunksize=(5, 2), meta=np.ndarray> aerosol_light_scattering_enhancement_factor_qc (Wavelength, RH_base, RH_humidified, aerosol_light_scattering_enhancement_factor_qc_flags, time) float64 dask.array<chunksize=(3, 1, 1, 1, 35451), meta=np.ndarray> aerosol_light_backscattering_enhancement_factor_ebasmetadata (Wavelength, RH_base_max, RH_humidified, metadata_time) object dask.array<chunksize=(3, 1, 1, 5), meta=np.ndarray> aerosol_light_scattering_enhancement_factor_ebasmetadata (Wavelength, RH_base, RH_humidified, metadata_time) object dask.array<chunksize=(3, 1, 1, 5), meta=np.ndarray> aerosol_light_backscattering_coefficient_qc (Wavelength, RH, aerosol_light_backscattering_coefficient_qc_flags, time) float64 dask.array<chunksize=(3, 13, 1, 35451), meta=np.ndarray> ... ... aerosol_light_scattering_coefficient_prec1587 (Wavelength, time) float64 dask.array<chunksize=(3, 35451), meta=np.ndarray> pressure (Location, time) float64 dask.array<chunksize=(1, 35451), meta=np.ndarray> aerosol_light_backscattering_coefficient_amean (Wavelength, time) float64 dask.array<chunksize=(3, 35451), meta=np.ndarray> aerosol_light_scattering_coefficient_perc8413 (Wavelength, time) float64 dask.array<chunksize=(3, 35451), meta=np.ndarray> relative_humidity (Location, time) float64 dask.array<chunksize=(1, 35451), meta=np.ndarray> aerosol_light_backscattering_coefficient_prec1587 (Wavelength, time) float64 dask.array<chunksize=(3, 35451), meta=np.ndarray> Attributes: (12/47) Conventions: CF-1.7, ACDD-1.3 featureType: timeSeries title: Ground based in situ observations of nephe... keywords: NO0042G, Zeppelin mountain (Ny-Ã…lesund), a... id: NO0042G.20080708135939.20181213000000.neph... naming_authority: EBAS ... ... geospatial_lat_units: degrees_north geospatial_lon_units: degrees_east comment: {\n "Data definition": "EBAS_1.1", \n ... standard_name_vocabulary: CF-1.7, ACDD-1.3 history: None creator_url: ebas.nilu.no
xarray.Dataset
- time: 35451
- metadata_time: 5
- Wavelength: 3
- RH_base: 1
- RH_humidified: 1
- RH_base_max: 1
- RH: 13
- tbnds: 2
- aerosol_light_scattering_enhancement_factor_qc_flags: 1
- aerosol_light_backscattering_coefficient_qc_flags: 1
- aerosol_light_backscattering_enhancement_factor_qc_flags: 1
- aerosol_light_scattering_coefficient_qc_flags: 1
- Location: 1
- temperature_qc_flags: 2
- relative_humidity_qc_flags: 2
- aerosol_light_scattering_coefficient_amean_qc_flags: 2
- aerosol_light_scattering_coefficient_prec1587_qc_flags: 2
- aerosol_light_scattering_coefficient_perc8413_qc_flags: 2
- pressure_qc_flags: 2
- aerosol_light_backscattering_coefficient_prec1587_qc_flags: 2
- aerosol_light_backscattering_coefficient_amean_qc_flags: 2
- aerosol_light_backscattering_coefficient_perc8413_qc_flags: 2
- time(time)datetime64[ns]2008-07-08T16:59:38.999999488 .....
- standard_name :
- time
- long_name :
- time of measurement
- axis :
- T
- bounds :
- time_bnds
- cell_methods :
- mean
array(['2008-07-08T16:59:38.999999488', '2008-07-08T22:59:38.999999488', '2008-07-09T04:59:38.999999488', ..., '2013-12-31T21:30:00.000000000', '2013-12-31T22:29:59.000000000', '2013-12-31T23:29:59.000000000'], dtype='datetime64[ns]')
- metadata_time(metadata_time)datetime64[ns]2008-08-25T22:59:38.999999488 .....
- standard_name :
- time
- long_name :
- time of ebas metadata intervals
- axis :
- T
- bounds :
- metadata_time_bnds
- cell_methods :
- mean
array(['2008-08-25T22:59:38.999999488', '2010-07-02T12:00:00.000000000', '2011-07-02T12:00:00.000000000', '2012-07-02T00:00:00.000000000', '2013-07-02T12:00:00.000000000'], dtype='datetime64[ns]')
- Wavelength(Wavelength)float64450.0 550.0 700.0
array([450., 550., 700.])
- RH_base(RH_base)float6440.0
array([40.])
- RH_humidified(RH_humidified)float6485.0
array([85.])
- RH_base_max(RH_base_max)float6440.0
array([40.])
- RH(RH)float6430.0 35.0 40.0 ... 80.0 85.0 90.0
array([30., 35., 40., 45., 50., 55., 60., 65., 70., 75., 80., 85., 90.])
- Location(Location)|S64b'instrument internal'
array([b'instrument internal'], dtype='|S64')
- time_bnds(time, tbnds)datetime64[ns]dask.array<chunksize=(35451, 2), meta=np.ndarray>
- standard_name :
- time
- long_name :
- time bounds for measurement
Array Chunk Bytes 553.92 kiB 553.92 kiB Shape (35451, 2) (35451, 2) Count 13 Graph Layers 1 Chunks Type datetime64[ns] numpy.ndarray - metadata_time_bnds(metadata_time, tbnds)datetime64[ns]dask.array<chunksize=(5, 2), meta=np.ndarray>
- standard_name :
- time
- long_name :
- time bounds for ebas metadata intervals
Array Chunk Bytes 80 B 80 B Shape (5, 2) (5, 2) Count 13 Graph Layers 1 Chunks Type datetime64[ns] numpy.ndarray - aerosol_light_scattering_enhancement_factor_qc(Wavelength, RH_base, RH_humidified, aerosol_light_scattering_enhancement_factor_qc_flags, time)float64dask.array<chunksize=(3, 1, 1, 1, 35451), meta=np.ndarray>
- units :
- 1
Array Chunk Bytes 830.88 kiB 830.88 kiB Shape (3, 1, 1, 1, 35451) (3, 1, 1, 1, 35451) Count 15 Graph Layers 1 Chunks Type float64 numpy.ndarray - aerosol_light_backscattering_enhancement_factor_ebasmetadata(Wavelength, RH_base_max, RH_humidified, metadata_time)objectdask.array<chunksize=(3, 1, 1, 5), meta=np.ndarray>
- long_name :
- ebas metadata for different time intervals; json encoded
Array Chunk Bytes 120 B 120 B Shape (3, 1, 1, 5) (3, 1, 1, 5) Count 15 Graph Layers 1 Chunks Type object numpy.ndarray - aerosol_light_scattering_enhancement_factor_ebasmetadata(Wavelength, RH_base, RH_humidified, metadata_time)objectdask.array<chunksize=(3, 1, 1, 5), meta=np.ndarray>
- long_name :
- ebas metadata for different time intervals; json encoded
Array Chunk Bytes 120 B 120 B Shape (3, 1, 1, 5) (3, 1, 1, 5) Count 15 Graph Layers 1 Chunks Type object numpy.ndarray - aerosol_light_backscattering_coefficient_qc(Wavelength, RH, aerosol_light_backscattering_coefficient_qc_flags, time)float64dask.array<chunksize=(3, 13, 1, 35451), meta=np.ndarray>
- units :
- 1
Array Chunk Bytes 10.55 MiB 10.55 MiB Shape (3, 13, 1, 35451) (3, 13, 1, 35451) Count 16 Graph Layers 1 Chunks Type float64 numpy.ndarray - aerosol_light_backscattering_enhancement_factor_qc(Wavelength, RH_base_max, RH_humidified, aerosol_light_backscattering_enhancement_factor_qc_flags, time)float64dask.array<chunksize=(3, 1, 1, 1, 35451), meta=np.ndarray>
- units :
- 1
Array Chunk Bytes 830.88 kiB 830.88 kiB Shape (3, 1, 1, 1, 35451) (3, 1, 1, 1, 35451) Count 15 Graph Layers 1 Chunks Type float64 numpy.ndarray - aerosol_light_scattering_coefficient_qc(Wavelength, RH, aerosol_light_scattering_coefficient_qc_flags, time)float64dask.array<chunksize=(3, 13, 1, 35451), meta=np.ndarray>
- units :
- 1
Array Chunk Bytes 10.55 MiB 10.55 MiB Shape (3, 13, 1, 35451) (3, 13, 1, 35451) Count 16 Graph Layers 1 Chunks Type float64 numpy.ndarray - aerosol_light_scattering_coefficient_ebasmetadata(Wavelength, RH, metadata_time)objectdask.array<chunksize=(3, 13, 5), meta=np.ndarray>
- long_name :
- ebas metadata for different time intervals; json encoded
Array Chunk Bytes 1.52 kiB 1.52 kiB Shape (3, 13, 5) (3, 13, 5) Count 14 Graph Layers 1 Chunks Type object numpy.ndarray - aerosol_light_backscattering_coefficient_ebasmetadata(Wavelength, RH, metadata_time)objectdask.array<chunksize=(3, 13, 5), meta=np.ndarray>
- long_name :
- ebas metadata for different time intervals; json encoded
Array Chunk Bytes 1.52 kiB 1.52 kiB Shape (3, 13, 5) (3, 13, 5) Count 14 Graph Layers 1 Chunks Type object numpy.ndarray - aerosol_light_scattering_enhancement_factor(Wavelength, RH_base, RH_humidified, time)float64dask.array<chunksize=(3, 1, 1, 35451), meta=np.ndarray>
- units :
- no unit
- ancillary_variables :
- aerosol_light_scattering_enhancement_factor_qc aerosol_light_scattering_enhancement_factor_ebasmetadata
- cell_methods :
- time: mean
Array Chunk Bytes 830.88 kiB 830.88 kiB Shape (3, 1, 1, 35451) (3, 1, 1, 35451) Count 14 Graph Layers 1 Chunks Type float64 numpy.ndarray - aerosol_light_backscattering_enhancement_factor(Wavelength, RH_base_max, RH_humidified, time)float64dask.array<chunksize=(3, 1, 1, 35451), meta=np.ndarray>
- units :
- no unit
- ancillary_variables :
- aerosol_light_backscattering_enhancement_factor_qc aerosol_light_backscattering_enhancement_factor_ebasmetadata
- cell_methods :
- time: mean
Array Chunk Bytes 830.88 kiB 830.88 kiB Shape (3, 1, 1, 35451) (3, 1, 1, 35451) Count 14 Graph Layers 1 Chunks Type float64 numpy.ndarray - aerosol_light_backscattering_coefficient(Wavelength, RH, time)float64dask.array<chunksize=(3, 13, 35451), meta=np.ndarray>
- units :
- 1/Mm
- ancillary_variables :
- aerosol_light_backscattering_coefficient_qc aerosol_light_backscattering_coefficient_ebasmetadata
- cell_methods :
- time: mean
Array Chunk Bytes 10.55 MiB 10.55 MiB Shape (3, 13, 35451) (3, 13, 35451) Count 13 Graph Layers 1 Chunks Type float64 numpy.ndarray - aerosol_light_scattering_coefficient(Wavelength, RH, time)float64dask.array<chunksize=(3, 13, 35451), meta=np.ndarray>
- units :
- 1/Mm
- ancillary_variables :
- aerosol_light_scattering_coefficient_qc aerosol_light_scattering_coefficient_ebasmetadata
- cell_methods :
- time: mean
Array Chunk Bytes 10.55 MiB 10.55 MiB Shape (3, 13, 35451) (3, 13, 35451) Count 13 Graph Layers 1 Chunks Type float64 numpy.ndarray - aerosol_light_scattering_coefficient_amean_ebasmetadata(Wavelength, metadata_time)objectdask.array<chunksize=(3, 5), meta=np.ndarray>
- long_name :
- ebas metadata for different time intervals; json encoded
Array Chunk Bytes 120 B 120 B Shape (3, 5) (3, 5) Count 11 Graph Layers 1 Chunks Type object numpy.ndarray - temperature_qc(Location, temperature_qc_flags, time)float64dask.array<chunksize=(1, 2, 35451), meta=np.ndarray>
- units :
- 1
Array Chunk Bytes 553.92 kiB 553.92 kiB Shape (1, 2, 35451) (1, 2, 35451) Count 13 Graph Layers 1 Chunks Type float64 numpy.ndarray - relative_humidity_qc(Location, relative_humidity_qc_flags, time)float64dask.array<chunksize=(1, 2, 35451), meta=np.ndarray>
- standard_name :
- status_flag
- units :
- 1
Array Chunk Bytes 553.92 kiB 553.92 kiB Shape (1, 2, 35451) (1, 2, 35451) Count 13 Graph Layers 1 Chunks Type float64 numpy.ndarray - aerosol_light_scattering_coefficient_prec1587_ebasmetadata(Wavelength, metadata_time)objectdask.array<chunksize=(3, 5), meta=np.ndarray>
- long_name :
- ebas metadata for different time intervals; json encoded
Array Chunk Bytes 120 B 120 B Shape (3, 5) (3, 5) Count 11 Graph Layers 1 Chunks Type object numpy.ndarray - aerosol_light_scattering_coefficient_amean_qc(Wavelength, aerosol_light_scattering_coefficient_amean_qc_flags, time)float64dask.array<chunksize=(3, 2, 35451), meta=np.ndarray>
- units :
- 1
Array Chunk Bytes 1.62 MiB 1.62 MiB Shape (3, 2, 35451) (3, 2, 35451) Count 13 Graph Layers 1 Chunks Type float64 numpy.ndarray - aerosol_light_backscattering_coefficient_prec1587_ebasmetadata(Wavelength, metadata_time)objectdask.array<chunksize=(3, 5), meta=np.ndarray>
- long_name :
- ebas metadata for different time intervals; json encoded
Array Chunk Bytes 120 B 120 B Shape (3, 5) (3, 5) Count 11 Graph Layers 1 Chunks Type object numpy.ndarray - aerosol_light_scattering_coefficient_perc8413_ebasmetadata(Wavelength, metadata_time)objectdask.array<chunksize=(3, 5), meta=np.ndarray>
- long_name :
- ebas metadata for different time intervals; json encoded
Array Chunk Bytes 120 B 120 B Shape (3, 5) (3, 5) Count 11 Graph Layers 1 Chunks Type object numpy.ndarray - temperature_ebasmetadata(Location, metadata_time)objectdask.array<chunksize=(1, 5), meta=np.ndarray>
- long_name :
- ebas metadata for different time intervals; json encoded
Array Chunk Bytes 40 B 40 B Shape (1, 5) (1, 5) Count 11 Graph Layers 1 Chunks Type object numpy.ndarray - pressure_ebasmetadata(Location, metadata_time)objectdask.array<chunksize=(1, 5), meta=np.ndarray>
- long_name :
- ebas metadata for different time intervals; json encoded
Array Chunk Bytes 40 B 40 B Shape (1, 5) (1, 5) Count 11 Graph Layers 1 Chunks Type object numpy.ndarray - aerosol_light_scattering_coefficient_prec1587_qc(Wavelength, aerosol_light_scattering_coefficient_prec1587_qc_flags, time)float64dask.array<chunksize=(3, 2, 35451), meta=np.ndarray>
- units :
- 1
Array Chunk Bytes 1.62 MiB 1.62 MiB Shape (3, 2, 35451) (3, 2, 35451) Count 13 Graph Layers 1 Chunks Type float64 numpy.ndarray - aerosol_light_scattering_coefficient_perc8413_qc(Wavelength, aerosol_light_scattering_coefficient_perc8413_qc_flags, time)float64dask.array<chunksize=(3, 2, 35451), meta=np.ndarray>
- units :
- 1
Array Chunk Bytes 1.62 MiB 1.62 MiB Shape (3, 2, 35451) (3, 2, 35451) Count 13 Graph Layers 1 Chunks Type float64 numpy.ndarray - pressure_qc(Location, pressure_qc_flags, time)float64dask.array<chunksize=(1, 2, 35451), meta=np.ndarray>
- units :
- 1
Array Chunk Bytes 553.92 kiB 553.92 kiB Shape (1, 2, 35451) (1, 2, 35451) Count 13 Graph Layers 1 Chunks Type float64 numpy.ndarray - aerosol_light_backscattering_coefficient_perc8413_ebasmetadata(Wavelength, metadata_time)objectdask.array<chunksize=(3, 5), meta=np.ndarray>
- long_name :
- ebas metadata for different time intervals; json encoded
Array Chunk Bytes 120 B 120 B Shape (3, 5) (3, 5) Count 11 Graph Layers 1 Chunks Type object numpy.ndarray - aerosol_light_backscattering_coefficient_prec1587_qc(Wavelength, aerosol_light_backscattering_coefficient_prec1587_qc_flags, time)float64dask.array<chunksize=(3, 2, 35451), meta=np.ndarray>
- units :
- 1
Array Chunk Bytes 1.62 MiB 1.62 MiB Shape (3, 2, 35451) (3, 2, 35451) Count 13 Graph Layers 1 Chunks Type float64 numpy.ndarray - aerosol_light_backscattering_coefficient_amean_qc(Wavelength, aerosol_light_backscattering_coefficient_amean_qc_flags, time)float64dask.array<chunksize=(3, 2, 35451), meta=np.ndarray>
- units :
- 1
Array Chunk Bytes 1.62 MiB 1.62 MiB Shape (3, 2, 35451) (3, 2, 35451) Count 13 Graph Layers 1 Chunks Type float64 numpy.ndarray - aerosol_light_backscattering_coefficient_amean_ebasmetadata(Wavelength, metadata_time)objectdask.array<chunksize=(3, 5), meta=np.ndarray>
- long_name :
- ebas metadata for different time intervals; json encoded
Array Chunk Bytes 120 B 120 B Shape (3, 5) (3, 5) Count 11 Graph Layers 1 Chunks Type object numpy.ndarray - aerosol_light_backscattering_coefficient_perc8413_qc(Wavelength, aerosol_light_backscattering_coefficient_perc8413_qc_flags, time)float64dask.array<chunksize=(3, 2, 35451), meta=np.ndarray>
- units :
- 1
Array Chunk Bytes 1.62 MiB 1.62 MiB Shape (3, 2, 35451) (3, 2, 35451) Count 13 Graph Layers 1 Chunks Type float64 numpy.ndarray - relative_humidity_ebasmetadata(Location, metadata_time)objectdask.array<chunksize=(1, 5), meta=np.ndarray>
- long_name :
- ebas metadata for different time intervals; json encoded
Array Chunk Bytes 40 B 40 B Shape (1, 5) (1, 5) Count 11 Graph Layers 1 Chunks Type object numpy.ndarray - aerosol_light_backscattering_coefficient_perc8413(Wavelength, time)float64dask.array<chunksize=(3, 35451), meta=np.ndarray>
- units :
- 1/Mm
- ancillary_variables :
- aerosol_light_backscattering_coefficient_perc8413_qc aerosol_light_backscattering_coefficient_perc8413_ebasmetadata
- cell_methods :
- time: percentile:84.13
Array Chunk Bytes 830.88 kiB 830.88 kiB Shape (3, 35451) (3, 35451) Count 10 Graph Layers 1 Chunks Type float64 numpy.ndarray - aerosol_light_scattering_coefficient_amean(Wavelength, time)float64dask.array<chunksize=(3, 35451), meta=np.ndarray>
- units :
- 1/Mm
- ancillary_variables :
- aerosol_light_scattering_coefficient_amean_qc aerosol_light_scattering_coefficient_amean_ebasmetadata
- cell_methods :
- time: mean
Array Chunk Bytes 830.88 kiB 830.88 kiB Shape (3, 35451) (3, 35451) Count 10 Graph Layers 1 Chunks Type float64 numpy.ndarray - temperature(Location, time)float64dask.array<chunksize=(1, 35451), meta=np.ndarray>
- units :
- K
- ancillary_variables :
- temperature_qc temperature_ebasmetadata
- cell_methods :
- time: mean
Array Chunk Bytes 276.96 kiB 276.96 kiB Shape (1, 35451) (1, 35451) Count 10 Graph Layers 1 Chunks Type float64 numpy.ndarray - aerosol_light_scattering_coefficient_prec1587(Wavelength, time)float64dask.array<chunksize=(3, 35451), meta=np.ndarray>
- units :
- 1/Mm
- ancillary_variables :
- aerosol_light_scattering_coefficient_prec1587_qc aerosol_light_scattering_coefficient_prec1587_ebasmetadata
- cell_methods :
- time: percentile:15.87
Array Chunk Bytes 830.88 kiB 830.88 kiB Shape (3, 35451) (3, 35451) Count 10 Graph Layers 1 Chunks Type float64 numpy.ndarray - pressure(Location, time)float64dask.array<chunksize=(1, 35451), meta=np.ndarray>
- units :
- hPa
- ancillary_variables :
- pressure_qc pressure_ebasmetadata
- cell_methods :
- time: mean
Array Chunk Bytes 276.96 kiB 276.96 kiB Shape (1, 35451) (1, 35451) Count 10 Graph Layers 1 Chunks Type float64 numpy.ndarray - aerosol_light_backscattering_coefficient_amean(Wavelength, time)float64dask.array<chunksize=(3, 35451), meta=np.ndarray>
- units :
- 1/Mm
- ancillary_variables :
- aerosol_light_backscattering_coefficient_amean_qc aerosol_light_backscattering_coefficient_amean_ebasmetadata
- cell_methods :
- time: mean
Array Chunk Bytes 830.88 kiB 830.88 kiB Shape (3, 35451) (3, 35451) Count 10 Graph Layers 1 Chunks Type float64 numpy.ndarray - aerosol_light_scattering_coefficient_perc8413(Wavelength, time)float64dask.array<chunksize=(3, 35451), meta=np.ndarray>
- units :
- 1/Mm
- ancillary_variables :
- aerosol_light_scattering_coefficient_perc8413_qc aerosol_light_scattering_coefficient_perc8413_ebasmetadata
- cell_methods :
- time: percentile:84.13
Array Chunk Bytes 830.88 kiB 830.88 kiB Shape (3, 35451) (3, 35451) Count 10 Graph Layers 1 Chunks Type float64 numpy.ndarray - relative_humidity(Location, time)float64dask.array<chunksize=(1, 35451), meta=np.ndarray>
- units :
- %
- ancillary_variables :
- relative_humidity_qc relative_humidity_ebasmetadata
- cell_methods :
- time: mean
- standard_name :
- relative_humidity
Array Chunk Bytes 276.96 kiB 276.96 kiB Shape (1, 35451) (1, 35451) Count 10 Graph Layers 1 Chunks Type float64 numpy.ndarray - aerosol_light_backscattering_coefficient_prec1587(Wavelength, time)float64dask.array<chunksize=(3, 35451), meta=np.ndarray>
- units :
- 1/Mm
- ancillary_variables :
- aerosol_light_backscattering_coefficient_prec1587_qc aerosol_light_backscattering_coefficient_prec1587_ebasmetadata
- cell_methods :
- time: percentile:15.87
Array Chunk Bytes 830.88 kiB 830.88 kiB Shape (3, 35451) (3, 35451) Count 10 Graph Layers 1 Chunks Type float64 numpy.ndarray
- Conventions :
- CF-1.7, ACDD-1.3
- featureType :
- timeSeries
- title :
- Ground based in situ observations of nephelometer at Zeppelin mountain (Ny-Ã…lesund) (NO0042G)
- keywords :
- NO0042G, Zeppelin mountain (Ny-Ã…lesund), aerosol_light_scattering_enhancement_factor, aerosol_light_backscattering_enhancement_factor, aerosol_light_backscattering_coefficient, EMEP, aerosol_light_scattering_coefficient, GAW-WDCA, aerosol_humidified, ACTRIS, CREATE
- id :
- NO0042G.20080708135939.20181213000000.nephelometer..aerosol_humidified.3mo.6h.CH02L_TSI_3563_ZEP_ref+TSI_3563_ZEP_wet.CH02L_hygro_tandem_neph_CorrData.lev2.nc
- naming_authority :
- EBAS
- project :
- CREATE, ACTRIS, EMEP, GAW-WDCA
- acknowledgement :
- Request acknowledgement details from data originator
- license :
- CREATE: Fair use data policy (see also EMEP and WMO-GAW), ACTRIS: http://actris.nilu.no/Content/Documents/DataPolicy.pdf, EMEP: Public open access. We encourage contacting data originators if substatial use of individual time series is planned (fair use data policy)., GAW-WDCA:
- summary :
- Ground based in situ observations of nephelometer at Zeppelin mountain (Ny-Ã…lesund) (NO0042G). These measurements are gathered as a part of the following projects CREATE, ACTRIS, EMEP, GAW-WDCA and they are stored in the EBAS database (http://ebas.nilu.no/). Parameters measured are: aerosol_light_backscattering_coefficient in aerosol_humidified, aerosol_light_backscattering_enhancement_factor in aerosol_humidified, aerosol_light_scattering_coefficient in aerosol_humidified, aerosol_light_scattering_enhancement_factor in aerosol_humidified
- source :
- surface observation
- institution :
- CH02L, Paul Scherrer Institut, PSI, Laboratory of Atmospheric Chemistry (LAC), OFLB, 5232, Villigen PSI, Switzerland
- processing_level :
- processing_level_test
- date_created :
- 2018-12-13T00:00:00 UTC
- date_metadata_modified :
- 2018-12-13T00:00:00 UTC
- creator_name :
- Paul Zieger, Maria A. Burgos
- creator_type :
- person
- creator_email :
- paul.zieger@aces.su.se, paul.zieger@aces.su.se
- creator_institution :
- "Department of Environmental Science and Analytical Chemistry, ACES", "Department of Environmental Science and Analytical Chemistry, ACES"
- contributor_name :
- Maria A. Burgos
- contributor_role :
- data submitter
- publisher_type :
- institution
- publisher_name :
- NILU - Norwegian Institute for Air Research, ATMOS, EBAS
- publisher_institution :
- NILU - Norwegian Institute for Air Research, ATMOS, EBAS
- publisher_email :
- ebas@nilu.no
- publisher_url :
- https://www.nilu.no/
- geospatial_bounds :
- POINT Z (78.91 11.88 477.0)
- geospatial_bounds_crs :
- EPSG:4979
- geospatial_lat_min :
- 78.91
- geospatial_lat_max :
- 78.91
- geospatial_lon_min :
- 11.88
- geospatial_lon_max :
- 11.88
- geospatial_vertical_min :
- 477.0
- geospatial_vertical_max :
- 477.0
- geospatial_vertical_positive :
- up
- time_coverage_start :
- 2008-07-08T13:59:39 UTC
- time_coverage_end :
- 2008-10-13T07:59:39 UTC
- time_coverage_duration :
- P0000-03-04T18:00:00
- time_coverage_resolution :
- P0000-00-00T06:00:00
- timezone :
- UTC
- Metadata_Conventions :
- Unidata Dataset Discovery v1.0
- geospatial_lat_units :
- degrees_north
- geospatial_lon_units :
- degrees_east
- comment :
- { "Data definition": "EBAS_1.1", "Set type code": "TU", "Timezone": "UTC", "File name": "NO0042G.20080708135939.20181213000000.nephelometer..aerosol_humidified.3mo.6h.CH02L_TSI_3563_ZEP_ref+TSI_3563_ZEP_wet.CH02L_hygro_tandem_neph_CorrData.lev2.nc", "File creation": "20190627182802", "Startdate": "20080708135939", "Revision date": "20181213000000", "Version": "1", "Version description": "interpolated scattering coefficients, calculated scattering enhancement factors as described in Burgos et al., 2018", "Statistics": "arithmetic mean", "Data level": "2", "Period code": "3mo", "Resolution code": "6h", "Sample duration": "6h", "Orig. time res.": "6h", "Station code": "NO0042G", "Platform code": "NO0042S", "Station name": "Zeppelin mountain (Ny-Ålesund)", "Station WDCA-ID": "GAWANO__ZEP", "Station GAW-ID": "ZEP", "Station GAW-Name": "Zeppelin Mountain (Ny Ålesund)", "Station land use": "Gravel and stone", "Station setting": "Polar", "Station GAW type": "G", "Station WMO region": "6", "Station latitude": "78.90715", "Station longitude": "11.88668", "Station altitude": "474.0 m", "Measurement latitude": "78.91", "Measurement longitude": "11.88", "Measurement altitude": "477.0 m", "Measurement height": "2.0 m", "Regime": "IMG", "Unit": "1/Mm", "Matrix": "aerosol_humidified", "Laboratory code": "CH02L", "Instrument type": "nephelometer", "Instrument name": "TSI_3563_ZEP_ref+TSI_3563_ZEP_wet", "Instrument manufacturer": "TSI", "Instrument model": "3563", "Instrument serial number": "1043", "Method ref": "CH02L_hygro_tandem_neph_CorrData", "Standard method": "cal-gas=CO2+AIR_truncation-correction=Anderson1998", "Inlet type": "Stainless steel", "Inlet description": "no heater, no cut size", "Humidity/temperature control": "Humidification", "Humidity/temperature control description": "humidogram", "Volume std. temperature": "273.15 K", "Volume std. pressure": "1013.25 hPa", "Detection limit": "0.5 1/Mm", "Detection limit expl.": "Determined by instrument counting statistics, no detection limit flag used", "Measurement uncertainty expl.": "Uncertainty analysis described in Burgos et al., 2019", "Zero/negative values code": "Zero/negative possible", "Zero/negative values": "zero and neg. values may appear due to statistical variations at very low concentrations", "Organization": "CH02L, Paul Scherrer Institut, PSI, Laboratory of Atmospheric Chemistry (LAC), OFLB, , 5232, Villigen PSI, Switzerland", "Frameworks": "ACTRIS CREATE EMEP GAW-WDCA", "Originator": "Burgos, Maria A., paul.zieger@aces.su.se, Department of Environmental Science and Analytical Chemistry, ACES, , Frescativägen 54, , SE10691, Stockholm, Sweden", "Submitter": "Burgos, Maria A., paul.zieger@aces.su.se, Department of Environmental Science and Analytical Chemistry, ACES, , Frescativägen 54, , SE10691, Stockholm, Sweden", "Acknowledgement": "Request acknowledgement details from data originator" }
- standard_name_vocabulary :
- CF-1.7, ACDD-1.3
- history :
- None
- creator_url :
- ebas.nilu.no
# Example 2 aerosol sulphate data
# also here -
# the files are differently shaped for different periods
# best to read single files, analyse, and then concatenate for longer time series
# note that catalogue file names give no full description of what is in a file
# get all data urls for one station, e.g., Zeppelin NO0042G
opendap_urls = [x for x in all_opendap_urls if 'NO0042G' in x]
# get all data urls which could contain sulphate data, exclude some
opendap_urls = [x for x in opendap_urls if 'filter_3pack' in x]
opendap_urls = [x for x in opendap_urls if not 'sum_ammonia' in x]
opendap_urls = [x for x in opendap_urls if not 'sulphur_dioxide' in x]
opendap_urls
['https://thredds.nilu.no/thredds/dodsC/ebas/NO0042G.20180101070000.20220405123416.filter_3pack...4y.1d.NO01L_f3p_d_0042.NO01L_IC.lev2.nc',
'https://thredds.nilu.no/thredds/dodsC/ebas/NO0042G.20120101070000.20210421112338.filter_3pack...6y.1d.NO01L_f3p_d_0042.NO01L_IC.lev2.nc',
'https://thredds.nilu.no/thredds/dodsC/ebas/NO0042G.20110101070000.20210421112338.filter_3pack.sulphate_corrected.aerosol.1y.1d.NO01L_f3p_d_0042.NO01L_IC.lev2.nc',
'https://thredds.nilu.no/thredds/dodsC/ebas/NO0042G.20110101070000.20210420142507.filter_3pack...1y.1d.NO01L_f3p_d_0042.NO01L_IC.lev2.nc',
'https://thredds.nilu.no/thredds/dodsC/ebas/NO0042G.20010101070000.20210420142507.filter_3pack...10y.1d.NO01L_f3p_d_0042.NO01L_IC.lev2.nc',
'https://thredds.nilu.no/thredds/dodsC/ebas/NO0042G.19930101070000.20210421112338.filter_3pack..aerosol.18y.1d.NO01L_f3p_d_0042.NO01L_IC.lev2.nc',
'https://thredds.nilu.no/thredds/dodsC/ebas/NO0042G.19930101070000.20210420142507.filter_3pack...8y.1d.NO01L_f3p_d_0042.NO01L_IC.lev2.nc',
'https://thredds.nilu.no/thredds/dodsC/ebas/NO0042G.19891101070000.20210420142507.filter_3pack.sulphate_total.aerosol.3y.1d.NO01L_f3p_d_0042.NO01L_IC.lev2.nc']
file_to_read = opendap_urls[5]
file_to_read
'https://thredds.nilu.no/thredds/dodsC/ebas/NO0042G.19930101070000.20210421112338.filter_3pack..aerosol.18y.1d.NO01L_f3p_d_0042.NO01L_IC.lev2.nc'
ds_single_file = xr.open_dataset(file_to_read)
ds_single_file
<xarray.Dataset> Dimensions: (time: 6574, tbnds: 2, metadata_time: 18, nitrate_ug_per_m3_qc_flags: 2, chloride_qc_flags: 1, sulphate_corrected_ug_per_m3_qc_flags: 1, sulphate_total_ug_S_per_m3_qc_flags: 1, ... nitrate_ug_N_per_m3_qc_flags: 2, sulphate_corrected_ug_S_per_m3_qc_flags: 1, ammonium_ug_per_m3_qc_flags: 2, potassium_qc_flags: 1, calcium_qc_flags: 1, magnesium_qc_flags: 1) Coordinates: * time (time) datetime64[ns] 1993-0... * metadata_time (metadata_time) datetime64[ns] ... Dimensions without coordinates: tbnds, nitrate_ug_per_m3_qc_flags, chloride_qc_flags, sulphate_corrected_ug_per_m3_qc_flags, sulphate_total_ug_S_per_m3_qc_flags, sodium_qc_flags, ammonium_ug_N_per_m3_qc_flags, sulphate_total_ug_per_m3_qc_flags, nitrate_ug_N_per_m3_qc_flags, sulphate_corrected_ug_S_per_m3_qc_flags, ammonium_ug_per_m3_qc_flags, potassium_qc_flags, calcium_qc_flags, magnesium_qc_flags Data variables: (12/41) time_bnds (time, tbnds) datetime64[ns] ... metadata_time_bnds (metadata_time, tbnds) datetime64[ns] ... nitrate_ug_per_m3_qc (nitrate_ug_per_m3_qc_flags, time) float64 ... chloride_qc (chloride_qc_flags, time) float64 ... ammonium_ug_per_m3 (time) float64 0.0 0.0 ... 0.4 sulphate_corrected_ug_S_per_m3 (time) float64 0.216 ... 0.25 ... ... ammonium_ug_per_m3_qc (ammonium_ug_per_m3_qc_flags, time) float64 ... calcium (time) float64 0.05 ... 0.03 magnesium (time) float64 0.09 ... 0.02 potassium_qc (potassium_qc_flags, time) float64 ... calcium_qc (calcium_qc_flags, time) float64 ... magnesium_qc (magnesium_qc_flags, time) float64 ... Attributes: (12/92) Conventions: CF-1.8, ACDD-1.3 featureType: timeSeries title: Ground based in situ observations of f... keywords: NO0042G, mass_concentration_of_chlorid... id: NO0042G.19930101070000.20210421112338.... naming_authority: EBAS ... ... geospatial_lat_units: degrees_north geospatial_lon_units: degrees_east comment: {\n "Data definition": "EBAS_1.1", ... standard_name_vocabulary: CF-1.7, ACDD-1.3 history: None creator_url: ebas.nilu.no
xarray.Dataset
- time: 6574
- tbnds: 2
- metadata_time: 18
- nitrate_ug_per_m3_qc_flags: 2
- chloride_qc_flags: 1
- sulphate_corrected_ug_per_m3_qc_flags: 1
- sulphate_total_ug_S_per_m3_qc_flags: 1
- sodium_qc_flags: 1
- ammonium_ug_N_per_m3_qc_flags: 2
- sulphate_total_ug_per_m3_qc_flags: 1
- nitrate_ug_N_per_m3_qc_flags: 2
- sulphate_corrected_ug_S_per_m3_qc_flags: 1
- ammonium_ug_per_m3_qc_flags: 2
- potassium_qc_flags: 1
- calcium_qc_flags: 1
- magnesium_qc_flags: 1
- time(time)datetime64[ns]1993-01-01T19:00:00 ... 2010-12-...
- standard_name :
- time
- long_name :
- time of measurement
- axis :
- T
- bounds :
- time_bnds
array(['1993-01-01T19:00:00.000000000', '1993-01-02T19:00:00.000000000', '1993-01-03T19:00:00.000000000', ..., '2010-12-29T19:00:00.000000000', '2010-12-30T19:00:00.000000000', '2010-12-31T19:00:00.000000000'], dtype='datetime64[ns]')
- metadata_time(metadata_time)datetime64[ns]1993-07-02T19:00:00 ... 2010-07-...
- standard_name :
- time
- long_name :
- time of ebas metadata intervals
- axis :
- T
- bounds :
- metadata_time_bnds
array(['1993-07-02T19:00:00.000000000', '1994-07-02T19:00:00.000000000', '1995-07-02T19:00:00.000000000', '1996-07-02T07:00:00.000000000', '1997-07-02T19:00:00.000000000', '1998-07-02T19:00:00.000000000', '1999-07-02T19:00:00.000000000', '2000-07-02T07:00:00.000000000', '2001-07-02T19:00:00.000000000', '2002-07-02T19:00:00.000000000', '2003-07-02T19:00:00.000000000', '2004-07-02T07:00:00.000000000', '2005-07-02T19:00:00.000000000', '2006-07-02T19:00:00.000000000', '2007-07-02T19:00:00.000000000', '2008-07-02T07:00:00.000000000', '2009-07-02T19:00:00.000000000', '2010-07-02T19:00:00.000000000'], dtype='datetime64[ns]')
- time_bnds(time, tbnds)datetime64[ns]...
- long_name :
- time bounds for measurement
array([['1993-01-01T07:00:00.000000000', '1993-01-02T07:00:00.000000000'], ['1993-01-02T07:00:00.000000000', '1993-01-03T07:00:00.000000000'], ['1993-01-03T07:00:00.000000000', '1993-01-04T07:00:00.000000000'], ..., ['2010-12-29T07:00:00.000000000', '2010-12-30T07:00:00.000000000'], ['2010-12-30T07:00:00.000000000', '2010-12-31T07:00:00.000000000'], ['2010-12-31T07:00:00.000000000', '2011-01-01T07:00:00.000000000']], dtype='datetime64[ns]')
- metadata_time_bnds(metadata_time, tbnds)datetime64[ns]...
- long_name :
- time bounds for ebas metadata intervals
array([['1993-01-01T07:00:00.000000000', '1994-01-01T07:00:00.000000000'], ['1994-01-01T07:00:00.000000000', '1995-01-01T07:00:00.000000000'], ['1995-01-01T07:00:00.000000000', '1996-01-01T07:00:00.000000000'], ['1996-01-01T07:00:00.000000000', '1997-01-01T07:00:00.000000000'], ['1997-01-01T07:00:00.000000000', '1998-01-01T07:00:00.000000000'], ['1998-01-01T07:00:00.000000000', '1999-01-01T07:00:00.000000000'], ['1999-01-01T07:00:00.000000000', '2000-01-01T07:00:00.000000000'], ['2000-01-01T07:00:00.000000000', '2001-01-01T07:00:00.000000000'], ['2001-01-01T07:00:00.000000000', '2002-01-01T07:00:00.000000000'], ['2002-01-01T07:00:00.000000000', '2003-01-01T07:00:00.000000000'], ['2003-01-01T07:00:00.000000000', '2004-01-01T07:00:00.000000000'], ['2004-01-01T07:00:00.000000000', '2005-01-01T07:00:00.000000000'], ['2005-01-01T07:00:00.000000000', '2006-01-01T07:00:00.000000000'], ['2006-01-01T07:00:00.000000000', '2007-01-01T07:00:00.000000000'], ['2007-01-01T07:00:00.000000000', '2008-01-01T07:00:00.000000000'], ['2008-01-01T07:00:00.000000000', '2009-01-01T07:00:00.000000000'], ['2009-01-01T07:00:00.000000000', '2010-01-01T07:00:00.000000000'], ['2010-01-01T07:00:00.000000000', '2011-01-01T07:00:00.000000000']], dtype='datetime64[ns]')
- nitrate_ug_per_m3_qc(nitrate_ug_per_m3_qc_flags, time)float64...
- standard_name :
- status_flag
- units :
- 1
array([[ nan, nan, 781., ..., nan, nan, nan], [ nan, nan, nan, ..., nan, nan, nan]])
- chloride_qc(chloride_qc_flags, time)float64...
- units :
- 1
- standard_name :
- status_flag
array([[nan, nan, nan, ..., nan, nan, nan]])
- ammonium_ug_per_m3(time)float64...
- standard_name :
- mass_concentration_of_ammonium_expressed_as_nitrogen_in_dry_aerosol_particles_in _air
- units :
- ug/m3
- ancillary_variables :
- ammonium_ug_per_m3_qc ammonium_ug_per_m3_ebasmetadata
- cell_methods :
- time: mean
- ebas_station_setting :
- Polar
- ebas_unit :
- ug/m3
- ebas_station_longitude :
- 11.88668
- ebas_submitter :
- Hjellbrekke, Anne, agh@nilu.no, Norwegian Institute for Air Research, NILU, Atmosphere and Climate Department, Instituttveien 18, , 2007, Kjeller, Norway
- ebas_station_gaw_type :
- G
- ebas_framework_contact_name :
- Wenche Aas, Wenche Aas, Kjetil Tørseth, Ann Mari Fjaeraa, Markus Fiebig, Kjetil Tørseth
- ebas_framework_name :
- , OSPARCOM - Comprehensive Atmospheric Monitoring Programme, European Monitoring and Evaluation Programme, European Supersites for Atmospheric Aerosol Research, World Data Centre for Aerosols, Norwegian Institute for Air Research
- ebas_comment :
- Data converted on export from EBAS from 'ug N/m3' to 'ug/m3', conversion factor 1.288.
- ebas_component :
- ammonium
- ebas_organization :
- NO01L, Norwegian Institute for Air Research, NILU, , Instituttveien 18, , 2007, Kjeller, Norway
- ebas_standard_method :
- SOP=EMEP_manual_v2014
- ebas_station_name :
- Zeppelin mountain (Ny-Ã…lesund)
- ebas_framework_acronym :
- AMAP, CAMP, EMEP, EUSAAR, GAW-WDCA, NILU
- ebas_station_gaw_id :
- ZEP
- ebas_statistics :
- arithmetic mean
- ebas_station_gaw_name :
- Zeppelin Mountain (Ny Ã…lesund)
- ebas_laboratory_code :
- NO01L
- ebas_framework_description :
- , The OSPARCOM Comprehensive Atmospheric Monitoring Programme goal is the assessment of the atmospheric input of selected contaminants to the OSPAR maritime area and regions., The European Monitoring and Evaluation Programme (EMEP) is a scientifically based and policy driven programme under the Convention on Long-range Transboundary Air Pollution (CLRTAP) for int'l co-operation to solve transboundary air pollution problems., Integration of measurements of atmospheric aerosol properties performed in a distributed network of 20 high quality European ground-based stations in support of policy issues on air quality, long-range transport of pollutants and climate change., The World Data Centre for Aerosols is the data repository and archive for microphysical, optical, and chemical properties of atmospheric aerosol of the World Meteorological Organisation's (WMO) Global Atmosphere Watch (GAW) programme., Atmospheric measuremnts produced at NILU.
- ebas_station_wmo_region :
- 6
- ebas_platform_code :
- NO0042S
- ebas_inlet_type :
- Hat or hood
- ebas_station_wdca_id :
- GAWANO__ZEP
- ebas_station_latitude :
- 78.90715
- ebas_station_code :
- NO0042G
- ebas_instrument_name :
- f3p_d_0042
- ebas_medium :
- Teflon
- ebas_matrix :
- aerosol
- ebas_regime :
- IMG
- ebas_instrument_type :
- filter_3pack
- ebas_data_level :
- 2
- ebas_volume_std_temperature :
- ambient
- ebas_volume_std_pressure :
- ambient
- ebas_revision_date :
- 20210420142507
- ebas_station_altitude :
- 474.0 m
- ebas_originator :
- Aas, Wenche, waa@nilu.no, Norwegian Institute for Air Research, NILU, Atmosphere and Climate Department, Instituttveien 18, , 2007, Kjeller, Norway, ORCID=0000-0002-2908-1970
- ebas_station_land_use :
- Gravel and stone
- ebas_method_ref :
- NO01L_IC
- ebas_framework_contact_email :
- waa@nilu.no, waa@nilu.no, kt@nilu.no, amf@nilu.no, Markus.Fiebig@nilu.no, kt@nilu.no
- ebas_humidity_temperaure_control :
- None
array([0. , 0. , 0. , ..., 0.4, 1.2, 0.4])
- sulphate_corrected_ug_S_per_m3(time)float64...
- standard_name :
- mass_concentration_of_sulphate_corrected_for_seaspray_expressed_as_sulphur_in_dry_aerosol_particles_in_air
- units :
- ug/m3
- ancillary_variables :
- sulphate_corrected_ug S_per_m3_qc sulphate_corrected_ug S_per_m3_ebasmetadata
- cell_methods :
- time: mean
- ebas_station_setting :
- Polar
- ebas_volume_std_temperature :
- ambient
- ebas_station_longitude :
- 11.88668
- ebas_submitter :
- Hjellbrekke, Anne, agh@nilu.no, Norwegian Institute for Air Research, NILU, Atmosphere and Climate Department, Instituttveien 18, , 2007, Kjeller, Norway
- ebas_station_gaw_type :
- G
- ebas_component :
- sulphate_corrected
- ebas_framework_contact_name :
- Wenche Aas, Wenche Aas, Kjetil Tørseth, Ann Mari Fjaeraa, Markus Fiebig, Kjetil Tørseth
- ebas_framework_name :
- , OSPARCOM - Comprehensive Atmospheric Monitoring Programme, European Monitoring and Evaluation Programme, European Supersites for Atmospheric Aerosol Research, World Data Centre for Aerosols, Norwegian Institute for Air Research
- ebas_organization :
- NO01L, Norwegian Institute for Air Research, NILU, , Instituttveien 18, , 2007, Kjeller, Norway
- ebas_standard_method :
- SOP=EMEP_manual_v2014
- ebas_station_name :
- Zeppelin mountain (Ny-Ã…lesund)
- ebas_unit :
- ug S/m3
- ebas_framework_acronym :
- AMAP, CAMP, EMEP, EUSAAR, GAW-WDCA, NILU
- ebas_station_gaw_id :
- ZEP
- ebas_statistics :
- arithmetic mean
- ebas_station_gaw_name :
- Zeppelin Mountain (Ny Ã…lesund)
- ebas_laboratory_code :
- NO01L
- ebas_framework_description :
- , The OSPARCOM Comprehensive Atmospheric Monitoring Programme goal is the assessment of the atmospheric input of selected contaminants to the OSPAR maritime area and regions., The European Monitoring and Evaluation Programme (EMEP) is a scientifically based and policy driven programme under the Convention on Long-range Transboundary Air Pollution (CLRTAP) for int'l co-operation to solve transboundary air pollution problems., Integration of measurements of atmospheric aerosol properties performed in a distributed network of 20 high quality European ground-based stations in support of policy issues on air quality, long-range transport of pollutants and climate change., The World Data Centre for Aerosols is the data repository and archive for microphysical, optical, and chemical properties of atmospheric aerosol of the World Meteorological Organisation's (WMO) Global Atmosphere Watch (GAW) programme., Atmospheric measuremnts produced at NILU.
- ebas_station_wmo_region :
- 6
- ebas_platform_code :
- NO0042S
- ebas_inlet_type :
- Hat or hood
- ebas_station_wdca_id :
- GAWANO__ZEP
- ebas_station_latitude :
- 78.90715
- ebas_station_code :
- NO0042G
- ebas_instrument_name :
- f3p_d_0042
- ebas_medium :
- Teflon
- ebas_matrix :
- aerosol
- ebas_regime :
- IMG
- ebas_instrument_type :
- filter_3pack
- ebas_data_level :
- 2
- ebas_volume_std_pressure :
- ambient
- ebas_station_altitude :
- 474.0 m
- ebas_originator :
- Aas, Wenche, waa@nilu.no, Norwegian Institute for Air Research, NILU, Atmosphere and Climate Department, Instituttveien 18, , 2007, Kjeller, Norway, ORCID=0000-0002-2908-1970
- ebas_station_land_use :
- Gravel and stone
- ebas_method_ref :
- NO01L_IC
- ebas_revision_date :
- 20210421112338
- ebas_framework_contact_email :
- waa@nilu.no, waa@nilu.no, kt@nilu.no, amf@nilu.no, Markus.Fiebig@nilu.no, kt@nilu.no
- ebas_humidity_temperaure_control :
- None
array([0.216, 0.173, 0.067, ..., 0.04 , 0.1 , 0.25 ])
- sulphate_corrected_ug_per_m3_qc(sulphate_corrected_ug_per_m3_qc_flags, time)float64...
- standard_name :
- status_flag
- units :
- 1
array([[nan, nan, nan, ..., nan, nan, nan]])
- sulphate_total_ug_S_per_m3_qc(sulphate_total_ug_S_per_m3_qc_flags, time)float64...
- standard_name :
- status_flag
- units :
- 1
array([[nan, nan, nan, ..., nan, nan, nan]])
- sulphate_total_ug_S_per_m3_ebasmetadata(metadata_time)|S64...
- long_name :
- ebas metadata for different time intervals; json encoded
array([b'{\n "ebas_revision_date": "20210420142507", \n "ebas_statist', b'{\n "ebas_revision_date": "20210420142507", \n "ebas_statist', b'{\n "ebas_revision_date": "20210420142507", \n "ebas_statist', b'{\n "ebas_revision_date": "20210420142507", \n "ebas_statist', b'{\n "ebas_revision_date": "20210420142507", \n "ebas_statist', b'{\n "ebas_revision_date": "20210420142507", \n "ebas_statist', b'{\n "ebas_revision_date": "20210420142507", \n "ebas_statist', b'{\n "ebas_revision_date": "20210420142507", \n "ebas_statist', b'{\n "ebas_revision_date": "20210420142507", \n "ebas_statist', b'{\n "ebas_revision_date": "20210420142507", \n "ebas_statist', b'{\n "ebas_revision_date": "20210420142507", \n "ebas_statist', b'{\n "ebas_revision_date": "20210420142507", \n "ebas_statist', b'{\n "ebas_revision_date": "20210420142507", \n "ebas_statist', b'{\n "ebas_revision_date": "20210420142507", \n "ebas_statist', b'{\n "ebas_revision_date": "20210420142507", \n "ebas_statist', b'{\n "ebas_revision_date": "20210420142507", \n "ebas_statist', b'{\n "ebas_revision_date": "20210420142507", \n "ebas_statist', b'{\n "ebas_revision_date": "20210420142507", \n "ebas_statist'], dtype='|S64')
- chloride_ebasmetadata(metadata_time)|S64...
- long_name :
- ebas metadata for different time intervals; json encoded
array([b'{\n "ebas_revision_date": "20210420142507", \n "ebas_statist', b'{\n "ebas_revision_date": "20210420142507", \n "ebas_statist', b'{\n "ebas_revision_date": "20210420142507", \n "ebas_statist', b'{\n "ebas_revision_date": "20210420142507", \n "ebas_statist', b'{\n "ebas_revision_date": "20210420142507", \n "ebas_statist', b'{\n "ebas_revision_date": "20210420142507", \n "ebas_statist', b'{\n "ebas_revision_date": "20210420142507", \n "ebas_statist', b'{\n "ebas_revision_date": "20210420142507", \n "ebas_statist', b'{\n "ebas_revision_date": "20210420142507", \n "ebas_statist', b'{\n "ebas_revision_date": "20210420142507", \n "ebas_statist', b'{\n "ebas_revision_date": "20210420142507", \n "ebas_statist', b'{\n "ebas_revision_date": "20210420142507", \n "ebas_statist', b'{\n "ebas_revision_date": "20210420142507", \n "ebas_statist', b'{\n "ebas_revision_date": "20210420142507", \n "ebas_statist', b'{\n "ebas_revision_date": "20210420142507", \n "ebas_statist', b'{\n "ebas_revision_date": "20210420142507", \n "ebas_statist', b'{\n "ebas_revision_date": "20210420142507", \n "ebas_statist', b'{\n "ebas_revision_date": "20210420142507", \n "ebas_statist'], dtype='|S64')
- ammonium_ug_N_per_m3(time)float64...
- standard_name :
- mass_concentration_of_ammonium_expressed_as_nitrogen_in_dry_aerosol_particles_in _air
- units :
- ug/m3
- ancillary_variables :
- ammonium_ug N_per_m3_qc ammonium_ug N_per_m3_ebasmetadata
- cell_methods :
- time: mean
- ebas_station_setting :
- Polar
- ebas_volume_std_temperature :
- ambient
- ebas_station_longitude :
- 11.88668
- ebas_submitter :
- Hjellbrekke, Anne, agh@nilu.no, Norwegian Institute for Air Research, NILU, Atmosphere and Climate Department, Instituttveien 18, , 2007, Kjeller, Norway
- ebas_station_gaw_type :
- G
- ebas_framework_contact_name :
- Wenche Aas, Wenche Aas, Kjetil Tørseth, Ann Mari Fjaeraa, Markus Fiebig, Kjetil Tørseth
- ebas_framework_name :
- , OSPARCOM - Comprehensive Atmospheric Monitoring Programme, European Monitoring and Evaluation Programme, European Supersites for Atmospheric Aerosol Research, World Data Centre for Aerosols, Norwegian Institute for Air Research
- ebas_component :
- ammonium
- ebas_organization :
- NO01L, Norwegian Institute for Air Research, NILU, , Instituttveien 18, , 2007, Kjeller, Norway
- ebas_standard_method :
- SOP=EMEP_manual_v2014
- ebas_station_name :
- Zeppelin mountain (Ny-Ã…lesund)
- ebas_framework_acronym :
- AMAP, CAMP, EMEP, EUSAAR, GAW-WDCA, NILU
- ebas_station_gaw_id :
- ZEP
- ebas_statistics :
- arithmetic mean
- ebas_station_gaw_name :
- Zeppelin Mountain (Ny Ã…lesund)
- ebas_laboratory_code :
- NO01L
- ebas_framework_description :
- , The OSPARCOM Comprehensive Atmospheric Monitoring Programme goal is the assessment of the atmospheric input of selected contaminants to the OSPAR maritime area and regions., The European Monitoring and Evaluation Programme (EMEP) is a scientifically based and policy driven programme under the Convention on Long-range Transboundary Air Pollution (CLRTAP) for int'l co-operation to solve transboundary air pollution problems., Integration of measurements of atmospheric aerosol properties performed in a distributed network of 20 high quality European ground-based stations in support of policy issues on air quality, long-range transport of pollutants and climate change., The World Data Centre for Aerosols is the data repository and archive for microphysical, optical, and chemical properties of atmospheric aerosol of the World Meteorological Organisation's (WMO) Global Atmosphere Watch (GAW) programme., Atmospheric measuremnts produced at NILU.
- ebas_station_wmo_region :
- 6
- ebas_platform_code :
- NO0042S
- ebas_inlet_type :
- Hat or hood
- ebas_station_wdca_id :
- GAWANO__ZEP
- ebas_station_latitude :
- 78.90715
- ebas_station_code :
- NO0042G
- ebas_instrument_name :
- f3p_d_0042
- ebas_medium :
- Teflon
- ebas_matrix :
- aerosol
- ebas_regime :
- IMG
- ebas_instrument_type :
- filter_3pack
- ebas_data_level :
- 2
- ebas_volume_std_pressure :
- ambient
- ebas_unit :
- ug N/m3
- ebas_revision_date :
- 20210420142507
- ebas_station_altitude :
- 474.0 m
- ebas_originator :
- Aas, Wenche, waa@nilu.no, Norwegian Institute for Air Research, NILU, Atmosphere and Climate Department, Instituttveien 18, , 2007, Kjeller, Norway, ORCID=0000-0002-2908-1970
- ebas_station_land_use :
- Gravel and stone
- ebas_method_ref :
- NO01L_IC
- ebas_framework_contact_email :
- waa@nilu.no, waa@nilu.no, kt@nilu.no, amf@nilu.no, Markus.Fiebig@nilu.no, kt@nilu.no
- ebas_humidity_temperaure_control :
- None
array([0.02, 0.01, 0.01, ..., 0.29, 0.9 , 0.33])
- sodium_qc(sodium_qc_flags, time)float64...
- standard_name :
- status_flag
- units :
- 1
array([[nan, nan, nan, ..., nan, nan, nan]])
- sulphate_total_ug_S_per_m3(time)float64...
- standard_name :
- mass_concentration_of_total_sulphateexpressed_as_sulphur_in_dry_aerosol_particles_in_air
- units :
- ug/m3
- ancillary_variables :
- sulphate_total_ug S_per_m3_qc sulphate_total_ug S_per_m3_ebasmetadata
- cell_methods :
- time: mean
- ebas_station_setting :
- Polar
- ebas_volume_std_temperature :
- ambient
- ebas_station_longitude :
- 11.88668
- ebas_submitter :
- Hjellbrekke, Anne, agh@nilu.no, Norwegian Institute for Air Research, NILU, Atmosphere and Climate Department, Instituttveien 18, , 2007, Kjeller, Norway
- ebas_station_gaw_type :
- G
- ebas_framework_contact_name :
- Wenche Aas, Wenche Aas, Kjetil Tørseth, Ann Mari Fjaeraa, Markus Fiebig, Kjetil Tørseth
- ebas_framework_name :
- , OSPARCOM - Comprehensive Atmospheric Monitoring Programme, European Monitoring and Evaluation Programme, European Supersites for Atmospheric Aerosol Research, World Data Centre for Aerosols, Norwegian Institute for Air Research
- ebas_unit :
- ug S/m3
- ebas_organization :
- NO01L, Norwegian Institute for Air Research, NILU, , Instituttveien 18, , 2007, Kjeller, Norway
- ebas_standard_method :
- SOP=EMEP_manual_v2014
- ebas_station_name :
- Zeppelin mountain (Ny-Ã…lesund)
- ebas_component :
- sulphate_total
- ebas_framework_acronym :
- AMAP, CAMP, EMEP, EUSAAR, GAW-WDCA, NILU
- ebas_station_gaw_id :
- ZEP
- ebas_statistics :
- arithmetic mean
- ebas_station_gaw_name :
- Zeppelin Mountain (Ny Ã…lesund)
- ebas_laboratory_code :
- NO01L
- ebas_framework_description :
- , The OSPARCOM Comprehensive Atmospheric Monitoring Programme goal is the assessment of the atmospheric input of selected contaminants to the OSPAR maritime area and regions., The European Monitoring and Evaluation Programme (EMEP) is a scientifically based and policy driven programme under the Convention on Long-range Transboundary Air Pollution (CLRTAP) for int'l co-operation to solve transboundary air pollution problems., Integration of measurements of atmospheric aerosol properties performed in a distributed network of 20 high quality European ground-based stations in support of policy issues on air quality, long-range transport of pollutants and climate change., The World Data Centre for Aerosols is the data repository and archive for microphysical, optical, and chemical properties of atmospheric aerosol of the World Meteorological Organisation's (WMO) Global Atmosphere Watch (GAW) programme., Atmospheric measuremnts produced at NILU.
- ebas_station_wmo_region :
- 6
- ebas_platform_code :
- NO0042S
- ebas_inlet_type :
- Hat or hood
- ebas_station_wdca_id :
- GAWANO__ZEP
- ebas_station_latitude :
- 78.90715
- ebas_station_code :
- NO0042G
- ebas_instrument_name :
- f3p_d_0042
- ebas_medium :
- Teflon
- ebas_matrix :
- aerosol
- ebas_regime :
- IMG
- ebas_instrument_type :
- filter_3pack
- ebas_data_level :
- 2
- ebas_volume_std_pressure :
- ambient
- ebas_revision_date :
- 20210420142507
- ebas_station_altitude :
- 474.0 m
- ebas_originator :
- Aas, Wenche, waa@nilu.no, Norwegian Institute for Air Research, NILU, Atmosphere and Climate Department, Instituttveien 18, , 2007, Kjeller, Norway, ORCID=0000-0002-2908-1970
- ebas_station_land_use :
- Gravel and stone
- ebas_method_ref :
- NO01L_IC
- ebas_framework_contact_email :
- waa@nilu.no, waa@nilu.no, kt@nilu.no, amf@nilu.no, Markus.Fiebig@nilu.no, kt@nilu.no
- ebas_humidity_temperaure_control :
- None
array([0.26, 0.22, 0.09, ..., 0.12, 0.13, 0.26])
- sodium(time)float64...
- standard_name :
- mass_concentration_of_sodium_in_dry_aerosol_particles_in _air
- units :
- ug/m3
- ancillary_variables :
- sodium_qc sodium_ebasmetadata
- cell_methods :
- time: mean
- ebas_station_setting :
- Polar
- ebas_unit :
- ug/m3
- ebas_station_longitude :
- 11.88668
- ebas_submitter :
- Hjellbrekke, Anne, agh@nilu.no, Norwegian Institute for Air Research, NILU, Atmosphere and Climate Department, Instituttveien 18, , 2007, Kjeller, Norway
- ebas_station_gaw_type :
- G
- ebas_framework_contact_name :
- Wenche Aas, Wenche Aas, Kjetil Tørseth, Ann Mari Fjaeraa, Markus Fiebig, Kjetil Tørseth
- ebas_framework_name :
- , OSPARCOM - Comprehensive Atmospheric Monitoring Programme, European Monitoring and Evaluation Programme, European Supersites for Atmospheric Aerosol Research, World Data Centre for Aerosols, Norwegian Institute for Air Research
- ebas_volume_std_temperature :
- ambient
- ebas_organization :
- NO01L, Norwegian Institute for Air Research, NILU, , Instituttveien 18, , 2007, Kjeller, Norway
- ebas_standard_method :
- SOP=EMEP_manual_v2014
- ebas_station_name :
- Zeppelin mountain (Ny-Ã…lesund)
- ebas_framework_acronym :
- AMAP, CAMP, EMEP, EUSAAR, GAW-WDCA, NILU
- ebas_station_gaw_id :
- ZEP
- ebas_statistics :
- arithmetic mean
- ebas_station_gaw_name :
- Zeppelin Mountain (Ny Ã…lesund)
- ebas_laboratory_code :
- NO01L
- ebas_framework_description :
- , The OSPARCOM Comprehensive Atmospheric Monitoring Programme goal is the assessment of the atmospheric input of selected contaminants to the OSPAR maritime area and regions., The European Monitoring and Evaluation Programme (EMEP) is a scientifically based and policy driven programme under the Convention on Long-range Transboundary Air Pollution (CLRTAP) for int'l co-operation to solve transboundary air pollution problems., Integration of measurements of atmospheric aerosol properties performed in a distributed network of 20 high quality European ground-based stations in support of policy issues on air quality, long-range transport of pollutants and climate change., The World Data Centre for Aerosols is the data repository and archive for microphysical, optical, and chemical properties of atmospheric aerosol of the World Meteorological Organisation's (WMO) Global Atmosphere Watch (GAW) programme., Atmospheric measuremnts produced at NILU.
- ebas_station_wmo_region :
- 6
- ebas_platform_code :
- NO0042S
- ebas_inlet_type :
- Hat or hood
- ebas_station_wdca_id :
- GAWANO__ZEP
- ebas_station_latitude :
- 78.90715
- ebas_station_code :
- NO0042G
- ebas_instrument_name :
- f3p_d_0042
- ebas_component :
- sodium
- ebas_medium :
- Teflon
- ebas_matrix :
- aerosol
- ebas_regime :
- IMG
- ebas_instrument_type :
- filter_3pack
- ebas_data_level :
- 2
- ebas_volume_std_pressure :
- ambient
- ebas_revision_date :
- 20210420142507
- ebas_station_altitude :
- 474.0 m
- ebas_originator :
- Aas, Wenche, waa@nilu.no, Norwegian Institute for Air Research, NILU, Atmosphere and Climate Department, Instituttveien 18, , 2007, Kjeller, Norway, ORCID=0000-0002-2908-1970
- ebas_station_land_use :
- Gravel and stone
- ebas_method_ref :
- NO01L_IC
- ebas_framework_contact_email :
- waa@nilu.no, waa@nilu.no, kt@nilu.no, amf@nilu.no, Markus.Fiebig@nilu.no, kt@nilu.no
- ebas_humidity_temperaure_control :
- None
array([0.53, 0.56, 0.28, ..., 0.94, 0.33, 0.25])
- ammonium_ug_N_per_m3_qc(ammonium_ug_N_per_m3_qc_flags, time)float64...
- standard_name :
- status_flag
- units :
- 1
array([[ nan, 781., 781., ..., nan, nan, nan], [ nan, nan, nan, ..., nan, nan, nan]])
- sulphate_corrected_ug_S_per_m3_ebasmetadata(metadata_time)|S64...
- long_name :
- ebas metadata for different time intervals; json encoded
array([b'{\n "ebas_revision_date": "20210421112338", \n "ebas_statist', b'{\n "ebas_revision_date": "20210421112338", \n "ebas_statist', b'{\n "ebas_revision_date": "20210421112338", \n "ebas_statist', b'{\n "ebas_revision_date": "20210421112338", \n "ebas_statist', b'{\n "ebas_revision_date": "20210421112338", \n "ebas_statist', b'{\n "ebas_revision_date": "20210421112338", \n "ebas_statist', b'{\n "ebas_revision_date": "20210421112338", \n "ebas_statist', b'{\n "ebas_revision_date": "20210421112338", \n "ebas_statist', b'{\n "ebas_revision_date": "20210421112338", \n "ebas_statist', b'{\n "ebas_revision_date": "20210421112338", \n "ebas_statist', b'{\n "ebas_revision_date": "20210421112338", \n "ebas_statist', b'{\n "ebas_revision_date": "20210421112338", \n "ebas_statist', b'{\n "ebas_revision_date": "20210421112338", \n "ebas_statist', b'{\n "ebas_revision_date": "20210421112338", \n "ebas_statist', b'{\n "ebas_revision_date": "20210421112338", \n "ebas_statist', b'{\n "ebas_revision_date": "20210421112338", \n "ebas_statist', b'{\n "ebas_revision_date": "20210421112338", \n "ebas_statist', b'{\n "ebas_revision_date": "20210421112338", \n "ebas_statist'], dtype='|S64')
- potassium_ebasmetadata(metadata_time)|S64...
- long_name :
- ebas metadata for different time intervals; json encoded
array([b'{\n "ebas_revision_date": "20210420142507", \n "ebas_statist', b'{\n "ebas_revision_date": "20210420142507", \n "ebas_statist', b'{\n "ebas_revision_date": "20210420142507", \n "ebas_statist', b'{\n "ebas_revision_date": "20210420142507", \n "ebas_statist', b'{\n "ebas_revision_date": "20210420142507", \n "ebas_statist', b'{\n "ebas_revision_date": "20210420142507", \n "ebas_statist', b'{\n "ebas_revision_date": "20210420142507", \n "ebas_statist', b'{\n "ebas_revision_date": "20210420142507", \n "ebas_statist', b'{\n "ebas_revision_date": "20210420142507", \n "ebas_statist', b'{\n "ebas_revision_date": "20210420142507", \n "ebas_statist', b'{\n "ebas_revision_date": "20210420142507", \n "ebas_statist', b'{\n "ebas_revision_date": "20210420142507", \n "ebas_statist', b'{\n "ebas_revision_date": "20210420142507", \n "ebas_statist', b'{\n "ebas_revision_date": "20210420142507", \n "ebas_statist', b'{\n "ebas_revision_date": "20210420142507", \n "ebas_statist', b'{\n "ebas_revision_date": "20210420142507", \n "ebas_statist', b'{\n "ebas_revision_date": "20210420142507", \n "ebas_statist', b'{\n "ebas_revision_date": "20210420142507", \n "ebas_statist'], dtype='|S64')
- sulphate_corrected_ug_per_m3(time)float64...
- standard_name :
- mass_concentration_of_sulphate_corrected_for_seaspray_expressed_as_sulphur_in_dry_aerosol_particles_in_air
- units :
- ug/m3
- ancillary_variables :
- sulphate_corrected_ug_per_m3_qc sulphate_corrected_ug_per_m3_ebasmetadata
- cell_methods :
- time: mean
- ebas_station_setting :
- Polar
- ebas_unit :
- ug/m3
- ebas_station_longitude :
- 11.88668
- ebas_submitter :
- Hjellbrekke, Anne, agh@nilu.no, Norwegian Institute for Air Research, NILU, Atmosphere and Climate Department, Instituttveien 18, , 2007, Kjeller, Norway
- ebas_station_gaw_type :
- G
- ebas_component :
- sulphate_corrected
- ebas_framework_contact_name :
- Wenche Aas, Wenche Aas, Kjetil Tørseth, Ann Mari Fjaeraa, Markus Fiebig, Kjetil Tørseth
- ebas_framework_name :
- , OSPARCOM - Comprehensive Atmospheric Monitoring Programme, European Monitoring and Evaluation Programme, European Supersites for Atmospheric Aerosol Research, World Data Centre for Aerosols, Norwegian Institute for Air Research
- ebas_volume_std_temperature :
- ambient
- ebas_organization :
- NO01L, Norwegian Institute for Air Research, NILU, , Instituttveien 18, , 2007, Kjeller, Norway
- ebas_standard_method :
- SOP=EMEP_manual_v2014
- ebas_station_name :
- Zeppelin mountain (Ny-Ã…lesund)
- ebas_framework_acronym :
- AMAP, CAMP, EMEP, EUSAAR, GAW-WDCA, NILU
- ebas_station_gaw_id :
- ZEP
- ebas_statistics :
- arithmetic mean
- ebas_station_gaw_name :
- Zeppelin Mountain (Ny Ã…lesund)
- ebas_laboratory_code :
- NO01L
- ebas_framework_description :
- , The OSPARCOM Comprehensive Atmospheric Monitoring Programme goal is the assessment of the atmospheric input of selected contaminants to the OSPAR maritime area and regions., The European Monitoring and Evaluation Programme (EMEP) is a scientifically based and policy driven programme under the Convention on Long-range Transboundary Air Pollution (CLRTAP) for int'l co-operation to solve transboundary air pollution problems., Integration of measurements of atmospheric aerosol properties performed in a distributed network of 20 high quality European ground-based stations in support of policy issues on air quality, long-range transport of pollutants and climate change., The World Data Centre for Aerosols is the data repository and archive for microphysical, optical, and chemical properties of atmospheric aerosol of the World Meteorological Organisation's (WMO) Global Atmosphere Watch (GAW) programme., Atmospheric measuremnts produced at NILU.
- ebas_station_wmo_region :
- 6
- ebas_platform_code :
- NO0042S
- ebas_inlet_type :
- Hat or hood
- ebas_station_wdca_id :
- GAWANO__ZEP
- ebas_station_latitude :
- 78.90715
- ebas_station_code :
- NO0042G
- ebas_instrument_name :
- f3p_d_0042
- ebas_medium :
- Teflon
- ebas_matrix :
- aerosol
- ebas_regime :
- IMG
- ebas_instrument_type :
- filter_3pack
- ebas_data_level :
- 2
- ebas_volume_std_pressure :
- ambient
- ebas_station_altitude :
- 474.0 m
- ebas_originator :
- Aas, Wenche, waa@nilu.no, Norwegian Institute for Air Research, NILU, Atmosphere and Climate Department, Instituttveien 18, , 2007, Kjeller, Norway, ORCID=0000-0002-2908-1970
- ebas_station_land_use :
- Gravel and stone
- ebas_method_ref :
- NO01L_IC
- ebas_revision_date :
- 20210421112338
- ebas_framework_contact_email :
- waa@nilu.no, waa@nilu.no, kt@nilu.no, amf@nilu.no, Markus.Fiebig@nilu.no, kt@nilu.no
- ebas_humidity_temperaure_control :
- None
array([0.65, 0.52, 0.2 , ..., 0.1 , 0.3 , 0.7 ])
- sulphate_total_ug_per_m3_qc(sulphate_total_ug_per_m3_qc_flags, time)float64...
- standard_name :
- status_flag
- units :
- 1
array([[nan, nan, nan, ..., nan, nan, nan]])
- sulphate_total_ug_per_m3(time)float64...
- standard_name :
- mass_concentration_of_total_sulphateexpressed_as_sulphur_in_dry_aerosol_particles_in_air
- units :
- ug/m3
- ancillary_variables :
- sulphate_total_ug_per_m3_qc sulphate_total_ug_per_m3_ebasmetadata
- cell_methods :
- time: mean
- ebas_station_setting :
- Polar
- ebas_unit :
- ug/m3
- ebas_station_longitude :
- 11.88668
- ebas_submitter :
- Hjellbrekke, Anne, agh@nilu.no, Norwegian Institute for Air Research, NILU, Atmosphere and Climate Department, Instituttveien 18, , 2007, Kjeller, Norway
- ebas_station_gaw_type :
- G
- ebas_framework_contact_name :
- Wenche Aas, Wenche Aas, Kjetil Tørseth, Ann Mari Fjaeraa, Markus Fiebig, Kjetil Tørseth
- ebas_framework_name :
- , OSPARCOM - Comprehensive Atmospheric Monitoring Programme, European Monitoring and Evaluation Programme, European Supersites for Atmospheric Aerosol Research, World Data Centre for Aerosols, Norwegian Institute for Air Research
- ebas_volume_std_temperature :
- ambient
- ebas_organization :
- NO01L, Norwegian Institute for Air Research, NILU, , Instituttveien 18, , 2007, Kjeller, Norway
- ebas_comment :
- Data converted on export from EBAS from 'ug S/m3' to 'ug/m3', conversion factor 2.996.
- ebas_standard_method :
- SOP=EMEP_manual_v2014
- ebas_station_name :
- Zeppelin mountain (Ny-Ã…lesund)
- ebas_component :
- sulphate_total
- ebas_framework_acronym :
- AMAP, CAMP, EMEP, EUSAAR, GAW-WDCA, NILU
- ebas_station_gaw_id :
- ZEP
- ebas_statistics :
- arithmetic mean
- ebas_station_gaw_name :
- Zeppelin Mountain (Ny Ã…lesund)
- ebas_laboratory_code :
- NO01L
- ebas_framework_description :
- , The OSPARCOM Comprehensive Atmospheric Monitoring Programme goal is the assessment of the atmospheric input of selected contaminants to the OSPAR maritime area and regions., The European Monitoring and Evaluation Programme (EMEP) is a scientifically based and policy driven programme under the Convention on Long-range Transboundary Air Pollution (CLRTAP) for int'l co-operation to solve transboundary air pollution problems., Integration of measurements of atmospheric aerosol properties performed in a distributed network of 20 high quality European ground-based stations in support of policy issues on air quality, long-range transport of pollutants and climate change., The World Data Centre for Aerosols is the data repository and archive for microphysical, optical, and chemical properties of atmospheric aerosol of the World Meteorological Organisation's (WMO) Global Atmosphere Watch (GAW) programme., Atmospheric measuremnts produced at NILU.
- ebas_station_wmo_region :
- 6
- ebas_platform_code :
- NO0042S
- ebas_inlet_type :
- Hat or hood
- ebas_station_wdca_id :
- GAWANO__ZEP
- ebas_station_latitude :
- 78.90715
- ebas_station_code :
- NO0042G
- ebas_instrument_name :
- f3p_d_0042
- ebas_medium :
- Teflon
- ebas_matrix :
- aerosol
- ebas_regime :
- IMG
- ebas_instrument_type :
- filter_3pack
- ebas_data_level :
- 2
- ebas_volume_std_pressure :
- ambient
- ebas_revision_date :
- 20210420142507
- ebas_station_altitude :
- 474.0 m
- ebas_originator :
- Aas, Wenche, waa@nilu.no, Norwegian Institute for Air Research, NILU, Atmosphere and Climate Department, Instituttveien 18, , 2007, Kjeller, Norway, ORCID=0000-0002-2908-1970
- ebas_station_land_use :
- Gravel and stone
- ebas_method_ref :
- NO01L_IC
- ebas_framework_contact_email :
- waa@nilu.no, waa@nilu.no, kt@nilu.no, amf@nilu.no, Markus.Fiebig@nilu.no, kt@nilu.no
- ebas_humidity_temperaure_control :
- None
array([0.8, 0.7, 0.3, ..., 0.4, 0.4, 0.8])
- chloride(time)float64...
- standard_name :
- mass_concentration_of_chloride_in_dry_aerosol_particles_in _air
- units :
- ug/m3
- ancillary_variables :
- chloride_qc chloride_ebasmetadata
- cell_methods :
- time: mean
- ebas_station_setting :
- Polar
- ebas_unit :
- ug/m3
- ebas_station_longitude :
- 11.88668
- ebas_submitter :
- Hjellbrekke, Anne, agh@nilu.no, Norwegian Institute for Air Research, NILU, Atmosphere and Climate Department, Instituttveien 18, , 2007, Kjeller, Norway
- ebas_station_gaw_type :
- G
- ebas_framework_contact_name :
- Wenche Aas, Wenche Aas, Kjetil Tørseth, Ann Mari Fjaeraa, Markus Fiebig, Kjetil Tørseth
- ebas_framework_name :
- , OSPARCOM - Comprehensive Atmospheric Monitoring Programme, European Monitoring and Evaluation Programme, European Supersites for Atmospheric Aerosol Research, World Data Centre for Aerosols, Norwegian Institute for Air Research
- ebas_volume_std_temperature :
- ambient
- ebas_organization :
- NO01L, Norwegian Institute for Air Research, NILU, , Instituttveien 18, , 2007, Kjeller, Norway
- ebas_standard_method :
- SOP=EMEP_manual_v2014
- ebas_station_name :
- Zeppelin mountain (Ny-Ã…lesund)
- ebas_framework_acronym :
- AMAP, CAMP, EMEP, EUSAAR, GAW-WDCA, NILU
- ebas_station_gaw_id :
- ZEP
- ebas_statistics :
- arithmetic mean
- ebas_station_gaw_name :
- Zeppelin Mountain (Ny Ã…lesund)
- ebas_laboratory_code :
- NO01L
- ebas_framework_description :
- , The OSPARCOM Comprehensive Atmospheric Monitoring Programme goal is the assessment of the atmospheric input of selected contaminants to the OSPAR maritime area and regions., The European Monitoring and Evaluation Programme (EMEP) is a scientifically based and policy driven programme under the Convention on Long-range Transboundary Air Pollution (CLRTAP) for int'l co-operation to solve transboundary air pollution problems., Integration of measurements of atmospheric aerosol properties performed in a distributed network of 20 high quality European ground-based stations in support of policy issues on air quality, long-range transport of pollutants and climate change., The World Data Centre for Aerosols is the data repository and archive for microphysical, optical, and chemical properties of atmospheric aerosol of the World Meteorological Organisation's (WMO) Global Atmosphere Watch (GAW) programme., Atmospheric measuremnts produced at NILU.
- ebas_station_wmo_region :
- 6
- ebas_platform_code :
- NO0042S
- ebas_inlet_type :
- Hat or hood
- ebas_station_wdca_id :
- GAWANO__ZEP
- ebas_component :
- chloride
- ebas_station_code :
- NO0042G
- ebas_instrument_name :
- f3p_d_0042
- ebas_medium :
- Teflon
- ebas_matrix :
- aerosol
- ebas_regime :
- IMG
- ebas_instrument_type :
- filter_3pack
- ebas_data_level :
- 2
- ebas_volume_std_pressure :
- ambient
- ebas_station_latitude :
- 78.90715
- ebas_revision_date :
- 20210420142507
- ebas_station_altitude :
- 474.0 m
- ebas_originator :
- Aas, Wenche, waa@nilu.no, Norwegian Institute for Air Research, NILU, Atmosphere and Climate Department, Instituttveien 18, , 2007, Kjeller, Norway, ORCID=0000-0002-2908-1970
- ebas_station_land_use :
- Gravel and stone
- ebas_method_ref :
- NO01L_IC
- ebas_framework_contact_email :
- waa@nilu.no, waa@nilu.no, kt@nilu.no, amf@nilu.no, Markus.Fiebig@nilu.no, kt@nilu.no
- ebas_humidity_temperaure_control :
- None
array([0.7 , 0.81, 0.45, ..., 1.66, 0.41, 0.05])
- ammonium_ug_N_per_m3_ebasmetadata(metadata_time)|S64...
- long_name :
- ebas metadata for different time intervals; json encoded
array([b'{\n "ebas_revision_date": "20210420142507", \n "ebas_statist', b'{\n "ebas_revision_date": "20210420142507", \n "ebas_statist', b'{\n "ebas_revision_date": "20210420142507", \n "ebas_statist', b'{\n "ebas_revision_date": "20210420142507", \n "ebas_statist', b'{\n "ebas_revision_date": "20210420142507", \n "ebas_statist', b'{\n "ebas_revision_date": "20210420142507", \n "ebas_statist', b'{\n "ebas_revision_date": "20210420142507", \n "ebas_statist', b'{\n "ebas_revision_date": "20210420142507", \n "ebas_statist', b'{\n "ebas_revision_date": "20210420142507", \n "ebas_statist', b'{\n "ebas_revision_date": "20210420142507", \n "ebas_statist', b'{\n "ebas_revision_date": "20210420142507", \n "ebas_statist', b'{\n "ebas_revision_date": "20210420142507", \n "ebas_statist', b'{\n "ebas_revision_date": "20210420142507", \n "ebas_statist', b'{\n "ebas_revision_date": "20210420142507", \n "ebas_statist', b'{\n "ebas_revision_date": "20210420142507", \n "ebas_statist', b'{\n "ebas_revision_date": "20210420142507", \n "ebas_statist', b'{\n "ebas_revision_date": "20210420142507", \n "ebas_statist', b'{\n "ebas_revision_date": "20210420142507", \n "ebas_statist'], dtype='|S64')
- sulphate_corrected_ug_per_m3_ebasmetadata(metadata_time)|S64...
- long_name :
- ebas metadata for different time intervals; json encoded
array([b'{\n "ebas_revision_date": "20210421112338", \n "ebas_statist', b'{\n "ebas_revision_date": "20210421112338", \n "ebas_statist', b'{\n "ebas_revision_date": "20210421112338", \n "ebas_statist', b'{\n "ebas_revision_date": "20210421112338", \n "ebas_statist', b'{\n "ebas_revision_date": "20210421112338", \n "ebas_statist', b'{\n "ebas_revision_date": "20210421112338", \n "ebas_statist', b'{\n "ebas_revision_date": "20210421112338", \n "ebas_statist', b'{\n "ebas_revision_date": "20210421112338", \n "ebas_statist', b'{\n "ebas_revision_date": "20210421112338", \n "ebas_statist', b'{\n "ebas_revision_date": "20210421112338", \n "ebas_statist', b'{\n "ebas_revision_date": "20210421112338", \n "ebas_statist', b'{\n "ebas_revision_date": "20210421112338", \n "ebas_statist', b'{\n "ebas_revision_date": "20210421112338", \n "ebas_statist', b'{\n "ebas_revision_date": "20210421112338", \n "ebas_statist', b'{\n "ebas_revision_date": "20210421112338", \n "ebas_statist', b'{\n "ebas_revision_date": "20210421112338", \n "ebas_statist', b'{\n "ebas_revision_date": "20210421112338", \n "ebas_statist', b'{\n "ebas_revision_date": "20210421112338", \n "ebas_statist'], dtype='|S64')
- ammonium_ug_per_m3_ebasmetadata(metadata_time)|S64...
- long_name :
- ebas metadata for different time intervals; json encoded
array([b'{\n "ebas_revision_date": "20210420142507", \n "ebas_statist', b'{\n "ebas_revision_date": "20210420142507", \n "ebas_statist', b'{\n "ebas_revision_date": "20210420142507", \n "ebas_statist', b'{\n "ebas_revision_date": "20210420142507", \n "ebas_statist', b'{\n "ebas_revision_date": "20210420142507", \n "ebas_statist', b'{\n "ebas_revision_date": "20210420142507", \n "ebas_statist', b'{\n "ebas_revision_date": "20210420142507", \n "ebas_statist', b'{\n "ebas_revision_date": "20210420142507", \n "ebas_statist', b'{\n "ebas_revision_date": "20210420142507", \n "ebas_statist', b'{\n "ebas_revision_date": "20210420142507", \n "ebas_statist', b'{\n "ebas_revision_date": "20210420142507", \n "ebas_statist', b'{\n "ebas_revision_date": "20210420142507", \n "ebas_statist', b'{\n "ebas_revision_date": "20210420142507", \n "ebas_statist', b'{\n "ebas_revision_date": "20210420142507", \n "ebas_statist', b'{\n "ebas_revision_date": "20210420142507", \n "ebas_statist', b'{\n "ebas_revision_date": "20210420142507", \n "ebas_statist', b'{\n "ebas_revision_date": "20210420142507", \n "ebas_statist', b'{\n "ebas_revision_date": "20210420142507", \n "ebas_statist'], dtype='|S64')
- potassium(time)float64...
- standard_name :
- mass_concentration_of_potassium_in_dry_aerosol_particles_in _air
- units :
- ug/m3
- ancillary_variables :
- potassium_qc potassium_ebasmetadata
- cell_methods :
- time: mean
- ebas_station_setting :
- Polar
- ebas_unit :
- ug/m3
- ebas_station_longitude :
- 11.88668
- ebas_submitter :
- Hjellbrekke, Anne, agh@nilu.no, Norwegian Institute for Air Research, NILU, Atmosphere and Climate Department, Instituttveien 18, , 2007, Kjeller, Norway
- ebas_station_gaw_type :
- G
- ebas_framework_contact_name :
- Wenche Aas, Wenche Aas, Kjetil Tørseth, Ann Mari Fjaeraa, Markus Fiebig, Kjetil Tørseth
- ebas_framework_name :
- , OSPARCOM - Comprehensive Atmospheric Monitoring Programme, European Monitoring and Evaluation Programme, European Supersites for Atmospheric Aerosol Research, World Data Centre for Aerosols, Norwegian Institute for Air Research
- ebas_volume_std_temperature :
- ambient
- ebas_organization :
- NO01L, Norwegian Institute for Air Research, NILU, , Instituttveien 18, , 2007, Kjeller, Norway
- ebas_standard_method :
- SOP=EMEP_manual_v2014
- ebas_station_name :
- Zeppelin mountain (Ny-Ã…lesund)
- ebas_component :
- potassium
- ebas_station_gaw_id :
- ZEP
- ebas_statistics :
- arithmetic mean
- ebas_station_gaw_name :
- Zeppelin Mountain (Ny Ã…lesund)
- ebas_laboratory_code :
- NO01L
- ebas_framework_description :
- , The OSPARCOM Comprehensive Atmospheric Monitoring Programme goal is the assessment of the atmospheric input of selected contaminants to the OSPAR maritime area and regions., The European Monitoring and Evaluation Programme (EMEP) is a scientifically based and policy driven programme under the Convention on Long-range Transboundary Air Pollution (CLRTAP) for int'l co-operation to solve transboundary air pollution problems., Integration of measurements of atmospheric aerosol properties performed in a distributed network of 20 high quality European ground-based stations in support of policy issues on air quality, long-range transport of pollutants and climate change., The World Data Centre for Aerosols is the data repository and archive for microphysical, optical, and chemical properties of atmospheric aerosol of the World Meteorological Organisation's (WMO) Global Atmosphere Watch (GAW) programme., Atmospheric measuremnts produced at NILU.
- ebas_station_wmo_region :
- 6
- ebas_platform_code :
- NO0042S
- ebas_framework_acronym :
- AMAP, CAMP, EMEP, EUSAAR, GAW-WDCA, NILU
- ebas_inlet_type :
- Hat or hood
- ebas_station_wdca_id :
- GAWANO__ZEP
- ebas_station_latitude :
- 78.90715
- ebas_station_code :
- NO0042G
- ebas_instrument_name :
- f3p_d_0042
- ebas_medium :
- Teflon
- ebas_matrix :
- aerosol
- ebas_regime :
- IMG
- ebas_instrument_type :
- filter_3pack
- ebas_data_level :
- 2
- ebas_volume_std_pressure :
- ambient
- ebas_revision_date :
- 20210420142507
- ebas_station_altitude :
- 474.0 m
- ebas_originator :
- Aas, Wenche, waa@nilu.no, Norwegian Institute for Air Research, NILU, Atmosphere and Climate Department, Instituttveien 18, , 2007, Kjeller, Norway, ORCID=0000-0002-2908-1970
- ebas_station_land_use :
- Gravel and stone
- ebas_method_ref :
- NO01L_IC
- ebas_framework_contact_email :
- waa@nilu.no, waa@nilu.no, kt@nilu.no, amf@nilu.no, Markus.Fiebig@nilu.no, kt@nilu.no
- ebas_humidity_temperaure_control :
- None
array([0.05, 0.05, 0.32, ..., 0.08, 0.01, 0.06])
- nitrate_ug_N_per_m3(time)float64...
- standard_name :
- mass_concentration_of_nitrate_expressed_as_nitrogen_in_dry_aerosol_particles_in _air
- units :
- ug/m3
- ancillary_variables :
- nitrate_ug N_per_m3_qc nitrate_ug N_per_m3_ebasmetadata
- cell_methods :
- time: mean
- ebas_station_setting :
- Polar
- ebas_volume_std_temperature :
- ambient
- ebas_station_longitude :
- 11.88668
- ebas_submitter :
- Hjellbrekke, Anne, agh@nilu.no, Norwegian Institute for Air Research, NILU, Atmosphere and Climate Department, Instituttveien 18, , 2007, Kjeller, Norway
- ebas_station_gaw_type :
- G
- ebas_framework_contact_name :
- Wenche Aas, Wenche Aas, Kjetil Tørseth, Ann Mari Fjaeraa, Markus Fiebig, Kjetil Tørseth
- ebas_framework_name :
- , OSPARCOM - Comprehensive Atmospheric Monitoring Programme, European Monitoring and Evaluation Programme, European Supersites for Atmospheric Aerosol Research, World Data Centre for Aerosols, Norwegian Institute for Air Research
- ebas_organization :
- NO01L, Norwegian Institute for Air Research, NILU, , Instituttveien 18, , 2007, Kjeller, Norway
- ebas_standard_method :
- SOP=EMEP_manual_v2014
- ebas_station_name :
- Zeppelin mountain (Ny-Ã…lesund)
- ebas_framework_acronym :
- AMAP, CAMP, EMEP, EUSAAR, GAW-WDCA, NILU
- ebas_station_gaw_id :
- ZEP
- ebas_statistics :
- arithmetic mean
- ebas_station_gaw_name :
- Zeppelin Mountain (Ny Ã…lesund)
- ebas_laboratory_code :
- NO01L
- ebas_framework_description :
- , The OSPARCOM Comprehensive Atmospheric Monitoring Programme goal is the assessment of the atmospheric input of selected contaminants to the OSPAR maritime area and regions., The European Monitoring and Evaluation Programme (EMEP) is a scientifically based and policy driven programme under the Convention on Long-range Transboundary Air Pollution (CLRTAP) for int'l co-operation to solve transboundary air pollution problems., Integration of measurements of atmospheric aerosol properties performed in a distributed network of 20 high quality European ground-based stations in support of policy issues on air quality, long-range transport of pollutants and climate change., The World Data Centre for Aerosols is the data repository and archive for microphysical, optical, and chemical properties of atmospheric aerosol of the World Meteorological Organisation's (WMO) Global Atmosphere Watch (GAW) programme., Atmospheric measuremnts produced at NILU.
- ebas_station_wmo_region :
- 6
- ebas_platform_code :
- NO0042S
- ebas_component :
- nitrate
- ebas_inlet_type :
- Hat or hood
- ebas_station_wdca_id :
- GAWANO__ZEP
- ebas_station_latitude :
- 78.90715
- ebas_station_code :
- NO0042G
- ebas_instrument_name :
- f3p_d_0042
- ebas_medium :
- Teflon
- ebas_matrix :
- aerosol
- ebas_regime :
- IMG
- ebas_instrument_type :
- filter_3pack
- ebas_data_level :
- 2
- ebas_volume_std_pressure :
- ambient
- ebas_unit :
- ug N/m3
- ebas_revision_date :
- 20210420142507
- ebas_station_altitude :
- 474.0 m
- ebas_originator :
- Aas, Wenche, waa@nilu.no, Norwegian Institute for Air Research, NILU, Atmosphere and Climate Department, Instituttveien 18, , 2007, Kjeller, Norway, ORCID=0000-0002-2908-1970
- ebas_station_land_use :
- Gravel and stone
- ebas_method_ref :
- NO01L_IC
- ebas_framework_contact_email :
- waa@nilu.no, waa@nilu.no, kt@nilu.no, amf@nilu.no, Markus.Fiebig@nilu.no, kt@nilu.no
- ebas_humidity_temperaure_control :
- None
array([0.02, 0.02, 0.01, ..., 0.47, 1.14, 0.43])
- nitrate_ug_N_per_m3_qc(nitrate_ug_N_per_m3_qc_flags, time)float64...
- standard_name :
- status_flag
- units :
- 1
array([[ nan, nan, 781., ..., nan, nan, nan], [ nan, nan, nan, ..., nan, nan, nan]])
- sulphate_corrected_ug_S_per_m3_qc(sulphate_corrected_ug_S_per_m3_qc_flags, time)float64...
- standard_name :
- status_flag
- units :
- 1
array([[nan, nan, nan, ..., nan, nan, nan]])
- nitrate_ug_N_per_m3_ebasmetadata(metadata_time)|S64...
- long_name :
- ebas metadata for different time intervals; json encoded
array([b'{\n "ebas_revision_date": "20210420142507", \n "ebas_statist', b'{\n "ebas_revision_date": "20210420142507", \n "ebas_statist', b'{\n "ebas_revision_date": "20210420142507", \n "ebas_statist', b'{\n "ebas_revision_date": "20210420142507", \n "ebas_statist', b'{\n "ebas_revision_date": "20210420142507", \n "ebas_statist', b'{\n "ebas_revision_date": "20210420142507", \n "ebas_statist', b'{\n "ebas_revision_date": "20210420142507", \n "ebas_statist', b'{\n "ebas_revision_date": "20210420142507", \n "ebas_statist', b'{\n "ebas_revision_date": "20210420142507", \n "ebas_statist', b'{\n "ebas_revision_date": "20210420142507", \n "ebas_statist', b'{\n "ebas_revision_date": "20210420142507", \n "ebas_statist', b'{\n "ebas_revision_date": "20210420142507", \n "ebas_statist', b'{\n "ebas_revision_date": "20210420142507", \n "ebas_statist', b'{\n "ebas_revision_date": "20210420142507", \n "ebas_statist', b'{\n "ebas_revision_date": "20210420142507", \n "ebas_statist', b'{\n "ebas_revision_date": "20210420142507", \n "ebas_statist', b'{\n "ebas_revision_date": "20210420142507", \n "ebas_statist', b'{\n "ebas_revision_date": "20210420142507", \n "ebas_statist'], dtype='|S64')
- sodium_ebasmetadata(metadata_time)|S64...
- long_name :
- ebas metadata for different time intervals; json encoded
array([b'{\n "ebas_revision_date": "20210420142507", \n "ebas_statist', b'{\n "ebas_revision_date": "20210420142507", \n "ebas_statist', b'{\n "ebas_revision_date": "20210420142507", \n "ebas_statist', b'{\n "ebas_revision_date": "20210420142507", \n "ebas_statist', b'{\n "ebas_revision_date": "20210420142507", \n "ebas_statist', b'{\n "ebas_revision_date": "20210420142507", \n "ebas_statist', b'{\n "ebas_revision_date": "20210420142507", \n "ebas_statist', b'{\n "ebas_revision_date": "20210420142507", \n "ebas_statist', b'{\n "ebas_revision_date": "20210420142507", \n "ebas_statist', b'{\n "ebas_revision_date": "20210420142507", \n "ebas_statist', b'{\n "ebas_revision_date": "20210420142507", \n "ebas_statist', b'{\n "ebas_revision_date": "20210420142507", \n "ebas_statist', b'{\n "ebas_revision_date": "20210420142507", \n "ebas_statist', b'{\n "ebas_revision_date": "20210420142507", \n "ebas_statist', b'{\n "ebas_revision_date": "20210420142507", \n "ebas_statist', b'{\n "ebas_revision_date": "20210420142507", \n "ebas_statist', b'{\n "ebas_revision_date": "20210420142507", \n "ebas_statist', b'{\n "ebas_revision_date": "20210420142507", \n "ebas_statist'], dtype='|S64')
- calcium_ebasmetadata(metadata_time)|S64...
- long_name :
- ebas metadata for different time intervals; json encoded
array([b'{\n "ebas_revision_date": "20210420142507", \n "ebas_statist', b'{\n "ebas_revision_date": "20210420142507", \n "ebas_statist', b'{\n "ebas_revision_date": "20210420142507", \n "ebas_statist', b'{\n "ebas_revision_date": "20210420142507", \n "ebas_statist', b'{\n "ebas_revision_date": "20210420142507", \n "ebas_statist', b'{\n "ebas_revision_date": "20210420142507", \n "ebas_statist', b'{\n "ebas_revision_date": "20210420142507", \n "ebas_statist', b'{\n "ebas_revision_date": "20210420142507", \n "ebas_statist', b'{\n "ebas_revision_date": "20210420142507", \n "ebas_statist', b'{\n "ebas_revision_date": "20210420142507", \n "ebas_statist', b'{\n "ebas_revision_date": "20210420142507", \n "ebas_statist', b'{\n "ebas_revision_date": "20210420142507", \n "ebas_statist', b'{\n "ebas_revision_date": "20210420142507", \n "ebas_statist', b'{\n "ebas_revision_date": "20210420142507", \n "ebas_statist', b'{\n "ebas_revision_date": "20210420142507", \n "ebas_statist', b'{\n "ebas_revision_date": "20210420142507", \n "ebas_statist', b'{\n "ebas_revision_date": "20210420142507", \n "ebas_statist', b'{\n "ebas_revision_date": "20210420142507", \n "ebas_statist'], dtype='|S64')
- nitrate_ug_per_m3(time)float64...
- standard_name :
- mass_concentration_of_nitrate_expressed_as_nitrogen_in_dry_aerosol_particles_in _air
- units :
- ug/m3
- ancillary_variables :
- nitrate_ug_per_m3_qc nitrate_ug_per_m3_ebasmetadata
- cell_methods :
- time: mean
- ebas_station_setting :
- Polar
- ebas_unit :
- ug/m3
- ebas_station_longitude :
- 11.88668
- ebas_submitter :
- Hjellbrekke, Anne, agh@nilu.no, Norwegian Institute for Air Research, NILU, Atmosphere and Climate Department, Instituttveien 18, , 2007, Kjeller, Norway
- ebas_station_gaw_type :
- G
- ebas_framework_contact_name :
- Wenche Aas, Wenche Aas, Kjetil Tørseth, Ann Mari Fjaeraa, Markus Fiebig, Kjetil Tørseth
- ebas_framework_name :
- , OSPARCOM - Comprehensive Atmospheric Monitoring Programme, European Monitoring and Evaluation Programme, European Supersites for Atmospheric Aerosol Research, World Data Centre for Aerosols, Norwegian Institute for Air Research
- ebas_volume_std_temperature :
- ambient
- ebas_organization :
- NO01L, Norwegian Institute for Air Research, NILU, , Instituttveien 18, , 2007, Kjeller, Norway
- ebas_standard_method :
- SOP=EMEP_manual_v2014
- ebas_station_name :
- Zeppelin mountain (Ny-Ã…lesund)
- ebas_framework_acronym :
- AMAP, CAMP, EMEP, EUSAAR, GAW-WDCA, NILU
- ebas_station_gaw_id :
- ZEP
- ebas_statistics :
- arithmetic mean
- ebas_station_gaw_name :
- Zeppelin Mountain (Ny Ã…lesund)
- ebas_laboratory_code :
- NO01L
- ebas_framework_description :
- , The OSPARCOM Comprehensive Atmospheric Monitoring Programme goal is the assessment of the atmospheric input of selected contaminants to the OSPAR maritime area and regions., The European Monitoring and Evaluation Programme (EMEP) is a scientifically based and policy driven programme under the Convention on Long-range Transboundary Air Pollution (CLRTAP) for int'l co-operation to solve transboundary air pollution problems., Integration of measurements of atmospheric aerosol properties performed in a distributed network of 20 high quality European ground-based stations in support of policy issues on air quality, long-range transport of pollutants and climate change., The World Data Centre for Aerosols is the data repository and archive for microphysical, optical, and chemical properties of atmospheric aerosol of the World Meteorological Organisation's (WMO) Global Atmosphere Watch (GAW) programme., Atmospheric measuremnts produced at NILU.
- ebas_station_wmo_region :
- 6
- ebas_platform_code :
- NO0042S
- ebas_component :
- nitrate
- ebas_inlet_type :
- Hat or hood
- ebas_station_wdca_id :
- GAWANO__ZEP
- ebas_station_latitude :
- 78.90715
- ebas_station_code :
- NO0042G
- ebas_instrument_name :
- f3p_d_0042
- ebas_medium :
- Teflon
- ebas_matrix :
- aerosol
- ebas_regime :
- IMG
- ebas_instrument_type :
- filter_3pack
- ebas_data_level :
- 2
- ebas_volume_std_pressure :
- ambient
- ebas_revision_date :
- 20210420142507
- ebas_station_altitude :
- 474.0 m
- ebas_comment :
- Data converted on export from EBAS from 'ug N/m3' to 'ug/m3', conversion factor 4.427.
- ebas_originator :
- Aas, Wenche, waa@nilu.no, Norwegian Institute for Air Research, NILU, Atmosphere and Climate Department, Instituttveien 18, , 2007, Kjeller, Norway, ORCID=0000-0002-2908-1970
- ebas_station_land_use :
- Gravel and stone
- ebas_method_ref :
- NO01L_IC
- ebas_framework_contact_email :
- waa@nilu.no, waa@nilu.no, kt@nilu.no, amf@nilu.no, Markus.Fiebig@nilu.no, kt@nilu.no
- ebas_humidity_temperaure_control :
- None
array([0.1, 0.1, 0. , ..., 2.1, 5. , 1.9])
- nitrate_ug_per_m3_ebasmetadata(metadata_time)|S64...
- long_name :
- ebas metadata for different time intervals; json encoded
array([b'{\n "ebas_revision_date": "20210420142507", \n "ebas_statist', b'{\n "ebas_revision_date": "20210420142507", \n "ebas_statist', b'{\n "ebas_revision_date": "20210420142507", \n "ebas_statist', b'{\n "ebas_revision_date": "20210420142507", \n "ebas_statist', b'{\n "ebas_revision_date": "20210420142507", \n "ebas_statist', b'{\n "ebas_revision_date": "20210420142507", \n "ebas_statist', b'{\n "ebas_revision_date": "20210420142507", \n "ebas_statist', b'{\n "ebas_revision_date": "20210420142507", \n "ebas_statist', b'{\n "ebas_revision_date": "20210420142507", \n "ebas_statist', b'{\n "ebas_revision_date": "20210420142507", \n "ebas_statist', b'{\n "ebas_revision_date": "20210420142507", \n "ebas_statist', b'{\n "ebas_revision_date": "20210420142507", \n "ebas_statist', b'{\n "ebas_revision_date": "20210420142507", \n "ebas_statist', b'{\n "ebas_revision_date": "20210420142507", \n "ebas_statist', b'{\n "ebas_revision_date": "20210420142507", \n "ebas_statist', b'{\n "ebas_revision_date": "20210420142507", \n "ebas_statist', b'{\n "ebas_revision_date": "20210420142507", \n "ebas_statist', b'{\n "ebas_revision_date": "20210420142507", \n "ebas_statist'], dtype='|S64')
- sulphate_total_ug_per_m3_ebasmetadata(metadata_time)|S64...
- long_name :
- ebas metadata for different time intervals; json encoded
array([b'{\n "ebas_revision_date": "20210420142507", \n "ebas_statist', b'{\n "ebas_revision_date": "20210420142507", \n "ebas_statist', b'{\n "ebas_revision_date": "20210420142507", \n "ebas_statist', b'{\n "ebas_revision_date": "20210420142507", \n "ebas_statist', b'{\n "ebas_revision_date": "20210420142507", \n "ebas_statist', b'{\n "ebas_revision_date": "20210420142507", \n "ebas_statist', b'{\n "ebas_revision_date": "20210420142507", \n "ebas_statist', b'{\n "ebas_revision_date": "20210420142507", \n "ebas_statist', b'{\n "ebas_revision_date": "20210420142507", \n "ebas_statist', b'{\n "ebas_revision_date": "20210420142507", \n "ebas_statist', b'{\n "ebas_revision_date": "20210420142507", \n "ebas_statist', b'{\n "ebas_revision_date": "20210420142507", \n "ebas_statist', b'{\n "ebas_revision_date": "20210420142507", \n "ebas_statist', b'{\n "ebas_revision_date": "20210420142507", \n "ebas_statist', b'{\n "ebas_revision_date": "20210420142507", \n "ebas_statist', b'{\n "ebas_revision_date": "20210420142507", \n "ebas_statist', b'{\n "ebas_revision_date": "20210420142507", \n "ebas_statist', b'{\n "ebas_revision_date": "20210420142507", \n "ebas_statist'], dtype='|S64')
- magnesium_ebasmetadata(metadata_time)|S64...
- long_name :
- ebas metadata for different time intervals; json encoded
array([b'{\n "ebas_revision_date": "20210420142507", \n "ebas_statist', b'{\n "ebas_revision_date": "20210420142507", \n "ebas_statist', b'{\n "ebas_revision_date": "20210420142507", \n "ebas_statist', b'{\n "ebas_revision_date": "20210420142507", \n "ebas_statist', b'{\n "ebas_revision_date": "20210420142507", \n "ebas_statist', b'{\n "ebas_revision_date": "20210420142507", \n "ebas_statist', b'{\n "ebas_revision_date": "20210420142507", \n "ebas_statist', b'{\n "ebas_revision_date": "20210420142507", \n "ebas_statist', b'{\n "ebas_revision_date": "20210420142507", \n "ebas_statist', b'{\n "ebas_revision_date": "20210420142507", \n "ebas_statist', b'{\n "ebas_revision_date": "20210420142507", \n "ebas_statist', b'{\n "ebas_revision_date": "20210420142507", \n "ebas_statist', b'{\n "ebas_revision_date": "20210420142507", \n "ebas_statist', b'{\n "ebas_revision_date": "20210420142507", \n "ebas_statist', b'{\n "ebas_revision_date": "20210420142507", \n "ebas_statist', b'{\n "ebas_revision_date": "20210420142507", \n "ebas_statist', b'{\n "ebas_revision_date": "20210420142507", \n "ebas_statist', b'{\n "ebas_revision_date": "20210420142507", \n "ebas_statist'], dtype='|S64')
- ammonium_ug_per_m3_qc(ammonium_ug_per_m3_qc_flags, time)float64...
- standard_name :
- status_flag
- units :
- 1
array([[ nan, 781., 781., ..., nan, nan, nan], [ nan, nan, nan, ..., nan, nan, nan]])
- calcium(time)float64...
- standard_name :
- mass_concentration_of_calcium_in_dry_aerosol_particles_in _air
- units :
- ug/m3
- ancillary_variables :
- calcium_qc calcium_ebasmetadata
- cell_methods :
- time: mean
- ebas_station_setting :
- Polar
- ebas_unit :
- ug/m3
- ebas_station_longitude :
- 11.88668
- ebas_submitter :
- Hjellbrekke, Anne, agh@nilu.no, Norwegian Institute for Air Research, NILU, Atmosphere and Climate Department, Instituttveien 18, , 2007, Kjeller, Norway
- ebas_station_gaw_type :
- G
- ebas_framework_contact_name :
- Wenche Aas, Wenche Aas, Kjetil Tørseth, Ann Mari Fjaeraa, Markus Fiebig, Kjetil Tørseth
- ebas_framework_name :
- , OSPARCOM - Comprehensive Atmospheric Monitoring Programme, European Monitoring and Evaluation Programme, European Supersites for Atmospheric Aerosol Research, World Data Centre for Aerosols, Norwegian Institute for Air Research
- ebas_volume_std_temperature :
- ambient
- ebas_organization :
- NO01L, Norwegian Institute for Air Research, NILU, , Instituttveien 18, , 2007, Kjeller, Norway
- ebas_standard_method :
- SOP=EMEP_manual_v2014
- ebas_station_name :
- Zeppelin mountain (Ny-Ã…lesund)
- ebas_framework_acronym :
- AMAP, CAMP, EMEP, EUSAAR, GAW-WDCA, NILU
- ebas_station_gaw_id :
- ZEP
- ebas_statistics :
- arithmetic mean
- ebas_station_gaw_name :
- Zeppelin Mountain (Ny Ã…lesund)
- ebas_laboratory_code :
- NO01L
- ebas_framework_description :
- , The OSPARCOM Comprehensive Atmospheric Monitoring Programme goal is the assessment of the atmospheric input of selected contaminants to the OSPAR maritime area and regions., The European Monitoring and Evaluation Programme (EMEP) is a scientifically based and policy driven programme under the Convention on Long-range Transboundary Air Pollution (CLRTAP) for int'l co-operation to solve transboundary air pollution problems., Integration of measurements of atmospheric aerosol properties performed in a distributed network of 20 high quality European ground-based stations in support of policy issues on air quality, long-range transport of pollutants and climate change., The World Data Centre for Aerosols is the data repository and archive for microphysical, optical, and chemical properties of atmospheric aerosol of the World Meteorological Organisation's (WMO) Global Atmosphere Watch (GAW) programme., Atmospheric measuremnts produced at NILU.
- ebas_station_wmo_region :
- 6
- ebas_platform_code :
- NO0042S
- ebas_inlet_type :
- Hat or hood
- ebas_station_wdca_id :
- GAWANO__ZEP
- ebas_station_latitude :
- 78.90715
- ebas_station_code :
- NO0042G
- ebas_instrument_name :
- f3p_d_0042
- ebas_medium :
- Teflon
- ebas_matrix :
- aerosol
- ebas_regime :
- IMG
- ebas_instrument_type :
- filter_3pack
- ebas_data_level :
- 2
- ebas_volume_std_pressure :
- ambient
- ebas_revision_date :
- 20210420142507
- ebas_component :
- calcium
- ebas_station_altitude :
- 474.0 m
- ebas_originator :
- Aas, Wenche, waa@nilu.no, Norwegian Institute for Air Research, NILU, Atmosphere and Climate Department, Instituttveien 18, , 2007, Kjeller, Norway, ORCID=0000-0002-2908-1970
- ebas_station_land_use :
- Gravel and stone
- ebas_method_ref :
- NO01L_IC
- ebas_framework_contact_email :
- waa@nilu.no, waa@nilu.no, kt@nilu.no, amf@nilu.no, Markus.Fiebig@nilu.no, kt@nilu.no
- ebas_humidity_temperaure_control :
- None
array([0.05, 0.05, 0.08, ..., 0.02, 0.01, 0.03])
- magnesium(time)float64...
- standard_name :
- mass_concentration_of_magnesium_in_dry_aerosol_particles_in _air
- units :
- ug/m3
- ancillary_variables :
- magnesium_qc magnesium_ebasmetadata
- cell_methods :
- time: mean
- ebas_station_setting :
- Polar
- ebas_unit :
- ug/m3
- ebas_station_longitude :
- 11.88668
- ebas_submitter :
- Hjellbrekke, Anne, agh@nilu.no, Norwegian Institute for Air Research, NILU, Atmosphere and Climate Department, Instituttveien 18, , 2007, Kjeller, Norway
- ebas_station_gaw_type :
- G
- ebas_framework_contact_name :
- Wenche Aas, Wenche Aas, Kjetil Tørseth, Ann Mari Fjaeraa, Markus Fiebig, Kjetil Tørseth
- ebas_framework_name :
- , OSPARCOM - Comprehensive Atmospheric Monitoring Programme, European Monitoring and Evaluation Programme, European Supersites for Atmospheric Aerosol Research, World Data Centre for Aerosols, Norwegian Institute for Air Research
- ebas_volume_std_temperature :
- ambient
- ebas_organization :
- NO01L, Norwegian Institute for Air Research, NILU, , Instituttveien 18, , 2007, Kjeller, Norway
- ebas_standard_method :
- SOP=EMEP_manual_v2014
- ebas_station_name :
- Zeppelin mountain (Ny-Ã…lesund)
- ebas_framework_acronym :
- AMAP, CAMP, EMEP, EUSAAR, GAW-WDCA, NILU
- ebas_station_gaw_id :
- ZEP
- ebas_statistics :
- arithmetic mean
- ebas_station_gaw_name :
- Zeppelin Mountain (Ny Ã…lesund)
- ebas_laboratory_code :
- NO01L
- ebas_framework_description :
- , The OSPARCOM Comprehensive Atmospheric Monitoring Programme goal is the assessment of the atmospheric input of selected contaminants to the OSPAR maritime area and regions., The European Monitoring and Evaluation Programme (EMEP) is a scientifically based and policy driven programme under the Convention on Long-range Transboundary Air Pollution (CLRTAP) for int'l co-operation to solve transboundary air pollution problems., Integration of measurements of atmospheric aerosol properties performed in a distributed network of 20 high quality European ground-based stations in support of policy issues on air quality, long-range transport of pollutants and climate change., The World Data Centre for Aerosols is the data repository and archive for microphysical, optical, and chemical properties of atmospheric aerosol of the World Meteorological Organisation's (WMO) Global Atmosphere Watch (GAW) programme., Atmospheric measuremnts produced at NILU.
- ebas_station_wmo_region :
- 6
- ebas_platform_code :
- NO0042S
- ebas_inlet_type :
- Hat or hood
- ebas_station_wdca_id :
- GAWANO__ZEP
- ebas_station_latitude :
- 78.90715
- ebas_station_code :
- NO0042G
- ebas_instrument_name :
- f3p_d_0042
- ebas_medium :
- Teflon
- ebas_matrix :
- aerosol
- ebas_regime :
- IMG
- ebas_instrument_type :
- filter_3pack
- ebas_data_level :
- 2
- ebas_volume_std_pressure :
- ambient
- ebas_revision_date :
- 20210420142507
- ebas_station_altitude :
- 474.0 m
- ebas_originator :
- Aas, Wenche, waa@nilu.no, Norwegian Institute for Air Research, NILU, Atmosphere and Climate Department, Instituttveien 18, , 2007, Kjeller, Norway, ORCID=0000-0002-2908-1970
- ebas_station_land_use :
- Gravel and stone
- ebas_method_ref :
- NO01L_IC
- ebas_component :
- magnesium
- ebas_framework_contact_email :
- waa@nilu.no, waa@nilu.no, kt@nilu.no, amf@nilu.no, Markus.Fiebig@nilu.no, kt@nilu.no
- ebas_humidity_temperaure_control :
- None
array([0.09, 0.12, 0.06, ..., 0.09, 0.04, 0.02])
- potassium_qc(potassium_qc_flags, time)float64...
- standard_name :
- status_flag
- units :
- 1
array([[nan, nan, nan, ..., nan, nan, nan]])
- calcium_qc(calcium_qc_flags, time)float64...
- standard_name :
- status_flag
- units :
- 1
array([[nan, nan, nan, ..., nan, nan, nan]])
- magnesium_qc(magnesium_qc_flags, time)float64...
- standard_name :
- status_flag
- units :
- 1
array([[nan, nan, nan, ..., nan, nan, nan]])
- Conventions :
- CF-1.8, ACDD-1.3
- featureType :
- timeSeries
- title :
- Ground based in situ observations of filter_3pack at Zeppelin mountain (Ny-Ã…lesund) (NO0042G)
- keywords :
- NO0042G, mass_concentration_of_chloride_in_dry_aerosol_particles_in _air, mass_concentration_of_magnesium_in_dry_aerosol_particles_in _air, AMAP, mass_concentration_of_sodium_in_dry_aerosol_particles_in _air, EMEP, sodium, CAMP, EUSAAR, sulphate_corrected, nitrate, sulphate_total, chloride, NILU, mass_concentration_of_ammonium_expressed_as_nitrogen_in_dry_aerosol_particles_in _air, potassium, ammonium, mass_concentration_of_calcium_in_dry_aerosol_particles_in _air, GAW-WDCA, mass_concentration_of_sulphate_corrected_for_seaspray_expressed_as_sulphur_in_dry_aerosol_particles_in_air, Zeppelin mountain (Ny-Ã…lesund), mass_concentration_of_total_sulphateexpressed_as_sulphur_in_dry_aerosol_particles_in_air, mass_concentration_of_nitrate_expressed_as_nitrogen_in_dry_aerosol_particles_in _air, calcium, aerosol, magnesium, mass_concentration_of_potassium_in_dry_aerosol_particles_in _air
- id :
- NO0042G.19930101070000.20210421112338.filter_3pack..aerosol.18y.1d.NO01L_f3p_d_0042.NO01L_IC.lev2.nc
- naming_authority :
- EBAS
- project :
- AMAP, CAMP, EMEP, EUSAAR, GAW-WDCA, NILU
- license :
- AMAP: For scientific purposes, access to the AMAP data is unlimited but by their use you accept that an offer of co-authorship will be made through personal contact with the data producer or owner., CAMP: Public open access. We encourage contacting data originators if substatial use of individual time series is planned (fair use data policy)., EMEP: Public open access. We encourage contacting data originators if substatial use of individual time series is planned (fair use data policy)., EUSAAR: http://www.eusaar.net/files/data/data_protocol.cfm, GAW-WDCA: , NILU: Public open access. We encourage contacting data originators if substatial use of individual time series is planned (fair use data policy).
- summary :
- Ground based in situ observations of filter_3pack at Zeppelin mountain (Ny-Ã…lesund) (NO0042G). These measurements are gathered as a part of the following projects AMAP, CAMP, EMEP, EUSAAR, GAW-WDCA, NILU and they are stored in the EBAS database (http://ebas.nilu.no/). Parameters measured are: ammonium in aerosol (mass_concentration_of_ammonium_expressed_as_nitrogen_in_dry_aerosol_particles_in _air), ammonium in aerosol (mass_concentration_of_ammonium_expressed_as_nitrogen_in_dry_aerosol_particles_in _air), calcium in aerosol (mass_concentration_of_calcium_in_dry_aerosol_particles_in _air), chloride in aerosol (mass_concentration_of_chloride_in_dry_aerosol_particles_in _air), magnesium in aerosol (mass_concentration_of_magnesium_in_dry_aerosol_particles_in _air), nitrate in aerosol (mass_concentration_of_nitrate_expressed_as_nitrogen_in_dry_aerosol_particles_in _air), nitrate in aerosol (mass_concentration_of_nitrate_expressed_as_nitrogen_in_dry_aerosol_particles_in _air), potassium in aerosol (mass_concentration_of_potassium_in_dry_aerosol_particles_in _air), sodium in aerosol (mass_concentration_of_sodium_in_dry_aerosol_particles_in _air), sulphate_corrected in aerosol (mass_concentration_of_sulphate_corrected_for_seaspray_expressed_as_sulphur_in_dry_aerosol_particles_in_air), sulphate_corrected in aerosol (mass_concentration_of_sulphate_corrected_for_seaspray_expressed_as_sulphur_in_dry_aerosol_particles_in_air), sulphate_total in aerosol (mass_concentration_of_total_sulphateexpressed_as_sulphur_in_dry_aerosol_particles_in_air), sulphate_total in aerosol (mass_concentration_of_total_sulphateexpressed_as_sulphur_in_dry_aerosol_particles_in_air)
- source :
- surface observation
- institution :
- NO01L, Norwegian Institute for Air Research, NILU, Instituttveien 18, 2007, Kjeller, Norway
- processing_level :
- processing_level_test
- date_created :
- 2021-04-21T11:23:38 UTC
- date_metadata_modified :
- 2021-04-21T11:23:38 UTC
- creator_name :
- Wenche Aas
- creator_type :
- person
- creator_email :
- waa@nilu.no
- creator_institution :
- "Norwegian Institute for Air Research, Atmosphere and Climate Department, NILU"
- contributor_name :
- Anne Hjellbrekke
- contributor_role :
- data submitter
- publisher_type :
- institution
- publisher_name :
- NILU - Norwegian Institute for Air Research, ATMOS, EBAS
- publisher_institution :
- NILU - Norwegian Institute for Air Research, ATMOS, EBAS
- publisher_email :
- ebas@nilu.no
- publisher_url :
- https://www.nilu.no/
- geospatial_bounds :
- POINT Z (78.90715 11.88668 474.0)
- geospatial_bounds_crs :
- EPSG:4979
- geospatial_lat_min :
- 78.90715
- geospatial_lat_max :
- 78.90715
- geospatial_lon_min :
- 11.88668
- geospatial_lon_max :
- 11.88668
- geospatial_vertical_min :
- 474.0
- geospatial_vertical_max :
- 474.0
- geospatial_vertical_positive :
- up
- time_coverage_start :
- 1993-01-01T07:00:00 UTC
- time_coverage_end :
- 2011-01-01T07:00:00 UTC
- time_coverage_duration :
- P0018-00-00T00:00:00
- time_coverage_resolution :
- P0000-00-01T00:00:00
- timezone :
- UTC
- ebas_data_definition :
- EBAS_1.1
- ebas_set_type_code :
- TU
- ebas_timezone :
- UTC
- ebas_file_name :
- NO0042G.19930101070000.20210421112338.filter_3pack..aerosol.18y.1d.NO01L_f3p_d_0042.NO01L_IC.lev2.nc
- ebas_file_creation :
- 2022-04-05T17:28:41.894376 UTC
- ebas_export_state :
- 2022-04-05T16:25:02.397000 UTC
- ebas_export_filter :
- exclude-900,exclude-invalid
- ebas_startdate :
- 19930101070000
- ebas_revision_date :
- 20210421112338
- ebas_statistics :
- arithmetic mean
- ebas_data_level :
- 2
- ebas_period_code :
- 18y
- ebas_resolution_code :
- 1d
- ebas_station_code :
- NO0042G
- ebas_platform_code :
- NO0042S
- ebas_station_name :
- Zeppelin mountain (Ny-Ã…lesund)
- ebas_station_wdca_id :
- GAWANO__ZEP
- ebas_station_gaw_id :
- ZEP
- ebas_station_gaw_name :
- Zeppelin Mountain (Ny Ã…lesund)
- ebas_station_land_use :
- Gravel and stone
- ebas_station_setting :
- Polar
- ebas_station_gaw_type :
- G
- ebas_station_wmo_region :
- 6
- ebas_station_latitude :
- 78.90715
- ebas_station_longitude :
- 11.88668
- ebas_station_altitude :
- 474.0 m
- ebas_regime :
- IMG
- ebas_matrix :
- aerosol
- ebas_laboratory_code :
- NO01L
- ebas_instrument_type :
- filter_3pack
- ebas_instrument_name :
- f3p_d_0042
- ebas_method_ref :
- NO01L_IC
- ebas_standard_method :
- SOP=EMEP_manual_v2014
- ebas_inlet_type :
- Hat or hood
- ebas_medium :
- Teflon
- ebas_humidity_temperaure_control :
- None
- ebas_volume_std_temperature :
- ambient
- ebas_volume_std_pressure :
- ambient
- ebas_organization :
- NO01L, Norwegian Institute for Air Research, NILU, , Instituttveien 18, , 2007, Kjeller, Norway
- ebas_framework_acronym :
- AMAP, CAMP, EMEP, EUSAAR, GAW-WDCA, NILU
- ebas_framework_name :
- , OSPARCOM - Comprehensive Atmospheric Monitoring Programme, European Monitoring and Evaluation Programme, European Supersites for Atmospheric Aerosol Research, World Data Centre for Aerosols, Norwegian Institute for Air Research
- ebas_framework_description :
- , The OSPARCOM Comprehensive Atmospheric Monitoring Programme goal is the assessment of the atmospheric input of selected contaminants to the OSPAR maritime area and regions., The European Monitoring and Evaluation Programme (EMEP) is a scientifically based and policy driven programme under the Convention on Long-range Transboundary Air Pollution (CLRTAP) for int'l co-operation to solve transboundary air pollution problems., Integration of measurements of atmospheric aerosol properties performed in a distributed network of 20 high quality European ground-based stations in support of policy issues on air quality, long-range transport of pollutants and climate change., The World Data Centre for Aerosols is the data repository and archive for microphysical, optical, and chemical properties of atmospheric aerosol of the World Meteorological Organisation's (WMO) Global Atmosphere Watch (GAW) programme., Atmospheric measuremnts produced at NILU.
- ebas_framework_contact_name :
- Wenche Aas, Wenche Aas, Kjetil Tørseth, Ann Mari Fjaeraa, Markus Fiebig, Kjetil Tørseth
- ebas_framework_contact_email :
- waa@nilu.no, waa@nilu.no, kt@nilu.no, amf@nilu.no, Markus.Fiebig@nilu.no, kt@nilu.no
- ebas_originator :
- Aas, Wenche, waa@nilu.no, Norwegian Institute for Air Research, NILU, Atmosphere and Climate Department, Instituttveien 18, , 2007, Kjeller, Norway, ORCID=0000-0002-2908-1970
- ebas_submitter :
- Hjellbrekke, Anne, agh@nilu.no, Norwegian Institute for Air Research, NILU, Atmosphere and Climate Department, Instituttveien 18, , 2007, Kjeller, Norway
- Metadata_Conventions :
- Unidata Dataset Discovery v1.0
- geospatial_lat_units :
- degrees_north
- geospatial_lon_units :
- degrees_east
- comment :
- { "Data definition": "EBAS_1.1", "Set type code": "TU", "Timezone": "UTC", "File name": "NO0042G.19930101070000.20210421112338.filter_3pack..aerosol.18y.1d.NO01L_f3p_d_0042.NO01L_IC.lev2.nc", "File creation": "2022-04-05T17:28:41.894376 UTC", "Export state": "2022-04-05T16:25:02.397000 UTC", "Export filter": "exclude-900,exclude-invalid", "Startdate": "19930101070000", "Revision date": "20210421112338", "Statistics": "arithmetic mean", "Data level": "2", "Period code": "18y", "Resolution code": "1d", "Station code": "NO0042G", "Platform code": "NO0042S", "Station name": "Zeppelin mountain (Ny-Ålesund)", "Station WDCA-ID": "GAWANO__ZEP", "Station GAW-ID": "ZEP", "Station GAW-Name": "Zeppelin Mountain (Ny Ålesund)", "Station land use": "Gravel and stone", "Station setting": "Polar", "Station GAW type": "G", "Station WMO region": "6", "Station latitude": "78.90715", "Station longitude": "11.88668", "Station altitude": "474.0 m", "Regime": "IMG", "Matrix": "aerosol", "Laboratory code": "NO01L", "Instrument type": "filter_3pack", "Instrument name": "f3p_d_0042", "Method ref": "NO01L_IC", "Standard method": "SOP=EMEP_manual_v2014", "Inlet type": "Hat or hood", "Medium": "Teflon", "Humidity/temperature control": "None", "Volume std. temperature": "ambient", "Volume std. pressure": "ambient", "Organization": "NO01L, Norwegian Institute for Air Research, NILU, , Instituttveien 18, , 2007, Kjeller, Norway", "Framework acronym": "AMAP, CAMP, EMEP, EUSAAR, GAW-WDCA, NILU", "Framework name": ", OSPARCOM - Comprehensive Atmospheric Monitoring Programme, European Monitoring and Evaluation Programme, European Supersites for Atmospheric Aerosol Research, World Data Centre for Aerosols, Norwegian Institute for Air Research", "Framework description": ", The OSPARCOM Comprehensive Atmospheric Monitoring Programme goal is the assessment of the atmospheric input of selected contaminants to the OSPAR maritime area and regions., The European Monitoring and Evaluation Programme (EMEP) is a scientifically based and policy driven programme under the Convention on Long-range Transboundary Air Pollution (CLRTAP) for int'l co-operation to solve transboundary air pollution problems., Integration of measurements of atmospheric aerosol properties performed in a distributed network of 20 high quality European ground-based stations in support of policy issues on air quality, long-range transport of pollutants and climate change., The World Data Centre for Aerosols is the data repository and archive for microphysical, optical, and chemical properties of atmospheric aerosol of the World Meteorological Organisation's (WMO) Global Atmosphere Watch (GAW) programme., Atmospheric measuremnts produced at NILU.", "Framework contact name": "Wenche Aas, Wenche Aas, Kjetil Tørseth, Ann Mari Fjaeraa, Markus Fiebig, Kjetil Tørseth", "Framework contact email": "waa@nilu.no, waa@nilu.no, kt@nilu.no, amf@nilu.no, Markus.Fiebig@nilu.no, kt@nilu.no", "Originator": "Aas, Wenche, waa@nilu.no, Norwegian Institute for Air Research, NILU, Atmosphere and Climate Department, Instituttveien 18, , 2007, Kjeller, Norway, ORCID=0000-0002-2908-1970", "Submitter": "Hjellbrekke, Anne, agh@nilu.no, Norwegian Institute for Air Research, NILU, Atmosphere and Climate Department, Instituttveien 18, , 2007, Kjeller, Norway" }
- standard_name_vocabulary :
- CF-1.7, ACDD-1.3
- history :
- None
- creator_url :
- ebas.nilu.no