How to make a 2-D colormap with coordinates
10 ビュー (過去 30 日間)
古いコメントを表示
Hi. I have n points, for each point I have its latitud, longitude and an indicator that take real values (from 0.5 to 2.7). I would like to make a Figure (like a colormap) that shows with colors the value of this indicator for each of these n points. Is that possible? Thanks in advance for any help.
0 件のコメント
採用された回答
その他の回答 (1 件)
jonas
2018 年 10 月 22 日
編集済み: jonas
2018 年 10 月 22 日
Use a surface object
surf(lon, lat, z)
The data must be gridded, so you may have grid the data like this
[LON,LAT] = meshgrid(min(lon):max(lon), min(lat) :max(lat))
Z = griddata(lon,lat, z, LON, LAT)
surf(LON, LAT, Z)
2 件のコメント
jonas
2018 年 10 月 22 日
just set the view,
view([0 90])
or use one of the following functions with the same syntax as surf
- pcolor
- imagesc
- contourf
- mesh
参考
カテゴリ
Help Center および File Exchange で Geographic Plots についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!