Skip to main content

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?

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!


Reply