diff --git a/VisualisationMap.m b/VisualisationMap.m index 00f68fb..fd9eb4e 100644 --- a/VisualisationMap.m +++ b/VisualisationMap.m @@ -3,7 +3,21 @@ file_nc = 'o3_surface_20180701000000.nc'; clc; disp('This software allows user to look over an European Map and analyse the ozone layer.') -disp('Colorblind supported') +disp('Colorblind support:') +disp('If you are having problems with color please choose one of the options: 1.Deuteranopia, 2.Tritanopia, 3.Protanopia, 0. For none') +colorcorrection = input('Enter: ') + +%%Colour the map with the user input +if colorcorrection == 0 + colormap default +elseif colorcorrection == 1 + colormap winter +elseif colorcorrection == 2 + colormap autumn +elseif colorcorrection == 3 + colormap spring +end +clc %%Option for user to choose which model to see disp('Choose a model you wish to see : 1. Mocage map model, 2. Eurad map model, 3. Match map model, 4. Emep map model, 5. Silam map model, 6. Ensemble map model, 7. Chimere map model, 8. Lotoseuros map model') userInput = input('Choose one of the available models: ')