---
jupytext:
  formats: md:myst
  text_representation:
    extension: .md
    format_name: myst
kernelspec:
  display_name: Python 3
  language: python
  name: python3
---

# Rotronic HC2A-S3

## Instrumentation

The BCO is equipped with a HC2A-S3 sensor manufactured by Rotronic. The instrument measures relative humidity, temperature and dew point temperature and data are available from 2021-07-09.

The instrument is installed $29\,\mathrm{m}$ above mean sea level.

The sensor is a HYGROMER® HT-1 and the measurement range for the temperature is -50 to +100 °C, while the relative humidity measurement range is 0 to 100 %. The temperature accuracy is ±0.1 K at 10 to 30 °C, and the relative humidity accuracy is ±0.8 %.

The following variables are provided:

| Abbreviation | Variable | Unit |
|---|---|---|
| RH | Relative humidity | % |
| T | Temperature | degree_Celsius |
| DT | Dew point temperature | degree_Celsius |

## Data Availability

The data from the Rotronic HC2A-S3 sensor are available as `BCO.surfacemet_hc2a` in the catalog.

```python
import intake

cat = intake.open_catalog("https://tcodata.mpimet.mpg.de/catalog.yaml")
ds_hc2a = cat.BCO.surfacemet_hc2a.to_dask()
ds_hc2a
```

## Sample Plot

```python
ds_hc2a.DT.sel(time="2024").resample(time="1D").mean().plot(label="Dew point")
ds_hc2a.TT.sel(time="2024").resample(time="1D").mean().plot(label="Temperature")

```