How to grid data with coordinates to create a spatial plot using geoshow
Mostra commenti meno recenti
I have 3 vectors: data, lat, lon which I am trying to plot spatially for the continental US. Is there a function where I can organize my lat and lon vectors in the appropriate gridded format which geoshow will plot properly while ensuring the data vector is organized in the same fashion so the data points remain with their respective coordinates?
Risposta accettata
Più risposte (1)
KSSV
il 31 Ago 2017
Modificato: Chad Greene
il 31 Ago 2017
Let data be your nx3 array which has lon, lat and data in the first, second and column respectively.
% Get longitude and latitude vectors
x = unique(data(:,1)) ;
y = unique(data(:,2)) ;
% dimensions of the data
nx = length(x) ;
ny = length(y) ;
% Frame matrix of grid
D = reshape(data(:,3),[ny,nx]) ;
% flip matrix to adjust for plot
H = flipud(H) ;
% Transpose the matrix
H = H' ; % Check if is required
surf(x,y,H) ;
16 Commenti
Ronnie Abolafia-Rosenzweig
il 31 Ago 2017
In this solution, using the unique function to create latitude and longitude vectors will erase any duplicates of latitude and then any duplicates of longitude. It is okay to have multiple latitude readings, as long as they are paired with different respective longitude readings. I do not want to erase data points from the vectors. Both vecotrs (lat and lon) have already been updated to ensure that there are no duplicate coordinates.
I am seeking for a way to transform vectors in matrices which can be read by the function geoshow.
KSSV
il 31 Ago 2017
The above code works..if your data is a structured grid and in (x,y,z) format......if it is unstructured grid, you need to follow the below:
x0 = min(lon) ; x1 = max(lon) ; nx = 100 ;
y0 = min(lat) ; y1 = max(lat) ; ny = 100 ;
x = linspace(x0,x1,nx) ;
y = linspace(y0,y1,ny) ;
[X,Y] = meshgrid(x,y) ;
Z = griddata(lon,lat,data,X,Y)
surf(X,Y,Z)
Ronnie
il 31 Ago 2017
Ronnie
il 31 Ago 2017
KSSV
il 31 Ago 2017
Attach your data...it shall work...
Ronnie Abolafia-Rosenzweig
il 1 Set 2017
I appreciate your help. I will send the data tomorrow once I am back at the computer!
Ronnie
il 1 Set 2017
KSSV
il 2 Set 2017
Week end...I will get back to you on Monday ..:)
Ronnie Abolafia-Rosenzweig
il 2 Set 2017
Enjoy the weekend, I will not have access to my computer until Monday as well. :)
KSSV
il 4 Set 2017
Where is .mat file?
Ronnie Abolafia-Rosenzweig
il 4 Set 2017
The site will not allow me to send any files greater than 5 MB, which the lat and data files are. The LON.mat file was bellow the size limit and is attached. Can you please send me an email at ronnie.aggie2016@gmail.com and I will respond with the .mat files. I apologize for the inconvenience
KSSV
il 5 Set 2017
You may attach the file in your google drive and past the link here......
Ronnie Abolafia-Rosenzweig
il 5 Set 2017
Modificato: KSSV
il 6 Set 2017
It should allow you full access. Thank you
KSSV
il 6 Set 2017
This works....
lon = load('LON.mat') ;
lon = lon.lon ;
lat = load('LAT.mat') ;
lat = lat.lat ;
data = load('DATA.mat') ;
data = data.data ;
%%remove -9999
data(lon==-9999) = [] ;
lon(lon==-9999) = [] ;
lat(lat==-9999) = [] ;
scatter(lon,lat,data,data)
Ronnie
il 6 Set 2017
TAPAS
il 12 Giu 2018
The code xyz2grid is not working it's showing mistake in line 31 in xyz read and line 72 in in xyz2grid
Categorie
Scopri di più su Lengths and Angles in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!