Question
When importing points into GEONIS expert, how can I specify whether points with identical attribute values (e.g. DESCRIPTION) should be imported or not?
Solution
This can be defined in the XML configuration of the point import with the following entry:
impbyidentval="yes"
> points with identical values will be imported
impbyidentval="no"
> points with identical values will not be imported
Example:
<typecodes typecodecol="AC">
<typecodevalue values="130;131;132;133" featureclass="was_armatur">
<subtype asciicol="AC" dbcol="art">
<valueconvert asciivalues="130" dbvalue="0" />
<valueconvert asciivalues="131" dbvalue="1" />
<valueconvert asciivalues="132" dbvalue="2" />
<valueconvert asciivalues="133" dbvalue="3" />
</subtype>
<attr asciicol="Nummer" dbcol="name_nummer" impbyidentval="no" />
<attr asciicol="Bemerkung" dbcol="bemerkung" impbyidentval="no" />
</typecodevalue>
</typecodes>
Comments
0 comments
Article is closed for comments.