How to create a geographic colormap of the world using lat lon data?
이전 댓글 표시
Hello Everyone!
I am quiet familiar with MATLAB since 3 years. I want to create a geographic colormap from some data (data matrix looks like this, longitude, latitude, data). How can I do that with MATLAB?
I have used some matlab code to do it, however matlab only plots the lat lon data, however it can't plot them in the continuous scale, thus the figure looks bad as compared to GMT/ NCL.
I am attaching the code below .
fig=figure('WindowState','maximized');
lat=data(:,2);lon=data(:,1);
marker_size=100;
geoscatter(lat,lon,marker_size,data(:,end),'*','LineWidth',2);
colormap(jet)
colorbar
caxis([0 10])
This is the figure which I got.

I have tried to plot that with Genereic Mapping Tools (GMT), however I want to create it using MATLAB. I am attaching the GMT created figure for your reference below. The figure is created using Robinson Map Projection.
This is the figure I want to create. 

Please someone help me to solve this. Thank you very much.
N.B. -- Please don't suggest GMT+ MATLAB built in setup, beacause I am using a Windows system, where GMT isn't supportable.
채택된 답변
추가 답변 (0개)
카테고리
도움말 센터 및 File Exchange에서 Geographic Plots에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

