Write Kml with vector of coordinates
4 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Hi,
I have a vector of latitude and longitude where I want to create a kml out of them. However, when I tried with
Poly = kmlwritepoint('new.kml',latitude,longitude)
it saves each point of coordinates individually in struct. That is why in case of reading the kml, I am having so many structs.
Is there any way to save the kml, such a way that I can read the coordinates in a single struct. (e.g. Poly.Lat(1000x1 double) and Poly.Lon(1000x1 double))
1 Commento
Garmit Pant
il 4 Lug 2022
Hello Ahmet
The kmlwritepoint function stores the data into kml files as individual points. There are other ways to write data into kml files like kmlwrite, kmlwriteline and kmlwritepolygon but they all serve different purposes. I could not find a function to write the coordinates into kml files in single structs.
Risposte (1)
Siraj
il 4 Lug 2022
Hi,
It is my understanding that you want to read a kml file into a single struct such that you can access all the latitudes and longitudes at once. Currenlty I am not sure if there exists a method to read the kml file into a single struct. You can try :
- Read a kml file into a struct.
- Convert the struct into a table using "struct2table"
- From this tabel you can directly access the columns for latitude and longitude.
Hope this helps
Vedere anche
Categorie
Scopri di più su Structures in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!