I have a kmz file and i would like to extract the name folder - Attached.
Thanks, -
Danilo
Best answer by takashi
Read the kmz dataset with the KML reader and see the "kml_name" attribute of the Folder feature.
This post is closed to further activity.
It may be an old question, an answered question, an implemented idea, or a notification-only post.
Please check post dates before relying on any information in a question or answer.
For follow-up or related questions, please post a new question or idea.
If there is a genuine update to be made, please contact us and request that the post is reopened.
Read the kmz dataset with the KML reader and see the "kml_name" attribute of the Folder feature.
Yes, that's right! And then use a FeatureMerger to join by the kml_parent_id attribute (on the Placemark feature) and kml_id (on the Folder feature) if I'm not mistaken.
Yes, that's right! And then use a FeatureMerger to join by the kml_parent_id attribute (on the Placemark feature) and kml_id (on the Folder feature) if I'm not mistaken.
Hi @sander_s, thanks your answer. I'll use the FeatureMerger to join... Thanks one more time.