GEplotLabelsDesc

This is an extension of GEplot that adds Labels and Descriptions to points.
93 descargas
Actualizado 20 nov 2017

Ver licencia

Creates a file in kmz format that can be opened into Google Earth.
GEplot uses the same syntax as the traditional plot function but requires Latitude and Longitude (WGS84) instead of x and y.
GEplotLabelsDesc adds 2 additional arguments with point Labels and Description, so you can add text and values to your graphical object. (see picture of Hurricane Maria trajectory).
% Example:
% GEplotLabelsDesc('my_track',Lat,Lon,names,descs,'o-r','MarkerSize',10,'LineWidth',3)
% GEplotLabelsDesc('my_track',Lat,Lon)
%
% Example2:
% Lat= [-36.3100 -36.3100];
% Lon= [-69.29681667 -69.29685];
% names ={'PM8', 'PM9'};
% desc ={'This is an interesting point', 'This is another point'};
% GEplotLabelsDesc('my_dots',Lat,Lon,names,desc,'or');

Citar como

Rafael Palacios (2024). GEplotLabelsDesc (https://www.mathworks.com/matlabcentral/fileexchange/65122-geplotlabelsdesc), MATLAB Central File Exchange. Recuperado .

Compatibilidad con la versión de MATLAB
Se creó con R2007a
Compatible con cualquier versión
Compatibilidad con las plataformas
Windows macOS Linux
Categorías
Más información sobre Google Earth en Help Center y MATLAB Answers.

Community Treasure Hunt

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

Start Hunting!
Versión Publicado Notas de la versión
1.2.0.0

Added support for multiple lines and multiple polygons. Same as plot, if vectors of coordinates contain NaN values the line is broken into different polygons.