This repository contains the codes developed during an internship in Airbus and used in the Master Thesis, also in this repository.
All the code here is owned by Airbus
This file contains a script capable of download GFS or GENS data from NOAA's website. Some smaller modifications may be necessary to adapt it to your necessity (days, forecast hours, etc).
A code capable of parsing the .grib data download using the previous notebook. The data will be parsed to a DataFrame (which is not optimal depending on how you intends to use the data).
Similar to the previous one, but the resulting data will be a numpy matrix.
Code dedicated to visualize the data punctually.
A brief analysis of how the value of the wind is dependent from the value close to it. It evaluated de dependencies in space and also in time.
Application of the punctual metric and evaluation of some distributions using it (Gaussian, KDE, Histogram and best fitting). (slow) -> since it uses DataFrame in a non-efficient way, the calculations are slow.
Application of the CRPS metric and evaluation of the Gaussian distribution and the Histogram. (slow) -> since it uses DataFrame in a non-efficient way, the calculations are slow.
Application and analysis of the simplified model, i.e.,
Autoencoder application.
Generative Adversarial Model first implementation