Juanezm / process_netcdf

A repository to process netcdf files provided by UK met office

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

A repository containing code to handle ERA 5 data provided by UK MetOffice

Docker image spins up a jupyter instance:

to run Jupyter notebook locally first build the image with:

docker build -t <your docker repo>:<your tag> .

e.g.: docker build -t davidedelerma/nc_playground:0.0.6 .

then run the docker container using:

docker run -it -p 8888:8888 -e S3_ID=<your aws access key> -e S3_KEY=<your aws secret access key> davidedelerma/netcdf_playground:0.0.6

This docker file is based on the official jupyter notebook base image so full focumentation can be found at: Link to official jupyer docker documentation

To run the 30 years average processor:

docker run -it -e GRANT_SUDO=yes --user root -p 8888:8888 -e S3_ID=<your aws access key> -e S3_KEY=<your aws secret access key> davidedelerma/nc_playground:0.0.6 python work/src/entrypoints/process_30ys_average.py

About

A repository to process netcdf files provided by UK met office

License:Apache License 2.0


Languages

Language:Jupyter Notebook 70.4%Language:Python 28.3%Language:Dockerfile 1.3%