Skip to main content
Solved

Extract folder / subfolder name KML

  • September 4, 2017
  • 4 replies
  • 78 views

danilo_fme
Celebrity
Forum|alt.badge.img+52

Hello,

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.

4 replies

takashi
Celebrity
  • Best Answer
  • September 5, 2017

Read the kmz dataset with the KML reader and see the "kml_name" attribute of the Folder feature.


geosander
Forum|alt.badge.img+7
  • September 5, 2017

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.

danilo_fme
Celebrity
Forum|alt.badge.img+52
  • Author
  • Celebrity
  • September 5, 2017

Read the kmz dataset with the KML reader and see the "kml_name" attribute of the Folder feature.

Hi @takashi, i appreciate your help. Thanks!

 


danilo_fme
Celebrity
Forum|alt.badge.img+52
  • Author
  • Celebrity
  • September 5, 2017
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.