https://github.com/chtjonas/weather
WIP: Processing data from the Computer Lab's weather station at Cambridge University
https://github.com/chtjonas/weather
cambridge finagle scala university-of-cambridge weather
Last synced: about 2 months ago
JSON representation
WIP: Processing data from the Computer Lab's weather station at Cambridge University
- Host: GitHub
- URL: https://github.com/chtjonas/weather
- Owner: CHTJonas
- License: mit
- Created: 2018-02-11T00:23:47.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2019-06-27T22:48:55.000Z (almost 6 years ago)
- Last Synced: 2025-02-01T03:42:14.171Z (4 months ago)
- Topics: cambridge, finagle, scala, university-of-cambridge, weather
- Language: Scala
- Homepage: https://www.cl.cam.ac.uk/research/dtg/weather/
- Size: 15.6 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Weather
A very simple API for obtaining data from the Digital Technology Group's weather station at the University of Cambridge Computer Lab. Please see https://www.cl.cam.ac.uk/research/dtg/weather/ for more details.## Compiling
You will need to have Java 8 and the [Scala Build Tool](https://www.scala-sbt.org) installed. Then run the following in your terminal:```bash
sbt package
sbt "run com.github.chtjonas.weather.Application -port 8080"
```This will start a development HTTP server bound to the default port of 8080.
## Motivation
This project is primarily intended as a learning exercise in concurrent programming and RPC engineering in Scala. Feel free to repurpose to your own ends!