06-18-2009 07:24 AM
Call ChnPropCreate(ChName, "SH_innen", DataTypeFloat64)Call ChnPropValSet(ChName, "SH_innen", A_innen_)
die Kanaleigenschaft "SH_innen" vom Typ Float64 erzeugt und den Wert A_innen_ zugewiesen.
A_innen kann den Wert Novalue annehmen. Der dataFinder indiziert nur reelle Werte.
Wie kann ich mit dem dataFinder die Kanäle mit dem Wert Novalue finden?
Solved! Go to Solution.
06-22-2009 09:59 AM
Actually there is no way to search for NOVALUE.
The only thing I can think of is using <>.
So if you search for
SH_innen <> 1.23456
the result will also contain the NOVALUE elements but not the files
where the attribute SH_innnen does not exist.
So if the amount of data is n't to big it would be possible to loop over the files.
So I do not think that there is a good solution for this.
Greetings
Andreas