フィルターのクリア

Write Kml with vector of coordinates

7 ビュー (過去 30 日間)
Ahmet Hakan UYANIK
Ahmet Hakan UYANIK 2022 年 7 月 1 日
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 件のコメント
Garmit Pant
Garmit Pant 2022 年 7 月 4 日
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.

サインインしてコメントする。

回答 (1 件)

Siraj
Siraj 2022 年 7 月 4 日
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 :
  1. Read a kml file into a struct.
  2. Convert the struct into a table using "struct2table"
  3. From this tabel you can directly access the columns for latitude and longitude.
For more information you can check Vector to Kml and Importing kml files.
Hope this helps
  1 件のコメント
Ahmet Hakan UYANIK
Ahmet Hakan UYANIK 2022 年 7 月 7 日
Hi,
I think Garmit Pant replied as he could not find a function to write the coordinates into kml files in single structs. That is how I wanted to create the kml file but seems like it does not exist.

サインインしてコメントする。

Community Treasure Hunt

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

Start Hunting!

Translated by