how to plot a map
    9 Ansichten (letzte 30 Tage)
  
       Ältere Kommentare anzeigen
    
    ahmad Saad
 am 27 Okt. 2023
  
    
    
    
    
    Kommentiert: ahmad Saad
 am 28 Okt. 2023
            Hi,
 i need to know how i can plot this map ?
8 Kommentare
  Dyuman Joshi
      
      
 am 27 Okt. 2023
				Yes, that's what I am saying.
The countries will be shown as white, but the oceans, seas and any water bodies will be gray in color. You can not change that.
Akzeptierte Antwort
  Cris LaPierre
    
      
 am 27 Okt. 2023
        
      Bearbeitet: Cris LaPierre
    
      
 am 27 Okt. 2023
  
      You could use shapefiles (see this answer: https://www.mathworks.com/matlabcentral/answers/361871-plot-india-map-at-the-background), or the built in coastlines.mat (see here: https://www.mathworks.com/help/map/map-limit-properties.html)
load coastlines.mat
axesm('mercator','MapLatLimit',[5 35],'MapLonLimit',[60 100],'grid','on',...
    'MLineLocation',10,'PLineLocation',5,'MeridianLabel','on','ParallelLabel','on',...
    'LabelFormat','none','MLabelParallel',0)
plotm(coastlat,coastlon)
plotm(17.842,73.089,'r*')
plotm(9.177,77.852,'b*')
xlabel('LONGITUDE(Deg. East)')
ylabel('LATITUDE (Deg. North)')
6 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
				Mehr zu Mapping Toolbox finden Sie in Help Center und File Exchange
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!





