GEplotLabelsDesc

버전 1.2.0.0 (34.2 KB) 작성자: Rafael Palacios
This is an extension of GEplot that adds Labels and Descriptions to points.
다운로드 수: 93
업데이트 날짜: 2017/11/20

라이선스 보기

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');

인용 양식

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

MATLAB 릴리스 호환 정보
개발 환경: R2007a
모든 릴리스와 호환
플랫폼 호환성
Windows macOS Linux
카테고리
Help CenterMATLAB Answers에서 Google Earth에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!
버전 게시됨 릴리스 정보
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.