Permalink
Cannot retrieve contributors at this time
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
5011CEM-Visualisation_Project/color_blind_sup.m
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
89 lines (73 sloc)
2.39 KB
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
%% | |
fprintf("1-p or d\n") | |
fprintf("2-t\n") | |
cb_input=input("cb input:"); | |
[X] = 30.05:0.1:69.95; % create X value | |
[Y] = -24.95:0.1:44.95;% create Y values | |
% create a mesh of values | |
Z = peaks(700); | |
Z = Z(:,151:550); | |
figure(1) | |
if cb_input == 1 | |
colormap Spring; | |
end | |
if cb_input == 2 | |
colormap Jet; | |
end | |
% Create some data | |
[X] = 30.05:0.1:69.95; % create X value | |
[Y] = -24.95:0.1:44.95;% create Y values | |
% create a mesh of values | |
Z = peaks(700); | |
Z = Z(:,151:550); | |
% Display the raw data | |
figure(1) | |
mesh(X,Y,Z) | |
% The data you will have from the NetCDF files will be X, Y and Z where | |
% X & Y are the Lat and Lon values in a vector form | |
% Z represents the ozone in a 2D array | |
% The data provided here as X, Y, Z is in the corresponding formats. | |
%% Create a display of the data from the NetCDF files like this | |
[X,Y] = meshgrid(X, Y); | |
figure(2); | |
clf | |
% Create the map | |
worldmap('Europe'); % set the part of the earth to show | |
load coastlines | |
plotm(coastlat,coastlon) | |
land = shaperead('landareas', 'UseGeoCoords', true); | |
geoshow(gca, land, 'FaceColor', [0.5 0.7 0.5]) | |
lakes = shaperead('worldlakes', 'UseGeoCoords', true); | |
geoshow(lakes, 'FaceColor', cb_list(1)) | |
rivers = shaperead('worldrivers', 'UseGeoCoords', true); | |
geoshow(rivers, 'Color', cb_list(2)) | |
cities = shaperead('worldcities', 'UseGeoCoords', true); | |
geoshow(cities, 'Marker', '.', 'Color', cb_list(3)) | |
% Plot the data | |
surfm(X, Y, Z, 'EdgeColor', 'none',... | |
'FaceAlpha', 0.5) % edge colour outlines the edges, 'FaceAlpha', sets the transparency | |
%% Plot contour map | |
% [X,Y] = meshgrid(X, Y); % this calculation has been carried out above | |
% already | |
figure(3); | |
clf | |
% create the map | |
worldmap('Europe'); % set the part of the earth to show | |
load coastlines | |
plotm(coastlat,coastlon) | |
%bordersm('countries','facecolor','k','edgecolor','k') | |
land = shaperead('landareas', 'UseGeoCoords', true); | |
geoshow(gca, land, 'FaceColor', [0.5 0.7 0.5]) | |
lakes = shaperead('worldlakes', 'UseGeoCoords', true); | |
geoshow(lakes, 'FaceColor', 'blue') | |
rivers = shaperead('worldrivers', 'UseGeoCoords', true); | |
geoshow(rivers, 'Color', 'blue') | |
cities = shaperead('worldcities', 'UseGeoCoords', true); | |
geoshow(cities, 'Marker', '.', 'Color', col_blue) | |
% display the data | |
NumContours = 10; | |
contourfm(X, Y, Z, NumContours) | |
% This is a bit advanced, sets the visibility of the various parts of the | |
% plot so the land, cities etc shows through. | |
Plots = findobj(gca,'Type','Axes'); | |
Plots.SortMethod = 'depth'; |