How to reshape latitude, longitude and data of not regularly-spaced vectors into 2-D matrix to plot a pcolorm?
5 次查看(过去 30 天)
显示 更早的评论
I have latitude, longitude and data vectors of size 7631 that are not equally spaced.
I want to plot a pcolorm of the data at the given latitude and longitude.
Since my data is not regularly-spaced I have a hard time being able to do a pcolorm.
I thought it would work with latitude, longitude and data as vectors but it does not work properly.
I am converting data from a x-y grid to a lat-lon grid. I want to reproduce the figure on the x-y grid below on the geo-referenced map.
% Load latitude, longitude & data
load('lat_lon_data.mat');
figure(1);
ncpolarm('lat',66); hold on;
%pcolorm(latitude,longitude,data); %NOT WORKING
Figure on my original x-y grid that I want to convert on a georeferenced map:
Georeferrenced map on which I want to do a pcolorm of my data.
Thank you
0 个评论
回答(1 个)
Arun
2023-10-19
Hello,
I understand that you are facing difficulties to plot using “pcolorm” as the data is not regular.
“pcolorm“ is limited for plotting irregular data. “geoscatter” function helps achieve the desired result for irregular data. Here is a sample code for generating the map using the data you shared:
load('lat_lon_data.mat'); %load data
geoscatter(latitude, longitude, 50, data, 'filled'); %plot the map
geobasemap('topographic');
colorbar;
Please refer the shared MathWorks documentation link for more details: https://in.mathworks.com/help/matlab/ref/geoscatter.html
Hope this helps.
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Weather and Atmospheric Science 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!