Shift Map in App Designer
2 次查看(过去 30 天)
显示 更早的评论
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
0 个评论
采纳的回答
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.
map = shaperead('landareas.shp', 'UseGeoCoords',true);
worldmap([-45 80],[0 360]) % approximately centered over the pacific
geoshow(map)
Then draw rectangle.
h = drawrectangle(app.UIAxes); % supply your axis handle
4 个评论
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Graphics Object Properties 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!