Skip to main content
Question

How to add "genericAttributeSet" tag in CityGML data

  • November 29, 2020
  • 1 reply
  • 66 views

I would like to generat "genericAttributeSet" tag in CityGML data like as follows:

   <gen:genericAttributeSet name="xxxxxxxxxxxxx">

     <gen:stringAttribute name="xx">

      <gen:value>yyy</gen:value>

     </gen:stringAttribute>

     <gen:stringAttribute name="aaaaaaa">

      <gen:value>12345</gen:value>

     </gen:stringAttribute>

     <gen:measureAttribute name="zzzzz">

      <gen:value uom="m">67.54</gen:value>

     </gen:measureAttribute>

</gen:genericAttributeSet>

Could you tell me how to manage attributs for this?

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.

1 reply

davtorgh
Contributor
Forum|alt.badge.img+12
  • Contributor
  • December 1, 2020

Hi @bigapplerizzi19​ ,

 

as far as I know the big trouble with gml attributes is to find the correct way to construct them complying with the standard. Done this you can use an AttributeCreator. Maybe you could start from this document and this article.

 

Hope that helps!