Shift Map in App Designer

5 ビュー (過去 30 日間)
meghannmarie
meghannmarie 2020 年 7 月 24 日
編集済み: Adam Danz 2020 年 7 月 28 日
In app designer I am trying to shift my world map to be centered over the pacific. The whole point of the map is to use the function drawrectangle so the user can select coordinates with a bounding box. I want to be able to convert map to be centered over the pacific in case the user wants to specify a box crossing the dateline. It seems like app designer limited what I can do with figures. I tried to make a map axis so I could just reproject it, but I cannot figure out how to get the map axis in appdesigner nor do I know if it would work with drawrectangle. Here is what i presently have to draw the map centered over the atlantic (-180 to 180). Any ideas how to change this to center the map and shapefile over the pacific (0 to 360)?
The commented out lines is what i tried to get the map axis into the UIAxis, it didnt work...
% Code that executes after component creation
function startupFcn(app)
d = uiprogressdlg(app.UIFigure,'Title','Setting up parallel pool.',...
'Indeterminate','on');
blue = [180/255 198/255 231/255];
green = [83/255 129/255 53/255];
% figure(app.UIFigure)
% h = axesm('mercator', 'maplonlimit', [0 360]);
% hCopy = copyobj(h.Children, app.UIAxes); % Copy all of the axis' children to your app axis
% delete(h.Parent)
geoshow(app.UIAxes,'landareas.shp', 'FaceColor', green);
app.UIAxes.Color = blue;
xlim(app.UIAxes,[-180 180])
xticks(app.UIAxes,-180:30:180)
xlabel(app.UIAxes,'Longitude')
ylim(app.UIAxes,[-90 90])
yticks(app.UIAxes,-90:15:90)
ylabel(app.UIAxes,'Latitude')
app.UIAxes.XGrid = true;
app.UIAxes.YGrid = true;
app.pool = gcp;
app.ParallelPoolSizeEditField.Value = app.pool.NumWorkers;
close(d)
end

採用された回答

Adam Danz
Adam Danz 2020 年 7 月 28 日
編集済み: Adam Danz 2020 年 7 月 28 日
Since the worldmap function does not currently support setting parent axes, you'll have to create the plot in an external figure, make all needed changes, and then copy it to your app's axes. Here are instructions.
To center the plot on the pacific ocean, set the lat and lon limits using worldmap(latlim,lonlim).
map = shaperead('landareas.shp', 'UseGeoCoords',true);
worldmap([-45 80],[0 360]) % approximately centered over the pacific
geoshow(map)
Then copy to your app axes. See this comment below for details.
Then draw rectangle.
h = drawrectangle(app.UIAxes); % supply your axis handle
  4 件のコメント
meghannmarie
meghannmarie 2020 年 7 月 28 日
Thanks, that is exactly what I was looking for!! I am pretty sure this will work for me.
Adam Danz
Adam Danz 2020 年 7 月 28 日
It was fun to figure it out along with ya.

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeDevelop uifigure-Based Apps についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by