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!