I have a CityGML dataset that I want to test if its value is not in a range of values (codelist). There are generic attributes that are easy to test with the Tester transformer. These look like this:
<gen:stringAttribute name="DatenquelleDachhoehe">
<gen:value>1000</gen:value>
</gen:stringAttribute>
<gen:stringAttribute name="DatenquelleLage">
<gen:value>1000</gen:value>
</gen:stringAttribute>
Others look like this:
<bldg:roofType>3100</bldg:roofType>
<bldg:measuredHeight uom="urn:adv:uom:m">7.808</bldg:measuredHeight>
<bldg:storeysAboveGround>2</bldg:storeysAboveGround>
How can I test these attributes? Thx