Mostrar comentarios más antiguos
下記のようなworldmapに、指定(任意)の緯度経度の点(tlon,tlat)にAのデータをplotをしたいと思っております。
・どのようにすれば、plotできるのか?
・plotの点の種類(×や*など)の指定はできるのか?
・plotの点をAの数値ごとにplotの色を分けたいが、どのようにすればいいのか?
を疑問に思っております。
ご教示くださいますと幸いです。よろしくお願いいたします。
% Figureの設定
f = figure('Position',[100 100 1000 800]); %[left bottom width height]
movegui(f,'east');
% 北緯, 東経の領域を表示
worldmap([-89.9,89.9],[-179.9,180]);
land = shaperead('landareas.shp', 'UseGeoCoords', true);
% 海岸線(陸地部分)表示
geoshow(land, 'FaceColor', [0.3 0.3 0.3]);hold on;
Respuesta aceptada
Más respuestas (0)
Categorías
Más información sobre グラフィックス オブジェクトの識別 en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!