Sign inSign up

danielguerra/metar-weather

By danielguerra

Updated over 6 years ago

stores noaa metar data in elasticsearch

Image
1

427

danielguerra/metar-weather repository overview

MetarWeather

METAR reports are airport weather reports from all over the world. This project mirrors NOAA METAR cycles and stores it in elasticsearch.

Usage

After about 10 minutes(depending on internet speed etc.) the data starts flowing into elasticsearch.

View your data in kibana with your browser

http://:5601

Kibana config (add index paterns) Index name or pattern: metar Time-field name: time

Wind map example

Temperature map example

Automatic docker-compose method

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
Manual docker method

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

Tag summary

Content type

Image

Digest

Size

21.7 MB

Last updated

over 6 years ago

docker pull danielguerra/metar-weather