This dataset is a sample extract from the Urban Climate Resilience research project conducted at the Department of Environmental Sciences, University of Example.
urban-climate-resilience-demo/ │ ├── README.md ├── quality_check.py ├── data_demo.ipynb │ ├── District_A/ │ └── 2024-07-01_sensor01.csv │ ├── District_B/ │ └── 2024-07-01_sensor11.csv │ └── District_C/ └── 2024-07-01_sensor21.csv
You can open the CSV files in any spreadsheet program or load them in Python/R. Example Python snippet:
import pandas as pd
df = pd.read_csv('District_A/2024-07-01_sensor01.csv')
print(df.head())