stores noaa metar data in elasticsearch
427
METAR reports are airport weather reports from all over the world. This project mirrors NOAA METAR cycles and stores it in elasticsearch.
After about 10 minutes(depending on internet speed etc.) the data starts flowing into elasticsearch.
http://:5601
Kibana config (add index paterns) Index name or pattern: metar Time-field name: time


Clone this repository
git clone https://github.com/danielguerra69/metar-weather.git
cd metar-weather
Build it, run it, check it, log it
docker-compose build
docker-compose up -d
docker-compose status
docker-compose logs -f
First start elasticsearch
docker run --name es -d docker.elastic.co/elasticsearch/elasticsearch:7.8.0
Second start kibana
docker run -p 5601:5601 --link es:elasticsearch --name kb -d docker.elastic.co/kibana/kibana:7.8.0
Third start metar weather
docker run -d --name metar --link es:elasticsearch danielguerra/metar-weather
After about 10 minutes(depending on internet speed etc.) the data starts flowing into elasticsearch. To be sure check the logs for 00Z.TXT ...
docker logs metar
Content type
Image
Digest
Size
21.7 MB
Last updated
over 6 years ago
docker pull danielguerra/metar-weather