!!@ comment = "Erweitert Wertebereich von SIA405 Status Betriebs- und Planungszustand."
Statuswerte EXTENDS SIA405_Base_Abwasser_LV95.Status = (
!!@ comment = "Erweiterung Basiswerte im Medium, hierarchische Modellierung und Anpassung mit Compiler 4.5.13"
!!@ comment = "fasst in_Betrieb und folgende Werte zusammen"
in_Betrieb (provisorisch,wird_aufgehoben),
!!@ comment = "fasst tot und folgende Werte zusammen"
tot (
!!@ comment = " tot, !! existiert nicht im Medium Abwasser"
aufgehoben_nicht_verfuellt,aufgehoben_unbekannt,verfuellt),
!!@ comment = "fasst weitere und folgende Werte zusammen"
weitere (Berechnungsvariante,geplant,Projekt));
!!@ comment = "neu 17.7.2015 Erweitert Wertebereich von SIA405 Status"
Status = ALL OF Statuswerte;
So ausser_Betrieb is currently twice in the value list - that is a bit strange and not correct. As far as I understand ALL OF should give me 14 different values, now I have 15 because ausser_Betrieb is listed twice. So I even cannot JOIN the two table easily.
Nice would be also to have all values of Statuswerte in one table.
How could this be influenced?
With an ini / toml file configuration or should this be corrected in the code.
New issue following up https://github.com/claeis/ili2db/issues/460
There is one open issue with the attribut Status
Here we have the following INTERLIS definitions:
!!@comment = "Betriebs- und Planungszustand. neu 2010: Erweiterungen dazu in den einzelnen Medien definieren"
Status= (
ausser_Betrieb,
in_Betrieb,
tot,
unbekannt,
weitere
);
and then extended:
!!@ comment = "Erweitert Wertebereich von SIA405 Status Betriebs- und Planungszustand."
Statuswerte EXTENDS SIA405_Base_Abwasser_LV95.Status = (
!!@ comment = "Erweiterung Basiswerte im Medium, hierarchische Modellierung und Anpassung mit Compiler 4.5.13" !!@ comment = "fasst in_Betrieb und folgende Werte zusammen"in_Betrieb (
provisorisch,
wird_aufgehoben
),
!!@ comment = "fasst tot und folgende Werte zusammen"tot (
!!@ comment = " tot, !! existiert nicht im Medium Abwasser"aufgehoben_nicht_verfuellt,
aufgehoben_unbekannt,
verfuellt
),
!!@ comment = "fasst weitere und folgende Werte zusammen"weitere (
Berechnungsvariante,
geplant,
Projekt
)
);
!!@ comment = "neu 17.7.2015 Erweitert Wertebereich von SIA405 Status"Status = ALL OF Statuswerte;
So
ausser_Betrieb
is currently twice in the value list - that is a bit strange and not correct. As far as I understand ALL OF should give me 14 different values, now I have 15 becauseausser_Betrieb
is listed twice. So I even cannot JOIN the two table easily.