Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tpgillam/cam_weather
Munge weather data in Cambridge
https://github.com/tpgillam/cam_weather
Last synced: 16 days ago
JSON representation
Munge weather data in Cambridge
- Host: GitHub
- URL: https://github.com/tpgillam/cam_weather
- Owner: tpgillam
- Created: 2021-06-21T12:16:14.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2024-01-07T20:37:40.000Z (12 months ago)
- Last Synced: 2024-01-07T21:39:50.364Z (12 months ago)
- Language: Julia
- Size: 535 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Cambridge weather historical summary
Source: https://www.cl.cam.ac.uk/research/dtg/weather/index-daily-text.html
1. Download history of weather data (`weather.tar.gz`) from source above.
1. Extracting, should give a directory `daily-text`, containing one file per day.
1. Running `munge.jl` will produce a file, `summary.csv`, as well as some plots.Note that running the experiment requires Julia 1.6. From a shell in this directory, one should be able to do the following to install dependencies and run
everything:```
> julia --project=.
julia> using Pkg; Pkg.instantiate()
julia> include("munge.jl")
```You'll then get some images (as below), plus a [summary CSV file](summary.csv).
## Output
![Temperature](temperature.png)
![Pressure](pressure.png)
![Humidity](humidity.png)## TODO
Allow incremental updates from the website!