How to extract the values of kml file x,y,z from MATLAB
42 次查看(过去 30 天)
显示 更早的评论
Is it possible to extract the values of kml file x,y,z from matlab?
Is there any url or document to refer to in this regard?
0 个评论
回答(2 个)
Karanjot
2024-8-22
Hi,
It is possible to extract the coordinates (latitude, longitude, altitude) from a KML (Keyhole Markup Language) file using MATLAB.
You can use the kml2struct file exchange submission to import a Google Earth .kml file of points, lines, polygons, or a combination, as a Matlab struct, compatible with the features provided with the Mapping Toolbox.
You may refer to the following blog on working with KML files within MATLAB
To access the file exchange submission, refer the link below
I hope this helps!
0 个评论
Angelo Yeo
2024-8-22
readgeotable support KML files to read. However, in R2024a, it only supports reading the shapes, name, and description of KML files as described in the doc. See its doc for further information.
unzip("KML_Samples.zip");
filename = "KML_Samples.kml";
T = readgeotable(filename)
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Google Earth 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!