Plot Lat, Long, and Temperature as a Contour Plot

1 回表示 (過去 30 日間)
Amanda
Amanda 2012 年 8 月 21 日
コメント済み: Lindsay Anderson 2018 年 1 月 31 日
I am really at a stand still -- thinking it would be easy.
I have 3 arrays - Latitude, Longitude, and Temperature,
and at each data point or location I want to plot the temperature
as a contour plot.
So at 45 123 the temperature is 73.
Sample of Values:
Latitude = [45 45 67;
34 31 54;
60 63 61]
Longitude = [123 121 117
114 132 119
122 135 134]
Temp = [73 75 75
73 67 72
82 78 80]
Thanks, Amanda
  1 件のコメント
Lindsay Anderson
Lindsay Anderson 2018 年 1 月 31 日
I would also like to do this, but with water depth data for each lat long coordinate

サインインしてコメントする。

採用された回答

Azzi Abdelmalek
Azzi Abdelmalek 2012 年 8 月 21 日
編集済み: Azzi Abdelmalek 2012 年 8 月 21 日
plot3(Latitude(:),Longitude(:),Temp(:))
xlabel('latitude'),ylabel('longitude'),zlabel('temperature');grid
OR
mesh(Latitude,Longitude,Temp)
xlabel('latitude'),ylabel('longitude'),zlabel('temperature');grid

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeContour Plots についてさらに検索

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by