- Persist station (implicit insert/update)
- Search by id or zipcode or latitude
Example request: Add/Update a station
curl -XPOST -H "Content-Type:application/json" \
-d '{"id":"id", "zipcode":"zipcode","latitude":"1","longitude":"1"}' \
http://localhost:8080/stations
curl http://localhost:8080/stations/search
curl http://localhost:8080/stations/search?id=id
curl http://localhost:8080/stations/search?zipcode=12345
curl http://localhost:8080/stations/search?latitude=1.234&longitude=3.123&airDistanceInMeter=100