diff --git a/approved/ea+xmi/EAXMI.zip b/approved/ea+xmi/EAXMI.zip index 63a3537ec..239367ff9 100644 Binary files a/approved/ea+xmi/EAXMI.zip and b/approved/ea+xmi/EAXMI.zip differ diff --git a/approved/fc/FC_INSPIRE_v2023.1.xml b/approved/fc/FC_INSPIRE_v2023.2.xml similarity index 96% rename from approved/fc/FC_INSPIRE_v2023.1.xml rename to approved/fc/FC_INSPIRE_v2023.2.xml index 6a174239e..f7ced8711 100644 --- a/approved/fc/FC_INSPIRE_v2023.1.xml +++ b/approved/fc/FC_INSPIRE_v2023.2.xml @@ -4,9 +4,9 @@ 'INSPIRE application schemas' This feature catalogue gives an informative overview of the spatial object types and data types defined in the INSPIRE data specifications. These types are used by data providers for the exchange and classification of spatial objects from data sets that relate to one or several INSPIRE spatial data themes. - For the normative requirements, please refer to the <a href='https://eur-lex.europa.eu/eli/reg/2013/1253/oj'>COMMISSION REGULATION (EU) No 1089/2010 of 23 November 2010 on the interoperability of spatial data sets and services</a>. For a more detailed description of the application schemas, see the data specification guidance documents at <a href='https://inspire.ec.europa.eu/data-specifications/2892'>https://inspire.ec.europa.eu/data-specifications. + For the normative requirements, please refer to the <a href='http://data.europa.eu/eli/reg/2010/1089/2014-12-31'>COMMISSION REGULATION (EU) No 1089/2010 of 23 November 2010 on the interoperability of spatial data sets and services</a>. For a more detailed description of the application schemas, see the data specification guidance documents at <a href='https://inspire.ec.europa.eu/data-specifications/2892A'>https://inspire.ec.europa.eu/data-specifications. n/a (each application schema is versioned separately) - 31/01/2023 + 31/07/2023 INSPIRE Maintenance and Implementation Group (MIG) Addresses @@ -47,6 +47,18 @@ Spatial Object Type + + AddressCountry + /* An address shall have an admin unit address component spatial object whose level is 1 (Country) */ inv: self.component -> forAll (a1 | exists(a1.parent.oclIsTypeOf(AdminUnitName) and a1.parent.level=1)) + + + AddressPosition + /* An address shall have exactly one default geographic position (default attribute of GeographicPosition must be true) */ inv: self.position -> one(a1 | a1.default = true) + + + EndLifeSpanVersion + /* If date set endLifespanVersion must be later than beginLifespanVersion (if set) */ inv: self.endLifespanVersion.isAfter(self.beginLifespanVersion) + @@ -354,6 +366,10 @@ Spatial Object Type + + EndLifeSpanVersion + /* If date set endLifespanVersion must be later than beginLifespanVersion (if set) */ inv: self.endLifespanVersion .isAfter(self.beginLifespanVersion) + @@ -434,6 +450,10 @@ Spatial Object Type + + EndLifeSpanVersion + /* If date set endLifespanVersion must be later than beginLifespanVersion (if set) */ inv: self.endLifespanVersion .isAfter(self.beginLifespanVersion) + @@ -622,6 +642,16 @@ Data Type + + DesignatorEmpty + If no designator exists, a name is required. + inv: self.designator->isEmpty() implies self.name->notEmpty() + + + NameEmpty + If no name exists, a designator is required. + inv: self.name->isEmpty() implies self.designator->notEmpty() + @@ -857,6 +887,10 @@ Spatial Object Type + + EndLifeSpanVersion + /* If date set endLifespanVersion must be later than beginLifespanVersion (if set) */ inv: self.endLifespanVersion .isAfter(self.beginLifespanVersion) + @@ -1853,6 +1887,20 @@ Spatial Object Type + + PostCodeEmpty + If no post code exists, a post name is required. + inv: self.postCode->isEmpty() implies self.postName->notEmpty() + + + PostNameEmpty + If no post name exists, a post code is required. + inv: self.postName->isEmpty() implies self.postCode->notEmpty() + + + EndLifeSpanVersion + /* If date set endLifespanVersion must be later than beginLifespanVersion (if set) */ inv: self.endLifespanVersion .isAfter(self.beginLifespanVersion) + @@ -1982,6 +2030,10 @@ Spatial Object Type + + EndLifeSpanVersion + /* If date set endLifespanVersion must be later than beginLifespanVersion (if set) */ inv: self.endLifespanVersion .isAfter(self.beginLifespanVersion) + @@ -2454,6 +2506,18 @@ Spatial Object Type + + AdmininstrativeUnitHighestLevel + /* No unit at highest level can associate units at a higher level. */ inv: self.nationalLevel = '1stOrder' implies self.upperLevelUnit->isEmpty() and self.loweLevelUnit->notEmpty() + + + AdministrativeUnitLowestLevel + /* No unit at lowest level can associate units at lower level. */ inv: self.nationalLevel = '6thOrder' implies self.lowerLevelUnit->isEmpty and self.upperLevelUnit->notEmpty + + + CondominiumsAtCountryLevel + /*Association role condominium applies only for administrative units which nationalLevel='1st order' (country level). */ inv: self.condominium->notEmpty implies self.nationalLevel = '1stOrder' + @@ -4622,6 +4686,10 @@ Data Type + + pronunciationSoundLink or pronunciationIPA not empty + /* At least one of the two attributes pronunciationSoundLink and pronunciationIPA shall not be void. */ inv: self.pronounciationIPA -> notEmpty() or self.pronounciationSoundLink -> notEmpty() + @@ -5222,6 +5290,10 @@ Spatial Object Type + + largestBasinIsRiverBasin + /* A river basin may not be contained in any other basin */ inv: self.containsBasin->forall(c | not c.oclIsTypeOf(RiverBasin)) + @@ -5975,6 +6047,10 @@ DrainageBasin Spatial Object Type + + largestBasinIsRiverBasin + /* A river basin may not be contained in any other basin */ inv: self.containsBasin->forall(c | not c.oclIsTypeOf(RiverBasin)) + @@ -6264,6 +6340,11 @@ Spatial Object Type + + geometryIsSurfaceOrPoint + Standing water geometry may be a surface or point + inv: self.geometry.oclIsTypeOf(GM_Surface) or self.geometry.oclIsTypeOf(GM_Point) + @@ -7133,6 +7214,19 @@ Spatial Object Type + + banksShallBeDifferentShoreObjects + /*The shores on either side of a watercourse shall be provided (using the bank property) as two separate Shore objects.*/ + + + geometryIsCurveOrSurface + Watercourse geometry may be a curve or surface + inv: self.geometry.oclIsTypeOf(GM_Curve) or self.geometry.oclIsTypeOf(GM_Surface) + + + onlyManmadeHasConditionAttr + /* A condition attribute may be specified only for a man-made watercourse */ inv: (self->count(condition)=1) implies (self.origin=OriginType::manMade) + @@ -7482,6 +7576,10 @@ Data Type + + DesignationConstraint + /*Sites must use designations from an appropriate designation scheme, and the designation code value must agree with the designation scheme.*/ inv: self.designationScheme = DesignationSchemeValue::natura2000 implies self.designation.oclIsKindOf(DesignationValueNatura2000) and self.designationScheme = DesignationSchemeValue::emeraldNetwork implies self.designation.oclIsKindOf(DesignationValueEmeraldNetwork) and self.designationScheme = DesignationSchemeValue::ramsar implies self.designation.oclIsKindOf(DesignationValueRamsar) and self.designationScheme = DesignationSchemeValue::UNESCOWorldHeritage implies self.designation.oclIsKindOf(DesignationValueUNESCOWorldHeritage) and self.designationScheme = DesignationSchemeValue::IUCN implies self.designation.oclIsKindOf(DesignationValueIUCN) and self.designationScheme = DesignationSchemeValue::UNESCOManAndBiosphereProgramme implies self.designation.oclIsKindOf(DesignationValueUNESCOManAndBiosphereProgramme) and self.designationScheme = DesignationSchemeValue::nationalMonumentsRecord implies self.designation.oclIsKindOf(DesignationValueNationalMonumentsRecord) + @@ -8262,6 +8360,11 @@ Spatial Object Type + + All objects have inspireId + All transport links have an external object identifier. + inv:inspireId->notEmpty() + @@ -8286,6 +8389,16 @@ TransportLinkSequence Spatial Object Type + + All components belong to same transport network + A transport link sequence must be composed of transport links that all belong to the same transport network. + inv: link->forAll(l | l.link.inNetwork = self.inNetwork) + + + All objects have inspireId + All transport link sequences have an external object identifier. + inv: inspireId->notEmpty() + @@ -8295,6 +8408,16 @@ TransportLinkSet Spatial Object Type + + All components belong to same transport network + A transport link set must be composed of transport links and or transport link sequences that all belong to the same transport network. + inv: link->forAll(l | l.inNetwork = self.inNetwork) + + + All objects have inspireId + All transport link sets have an external object identifier. + inv:inspireId->notEmpty() + @@ -8304,6 +8427,11 @@ TransportNode Spatial Object Type + + All objects have inspireId + All transport nodes have an external object identifier. + inv:inspireId->notEmpty() + @@ -8375,6 +8503,11 @@ TransportArea Spatial Object Type + + All objects have inspireId + All transport areas have an external object identifier. + inv:inspireId->notEmpty() + @@ -8385,6 +8518,15 @@ Spatial Object Type + + Applies to AerodromeNode and AerodromeArea only + /* This property can only be associated with a spatial object that is an Aerodrome Node or an Aerodrome Area. */ inv: networkRef.element.oclIsKindOf(AerodromeNode) or networkRef.element.oclIsKindOf(AerodromeArea) + + + All objects have inspireId + All transport properties have an external object identifier. + inv:inspireId->notEmpty() + @@ -8466,6 +8608,11 @@ Spatial Object Type + + All objects have inspireId + All transport nodes have an external object identifier. + inv:inspireId->notEmpty() + @@ -8543,6 +8690,15 @@ Spatial Object Type + + Applies to AerodromeNode and AerodromeArea only + /* This property can only be associated with a spatial object that is an Aerodrome Node or Aerodrome Area. */ inv: networkRef.element.oclIsKindOf(AerodromeNode) or networkRef.element.oclIsKindOf(AerodromeArea) + + + All objects have inspireId + All transport properties have an external object identifier. + inv:inspireId->notEmpty() + @@ -8643,6 +8799,11 @@ TransportLink Spatial Object Type + + All objects have inspireId + All transport links have an external object identifier. + inv:inspireId->notEmpty() + @@ -8657,6 +8818,16 @@ TransportLinkSequence Spatial Object Type + + All components belong to same transport network + A transport link sequence must be composed of transport links that all belong to the same transport network. + inv: link->forAll(l | l.link.inNetwork = self.inNetwork) + + + All objects have inspireId + All transport link sequences have an external object identifier. + inv: inspireId->notEmpty() + @@ -8668,6 +8839,11 @@ Spatial Object Type + + All objects have inspireId + All transport nodes have an external object identifier. + inv:inspireId->notEmpty() + @@ -8701,6 +8877,16 @@ Spatial Object Type + + All components belong to same transport network + A transport link set must be composed of transport links and or transport link sequences that all belong to the same transport network. + inv: link->forAll(l | l.inNetwork = self.inNetwork) + + + All objects have inspireId + All transport link sets have an external object identifier. + inv:inspireId->notEmpty() + @@ -8745,6 +8931,11 @@ Spatial Object Type + + All objects have inspireId + All transport links have an external object identifier. + inv:inspireId->notEmpty() + @@ -8925,6 +9116,11 @@ Spatial Object Type + + All objects have inspireId + All transport areas have an external object identifier. + inv:inspireId->notEmpty() + @@ -9132,6 +9328,11 @@ TransportArea Spatial Object Type + + All objects have inspireId + All transport areas have an external object identifier. + inv:inspireId->notEmpty() + @@ -9141,6 +9342,15 @@ ConditionOfFacility Spatial Object Type + + Applies only to AerodromeNode, AerodromeArea and RunwayArea + /* This property can only be associated with a spatial object that is an Aerodrome Node, an Aerodrome Area or a Runway Area. */ inv: networkRef.element.oclIsKindOf(AerodromeNode) or networkRef.element.oclIsKindOf(AerodromeArea) or networkRef.element.oclIsKindOf(RunwayArea) + + + All objects have inspireId + All transport properties have an external object identifier. + inv:inspireId->notEmpty() + @@ -9156,6 +9366,11 @@ Spatial Object Type + + All objects have inspireId + All transport nodes have an external object identifier. + inv:inspireId->notEmpty() + @@ -9183,6 +9398,15 @@ Spatial Object Type + + Applies to RunwayArea, TaxiwayArea and TouchDownLiftOff only + /* This property can only be associated with a spatial object that is a Runway Area, Taxiway Area or Touch Down Lift Off. */ inv: networkRef.element.oclIsKindOf(RunwayArea) or networkRef.element.oclIsKindOf(TaxiwayArea) or networkRef.element.oclIsKindOf(TouchDownLiftOff) + + + All objects have inspireId + All transport properties have an external object identifier. + inv:inspireId->notEmpty() + @@ -9212,6 +9436,15 @@ Spatial Object Type + + Applies to RunwayArea, TaxiwayArea and TouchDownLiftOff only + /* This property can only be associated with a spatial object that is a Runway Area, Taxiway Area or Touch Down Lift Off. */ inv: networkRef.element.oclIsKindOf(RunwayArea) or networkRef.element.oclIsKindOf(TaxiwayArea) or networkRef.element.oclIsKindOf(TouchDownLiftOff) + + + All objects have inspireId + All transport properties have an external object identifier. + inv:inspireId->notEmpty() + @@ -9246,6 +9479,15 @@ Spatial Object Type + + Applies to AerodromeNode and AerodromeArea only + /* This property can only be associated with a spatial object that is an Aerodrome Node or Aerodrome Area. */ inv: networkRef.element.oclIsKindOf(AerodromeNode) or networkRef.element.oclIsKindOf(AerodromeArea) + + + All objects have inspireId + All transport properties have an external object identifier. + inv:inspireId->notEmpty() + @@ -9276,6 +9518,11 @@ ProcedureLink Spatial Object Type + + All objects have inspireId + All transport links have an external object identifier. + inv:inspireId->notEmpty() + @@ -9289,6 +9536,15 @@ Spatial Object Type + + Applies to AirRouteLink and AirspaceArea only + /* This property can only be associated with a spatial object that is an Air Route Link or Airspace Area. */ inv: networkRef.element.oclIsKindOf(AirRouteLink) or networkRef.element.oclIsKindOf(AirspaceArea) + + + All objects have inspireId + All transport properties have an external object identifier. + inv:inspireId->notEmpty() + @@ -9320,6 +9576,11 @@ Spatial Object Type + + All objects have inspireId + All transport nodes have an external object identifier. + inv:inspireId->notEmpty() + @@ -9717,6 +9978,11 @@ AirLink Spatial Object Type + + All objects have inspireId + All transport links have an external object identifier. + inv:inspireId->notEmpty() + @@ -9735,6 +10001,11 @@ Spatial Object Type + + All objects have inspireId + All transport areas have an external object identifier. + inv:inspireId->notEmpty() + @@ -9786,6 +10057,11 @@ Spatial Object Type + + All objects have inspireId + All transport nodes have an external object identifier. + inv:inspireId->notEmpty() + @@ -9866,6 +10142,11 @@ Spatial Object Type + + All objects have inspireId + All transport links have an external object identifier. + inv:inspireId->notEmpty() + @@ -9898,6 +10179,11 @@ Spatial Object Type + + All objects have inspireId + All transport links have an external object identifier. + inv:inspireId->notEmpty() + @@ -9923,6 +10209,15 @@ Spatial Object Type + + Applies to RunwayArea, TaxiwayArea, ApronArea and TouchDownLiftOff only + /* This property can only be associated with a spatial object that is a Runway Area, Taxiway Area, Apron Area or Touch Down Lift Off. */ inv: networkRef.element.oclIsKindOf(RunwayArea) or networkRef.element.oclIsKindOf(TaxiwayArea) or networkRef.element.oclIsKindOf(ApronArea) or networkRef.element.oclIsKindOf(TouchDownLiftOff) + + + All objects have inspireId + All transport properties have an external object identifier. + inv:inspireId->notEmpty() + @@ -10010,6 +10305,11 @@ Spatial Object Type + + All objects have inspireId + All transport areas have an external object identifier. + inv:inspireId->notEmpty() + @@ -10038,6 +10338,11 @@ Spatial Object Type + + All objects have inspireId + All transport nodes have an external object identifier. + inv:inspireId->notEmpty() + @@ -10063,6 +10368,15 @@ Spatial Object Type + + Applies to AirRouteLink and AirspaceArea only + /* This property can only be associated with a spatial object that is an Air Route Link or Airspace Area. */ inv: networkRef.element.oclIsKindOf(AirRouteLink) or networkRef.element.oclIsKindOf(AirspaceArea) + + + All objects have inspireId + All transport properties have an external object identifier. + inv:inspireId->notEmpty() + @@ -10085,6 +10399,15 @@ Spatial Object Type + + Applies to AirRoute, AirLinks, AirNodes and AerodromeArea only + /* This property can only be associated with a spatial object that is an Air Route, Air Link (or specialized Air Link), Air Node (or specialized Air Node) or Aerodrome Area. */ inv: networkRef.element.oclIsKindOf(AirRoute) or networkRef.element.oclIsKindOf(AirLink) or networkRef.element.oclIsKindOf(AirNode) or networkRef.element.oclIsKindOf(AerodromeArea) + + + All objects have inspireId + All transport properties have an external object identifier. + inv:inspireId->notEmpty() + @@ -10116,6 +10439,15 @@ Spatial Object Type + + Applies to railway transport classes only + /* This property can only be associated with a spatial object that is part of a railway transport network. */ inv: networkRef.element.oclIsKindOf(RailwayArea) or networkRef.element.oclIsKindOf(RailwayYardArea) or networkRef.element.oclIsKindOf(RailwayStationArea) or networkRef.element.oclIsKindOf(RailwayLine) or networkRef.element.oclIsKindOf(RailwayLinkSequence) or networkRef.element.oclIsKindOf(RailwayLink) or networkRef.element.oclIsKindOf(RailwayNode) + + + All objects have inspireId + All transport properties have an external object identifier. + inv:inspireId->notEmpty() + @@ -10251,6 +10583,15 @@ Spatial Object Type + + Applies to railway transport classes only + /* This property can only be associated with a spatial object that is part of a railway transport network. */ inv: networkRef.element.oclIsKindOf(RailwayArea) or networkRef.element.oclIsKindOf(RailwayYardArea) or networkRef.element.oclIsKindOf(RailwayStationArea) or networkRef.element.oclIsKindOf(RailwayLine) or networkRef.element.oclIsKindOf(RailwayLinkSequence) or networkRef.element.oclIsKindOf(RailwayLink) or networkRef.element.oclIsKindOf(RailwayNode) + + + All objects have inspireId + All transport properties have an external object identifier. + inv:inspireId->notEmpty() + @@ -10293,6 +10634,15 @@ Spatial Object Type + + Applies to railway transport classes only + /* This property can only be associated with a spatial object that is part of a railway transport network. */ inv: networkRef.element.oclIsKindOf(RailwayArea) or networkRef.element.oclIsKindOf(RailwayYardArea) or networkRef.element.oclIsKindOf(RailwayStationArea) or networkRef.element.oclIsKindOf(RailwayLine) or networkRef.element.oclIsKindOf(RailwayLinkSequence) or networkRef.element.oclIsKindOf(RailwayLink) or networkRef.element.oclIsKindOf(RailwayNode) + + + All objects have inspireId + All transport properties have an external object identifier. + inv:inspireId->notEmpty() + @@ -10332,6 +10682,11 @@ TransportArea Spatial Object Type + + All objects have inspireId + All transport areas have an external object identifier. + inv:inspireId->notEmpty() + @@ -10342,6 +10697,15 @@ Spatial Object Type + + Applies to railway transport classes only + /* This property can only be associated with a spatial object that is part of a railway transport network. */ inv: networkRef.element.oclIsKindOf(RailwayArea) or networkRef.element.oclIsKindOf(RailwayYardArea) or networkRef.element.oclIsKindOf(RailwayStationArea) or networkRef.element.oclIsKindOf(RailwayLine) or networkRef.element.oclIsKindOf(RailwayLinkSequence) or networkRef.element.oclIsKindOf(RailwayLink) or networkRef.element.oclIsKindOf(RailwayNode) + + + All objects have inspireId + All transport properties have an external object identifier. + inv:inspireId->notEmpty() + @@ -10367,6 +10731,16 @@ Spatial Object Type + + All components belong to same transport network + A transport link set must be composed of transport links and or transport link sequences that all belong to the same transport network. + inv: link->forAll(l | l.inNetwork = self.inNetwork) + + + All objects have inspireId + All transport link sets have an external object identifier. + inv:inspireId->notEmpty() + @@ -10392,6 +10766,11 @@ Spatial Object Type + + All objects have inspireId + All transport links have an external object identifier. + inv:inspireId->notEmpty() + @@ -10416,6 +10795,16 @@ TransportLinkSequence Spatial Object Type + + All components belong to same transport network + A transport link sequence must be composed of transport links that all belong to the same transport network. + inv: link->forAll(l | l.link.inNetwork = self.inNetwork) + + + All objects have inspireId + All transport link sequences have an external object identifier. + inv: inspireId->notEmpty() + @@ -10426,6 +10815,11 @@ Spatial Object Type + + All objects have inspireId + All transport nodes have an external object identifier. + inv:inspireId->notEmpty() + @@ -10452,6 +10846,11 @@ TransportArea Spatial Object Type + + All objects have inspireId + All transport areas have an external object identifier. + inv:inspireId->notEmpty() + @@ -10462,6 +10861,15 @@ Spatial Object Type + + Applies to Railway Transport classes only + /* This property can only be associated with a spatial object that is part of a railway transport network. */ inv: networkRef.element.oclIsKindOf(RailwayArea) or networkRef.element.oclIsKindOf(RailwayYardArea) or networkRef.element.oclIsKindOf(RailwayStationArea) or networkRef.element.oclIsKindOf(RailwayLine) or networkRef.element.oclIsKindOf(RailwayLinkSequence) or networkRef.element.oclIsKindOf(RailwayLink) or networkRef.element.oclIsKindOf(RailwayNode) + + + All objects have inspireId + All transport properties have an external object identifier. + inv:inspireId->notEmpty() + @@ -10484,6 +10892,15 @@ Spatial Object Type + + formOfNode is always RailwayStop + /* For a railway station node, the value for the "formOfNode" attribute shall always be "RailwayStop". */ formOfNode = FormOfRailwayNodeValue::railwayStop + + + All objects have inspireId + All transport nodes have an external object identifier. + inv:inspireId->notEmpty() + @@ -10506,6 +10923,15 @@ Spatial Object Type + + Applies to railway transport classes only + /* This property can only be associated with a spatial object that is part of a railway transport network. */ inv: networkRef.element.oclIsKindOf(RailwayArea) or networkRef.element.oclIsKindOf(RailwayYardArea) or networkRef.element.oclIsKindOf(RailwayStationArea) or networkRef.element.oclIsKindOf(RailwayLine) or networkRef.element.oclIsKindOf(RailwayLinkSequence) or networkRef.element.oclIsKindOf(RailwayLink) or networkRef.element.oclIsKindOf(RailwayNode) + + + All objects have inspireId + All transport properties have an external object identifier. + inv:inspireId->notEmpty() + @@ -10649,6 +11075,15 @@ Spatial Object Type + + Applies to Railway Transport classes only + /* This property can only be associated with a spatial object that is part of a railway transport network. */ inv: networkRef.element.oclIsKindOf(RailwayArea) or networkRef.element.oclIsKindOf(RailwayYardArea) or networkRef.element.oclIsKindOf(RailwayStationArea) or networkRef.element.oclIsKindOf(RailwayLine) or networkRef.element.oclIsKindOf(RailwayLinkSequence) or networkRef.element.oclIsKindOf(RailwayLink) or networkRef.element.oclIsKindOf(RailwayNode) + + + All objects have inspireId + All transport properties have an external object identifier. + inv:inspireId->notEmpty() + @@ -10732,6 +11167,11 @@ TransportArea Spatial Object Type + + All objects have inspireId + All transport areas have an external object identifier. + inv:inspireId->notEmpty() + @@ -10743,6 +11183,15 @@ RailwayNode Spatial Object Type + + formOfNode is always RailwayStop + /* For a railway yard node, the value for the "formOfNode" attribute shall always be "RailwayStop". */ formOfNode = FormOfRailwayNodeValue::railwayStop + + + All objects have inspireId + All transport nodes have an external object identifier. + inv:inspireId->notEmpty() + @@ -10821,6 +11270,11 @@ TransportPoint Spatial Object Type + + All objects have inspireId + All transport points have an external object identfier. + inv:inspireId->notEmpty() + @@ -10835,6 +11289,11 @@ TransportPoint Spatial Object Type + + All objects have inspireId + All transport points have an external object identfier. + inv:inspireId->notEmpty() + @@ -10845,6 +11304,15 @@ Spatial Object Type + + Applies to InlandWaterway only + /* This property can only be associated with a spatial object that is part of a water transport network. */ inv: networkRef.element.oclIsKindOf(InlandWaterway) + + + All objects have inspireId + All transport properties have an external object identifier. + inv:inspireId->notEmpty() + @@ -11004,6 +11472,15 @@ ConditionOfFacility Spatial Object Type + + Applies to PortNode and PortArea only + /* This property can only be associated with a spatial object that is part of a water transport network. */ inv: networkRef.element.oclIsKindOf(PortArea) or networkRef.element.oclIsKindOf(PortNode) + + + All objects have inspireId + All transport properties have an external object identifier. + inv:inspireId->notEmpty() + @@ -11018,6 +11495,11 @@ TransportArea Spatial Object Type + + All objects have inspireId + All transport areas have an external object identifier. + inv:inspireId->notEmpty() + @@ -11027,6 +11509,16 @@ Waterway Spatial Object Type + + All components belong to same transport network + A transport link set must be composed of transport links and or transport link sequences that all belong to the same transport network. + inv: link->forAll(l | l.inNetwork = self.inNetwork) + + + All objects have inspireId + All transport link sets have an external object identifier. + inv:inspireId->notEmpty() + @@ -11037,6 +11529,15 @@ Spatial Object Type + + Applies to FerryCrossing only + /* This property can only be associated with a spatial object that is part of a water transport network. */ inv: networkRef.element.oclIsKindOf(FerryCrossing) + + + All objects have inspireId + All transport properties have an external object identifier. + inv:inspireId->notEmpty() + @@ -11225,6 +11726,16 @@ Waterway Spatial Object Type + + All components belong to same transport network + A transport link set must be composed of transport links and or transport link sequences that all belong to the same transport network. + inv: link->forAll(l | l.inNetwork = self.inNetwork) + + + All objects have inspireId + All transport link sets have an external object identifier. + inv:inspireId->notEmpty() + @@ -11235,6 +11746,16 @@ Spatial Object Type + + All components belong to same transport network + A transport link set must be composed of transport links and or transport link sequences that all belong to the same transport network. + inv: link->forAll(l | l.inNetwork = self.inNetwork) + + + All objects have inspireId + All transport link sets have an external object identifier. + inv:inspireId->notEmpty() + @@ -11258,6 +11779,11 @@ TransportArea Spatial Object Type + + All objects have inspireId + All transport areas have an external object identifier. + inv:inspireId->notEmpty() + @@ -11270,6 +11796,11 @@ WaterNode Spatial Object Type + + All objects have inspireId + All transport nodes have an external object identifier. + inv:inspireId->notEmpty() + @@ -11279,6 +11810,15 @@ RestrictionForVehicles Spatial Object Type + + Applies to WaterwayLink and WaterwayNode only + /* This property can only be associated with a spatial object that is part of a water transport network. */ inv: networkRef.element.oclIsKindOf(WaterwayLink) or networkRef.element.oclIsKindOf(WaterwayNode) + + + All objects have inspireId + All transport properties have an external object identifier. + inv:inspireId->notEmpty() + @@ -11425,6 +11965,11 @@ TransportArea Spatial Object Type + + All objects have inspireId + All transport areas have an external object identifier. + inv:inspireId->notEmpty() + @@ -11437,6 +11982,11 @@ TrafficSeparationSchemeArea Spatial Object Type + + All objects have inspireId + All transport areas have an external object identifier. + inv:inspireId->notEmpty() + @@ -11449,6 +11999,11 @@ TrafficSeparationSchemeArea Spatial Object Type + + All objects have inspireId + All transport areas have an external object identifier. + inv:inspireId->notEmpty() + @@ -11461,6 +12016,11 @@ TrafficSeparationSchemeArea Spatial Object Type + + All objects have inspireId + All transport areas have an external object identifier. + inv:inspireId->notEmpty() + @@ -11473,6 +12033,11 @@ TrafficSeparationSchemeArea Spatial Object Type + + All objects have inspireId + All transport areas have an external object identifier. + inv:inspireId->notEmpty() + @@ -11485,6 +12050,16 @@ TransportLinkSequence Spatial Object Type + + All components belong to same transport network + A transport link sequence must be composed of transport links that all belong to the same transport network. + inv: link->forAll(l | l.link.inNetwork = self.inNetwork) + + + All objects have inspireId + All transport link sequences have an external object identifier. + inv: inspireId->notEmpty() + @@ -11498,6 +12073,11 @@ TransportNode Spatial Object Type + + All objects have inspireId + All transport nodes have an external object identifier. + inv:inspireId->notEmpty() + @@ -11507,6 +12087,19 @@ TrafficFlowDirection Spatial Object Type + + Applies to WaterwayLink and WaterLinkSequence only + /* This property can only be associated with a spatial object that is part of a water transport network. */ inv: networkRef.element.oclIsKindOf(WaterLinkSequence) or networkRef.element.oclIsKindOf(WaterwayLink) + + + Applies to Link and LinkSequence only + /* This property can only be associated with a spatial object of the type Link or LinkSequence. */ inv: networkRef.element.oclIsKindOf(LinkReference) + + + All objects have inspireId + All transport properties have an external object identifier. + inv:inspireId->notEmpty() + @@ -11517,6 +12110,16 @@ TransportLinkSet Spatial Object Type + + All components belong to same transport network + A transport link set must be composed of transport links and or transport link sequences that all belong to the same transport network. + inv: link->forAll(l | l.inNetwork = self.inNetwork) + + + All objects have inspireId + All transport link sets have an external object identifier. + inv:inspireId->notEmpty() + @@ -11529,6 +12132,11 @@ TransportLink Spatial Object Type + + All objects have inspireId + All transport links have an external object identifier. + inv:inspireId->notEmpty() + @@ -11539,6 +12147,11 @@ Spatial Object Type + + All objects have inspireId + All transport nodes have an external object identifier. + inv:inspireId->notEmpty() + @@ -11574,6 +12187,11 @@ Spatial Object Type + + All objects have inspireId + All transport properties have an external object identifier. + inv:inspireId->notEmpty() + @@ -11682,6 +12300,11 @@ Spatial Object Type + + All objects have inspireId + All transport properties have an external object identifier. + inv:inspireId->notEmpty() + @@ -11709,6 +12332,11 @@ Spatial Object Type + + All objects have inspireId + All transport properties have an external object identifier. + inv:inspireId->notEmpty() + @@ -11735,6 +12363,11 @@ Spatial Object Type + + All objects have inspireId + All transport points have an external object identfier. + inv:inspireId->notEmpty() + @@ -11788,6 +12421,11 @@ Spatial Object Type + + All objects have inspireId + All transport properties have an external object identifier. + inv:inspireId->notEmpty() + @@ -11811,6 +12449,11 @@ Spatial Object Type + + All objects have inspireId + All transport properties have an external object identifier. + inv:inspireId->notEmpty() + @@ -11977,6 +12620,15 @@ Spatial Object Type + + Applies to Link and LinkSequence only + /* This property can only be associated with a spatial object of the type Link or LinkSequence. */ inv: networkRef.element.oclIsKindOf(LinkReference) + + + All objects have inspireId + All transport properties have an external object identifier. + inv:inspireId->notEmpty() + @@ -12005,6 +12657,11 @@ Spatial Object Type + + All objects have inspireId + All transport areas have an external object identifier. + inv:inspireId->notEmpty() + @@ -12042,6 +12699,11 @@ Spatial Object Type + + All objects have inspireId + All transport links have an external object identifier. + inv:inspireId->notEmpty() + @@ -12079,6 +12741,16 @@ Spatial Object Type + + All components belong to same transport network + A transport link sequence must be composed of transport links that all belong to the same transport network. + inv: link->forAll(l | l.link.inNetwork = self.inNetwork) + + + All objects have inspireId + All transport link sequences have an external object identifier. + inv: inspireId->notEmpty() + @@ -12124,6 +12796,16 @@ Spatial Object Type + + All components belong to same transport network + A transport link set must be composed of transport links and or transport link sequences that all belong to the same transport network. + inv: link->forAll(l | l.inNetwork = self.inNetwork) + + + All objects have inspireId + All transport link sets have an external object identifier. + inv:inspireId->notEmpty() + @@ -12209,6 +12891,11 @@ Spatial Object Type + + All objects have inspireId + All transport nodes have an external object identifier. + inv:inspireId->notEmpty() + @@ -12271,6 +12958,11 @@ Spatial Object Type + + All objects have inspireId + All transport points have an external object identfier. + inv:inspireId->notEmpty() + @@ -12319,6 +13011,11 @@ Spatial Object Type + + All objects have inspireId + All transport properties have an external object identifier. + inv:inspireId->notEmpty() + @@ -12421,6 +13118,11 @@ Spatial Object Type + + All objects have inspireId + All transport properties have an external object identifier. + inv:inspireId->notEmpty() + @@ -12557,6 +13259,16 @@ Spatial Object Type + + All components belong to same transport network + A transport link set must be composed of transport links and or transport link sequences that all belong to the same transport network. + inv: link->forAll(l | l.inNetwork = self.inNetwork) + + + All objects have inspireId + All transport link sets have an external object identifier. + inv:inspireId->notEmpty() + @@ -12698,6 +13410,15 @@ Spatial Object Type + + Applies to road transport elements only + /* This property can only be associated with a spatial object that is part of a road transport network. */ inv: networkRef.element.oclIsKindOf(Road) or networkRef.element.oclIsKindOf(ERoad) or networkRef.element.oclIsKindOf(RoadLink) or networkRef.element.oclIsKindOf(RoadLinkSequence) or networkRef.element.oclIsKindOf(RoadNode) or networkRef.element.oclIsKindOf(RoadArea) or networkRef.element.oclIsKindOf(RoadServiceArea) or networkRef.element.oclIsKindOf(VehicleTrafficArea) + + + All objects have inspireId + All transport properties have an external object identifier. + inv:inspireId->notEmpty() + @@ -12985,6 +13706,15 @@ Spatial Object Type + + Applies to road transport elements only + /* This property can only be associated with a spatial object that is part of a road transport network. */ inv: networkRef.element.oclIsKindOf(Road) or networkRef.element.oclIsKindOf(ERoad) or networkRef.element.oclIsKindOf(RoadLink) or networkRef.element.oclIsKindOf(RoadLinkSequence) or networkRef.element.oclIsKindOf(RoadNode) or networkRef.element.oclIsKindOf(RoadArea) or networkRef.element.oclIsKindOf(RoadServiceArea) or networkRef.element.oclIsKindOf(VehicleTrafficArea) + + + All objects have inspireId + All transport properties have an external object identifier. + inv:inspireId->notEmpty() + @@ -13244,6 +13974,15 @@ Spatial Object Type + + Applies to road transport elements only + /* This property can only be associated with a spatial object that is part of a road transport network. */ inv: networkRef.element.oclIsKindOf(Road) or networkRef.element.oclIsKindOf(ERoad) or networkRef.element.oclIsKindOf(RoadLink) or networkRef.element.oclIsKindOf(RoadLinkSequence) or networkRef.element.oclIsKindOf(RoadNode) or networkRef.element.oclIsKindOf(RoadArea) or networkRef.element.oclIsKindOf(RoadServiceArea) or networkRef.element.oclIsKindOf(VehicleTrafficArea) + + + All objects have inspireId + All transport properties have an external object identifier. + inv:inspireId->notEmpty() + @@ -13313,6 +14052,16 @@ Spatial Object Type + + All components belong to same transport network + A transport link set must be composed of transport links and or transport link sequences that all belong to the same transport network. + inv: link->forAll(l | l.inNetwork = self.inNetwork) + + + All objects have inspireId + All transport link sets have an external object identifier. + inv:inspireId->notEmpty() + @@ -13352,6 +14101,11 @@ TransportArea Spatial Object Type + + All objects have inspireId + All transport areas have an external object identifier. + inv:inspireId->notEmpty() + @@ -13362,6 +14116,11 @@ TransportLink Spatial Object Type + + All objects have inspireId + All transport links have an external object identifier. + inv:inspireId->notEmpty() + @@ -13371,6 +14130,16 @@ TransportLinkSequence Spatial Object Type + + All components belong to same transport network + A transport link sequence must be composed of transport links that all belong to the same transport network. + inv: link->forAll(l | l.link.inNetwork = self.inNetwork) + + + All objects have inspireId + All transport link sequences have an external object identifier. + inv: inspireId->notEmpty() + @@ -13381,6 +14150,15 @@ Spatial Object Type + + Applies to road transport elements only + /* This property can only be associated with a spatial object that is part of a road transport network. */ inv: networkRef.element.oclIsKindOf(Road) or networkRef.element.oclIsKindOf(ERoad) or networkRef.element.oclIsKindOf(RoadLink) or networkRef.element.oclIsKindOf(RoadLinkSequence) or networkRef.element.oclIsKindOf(RoadNode) or networkRef.element.oclIsKindOf(RoadArea) or networkRef.element.oclIsKindOf(RoadServiceArea) or networkRef.element.oclIsKindOf(VehicleTrafficArea) + + + All objects have inspireId + All transport properties have an external object identifier. + inv:inspireId->notEmpty() + @@ -13403,6 +14181,11 @@ Spatial Object Type + + All objects have inspireId + All transport nodes have an external object identifier. + inv:inspireId->notEmpty() + @@ -13467,6 +14250,11 @@ TransportArea Spatial Object Type + + All objects have inspireId + All transport areas have an external object identifier. + inv:inspireId->notEmpty() + @@ -13478,6 +14266,15 @@ Spatial Object Type + + Applies to road service areas only + /* This property can only be associated with a spatial object of the type RoadServiceArea or RoadNode (when formOfRoadNode=roadServiceArea). */ inv: networkRef.element.oclIsKindOf(RoadServiceArea) or (networkRef.element.oclIsKindOf(RoadNode) and networkRef.element. formOfRoadNode = FormOfRoadNodeValue::roadServiceArea) + + + All objects have inspireId + All transport properties have an external object identifier. + inv:inspireId->notEmpty() + @@ -13582,6 +14379,15 @@ Spatial Object Type + + Applies to road transport elements only + /* This property can only be associated with a spatial object that is part of a road transport network. */ inv: networkRef.element.oclIsKindOf(Road) or networkRef.element.oclIsKindOf(ERoad) or networkRef.element.oclIsKindOf(RoadLink) or networkRef.element.oclIsKindOf(RoadLinkSequence) or networkRef.element.oclIsKindOf(RoadNode) or networkRef.element.oclIsKindOf(RoadArea) or networkRef.element.oclIsKindOf(RoadServiceArea) or networkRef.element.oclIsKindOf(VehicleTrafficArea) + + + All objects have inspireId + All transport properties have an external object identifier. + inv:inspireId->notEmpty() + @@ -13652,6 +14458,15 @@ Spatial Object Type + + Applies to road transport elements only + /* This property can only be associated with a spatial object that is part of a road transport network. */ inv: networkRef.element.oclIsKindOf(Road) or networkRef.element.oclIsKindOf(ERoad) or networkRef.element.oclIsKindOf(RoadLink) or networkRef.element.oclIsKindOf(RoadLinkSequence) or networkRef.element.oclIsKindOf(RoadNode) or networkRef.element.oclIsKindOf(RoadArea) or networkRef.element.oclIsKindOf(RoadServiceArea) or networkRef.element.oclIsKindOf(VehicleTrafficArea) + + + All objects have inspireId + All transport properties have an external object identifier. + inv:inspireId->notEmpty() + @@ -13792,6 +14607,15 @@ Spatial Object Type + + Applies to road transport elements only + /* This property can only be associated with a spatial object that is part of a road transport network. */ inv: networkRef.element.oclIsKindOf(Road) or networkRef.element.oclIsKindOf(ERoad) or networkRef.element.oclIsKindOf(RoadLink) or networkRef.element.oclIsKindOf(RoadLinkSequence) or networkRef.element.oclIsKindOf(RoadNode) or networkRef.element.oclIsKindOf(RoadArea) or networkRef.element.oclIsKindOf(RoadServiceArea) or networkRef.element.oclIsKindOf(VehicleTrafficArea) + + + All objects have inspireId + All transport properties have an external object identifier. + inv:inspireId->notEmpty() + @@ -14123,6 +14947,11 @@ TransportArea Spatial Object Type + + All objects have inspireId + All transport areas have an external object identifier. + inv:inspireId->notEmpty() + @@ -14803,6 +15632,44 @@ Spatial Object Type + + domainDimensionIs2 + /* The grid dimension shall always be 2 for an elevation grid coverage */ inv: domainSet.dimension=2 + + + domainExtentContainsGeographicElement + The domainExtent shall be at least populated with a subtype of EX_GeographicExtent + inv: domainExtent.geographicElement->size()>=1 + + + domainRequiresCRS + /* The coordinate reference system used to reference the grid shall be provided */ inv: domainSet.origin.coordinateReferenceSystem->notEmpty + + + identicalOffsetVectorsWithinElevationCoverageAggregation + /* All the ElevationGridCoverage instances to which an aggregated ElevationGridCoverage instance refers, shall share the same orientation of grid axes and the same grid spacing in each direction*/ Inv: contributingElevationCoverage->forAll(v | v.domainSet.offsetVectors = self.domainSet.offsetVectors) + + + originDimensionIs2 + /* The origin of the grid shall be described in two dimensions */ inv: domainSet.origin.dimension=2 + + + rangeSetValuesAreOfTypeFloat + /* The values in the range set shall be described by the Float type */ inv: rangeSet->forAll(v | v.oclIsKindOf(Float)) + + + domainIsRectifiedGrid + The domain shall be a rectified grid. + inv: domainSet.oclIsKindOf(CV_RectifiedGrid) + + + grid points shall coincide with grid cell centres + /*Grid points of a RectifiedGridCoverage shall coincide with the centres of cells of the geographical grids defined in Section 2.2 of Annex II at any resolution level.*/ + + + gridFunctionRequiresGridDomain + /*The grid function shall only be valid for domains that are grids */ inv: coverageFunction.gridFunction.notEmpty() implies domainSet.oclIsKindOf(CV_Grid) + @@ -15246,6 +16113,15 @@ Spatial Object Type + + propertyValueDimensionIs1 + The dimension of the property value coordinate shall be 1 + inv: propertyValue.dimension=1 + + + propertyValueIsReferredToVerticalCRS + /*The property value shall be expressed referring to a vertical coordinate reference system*/ inv: propertyValue.coordinateReferenceSystem.oclIsKindOf(SC_VerticalCRS) + @@ -15522,6 +16398,15 @@ Spatial Object Type + + propertyValueDimensionIs1 + The dimension of the property value coordinate shall be 1 + inv: propertyValue.dimension=1 + + + propertyValueIsReferredToVerticalCRS + /*The property value shall be expressed referring to a vertical coordinate reference system*/ inv: propertyValue.coordinateReferenceSystem.oclIsKindOf(SC_VerticalCRS) + @@ -18437,6 +19322,14 @@ Spatial Object Type + + shape must be GM_Surface + /* The shape attribute shall be of type GM_Surface */ inv: shape.oclIsKindOf(GM_Surface) + + + projectedGeometry must be GM_Point, GM_Curve or GM_Surface + /* The projectedGeometry shall be of type GM_Point, GM_Curve or GM_Surface */ inv: projectedGeometry.oclIsKindOf(GM_Point) or projectedGeometry.oclIsKindOf(GM_Curve) or projectedGeometry.oclIsKindOf(GM_Surface) + @@ -18528,6 +19421,10 @@ Spatial Object Type + + projectedGeometry must be GM_Point, GM_Curve or GM_Surface + /* The projectedGeometry shall be of type GM_Point, GM_Curve or GM_Surface */ inv: projectedGeometry.oclIsKindOf(GM_Point) or projectedGeometry.oclIsKindOf(GM_Curve) or projectedGeometry.oclIsKindOf(GM_Surface) + @@ -18595,6 +19492,10 @@ Spatial Object Type + + projectedGeometry must be GM_Point, GM_Curve or GM_Surface + /* The projectedGeometry shall be of type GM_Point, GM_Curve or GM_Surface */ inv: projectedGeometry.oclIsKindOf(GM_Point) or projectedGeometry.oclIsKindOf(GM_Curve) or projectedGeometry.oclIsKindOf(GM_Surface) + @@ -18702,6 +19603,10 @@ Spatial Object Type + + projectedGeometry must be GM_Point, GM_Curve or GM_Surface + /* The projectedGeometry shall be of type GM_Point, GM_Curve or GM_Surface */ inv: projectedGeometry.oclIsKindOf(GM_Point) or projectedGeometry.oclIsKindOf(GM_Curve) or projectedGeometry.oclIsKindOf(GM_Surface) + @@ -18807,6 +19712,14 @@ Spatial Object Type + + shape must be GM_Curve + /* The shape attribute shall be of type GM_Curve */ inv: shape.oclIsKindOf(GM_Curve) + + + projectedGeometry must be GM_Point, GM_Curve or GM_Surface + /* The projectedGeometry shall be of type GM_Point, GM_Curve or GM_Surface */ inv: projectedGeometry.oclIsKindOf(GM_Point) or projectedGeometry.oclIsKindOf(GM_Curve) or projectedGeometry.oclIsKindOf(GM_Surface) + @@ -18837,6 +19750,14 @@ Spatial Object Type + + shape must be GM_Point + /* The shape attribute shall be of type GM_Point */ inv: shape.oclIsKindOf(GM_Point) + + + projectedGeometry must be GM_Point, GM_Curve or GM_Surface + /* The projectedGeometry shall be of type GM_Point, GM_Curve or GM_Surface */ inv: projectedGeometry.oclIsKindOf(GM_Point) or projectedGeometry.oclIsKindOf(GM_Curve) or projectedGeometry.oclIsKindOf(GM_Surface) + @@ -18883,6 +19804,14 @@ Spatial Object Type + + shape must be GM_Surface + /* The shape attribute shall be of type GM_Surface */ inv: shape.oclIsKindOf(GM_Surface) + + + projectedGeometry must be GM_Point, GM_Curve or GM_Surface + /* The projectedGeometry shall be of type GM_Point, GM_Curve or GM_Surface */ inv: projectedGeometry.oclIsKindOf(GM_Point) or projectedGeometry.oclIsKindOf(GM_Curve) or projectedGeometry.oclIsKindOf(GM_Surface) + @@ -19055,6 +19984,10 @@ Data Type + + ExternalOrEmbeddedDescription + /* The embedded description or the external desciption shall be provided. */ + @@ -19169,6 +20102,24 @@ Spatial Object Type + + rangeSetIsKindOfLandCoverClassValue + The values in the range set are restricted to Integer + inv: rangeSet->forAll(v | v.oclIsKindOf(LandCoverNomenclature::LandCoverClassValue)) + + + domainIsRectifiedGrid + The domain shall be a rectified grid. + inv: domainSet.oclIsKindOf(CV_RectifiedGrid) + + + grid points shall coincide with grid cell centres + /*Grid points of a RectifiedGridCoverage shall coincide with the centres of cells of the geographical grids defined in Section 2.2 of Annex II at any resolution level.*/ + + + gridFunctionRequiresGridDomain + /*The grid function shall only be valid for domains that are grids */ inv: coverageFunction.gridFunction.notEmpty() implies domainSet.oclIsKindOf(CV_Grid) + @@ -19503,6 +20454,10 @@ Data Type + + coveredPercentagesLowerThan100 + /* The sum of all coveredPercentage attributes attached to each LandCoverObservation shall be lower or equal to 100*/ inv:mosaic.coveredPercentage.sum() <= 100 + @@ -19576,6 +20531,11 @@ Spatial Object Type + + geometryIsKindOfGM_PointOrGM_Surface + geometries shall be points or surfaces + inv: self.geometry->forAll(l | l.oclIsKindOf(GM_Surface) or l.oclIsKindOf(GM_Point)) + @@ -19884,6 +20844,50 @@ Spatial Object Type + + acquisitionTimeRequired + The acquisition time of the orthoimage coverage shall be provided through the phenomenonTime attribute or the mosaicElement association + inv: phenomenonTime->notEmpty() or mosaicElement->notEmpty() + + + domainDimensionIs2 + /* The dimension of the grid used shall always be 2 */ inv: domainSet.dimension=2 + + + domainExtentContainsGeographicElement + The domainExtent attribute shall be at least populated with a subtype of EX_GeographicExtent + inv: domainExtent.geographicElement->size()>=1 + + + domainRequiresCRS + /* The coordinate reference system used to reference the grid shall be provided */ inv: domainSet.origin.coordinateReferenceSystem->notEmpty() + + + identicalOffsetVectorsWithinOrthoimageAggregation + /*All the OrthoimageCoverage instances to which an aggregated OrthoimageCoverage instance refers shall share the same orientation of grid axes and the same grid spacing in each direction*/ Inv: contributingOrthoimageCoverage->forAll(v | v.domainSet.offsetVectors = self.domainSet.offsetVectors) + + + originDimensionIs2 + /* The origin of the grid shall be described in two dimensions */ inv: domainSet.origin.dimension=2 + + + rangeSetValuesAreOfTypeInteger + The values in the range set shall be described by the Integer type + inv: rangeSet->forAll(v | v.oclIsKindOf(Integer)) + + + domainIsRectifiedGrid + The domain shall be a rectified grid. + inv: domainSet.oclIsKindOf(CV_RectifiedGrid) + + + grid points shall coincide with grid cell centres + /*Grid points of a RectifiedGridCoverage shall coincide with the centres of cells of the geographical grids defined in Section 2.2 of Annex II at any resolution level.*/ + + + gridFunctionRequiresGridDomain + /*The grid function shall only be valid for domains that are grids */ inv: coverageFunction.gridFunction.notEmpty() implies domainSet.oclIsKindOf(CV_Grid) + @@ -20585,6 +21589,24 @@ Data Type + + geometryIsPointOrSurfaceOrMultiSurface + /*Geometry shall be of type GM_Point or GM_Surface or GM_MultiSurface.*/ + + + horizontalGeometryEstimatedAccuracyUoMIsMetre + The value of horizontalGeometryEstimatedAccuracy shall be given in meters. + inv: self.horizontalGeometryEstimatedAccuracy.uom.uomSymbol='m' + + + referenceGeometry + /*For exactly one item of BuildingGeometry, the value of the attribute referenceGeometry shall be 'true'.*/ + + + verticalGeometryEstimatedAccuracyUoMIsMetre + The Value of verticalGeometryEstimatedAccuracy has to be given in meters. + inv: self.verticalGeometryEstimatedAccuracy.uom.uomSymbol='m' + @@ -20754,6 +21776,10 @@ Data Type + + percentageSum + /* The total of all percentages shall be less or equal to 100. */ inv: self.percentage.sum()<=100 + @@ -20824,6 +21850,14 @@ Data Type + + atLeastOneEvent + /*At least, one of the attributes beginning, end or anyPoint shall be supplied.*/ inv: dateOfEvent->notEmpty() + + + beginning is before anyPoint is before end + inv: beginning <= anyPoint and anyPoint <= end and beginning <= end + @@ -21012,6 +22046,11 @@ Data Type + + valueUoMIsMetre + Value shall be in meters. + inv: self.value.uom.uomSymbol='m' + @@ -21137,6 +22176,15 @@ Spatial Object Type + + Building parts shall be 2D + /*The parts of the building shall be represented using the BuildingPart type of the Buildings2D package.*/ inv: self.parts->oclIsKindOf(Buildings2D::BuildingPart) + + + singleReferenceGeometry + Exactly one geometry2D attribute must be a reference geometry, i.e. the referenceGeometry attribute must be 'true'. + inv: self.geometry2D->select(referenceGeometry=true)->size() = 1 + @@ -21174,6 +22222,11 @@ Spatial Object Type + + singleReferenceGeometry + Exactly one geometry2D attribute must be a reference geometry, i.e. the referenceGeometry attribute must be 'true'. + inv: self.geometry2D->select(referenceGeometry=true)->size() = 1 + @@ -21219,6 +22272,14 @@ Spatial Object Type + + Building parts shall be 3D + /*The parts of the building shall be represented using the BuildingPart type of the Buildings3D package.*/ inv: self.parts->oclIsKindOf(Buildings3D::BuildingPart) + + + GeometryWhenNoParts + /*If a Building does not have any BuildingParts, at least the geometry3DLoD1 or geometry3DLoD2 or geometry3DLoD3 or geometry3DLoD4 attributes shall be provided.*/ + @@ -21320,6 +22381,11 @@ Data Type + + oneGeometryToBeProvided + Either the geometryMultiSurface or the geometrySolid attribute shall be provided. + inv: self.geometryMultiSurface->notEmpty() or self.geometrySolid->notEmpty() + @@ -21434,6 +22500,15 @@ Data Type + + no point referencing in 3D + /*The horizontalGeometryReference attribute shall not take the value entrancePoint, pointInsideBuilding or pointInsideCadastralParcel.*/ inv: self.horizontalGeometryReference->excludesAll(Set{HorizontalGeometryReferenceValue::entrancePoint, HorizontalGeometryReferenceValue::pointInsideBuilding , HorizontalGeometryReferenceValue::pointInsideCadastralParcel}) + + + oneGeometryToBeProvided + Either the geometryMultiSurface or the geometrySolid attribute shall be provided. + inv: self.geometryMultiSurface->notEmpty() or self.geometrySolid->notEmpty() + @@ -21486,6 +22561,15 @@ Data Type + + no point referencing in 3D + /*The horizontalGeometryReference attribute shall not take the value entrancePoint, pointInsideBuilding or pointInsideCadastralParcel.*/ inv: self.horizontalGeometryReference->excludesAll(Set{HorizontalGeometryReferenceValue::entrancePoint, HorizontalGeometryReferenceValue::pointInsideBuilding , HorizontalGeometryReferenceValue::pointInsideCadastralParcel}) + + + oneGeometryToBeProvided + Either the geometryMultiSurface or the geometrySolid attribute shall be provided. + inv: self.geometryMultiSurface->notEmpty() or self.geometrySolid->notEmpty() + @@ -21526,6 +22610,10 @@ Spatial Object Type + + MandatoryGeometry + /*At least one of the geometry3DLoD1 or geometry3DLoD2 or geometry3DLoD3 or geometry3DLoD4 attributes shall be provided.*/ + @@ -21715,6 +22803,10 @@ Spatial Object Type + + ActivityValueNACE + At least one of the function attributes of the Holding spatial object shall be provided using the EconomicActivityNACEValue code list (for the activity attribute of the Function data type). + @@ -21988,6 +23080,14 @@ Spatial Object Type + + Specify at least the most specific legal instrument. + /*At least the most specific legal instrument that required the establishment of zone shall be provided using the legalBasis association role.*/ + + + competentAuthority.role shall be "authority" + /*The role attribute of the competentAuthority shall take the value &ldquo;authority&rdquo;.*/ inv: competentAuthority.role = RelatedPartyRoleValue::authority + @@ -23995,6 +25095,10 @@ Spatial Object Type + + Observation and ObservingCapability + /* If observation(s) are attached to an AbstractMonitoringFeature this shall have an ObservingCapability attached to it. The ObservingCapability shall reference the same Domain, Phenomenon and ProcessUsed as the observation(s). */ inv: hasObservation->notEmpty() implies observingCapability->notEmpty() and hasObservation.OM_Observation.featureOfInterest = observingCapability.featureOfInterest and hasObservation.OM_Observation.observedProperty = observingCapability.observedProperty and hasObservation.OM_Observation.procedure = observingCapability.procedure + @@ -24478,6 +25582,15 @@ Spatial Object Type + + GeometryRequired + Geometry and representativePoint cannot both be empty. + inv: geometry ->notEmpty() or representativePoint ->notEmpty() + + + Observation and ObservingCapability + /* If observation(s) are attached to an AbstractMonitoringFeature this shall have an ObservingCapability attached to it. The ObservingCapability shall reference the same Domain, Phenomenon and ProcessUsed as the observation(s). */ inv: hasObservation->notEmpty() implies observingCapability->notEmpty() and hasObservation.OM_Observation.featureOfInterest = observingCapability.featureOfInterest and hasObservation.OM_Observation.observedProperty = observingCapability.observedProperty and hasObservation.OM_Observation.procedure = observingCapability.procedure + @@ -24651,6 +25764,10 @@ Spatial Object Type + + Observation and ObservingCapability + /* If observation(s) are attached to an AbstractMonitoringFeature this shall have an ObservingCapability attached to it. The ObservingCapability shall reference the same Domain, Phenomenon and ProcessUsed as the observation(s). */ inv: hasObservation->notEmpty() implies observingCapability->notEmpty() and hasObservation.OM_Observation.featureOfInterest = observingCapability.featureOfInterest and hasObservation.OM_Observation.observedProperty = observingCapability.observedProperty and hasObservation.OM_Observation.procedure = observingCapability.procedure + @@ -25695,6 +26812,15 @@ Data Type + + LowerBoundUoMShallBeMeter + /* Value of lowerBound shall be expressed in meters. */ inv: self.lowerbound.uom.uomSymbol='m' + + + UpperBoundUoMShallBeMeter + Value of upperBound shall be expressed in meters. + inv: self.upperBound.uom.uomSymbol='m' + @@ -25793,6 +26919,11 @@ Union Data Type + + ScalarUoMShallBeMeter + Value of scalar shall be expressed in meters. + inv: self.scalar.uom.uomSymbol='m' + @@ -26600,6 +27731,19 @@ Spatial Object Type + + domainIsRectifiedGrid + the domain shall be a rectified grid. + inv: domainSet.oclIsKindOf(CV_RectifiedGrid) + + + rangeSetValuesAreOfTypeMeasure + /* the rangeSet values shall be of type Measure. */ inv: rangeSet.forAll(oclIsKindOf(Measure)) + + + gridFunctionRequiresGridDomain + /*The grid function shall only be valid for domains that are grids */ inv: coverageFunction.gridFunction.notEmpty() implies domainSet.oclIsKindOf(CV_Grid) + @@ -28077,6 +29221,10 @@ Data Type + + CI95ofGMandGeometricMeanTogether + /* CI95ofGM should be provided when geometric mean is provided */ + @@ -28444,6 +29592,14 @@ Spatial Object Type + + CODusability + /* The COD code list shall be used only if the diseaseMeasureType attribute of diseaseMeasure takes a value that represents mortality. */ + + + pathologiOrCODnotempty + /* At least one of pathology and COD attributes must not be empty. */ inv: self.COD->Empty implies self.pathology-> notEmpty inv: self.pathology->Empty implies self.COD -> notEmpty + @@ -29653,6 +30809,23 @@ Spatial Object Type + + rangeIsCategoryOrNill + /*rangeSet values shall be of type CategoryOrNilReason NOTE:Range is based on either HILUCS or on a specific land use classification sytem defined by the data provider */ inv: rangeSet.forAll(oclIsKindOf(CategoryOrNilReason)) + + + domainIsRectifiedGrid + The domain shall be a rectified grid. + inv: domainSet.oclIsKindOf(CV_RectifiedGrid) + + + grid points shall coincide with grid cell centres + /*Grid points of a RectifiedGridCoverage shall coincide with the centres of cells of the geographical grids defined in Section 2.2 of Annex II at any resolution level.*/ + + + gridFunctionRequiresGridDomain + /*The grid function shall only be valid for domains that are grids */ inv: coverageFunction.gridFunction.notEmpty() implies domainSet.oclIsKindOf(CV_Grid) + @@ -30151,6 +31324,10 @@ Spatial Object Type + + OneMustBeFilled + /* ** At least one of the values must be populated with a non-void value */ + @@ -33362,6 +34539,10 @@ Spatial Object Type + + If the "source of spatial representation" is empty, the geometry AbstractExposedElement spatial object shall be provided. + /*If the "source of spatial representation" is empty, the geometry AbstractExposedElement spatial object shall be provided.*/ inv: AbstractExposedElement.sourceOfSpatialRepresentation. isEmpty() implies ExposedElement.geometry.notEmpty() + @@ -33860,6 +35041,10 @@ Spatial Object Type + + If the "source of spatial representation" is empty, the geometry AbstractExposedElement spatial object shall be provided. + /*If the "source of spatial representation" is empty, the geometry AbstractExposedElement spatial object shall be provided.*/ inv: AbstractExposedElement.sourceOfSpatialRepresentation. isEmpty() implies ExposedElement.geometry.notEmpty() + @@ -33944,6 +35129,23 @@ Spatial Object Type + + DomainisrectifedGridOrReferenceableGrid + A domain is a rectified grid or referenceable grid + inv: domainSet.oclIsKindOf(CV_RectifiedGrid) or domainSet.oclIsKindOf(CV_ReferenceableGrid) + + + Range set is the levelOfVulnerability of VulnerabilityAssessment + /* Range set is the level, or intensity, of the vulnerability assessment */ inv: rangeSet.oclIsKindOf(VulnerabilityAssessment.levelOfVulnerability) + + + If the "source of spatial representation" is empty, the geometry AbstractExposedElement spatial object shall be provided. + /*If the "source of spatial representation" is empty, the geometry AbstractExposedElement spatial object shall be provided.*/ inv: AbstractExposedElement.sourceOfSpatialRepresentation. isEmpty() implies ExposedElement.geometry.notEmpty() + + + gridFunctionRequiresGridDomain + /*The grid function shall only be valid for domains that are grids */ inv: coverageFunction.gridFunction.notEmpty() implies domainSet.oclIsKindOf(CV_Grid) + @@ -34017,6 +35219,19 @@ CoverageByDomainAndRange Spatial Object Type + + DomainIsRectifiedGridOrReferenceableGrid + A domain is a rectified grid or referenceable grid + inv: domainSet.oclIsKindOf(CV_RectifiedGrid) or domainSet.oclIsKindOf(CV_ReferenceableGrid) + + + RangeSet is levelOrIntensity, or likelihoodOfOccurrence + /*A range set is described by magnitude or intensity, or by the likelihood of occurence. As "magnitude or intensity" is modelled by the "LevelOrIntensity" data type, the constraint refers to this data type */ inv: rangeSet.oclIsKindOf(levelOrIntensity) or rangeSet.oclIsKindOf(LikelihoodOfOccurrence) + + + gridFunctionRequiresGridDomain + /*The grid function shall only be valid for domains that are grids */ inv: coverageFunction.gridFunction.notEmpty() implies domainSet.oclIsKindOf(CV_Grid) + @@ -34031,6 +35246,10 @@ Data Type + + either the quantitative value or the qualitative value must be completed. + /*either the qualitative value or the quantitative value must be completed. */ inv: self.qualitativeValue.isEmpty() implies self.quantitativeValue.notEmpty() and self.quantitativeValue.isEmpty() implies self.qualitativeValue.notEmpty() + @@ -34081,6 +35300,10 @@ Data Type + + Either the qualitative likelihood or the quantitative likelihood must be completed. + /*either the qualitative likelihood or the quantitative likelihood must be completed. */ inv: self.qualitativeLikelihood.isEmpty() implies self.quantitativeLikelihood.notEmpty() and self.quantitativeLikelihood.isEmpty() implies self.qualitativeLikelihood.notEmpty() + @@ -34218,6 +35441,19 @@ CoverageByDomainAndRange Spatial Object Type + + DomainIsRectifiedGridOrReferenceableGrid + A domain is a rectified grid or referenceable grid + inv: domainSet.oclIsKindOf(CV_RectifiedGrid) or domainSet.oclIsKindOf(CV_ReferenceableGrid) + + + RangeSet is levelOrIntensityOr LikelihoodOfOccurrence + /*range set is described by magnitude or intensity, or by the likelihood of occurence. As "magnitude or intensity is modeled by the "LevelOrIntensity" data type, the constraint refers to this data type */ inv: rangeSet.oclIsKindOf(levelOrIntensity) or rangeSet.oclIsKindOf(LikelihoodOfOccurrence) + + + gridFunctionRequiresGridDomain + /*The grid function shall only be valid for domains that are grids */ inv: coverageFunction.gridFunction.notEmpty() implies domainSet.oclIsKindOf(CV_Grid) + @@ -34266,6 +35502,19 @@ CoverageByDomainAndRange Spatial Object Type + + DomainIsRectifedGridOrReferenceableGrid + A domain is a rectified grid or referenceable grid + inv: domainSet.oclIsKindOf(CV_RectifiedGrid) or domainSet.oclIsKindOf(CV_ReferenceableGrid) + + + Range set is levelOrIntensity + /* A range set is described by level, or intensity */ inv: rangeSet.oclIsKindOf(LevelOrIntensity) + + + gridFunctionRequiresGridDomain + /*The grid function shall only be valid for domains that are grids */ inv: coverageFunction.gridFunction.notEmpty() implies domainSet.oclIsKindOf(CV_Grid) + @@ -35085,6 +36334,10 @@ Data Type + + valueOrSpecialValue + /* Either the value or the specialValue attribute shall be provided. */ + @@ -35347,6 +36600,9 @@ Spatial Object Type + + Geometry must be provided only in case that not linkage with a building schema entity was stablished + @@ -37734,6 +38990,10 @@ Spatial Object Type + + noGeometry + /* If geometry has no value, a reference to a spatial object needs to be provided. */ inv: self.geometry->isEmpty() implies self.spatialObject->notEmpty() + @@ -38058,6 +39318,18 @@ Spatial Object Type + + FoI of soil profile observations + /*To fill the featureOfInterest property of the soil profile observations of a SoilProfile object, that same SoilProfile object shall be used.*/ inv: self.soilProfileObservation.featureOfInterest = self + + + code list for soil profile observations + /*The observedProperty of the soil profile observation shall be specified using a value from the SoilProfileParameterNameValue code list.*/ inv: self.soilProfileParameter.observedProperty->oclIsKindOf(SoilProfileParameterNameValue) + + + result of soil profile observations + /*The result of the soil profile observation shall be of type Number, CharacterString or RangeType.*/ inv: self.soilProfileObservation.result->oclIsKindOf(Number) or self.soilProfileObservation.result->oclIsKindOf(CharacterString) or self.soilProfileObservation.result->oclIsKindOf(RangeType) + @@ -38353,6 +39625,18 @@ Spatial Object Type + + FoI of soil profile observations + /*To fill the featureOfInterest property of the soil profile observations of a SoilProfile object, that same SoilProfile object shall be used.*/ inv: self.soilProfileObservation.featureOfInterest = self + + + code list for soil profile observations + /*The observedProperty of the soil profile observation shall be specified using a value from the SoilProfileParameterNameValue code list.*/ inv: self.soilProfileParameter.observedProperty->oclIsKindOf(SoilProfileParameterNameValue) + + + result of soil profile observations + /*The result of the soil profile observation shall be of type Number, CharacterString or RangeType.*/ inv: self.soilProfileObservation.result->oclIsKindOf(Number) or self.soilProfileObservation.result->oclIsKindOf(CharacterString) or self.soilProfileObservation.result->oclIsKindOf(RangeType) + @@ -38608,6 +39892,18 @@ Spatial Object Type + + FoI of profile element observations + /*To fill the featureOfInterest property of the profile element observations of a ProfileElement object, that same ProfileElement object shall be used.*/ inv: self.profileElementObservation.featureOfInterest = self + + + code list for profile element observations + /*The observedProperty of the profile element observation shall be specified using a value from the ProfileElementParameterNameValue code list.*/ inv: self.profileElementParameter.observedProperty->oclIsKindOf(ProfileElementParameterNameValue) + + + result of profile element observations + /*The result of the profile element observation shall be of type Number, CharacterString or RangeType.*/ inv: self.profileElementObservation.result->oclIsKindOf(Number) or self.profileElementObservation.result->oclIsKindOf(CharacterString) or self.profileElementObservation.result->oclIsKindOf(RangeType) + @@ -38806,6 +40102,11 @@ Data Type + + intervalConstraint + at least one of the values shall not be empty + inv: self.upperValue->notEmpty() or self.lowerValue->notEmpty() + @@ -39010,6 +40311,18 @@ Spatial Object Type + + FoI of Soil derived object observations + /*To fill the featureOfInterest property of the soil derived object observation, the same SoilDerivedObject object shall be used.*/ inv: self.soilDerivedObjectObservation.featureOfInterest = self + + + code list for parameter of soil derived objects + /*The observedProperty of the soil derived object observation shall be specified using a value from the SoilDerivedObjectParameterNameValue code list.*/ inv: self.soilDerivedObjectParameter.observedProperty->oclIsKindOf(SoilDerivedObjectParameterNameValue) + + + results of soil derived object observations + /*The result of the soil derived object observation shall be of type Number, CharacterString or RangeType.*/ inv: self.soilDerivedObjectObservation.result->oclIsKindOf(Number) or self.soilDerivedObjectObservation.result->oclIsKindOf(CharacterString) or self.soilDerivedObjectObservation.result->oclIsKindOf(RangeType) + @@ -39214,6 +40527,18 @@ Spatial Object Type + + FoI of profile element observations + /*To fill the featureOfInterest property of the profile element observations of a ProfileElement object, that same ProfileElement object shall be used.*/ inv: self.profileElementObservation.featureOfInterest = self + + + code list for profile element observations + /*The observedProperty of the profile element observation shall be specified using a value from the ProfileElementParameterNameValue code list.*/ inv: self.profileElementParameter.observedProperty->oclIsKindOf(ProfileElementParameterNameValue) + + + result of profile element observations + /*The result of the profile element observation shall be of type Number, CharacterString or RangeType.*/ inv: self.profileElementObservation.result->oclIsKindOf(Number) or self.profileElementObservation.result->oclIsKindOf(CharacterString) or self.profileElementObservation.result->oclIsKindOf(RangeType) + @@ -39302,6 +40627,22 @@ Spatial Object Type + + geogenicConstraint + /*The attributes layerGenesisProcess, layerGenesisEnvironment, layerGenesisProcessState and layerRockType are only needed when layerType is of the value 'geogenic'*/ inv: self.layerType = LayerTypeValue::geogenic implies (self.layerGenisisEnvironment.isNotEmpty() and self.layerGenisisProcess.isNotEmpty() and self.layerRockType.isNotEmpty() and layerGenesisProcessState.isNotEmpty()) + + + FoI of profile element observations + /*To fill the featureOfInterest property of the profile element observations of a ProfileElement object, that same ProfileElement object shall be used.*/ inv: self.profileElementObservation.featureOfInterest = self + + + code list for profile element observations + /*The observedProperty of the profile element observation shall be specified using a value from the ProfileElementParameterNameValue code list.*/ inv: self.profileElementParameter.observedProperty->oclIsKindOf(ProfileElementParameterNameValue) + + + result of profile element observations + /*The result of the profile element observation shall be of type Number, CharacterString or RangeType.*/ inv: self.profileElementObservation.result->oclIsKindOf(Number) or self.profileElementObservation.result->oclIsKindOf(CharacterString) or self.profileElementObservation.result->oclIsKindOf(RangeType) + @@ -39589,6 +40930,18 @@ Spatial Object Type + + FoI of soil profile observations + /*To fill the featureOfInterest property of the soil profile observations of a SoilProfile object, that same SoilProfile object shall be used.*/ inv: self.soilProfileObservation.featureOfInterest = self + + + code list for soil profile observations + /*The observedProperty of the soil profile observation shall be specified using a value from the SoilProfileParameterNameValue code list.*/ inv: self.soilProfileParameter.observedProperty->oclIsKindOf(SoilProfileParameterNameValue) + + + result of soil profile observations + /*The result of the soil profile observation shall be of type Number, CharacterString or RangeType.*/ inv: self.soilProfileObservation.result->oclIsKindOf(Number) or self.soilProfileObservation.result->oclIsKindOf(CharacterString) or self.soilProfileObservation.result->oclIsKindOf(RangeType) + @@ -39814,6 +41167,18 @@ Spatial Object Type + + FoI of soil site observations + /*To fill the featureOfInterest property of the soil site observations of a SoilSite object, that same SoilSite object shall be used.*/ inv: self.soilSiteObservation.featureOfInterest = self + + + code list for soil site observations + /*The observedProperty of the soil site observation shall be specified using a value from the SoilSiteParameterNameValue code list.*/ inv: self.soilSiteParameter.observedProperty->oclIsKindOf(SoilSiteParameterNameValue) + + + result of soil site observations + /*The result of the soil site observation shall be of type Number, CharacterString or RangeType.*/ inv: self.soilSiteObservation.result->oclIsKindOf(Number) or self.soilSiteObservation.result->oclIsKindOf(CharacterString) or self.soilSiteObservation.result->oclIsKindOf(RangeType) + @@ -40008,6 +41373,23 @@ Spatial Object Type + + rangeSetValuesConstraint + /*rangeSet values shall be of type Number, CharacterString or RangeType.*/ inv: rangeSet->oclIsKindOf(Number) or rangeSet->oclIsKindOf(Characterstring) or rangeSet->oclIsKindOf(RangeType) + + + domainIsRectifiedGrid + The domain shall be a rectified grid. + inv: domainSet.oclIsKindOf(CV_RectifiedGrid) + + + grid points shall coincide with grid cell centres + /*Grid points of a RectifiedGridCoverage shall coincide with the centres of cells of the geographical grids defined in Section 2.2 of Annex II at any resolution level.*/ + + + gridFunctionRequiresGridDomain + /*The grid function shall only be valid for domains that are grids */ inv: coverageFunction.gridFunction.notEmpty() implies domainSet.oclIsKindOf(CV_Grid) + @@ -40163,6 +41545,23 @@ Spatial Object Type + + rangeSetValuesConstraint + /*rangeSet values shall be of type Number, CharacterString or RangeType.*/ inv: rangeSet->oclIsKindOf(Number) or rangeSet->oclIsKindOf(Characterstring) or rangeSet->oclIsKindOf(RangeType) + + + domainIsRectifiedGrid + The domain shall be a rectified grid. + inv: domainSet.oclIsKindOf(CV_RectifiedGrid) + + + grid points shall coincide with grid cell centres + /*Grid points of a RectifiedGridCoverage shall coincide with the centres of cells of the geographical grids defined in Section 2.2 of Annex II at any resolution level.*/ + + + gridFunctionRequiresGridDomain + /*The grid function shall only be valid for domains that are grids */ inv: coverageFunction.gridFunction.notEmpty() implies domainSet.oclIsKindOf(CV_Grid) + @@ -40654,6 +42053,10 @@ Shoreline Spatial Object Type + + coastline is special case of shoreline at Mean High Water Level + /*Coastline is a special case of shoreline at Mean High Water Level. Coastline is the boundary between land and sea to be used for viewing, discovery and general purpose applications where a land/marine boundary is required. Where there is not significant variation in water level, MSL can be used as a substitute for MHW */ + @@ -41076,6 +42479,10 @@ Spatial Object Type + + geometry should be a GM_Point or GM_Surface + /* A Marine Layer can be represented as either a surface or a point. The point type geometry reflects the reality that many Marine Layers are identified by point observations. */ inv:self.geometry.oclIsKindOf(GM_Point) OR self.geometry.oclIsKindOf(GM_Surface) + @@ -41209,6 +42616,11 @@ Spatial Object Type + + extent.waterLevel must be meanHighWater + Sea is defined at Mean High Water. This constraint can be relaxed if there is not significant tidal variation in water level + inv: self.extent.waterLevel = 'meanHighWater' + @@ -41404,6 +42816,10 @@ Spatial Object Type + + geometry should be a GM_Point or GM_Surface + /* A Marine Layer can be represented as either a surface or a point. The point type geometry reflects the reality that many Marine Layers are identified by point observations. */ inv:self.geometry.oclIsKindOf(GM_Point) OR self.geometry.oclIsKindOf(GM_Surface) + @@ -41458,6 +42874,10 @@ Spatial Object Type + + geometry should be a GM_Point or GM_Surface + /* A Marine Layer can be represented as either a surface or a point. The point type geometry reflects the reality that many Marine Layers are identified by point observations. */ inv:self.geometry.oclIsKindOf(GM_Point) OR self.geometry.oclIsKindOf(GM_Surface) + @@ -41800,6 +43220,10 @@ Spatial Object Type + + resolutionTypeConstraint + /* If the coordinate reference system is a projected one, the resolution shall be a length. Otherwise, it shall be an angle. */ + @@ -41991,6 +43415,22 @@ Spatial Object Type + + cellCodeConstraint + /* The code shall be composed of: (1) A coordinate reference system part, represented by the word CRS, followed by the EPSG code. (2) A resolution and position part: &ndash; If the coordinate reference system is projected, the word RES followed by the grid resolution in meters and the letter m. Then, the letter N followed by the northing value in meters, and the letter E followed by the easting value in meters. &ndash; If the coordinate reference system is not projected, the word RES followed by the grid resolution in degree-minute-second, followed by the word dms. Then the word LON followed by the longitude value in degree-minute-second, and word LAT followed by the latitude value in degree-minute-second. For both cases, the given position shall be the position of the lower left cell corner. */ + + + gridPositionRangeConstraint + /* The cell position should be within the grid, according to its width and height */ + + + spatialRepresentationConstraint + /* At least one of the attributes code, geographicalPosition, gridPosition or geometry shall be provided */ + + + spatialRepresentationsConsistencyConstraint + /* Where several spatial representations are provided (code, geographicalPosition, gridPosition and geometry), they shall be consistent */ + @@ -42173,6 +43613,14 @@ Spatial Object Type + + AreaStatisticalUnitsGeometryConstraint + /* The reference geometry of an area statistical units should be a GM_MultiSurface. */ + + + AreaStatisticalUnitsConstraint + /* Vector statistical units with a reference geometry instance of GM_MultiSurface must be instances of the specialised class AreaStatisticalUnit. */ + @@ -42356,6 +43804,30 @@ Spatial Object Type + + AggregationConstraint + /* An evolution with a typeValue "aggregation" shall have at least two initial unit versions (the units to be aggregated) and a single final one (the resulting aggregation). */ + + + ChangeConstraint + /* An evolution with a typeValue "change" shall have one initial unit version and one final one. */ + + + ConsistencyConstraint + /* Evolution representations shall be consistent with the versions of the concerned objects. */ + + + CreationConstraint + /* An evolution with a typeValue "creation" shall not have any initial unit versions and only one final one. */ + + + DeletionConstraint + /* An evolution with a typeValue "deletion" shall have one initial unit version and no final one. */ + + + SplittingConstraint + /* An evolution with a typeValue "splitting" shall have a single initial unit version (the unit to split), and at least two final ones (the units resulting from the splitting). */ + @@ -42536,6 +44008,14 @@ Data Type + + GeneralisedGeometryConstraint + /* The mostDetailedScale and leastDetailedScale fields shall be provided only for geometry descriptors with a type generalisedGeometry */ + + + ScaleRelationConstraint + /* If provided, mostDetailedScale shall be smaller than leastDetailedScale */ + @@ -42687,6 +44167,10 @@ Spatial Object Type + + AreaStatisticalUnitsConstraint + /* Vector statistical units with a reference geometry instance of GM_MultiSurface must be instances of the specialised class AreaStatisticalUnit. */ + @@ -43029,6 +44513,10 @@ Spatial Object Type + + endLifespanVersion + /* If set, the date endLifespanVersion shall be later than beginLifespanVersion. */ inv: self.endLifespanVersion .isAfter(self.beginLifespanVersion) + @@ -43476,6 +44964,14 @@ Spatial Object Type + + "TelecommunicationsAppurtenanceTypeValue" is not in IR + + + All utility node objects have inspireId + All utility node objects have an external object identifier. + inv:inspireId->notEmpty() + @@ -43554,6 +45050,11 @@ UtilityLinkSet Spatial Object Type + + All utility link objects have inspireId + All utility link objects have an external object identifier. + inv:inspireId->notEmpty() + @@ -43574,6 +45075,16 @@ Spatial Object Type + + "Duct" shall not have a "utilityDeliveryType" + The multiplicity of "utilityDeliveryType" shall be 0 + inv: utilityDeliveryType->size()=0 + + + All utility link objects have inspireId + All utility link objects have an external object identifier. + inv:inspireId->notEmpty() + @@ -43727,6 +45238,11 @@ Spatial Object Type + + All utility link objects have inspireId + All utility link objects have an external object identifier. + inv:inspireId->notEmpty() + @@ -44013,6 +45529,11 @@ Spatial Object Type + + All utility link objects have inspireId + All utility link objects have an external object identifier. + inv:inspireId->notEmpty() + @@ -44078,6 +45599,14 @@ Spatial Object Type + + "telecommunications" value of "utilityNetworkType" is not in IR + /*The multiplicity of "telecommunications" shall be 0*/ inv: telecommunications->size()=0 + + + All utility network objects have inspireId + /* All utility network objects have an external object identifier. */ inv:inspireId->notEmpty() + @@ -44403,6 +45932,11 @@ Node Spatial Object Type + + All utility node objects have inspireId + All utility node objects have an external object identifier. + inv:inspireId->notEmpty() + @@ -44975,6 +46509,11 @@ Spatial Object Type + + All utility link objects have inspireId + All utility link objects have an external object identifier. + inv:inspireId->notEmpty() + @@ -45133,6 +46672,11 @@ Spatial Object Type + + All utility link objects have inspireId + All utility link objects have an external object identifier. + inv:inspireId->notEmpty() + @@ -45941,6 +47485,11 @@ Spatial Object Type + + All utility link objects have inspireId + All utility link objects have an external object identifier. + inv:inspireId->notEmpty() + @@ -46354,6 +47903,14 @@ Spatial Object Type + + "TelecommunicationsCable" is not in IR + + + All utility link objects have inspireId + All utility link objects have an external object identifier. + inv:inspireId->notEmpty() + @@ -46483,6 +48040,11 @@ Spatial Object Type + + All utility link objects have inspireId + All utility link objects have an external object identifier. + inv:inspireId->notEmpty() + @@ -46926,6 +48488,11 @@ Spatial Object Type + + All utility link objects have inspireId + All utility link objects have an external object identifier. + inv:inspireId->notEmpty() + @@ -47198,6 +48765,10 @@ DiscreteCoverageGeometryValuePairs Spatial Object Type + + geometryIsTimeInstant + /* domain elements are points */ inv: element.geometry.oclIsKindOf(TM_Instant) + @@ -48279,6 +49850,18 @@ The result of a GridObservation is a discrete coverage within a compound spatiotemporal CRS where the domain consists of a two- or three-dimensional grid of points, all having the same time instant temporal component. Spatial Object Type + + featureOfInterest must be a SF_SamplingSolid or SF_SamplingSurface + /*featureOfInterest must be a SF_SamplingSolid or SF_SamplingSurface */ inv: self.featureOfInterest->forAll(oclIsKindOf(SF_SamplingSolid)) OR inv: self.featureOfInterest->forAll(oclIsKindOf(SF_SamplingSurface)) + + + phenomenonTime must be a TM_Instant + /*phenomenonTime must be a TM_Instant*/ inv: self.phenomenonTime.oclIsKindOf(TM_Instant) + + + result must be a RectifiedGridCoverage or ReferenceableGridCoverage + /*result must be a RectifiedGridCoverage or RefererencableGridCoverage*/ inv: self.result.oclIsKindOf(RectifiedGridCoverage) OR self.result.oclIsKindOf(ReferenceableGridCoverage) + @@ -48293,6 +49876,21 @@ The result of a GridSeriesObservation is a discrete coverage within a compound spatiotemporal CRS where the domain consists of a series of two- or three-dimensional grids of points, each at a successive time instant. Spatial Object Type + + One of the axes of the domain must be a temporal axis. + + + featureOfInterest must be a SF_SamplingSolid + /*featureOfInterest must be a SF_SamplingSolid */ inv: self.featureOfInterest->forAll(oclIsKindOf(SF_SamplingSolid)) + + + phenomenonTime must be a TM_Period + /* phenomenonTime must be a TM_Period */ inv: self.phenomenonTime.oclIsKindOf(TM_Period) + + + result must be a RectifiedGridCoverage or ReferenceableGridCoverage + /* result must be a RectifiedGridCoverage or a ReferenceableGridCoverage */ inv: self.result.oclIsKindOf(RectifiedGridCoverage) OR self.result.oclIsKindOf(ReferenceableGridCoverage) + @@ -48305,6 +49903,18 @@ The MultiPointObservation is an Observation that represents a set of measurements all made at exactly the same time but at different locations, for example a distributed sensor network reporting the temperature at 10am. The result of this observation is a MultiPointCoverage. Spatial Object Type + + featureOfInterest shall be a SF_SamplingSurface + /* featureOfInterest must be a SF_SamplingSurface */ inv: self.featureOfInterest->forAll(oclIsKindOf(SF_SamplingSurface)) + + + phenomenonTime shall be a TM_Instant + /*phenomenonTime must be a TM_Instant */ inv: self.phenomenonTime.oclIsKindOf(TM_Instant) + + + result must be a MultiPointCoverage + /* result must be a MultiPointCoverage */ inv: self.result.oclIsKindOf(MultiPointCoverage) + @@ -48317,6 +49927,18 @@ The PointObservation represents a single measurement or estimation of a property at a single point in time and space. For example a single temperture measurement at a fixed weather station. Spatial Object Type + + featureOfInterest must be a SF_SamplingPoint + /* featureOfInterest must be a SF_SamplingPoint */ inv: self.featureOfInterest->forAll(oclIsKindOf(SF_SamplingPoint)) + + + phenomenonTime must be a TM_Instant + /* phenomenonTime must be a TM_Instant */ inv: self.phenomenonTime.oclIsKindOf(TM_Instant) + + + result must be a CV_DiscretePointCoverage + /* result must be a CV_DiscretePointCoverage */ inv: self.result.oclIsKindOf(CV_DiscretePointCoverage) + @@ -48330,6 +49952,10 @@ ObservationSet Spatial Object Type + + member shall be of type PointObservation + /* each member shall be a PointObservation */ inv: self.member.oclIsKindOf(PointObservation) + @@ -48342,6 +49968,18 @@ A PointTimeSeriesObservation is a time series of observations made at the same fixed spatial location e.g. Measurements made repeatedly by a fixed monitoring instrument. Spatial Object Type + + featureOfInterest must be a SF_SamplingPoint + /* featureOfInterest must be a SF_SamplingPoint */ inv: self.featureOfInterest->forAll(oclIsKindOf(SF_SamplingPoint)) + + + phenomenonTime must be a TM_Period + /*phenomenonTime must be a TM_Period */ inv: self.phenomenonTime.oclIsKindOf(TM_Period) + + + result must be a TimeSeries + /* result must be a Timeseries */ inv: self.result.oclIsKindOf(TimeSeries) + @@ -48356,6 +49994,21 @@ A ProfileObservatation is an Observation representing the measurement of a property along a vertical profice in space at a single time instant. For example a CTD profile measuring salinty at different depths in the ocean. Spatial Object Type + + featureOfInterest must be a SF_SamplingCurve + /* featureOfInterest must be a SF_SamplingCurve */ inv: self.featureOfInterest->forAll(oclIsKindOf(SF_SamplingCurvet)) + + + phenomenonTime must be a TM_Instant + /*phenomenonTime must be a TM_Instant */ inv: self.phenomenonTime.oclIsKindOf(TM_Instant) + + + result must be a ReferenceableGridCoverage or RectifiedGridCoverage + /*result must be a ReferenceableGridCoverage or a RectifiedGridCoverage */ inv: self.result.oclIsKindOf(ReferenceableGridCoverage) OR inv: self.result.oclIsKindOf(RectifiedGridCoverage) + + + spatial domain of the result shall contain one axis and that shall be vertical + @@ -48397,6 +50050,22 @@ A TrajectoryObservatation is an Observation representing the measurement of a property along a meandering curve in time and space. For example a Pollutant concentration from a mobile air quality sensor. Spatial Object Type + + featureOfInterest must be a SF_SamplingCurve + /*featureOfInterest must be a SF_SamplingPoint*/ inv: self.featureOfInterest->forAll(oclIsKindOf(SF_SamplingPoint)) + + + phenomenonTime must be a TM_Period + /* phenomenonTime must be a TM_Period */ inv: self.phenomenonTime.oclIsKindOf(TM_Period) + + + result must be a TimeSeries + /* result must be a Timeseries */ inv: self.result.oclIsKindOf(TimeSeries) + + + result.point must be TimeLocationValueTriple + /* each point in the result must be a TimeLocationValueTriple */ inv: self.result.point.oclIsKindOf(TimeLocationValueTriple) + @@ -50593,6 +52262,11 @@ Object Type + + Provide_linkToLegislativeInstrument_or_journalCitation + If the link attribute is void, the journal citation shall be provided. + inv: link->notEmpty() or journalCitation->notEmpty() + @@ -50884,6 +52558,11 @@ Data Type + + individual, organisation or position name shall be provided + At least the individual, organisation or position name shall be provided. + inv: individualName->notEmpty() or organisationName->notEmpty() or positionName->notEmpty() + diff --git a/approved/fc/index.html b/approved/fc/index.html index 005cb2635..9e51226f4 100644 --- a/approved/fc/index.html +++ b/approved/fc/index.html @@ -108,14 +108,14 @@ } -

Feature Catalogue 'INSPIRE application schemas'

+

Feature Catalogue'INSPIRE application schemas'

Version:

n/a (each application schema is versioned separately)

Date:

-

31/01/2023

+

31/07/2023

Scope:

This feature catalogue gives an informative overview of the spatial object types and data types defined in the INSPIRE data specifications. These types are used by data providers for the exchange and classification of spatial objects from data sets that relate to one or several INSPIRE spatial data themes.

-

For the normative requirements, please refer to the COMMISSION REGULATION (EU) No 1089/2010 of 23 November 2010 on the interoperability of spatial data sets and services and its amendments. For a more detailed description of the application schemas, see the data specification guidance documents at https://inspire.ec.europa.eu/data-specifications.

+

For the normative requirements, please refer to the COMMISSION REGULATION (EU) No 1089/2010 of 23 November 2010 on the interoperability of spatial data sets and services. For a more detailed description of the application schemas, see the data specification guidance documents at https://inspire.ec.europa.eu/data-specifications.

Responsible organisation:

INSPIRE Maintenance and Implementation Group (MIG)

Table of contents

@@ -6195,6 +6195,78 @@

Spatial Object Type: Address

+ + +

Constraint:

+ + + + + + + + + +
+

Name:

+
+

AddressCountry

+
+

Expression:

+
+

/* An address shall have an admin unit address component spatial object whose level is 1 (Country) */ +inv: self.component -> forAll (a1 | exists(a1.parent.oclIsTypeOf(AdminUnitName) and a1.parent.level=1))

+
+ + + + +

Constraint:

+ + + + + + + + + +
+

Name:

+
+

AddressPosition

+
+

Expression:

+
+

/* An address shall have exactly one default geographic position (default attribute of GeographicPosition must be true) */ +inv: self.position -> one(a1 | a1.default = true)

+
+ + + + +

Constraint:

+ + + + + + + + + +
+

Name:

+
+

EndLifeSpanVersion

+
+

Expression:

+
+

/* If date set endLifespanVersion must be later than beginLifespanVersion (if set) */ +inv: self.endLifespanVersion.isAfter(self.beginLifespanVersion)

+
+ + @@ -6349,6 +6421,30 @@

Spatial Object Type: AddressAreaName

+ + +

Constraint:

+ + + + + + + + + +
+

Name:

+
+

EndLifeSpanVersion

+
+

Expression:

+
+

/* If date set endLifespanVersion must be later than beginLifespanVersion (if set) */ +inv: self.endLifespanVersion .isAfter(self.beginLifespanVersion)

+
+ + @@ -6887,6 +6983,30 @@

Spatial Object Type: AddressComponent

+ + +

Constraint:

+ + + + + + + + + +
+

Name:

+
+

EndLifeSpanVersion

+
+

Expression:

+
+

/* If date set endLifespanVersion must be later than beginLifespanVersion (if set) */ +inv: self.endLifespanVersion .isAfter(self.beginLifespanVersion)

+
+ + @@ -7200,6 +7320,68 @@

Data type: AddressLocator

+ + +

Constraint:

+ + + + + + + + + + + + + +
+

Name:

+
+

DesignatorEmpty

+
+

Description:

+
+

If no designator exists, a name is required.

+
+

Expression:

+
+

inv: self.designator->isEmpty() implies self.name->notEmpty()

+
+ + + + +

Constraint:

+ + + + + + + + + + + + + +
+

Name:

+
+

NameEmpty

+
+

Description:

+
+

If no name exists, a designator is required.

+
+

Expression:

+
+

inv: self.name->isEmpty() implies self.designator->notEmpty()

+
+ + @@ -7892,6 +8074,30 @@

Spatial Object Type: AdminUnitName

+ + +

Constraint:

+ + + + + + + + + +
+

Name:

+
+

EndLifeSpanVersion

+
+

Expression:

+
+

/* If date set endLifespanVersion must be later than beginLifespanVersion (if set) */ +inv: self.endLifespanVersion .isAfter(self.beginLifespanVersion)

+
+ + @@ -9160,6 +9366,92 @@

Spatial Object Type: PostalDescriptor

+ + +

Constraint:

+ + + + + + + + + +
+

Name:

+
+

EndLifeSpanVersion

+
+

Expression:

+
+

/* If date set endLifespanVersion must be later than beginLifespanVersion (if set) */ +inv: self.endLifespanVersion .isAfter(self.beginLifespanVersion)

+
+ + + + +

Constraint:

+ + + + + + + + + + + + + +
+

Name:

+
+

PostCodeEmpty

+
+

Description:

+
+

If no post code exists, a post name is required.

+
+

Expression:

+
+

inv: self.postCode->isEmpty() implies self.postName->notEmpty()

+
+ + + + +

Constraint:

+ + + + + + + + + + + + + +
+

Name:

+
+

PostNameEmpty

+
+

Description:

+
+

If no post name exists, a post code is required.

+
+

Expression:

+
+

inv: self.postName->isEmpty() implies self.postCode->notEmpty()

+
+ + @@ -9310,6 +9602,30 @@

Spatial Object Type: ThoroughfareName

+ + +

Constraint:

+ + + + + + + + + +
+

Name:

+
+

EndLifeSpanVersion

+
+

Expression:

+
+

/* If date set endLifespanVersion must be later than beginLifespanVersion (if set) */ +inv: self.endLifespanVersion .isAfter(self.beginLifespanVersion)

+
+ + @@ -10156,6 +10472,30 @@

Spatial Object Type: GovernmentalService

+ + +

Constraint:

+ + + + + + + + + +
+

Name:

+
+

endLifespanVersion

+
+

Expression:

+
+

/* If set, the date endLifespanVersion shall be later than beginLifespanVersion. */ +inv: self.endLifespanVersion .isAfter(self.beginLifespanVersion)

+
+ + @@ -12091,6 +12431,81 @@

Spatial Object Type: AdministrativeUnit

+ + +

Constraint:

+ + + + + + + + + +
+

Name:

+
+

AdmininstrativeUnitHighestLevel

+
+

Expression:

+
+

/* No unit at highest level can associate units at a higher level. */ + +inv: self.nationalLevel = '1stOrder' implies self.upperLevelUnit->isEmpty() and self.loweLevelUnit->notEmpty()

+
+ + + + +

Constraint:

+ + + + + + + + + +
+

Name:

+
+

AdministrativeUnitLowestLevel

+
+

Expression:

+
+

/* No unit at lowest level can associate units at lower level. */ + +inv: self.nationalLevel = '6thOrder' implies self.lowerLevelUnit->isEmpty and self.upperLevelUnit->notEmpty

+
+ + + + +

Constraint:

+ + + + + + + + + +
+

Name:

+
+

CondominiumsAtCountryLevel

+
+

Expression:

+
+

/*Association role condominium applies only for administrative units which nationalLevel='1st order' (country level). */ + +inv: self.condominium->notEmpty implies self.nationalLevel = '1stOrder'

+
+ + @@ -12832,6 +13247,29 @@

Spatial Object Type: Holding

+ + +

Constraint:

+ + + + + + + + + +
+

Name:

+
+

ActivityValueNACE

+
+

Expression:

+
+

At least one of the function attributes of the Holding spatial object shall be provided using the EconomicActivityNACEValue code list (for the activity attribute of the Function data type).

+
+ + @@ -13090,6 +13528,37 @@

Spatial Object Type: AerodromeArea

+ + +

Constraint:

+ + + + + + + + + + + + + +
+

Name:

+
+

All objects have inspireId

+
+

Description:

+
+

All transport areas have an external object identifier.

+
+

Expression:

+
+

inv:inspireId->notEmpty()

+
+ + @@ -13213,6 +13682,61 @@

Spatial Object Type: AerodromeCategory

+ + +

Constraint:

+ + + + + + + + + + + + + +
+

Name:

+
+

All objects have inspireId

+
+

Description:

+
+

All transport properties have an external object identifier.

+
+

Expression:

+
+

inv:inspireId->notEmpty()

+
+ + + + +

Constraint:

+ + + + + + + + + +
+

Name:

+
+

Applies to AerodromeNode and AerodromeArea only

+
+

Expression:

+
+

/* This property can only be associated with a spatial object that is an Aerodrome Node or an Aerodrome Area. */ +inv: networkRef.element.oclIsKindOf(AerodromeNode) or networkRef.element.oclIsKindOf(AerodromeArea)

+
+ + @@ -13412,6 +13936,37 @@

Spatial Object Type: AerodromeNode

+ + +

Constraint:

+ + + + + + + + + + + + + +
+

Name:

+
+

All objects have inspireId

+
+

Description:

+
+

All transport nodes have an external object identifier.

+
+

Expression:

+
+

inv:inspireId->notEmpty()

+
+ + @@ -13561,6 +14116,61 @@

Spatial Object Type: AerodromeType

+ + +

Constraint:

+ + + + + + + + + + + + + +
+

Name:

+
+

All objects have inspireId

+
+

Description:

+
+

All transport properties have an external object identifier.

+
+

Expression:

+
+

inv:inspireId->notEmpty()

+
+ + + + +

Constraint:

+ + + + + + + + + +
+

Name:

+
+

Applies to AerodromeNode and AerodromeArea only

+
+

Expression:

+
+

/* This property can only be associated with a spatial object that is an Aerodrome Node or Aerodrome Area. */ +inv: networkRef.element.oclIsKindOf(AerodromeNode) or networkRef.element.oclIsKindOf(AerodromeArea)

+
+ + @@ -13613,6 +14223,37 @@

Spatial Object Type: AirLink

+ + +

Constraint:

+ + + + + + + + + + + + + +
+

Name:

+
+

All objects have inspireId

+
+

Description:

+
+

All transport links have an external object identifier.

+
+

Expression:

+
+

inv:inspireId->notEmpty()

+
+ + @@ -13657,6 +14298,68 @@

Spatial Object Type: AirLinkSequence

+ + +

Constraint:

+ + + + + + + + + + + + + +
+

Name:

+
+

All components belong to same transport network

+
+

Description:

+
+

A transport link sequence must be composed of transport links that all belong to the same transport network.

+
+

Expression:

+
+

inv: link->forAll(l | l.link.inNetwork = self.inNetwork)

+
+ + + + +

Constraint:

+ + + + + + + + + + + + + +
+

Name:

+
+

All objects have inspireId

+
+

Description:

+
+

All transport link sequences have an external object identifier.

+
+

Expression:

+
+

inv: inspireId->notEmpty()

+
+ + @@ -13765,6 +14468,37 @@

Spatial Object Type: AirNode

+ + +

Constraint:

+ + + + + + + + + + + + + +
+

Name:

+
+

All objects have inspireId

+
+

Description:

+
+

All transport nodes have an external object identifier.

+
+

Expression:

+
+

inv:inspireId->notEmpty()

+
+ + @@ -13941,6 +14675,68 @@

Spatial Object Type: AirRoute

+ + +

Constraint:

+ + + + + + + + + + + + + +
+

Name:

+
+

All components belong to same transport network

+
+

Description:

+
+

A transport link set must be composed of transport links and or transport link sequences that all belong to the same transport network.

+
+

Expression:

+
+

inv: link->forAll(l | l.inNetwork = self.inNetwork)

+
+ + + + +

Constraint:

+ + + + + + + + + + + + + +
+

Name:

+
+

All objects have inspireId

+
+

Description:

+
+

All transport link sets have an external object identifier.

+
+

Expression:

+
+

inv:inspireId->notEmpty()

+
+ + @@ -14084,6 +14880,37 @@

Spatial Object Type: AirRouteLink

+ + +

Constraint:

+ + + + + + + + + + + + + +
+

Name:

+
+

All objects have inspireId

+
+

Description:

+
+

All transport links have an external object identifier.

+
+

Expression:

+
+

inv:inspireId->notEmpty()

+
+ + @@ -14320,6 +15147,37 @@

Spatial Object Type: AirspaceArea

+ + +

Constraint:

+ + + + + + + + + + + + + +
+

Name:

+
+

All objects have inspireId

+
+

Description:

+
+

All transport areas have an external object identifier.

+
+

Expression:

+
+

inv:inspireId->notEmpty()

+
+ + @@ -14362,40 +15220,32 @@

Spatial Object Type: ApronArea

- - - - - -
-

Spatial Object Type: ConditionOfAirFacility

- - - + + + + + +
-

ConditionOfAirFacility

-
+

Constraint:

+ + +
+

Name:

+
-

Definition:

-

-- Definition --

-

State of an air transport network element with regards to its completion and use.

+

All objects have inspireId

+

Description:

+
-

Subtype of:

-

ConditionOfFacility

+

All transport areas have an external object identifier.

+

Expression:

+
-

Type:

-

Spatial Object Type

+

inv:inspireId->notEmpty()

@@ -14408,11 +15258,11 @@

Spatial Object Type: ConditionOfAirFacility

back to package: Air Transport Network

-

-

Spatial Object Type: DesignatedPoint

+

+

Spatial Object Type: ConditionOfAirFacility

@@ -14422,18 +15272,13 @@

Spatial Object Type: DesignatedPoint

-

DesignatedPoint

+

ConditionOfAirFacility

@@ -14447,52 +15292,54 @@

Spatial Object Type: DesignatedPoint

Definition:

-- Definition --

-

A geographical location not marked by the site of a radio navigation aid, used in defining an ATS route, the flight path of an aircraft or for other navigation or ATS purposes.

-

-

-- Description --

-

SOURCE [AIXM5.0].

-

-

NOTE Examples of Designated points are compulsory and non-compulsory reporting points.

+

State of an air transport network element with regards to its completion and use.

Subtype of:

-

AirNode

+

ConditionOfFacility

+ + + + + + + + + + + + +
-

Attribute:

+

Constraint:

+

Name:

-

designator

+

All objects have inspireId

-

Definition:

+

Description:

-

-- Definition --

-

The coded designator of the point.

-

-

-- Description --

-

SOURCE [AIXM5.0].

-

-

EXAMPLE The five-letter ICAO name of the point.

+

All transport properties have an external object identifier.

-

Voidable:

+

Expression:

-

true

+

inv:inspireId->notEmpty()

+
+

Constraint:

+
-

Multiplicity:

+

Name:

-

1

+

Applies only to AerodromeNode, AerodromeArea and RunwayArea

-

Value type:

+

Expression:

-

CharacterString

+

/* This property can only be associated with a spatial object that is an Aerodrome Node, an Aerodrome Area or a Runway Area. */ +inv: networkRef.element.oclIsKindOf(AerodromeNode) or networkRef.element.oclIsKindOf(AerodromeArea) or networkRef.element.oclIsKindOf(RunwayArea)

@@ -14505,11 +15352,11 @@

Spatial Object Type: DesignatedPoint

back to package: Air Transport Network

-

-

Spatial Object Type: ElementLength

+

+

Spatial Object Type: DesignatedPoint

@@ -14519,13 +15366,18 @@

Spatial Object Type: ElementLength

-

ElementLength

+

DesignatedPoint

@@ -14546,7 +15398,7 @@

Spatial Object Type: ElementLength

Definition:

-- Definition --

-

The physical length of the element.

+

A geographical location not marked by the site of a radio navigation aid, used in defining an ATS route, the flight path of an aircraft or for other navigation or ATS purposes.

+

+

-- Description --

+

SOURCE [AIXM5.0].

+

+

NOTE Examples of Designated points are compulsory and non-compulsory reporting points.

Subtype of:

-

TransportProperty

+

AirNode

Name:

@@ -14555,14 +15407,12 @@

Spatial Object Type: ElementLength

-

length

+

designator

@@ -14570,7 +15420,7 @@

Spatial Object Type: ElementLength

-- Definition --

-

The physical length of the element.

+

The coded designator of the point.

-- Description --

-

NOTE 1 The value of the physical length of the runway [AIXM5.0], when applied to RunwayArea.

-

-

NOTE 2 Value for the length of the taxiway [AIXM5.0], when applied to TaxiwayArea.

+

SOURCE [AIXM5.0].

-

NOTE 3 The value of the physical length of the touchdown and lift-off area [AIXM5.0], when applied to TouchDownLiftOff.

+

EXAMPLE The five-letter ICAO name of the point.

Voidable:

@@ -14586,7 +15436,38 @@

Spatial Object Type: ElementLength

-

false

+

true

Value type:

+ +
-

Measure

+

CharacterString

+
+
+

Constraint:

+ + + + + + + + + + + +
+

Name:

+
+

All objects have inspireId

+
+

Description:

+
+

All transport nodes have an external object identifier.

+
+

Expression:

+
+

inv:inspireId->notEmpty()

@@ -14599,11 +15480,11 @@

Spatial Object Type: ElementLength

back to package: Air Transport Network

-

-

Spatial Object Type: ElementWidth

+

+

Spatial Object Type: ElementLength

@@ -14613,7 +15494,7 @@

Spatial Object Type: ElementWidth

-

ElementWidth

+

ElementLength

@@ -14640,7 +15521,7 @@

Spatial Object Type: ElementWidth

Definition:

-- Definition --

-

The physical width of the element.

+

The physical length of the element.

Name:

@@ -14649,14 +15530,14 @@

Spatial Object Type: ElementWidth

-

width

+

length

@@ -14686,6 +15567,214 @@

Spatial Object Type: ElementWidth

-- Definition --

-

The physical width of the element.

+

The physical length of the element.

-- Description --

-

NOTE 1 The value of the physical width of the runway [AIXM5.0], when applied to RunwayArea.

+

NOTE 1 The value of the physical length of the runway [AIXM5.0], when applied to RunwayArea.

-

NOTE 2 The value of the physical width of the taxiway [AIXM5.0], when applied to TaxiwayArea.

+

NOTE 2 Value for the length of the taxiway [AIXM5.0], when applied to TaxiwayArea.

-

NOTE 3 The value of the physical width of the touchdown and lift-off area [AIXM5.0], when applied to TouchDownLiftOff.

+

NOTE 3 The value of the physical length of the touchdown and lift-off area [AIXM5.0], when applied to TouchDownLiftOff.

+

Constraint:

+ + + + + + + + + + + + + +
+

Name:

+
+

All objects have inspireId

+
+

Description:

+
+

All transport properties have an external object identifier.

+
+

Expression:

+
+

inv:inspireId->notEmpty()

+
+
+

Constraint:

+ + + + + + + + + +
+

Name:

+
+

Applies to RunwayArea, TaxiwayArea and TouchDownLiftOff only

+
+

Expression:

+
+

/* This property can only be associated with a spatial object that is a Runway Area, Taxiway Area or Touch Down Lift Off. */ +inv: networkRef.element.oclIsKindOf(RunwayArea) or +networkRef.element.oclIsKindOf(TaxiwayArea) or +networkRef.element.oclIsKindOf(TouchDownLiftOff)

+
+
+ + + + +
+

Spatial Object Type: ElementWidth

+ + + + + + + + + + + + + + +
+

ElementWidth

+
+ + + + + + + + + + +
+

Definition:

+

-- Definition --

+

The physical width of the element.

+
+

Subtype of:

+

TransportProperty

+
+

Type:

+

Spatial Object Type

+
+
+

Attribute:

+ + + + + + + + + + + + + + + + + + + + + +
+

Name:

+
+

width

+
+

Definition:

+
+

-- Definition --

+

The physical width of the element.

+

+

-- Description --

+

NOTE 1 The value of the physical width of the runway [AIXM5.0], when applied to RunwayArea.

+

+

NOTE 2 The value of the physical width of the taxiway [AIXM5.0], when applied to TaxiwayArea.

+

+

NOTE 3 The value of the physical width of the touchdown and lift-off area [AIXM5.0], when applied to TouchDownLiftOff.

+
+

Voidable:

+
+

false

+
+

Multiplicity:

+
+

1

+
+

Value type:

+
+

Measure

+
+
+

Constraint:

+ + + + + + + + + + + + + +
+

Name:

+
+

All objects have inspireId

+
+

Description:

+
+

All transport properties have an external object identifier.

+
+

Expression:

+
+

inv:inspireId->notEmpty()

+
+
+

Constraint:

+ + + + + + + + + +
+

Name:

+
+

Applies to RunwayArea, TaxiwayArea and TouchDownLiftOff only

+
+

Expression:

+
+

/* This property can only be associated with a spatial object that is a Runway Area, Taxiway Area or Touch Down Lift Off. */ +inv: networkRef.element.oclIsKindOf(RunwayArea) or +networkRef.element.oclIsKindOf(TaxiwayArea) or +networkRef.element.oclIsKindOf(TouchDownLiftOff)

+
+
@@ -14778,6 +15867,62 @@

Spatial Object Type: FieldElevation

+

Constraint:

+ + + + + + + + + + + + + +
+

Name:

+
+

All objects have inspireId

+
+

Description:

+
+

All transport properties have an external object identifier.

+
+

Expression:

+
+

inv:inspireId->notEmpty()

+
+
+

Constraint:

+ + + + + + + + + +
+

Name:

+
+

Applies to AerodromeNode and AerodromeArea only

+
+

Expression:

+
+

/* This property can only be associated with a spatial object that is an Aerodrome Node or Aerodrome Area. */ +inv: networkRef.element.oclIsKindOf(AerodromeNode) or +networkRef.element.oclIsKindOf(AerodromeArea)

+
+
@@ -14826,6 +15971,37 @@

Spatial Object Type: InstrumentApproachProcedure

+

Constraint:

+
+ + + + + + + + + + + + +
+

Name:

+
+

All objects have inspireId

+
+

Description:

+
+

All transport links have an external object identifier.

+
+

Expression:

+
+

inv:inspireId->notEmpty()

+
+ + @@ -14916,6 +16092,62 @@

Spatial Object Type: LowerAltitudeLimit

+ + +

Constraint:

+ + + + + + + + + + + + + +
+

Name:

+
+

All objects have inspireId

+
+

Description:

+
+

All transport properties have an external object identifier.

+
+

Expression:

+
+

inv:inspireId->notEmpty()

+
+ + + + +

Constraint:

+ + + + + + + + + +
+

Name:

+
+

Applies to AirRouteLink and AirspaceArea only

+
+

Expression:

+
+

/* This property can only be associated with a spatial object that is an Air Route Link or Airspace Area. */ +inv: networkRef.element.oclIsKindOf(AirRouteLink) or +networkRef.element.oclIsKindOf(AirspaceArea)

+
+ + @@ -15268,6 +16500,37 @@

Spatial Object Type: Navaid

+ + +

Constraint:

+ + + + + + + + + + + + + +
+

Name:

+
+

All objects have inspireId

+
+

Description:

+
+

All transport nodes have an external object identifier.

+
+

Expression:

+
+

inv:inspireId->notEmpty()

+
+ + @@ -15327,6 +16590,37 @@

Spatial Object Type: ProcedureLink

+ + +

Constraint:

+ + + + + + + + + + + + + +
+

Name:

+
+

All objects have inspireId

+
+

Description:

+
+

All transport links have an external object identifier.

+
+

Expression:

+
+

inv:inspireId->notEmpty()

+
+ + @@ -15508,6 +16802,37 @@

Spatial Object Type: RunwayArea

+ + +

Constraint:

+ + + + + + + + + + + + + +
+

Name:

+
+

All objects have inspireId

+
+

Description:

+
+

All transport areas have an external object identifier.

+
+

Expression:

+
+

inv:inspireId->notEmpty()

+
+ + @@ -15664,98 +16989,32 @@

Spatial Object Type: RunwayCentrelinePoint

- - - - - -
-

Spatial Object Type: StandardInstrumentArrival

- - - - - - + + + + + +
-

StandardInstrumentArrival

-
- - - - - - - - - - -
-

Definition:

-

-- Definition --

-

A designated instrument flight rule (IFR) arrival route linking a significant point, normally on an ATS route, with a point from which a published instrument approach procedure can be commenced.

-

-

-- Description --

-

SOURCE [AIXM5.0].

-

-

NOTE 1 Acronym: STAR.

-

-

NOTE 2 It corresponds to the initial approach during the landing phase. Each airport/heliport could have various STAR linking significant points (usually connected to air routes) to the points designated to start the landing on a specific runway.

-
-

Subtype of:

-

ProcedureLink

-
-

Type:

-

Spatial Object Type

-
-
-

Attribute:

+

Constraint:

- - - - - - - -

Name:

-

designator

-
-

Definition:

-
-

-- Definition --

-

The textual designator of the Standard Instrument Arrival.

-

-

-- Description --

-

SOURCE [AIXM5.0].

-
-

Voidable:

-
-

true

+

All objects have inspireId

-

Multiplicity:

+

Description:

-

1

+

All transport nodes have an external object identifier.

-

Value type:

+

Expression:

-

CharacterString

+

inv:inspireId->notEmpty()

@@ -15768,11 +17027,11 @@

Spatial Object Type: StandardInstrumentArrival

back to package: Air Transport Network

-

-

Spatial Object Type: StandardInstrumentDeparture

+

+

Spatial Object Type: StandardInstrumentArrival

@@ -15782,14 +17041,14 @@

Spatial Object Type: StandardInstrumentDeparture

-

StandardInstrumentDeparture

+

StandardInstrumentArrival

Definition:

-- Definition --

-

A designated instrument flight rule (IFR) departure route linking the aerodrome or a specific runway of the aerodrome with a specified significant point, normally on a designated ATS route, at which the en-route phase of a flight commences.

+

A designated instrument flight rule (IFR) arrival route linking a significant point, normally on an ATS route, with a point from which a published instrument approach procedure can be commenced.

-- Description --

SOURCE [AIXM5.0].

-

NOTE 1 Acronym: SID.

+

NOTE 1 Acronym: STAR.

-

NOTE 2 It corresponds to the take-off phase. Each airport/heliport could have various SID linking the different runways to one or various significant points, usually connected to air routes.

+

NOTE 2 It corresponds to the initial approach during the landing phase. Each airport/heliport could have various STAR linking significant points (usually connected to air routes) to the points designated to start the landing on a specific runway.

@@ -15825,7 +17084,7 @@

Spatial Object Type: StandardInstrumentDeparture

-- Definition --

-

The full textual designator of the Standard Instrument Departure.

+

The textual designator of the Standard Instrument Arrival.

-- Description --

SOURCE [AIXM5.0].

@@ -15858,129 +17117,32 @@

Spatial Object Type: StandardInstrumentDeparture

- - - -
-

back to package: Air Transport Network

-

-

Spatial Object Type: SurfaceComposition

- - - - - - + + +
-

SurfaceComposition

-
- - - - - - - - - - -
-

Definition:

-

-- Definition --

-

The composition of an aerodrome/heliport related surface.

-
-

Subtype of:

-

TransportProperty

-
-

Type:

-

Spatial Object Type

-
-
-

Attribute:

+

Constraint:

- - - - - - - - - - - -

Name:

-

surfaceComposition

-
-

Definition:

-
-

-- Definition --

-

A code indicating the composition of an aerodrome/heliport related surface.

-

-

-- Description --

-

SOURCE [SurfaceCharacteristics.composition - AIXM5.0].

-

-

EXAMPLES Asphalt, concrete.

-
-

Voidable:

-
-

false

-
-

Multiplicity:

-
-

1

+

All objects have inspireId

-

Value type:

+

Description:

-

SurfaceCompositionValue (code list)

+

All transport links have an external object identifier.

-

Values:

+

Expression:

- - - - - - - - - - - - - -
-

asphalt

-
-

-- Definition --

-

Surface made of an asphalt layer.

-
-

concrete

-
-

-- Definition --

-

Surface made of a concrete layer.

-
-

grass

-
-

-- Definition --

-

Surface consisting on a grass layer.

-
+

inv:inspireId->notEmpty()

@@ -15993,11 +17155,11 @@

Spatial Object Type: SurfaceComposition

back to package: Air Transport Network

-

-

Spatial Object Type: TaxiwayArea

+

+

Spatial Object Type: StandardInstrumentDeparture

@@ -16007,18 +17169,20 @@

Spatial Object Type: TaxiwayArea

-

TaxiwayArea

+

StandardInstrumentDeparture

@@ -16048,7 +17212,7 @@

Spatial Object Type: TaxiwayArea

Definition:

-- Definition --

-

A defined path at an aerodrome/heliport established for the taxiing of aircraft/helicopters and intended to provide a link between one part of the aerodrome and another.

+

A designated instrument flight rule (IFR) departure route linking the aerodrome or a specific runway of the aerodrome with a specified significant point, normally on a designated ATS route, at which the en-route phase of a flight commences.

-- Description --

-

SOURCE [Taxiway - AIXM5.0].

+

SOURCE [AIXM5.0].

-

NOTE This includes aircraft/helicopter stand taxilines, apron taxiways, rapid exit taxiways, air taxiways etc.

+

NOTE 1 Acronym: SID.

+

+

NOTE 2 It corresponds to the take-off phase. Each airport/heliport could have various SID linking the different runways to one or various significant points, usually connected to air routes.

Subtype of:

-

TransportArea

+

ProcedureLink

+ + + +

-- Definition --

-

The textual designator of the taxiway.

+

The full textual designator of the Standard Instrument Departure.

-- Description --

SOURCE [AIXM5.0].

@@ -16081,6 +17245,349 @@

Spatial Object Type: TaxiwayArea

+

Constraint:

+ + + + + + + + + + + + + +
+

Name:

+
+

All objects have inspireId

+
+

Description:

+
+

All transport links have an external object identifier.

+
+

Expression:

+
+

inv:inspireId->notEmpty()

+
+
+ + + + +
+

Spatial Object Type: SurfaceComposition

+ + + + + + + + + + + + + + + +
+

SurfaceComposition

+
+ + + + + + + + + + +
+

Definition:

+

-- Definition --

+

The composition of an aerodrome/heliport related surface.

+
+

Subtype of:

+

TransportProperty

+
+

Type:

+

Spatial Object Type

+
+
+

Attribute:

+ + + + + + + + + + + + + + + + + + + + + + + + + +
+

Name:

+
+

surfaceComposition

+
+

Definition:

+
+

-- Definition --

+

A code indicating the composition of an aerodrome/heliport related surface.

+

+

-- Description --

+

SOURCE [SurfaceCharacteristics.composition - AIXM5.0].

+

+

EXAMPLES Asphalt, concrete.

+
+

Voidable:

+
+

false

+
+

Multiplicity:

+
+

1

+
+

Value type:

+
+

SurfaceCompositionValue (code list)

+
+

Values:

+
+ + + + + + + + + + + + + +
+

asphalt

+
+

-- Definition --

+

Surface made of an asphalt layer.

+
+

concrete

+
+

-- Definition --

+

Surface made of a concrete layer.

+
+

grass

+
+

-- Definition --

+

Surface consisting on a grass layer.

+
+
+
+

Constraint:

+ + + + + + + + + + + + + +
+

Name:

+
+

All objects have inspireId

+
+

Description:

+
+

All transport properties have an external object identifier.

+
+

Expression:

+
+

inv:inspireId->notEmpty()

+
+
+

Constraint:

+ + + + + + + + + +
+

Name:

+
+

Applies to RunwayArea, TaxiwayArea, ApronArea and TouchDownLiftOff only

+
+

Expression:

+
+

/* This property can only be associated with a spatial object that is a Runway Area, Taxiway Area, Apron Area or Touch Down Lift Off. */ +inv: networkRef.element.oclIsKindOf(RunwayArea) or +networkRef.element.oclIsKindOf(TaxiwayArea) or +networkRef.element.oclIsKindOf(ApronArea) or +networkRef.element.oclIsKindOf(TouchDownLiftOff)

+
+
+ + + + +
+

Spatial Object Type: TaxiwayArea

+ + + + + + + + + + + +
+

TaxiwayArea

+
+ + + + + + + + + + +
+

Definition:

+

-- Definition --

+

A defined path at an aerodrome/heliport established for the taxiing of aircraft/helicopters and intended to provide a link between one part of the aerodrome and another.

+

+

-- Description --

+

SOURCE [Taxiway - AIXM5.0].

+

+

NOTE This includes aircraft/helicopter stand taxilines, apron taxiways, rapid exit taxiways, air taxiways etc.

+
+

Subtype of:

+

TransportArea

+
+

Type:

+

Spatial Object Type

+
+
+

Attribute:

+ + + + + + + + + + + + + + + + + + + + + +
+

Name:

+
+

designator

+
+

Definition:

+
+

-- Definition --

+

The textual designator of the taxiway.

+

+

-- Description --

+

SOURCE [AIXM5.0].

+
+

Voidable:

+
+

true

+
+

Multiplicity:

+
+

1

+
+

Value type:

+
+

CharacterString

+
+
+

Constraint:

+ + + + + + + + + + + + + +
+

Name:

+
+

All objects have inspireId

+
+

Description:

+
+

All transport areas have an external object identifier.

+
+

Expression:

+
+

inv:inspireId->notEmpty()

+
+
@@ -16174,6 +17681,37 @@

Spatial Object Type: TouchDownLiftOff

+

Constraint:

+ + + + + + + + + + + + + +
+

Name:

+
+

All objects have inspireId

+
+

Description:

+
+

All transport nodes have an external object identifier.

+
+

Expression:

+
+

inv:inspireId->notEmpty()

+
+
@@ -16261,6 +17799,62 @@

Spatial Object Type: UpperAltitudeLimit

+

Constraint:

+ + + + + + + + + + + + + +
+

Name:

+
+

All objects have inspireId

+
+

Description:

+
+

All transport properties have an external object identifier.

+
+

Expression:

+
+

inv:inspireId->notEmpty()

+
+
+

Constraint:

+ + + + + + + + + +
+

Name:

+
+

Applies to AirRouteLink and AirspaceArea only

+
+

Expression:

+
+

/* This property can only be associated with a spatial object that is an Air Route Link or Airspace Area. */ +inv: networkRef.element.oclIsKindOf(AirRouteLink) or +networkRef.element.oclIsKindOf(AirspaceArea)

+
+
@@ -16375,6 +17969,64 @@

Spatial Object Type: UseRestriction

+ + +

Constraint:

+ + + + + + + + + + + + + +
+

Name:

+
+

All objects have inspireId

+
+

Description:

+
+

All transport properties have an external object identifier.

+
+

Expression:

+
+

inv:inspireId->notEmpty()

+
+ + + + +

Constraint:

+ + + + + + + + + +
+

Name:

+
+

Applies to AirRoute, AirLinks, AirNodes and AerodromeArea only

+
+

Expression:

+
+

/* This property can only be associated with a spatial object that is an Air Route, Air Link (or specialized Air Link), Air Node (or specialized Air Node) or Aerodrome Area. */ +inv: networkRef.element.oclIsKindOf(AirRoute) or +networkRef.element.oclIsKindOf(AirLink) or +networkRef.element.oclIsKindOf(AirNode) or +networkRef.element.oclIsKindOf(AerodromeArea)

+
+ + @@ -17582,6 +19234,53 @@

Spatial Object Type: ManagementRestrictionOrRegulationZone

+ + + + + +
+

Constraint:

+ + + + + + + + + +
+

Name:

+
+

Specify at least the most specific legal instrument.

+
+

Expression:

+
+

/*At least the most specific legal instrument that required the establishment of zone shall be provided using the legalBasis association role.*/

+
+
+

Constraint:

+ + + + + + + + + +
+

Name:

+
+

competentAuthority.role shall be "authority"

+
+

Expression:

+
+

/*The role attribute of the competentAuthority shall take the value “authority”.*/ +inv: competentAuthority.role = RelatedPartyRoleValue::authority

+
+
@@ -19058,6 +20757,37 @@

Object type: LegislationCitation

+ + +

Constraint:

+ + + + + + + + + + + + + +
+

Name:

+
+

Provide_linkToLegislativeInstrument_or_journalCitation

+
+

Description:

+
+

If the link attribute is void, the journal citation shall be provided.

+
+

Expression:

+
+

inv: link->notEmpty() or journalCitation->notEmpty()

+
+ + @@ -19629,6 +21359,37 @@

Data type: RelatedParty

+ + +

Constraint:

+ + + + + + + + + + + + + +
+

Name:

+
+

individual, organisation or position name shall be provided

+
+

Description:

+
+

At least the individual, organisation or position name shall be provided.

+
+

Expression:

+
+

inv: individualName->notEmpty() or organisationName->notEmpty() or positionName->notEmpty()

+
+ + @@ -20511,6 +22272,61 @@

Spatial Object Type: Building

+ + +

Constraint:

+ + + + + + + + + +
+

Name:

+
+

Building parts shall be 2D

+
+

Expression:

+
+

/*The parts of the building shall be represented using the BuildingPart type of the Buildings2D package.*/ +inv: self.parts->oclIsKindOf(Buildings2D::BuildingPart)

+
+ + + + +

Constraint:

+ + + + + + + + + + + + + +
+

Name:

+
+

singleReferenceGeometry

+
+

Description:

+
+

Exactly one geometry2D attribute must be a reference geometry, i.e. the referenceGeometry attribute must be 'true'.

+
+

Expression:

+
+

inv: self.geometry2D->select(referenceGeometry=true)->size() = 1

+
+ + @@ -20613,6 +22429,37 @@

Spatial Object Type: BuildingPart

+ + +

Constraint:

+ + + + + + + + + + + + + +
+

Name:

+
+

singleReferenceGeometry

+
+

Description:

+
+

Exactly one geometry2D attribute must be a reference geometry, i.e. the referenceGeometry attribute must be 'true'.

+
+

Expression:

+
+

inv: self.geometry2D->select(referenceGeometry=true)->size() = 1

+
+ + @@ -20939,6 +22786,53 @@

Spatial Object Type: Building

+ + +

Constraint:

+ + + + + + + + + +
+

Name:

+
+

Building parts shall be 3D

+
+

Expression:

+
+

/*The parts of the building shall be represented using the BuildingPart type of the Buildings3D package.*/ +inv: self.parts->oclIsKindOf(Buildings3D::BuildingPart)

+
+ + + + +

Constraint:

+ + + + + + + + + +
+

Name:

+
+

GeometryWhenNoParts

+
+

Expression:

+
+

/*If a Building does not have any BuildingParts, at least the geometry3DLoD1 or geometry3DLoD2 or geometry3DLoD3 or geometry3DLoD4 attributes shall be provided.*/

+
+ + @@ -21325,6 +23219,37 @@

Data type: BuildingGeometry3DLoD

+ + +

Constraint:

+ + + + + + + + + + + + + +
+

Name:

+
+

oneGeometryToBeProvided

+
+

Description:

+
+

Either the geometryMultiSurface or the geometrySolid attribute shall be provided.

+
+

Expression:

+
+

inv: self.geometryMultiSurface->notEmpty() or self.geometrySolid->notEmpty()

+
+ + @@ -21532,6 +23457,61 @@

Data type: BuildingGeometry3DLoD1

+ + +

Constraint:

+ + + + + + + + + +
+

Name:

+
+

no point referencing in 3D

+
+

Expression:

+
+

/*The horizontalGeometryReference attribute shall not take the value entrancePoint, pointInsideBuilding or pointInsideCadastralParcel.*/ +inv: self.horizontalGeometryReference->excludesAll(Set{HorizontalGeometryReferenceValue::entrancePoint, HorizontalGeometryReferenceValue::pointInsideBuilding , HorizontalGeometryReferenceValue::pointInsideCadastralParcel})

+
+ + + + +

Constraint:

+ + + + + + + + + + + + + +
+

Name:

+
+

oneGeometryToBeProvided

+
+

Description:

+
+

Either the geometryMultiSurface or the geometrySolid attribute shall be provided.

+
+

Expression:

+
+

inv: self.geometryMultiSurface->notEmpty() or self.geometrySolid->notEmpty()

+
+ + @@ -21656,6 +23636,61 @@

Data type: BuildingGeometry3DLoD2

+ + +

Constraint:

+ + + + + + + + + +
+

Name:

+
+

no point referencing in 3D

+
+

Expression:

+
+

/*The horizontalGeometryReference attribute shall not take the value entrancePoint, pointInsideBuilding or pointInsideCadastralParcel.*/ +inv: self.horizontalGeometryReference->excludesAll(Set{HorizontalGeometryReferenceValue::entrancePoint, HorizontalGeometryReferenceValue::pointInsideBuilding , HorizontalGeometryReferenceValue::pointInsideCadastralParcel})

+
+ + + + +

Constraint:

+ + + + + + + + + + + + + +
+

Name:

+
+

oneGeometryToBeProvided

+
+

Description:

+
+

Either the geometryMultiSurface or the geometrySolid attribute shall be provided.

+
+

Expression:

+
+

inv: self.geometryMultiSurface->notEmpty() or self.geometrySolid->notEmpty()

+
+ + @@ -21965,6 +24000,29 @@

Spatial Object Type: BuildingPart

+ + +

Constraint:

+ + + + + + + + + +
+

Name:

+
+

MandatoryGeometry

+
+

Expression:

+
+

/*At least one of the geometry3DLoD1 or geometry3DLoD2 or geometry3DLoD3 or geometry3DLoD4 attributes shall be provided.*/

+
+ + @@ -23536,6 +25594,114 @@

Data type: BuildingGeometry2D

+ + +

Constraint:

+ + + + + + + + + +
+

Name:

+
+

geometryIsPointOrSurfaceOrMultiSurface

+
+

Expression:

+
+

/*Geometry shall be of type GM_Point or GM_Surface or GM_MultiSurface.*/

+
+ + + + +

Constraint:

+ + + + + + + + + + + + + +
+

Name:

+
+

horizontalGeometryEstimatedAccuracyUoMIsMetre

+
+

Description:

+
+

The value of horizontalGeometryEstimatedAccuracy shall be given in meters.

+
+

Expression:

+
+

inv: self.horizontalGeometryEstimatedAccuracy.uom.uomSymbol='m'

+
+ + + + +

Constraint:

+ + + + + + + + + +
+

Name:

+
+

referenceGeometry

+
+

Expression:

+
+

/*For exactly one item of BuildingGeometry, the value of the attribute referenceGeometry shall be 'true'.*/

+
+ + + + +

Constraint:

+ + + + + + + + + + + + + +
+

Name:

+
+

verticalGeometryEstimatedAccuracyUoMIsMetre

+
+

Description:

+
+

The Value of verticalGeometryEstimatedAccuracy has to be given in meters.

+
+

Expression:

+
+

inv: self.verticalGeometryEstimatedAccuracy.uom.uomSymbol='m'

+
+ + @@ -23770,6 +25936,30 @@

Data type: CurrentUse

+ + +

Constraint:

+ + + + + + + + + +
+

Name:

+
+

percentageSum

+
+

Expression:

+
+

/* The total of all percentages shall be less or equal to 100. */ +inv: self.percentage.sum()<=100

+
+ + @@ -23959,6 +26149,53 @@

Data type: DateOfEvent

+ + +

Constraint:

+ + + + + + + + + +
+

Name:

+
+

atLeastOneEvent

+
+

Expression:

+
+

/*At least, one of the attributes beginning, end or anyPoint shall be supplied.*/ +inv: dateOfEvent->notEmpty()

+
+ + + + +

Constraint:

+ + + + + + + + + +
+

Name:

+
+

beginning is before anyPoint is before end

+
+

Expression:

+
+

inv: beginning <= anyPoint and anyPoint <= end and beginning <= end

+
+ + @@ -24654,6 +26891,37 @@

Data type: HeightAboveGround

+ + +

Constraint:

+ + + + + + + + + + + + + +
+

Name:

+
+

valueUoMIsMetre

+
+

Description:

+
+

Value shall be in meters.

+
+

Expression:

+
+

inv: self.value.uom.uomSymbol='m'

+
+ + @@ -24803,6 +27071,37 @@

Spatial Object Type: CablewayLink

+ + +

Constraint:

+ + + + + + + + + + + + + +
+

Name:

+
+

All objects have inspireId

+
+

Description:

+
+

All transport links have an external object identifier.

+
+

Expression:

+
+

inv:inspireId->notEmpty()

+
+ + @@ -24842,6 +27141,68 @@

Spatial Object Type: CablewayLinkSequence

+ + +

Constraint:

+ + + + + + + + + + + + + +
+

Name:

+
+

All components belong to same transport network

+
+

Description:

+
+

A transport link sequence must be composed of transport links that all belong to the same transport network.

+
+

Expression:

+
+

inv: link->forAll(l | l.link.inNetwork = self.inNetwork)

+
+ + + + +

Constraint:

+ + + + + + + + + + + + + +
+

Name:

+
+

All objects have inspireId

+
+

Description:

+
+

All transport link sequences have an external object identifier.

+
+

Expression:

+
+

inv: inspireId->notEmpty()

+
+ + @@ -24881,6 +27242,68 @@

Spatial Object Type: CablewayLinkSet

+ + +

Constraint:

+ + + + + + + + + + + + + +
+

Name:

+
+

All components belong to same transport network

+
+

Description:

+
+

A transport link set must be composed of transport links and or transport link sequences that all belong to the same transport network.

+
+

Expression:

+
+

inv: link->forAll(l | l.inNetwork = self.inNetwork)

+
+ + + + +

Constraint:

+ + + + + + + + + + + + + +
+

Name:

+
+

All objects have inspireId

+
+

Description:

+
+

All transport link sets have an external object identifier.

+
+

Expression:

+
+

inv:inspireId->notEmpty()

+
+ + @@ -24920,6 +27343,37 @@

Spatial Object Type: CablewayNode

+ + +

Constraint:

+ + + + + + + + + + + + + +
+

Name:

+
+

All objects have inspireId

+
+

Description:

+
+

All transport nodes have an external object identifier.

+
+

Expression:

+
+

inv:inspireId->notEmpty()

+
+ + @@ -25087,6 +27541,37 @@

Spatial Object Type: AccessRestriction

+ + +

Constraint:

+ + + + + + + + + + + + + +
+

Name:

+
+

All objects have inspireId

+
+

Description:

+
+

All transport properties have an external object identifier.

+
+

Expression:

+
+

inv:inspireId->notEmpty()

+
+ + @@ -25181,88 +27666,32 @@

Spatial Object Type: ConditionOfFacility

- - - - - -
-

Spatial Object Type: MaintenanceAuthority

- - - - - - + + +
-

MaintenanceAuthority

-
- - - - - - - - - - -
-

Definition:

-

-- Definition --

-

The authority responsible for maintenance of the transport element.

-
-

Subtype of:

-

TransportProperty

-
-

Type:

-

Spatial Object Type

-
-
-

Attribute:

+

Constraint:

- - - - - - - -

Name:

-

authority

+

All objects have inspireId

-

Definition:

+

Description:

-

-- Definition --

-

Identification of the maintenance authority.

+

All transport properties have an external object identifier.

-

Voidable:

+

Expression:

-

false

-
-

Multiplicity:

-
-

1

-
-

Value type:

-
-

CI_Citation (data type)

+

inv:inspireId->notEmpty()

@@ -25275,11 +27704,11 @@

Spatial Object Type: MaintenanceAuthority

back to package: Common Transport Elements

-

-

Spatial Object Type: MarkerPost

+

+

Spatial Object Type: MaintenanceAuthority

@@ -25289,16 +27718,13 @@

Spatial Object Type: MarkerPost

-

MarkerPost

+

MaintenanceAuthority

@@ -25319,7 +27745,7 @@

Spatial Object Type: MarkerPost

Definition:

-- Definition --

-

Reference marker placed along a route in a transport network, mostly at regular intervals, indicating the distance from the beginning of the route, or some other reference point, to the point where the marker is located.

-

-

-- Description --

-

EXAMPLE Examples of routes along which marker posts can be found are roads, railway lines and navigable waterways.

+

The authority responsible for maintenance of the transport element.

Subtype of:

-

TransportPoint

+

TransportProperty

Name:

@@ -25328,7 +27754,7 @@

Spatial Object Type: MarkerPost

-

location

+

authority

@@ -25352,7 +27778,7 @@

Spatial Object Type: MarkerPost

-- Definition --

-

Distance from the beginning of the route, or some other reference point, to the point where a marker post is located.

+

Identification of the maintenance authority.

Value type:

-

Distance

+

CI_Citation (data type)

@@ -25360,47 +27786,30 @@

Spatial Object Type: MarkerPost

+ + + + + + + +
-

Association role:

+

Constraint:

- - - - - - - -

Name:

-

route

+

All objects have inspireId

-

Definition:

+

Description:

-

-- Definition --

-

Route in a transport network along which the marker post is placed.

+

All transport properties have an external object identifier.

-

Voidable:

+

Expression:

-

true

-
-

Multiplicity:

-
-

1

-
-

Value type:

-
-

TransportLinkSet (spatial object type)

+

inv:inspireId->notEmpty()

@@ -25413,11 +27822,11 @@

Spatial Object Type: MarkerPost

back to package: Common Transport Elements

-

-

Spatial Object Type: OwnerAuthority

+

+

Spatial Object Type: MarkerPost

@@ -25427,13 +27836,16 @@

Spatial Object Type: OwnerAuthority

-

OwnerAuthority

+

MarkerPost

@@ -25454,7 +27866,7 @@

Spatial Object Type: OwnerAuthority

Definition:

-- Definition --

-

The authority owning the transport element.

+

Reference marker placed along a route in a transport network, mostly at regular intervals, indicating the distance from the beginning of the route, or some other reference point, to the point where the marker is located.

+

+

-- Description --

+

EXAMPLE Examples of routes along which marker posts can be found are roads, railway lines and navigable waterways.

Subtype of:

-

TransportProperty

+

TransportPoint

Name:

@@ -25463,7 +27875,173 @@

Spatial Object Type: OwnerAuthority

-

authority

+

location

+ + + + + + + + + + + + + +

-- Definition --

-

Identification of the owning authority.

+

Distance from the beginning of the route, or some other reference point, to the point where a marker post is located.

+
+

Voidable:

+
+

false

+
+

Multiplicity:

+
+

1

+
+

Value type:

+
+

Distance

+
+
+

Association role:

+ + + + + + + + + + + + + + + + + + + + + +
+

Name:

+
+

route

+
+

Definition:

+
+

-- Definition --

+

Route in a transport network along which the marker post is placed.

+
+

Voidable:

+
+

true

+
+

Multiplicity:

+
+

1

+
+

Value type:

+
+

TransportLinkSet (spatial object type)

+
+
+

Constraint:

+ + + + + + + + + + + + + +
+

Name:

+
+

All objects have inspireId

+
+

Description:

+
+

All transport points have an external object identfier.

+
+

Expression:

+
+

inv:inspireId->notEmpty()

+
+
+ + + + +
+

Spatial Object Type: OwnerAuthority

+ + + + + + + + + + +
+

OwnerAuthority

+
+ + + + + + + + + + +
+

Definition:

+

-- Definition --

+

The authority owning the transport element.

+
+

Subtype of:

+

TransportProperty

+
+

Type:

+

Spatial Object Type

+
+
+

Attribute:

+ + + + + + + + @@ -25493,6 +28071,37 @@

Spatial Object Type: OwnerAuthority

+

Name:

+
+

authority

+
+

Definition:

+
+

-- Definition --

+

Identification of the owning authority.

+

Constraint:

+ + + + + + + + + + + + + +
+

Name:

+
+

All objects have inspireId

+
+

Description:

+
+

All transport properties have an external object identifier.

+
+

Expression:

+
+

inv:inspireId->notEmpty()

+
+
@@ -25739,6 +28348,37 @@

Spatial Object Type: RestrictionForVehicles

+

Constraint:

+ + + + + + + + + + + + + +
+

Name:

+
+

All objects have inspireId

+
+

Description:

+
+

All transport properties have an external object identifier.

+
+

Expression:

+
+

inv:inspireId->notEmpty()

+
+
@@ -25832,6 +28472,61 @@

Spatial Object Type: TrafficFlowDirection

+ + +

Constraint:

+ + + + + + + + + + + + + +
+

Name:

+
+

All objects have inspireId

+
+

Description:

+
+

All transport properties have an external object identifier.

+
+

Expression:

+
+

inv:inspireId->notEmpty()

+
+ + + + +

Constraint:

+ + + + + + + + + +
+

Name:

+
+

Applies to Link and LinkSequence only

+
+

Expression:

+
+

/* This property can only be associated with a spatial object of the type Link or LinkSequence. */ +inv: networkRef.element.oclIsKindOf(LinkReference)

+
+ + @@ -25993,6 +28688,37 @@

Spatial Object Type: TransportArea

+ + +

Constraint:

+ + + + + + + + + + + + + +
+

Name:

+
+

All objects have inspireId

+
+

Description:

+
+

All transport areas have an external object identifier.

+
+

Expression:

+
+

inv:inspireId->notEmpty()

+
+ + @@ -26145,6 +28871,37 @@

Spatial Object Type: TransportLink

+ + +

Constraint:

+ + + + + + + + + + + + + +
+

Name:

+
+

All objects have inspireId

+
+

Description:

+
+

All transport links have an external object identifier.

+
+

Expression:

+
+

inv:inspireId->notEmpty()

+
+ + @@ -26297,6 +29054,68 @@

Spatial Object Type: TransportLinkSequence

+ + +

Constraint:

+ + + + + + + + + + + + + +
+

Name:

+
+

All components belong to same transport network

+
+

Description:

+
+

A transport link sequence must be composed of transport links that all belong to the same transport network.

+
+

Expression:

+
+

inv: link->forAll(l | l.link.inNetwork = self.inNetwork)

+
+ + + + +

Constraint:

+ + + + + + + + + + + + + +
+

Name:

+
+

All objects have inspireId

+
+

Description:

+
+

All transport link sequences have an external object identifier.

+
+

Expression:

+
+

inv: inspireId->notEmpty()

+
+ + @@ -26505,6 +29324,68 @@

Spatial Object Type: TransportLinkSet

+ + +

Constraint:

+ + + + + + + + + + + + + +
+

Name:

+
+

All components belong to same transport network

+
+

Description:

+
+

A transport link set must be composed of transport links and or transport link sequences that all belong to the same transport network.

+
+

Expression:

+
+

inv: link->forAll(l | l.inNetwork = self.inNetwork)

+
+ + + + +

Constraint:

+ + + + + + + + + + + + + +
+

Name:

+
+

All objects have inspireId

+
+

Description:

+
+

All transport link sets have an external object identifier.

+
+

Expression:

+
+

inv:inspireId->notEmpty()

+
+ + @@ -26854,6 +29735,37 @@

Spatial Object Type: TransportNode

+ + +

Constraint:

+ + + + + + + + + + + + + +
+

Name:

+
+

All objects have inspireId

+
+

Description:

+
+

All transport nodes have an external object identifier.

+
+

Expression:

+
+

inv:inspireId->notEmpty()

+
+ + @@ -27147,6 +30059,37 @@

Spatial Object Type: TransportPoint

+ + +

Constraint:

+ + + + + + + + + + + + + +
+

Name:

+
+

All objects have inspireId

+
+

Description:

+
+

All transport points have an external object identfier.

+
+

Expression:

+
+

inv:inspireId->notEmpty()

+
+ + @@ -27326,6 +30269,37 @@

Spatial Object Type: TransportProperty

+ + +

Constraint:

+ + + + + + + + + + + + + +
+

Name:

+
+

All objects have inspireId

+
+

Description:

+
+

All transport properties have an external object identifier.

+
+

Expression:

+
+

inv:inspireId->notEmpty()

+
+ + @@ -27413,6 +30387,37 @@

Spatial Object Type: VerticalPosition

+ + +

Constraint:

+ + + + + + + + + + + + + +
+

Name:

+
+

All objects have inspireId

+
+

Description:

+
+

All transport properties have an external object identifier.

+
+

Expression:

+
+

inv:inspireId->notEmpty()

+
+ + @@ -27614,6 +30619,52 @@

Spatial Object Type: Appurtenance

+ + +

Constraint:

+ + + + + +
+

Name:

+
+

"TelecommunicationsAppurtenanceTypeValue" is not in IR

+
+ + + + +

Constraint:

+ + + + + + + + + + + + + +
+

Name:

+
+

All utility node objects have inspireId

+
+

Description:

+
+

All utility node objects have an external object identifier.

+
+

Expression:

+
+

inv:inspireId->notEmpty()

+
+ + @@ -27714,6 +30765,37 @@

Spatial Object Type: Cable

+ + +

Constraint:

+ + + + + + + + + + + + + +
+

Name:

+
+

All utility link objects have inspireId

+
+

Description:

+
+

All utility link objects have an external object identifier.

+
+

Expression:

+
+

inv:inspireId->notEmpty()

+
+ + @@ -27967,6 +31049,68 @@

Spatial Object Type: Duct

+ + +

Constraint:

+ + + + + + + + + + + + + +
+

Name:

+
+

"Duct" shall not have a "utilityDeliveryType"

+
+

Description:

+
+

The multiplicity of "utilityDeliveryType" shall be 0

+
+

Expression:

+
+

inv: utilityDeliveryType->size()=0

+
+ + + + +

Constraint:

+ + + + + + + + + + + + + +
+

Name:

+
+

All utility link objects have inspireId

+
+

Description:

+
+

All utility link objects have an external object identifier.

+
+

Expression:

+
+

inv:inspireId->notEmpty()

+
+ + @@ -28279,6 +31423,37 @@

Spatial Object Type: Pipe

+ + +

Constraint:

+ + + + + + + + + + + + + +
+

Name:

+
+

All utility link objects have inspireId

+
+

Description:

+
+

All utility link objects have an external object identifier.

+
+

Expression:

+
+

inv:inspireId->notEmpty()

+
+ + @@ -28852,6 +32027,37 @@

Spatial Object Type: UtilityLinkSet

+ + +

Constraint:

+ + + + + + + + + + + + + +
+

Name:

+
+

All utility link objects have inspireId

+
+

Description:

+
+

All utility link objects have an external object identifier.

+
+

Expression:

+
+

inv:inspireId->notEmpty()

+
+ + @@ -29236,130 +32442,25 @@

Spatial Object Type: UtilityNetwork

- - - - - -
-

UtilityNetworkElement

- - - - - - + + +
-

UtilityNetworkElement

-
- - - - - - - - - - -
-

Definition:

-

-- Name --

-

utility network element

-

-

-- Definition --

-

Abstract base type representing an utility network element in an utility network. Every element in an utility network provides some function that is of interest in the utility network.

-

-

-- Description --

-

NOTE Derived 'views' of real-world utility objects are represented through specialisations in other application schemas; all representations of the same real-world object share a common geographic name.

-
-

Supertype of:

-

UtilityLink

-

UtilityLinkSequence

-

UtilityLinkSet

-

UtilityNode

-

UtilityNodeContainer

-
-

Abstract:

-

true

-
-
-

Attribute:

+

Constraint:

- - - - - - - - - - - - - - - -

Name:

-

currentStatus

-
-

Definition:

-
-

-- Name --

-

current status

-

-

-- Definition --

-

The status of an utility object with regards to its completion and use.

+

"telecommunications" value of "utilityNetworkType" is not in IR

-

Voidable:

+

Expression:

-

true

-
-

Multiplicity:

-
-

1

-
-

Value type:

-
-

ConditionOfFacilityValue (code list)

-
-

Tagged Values:

-
- - - - - - - - - - - - - -

-

Tag

-

-

Value

-

-

obligation

-

-

implementingRule

-
+

/*The multiplicity of "telecommunications" shall be 0*/ +inv: telecommunications->size()=0

@@ -29367,107 +32468,72 @@

UtilityNetworkElement

+
-

Attribute:

+

Constraint:

- - - - - - - - - - - -

Name:

-

governmentalServiceReference

-
-

Definition:

-
-

-- Name --

-

governmental service reference

-

-

-- Definition --

-

Reference to a governmental service object that is linked (related) to this utility network element.

-

-

-- Description --

-

This reference can be used to link a governmental service object to a utility network element.

-
-

Voidable:

-
-

true

+

All utility network objects have inspireId

-

Multiplicity:

+

Expression:

-

0..1

-
-

Value type:

-
-

GovernmentalService (spatial object type)

+

/* All utility network objects have an external object identifier. */ +inv:inspireId->notEmpty()

+ + + + +
+

UtilityNetworkElement

+ + + + + + + + + + + + + + +
+

UtilityNetworkElement

+
-

Attribute:

- - - - - - - - - - - -
-

Name:

-
-

utilityFacilityReference

-
-

Definition:

-
-

-- Name --

-

utility facility reference

-

-

-- Definition --

-

Reference to a facility activity complex that is linked (related) to this utility network element.

-

-

-- Description --

-

This reference can be used to link a utility facility - having a more complex geometry - to a utility network element.

-
-

Voidable:

-
-

true

+

Definition:

+

-- Name --

+

utility network element

+

+

-- Definition --

+

Abstract base type representing an utility network element in an utility network. Every element in an utility network provides some function that is of interest in the utility network.

+

+

-- Description --

+

NOTE Derived 'views' of real-world utility objects are represented through specialisations in other application schemas; all representations of the same real-world object share a common geographic name.

-

Multiplicity:

-
-

0..1

+
+

Supertype of:

+

UtilityLink

+

UtilityLinkSequence

+

UtilityLinkSet

+

UtilityNode

+

UtilityNodeContainer

-

Value type:

-
-

ActivityComplex (spatial object type)

+

Abstract:

+

true

@@ -29482,7 +32548,7 @@

UtilityNetworkElement

Name:

@@ -29491,10 +32557,198 @@

UtilityNetworkElement

-

validFrom

+

currentStatus

+ + + + + + + + + + + + + + + + + +

-- Name --

-

valid from

+

current status

-- Definition --

-

The time when the utility network element started to exist in the real world.

+

The status of an utility object with regards to its completion and use.

+
+

Voidable:

+
+

true

+
+

Multiplicity:

+
+

1

+
+

Value type:

+
+

ConditionOfFacilityValue (code list)

+
+

Tagged Values:

+
+ + + + + + + + + + + + + +

+

Tag

+

+

Value

+

+

obligation

+

+

implementingRule

+
+
+
+

Attribute:

+ + + + + + + + + + + + + + + + + + + + + +
+

Name:

+
+

governmentalServiceReference

+
+

Definition:

+
+

-- Name --

+

governmental service reference

+

+

-- Definition --

+

Reference to a governmental service object that is linked (related) to this utility network element.

+

+

-- Description --

+

This reference can be used to link a governmental service object to a utility network element.

+
+

Voidable:

+
+

true

+
+

Multiplicity:

+
+

0..1

+
+

Value type:

+
+

GovernmentalService (spatial object type)

+
+
+

Attribute:

+ + + + + + + + + + + + + + + + + + + + + +
+

Name:

+
+

utilityFacilityReference

+
+

Definition:

+
+

-- Name --

+

utility facility reference

+

+

-- Definition --

+

Reference to a facility activity complex that is linked (related) to this utility network element.

+

+

-- Description --

+

This reference can be used to link a utility facility - having a more complex geometry - to a utility network element.

+
+

Voidable:

+
+

true

+
+

Multiplicity:

+
+

0..1

+
+

Value type:

+
+

ActivityComplex (spatial object type)

+
+
+

Attribute:

+ + + + + + + + @@ -29713,6 +32967,37 @@

Spatial Object Type: UtilityNode

+

Name:

+
+

validFrom

+
+

Definition:

+
+

-- Name --

+

valid from

+

+

-- Definition --

+

The time when the utility network element started to exist in the real world.

+

Constraint:

+ + + + + + + + + + + + + +
+

Name:

+
+

All utility node objects have inspireId

+
+

Description:

+
+

All utility node objects have an external object identifier.

+
+

Expression:

+
+

inv:inspireId->notEmpty()

+
+
@@ -30457,6 +33742,30 @@

Spatial Object Type: MultiTimeInstantCoverage

+ + +
+

Constraint:

+ + + + + + + + + +
+

Name:

+
+

geometryIsTimeInstant

+
+

Expression:

+
+

/* domain elements are points */ +inv: element.geometry.oclIsKindOf(TM_Instant)

+
+
@@ -30621,6 +33930,37 @@

Spatial Object Type: ElectricityCable

+

Constraint:

+ + + + + + + + + + + + + +
+

Name:

+
+

All utility link objects have inspireId

+
+

Description:

+
+

All utility link objects have an external object identifier.

+
+

Expression:

+
+

inv:inspireId->notEmpty()

+
+
@@ -31058,6 +34398,235 @@

Spatial Object Type: ElevationGridCoverage

+ + +

Constraint:

+ + + + + + + + + +
+

Name:

+
+

domainDimensionIs2

+
+

Expression:

+
+

/* The grid dimension shall always be 2 for an elevation grid coverage */ +inv: domainSet.dimension=2

+
+ + + + +

Constraint:

+ + + + + + + + + + + + + +
+

Name:

+
+

domainExtentContainsGeographicElement

+
+

Description:

+
+

The domainExtent shall be at least populated with a subtype of EX_GeographicExtent

+
+

Expression:

+
+

inv: domainExtent.geographicElement->size()>=1

+
+ + + + +

Constraint:

+ + + + + + + + + + + + + +
+

Name:

+
+

domainIsRectifiedGrid

+
+

Description:

+
+

The domain shall be a rectified grid.

+
+

Expression:

+
+

inv: domainSet.oclIsKindOf(CV_RectifiedGrid)

+
+ + + + +

Constraint:

+ + + + + + + + + +
+

Name:

+
+

domainRequiresCRS

+
+

Expression:

+
+

/* The coordinate reference system used to reference the grid shall be provided */ +inv: domainSet.origin.coordinateReferenceSystem->notEmpty

+
+ + + + +

Constraint:

+ + + + + + + + + +
+

Name:

+
+

grid points shall coincide with grid cell centres

+
+

Expression:

+
+

/*Grid points of a RectifiedGridCoverage shall coincide with the centres of cells of the geographical grids defined in Section 2.2 of Annex II at any resolution level.*/

+
+ + + + +

Constraint:

+ + + + + + + + + +
+

Name:

+
+

gridFunctionRequiresGridDomain

+
+

Expression:

+
+

/*The grid function shall only be valid for domains that are grids */ +inv: coverageFunction.gridFunction.notEmpty() implies domainSet.oclIsKindOf(CV_Grid)

+
+ + + + +

Constraint:

+ + + + + + + + + +
+

Name:

+
+

identicalOffsetVectorsWithinElevationCoverageAggregation

+
+

Expression:

+
+

/* All the ElevationGridCoverage instances to which an aggregated ElevationGridCoverage instance refers, shall share the same orientation of grid axes and the same grid spacing in each direction*/ +Inv: contributingElevationCoverage->forAll(v | v.domainSet.offsetVectors = self.domainSet.offsetVectors)

+
+ + + + +

Constraint:

+ + + + + + + + + +
+

Name:

+
+

originDimensionIs2

+
+

Expression:

+
+

/* The origin of the grid shall be described in two dimensions */ +inv: domainSet.origin.dimension=2

+
+ + + + +

Constraint:

+ + + + + + + + + +
+

Name:

+
+

rangeSetValuesAreOfTypeFloat

+
+

Expression:

+
+

/* The values in the range set shall be described by the Float type */ +inv: rangeSet->forAll(v | v.oclIsKindOf(Float))

+
+ + @@ -32493,6 +36062,61 @@

Spatial Object Type: ContourLine

+ + +

Constraint:

+ + + + + + + + + + + + + +
+

Name:

+
+

propertyValueDimensionIs1

+
+

Description:

+
+

The dimension of the property value coordinate shall be 1

+
+

Expression:

+
+

inv: propertyValue.dimension=1

+
+ + + + +

Constraint:

+ + + + + + + + + +
+

Name:

+
+

propertyValueIsReferredToVerticalCRS

+
+

Expression:

+
+

/*The property value shall be expressed referring to a vertical coordinate reference system*/ +inv: propertyValue.coordinateReferenceSystem.oclIsKindOf(SC_VerticalCRS)

+
+ + @@ -33220,6 +36844,61 @@

Spatial Object Type: SpotElevation

+ + +

Constraint:

+ + + + + + + + + + + + + +
+

Name:

+
+

propertyValueDimensionIs1

+
+

Description:

+
+

The dimension of the property value coordinate shall be 1

+
+

Expression:

+
+

inv: propertyValue.dimension=1

+
+ + + + +

Constraint:

+ + + + + + + + + +
+

Name:

+
+

propertyValueIsReferredToVerticalCRS

+
+

Expression:

+
+

/*The property value shall be expressed referring to a vertical coordinate reference system*/ +inv: propertyValue.coordinateReferenceSystem.oclIsKindOf(SC_VerticalCRS)

+
+ + @@ -33484,6 +37163,61 @@

Data type: VerticalExtentRangeType

+ + +

Constraint:

+ + + + + + + + + +
+

Name:

+
+

LowerBoundUoMShallBeMeter

+
+

Expression:

+
+

/* Value of lowerBound shall be expressed in meters. */ +inv: self.lowerbound.uom.uomSymbol='m'

+
+ + + + +

Constraint:

+ + + + + + + + + + + + + +
+

Name:

+
+

UpperBoundUoMShallBeMeter

+
+

Description:

+
+

Value of upperBound shall be expressed in meters.

+
+

Expression:

+
+

inv: self.upperBound.uom.uomSymbol='m'

+
+ + @@ -33843,6 +37577,37 @@

Union type: VerticalExtentValue

+ + +

Constraint:

+ + + + + + + + + + + + + +
+

Name:

+
+

ScalarUoMShallBeMeter

+
+

Description:

+
+

Value of scalar shall be expressed in meters.

+
+

Expression:

+
+

inv: self.scalar.uom.uomSymbol='m'

+
+ + @@ -34483,108 +38248,32 @@

Spatial Object Type: RenewableAndWastePotentialCoverage

-
- - - - - -
-

Application schema: Energy Resources Vector

-
-

Definition

-

-- Name --

-

Energy Resources Vector application schema

-

Version:

-

4.0

-
-
- - - - -
-

Data type: CalorificRangeType

- - - - - - +
-

CalorificRangeType

-
- - - - - - - -
-

Definition:

-

-- Name --

-

Calorific range type

-

-

-- Definition --

-

Value indicating the upper and lower bounds of the calorific range of the energy resource.

-
-

Type:

-

Data type

-
-
-

Attribute:

+

Constraint:

- - - - - - - -

Name:

-

lowerBound

+

domainIsRectifiedGrid

-

Definition:

+

Description:

-

-- Name --

-

Lower bound

-

-

-- Definition --

-

Value indicating the lower bound of the calorific range.

-

-

-- Description --

-

NOTE the unit of measure to be used is the SI unit kJ/kg.

+

the domain shall be a rectified grid.

-

Voidable:

+

Expression:

-

false

-
-

Multiplicity:

-
-

1

-
-

Value type:

-
-

Measure

+

inv: domainSet.oclIsKindOf(CV_RectifiedGrid)

@@ -34592,53 +38281,47 @@

Data type: CalorificRangeType

+ + + - - - + + + + +
-

Attribute:

+

Constraint:

- - - - +

Name:

-

upperBound

+

gridFunctionRequiresGridDomain

-

Definition:

+

Expression:

-

-- Name --

-

Upper bound

-

-

-- Definition --

-

Value indicating the upper bound of the calorific range.

-

-

-- Description --

-

NOTE the unit of measure to be used is the SI unit kJ/kg.

-
-

Voidable:

-
-

false

+

/*The grid function shall only be valid for domains that are grids */ +inv: coverageFunction.gridFunction.notEmpty() implies domainSet.oclIsKindOf(CV_Grid)

+
+

Constraint:

+
-

Multiplicity:

+

Name:

-

1

+

rangeSetValuesAreOfTypeMeasure

-

Value type:

+

Expression:

-

Measure

+

/* the rangeSet values shall be of type Measure. */ +inv: rangeSet.forAll(oclIsKindOf(Measure))

@@ -34648,14 +38331,31 @@

Data type: CalorificRangeType

-
-

Union type: CalorificValueType

+
+
+

Application schema: Energy Resources Vector

+
+

Definition

+

-- Name --

+

Energy Resources Vector application schema

+

Version:

+

4.0

+
+
+ + + + +
+

Data type: CalorificRangeType

@@ -34665,67 +38365,16 @@

Union type: CalorificValueType

-

CalorificValueType

+

CalorificRangeType

- -

Definition:

-- Name --

-

Calorific value type.

+

Calorific range type

-- Definition --

-

Value or range of values describing the calorific value of an Energy Resource.

+

Value indicating the upper and lower bounds of the calorific range of the energy resource.

Type:

-

Union type

-
-
-

Attribute:

- - - - - - - - - - - - - - - - - - - -
-

Name:

-
-

calorificRange

-
-

Definition:

-
-

-- Name --

-

Calorific range

-

-

-- Definition --

-

A range of calorific values describing the calorific value of an Energy Resource.

-
-

Voidable:

-
-

false

-
-

Multiplicity:

-
-

1

-
-

Value type:

-
-

CalorificRangeType (data type)

+

Data type

@@ -34740,7 +38389,7 @@

Union type: CalorificValueType

Name:

@@ -34749,10 +38398,205 @@

Union type: CalorificValueType

-

calorificScalar

+

lowerBound

+ + + + + + + + + + + + + +

-- Name --

-

Calorific scalar

+

Lower bound

-- Definition --

-

Measure quantifying the calorific property of an Energy Resource.

+

Value indicating the lower bound of the calorific range.

+

+

-- Description --

+

NOTE the unit of measure to be used is the SI unit kJ/kg.

+
+

Voidable:

+
+

false

+
+

Multiplicity:

+
+

1

+
+

Value type:

+
+

Measure

+
+
+

Attribute:

+ + + + + + + + + + + + + + + + + + + + + +
+

Name:

+
+

upperBound

+
+

Definition:

+
+

-- Name --

+

Upper bound

+

+

-- Definition --

+

Value indicating the upper bound of the calorific range.

+

+

-- Description --

+

NOTE the unit of measure to be used is the SI unit kJ/kg.

+
+

Voidable:

+
+

false

+
+

Multiplicity:

+
+

1

+
+

Value type:

+
+

Measure

+
+
+ + + + +
+

Union type: CalorificValueType

+ + + + + + + + + + + + + + +
+

CalorificValueType

+
+ + + + + + + +
+

Definition:

+

-- Name --

+

Calorific value type.

+

+

-- Definition --

+

Value or range of values describing the calorific value of an Energy Resource.

+
+

Type:

+

Union type

+
+
+

Attribute:

+ + + + + + + + + + + + + + + + + + + + + +
+

Name:

+
+

calorificRange

+
+

Definition:

+
+

-- Name --

+

Calorific range

+

+

-- Definition --

+

A range of calorific values describing the calorific value of an Energy Resource.

+
+

Voidable:

+
+

false

+
+

Multiplicity:

+
+

1

+
+

Value type:

+
+

CalorificRangeType (data type)

+
+
+

Attribute:

+ + + + + + + + +
+

Name:

+
+

calorificScalar

+
+

Definition:

+
+

-- Name --

+

Calorific scalar

+

+

-- Definition --

+

Measure quantifying the calorific property of an Energy Resource.

-- Description --

NOTE the unit of measure to be used is the SI unit kJ/kg.

@@ -37019,6 +40863,31 @@

Spatial Object Type: AbstractMonitoringFeature

+

Constraint:

+
+ + + + + + + + +
+

Name:

+
+

Observation and ObservingCapability

+
+

Expression:

+
+

/* If observation(s) are attached to an AbstractMonitoringFeature this shall have an ObservingCapability attached to it. The ObservingCapability shall reference the same Domain, Phenomenon and ProcessUsed as the observation(s). */ +inv: hasObservation->notEmpty() implies observingCapability->notEmpty() and hasObservation.OM_Observation.featureOfInterest = observingCapability.featureOfInterest and hasObservation.OM_Observation.observedProperty = observingCapability.observedProperty and +hasObservation.OM_Observation.procedure = observingCapability.procedure

+
+
@@ -38680,6 +42549,62 @@

Spatial Object Type: EnvironmentalMonitoringFacility

+

Constraint:

+
+ + + + + + + + + + + + +
+

Name:

+
+

GeometryRequired

+
+

Description:

+
+

Geometry and representativePoint cannot both be empty.

+
+

Expression:

+
+

inv: geometry ->notEmpty() or representativePoint ->notEmpty()

+
+
+

Constraint:

+ + + + + + + + + +
+

Name:

+
+

Observation and ObservingCapability

+
+

Expression:

+
+

/* If observation(s) are attached to an AbstractMonitoringFeature this shall have an ObservingCapability attached to it. The ObservingCapability shall reference the same Domain, Phenomenon and ProcessUsed as the observation(s). */ +inv: hasObservation->notEmpty() implies observingCapability->notEmpty() and hasObservation.OM_Observation.featureOfInterest = observingCapability.featureOfInterest and hasObservation.OM_Observation.observedProperty = observingCapability.observedProperty and +hasObservation.OM_Observation.procedure = observingCapability.procedure

+
+
@@ -38867,6 +42792,31 @@

Spatial Object Type: EnvironmentalMonitoringNetwork

+

Constraint:

+
+ + + + + + + + +
+

Name:

+
+

Observation and ObservingCapability

+
+

Expression:

+
+

/* If observation(s) are attached to an AbstractMonitoringFeature this shall have an ObservingCapability attached to it. The ObservingCapability shall reference the same Domain, Phenomenon and ProcessUsed as the observation(s). */ +inv: hasObservation->notEmpty() implies observingCapability->notEmpty() and hasObservation.OM_Observation.featureOfInterest = observingCapability.featureOfInterest and hasObservation.OM_Observation.observedProperty = observingCapability.observedProperty and +hasObservation.OM_Observation.procedure = observingCapability.procedure

+
+
@@ -42554,6 +46504,30 @@

Data type: PronunciationOfName

+ + +

Constraint:

+ + + + + + + + + +
+

Name:

+
+

pronunciationSoundLink or pronunciationIPA not empty

+
+

Expression:

+
+

/* At least one of the two attributes pronunciationSoundLink and pronunciationIPA shall not be void. */ +inv: self.pronounciationIPA -> notEmpty() or self.pronounciationSoundLink -> notEmpty()

+
+ + @@ -46177,137 +50151,25 @@

Spatial Object Type: Campaign

- - - - - -
-

Spatial Object Type: GeophMeasurement

- - - - - - + + + + + +
-

GeophMeasurement

-
- - - - - - - - - - - - - - - - -
-

Definition:

-

-- Definition --

-

Generic spatial object type for geophysical measurements.

-

-

-- Description --

-

Geophysical measurements collect data outside or on the boundary of the observed spatial domain.

-
-

Subtype of:

-

GeophObject

-
-

Supertype of:

-

GeophProfile

-

GeophStation

-

GeophSwath

-
-

Type:

-

Spatial Object Type

-
-

Abstract:

-

true

-
-
-

Attribute:

+

Constraint:

- - - - - - - - - - - - - - - -

Name:

-

platformType

-
-

Definition:

-
-

-- Definition --

-

Platform from which the measurement was carried out

-

-

-- Description --

-

Values to be used are defined in codelist PlatformTypeValue.

-
-

Voidable:

-
-

false

-
-

Multiplicity:

-
-

1

+

projectedGeometry must be GM_Point, GM_Curve or GM_Surface

-

Value type:

+

Expression:

-

PlatformTypeValue (code list)

-
-

Tagged Values:

-
- - - - - - - - - - - - - -

-

Tag

-

-

Value

-

-

obligation

-

-

implementingRule

-
+

/* The projectedGeometry shall be of type GM_Point, GM_Curve or GM_Surface */ +inv: projectedGeometry.oclIsKindOf(GM_Point) or projectedGeometry.oclIsKindOf(GM_Curve) or projectedGeometry.oclIsKindOf(GM_Surface)

@@ -46315,130 +50177,23 @@

Spatial Object Type: GeophMeasurement

- - - - - - - - - + + + + + + + + + + + + + + + + + + + +
-

Attribute:

+

Constraint:

- - - - - - - - - - - - - -

Name:

-

relatedModel

-
-

Definition:

-
-

-- Definition --

-

Identifier of the geophysical model that was created from the measurement

-

-

-- Description --

-

Results of the measurement can be referenced by these identifiers.

-
-

Voidable:

-
-

true

-
-

Multiplicity:

-
-

1..*

+

shape must be GM_Surface

-

Value type:

+

Expression:

-

Identifier (data type)

-
-
-

Attribute:

- - - - - - - - - - - - - - - - - - - - - - - -
-

Name:

-
-

relatedNetwork

-
-

Definition:

-
-

-- Definition --

-

Name of a national or international observation network to which the facility belongs, or to which measured data is reported.

-

-

-- Description --

-

Permanent measuring installations maz be part of larger observation networks. It means that observation data is regularly sent to the archives of the related network in an official way.

-
-

Voidable:

-
-

true

-
-

Multiplicity:

-
-

1..*

-
-

Value type:

-
-

NetworkNameValue (code list)

-
-

Tagged Values:

-
- - - - - - - - - - - - - -

-

Tag

-

-

Value

-

-

obligation

-

-

implementingRule

-
+

/* The shape attribute shall be of type GM_Surface */ +inv: shape.oclIsKindOf(GM_Surface)

@@ -46451,11 +50206,11 @@

Spatial Object Type: GeophMeasurement

back to package: Geophysics

-

-

Spatial Object Type: GeophObject

+

+

Spatial Object Type: GeophMeasurement

@@ -46465,16 +50220,24 @@

Spatial Object Type: GeophObject

-

GeophObject

+

GeophMeasurement

+ + + @@ -46501,7 +50264,7 @@

Spatial Object Type: GeophObject

Definition:

-- Definition --

-

A generic class for geophysical objects.

+

Generic spatial object type for geophysical measurements.

-- Description --

-

GeophObject models single geophysical entities that are used for spatial sampling either by means of data acquisition or data processing.

+

Geophysical measurements collect data outside or on the boundary of the observed spatial domain.

+
+

Subtype of:

+

GeophObject

Supertype of:

-

GeophMeasurement

+

GeophProfile

+

GeophStation

+

GeophSwath

Name:

@@ -46510,10 +50273,10 @@

Spatial Object Type: GeophObject

-

citation

+

platformType

@@ -46537,58 +50300,36 @@

Spatial Object Type: GeophObject

-- Definition --

-

Citation of geophysical documentation

+

Platform from which the measurement was carried out

-- Description --

-

Used for title, date of related documentation and URL for online access. At the minimum a short name (title) shall be given.

+

Values to be used are defined in codelist PlatformTypeValue.

Value type:

- -
-

DocumentCitation

-
-
-

Attribute:

- - - - - - - - - - - - - - - -
-

Name:

-
-

distributionInfo

-
-

Definition:

-
-

-- Definition --

-

Distribution metadata

-

-

-- Description --

-

Data providers may use external services to provide information on a geophysical measurement. Links to the access points, description of ordering procedures or external services can be added in distributionInfo, that is an ISO MD_Distributor record.

-
-

Voidable:

-
-

true

-
-

Multiplicity:

-
-

1

+

PlatformTypeValue (code list)

-

Value type:

+

Tagged Values:

-

MD_Distributor

+ + + + + + + + + + + + + +

+

Tag

+

+

Value

+

+

obligation

+

+

implementingRule

+
@@ -46603,7 +50344,7 @@

Spatial Object Type: GeophObject

Name:

@@ -46612,10 +50353,10 @@

Spatial Object Type: GeophObject

-

inspireId

+

relatedModel

@@ -46623,7 +50364,7 @@

Spatial Object Type: GeophObject

-- Definition --

-

External object identifier of the measurement.

+

Identifier of the geophysical model that was created from the measurement

-- Description --

-

NOTE An external object identifier is a unique object identifier published by the responsible body, which may be used by external applications to reference the spatial object. The identifier is an identifier of the spatial object, not an identifier of the real-world phenomenon.

+

Results of the measurement can be referenced by these identifiers.

Voidable:

@@ -46631,7 +50372,7 @@

Spatial Object Type: GeophObject

-

false

+

true

Multiplicity:

@@ -46654,7 +50395,7 @@

Spatial Object Type: GeophObject

-

1

+

1..*

Name:

@@ -46663,10 +50404,10 @@

Spatial Object Type: GeophObject

-

largerWork

+

relatedNetwork

@@ -46690,58 +50431,36 @@

Spatial Object Type: GeophObject

-- Definition --

-

Identifier of a larger work dataset, typically a campaign or project

+

Name of a national or international observation network to which the facility belongs, or to which measured data is reported.

-- Description --

-

Measurements are usually made in campaigns. The largerWork identifier points to the parent Campaign or Project

+

Permanent measuring installations maz be part of larger observation networks. It means that observation data is regularly sent to the archives of the related network in an official way.

Value type:

- -
-

Identifier (data type)

-
-
-

Attribute:

- - - - - - - - - - - - - - - -
-

Name:

-
-

projectedGeometry

-
-

Definition:

-
-

-- Definition --

-

2D projection of the feature to the ground surface (as a representative point, curve or bounding polygon) to be used by an INSPIRE view service to display the spatial object location on a map.

-

-

-- Description --

-

When measurement setup is 3 dimensional, it is necessary to define a 2D geometry for displaying purposes. It shall be the 2D projection of the spatial object on the ground surface. Allowed types: point, track and outline. Examples: projected geometry of a borehole logging measurement is a point coincident with the borehole collar location. Projected geometry of a 3D multielectrode DC measurement is a polygon

-
-

Voidable:

-
-

false

-
-

Multiplicity:

-
-

1..*

+

NetworkNameValue (code list)

-

Value type:

+

Tagged Values:

-

GM_Object

+ + + + + + + + + + + + + +

+

Tag

+

+

Value

+

+

obligation

+

+

implementingRule

+
@@ -46749,50 +50468,23 @@

Spatial Object Type: GeophObject

@@ -46912,7 +50610,7 @@

Spatial Object Type: GeophObjectSet

-

Attribute:

+

Constraint:

- - - - - - - - - - - -

Name:

-

verticalExtent

-
-

Definition:

-
-

-- Definition --

-

Vertical extent of the range of interest.

-

-

-- Description --

-

This parameter serves discovery purposes. It may refer both to the vertical extent of the measurement setup (p.e. borehole logging) or the extent of the range where processed data is spatially referenced to (Vertical Electric Sounding). The aim is to give an idea to the user about the estimated depth of investigation.

-
-

Voidable:

-
-

true

-
-

Multiplicity:

-
-

1

+

projectedGeometry must be GM_Point, GM_Curve or GM_Surface

-

Value type:

+

Expression:

-

EX_VerticalExtent

+

/* The projectedGeometry shall be of type GM_Point, GM_Curve or GM_Surface */ +inv: projectedGeometry.oclIsKindOf(GM_Point) or projectedGeometry.oclIsKindOf(GM_Curve) or projectedGeometry.oclIsKindOf(GM_Surface)

@@ -46805,11 +50497,11 @@

Spatial Object Type: GeophObject

back to package: Geophysics

-

-

Spatial Object Type: GeophObjectSet

+

+

Spatial Object Type: GeophObject

@@ -46819,16 +50511,16 @@

Spatial Object Type: GeophObjectSet

-

GeophObjectSet

+

GeophObject

@@ -46837,6 +50529,12 @@

Spatial Object Type: GeophObjectSet

Definition:

-- Definition --

-

Generic class for collections of geophysical objects

+

A generic class for geophysical objects.

-- Description --

-

It is a set of geophysical objects that are grouped by some common property. p.e: created in the same measuring campaign. GeophObjectSets are used for spatial sampling either by means of data acquisition or data processing. The produced result of a geophObjectSet is always collective, e.g. a map constructed from the results of the individual member objects.

+

GeophObject models single geophysical entities that are used for spatial sampling either by means of data acquisition or data processing.

Supertype of:

-

Campaign

+

GeophMeasurement

Spatial Object Type

+ + +
+

Abstract:

+

true

+

Distribution metadata

-- Description --

-

Data providers may use external services to provide access to data or information on a survey. Links to the access points, description of ordering procedures, fees can be added in distributionInfo that is an ISO MD_Distributor record.

+

Data providers may use external services to provide information on a geophysical measurement. Links to the access points, description of ordering procedures or external services can be added in distributionInfo, that is an ISO MD_Distributor record.

@@ -46960,7 +50658,7 @@

Spatial Object Type: GeophObjectSet

+ + +

-- Definition --

-

External object identifier of the spatial object.

+

External object identifier of the measurement.

-- Description --

NOTE An external object identifier is a unique object identifier published by the responsible body, which may be used by external applications to reference the spatial object. The identifier is an identifier of the spatial object, not an identifier of the real-world phenomenon.

@@ -47011,10 +50709,10 @@

Spatial Object Type: GeophObjectSet

@@ -47062,10 +50760,10 @@

Spatial Object Type: GeophObjectSet

-- Definition --

-

Identifier of a larger work dataset

+

Identifier of a larger work dataset, typically a campaign or project

-- Description --

-

The largerWork identifier points to the parent Campaign or Project

+

Measurements are usually made in campaigns. The largerWork identifier points to the parent Campaign or Project

@@ -47116,7 +50814,7 @@

Spatial Object Type: GeophObjectSet

-- Definition --

-

2D projection of the feature to the ground surface (as a representative point, curve or bounding polygon) to be used by an INSPIRE view service to display the spatial object on a map..

+

2D projection of the feature to the ground surface (as a representative point, curve or bounding polygon) to be used by an INSPIRE view service to display the spatial object location on a map.

-- Description --

-

Projected geometry of the object set (survey), that is usually the bounding polygon of the working area.

+

When measurement setup is 3 dimensional, it is necessary to define a 2D geometry for displaying purposes. It shall be the 2D projection of the spatial object on the ground surface. Allowed types: point, track and outline. Examples: projected geometry of a borehole logging measurement is a point coincident with the borehole collar location. Projected geometry of a 3D multielectrode DC measurement is a polygon

Vertical extent of the range of interest.

-- Description --

-

This parameter serves discovery purposes. It may refer both to the vertical extent of the setup of measurements within the survey, or the extent of the range where processed data is spatially referenced to (estimated depth of investigation). The aim is to give an idea to the user about the estimated depth of investigation.

+

This parameter serves discovery purposes. It may refer both to the vertical extent of the measurement setup (p.e. borehole logging) or the extent of the range where processed data is spatially referenced to (Vertical Electric Sounding). The aim is to give an idea to the user about the estimated depth of investigation.

@@ -47146,6 +50844,30 @@

Spatial Object Type: GeophObjectSet

+

Constraint:

+ + + + + + + + + +
+

Name:

+
+

projectedGeometry must be GM_Point, GM_Curve or GM_Surface

+
+

Expression:

+
+

/* The projectedGeometry shall be of type GM_Point, GM_Curve or GM_Surface */ +inv: projectedGeometry.oclIsKindOf(GM_Point) or projectedGeometry.oclIsKindOf(GM_Curve) or projectedGeometry.oclIsKindOf(GM_Surface)

+
+
@@ -47153,11 +50875,11 @@

Spatial Object Type: GeophObjectSet

back to package: Geophysics

-

-

Spatial Object Type: GeophProfile

+

+

Spatial Object Type: GeophObjectSet

@@ -47167,18 +50889,16 @@

Spatial Object Type: GeophProfile

-

GeophProfile

+

GeophObjectSet

- @@ -47199,7 +50919,7 @@

Spatial Object Type: GeophProfile

Definition:

-- Definition --

-

Geophysical measurement spatially referenced to a curve

+

Generic class for collections of geophysical objects

-- Description --

-

Used to collect data along a curve. Examples: 2D seismic line (field measurement), borehole logging, airborne geophysical flight line

-

-

NOTE1. Processing results of geophProfiles are often vertical surface coverages

+

It is a set of geophysical objects that are grouped by some common property. p.e: created in the same measuring campaign. GeophObjectSets are used for spatial sampling either by means of data acquisition or data processing. The produced result of a geophObjectSet is always collective, e.g. a map constructed from the results of the individual member objects.

-

Subtype of:

-

GeophMeasurement

+
+

Supertype of:

+

Campaign

Name:

@@ -47208,7 +50928,381 @@

Spatial Object Type: GeophProfile

-

profileType

+

citation

+ + + + + + + + + + + + + +

-- Definition --

-

Type of geophysical profile

+

Citation of geophysical documentation

+

+

-- Description --

+

Used for title, date of related documentation and URL for online access. At the minimum a short name (title) shall be given.

+
+

Voidable:

+
+

false

+
+

Multiplicity:

+
+

1

+
+

Value type:

+
+

DocumentCitation

+
+
+

Attribute:

+ + + + + + + + + + + + + + + + + + + + + +
+

Name:

+
+

distributionInfo

+
+

Definition:

+
+

-- Definition --

+

Distribution metadata

+

+

-- Description --

+

Data providers may use external services to provide access to data or information on a survey. Links to the access points, description of ordering procedures, fees can be added in distributionInfo that is an ISO MD_Distributor record.

+
+

Voidable:

+
+

true

+
+

Multiplicity:

+
+

1

+
+

Value type:

+
+

MD_Distributor

+
+
+

Attribute:

+ + + + + + + + + + + + + + + + + + + + + +
+

Name:

+
+

inspireId

+
+

Definition:

+
+

-- Definition --

+

External object identifier of the spatial object.

+

+

-- Description --

+

NOTE An external object identifier is a unique object identifier published by the responsible body, which may be used by external applications to reference the spatial object. The identifier is an identifier of the spatial object, not an identifier of the real-world phenomenon.

+
+

Voidable:

+
+

false

+
+

Multiplicity:

+
+

1

+
+

Value type:

+
+

Identifier (data type)

+
+
+

Attribute:

+ + + + + + + + + + + + + + + + + + + + + +
+

Name:

+
+

largerWork

+
+

Definition:

+
+

-- Definition --

+

Identifier of a larger work dataset

+

+

-- Description --

+

The largerWork identifier points to the parent Campaign or Project

+
+

Voidable:

+
+

true

+
+

Multiplicity:

+
+

1..*

+
+

Value type:

+
+

Identifier (data type)

+
+
+

Attribute:

+ + + + + + + + + + + + + + + + + + + + + +
+

Name:

+
+

projectedGeometry

+
+

Definition:

+
+

-- Definition --

+

2D projection of the feature to the ground surface (as a representative point, curve or bounding polygon) to be used by an INSPIRE view service to display the spatial object on a map..

+

+

-- Description --

+

Projected geometry of the object set (survey), that is usually the bounding polygon of the working area.

+
+

Voidable:

+
+

false

+
+

Multiplicity:

+
+

1..*

+
+

Value type:

+
+

GM_Object

+
+
+

Attribute:

+ + + + + + + + + + + + + + + + + + + + + +
+

Name:

+
+

verticalExtent

+
+

Definition:

+
+

-- Definition --

+

Vertical extent of the range of interest.

+

+

-- Description --

+

This parameter serves discovery purposes. It may refer both to the vertical extent of the setup of measurements within the survey, or the extent of the range where processed data is spatially referenced to (estimated depth of investigation). The aim is to give an idea to the user about the estimated depth of investigation.

+
+

Voidable:

+
+

true

+
+

Multiplicity:

+
+

1

+
+

Value type:

+
+

EX_VerticalExtent

+
+
+

Constraint:

+ + + + + + + + + +
+

Name:

+
+

projectedGeometry must be GM_Point, GM_Curve or GM_Surface

+
+

Expression:

+
+

/* The projectedGeometry shall be of type GM_Point, GM_Curve or GM_Surface */ +inv: projectedGeometry.oclIsKindOf(GM_Point) or projectedGeometry.oclIsKindOf(GM_Curve) or projectedGeometry.oclIsKindOf(GM_Surface)

+
+
+ + + + +
+

Spatial Object Type: GeophProfile

+ + + + + + + + + + + + + +
+

GeophProfile

+
+ + + + + + + + + + +
+

Definition:

+

-- Definition --

+

Geophysical measurement spatially referenced to a curve

+

+

-- Description --

+

Used to collect data along a curve. Examples: 2D seismic line (field measurement), borehole logging, airborne geophysical flight line

+

+

NOTE1. Processing results of geophProfiles are often vertical surface coverages

+
+

Subtype of:

+

GeophMeasurement

+
+

Type:

+

Spatial Object Type

+
+
+

Attribute:

+ + + + + + + + @@ -47267,6 +51361,54 @@

Spatial Object Type: GeophProfile

+

Name:

+
+

profileType

+
+

Definition:

+
+

-- Definition --

+

Type of geophysical profile

+

Constraint:

+ + + + + + + + + +
+

Name:

+
+

projectedGeometry must be GM_Point, GM_Curve or GM_Surface

+
+

Expression:

+
+

/* The projectedGeometry shall be of type GM_Point, GM_Curve or GM_Surface */ +inv: projectedGeometry.oclIsKindOf(GM_Point) or projectedGeometry.oclIsKindOf(GM_Curve) or projectedGeometry.oclIsKindOf(GM_Surface)

+
+
+

Constraint:

+ + + + + + + + + +
+

Name:

+
+

shape must be GM_Curve

+
+

Expression:

+
+

/* The shape attribute shall be of type GM_Curve */ +inv: shape.oclIsKindOf(GM_Curve)

+
+
@@ -47468,6 +51610,54 @@

Spatial Object Type: GeophStation

+

Constraint:

+ + + + + + + + + +
+

Name:

+
+

projectedGeometry must be GM_Point, GM_Curve or GM_Surface

+
+

Expression:

+
+

/* The projectedGeometry shall be of type GM_Point, GM_Curve or GM_Surface */ +inv: projectedGeometry.oclIsKindOf(GM_Point) or projectedGeometry.oclIsKindOf(GM_Curve) or projectedGeometry.oclIsKindOf(GM_Surface)

+
+
+

Constraint:

+ + + + + + + + + +
+

Name:

+
+

shape must be GM_Point

+
+

Expression:

+
+

/* The shape attribute shall be of type GM_Point */ +inv: shape.oclIsKindOf(GM_Point)

+
+
@@ -47589,6 +51779,54 @@

Spatial Object Type: GeophSwath

+ + +

Constraint:

+ + + + + + + + + +
+

Name:

+
+

projectedGeometry must be GM_Point, GM_Curve or GM_Surface

+
+

Expression:

+
+

/* The projectedGeometry shall be of type GM_Point, GM_Curve or GM_Surface */ +inv: projectedGeometry.oclIsKindOf(GM_Point) or projectedGeometry.oclIsKindOf(GM_Curve) or projectedGeometry.oclIsKindOf(GM_Surface)

+
+ + + + +

Constraint:

+ + + + + + + + + +
+

Name:

+
+

shape must be GM_Surface

+
+

Expression:

+
+

/* The shape attribute shall be of type GM_Surface */ +inv: shape.oclIsKindOf(GM_Surface)

+
+ + @@ -47989,6 +52227,111 @@

Spatial Object Type: ExistingLandUseGrid

+ + +

Constraint:

+ + + + + + + + + + + + + +
+

Name:

+
+

domainIsRectifiedGrid

+
+

Description:

+
+

The domain shall be a rectified grid.

+
+

Expression:

+
+

inv: domainSet.oclIsKindOf(CV_RectifiedGrid)

+
+ + + + +

Constraint:

+ + + + + + + + + +
+

Name:

+
+

grid points shall coincide with grid cell centres

+
+

Expression:

+
+

/*Grid points of a RectifiedGridCoverage shall coincide with the centres of cells of the geographical grids defined in Section 2.2 of Annex II at any resolution level.*/

+
+ + + + +

Constraint:

+ + + + + + + + + +
+

Name:

+
+

gridFunctionRequiresGridDomain

+
+

Expression:

+
+

/*The grid function shall only be valid for domains that are grids */ +inv: coverageFunction.gridFunction.notEmpty() implies domainSet.oclIsKindOf(CV_Grid)

+
+ + + + +

Constraint:

+ + + + + + + + + +
+

Name:

+
+

rangeIsCategoryOrNill

+
+

Expression:

+
+

/*rangeSet values shall be of type CategoryOrNilReason + +NOTE:Range is based on either HILUCS or on a specific land use classification sytem defined by the data provider +*/ +inv: rangeSet.forAll(oclIsKindOf(CategoryOrNilReason))

+
+ + @@ -48042,6 +52385,80 @@

Spatial Object Type: GridObservation

+ + +

Constraint:

+ + + + + + + + + +
+

Name:

+
+

featureOfInterest must be a SF_SamplingSolid or SF_SamplingSurface

+
+

Expression:

+
+

/*featureOfInterest must be a SF_SamplingSolid or SF_SamplingSurface */ +inv: self.featureOfInterest->forAll(oclIsKindOf(SF_SamplingSolid)) +OR +inv: self.featureOfInterest->forAll(oclIsKindOf(SF_SamplingSurface))

+
+ + + + +

Constraint:

+ + + + + + + + + +
+

Name:

+
+

phenomenonTime must be a TM_Instant

+
+

Expression:

+
+

/*phenomenonTime must be a TM_Instant*/ +inv: self.phenomenonTime.oclIsKindOf(TM_Instant)

+
+ + + + +

Constraint:

+ + + + + + + + + +
+

Name:

+
+

result must be a RectifiedGridCoverage or ReferenceableGridCoverage

+
+

Expression:

+
+

/*result must be a RectifiedGridCoverage or RefererencableGridCoverage*/ +inv: self.result.oclIsKindOf(RectifiedGridCoverage) OR self.result.oclIsKindOf(ReferenceableGridCoverage)

+
+ + @@ -48081,6 +52498,93 @@

Spatial Object Type: GridSeriesObservation

+ + +

Constraint:

+ + + + + +
+

Name:

+
+

One of the axes of the domain must be a temporal axis.

+
+ + + + +

Constraint:

+ + + + + + + + + +
+

Name:

+
+

featureOfInterest must be a SF_SamplingSolid

+
+

Expression:

+
+

/*featureOfInterest must be a SF_SamplingSolid */ +inv: self.featureOfInterest->forAll(oclIsKindOf(SF_SamplingSolid))

+
+ + + + +

Constraint:

+ + + + + + + + + +
+

Name:

+
+

phenomenonTime must be a TM_Period

+
+

Expression:

+
+

/* phenomenonTime must be a TM_Period */ +inv: self.phenomenonTime.oclIsKindOf(TM_Period)

+
+ + + + +

Constraint:

+ + + + + + + + + +
+

Name:

+
+

result must be a RectifiedGridCoverage or ReferenceableGridCoverage

+
+

Expression:

+
+

/* result must be a RectifiedGridCoverage or a ReferenceableGridCoverage */ +inv: self.result.oclIsKindOf(RectifiedGridCoverage) OR self.result.oclIsKindOf(ReferenceableGridCoverage)

+
+ + @@ -51023,6 +55527,29 @@

Data type: BiomarkerStatisticalParameterType

+ + +

Constraint:

+ + + + + + + + + +
+

Name:

+
+

CI95ofGMandGeometricMeanTogether

+
+

Expression:

+
+

/* CI95ofGM should be provided when geometric mean is provided */

+
+ + @@ -51727,7 +56254,273 @@

Spatial Object Type: Disease

Name:

+ + + + + + + + + + + + + + + + + +
-

ageRange

+

ageRange

+
+

Definition:

+
+

-- Name --

+

Age range

+

+

+

-- Definition --

+

Age interval of a specific subpopulation expressed as starting age and an interval, both alternatively expressed in years, months or weeks.

+
+

Voidable:

+
+

true

+
+

Multiplicity:

+
+

1

+
+

Value type:

+
+

AgeRangeType (data type)

+
+ + + + +

Attribute:

+ + + + + + + + + + + + + + + + + + + + + +
+

Name:

+
+

diseaseMeasure

+
+

Definition:

+
+

-- Name --

+

Disease measure

+

+

-- Definition --

+

Different ways how data on diseases and related health problems in a population can be reported.

+
+

Voidable:

+
+

false

+
+

Multiplicity:

+
+

1..*

+
+

Value type:

+
+

DiseaseMeasure (data type)

+
+ + + + +

Attribute:

+ + + + + + + + + + + + + + + + + + + + + + + + + +
+

Name:

+
+

gender

+
+

Definition:

+
+

-- Name --

+

Gender

+

+

-- Definition --

+

Gender of the population considered.

+
+

Voidable:

+
+

true

+
+

Multiplicity:

+
+

1

+
+

Value type:

+
+

GenderValue (code list)

+
+

Tagged Values:

+
+ + + + + + + + + + + + + +

+

Tag

+

+

Value

+

+

obligation

+

+

technicalGuidance

+
+
+ + + + +

Attribute:

+ + + + + + + + + + + + + + + + + + + + + + + + + +
+

Name:

+
+

pathology

+
+

Definition:

+
+

-- Name --

+

International classification of diseases .

+

+

+

-- Definition --

+

Disease as defined in the ICD-10 update 2007 "ICD (International Classification of Diseases, 10th revision)".

+

-- Description --

+

As values in the INSPIRE data, the code could be used (e.g A00, A01, A01.1, ...).

+
+

Voidable:

+
+

false

+
+

Multiplicity:

+
+

0..1

+
+

Value type:

+
+

ICDValue (code list)

+
+

Tagged Values:

+
+ + + + + + + + + + + + + +

+

Tag

+

+

Value

+

+

obligation

+

+

implementingRule

+
+
+ + + + +

Attribute:

+ + + + @@ -51736,62 +56529,11 @@

Spatial Object Type: Disease

+

Name:

+
+

referencePeriod

- - - - - - - - - - - - - -

-- Name --

-

Age range

+

Reference period

-- Definition --

-

Age interval of a specific subpopulation expressed as starting age and an interval, both alternatively expressed in years, months or weeks.

-
-

Voidable:

-
-

true

-
-

Multiplicity:

-
-

1

-
-

Value type:

-
-

AgeRangeType (data type)

-
- - - - -

Attribute:

- - - - - - - - @@ -51802,57 +56544,6 @@

Spatial Object Type: Disease

-

Name:

-
-

diseaseMeasure

-
-

Definition:

-
-

-- Name --

-

Disease measure

-

-

-- Definition --

-

Different ways how data on diseases and related health problems in a population can be reported.

+

The time period to which data refers.

false

- - - - - - - - -
-

Multiplicity:

-
-

1..*

-
-

Value type:

-
-

DiseaseMeasure (data type)

-
- - - - -

Attribute:

- - - - - - - - - - - - - + + +
-

Name:

-
-

gender

-
-

Definition:

-
-

-- Name --

-

Gender

-

-

-- Definition --

-

Gender of the population considered.

-
-

Voidable:

-
-

true

-

Multiplicity:

@@ -51866,36 +56557,7 @@

Spatial Object Type: Disease

Value type:

- - - -
-

GenderValue (code list)

-
-

Tagged Values:

-
- - - - - - - - - - - - - -

-

Tag

-

-

Value

-

-

obligation

-

-

technicalGuidance

-
+

ReferencePeriodType (data type)

@@ -51903,82 +56565,22 @@

Spatial Object Type: Disease

+ + +
-

Attribute:

+

Constraint:

- - - - - - - - - - - - - - - -

Name:

-

pathology

+

CODusability

-

Definition:

+

Expression:

-

-- Name --

-

International classification of diseases .

-

-

-

-- Definition --

-

Disease as defined in the ICD-10 update 2007 "ICD (International Classification of Diseases, 10th revision)".

-

-- Description --

-

As values in the INSPIRE data, the code could be used (e.g A00, A01, A01.1, ...).

-
-

Voidable:

-
-

false

-
-

Multiplicity:

-
-

0..1

-
-

Value type:

-
-

ICDValue (code list)

-
-

Tagged Values:

-
- - - - - - - - - - - - - -

-

Tag

-

-

Value

-

-

obligation

-

-

implementingRule

-
+

/* The COD code list shall be used only if the diseaseMeasureType attribute of diseaseMeasure takes a value that represents mortality. */

@@ -51986,51 +56588,25 @@

Spatial Object Type: Disease

+ + +
-

Attribute:

+

Constraint:

- - - - - - - - - - - -

Name:

-

referencePeriod

+

pathologiOrCODnotempty

-

Definition:

+

Expression:

-

-- Name --

-

Reference period

-

-

-

-- Definition --

-

The time period to which data refers.

-
-

Voidable:

-
-

false

-
-

Multiplicity:

-
-

1

-
-

Value type:

-
-

ReferencePeriodType (data type)

+

/* At least one of pathology and COD attributes must not be empty. */ + +inv: self.COD->Empty implies self.pathology-> notEmpty +inv: self.pathology->Empty implies self.COD -> notEmpty

@@ -55214,6 +59790,30 @@

Spatial Object Type: DrainageBasin

+

Constraint:

+ + + + + + + + + +
+

Name:

+
+

largestBasinIsRiverBasin

+
+

Expression:

+
+

/* A river basin may not be contained in any other basin */ +inv: self.containsBasin->forall(c | not c.oclIsTypeOf(RiverBasin))

+
+
@@ -57261,6 +61861,30 @@

Spatial Object Type: RiverBasin

+

Constraint:

+ + + + + + + + + +
+

Name:

+
+

largestBasinIsRiverBasin

+
+

Expression:

+
+

/* A river basin may not be contained in any other basin */ +inv: self.containsBasin->forall(c | not c.oclIsTypeOf(RiverBasin))

+
+
@@ -57994,6 +62618,37 @@

Spatial Object Type: StandingWater

+

Constraint:

+ + + + + + + + + + + + + +
+

Name:

+
+

geometryIsSurfaceOrPoint

+
+

Description:

+
+

Standing water geometry may be a surface or point

+
+

Expression:

+
+

inv: self.geometry.oclIsTypeOf(GM_Surface) or self.geometry.oclIsTypeOf(GM_Point)

+
+
@@ -59087,6 +63742,84 @@

Spatial Object Type: Watercourse

+ + +

Constraint:

+ + + + + + + + + +
+

Name:

+
+

banksShallBeDifferentShoreObjects

+
+

Expression:

+
+

/*The shores on either side of a watercourse shall be provided (using the bank property) as two separate Shore objects.*/

+
+ + + + +

Constraint:

+ + + + + + + + + + + + + +
+

Name:

+
+

geometryIsCurveOrSurface

+
+

Description:

+
+

Watercourse geometry may be a curve or surface

+
+

Expression:

+
+

inv: self.geometry.oclIsTypeOf(GM_Curve) or self.geometry.oclIsTypeOf(GM_Surface)

+
+ + + + +

Constraint:

+ + + + + + + + + +
+

Name:

+
+

onlyManmadeHasConditionAttr

+
+

Expression:

+
+

/* A condition attribute may be specified only for a man-made watercourse */ +inv: (self->count(condition)=1) implies (self.origin=OriginType::manMade)

+
+ + @@ -64890,6 +69623,29 @@

Data type: LandCoverNomenclature

+ + +

Constraint:

+ + + + + + + + + +
+

Name:

+
+

ExternalOrEmbeddedDescription

+
+

Expression:

+
+

/* The embedded description or the external desciption shall be provided. */

+
+ + @@ -65369,6 +70125,115 @@

Spatial Object Type: LandCoverGridCoverage

+ + +

Constraint:

+ + + + + + + + + + + + + +
+

Name:

+
+

domainIsRectifiedGrid

+
+

Description:

+
+

The domain shall be a rectified grid.

+
+

Expression:

+
+

inv: domainSet.oclIsKindOf(CV_RectifiedGrid)

+
+ + + + +

Constraint:

+ + + + + + + + + +
+

Name:

+
+

grid points shall coincide with grid cell centres

+
+

Expression:

+
+

/*Grid points of a RectifiedGridCoverage shall coincide with the centres of cells of the geographical grids defined in Section 2.2 of Annex II at any resolution level.*/

+
+ + + + +

Constraint:

+ + + + + + + + + +
+

Name:

+
+

gridFunctionRequiresGridDomain

+
+

Expression:

+
+

/*The grid function shall only be valid for domains that are grids */ +inv: coverageFunction.gridFunction.notEmpty() implies domainSet.oclIsKindOf(CV_Grid)

+
+ + + + +

Constraint:

+ + + + + + + + + + + + + +
+

Name:

+
+

rangeSetIsKindOfLandCoverClassValue

+
+

Description:

+
+

The values in the range set are restricted to Integer

+
+

Expression:

+
+

inv: rangeSet->forAll(v | v.oclIsKindOf(LandCoverNomenclature::LandCoverClassValue))

+
+ + @@ -66130,6 +70995,30 @@

Data type: LandCoverObservation

+ + +

Constraint:

+ + + + + + + + + +
+

Name:

+
+

coveredPercentagesLowerThan100

+
+

Expression:

+
+

/* The sum of all coveredPercentage attributes attached to each LandCoverObservation shall be lower or equal to 100*/ +inv:mosaic.coveredPercentage.sum() <= 100

+
+ + @@ -66430,6 +71319,37 @@

Spatial Object Type: LandCoverUnit

+ + +

Constraint:

+ + + + + + + + + + + + + +
+

Name:

+
+

geometryIsKindOfGM_PointOrGM_Surface

+
+

Description:

+
+

geometries shall be points or surfaces

+
+

Expression:

+
+

inv: self.geometry->forAll(l | l.oclIsKindOf(GM_Surface) or l.oclIsKindOf(GM_Point))

+
+ + @@ -73621,6 +78541,30 @@

Spatial Object Type: AbstractExposedElement

+ + +

Constraint:

+ + + + + + + + + +
+

Name:

+
+

If the "source of spatial representation" is empty, the geometry AbstractExposedElement spatial object shall be provided.

+
+

Expression:

+
+

/*If the "source of spatial representation" is empty, the geometry AbstractExposedElement spatial object shall be provided.*/ +inv: AbstractExposedElement.sourceOfSpatialRepresentation. isEmpty() implies ExposedElement.geometry.notEmpty()

+
+ + @@ -74989,6 +79933,30 @@

Spatial Object Type: ExposedElement

+ + +

Constraint:

+ + + + + + + + + +
+

Name:

+
+

If the "source of spatial representation" is empty, the geometry AbstractExposedElement spatial object shall be provided.

+
+

Expression:

+
+

/*If the "source of spatial representation" is empty, the geometry AbstractExposedElement spatial object shall be provided.*/ +inv: AbstractExposedElement.sourceOfSpatialRepresentation. isEmpty() implies ExposedElement.geometry.notEmpty()

+
+ + @@ -75206,6 +80174,109 @@

Spatial Object Type: ExposedElementCoverage

+ + +

Constraint:

+ + + + + + + + + + + + + +
+

Name:

+
+

DomainisrectifedGridOrReferenceableGrid

+
+

Description:

+
+

A domain is a rectified grid or referenceable grid

+
+

Expression:

+
+

inv: domainSet.oclIsKindOf(CV_RectifiedGrid) or domainSet.oclIsKindOf(CV_ReferenceableGrid)

+
+ + + + +

Constraint:

+ + + + + + + + + +
+

Name:

+
+

If the "source of spatial representation" is empty, the geometry AbstractExposedElement spatial object shall be provided.

+
+

Expression:

+
+

/*If the "source of spatial representation" is empty, the geometry AbstractExposedElement spatial object shall be provided.*/ +inv: AbstractExposedElement.sourceOfSpatialRepresentation. isEmpty() implies ExposedElement.geometry.notEmpty()

+
+ + + + +

Constraint:

+ + + + + + + + + +
+

Name:

+
+

Range set is the levelOfVulnerability of VulnerabilityAssessment

+
+

Expression:

+
+

/* Range set is the level, or intensity, of the vulnerability assessment */ +inv: rangeSet.oclIsKindOf(VulnerabilityAssessment.levelOfVulnerability)

+
+ + + + +

Constraint:

+ + + + + + + + + +
+

Name:

+
+

gridFunctionRequiresGridDomain

+
+

Expression:

+
+

/*The grid function shall only be valid for domains that are grids */ +inv: coverageFunction.gridFunction.notEmpty() implies domainSet.oclIsKindOf(CV_Grid)

+
+ + @@ -75432,6 +80503,86 @@

Spatial Object Type: HazardCoverage

+ + +

Constraint:

+ + + + + + + + + + + + + +
+

Name:

+
+

DomainIsRectifiedGridOrReferenceableGrid

+
+

Description:

+
+

A domain is a rectified grid or referenceable grid

+
+

Expression:

+
+

inv: domainSet.oclIsKindOf(CV_RectifiedGrid) or domainSet.oclIsKindOf(CV_ReferenceableGrid)

+
+ + + + +

Constraint:

+ + + + + + + + + +
+

Name:

+
+

RangeSet is levelOrIntensity, or likelihoodOfOccurrence

+
+

Expression:

+
+

/*A range set is described by magnitude or intensity, or by the likelihood of occurence. As "magnitude or intensity" is modelled by the "LevelOrIntensity" data type, the constraint refers to this data type */ + +inv: rangeSet.oclIsKindOf(levelOrIntensity) or rangeSet.oclIsKindOf(LikelihoodOfOccurrence)

+
+ + + + +

Constraint:

+ + + + + + + + + +
+

Name:

+
+

gridFunctionRequiresGridDomain

+
+

Expression:

+
+

/*The grid function shall only be valid for domains that are grids */ +inv: coverageFunction.gridFunction.notEmpty() implies domainSet.oclIsKindOf(CV_Grid)

+
+ + @@ -75558,91 +80709,166 @@

Data type: LevelOrIntensity

Value type:

- -
-

CharacterString

-
- - - - -

Attribute:

- - - - - - - - - - - - - - - - - - - - - -
-

Name:

-
-

quantitativeValue

-
-

Definition:

-
-

-- Definition --

-

A quantitative assessment of the level or intensity.

-
-

Voidable:

-
-

true

-
-

Multiplicity:

-
-

1

-
-

Value type:

-
-

Measure

-
- - - - - - - -
-

Data type: LikelihoodOfOccurrence

- - - - - + + + + + + + +
-

LikelihoodOfOccurrence

-
- - - - - - + +
-

Definition:

-

-- Definition --

-

Likelihood is a general concept relating to the chance of an event occurring.

-

-

-- Description --

-

Likelihood is generally expressed as a probability or a frequency. [EXCIFF].

-
-

Type:

-

Data type

+

CharacterString

+
+
+

Attribute:

+ + + + + + + + + + + + + + + + + + + + + +
+

Name:

+
+

quantitativeValue

+
+

Definition:

+
+

-- Definition --

+

A quantitative assessment of the level or intensity.

+
+

Voidable:

+
+

true

+
+

Multiplicity:

+
+

1

+
+

Value type:

+
+

Measure

+
+
+

Constraint:

+ + + + + + + + + +
+

Name:

+
+

either the quantitative value or the qualitative value must be completed.

+
+

Expression:

+
+

/*either the qualitative value or the quantitative value must be completed. */ +inv: self.qualitativeValue.isEmpty() +implies self.quantitativeValue.notEmpty() +and self.quantitativeValue.isEmpty() implies +self.qualitativeValue.notEmpty()

+
+
+ + + + +
+

Data type: LikelihoodOfOccurrence

+ + + + + + + + + + +
+

LikelihoodOfOccurrence

+
+ + + + + + + +
+

Definition:

+

-- Definition --

+

Likelihood is a general concept relating to the chance of an event occurring.

+

+

-- Description --

+

Likelihood is generally expressed as a probability or a frequency. [EXCIFF].

+
+

Type:

+

Data type

+
+
+

Attribute:

+ + + + + + + + + + + + + + + + + + + +
+

Name:

+
+

assessmentMethod

+
+

Definition:

+
+

-- Definition --

+

A citation to the method used to express the likelihood.

+
+

Voidable:

+
+

true

+
+

Multiplicity:

+
+

1

+
+

Value type:

+
+

DocumentCitation

@@ -75657,7 +80883,7 @@

Data type: LikelihoodOfOccurrence

Name:

@@ -75666,7 +80892,10 @@

Data type: LikelihoodOfOccurrence

-

assessmentMethod

+

qualitativeLikelihood

@@ -75690,7 +80919,7 @@

Data type: LikelihoodOfOccurrence

-- Definition --

-

A citation to the method used to express the likelihood.

+

A qualitative assessment of the likelihood of occurrence of a hazard.

+

+

-- Description --

+

Sometimes, this is known as susceptibility.

Value type:

-

DocumentCitation

+

CharacterString

@@ -75705,7 +80934,7 @@

Data type: LikelihoodOfOccurrence

Name:

@@ -75714,7 +80943,7 @@

Data type: LikelihoodOfOccurrence

-

qualitativeLikelihood

+

quantitativeLikelihood

+ + + + + + + + +

-- Definition --

-

A qualitative assessment of the likelihood of occurrence of a hazard.

+

A frequency of occurence or return period of a hazard phenomenon.

-- Description --

Sometimes, this is known as susceptibility.

@@ -75741,7 +80970,7 @@

Data type: LikelihoodOfOccurrence

Value type:

-

CharacterString

+

QuantitativeLikelihood (data type)

@@ -75749,50 +80978,26 @@

Data type: LikelihoodOfOccurrence

+ + + + + + + + +
-

Attribute:

+

Constraint:

- - - - - - - - - - - -

Name:

-

quantitativeLikelihood

-
-

Definition:

-
-

-- Definition --

-

A frequency of occurence or return period of a hazard phenomenon.

-

-

-- Description --

-

Sometimes, this is known as susceptibility.

-
-

Voidable:

-
-

true

+

Either the qualitative likelihood or the quantitative likelihood must be completed.

-

Multiplicity:

+

Expression:

-

1

-
-

Value type:

-
-

QuantitativeLikelihood (data type)

+

/*either the qualitative likelihood or the quantitative likelihood must be completed. */ +inv: self.qualitativeLikelihood.isEmpty() +implies self.quantitativeLikelihood.notEmpty() +and self.quantitativeLikelihood.isEmpty() implies +self.qualitativeLikelihood.notEmpty()

@@ -76151,6 +81356,86 @@

Spatial Object Type: ObservedEventCoverage

+

Constraint:

+ + + + + + + + + + + + + +
+

Name:

+
+

DomainIsRectifiedGridOrReferenceableGrid

+
+

Description:

+
+

A domain is a rectified grid or referenceable grid

+
+

Expression:

+
+

inv: domainSet.oclIsKindOf(CV_RectifiedGrid) or domainSet.oclIsKindOf(CV_ReferenceableGrid)

+
+
+

Constraint:

+ + + + + + + + + +
+

Name:

+
+

RangeSet is levelOrIntensityOr LikelihoodOfOccurrence

+
+

Expression:

+
+

/*range set is described by magnitude or intensity, or by the likelihood of occurence. As "magnitude or intensity is modeled by the "LevelOrIntensity" data type, the constraint refers to this data type */ + +inv: rangeSet.oclIsKindOf(levelOrIntensity) or rangeSet.oclIsKindOf(LikelihoodOfOccurrence)

+
+
+

Constraint:

+ + + + + + + + + +
+

Name:

+
+

gridFunctionRequiresGridDomain

+
+

Expression:

+
+

/*The grid function shall only be valid for domains that are grids */ +inv: coverageFunction.gridFunction.notEmpty() implies domainSet.oclIsKindOf(CV_Grid)

+
+
@@ -76324,6 +81609,86 @@

Spatial Object Type: RiskCoverage

+

Constraint:

+ + + + + + + + + + + + + +
+

Name:

+
+

DomainIsRectifedGridOrReferenceableGrid

+
+

Description:

+
+

A domain is a rectified grid or referenceable grid

+
+

Expression:

+
+

inv: domainSet.oclIsKindOf(CV_RectifiedGrid) or domainSet.oclIsKindOf(CV_ReferenceableGrid)

+
+
+

Constraint:

+ + + + + + + + + +
+

Name:

+
+

Range set is levelOrIntensity

+
+

Expression:

+
+

/* A range set is described by level, or intensity */ + +inv: rangeSet.oclIsKindOf(LevelOrIntensity)

+
+
+

Constraint:

+ + + + + + + + + +
+

Name:

+
+

gridFunctionRequiresGridDomain

+
+

Expression:

+
+

/*The grid function shall only be valid for domains that are grids */ +inv: coverageFunction.gridFunction.notEmpty() implies domainSet.oclIsKindOf(CV_Grid)

+
+
@@ -79562,6 +84927,37 @@

Spatial Object Type: OilGasChemicalsPipe

+

Constraint:

+ + + + + + + + + + + + + +
+

Name:

+
+

All utility link objects have inspireId

+
+

Description:

+
+

All utility link objects have an external object identifier.

+
+

Expression:

+
+

inv:inspireId->notEmpty()

+
+
@@ -80190,7 +85586,319 @@

Spatial Object Type: OrthoimageCoverage

Value type:

+ +
-

TM_Position (union data type)

+

TM_Position (union data type)

+
+ + + + +

Attribute:

+ + + + + + + + + + + + + + + + + + + + + +
+

Name:

+
+

footprint

+
+

Definition:

+
+

-- Name --

+

footprint

+

+

-- Definition --

+

Geographic area enclosing valid data of the orthoimage coverage.

+

+

-- Description --

+

NOTE 1 The footprint shall be enclosed in the geographic domain extent that it refines.

+

+

NOTE 2 This property is mandatory if the OrthoimageCoverage instance is an aggregation of other OrthoimageCoverage instances or if mosaic elements are provided.

+
+

Voidable:

+
+

true

+
+

Multiplicity:

+
+

1

+
+

Value type:

+
+

GM_MultiSurface

+
+ + + + +

Attribute:

+ + + + + + + + + + + + + + + + + + + + + +
+

Name:

+
+

inspireId

+
+

Definition:

+
+

-- Name --

+

inspire identifier

+

+

-- Definition --

+

External object identifier of the spatial object.

+

+

-- Description --

+

NOTE An external object identifier is a unique object identifier published by the responsible body, which may be used by external applications to reference the spatial object. The identifier is an identifier of the spatial object, not an identifier of the real-world phenomenon.

+
+

Voidable:

+
+

false

+
+

Multiplicity:

+
+

1

+
+

Value type:

+
+

Identifier (data type)

+
+ + + + +

Attribute:

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+

Name:

+
+

interpolationType

+
+

Definition:

+
+

-- Name --

+

interpolation type

+

+

-- Definition --

+

Mathematical method which shall be used to evaluate a continuous coverage, i.e. determine the values of the coverage at any direct position within the domain of the coverage.

+

+

-- Description --

+

NOTE 1 Nearestneighbor is set as a default value in case where this information is omitted by data producers.

+

+

NOTE 2 A continuous grid coverage that uses nearest neighbour interpolation acts as a discrete surface coverage.

+
+

Voidable:

+
+

false

+
+

Multiplicity:

+
+

1

+
+

Initial value:

+
+

nearestneighbor

+
+

Value type:

+
+

InterpolationMethodValue (code list)

+
+

Tagged Values:

+
+ + + + + + + + + + + + + +

+

Tag

+

+

Value

+

+

obligation

+

+

implementingRule

+
+
+ + + + +

Association role:

+ + + + + + + + + + + + + + + + + + + + + +
+

Name:

+
+

mosaicElement

+
+

Definition:

+
+

-- Definition --

+

Spatial representation of the acquisition time of a mosaicked orthoimage coverage.

+

+

-- Description --

+

NOTE This association shall be used only when the orthoimage coverage is a mosaic.

+
+

Voidable:

+
+

true

+
+

Multiplicity:

+
+

0..*

+
+

Value type:

+
+

MosaicElement (spatial object type)

+
+ + + + +

Attribute:

+ + + + + + + + + + + + + + + + + + + +
+

Name:

+
+

name

+
+

Definition:

+
+

-- Name --

+

name

+

+

-- Definition --

+

Free text name of the orthoimage coverage.

+

+

-- Description --

+

NOTE This field is intended to hold a name that a data provider may use in addition to the inspire identifier

+

+

EXAMPLE 1 "Orthofoto's, middenschalig, kleur, provincie Limburg, opname 2011" is the name used by the Flemish Geographic Information Agency (AGIV) to indicate the OrthoImageCoverage Instance holding the orthophotomosaic covering the administrative unit 'provincie Limburg' at a resolution of 25 cm 'middenschalig' acquired in the year 2011 'opname 2011'

+

+

EXAMPLE 2 "BDOrtho coverage on Savoie at 50 cm - 2011" could be the name of an OrthoimageCoverage instance corresponding to a subset of the BDOrtho product of IGN France, the orthophoto of the "department" Savoie (an administrative unit) at a resolution of 50 cm.

+
+

Voidable:

+
+

true

+
+

Multiplicity:

+
+

0..1

+
+

Value type:

+
+

CharacterString

@@ -80205,7 +85913,7 @@

Spatial Object Type: OrthoimageCoverage

Name:

@@ -80214,15 +85922,19 @@

Spatial Object Type: OrthoimageCoverage

-

footprint

+

phenomenonTime

@@ -80238,7 +85950,7 @@

Spatial Object Type: OrthoimageCoverage

-- Name --

-

footprint

+

phenomenon time

-- Definition --

-

Geographic area enclosing valid data of the orthoimage coverage.

+

Description of the observation/acquisition extent in time.

-- Description --

-

NOTE 1 The footprint shall be enclosed in the geographic domain extent that it refines.

+

NOTE 1 This temporal extent refers to the range in time in which the image(s) contributing to the orthoImage coverage has/have been acquired.

-

NOTE 2 This property is mandatory if the OrthoimageCoverage instance is an aggregation of other OrthoimageCoverage instances or if mosaic elements are provided.

+

NOTE 2 When the acquisition is considered as instantaneous, despite the exposure time, the end date and time can be identical to the begin date and time.

+

+

EXAMPLE 1 begin: 2011-10-30 end: 2011-10-30

+

+

EXAMPLE 2 begin: 2011-06-07T14:31:02Z end: 2011-06-07T16:10:54Z.

Multiplicity:

@@ -80246,7 +85958,7 @@

Spatial Object Type: OrthoimageCoverage

-

1

+

0..1

Value type:

-

GM_MultiSurface

+

TM_Period

@@ -80254,53 +85966,54 @@

Spatial Object Type: OrthoimageCoverage

+ + + + + + + + + +
-

Attribute:

+

Constraint:

+

Name:

-

inspireId

+

acquisitionTimeRequired

-

Definition:

+

Description:

-

-- Name --

-

inspire identifier

-

-

-- Definition --

-

External object identifier of the spatial object.

-

-

-- Description --

-

NOTE An external object identifier is a unique object identifier published by the responsible body, which may be used by external applications to reference the spatial object. The identifier is an identifier of the spatial object, not an identifier of the real-world phenomenon.

+

The acquisition time of the orthoimage coverage shall be provided through the phenomenonTime attribute or the mosaicElement association

-

Voidable:

+

Expression:

-

false

+

inv: phenomenonTime->notEmpty() or mosaicElement->notEmpty()

+
+

Constraint:

+
-

Multiplicity:

+

Name:

-

1

+

domainDimensionIs2

-

Value type:

+

Expression:

-

Identifier (data type)

+

/* The dimension of the grid used shall always be 2 */ +inv: domainSet.dimension=2

@@ -80308,92 +86021,61 @@

Spatial Object Type: OrthoimageCoverage

+ + + +
-

Attribute:

+

Constraint:

- - - - +

Name:

-

interpolationType

+

domainExtentContainsGeographicElement

-

Definition:

+

Description:

-

-- Name --

-

interpolation type

-

-

-- Definition --

-

Mathematical method which shall be used to evaluate a continuous coverage, i.e. determine the values of the coverage at any direct position within the domain of the coverage.

-

-

-- Description --

-

NOTE 1 Nearestneighbor is set as a default value in case where this information is omitted by data producers.

-

-

NOTE 2 A continuous grid coverage that uses nearest neighbour interpolation acts as a discrete surface coverage.

-
-

Voidable:

-
-

false

+

The domainExtent attribute shall be at least populated with a subtype of EX_GeographicExtent

-

Multiplicity:

+

Expression:

-

1

+

inv: domainExtent.geographicElement->size()>=1

+
+

Constraint:

+
-

Initial value:

+

Name:

-

nearestneighbor

+

domainIsRectifiedGrid

-

Value type:

+

Description:

-

InterpolationMethodValue (code list)

+

The domain shall be a rectified grid.

-

Tagged Values:

+

Expression:

- - - - - - - - - - - - - -

-

Tag

-

-

Value

-

-

obligation

-

-

implementingRule

-
+

inv: domainSet.oclIsKindOf(CV_RectifiedGrid)

@@ -80401,50 +86083,46 @@

Spatial Object Type: OrthoimageCoverage

+ + + + + + + + + + + +
-

Association role:

+

Constraint:

- - - - +

Name:

-

mosaicElement

+

domainRequiresCRS

-

Definition:

+

Expression:

-

-- Definition --

-

Spatial representation of the acquisition time of a mosaicked orthoimage coverage.

-

-

-- Description --

-

NOTE This association shall be used only when the orthoimage coverage is a mosaic.

-
-

Voidable:

-
-

true

+

/* The coordinate reference system used to reference the grid shall be provided */ +inv: domainSet.origin.coordinateReferenceSystem->notEmpty()

+
+

Constraint:

+
-

Multiplicity:

+

Name:

-

0..*

+

grid points shall coincide with grid cell centres

-

Value type:

+

Expression:

-

MosaicElement (spatial object type)

+

/*Grid points of a RectifiedGridCoverage shall coincide with the centres of cells of the geographical grids defined in Section 2.2 of Annex II at any resolution level.*/

@@ -80452,57 +86130,47 @@

Spatial Object Type: OrthoimageCoverage

+ + + + + + + + + + + +
-

Attribute:

+

Constraint:

- - - - +

Name:

-

name

-
-

Definition:

-
-

-- Name --

-

name

-

-

-- Definition --

-

Free text name of the orthoimage coverage.

-

-

-- Description --

-

NOTE This field is intended to hold a name that a data provider may use in addition to the inspire identifier

-

-

EXAMPLE 1 "Orthofoto's, middenschalig, kleur, provincie Limburg, opname 2011" is the name used by the Flemish Geographic Information Agency (AGIV) to indicate the OrthoImageCoverage Instance holding the orthophotomosaic covering the administrative unit 'provincie Limburg' at a resolution of 25 cm 'middenschalig' acquired in the year 2011 'opname 2011'

-

-

EXAMPLE 2 "BDOrtho coverage on Savoie at 50 cm - 2011" could be the name of an OrthoimageCoverage instance corresponding to a subset of the BDOrtho product of IGN France, the orthophoto of the "department" Savoie (an administrative unit) at a resolution of 50 cm.

+

gridFunctionRequiresGridDomain

-

Voidable:

+

Expression:

-

true

+

/*The grid function shall only be valid for domains that are grids */ +inv: coverageFunction.gridFunction.notEmpty() implies domainSet.oclIsKindOf(CV_Grid)

+
+

Constraint:

+
-

Multiplicity:

+

Name:

-

0..1

+

identicalOffsetVectorsWithinOrthoimageAggregation

-

Value type:

+

Expression:

-

CharacterString

+

/*All the OrthoimageCoverage instances to which an aggregated OrthoimageCoverage instance refers shall share the same orientation of grid axes and the same grid spacing in each direction*/ +Inv: contributingOrthoimageCoverage->forAll(v | v.domainSet.offsetVectors = self.domainSet.offsetVectors)

@@ -80510,59 +86178,54 @@

Spatial Object Type: OrthoimageCoverage

+ + + + + +
-

Attribute:

+

Constraint:

+

Name:

-

phenomenonTime

+

originDimensionIs2

-

Definition:

+

Expression:

-

-- Name --

-

phenomenon time

-

-

-- Definition --

-

Description of the observation/acquisition extent in time.

-

-

-- Description --

-

NOTE 1 This temporal extent refers to the range in time in which the image(s) contributing to the orthoImage coverage has/have been acquired.

-

-

NOTE 2 When the acquisition is considered as instantaneous, despite the exposure time, the end date and time can be identical to the begin date and time.

-

-

EXAMPLE 1 begin: 2011-10-30 end: 2011-10-30

-

-

EXAMPLE 2 begin: 2011-06-07T14:31:02Z end: 2011-06-07T16:10:54Z.

+

/* The origin of the grid shall be described in two dimensions */ +inv: domainSet.origin.dimension=2

+
+

Constraint:

+
-

Voidable:

+

Name:

-

true

+

rangeSetValuesAreOfTypeInteger

-

Multiplicity:

+

Description:

-

0..1

+

The values in the range set shall be described by the Integer type

-

Value type:

+

Expression:

-

TM_Period

+

inv: rangeSet->forAll(v | v.oclIsKindOf(Integer))

@@ -81527,6 +87190,31 @@

Spatial Object Type: OfficialDocumentation

+

Constraint:

+ + + + + + + + + +
+

Name:

+
+

OneMustBeFilled

+
+

Expression:

+
+

/* +** At least one of the values must be populated with a non-void value +*/

+
+
@@ -84310,6 +89998,78 @@

Spatial Object Type: MultiPointObservation

+

Constraint:

+ + + + + + + + + +
+

Name:

+
+

featureOfInterest shall be a SF_SamplingSurface

+
+

Expression:

+
+

/* featureOfInterest must be a SF_SamplingSurface */ +inv: self.featureOfInterest->forAll(oclIsKindOf(SF_SamplingSurface))

+
+
+

Constraint:

+ + + + + + + + + +
+

Name:

+
+

phenomenonTime shall be a TM_Instant

+
+

Expression:

+
+

/*phenomenonTime must be a TM_Instant */ +inv: self.phenomenonTime.oclIsKindOf(TM_Instant)

+
+
+

Constraint:

+ + + + + + + + + +
+

Name:

+
+

result must be a MultiPointCoverage

+
+

Expression:

+
+

/* result must be a MultiPointCoverage */ +inv: self.result.oclIsKindOf(MultiPointCoverage)

+
+
@@ -84347,6 +90107,78 @@

Spatial Object Type: PointObservation

+

Constraint:

+ + + + + + + + + +
+

Name:

+
+

featureOfInterest must be a SF_SamplingPoint

+
+

Expression:

+
+

/* featureOfInterest must be a SF_SamplingPoint */ +inv: self.featureOfInterest->forAll(oclIsKindOf(SF_SamplingPoint))

+
+
+

Constraint:

+ + + + + + + + + +
+

Name:

+
+

phenomenonTime must be a TM_Instant

+
+

Expression:

+
+

/* phenomenonTime must be a TM_Instant */ +inv: self.phenomenonTime.oclIsKindOf(TM_Instant)

+
+
+

Constraint:

+ + + + + + + + + +
+

Name:

+
+

result must be a CV_DiscretePointCoverage

+
+

Expression:

+
+

/* result must be a CV_DiscretePointCoverage */ +inv: self.result.oclIsKindOf(CV_DiscretePointCoverage)

+
+
@@ -84390,6 +90222,30 @@

Spatial Object Type: PointObservationCollection

+

Constraint:

+
+ + + + + + + + +
+

Name:

+
+

member shall be of type PointObservation

+
+

Expression:

+
+

/* each member shall be a PointObservation */ +inv: self.member.oclIsKindOf(PointObservation)

+
+
@@ -84427,6 +90283,78 @@

Spatial Object Type: PointTimeSeriesObservation

+

Constraint:

+
+ + + + + + + + +
+

Name:

+
+

featureOfInterest must be a SF_SamplingPoint

+
+

Expression:

+
+

/* featureOfInterest must be a SF_SamplingPoint */ +inv: self.featureOfInterest->forAll(oclIsKindOf(SF_SamplingPoint))

+
+
+

Constraint:

+ + + + + + + + + +
+

Name:

+
+

phenomenonTime must be a TM_Period

+
+

Expression:

+
+

/*phenomenonTime must be a TM_Period */ +inv: self.phenomenonTime.oclIsKindOf(TM_Period)

+
+
+

Constraint:

+ + + + + + + + + +
+

Name:

+
+

result must be a TimeSeries

+
+

Expression:

+
+

/* result must be a Timeseries */ +inv: self.result.oclIsKindOf(TimeSeries)

+
+
@@ -86375,6 +92303,29 @@

Data type: StatisticalValue

+ + +

Constraint:

+ + + + + + + + + +
+

Name:

+
+

valueOrSpecialValue

+
+

Expression:

+
+

/* Either the value or the specialValue attribute shall be provided. */

+
+ + @@ -87203,6 +93154,21 @@

Spatial Object Type: ProductionBuilding

+ + +

Constraint:

+ + + + + +
+

Name:

+
+

Geometry must be provided only in case that not linkage with a building schema entity was stablished

+
+ + @@ -89859,6 +95825,36 @@

Data type: DesignationType

+ + +

Constraint:

+ + + + + + + + + +
+

Name:

+
+

DesignationConstraint

+
+

Expression:

+
+

/*Sites must use designations from an appropriate designation scheme, and the designation code value must agree with the designation scheme.*/ +inv: self.designationScheme = DesignationSchemeValue::natura2000 implies self.designation.oclIsKindOf(DesignationValueNatura2000) and +self.designationScheme = DesignationSchemeValue::emeraldNetwork implies self.designation.oclIsKindOf(DesignationValueEmeraldNetwork) and +self.designationScheme = DesignationSchemeValue::ramsar implies self.designation.oclIsKindOf(DesignationValueRamsar) and +self.designationScheme = DesignationSchemeValue::UNESCOWorldHeritage implies self.designation.oclIsKindOf(DesignationValueUNESCOWorldHeritage) and +self.designationScheme = DesignationSchemeValue::IUCN implies self.designation.oclIsKindOf(DesignationValueIUCN) and +self.designationScheme = DesignationSchemeValue::UNESCOManAndBiosphereProgramme implies self.designation.oclIsKindOf(DesignationValueUNESCOManAndBiosphereProgramme) and +self.designationScheme = DesignationSchemeValue::nationalMonumentsRecord implies self.designation.oclIsKindOf(DesignationValueNationalMonumentsRecord)

+
+ + @@ -90460,6 +96456,63 @@

Spatial Object Type: DesignSpeed

+ + +

Constraint:

+ + + + + + + + + + + + + +
+

Name:

+
+

All objects have inspireId

+
+

Description:

+
+

All transport properties have an external object identifier.

+
+

Expression:

+
+

inv:inspireId->notEmpty()

+
+ + + + +

Constraint:

+ + + + + + + + + +
+

Name:

+
+

Applies to railway transport classes only

+
+

Expression:

+
+

/* This property can only be associated with a spatial object that is part of a railway transport network. */ +inv: networkRef.element.oclIsKindOf(RailwayArea) or networkRef.element.oclIsKindOf(RailwayYardArea) or networkRef.element.oclIsKindOf(RailwayStationArea) or networkRef.element.oclIsKindOf(RailwayLine) or networkRef.element.oclIsKindOf(RailwayLinkSequence) or +networkRef.element.oclIsKindOf(RailwayLink) or +networkRef.element.oclIsKindOf(RailwayNode)

+
+ + @@ -90643,6 +96696,63 @@

Spatial Object Type: NominalTrackGauge

+ + +

Constraint:

+ + + + + + + + + + + + + +
+

Name:

+
+

All objects have inspireId

+
+

Description:

+
+

All transport properties have an external object identifier.

+
+

Expression:

+
+

inv:inspireId->notEmpty()

+
+ + + + +

Constraint:

+ + + + + + + + + +
+

Name:

+
+

Applies to railway transport classes only

+
+

Expression:

+
+

/* This property can only be associated with a spatial object that is part of a railway transport network. */ +inv: networkRef.element.oclIsKindOf(RailwayArea) or networkRef.element.oclIsKindOf(RailwayYardArea) or networkRef.element.oclIsKindOf(RailwayStationArea) or networkRef.element.oclIsKindOf(RailwayLine) or networkRef.element.oclIsKindOf(RailwayLinkSequence) or +networkRef.element.oclIsKindOf(RailwayLink) or +networkRef.element.oclIsKindOf(RailwayNode)

+
+ + @@ -90820,6 +96930,63 @@

Spatial Object Type: NumberOfTracks

+ + +

Constraint:

+ + + + + + + + + + + + + +
+

Name:

+
+

All objects have inspireId

+
+

Description:

+
+

All transport properties have an external object identifier.

+
+

Expression:

+
+

inv:inspireId->notEmpty()

+
+ + + + +

Constraint:

+ + + + + + + + + +
+

Name:

+
+

Applies to railway transport classes only

+
+

Expression:

+
+

/* This property can only be associated with a spatial object that is part of a railway transport network. */ +inv: networkRef.element.oclIsKindOf(RailwayArea) or networkRef.element.oclIsKindOf(RailwayYardArea) or networkRef.element.oclIsKindOf(RailwayStationArea) or networkRef.element.oclIsKindOf(RailwayLine) or networkRef.element.oclIsKindOf(RailwayLinkSequence) or +networkRef.element.oclIsKindOf(RailwayLink) or +networkRef.element.oclIsKindOf(RailwayNode)

+
+ + @@ -90859,6 +97026,37 @@

Spatial Object Type: RailwayArea

+ + +

Constraint:

+ + + + + + + + + + + + + +
+

Name:

+
+

All objects have inspireId

+
+

Description:

+
+

All transport areas have an external object identifier.

+
+

Expression:

+
+

inv:inspireId->notEmpty()

+
+ + @@ -90946,6 +97144,63 @@

Spatial Object Type: RailwayElectrification

+ + +

Constraint:

+ + + + + + + + + + + + + +
+

Name:

+
+

All objects have inspireId

+
+

Description:

+
+

All transport properties have an external object identifier.

+
+

Expression:

+
+

inv:inspireId->notEmpty()

+
+ + + + +

Constraint:

+ + + + + + + + + +
+

Name:

+
+

Applies to railway transport classes only

+
+

Expression:

+
+

/* This property can only be associated with a spatial object that is part of a railway transport network. */ +inv: networkRef.element.oclIsKindOf(RailwayArea) or networkRef.element.oclIsKindOf(RailwayYardArea) or networkRef.element.oclIsKindOf(RailwayStationArea) or networkRef.element.oclIsKindOf(RailwayLine) or networkRef.element.oclIsKindOf(RailwayLinkSequence) or +networkRef.element.oclIsKindOf(RailwayLink) or +networkRef.element.oclIsKindOf(RailwayNode)

+
+ + @@ -91036,6 +97291,68 @@

Spatial Object Type: RailwayLine

+ + +

Constraint:

+ + + + + + + + + + + + + +
+

Name:

+
+

All components belong to same transport network

+
+

Description:

+
+

A transport link set must be composed of transport links and or transport link sequences that all belong to the same transport network.

+
+

Expression:

+
+

inv: link->forAll(l | l.inNetwork = self.inNetwork)

+
+ + + + +

Constraint:

+ + + + + + + + + + + + + +
+

Name:

+
+

All objects have inspireId

+
+

Description:

+
+

All transport link sets have an external object identifier.

+
+

Expression:

+
+

inv:inspireId->notEmpty()

+
+ + @@ -91129,6 +97446,37 @@

Spatial Object Type: RailwayLink

+ + +

Constraint:

+ + + + + + + + + + + + + +
+

Name:

+
+

All objects have inspireId

+
+

Description:

+
+

All transport links have an external object identifier.

+
+

Expression:

+
+

inv:inspireId->notEmpty()

+
+ + @@ -91168,6 +97516,68 @@

Spatial Object Type: RailwayLinkSequence

+ + +

Constraint:

+ + + + + + + + + + + + + +
+

Name:

+
+

All components belong to same transport network

+
+

Description:

+
+

A transport link sequence must be composed of transport links that all belong to the same transport network.

+
+

Expression:

+
+

inv: link->forAll(l | l.link.inNetwork = self.inNetwork)

+
+ + + + +

Constraint:

+ + + + + + + + + + + + + +
+

Name:

+
+

All objects have inspireId

+
+

Description:

+
+

All transport link sequences have an external object identifier.

+
+

Expression:

+
+

inv: inspireId->notEmpty()

+
+ + @@ -91316,6 +97726,37 @@

Spatial Object Type: RailwayNode

+ + +

Constraint:

+ + + + + + + + + + + + + +
+

Name:

+
+

All objects have inspireId

+
+

Description:

+
+

All transport nodes have an external object identifier.

+
+

Expression:

+
+

inv:inspireId->notEmpty()

+
+ + @@ -91355,6 +97796,37 @@

Spatial Object Type: RailwayStationArea

+ + +

Constraint:

+ + + + + + + + + + + + + +
+

Name:

+
+

All objects have inspireId

+
+

Description:

+
+

All transport areas have an external object identifier.

+
+

Expression:

+
+

inv:inspireId->notEmpty()

+
+ + @@ -91442,6 +97914,63 @@

Spatial Object Type: RailwayStationCode

+ + +

Constraint:

+ + + + + + + + + + + + + +
+

Name:

+
+

All objects have inspireId

+
+

Description:

+
+

All transport properties have an external object identifier.

+
+

Expression:

+
+

inv:inspireId->notEmpty()

+
+ + + + +

Constraint:

+ + + + + + + + + +
+

Name:

+
+

Applies to Railway Transport classes only

+
+

Expression:

+
+

/* This property can only be associated with a spatial object that is part of a railway transport network. */ +inv: networkRef.element.oclIsKindOf(RailwayArea) or networkRef.element.oclIsKindOf(RailwayYardArea) or networkRef.element.oclIsKindOf(RailwayStationArea) or networkRef.element.oclIsKindOf(RailwayLine) or networkRef.element.oclIsKindOf(RailwayLinkSequence) or +networkRef.element.oclIsKindOf(RailwayLink) or +networkRef.element.oclIsKindOf(RailwayNode)

+
+ + @@ -91529,6 +98058,61 @@

Spatial Object Type: RailwayStationNode

+ + +

Constraint:

+ + + + + + + + + + + + + +
+

Name:

+
+

All objects have inspireId

+
+

Description:

+
+

All transport nodes have an external object identifier.

+
+

Expression:

+
+

inv:inspireId->notEmpty()

+
+ + + + +

Constraint:

+ + + + + + + + + +
+

Name:

+
+

formOfNode is always RailwayStop

+
+

Expression:

+
+

/* For a railway station node, the value for the "formOfNode" attribute shall always be "RailwayStop". */ +formOfNode = FormOfRailwayNodeValue::railwayStop

+
+ + @@ -91706,6 +98290,63 @@

Spatial Object Type: RailwayType

+ + +

Constraint:

+ + + + + + + + + + + + + +
+

Name:

+
+

All objects have inspireId

+
+

Description:

+
+

All transport properties have an external object identifier.

+
+

Expression:

+
+

inv:inspireId->notEmpty()

+
+ + + + +

Constraint:

+ + + + + + + + + +
+

Name:

+
+

Applies to railway transport classes only

+
+

Expression:

+
+

/* This property can only be associated with a spatial object that is part of a railway transport network. */ +inv: networkRef.element.oclIsKindOf(RailwayArea) or networkRef.element.oclIsKindOf(RailwayYardArea) or networkRef.element.oclIsKindOf(RailwayStationArea) or networkRef.element.oclIsKindOf(RailwayLine) or networkRef.element.oclIsKindOf(RailwayLinkSequence) or +networkRef.element.oclIsKindOf(RailwayLink) or +networkRef.element.oclIsKindOf(RailwayNode)

+
+ + @@ -91838,6 +98479,63 @@

Spatial Object Type: RailwayUse

+ + +

Constraint:

+ + + + + + + + + + + + + +
+

Name:

+
+

All objects have inspireId

+
+

Description:

+
+

All transport properties have an external object identifier.

+
+

Expression:

+
+

inv:inspireId->notEmpty()

+
+ + + + +

Constraint:

+ + + + + + + + + +
+

Name:

+
+

Applies to Railway Transport classes only

+
+

Expression:

+
+

/* This property can only be associated with a spatial object that is part of a railway transport network. */ +inv: networkRef.element.oclIsKindOf(RailwayArea) or networkRef.element.oclIsKindOf(RailwayYardArea) or networkRef.element.oclIsKindOf(RailwayStationArea) or networkRef.element.oclIsKindOf(RailwayLine) or networkRef.element.oclIsKindOf(RailwayLinkSequence) or +networkRef.element.oclIsKindOf(RailwayLink) or +networkRef.element.oclIsKindOf(RailwayNode)

+
+ + @@ -91879,6 +98577,37 @@

Spatial Object Type: RailwayYardArea

+ + +

Constraint:

+ + + + + + + + + + + + + +
+

Name:

+
+

All objects have inspireId

+
+

Description:

+
+

All transport areas have an external object identifier.

+
+

Expression:

+
+

inv:inspireId->notEmpty()

+
+ + @@ -91920,6 +98649,61 @@

Spatial Object Type: RailwayYardNode

+ + +

Constraint:

+ + + + + + + + + + + + + +
+

Name:

+
+

All objects have inspireId

+
+

Description:

+
+

All transport nodes have an external object identifier.

+
+

Expression:

+
+

inv:inspireId->notEmpty()

+
+ + + + +

Constraint:

+ + + + + + + + + +
+

Name:

+
+

formOfNode is always RailwayStop

+
+

Expression:

+
+

/* For a railway yard node, the value for the "formOfNode" attribute shall always be "RailwayStop". */ +formOfNode = FormOfRailwayNodeValue::railwayStop

+
+ + @@ -92028,6 +98812,68 @@

Spatial Object Type: ERoad

+ + +

Constraint:

+ + + + + + + + + + + + + +
+

Name:

+
+

All components belong to same transport network

+
+

Description:

+
+

A transport link set must be composed of transport links and or transport link sequences that all belong to the same transport network.

+
+

Expression:

+
+

inv: link->forAll(l | l.inNetwork = self.inNetwork)

+
+ + + + +

Constraint:

+ + + + + + + + + + + + + +
+

Name:

+
+

All objects have inspireId

+
+

Description:

+
+

All transport link sets have an external object identifier.

+
+

Expression:

+
+

inv:inspireId->notEmpty()

+
+ + @@ -92318,6 +99164,64 @@

Spatial Object Type: FormOfWay

+ + +

Constraint:

+ + + + + + + + + + + + + +
+

Name:

+
+

All objects have inspireId

+
+

Description:

+
+

All transport properties have an external object identifier.

+
+

Expression:

+
+

inv:inspireId->notEmpty()

+
+ + + + +

Constraint:

+ + + + + + + + + +
+

Name:

+
+

Applies to road transport elements only

+
+

Expression:

+
+

/* This property can only be associated with a spatial object that is part of a road transport network. */ +inv: networkRef.element.oclIsKindOf(Road) or networkRef.element.oclIsKindOf(ERoad) or networkRef.element.oclIsKindOf(RoadLink) or networkRef.element.oclIsKindOf(RoadLinkSequence) or networkRef.element.oclIsKindOf(RoadNode) or +networkRef.element.oclIsKindOf(RoadArea) or +networkRef.element.oclIsKindOf(RoadServiceArea) or +networkRef.element.oclIsKindOf(VehicleTrafficArea)

+
+ + @@ -92542,6 +99446,64 @@

Spatial Object Type: FunctionalRoadClass

+ + +

Constraint:

+ + + + + + + + + + + + + +
+

Name:

+
+

All objects have inspireId

+
+

Description:

+
+

All transport properties have an external object identifier.

+
+

Expression:

+
+

inv:inspireId->notEmpty()

+
+ + + + +

Constraint:

+ + + + + + + + + +
+

Name:

+
+

Applies to road transport elements only

+
+

Expression:

+
+

/* This property can only be associated with a spatial object that is part of a road transport network. */ +inv: networkRef.element.oclIsKindOf(Road) or networkRef.element.oclIsKindOf(ERoad) or networkRef.element.oclIsKindOf(RoadLink) or networkRef.element.oclIsKindOf(RoadLinkSequence) or networkRef.element.oclIsKindOf(RoadNode) or +networkRef.element.oclIsKindOf(RoadArea) or +networkRef.element.oclIsKindOf(RoadServiceArea) or +networkRef.element.oclIsKindOf(VehicleTrafficArea)

+
+ + @@ -92786,6 +99748,64 @@

Spatial Object Type: NumberOfLanes

+ + +

Constraint:

+ + + + + + + + + + + + + +
+

Name:

+
+

All objects have inspireId

+
+

Description:

+
+

All transport properties have an external object identifier.

+
+

Expression:

+
+

inv:inspireId->notEmpty()

+
+ + + + +

Constraint:

+ + + + + + + + + +
+

Name:

+
+

Applies to road transport elements only

+
+

Expression:

+
+

/* This property can only be associated with a spatial object that is part of a road transport network. */ +inv: networkRef.element.oclIsKindOf(Road) or networkRef.element.oclIsKindOf(ERoad) or networkRef.element.oclIsKindOf(RoadLink) or networkRef.element.oclIsKindOf(RoadLinkSequence) or networkRef.element.oclIsKindOf(RoadNode) or +networkRef.element.oclIsKindOf(RoadArea) or +networkRef.element.oclIsKindOf(RoadServiceArea) or +networkRef.element.oclIsKindOf(VehicleTrafficArea)

+
+ + @@ -92927,6 +99947,68 @@

Spatial Object Type: Road

+ + +

Constraint:

+ + + + + + + + + + + + + +
+

Name:

+
+

All components belong to same transport network

+
+

Description:

+
+

A transport link set must be composed of transport links and or transport link sequences that all belong to the same transport network.

+
+

Expression:

+
+

inv: link->forAll(l | l.inNetwork = self.inNetwork)

+
+ + + + +

Constraint:

+ + + + + + + + + + + + + +
+

Name:

+
+

All objects have inspireId

+
+

Description:

+
+

All transport link sets have an external object identifier.

+
+

Expression:

+
+

inv:inspireId->notEmpty()

+
+ + @@ -92969,6 +100051,37 @@

Spatial Object Type: RoadArea

+ + +

Constraint:

+ + + + + + + + + + + + + +
+

Name:

+
+

All objects have inspireId

+
+

Description:

+
+

All transport areas have an external object identifier.

+
+

Expression:

+
+

inv:inspireId->notEmpty()

+
+ + @@ -93009,6 +100122,37 @@

Spatial Object Type: RoadLink

+ + +

Constraint:

+ + + + + + + + + + + + + +
+

Name:

+
+

All objects have inspireId

+
+

Description:

+
+

All transport links have an external object identifier.

+
+

Expression:

+
+

inv:inspireId->notEmpty()

+
+ + @@ -93048,6 +100192,68 @@

Spatial Object Type: RoadLinkSequence

+ + +

Constraint:

+ + + + + + + + + + + + + +
+

Name:

+
+

All components belong to same transport network

+
+

Description:

+
+

A transport link sequence must be composed of transport links that all belong to the same transport network.

+
+

Expression:

+
+

inv: link->forAll(l | l.link.inNetwork = self.inNetwork)

+
+ + + + +

Constraint:

+ + + + + + + + + + + + + +
+

Name:

+
+

All objects have inspireId

+
+

Description:

+
+

All transport link sequences have an external object identifier.

+
+

Expression:

+
+

inv: inspireId->notEmpty()

+
+ + @@ -93135,6 +100341,64 @@

Spatial Object Type: RoadName

+ + +

Constraint:

+ + + + + + + + + + + + + +
+

Name:

+
+

All objects have inspireId

+
+

Description:

+
+

All transport properties have an external object identifier.

+
+

Expression:

+
+

inv:inspireId->notEmpty()

+
+ + + + +

Constraint:

+ + + + + + + + + +
+

Name:

+
+

Applies to road transport elements only

+
+

Expression:

+
+

/* This property can only be associated with a spatial object that is part of a road transport network. */ +inv: networkRef.element.oclIsKindOf(Road) or networkRef.element.oclIsKindOf(ERoad) or networkRef.element.oclIsKindOf(RoadLink) or networkRef.element.oclIsKindOf(RoadLinkSequence) or networkRef.element.oclIsKindOf(RoadNode) or +networkRef.element.oclIsKindOf(RoadArea) or +networkRef.element.oclIsKindOf(RoadServiceArea) or +networkRef.element.oclIsKindOf(VehicleTrafficArea)

+
+ + @@ -93314,6 +100578,37 @@

Spatial Object Type: RoadNode

+ + +

Constraint:

+ + + + + + + + + + + + + +
+

Name:

+
+

All objects have inspireId

+
+

Description:

+
+

All transport nodes have an external object identifier.

+
+

Expression:

+
+

inv:inspireId->notEmpty()

+
+ + @@ -93356,6 +100651,37 @@

Spatial Object Type: RoadServiceArea

+ + +

Constraint:

+ + + + + + + + + + + + + +
+

Name:

+
+

All objects have inspireId

+
+

Description:

+
+

All transport areas have an external object identifier.

+
+

Expression:

+
+

inv:inspireId->notEmpty()

+
+ + @@ -93608,6 +100934,62 @@

Spatial Object Type: RoadServiceType

+ + +

Constraint:

+ + + + + + + + + + + + + +
+

Name:

+
+

All objects have inspireId

+
+

Description:

+
+

All transport properties have an external object identifier.

+
+

Expression:

+
+

inv:inspireId->notEmpty()

+
+ + + + +

Constraint:

+ + + + + + + + + +
+

Name:

+
+

Applies to road service areas only

+
+

Expression:

+
+

/* This property can only be associated with a spatial object of the type RoadServiceArea or RoadNode (when formOfRoadNode=roadServiceArea). */ +inv: networkRef.element.oclIsKindOf(RoadServiceArea) or +(networkRef.element.oclIsKindOf(RoadNode) and networkRef.element. formOfRoadNode = FormOfRoadNodeValue::roadServiceArea)

+
+ + @@ -93735,6 +101117,64 @@

Spatial Object Type: RoadSurfaceCategory

+ + +

Constraint:

+ + + + + + + + + + + + + +
+

Name:

+
+

All objects have inspireId

+
+

Description:

+
+

All transport properties have an external object identifier.

+
+

Expression:

+
+

inv:inspireId->notEmpty()

+
+ + + + +

Constraint:

+ + + + + + + + + +
+

Name:

+
+

Applies to road transport elements only

+
+

Expression:

+
+

/* This property can only be associated with a spatial object that is part of a road transport network. */ +inv: networkRef.element.oclIsKindOf(Road) or networkRef.element.oclIsKindOf(ERoad) or networkRef.element.oclIsKindOf(RoadLink) or networkRef.element.oclIsKindOf(RoadLinkSequence) or networkRef.element.oclIsKindOf(RoadNode) or +networkRef.element.oclIsKindOf(RoadArea) or +networkRef.element.oclIsKindOf(RoadServiceArea) or +networkRef.element.oclIsKindOf(VehicleTrafficArea)

+
+ + @@ -93900,6 +101340,64 @@

Spatial Object Type: RoadWidth

+ + +

Constraint:

+ + + + + + + + + + + + + +
+

Name:

+
+

All objects have inspireId

+
+

Description:

+
+

All transport properties have an external object identifier.

+
+

Expression:

+
+

inv:inspireId->notEmpty()

+
+ + + + +

Constraint:

+ + + + + + + + + +
+

Name:

+
+

Applies to road transport elements only

+
+

Expression:

+
+

/* This property can only be associated with a spatial object that is part of a road transport network. */ +inv: networkRef.element.oclIsKindOf(Road) or networkRef.element.oclIsKindOf(ERoad) or networkRef.element.oclIsKindOf(RoadLink) or networkRef.element.oclIsKindOf(RoadLinkSequence) or networkRef.element.oclIsKindOf(RoadNode) or +networkRef.element.oclIsKindOf(RoadArea) or +networkRef.element.oclIsKindOf(RoadServiceArea) or +networkRef.element.oclIsKindOf(VehicleTrafficArea)

+
+ + @@ -95067,6 +102565,64 @@

Spatial Object Type: SpeedLimit

+ + +

Constraint:

+ + + + + + + + + + + + + +
+

Name:

+
+

All objects have inspireId

+
+

Description:

+
+

All transport properties have an external object identifier.

+
+

Expression:

+
+

inv:inspireId->notEmpty()

+
+ + + + +

Constraint:

+ + + + + + + + + +
+

Name:

+
+

Applies to road transport elements only

+
+

Expression:

+
+

/* This property can only be associated with a spatial object that is part of a road transport network. */ +inv: networkRef.element.oclIsKindOf(Road) or networkRef.element.oclIsKindOf(ERoad) or networkRef.element.oclIsKindOf(RoadLink) or networkRef.element.oclIsKindOf(RoadLinkSequence) or networkRef.element.oclIsKindOf(RoadNode) or +networkRef.element.oclIsKindOf(RoadArea) or +networkRef.element.oclIsKindOf(RoadServiceArea) or +networkRef.element.oclIsKindOf(VehicleTrafficArea)

+
+ + @@ -95106,6 +102662,37 @@

Spatial Object Type: VehicleTrafficArea

+ + +

Constraint:

+ + + + + + + + + + + + + +
+

Name:

+
+

All objects have inspireId

+
+

Description:

+
+

All transport areas have an external object identifier.

+
+

Expression:

+
+

inv:inspireId->notEmpty()

+
+ + @@ -96259,6 +103846,29 @@

Spatial Object Type: Coastline

+ + +

Constraint:

+ + + + + + + + + +
+

Name:

+
+

coastline is special case of shoreline at Mean High Water Level

+
+

Expression:

+
+

/*Coastline is a special case of shoreline at Mean High Water Level. Coastline is the boundary between land and sea to be used for viewing, discovery and general purpose applications where a land/marine boundary is required. Where there is not significant variation in water level, MSL can be used as a substitute for MHW */

+
+ + @@ -98787,7 +106397,219 @@

Spatial Object Type: MarineLayer

Value type:

+ +
-

TM_Period

+

TM_Period

+
+ + + + +

Constraint:

+ + + + + + + + + +
+

Name:

+
+

geometry should be a GM_Point or GM_Surface

+
+

Expression:

+
+

+/* A Marine Layer can be represented as either a surface or a point. The point type geometry reflects the reality that many Marine Layers are identified by point observations. */ +inv:self.geometry.oclIsKindOf(GM_Point) OR self.geometry.oclIsKindOf(GM_Surface)

+
+ + + + + + + +
+

Data type: ParameterValuePair

+ + + + + + + + + + + + + + - - - - - - - -
+

ParameterValuePair

+
+ + + + + + + +
+

Definition:

+

-- Name --

+

Parameter Value Pair

+

-- Definition --

+

A parameter value pair contains a value of some observed property. e.g. Annual Mean Sea Surface Temperature.

+
+

Type:

+

Data type

+
+
+

Attribute:

+ + + + + + + + + + + + + + + + + + + + + +
+

Name:

+
+

parameter

+
+

Definition:

+
+

-- Name --

+

parameter

+

+

-- Definition --

+

A definition of the observed parameter (e.g. mean temperature).

+
+

Voidable:

+
+

false

+
+

Multiplicity:

+
+

1

+
+

Value type:

+
+

AbstractObservableProperty

+
+
+

Attribute:

+ + + + + + + + + + + + + + + + + + + + + +
+

Name:

+
+

validTime

+
+

Definition:

+
+

-- Name --

+

valid time

+

+

-- Definition --

+

The time for which the attributed value is valid. This may be a time instant or a duration.

+
+

Voidable:

+
+

true

+
+

Multiplicity:

+
+

1

+
+

Value type:

+
+

TM_Object

+
+
+

Attribute:

+ + + + + + + + + + + + + + + + + + + +
+

Name:

+
+

value

+
+

Definition:

+
+

-- Name --

+

value

+

-- Definition --

+

the value of the observed parameter, e.g. 12 degrees Celsius.

+
+

Voidable:

+
+

false

+
+

Multiplicity:

+
+

1

+
+

Value type:

+
+

Measure

@@ -98800,11 +106622,11 @@

Spatial Object Type: MarineLayer

back to package: Sea Regions

-

-

Data type: ParameterValuePair

+

+

Spatial Object Type: Sea

@@ -98814,66 +106636,23 @@

Data type: ParameterValuePair

-

ParameterValuePair

+

Sea

- - - - -

Definition:

-- Name --

-

Parameter Value Pair

+

Sea

-- Definition --

-

A parameter value pair contains a value of some observed property. e.g. Annual Mean Sea Surface Temperature.

-
-

Type:

-

Data type

-
-
-

Attribute:

- - - - - - - - - - - - - -
-

Name:

-
-

parameter

-
-

Definition:

-
-

-- Name --

-

parameter

-

-

-- Definition --

-

A definition of the observed parameter (e.g. mean temperature).

-
-

Voidable:

-
-

false

+

Extent of sea at High Water (meanHighWater).

+

-- Description --

+

An area of sea, bounded by land and adjacent sea regions. May contain smaller scale sea regions. Has common large scale circulation patterns, in part defined by its land boundaries. High Water is taken to be mean high water. Applies to common names areas of sea, e.g. North Sea, Agean Sea etc. (Source: IHO S23 SeaRegion)

-

Multiplicity:

-
-

1

+

Subtype of:

+

SeaArea

-

Value type:

-
-

AbstractObservableProperty

+

Type:

+

Spatial Object Type

@@ -98888,7 +106667,7 @@

Data type: ParameterValuePair

Name:

@@ -98897,60 +106676,10 @@

Data type: ParameterValuePair

-

validTime

+

extent

- - - - - - - - - - - - - -

-- Name --

-

valid time

+

extent

-- Definition --

-

The time for which the attributed value is valid. This may be a time instant or a duration.

-
-

Voidable:

-
-

true

-
-

Multiplicity:

-
-

1

-
-

Value type:

-
-

TM_Object

-
-
-

Attribute:

- - - - - - - - @@ -98974,50 +106703,7 @@

Data type: ParameterValuePair

-

Name:

-
-

value

-
-

Definition:

-
-

-- Name --

-

value

-

-- Definition --

-

the value of the observed parameter, e.g. 12 degrees Celsius.

+

The extent of the Sea at Mean High Water

Value type:

- -
-

Measure

-
-
- - - - -
-

Spatial Object Type: Sea

- - - - - + + +
-

Sea

-
- - - - - - - - -
-

Definition:

-

-- Name --

-

Sea

-

-- Definition --

-

Extent of sea at High Water (meanHighWater).

-

-- Description --

-

An area of sea, bounded by land and adjacent sea regions. May contain smaller scale sea regions. Has common large scale circulation patterns, in part defined by its land boundaries. High Water is taken to be mean high water. Applies to common names areas of sea, e.g. North Sea, Agean Sea etc. (Source: IHO S23 SeaRegion)

-
-

Subtype of:

-

SeaArea

-
-

Type:

-

Spatial Object Type

+

MarineExtent (data type)

@@ -99025,50 +106711,30 @@

Spatial Object Type: Sea

+ + +
-

Attribute:

+

Constraint:

- - - - - - - -

Name:

-

extent

-
-

Definition:

-
-

-- Name --

-

extent

-

-

-- Definition --

-

The extent of the Sea at Mean High Water

-
-

Voidable:

-
-

false

+

extent.waterLevel must be meanHighWater

-

Multiplicity:

+

Description:

-

1

+

Sea is defined at Mean High Water. This constraint can be relaxed if there is not significant tidal variation in water level

-

Value type:

+

Expression:

-

MarineExtent (data type)

+

inv: self.extent.waterLevel = 'meanHighWater'

@@ -99671,6 +107337,31 @@

Spatial Object Type: SeaBedArea

+

Constraint:

+ + + + + + + + + +
+

Name:

+
+

geometry should be a GM_Point or GM_Surface

+
+

Expression:

+
+

+/* A Marine Layer can be represented as either a surface or a point. The point type geometry reflects the reality that many Marine Layers are identified by point observations. */ +inv:self.geometry.oclIsKindOf(GM_Point) OR self.geometry.oclIsKindOf(GM_Surface)

+
+
@@ -99795,6 +107486,31 @@

Spatial Object Type: SeaSurfaceArea

+

Constraint:

+ + + + + + + + + +
+

Name:

+
+

geometry should be a GM_Point or GM_Surface

+
+

Expression:

+
+

+/* A Marine Layer can be represented as either a surface or a point. The point type geometry reflects the reality that many Marine Layers are identified by point observations. */ +inv:self.geometry.oclIsKindOf(GM_Point) OR self.geometry.oclIsKindOf(GM_Surface)

+
+
@@ -100899,6 +108615,37 @@

Spatial Object Type: SewerPipe

+ + +

Constraint:

+ + + + + + + + + + + + + +
+

Name:

+
+

All utility link objects have inspireId

+
+

Description:

+
+

All utility link objects have an external object identifier.

+
+

Expression:

+
+

inv:inspireId->notEmpty()

+
+ + @@ -101108,6 +108855,78 @@

Spatial Object Type: DerivedSoilProfile

+ + +

Constraint:

+ + + + + + + + + +
+

Name:

+
+

FoI of soil profile observations

+
+

Expression:

+
+

/*To fill the featureOfInterest property of the soil profile observations of a SoilProfile object, that same SoilProfile object shall be used.*/ +inv: self.soilProfileObservation.featureOfInterest = self

+
+ + + + +

Constraint:

+ + + + + + + + + +
+

Name:

+
+

code list for soil profile observations

+
+

Expression:

+
+

/*The observedProperty of the soil profile observation shall be specified using a value from the SoilProfileParameterNameValue code list.*/ +inv: self.soilProfileParameter.observedProperty->oclIsKindOf(SoilProfileParameterNameValue)

+
+ + + + +

Constraint:

+ + + + + + + + + +
+

Name:

+
+

result of soil profile observations

+
+

Expression:

+
+

/*The result of the soil profile observation shall be of type Number, CharacterString or RangeType.*/ +inv: self.soilProfileObservation.result->oclIsKindOf(Number) or self.soilProfileObservation.result->oclIsKindOf(CharacterString) or self.soilProfileObservation.result->oclIsKindOf(RangeType)

+
+ + @@ -101675,6 +109494,78 @@

Spatial Object Type: ObservedSoilProfile

+ + +

Constraint:

+ + + + + + + + + +
+

Name:

+
+

FoI of soil profile observations

+
+

Expression:

+
+

/*To fill the featureOfInterest property of the soil profile observations of a SoilProfile object, that same SoilProfile object shall be used.*/ +inv: self.soilProfileObservation.featureOfInterest = self

+
+ + + + +

Constraint:

+ + + + + + + + + +
+

Name:

+
+

code list for soil profile observations

+
+

Expression:

+
+

/*The observedProperty of the soil profile observation shall be specified using a value from the SoilProfileParameterNameValue code list.*/ +inv: self.soilProfileParameter.observedProperty->oclIsKindOf(SoilProfileParameterNameValue)

+
+ + + + +

Constraint:

+ + + + + + + + + +
+

Name:

+
+

result of soil profile observations

+
+

Expression:

+
+

/*The result of the soil profile observation shall be of type Number, CharacterString or RangeType.*/ +inv: self.soilProfileObservation.result->oclIsKindOf(Number) or self.soilProfileObservation.result->oclIsKindOf(CharacterString) or self.soilProfileObservation.result->oclIsKindOf(RangeType)

+
+ + @@ -102609,6 +110500,78 @@

Spatial Object Type: ProfileElement

+ + +

Constraint:

+ + + + + + + + + +
+

Name:

+
+

FoI of profile element observations

+
+

Expression:

+
+

/*To fill the featureOfInterest property of the profile element observations of a ProfileElement object, that same ProfileElement object shall be used.*/ +inv: self.profileElementObservation.featureOfInterest = self

+
+ + + + +

Constraint:

+ + + + + + + + + +
+

Name:

+
+

code list for profile element observations

+
+

Expression:

+
+

/*The observedProperty of the profile element observation shall be specified using a value from the ProfileElementParameterNameValue code list.*/ +inv: self.profileElementParameter.observedProperty->oclIsKindOf(ProfileElementParameterNameValue)

+
+ + + + +

Constraint:

+ + + + + + + + + +
+

Name:

+
+

result of profile element observations

+
+

Expression:

+
+

/*The result of the profile element observation shall be of type Number, CharacterString or RangeType.*/ +inv: self.profileElementObservation.result->oclIsKindOf(Number) or self.profileElementObservation.result->oclIsKindOf(CharacterString) or self.profileElementObservation.result->oclIsKindOf(RangeType)

+
+ + @@ -102798,6 +110761,37 @@

Data type: RangeType

+ + +

Constraint:

+ + + + + + + + + + + + + +
+

Name:

+
+

intervalConstraint

+
+

Description:

+
+

at least one of the values shall not be empty

+
+

Expression:

+
+

inv: self.upperValue->notEmpty() or self.lowerValue->notEmpty()

+
+ + @@ -103345,7 +111339,107 @@

Spatial Object Type: SoilDerivedObject

Value type:

+ +
-

ObservedSoilProfile (spatial object type)

+

ObservedSoilProfile (spatial object type)

+
+ + + + +

Association role:

+ + + + + + + + + + + + + + + + + + + + + +
+

Name:

+
+

isBasedOnSoilBody

+
+

Definition:

+
+

-- Definition --

+

Link to a soil body on whose properties the derived value is based.

+

-- Description --

+

A soil derived object can be created based on the soil properties of one or more soil bodies. If this information shall not be included or does not apply, the association can be empty.

+
+

Voidable:

+
+

true

+
+

Multiplicity:

+
+

0..*

+
+

Value type:

+
+

SoilBody (spatial object type)

+
+ + + + +

Association role:

+ + + + + + + + + + + + + + + + + + + +
+

Name:

+
+

isBasedOnSoilDerivedObject

+
+

Definition:

+
+

-- Definition --

+

Link to a soil derived object on whose properties the derived value is based.

+

-- Description --

+

A soil derived object can be created based on the properties of one or more other soil derived objects. If this information shall not be included or does not apply, the association can be empty.

+
+

Voidable:

+
+

true

+
+

Multiplicity:

+
+

0..*

+
+

Value type:

+
+

SoilDerivedObject (spatial object type)

@@ -103360,7 +111454,7 @@

Spatial Object Type: SoilDerivedObject

Name:

@@ -103368,10 +111462,11 @@

Spatial Object Type: SoilDerivedObject

-

isBasedOnSoilBody

+

soilDerivedObjectObservation

Definition:

@@ -103387,7 +111482,7 @@

Spatial Object Type: SoilDerivedObject

+

-- Name --

+

soil derived object observation

+

-- Definition --

-

Link to a soil body on whose properties the derived value is based.

-

-- Description --

-

A soil derived object can be created based on the soil properties of one or more soil bodies. If this information shall not be included or does not apply, the association can be empty.

+

Observation of a soil property for characterizing the soil derived object.

Multiplicity:

@@ -103395,7 +111490,7 @@

Spatial Object Type: SoilDerivedObject

-

0..*

+

1..*

Value type:

-

SoilBody (spatial object type)

+

OM_Observation (spatial object type)

@@ -103403,49 +111498,23 @@

Spatial Object Type: SoilDerivedObject

+ + + + + + + + + + + +
-

Association role:

+

Constraint:

- - - - - - - - - - - -

Name:

-

isBasedOnSoilDerivedObject

-
-

Definition:

-
-

-- Definition --

-

Link to a soil derived object on whose properties the derived value is based.

-

-- Description --

-

A soil derived object can be created based on the properties of one or more other soil derived objects. If this information shall not be included or does not apply, the association can be empty.

-
-

Voidable:

-
-

true

+

FoI of Soil derived object observations

-

Multiplicity:

+

Expression:

-

0..*

-
-

Value type:

-
-

SoilDerivedObject (spatial object type)

+

/*To fill the featureOfInterest property of the soil derived object observation, the same SoilDerivedObject object shall be used.*/ +inv: self.soilDerivedObjectObservation.featureOfInterest = self

@@ -103453,50 +111522,47 @@

Spatial Object Type: SoilDerivedObject

+ + + + + + + + + + + +
-

Association role:

+

Constraint:

- - - - +

Name:

-

soilDerivedObjectObservation

+

code list for parameter of soil derived objects

-

Definition:

+

Expression:

-

-- Name --

-

soil derived object observation

-

-

-- Definition --

-

Observation of a soil property for characterizing the soil derived object.

-
-

Voidable:

-
-

true

+

/*The observedProperty of the soil derived object observation shall be specified using a value from the SoilDerivedObjectParameterNameValue code list.*/ +inv: self.soilDerivedObjectParameter.observedProperty->oclIsKindOf(SoilDerivedObjectParameterNameValue)

+
+

Constraint:

+
-

Multiplicity:

+

Name:

-

1..*

+

results of soil derived object observations

-

Value type:

+

Expression:

-

OM_Observation (spatial object type)

+

/*The result of the soil derived object observation shall be of type Number, CharacterString or RangeType.*/ +inv: self.soilDerivedObjectObservation.result->oclIsKindOf(Number) or self.soilDerivedObjectObservation.result->oclIsKindOf(CharacterString) or self.soilDerivedObjectObservation.result->oclIsKindOf(RangeType)

@@ -103662,6 +111728,78 @@

Spatial Object Type: SoilHorizon

+

Constraint:

+ + + + + + + + + +
+

Name:

+
+

FoI of profile element observations

+
+

Expression:

+
+

/*To fill the featureOfInterest property of the profile element observations of a ProfileElement object, that same ProfileElement object shall be used.*/ +inv: self.profileElementObservation.featureOfInterest = self

+
+
+

Constraint:

+ + + + + + + + + +
+

Name:

+
+

code list for profile element observations

+
+

Expression:

+
+

/*The observedProperty of the profile element observation shall be specified using a value from the ProfileElementParameterNameValue code list.*/ +inv: self.profileElementParameter.observedProperty->oclIsKindOf(ProfileElementParameterNameValue)

+
+
+

Constraint:

+ + + + + + + + + +
+

Name:

+
+

result of profile element observations

+
+

Expression:

+
+

/*The result of the profile element observation shall be of type Number, CharacterString or RangeType.*/ +inv: self.profileElementObservation.result->oclIsKindOf(Number) or self.profileElementObservation.result->oclIsKindOf(CharacterString) or self.profileElementObservation.result->oclIsKindOf(RangeType)

+
+
@@ -104099,6 +112237,103 @@

Spatial Object Type: SoilLayer

+

Constraint:

+ + + + + + + + + +
+

Name:

+
+

FoI of profile element observations

+
+

Expression:

+
+

/*To fill the featureOfInterest property of the profile element observations of a ProfileElement object, that same ProfileElement object shall be used.*/ +inv: self.profileElementObservation.featureOfInterest = self

+
+
+

Constraint:

+ + + + + + + + + +
+

Name:

+
+

code list for profile element observations

+
+

Expression:

+
+

/*The observedProperty of the profile element observation shall be specified using a value from the ProfileElementParameterNameValue code list.*/ +inv: self.profileElementParameter.observedProperty->oclIsKindOf(ProfileElementParameterNameValue)

+
+
+

Constraint:

+ + + + + + + + + +
+

Name:

+
+

geogenicConstraint

+
+

Expression:

+
+

/*The attributes layerGenesisProcess, layerGenesisEnvironment, layerGenesisProcessState and layerRockType are only needed when layerType is of the value 'geogenic'*/ + +inv: self.layerType = LayerTypeValue::geogenic implies (self.layerGenisisEnvironment.isNotEmpty() and self.layerGenisisProcess.isNotEmpty() and self.layerRockType.isNotEmpty() and layerGenesisProcessState.isNotEmpty())

+
+
+

Constraint:

+ + + + + + + + + +
+

Name:

+
+

result of profile element observations

+
+

Expression:

+
+

/*The result of the profile element observation shall be of type Number, CharacterString or RangeType.*/ +inv: self.profileElementObservation.result->oclIsKindOf(Number) or self.profileElementObservation.result->oclIsKindOf(CharacterString) or self.profileElementObservation.result->oclIsKindOf(RangeType)

+
+
@@ -105099,6 +113334,78 @@

Spatial Object Type: SoilProfile

+ + +

Constraint:

+ + + + + + + + + +
+

Name:

+
+

FoI of soil profile observations

+
+

Expression:

+
+

/*To fill the featureOfInterest property of the soil profile observations of a SoilProfile object, that same SoilProfile object shall be used.*/ +inv: self.soilProfileObservation.featureOfInterest = self

+
+ + + + +

Constraint:

+ + + + + + + + + +
+

Name:

+
+

code list for soil profile observations

+
+

Expression:

+
+

/*The observedProperty of the soil profile observation shall be specified using a value from the SoilProfileParameterNameValue code list.*/ +inv: self.soilProfileParameter.observedProperty->oclIsKindOf(SoilProfileParameterNameValue)

+
+ + + + +

Constraint:

+ + + + + + + + + +
+

Name:

+
+

result of soil profile observations

+
+

Expression:

+
+

/*The result of the soil profile observation shall be of type Number, CharacterString or RangeType.*/ +inv: self.soilProfileObservation.result->oclIsKindOf(Number) or self.soilProfileObservation.result->oclIsKindOf(CharacterString) or self.soilProfileObservation.result->oclIsKindOf(RangeType)

+
+ + @@ -105654,6 +113961,78 @@

Spatial Object Type: SoilSite

+ + +

Constraint:

+ + + + + + + + + +
+

Name:

+
+

FoI of soil site observations

+
+

Expression:

+
+

/*To fill the featureOfInterest property of the soil site observations of a SoilSite object, that same SoilSite object shall be used.*/ +inv: self.soilSiteObservation.featureOfInterest = self

+
+ + + + +

Constraint:

+ + + + + + + + + +
+

Name:

+
+

code list for soil site observations

+
+

Expression:

+
+

/*The observedProperty of the soil site observation shall be specified using a value from the SoilSiteParameterNameValue code list.*/ +inv: self.soilSiteParameter.observedProperty->oclIsKindOf(SoilSiteParameterNameValue)

+
+ + + + +

Constraint:

+ + + + + + + + + +
+

Name:

+
+

result of soil site observations

+
+

Expression:

+
+

/*The result of the soil site observation shall be of type Number, CharacterString or RangeType.*/ +inv: self.soilSiteObservation.result->oclIsKindOf(Number) or self.soilSiteObservation.result->oclIsKindOf(CharacterString) or self.soilSiteObservation.result->oclIsKindOf(RangeType)

+
+ + @@ -105954,7 +114333,309 @@

Spatial Object Type: SoilThemeCoverage

Value type:

+ +
-

SoilThemeParameterType (data type)

+

SoilThemeParameterType (data type)

+
+ + + + +

Attribute:

+ + + + + + + + + + + + + + + + + + + + + +
+

Name:

+
+

validTimeFrom

+
+

Definition:

+
+

-- Name --

+

valid time from

+

+

-- Definition --

+

The ValidTime specifies the time window for which measurements have been captured to calculate the thematic soil property relevant for that period. The start time defines when the period began.

+
+

Voidable:

+
+

true

+
+

Multiplicity:

+
+

1

+
+

Value type:

+
+

Date

+
+ + + + +

Attribute:

+ + + + + + + + + + + + + + + + + + + + + +
+

Name:

+
+

validTimeTo

+
+

Definition:

+
+

-- Name --

+

valid time to

+

+

-- Definition --

+

The ValidTime specifies the time window for which measurements have been captured to calculate the thematic soil property relevant for that period. The end time defines when the period stopped.

+
+

Voidable:

+
+

true

+
+

Multiplicity:

+
+

0..1

+
+

Value type:

+
+

Date

+
+ + + + +

Constraint:

+ + + + + + + + + + + + + +
+

Name:

+
+

domainIsRectifiedGrid

+
+

Description:

+
+

The domain shall be a rectified grid.

+
+

Expression:

+
+

inv: domainSet.oclIsKindOf(CV_RectifiedGrid)

+
+ + + + +

Constraint:

+ + + + + + + + + +
+

Name:

+
+

grid points shall coincide with grid cell centres

+
+

Expression:

+
+

/*Grid points of a RectifiedGridCoverage shall coincide with the centres of cells of the geographical grids defined in Section 2.2 of Annex II at any resolution level.*/

+
+ + + + +

Constraint:

+ + + + + + + + + +
+

Name:

+
+

gridFunctionRequiresGridDomain

+
+

Expression:

+
+

/*The grid function shall only be valid for domains that are grids */ +inv: coverageFunction.gridFunction.notEmpty() implies domainSet.oclIsKindOf(CV_Grid)

+
+ + + + +

Constraint:

+ + + + + + + + + +
+

Name:

+
+

rangeSetValuesConstraint

+
+

Expression:

+
+

/*rangeSet values shall be of type Number, CharacterString or RangeType.*/ +inv: rangeSet->oclIsKindOf(Number) or rangeSet->oclIsKindOf(Characterstring) or rangeSet->oclIsKindOf(RangeType)

+
+ + + + + + + +
+

Spatial Object Type: SoilThemeDescriptiveCoverage

+ + + + + + + + - -
+

SoilThemeDescriptiveCoverage

+
+ + + + + + + + + + +
+

Definition:

+

-- Name --

+

soil theme descriptive coverage

+

+

-- Definition --

+

a spatial object type that is associated to the soil theme coverage and holds additional information on values of a property of the soil theme coverage.

+

+

-- Description --

+

This coverage can only exist in relation to a base coverage SoilThemeCoverage, it has the same domain and spatial extent as the base coverage. And it gives extra information on the values of the base coverages

+

SOURCE Adapted from "Coverage" [ISO 19123:2005].

+

EXAMPLE coverage indicating the confidence level of the pH values reported in the associated SoilThemeCoverage.

+
+

Subtype of:

+

RectifiedGridCoverage

+
+

Type:

+

Spatial Object Type

+
+
+

Attribute:

+ + + + + + + + + + + + + + + + + + + +
+

Name:

+
+

beginLifespanVersion

+
+

Definition:

+
+

-- Name --

+

begin life span version

+

+

-- Definition --

+

Date and time at which this version of the spatial object was inserted or changed in the spatial data set.

+
+

Voidable:

+
+

false

+
+

Multiplicity:

+
+

1

+
+

Value type:

+
+

DateTime

@@ -105969,7 +114650,7 @@

Spatial Object Type: SoilThemeCoverage

Name:

@@ -105978,10 +114659,13 @@

Spatial Object Type: SoilThemeCoverage

-

validTimeFrom

+

domainExtent

@@ -105989,7 +114673,7 @@

Spatial Object Type: SoilThemeCoverage

-- Name --

-

valid time from

+

Domain extent.

-- Definition --

-

The ValidTime specifies the time window for which measurements have been captured to calculate the thematic soil property relevant for that period. The start time defines when the period began.

+

The attribute domainExtent shall contain the extent of the spatiotemporal domain of the coverage. The data type EX_Extent, is defined in ISO 19103. Extents may be specified in both space and time.

+

+

-- Description --

+

SOURCE Adapted from [ISO 19123:2005].

Voidable:

@@ -105997,7 +114681,7 @@

Spatial Object Type: SoilThemeCoverage

-

true

+

false

Multiplicity:

@@ -106005,7 +114689,7 @@

Spatial Object Type: SoilThemeCoverage

-

1

+

1..*

Value type:

-

Date

+

EX_Extent

@@ -106020,7 +114704,7 @@

Spatial Object Type: SoilThemeCoverage

Name:

@@ -106029,10 +114713,10 @@

Spatial Object Type: SoilThemeCoverage

-

validTimeTo

+

endLifespanVersion

@@ -106040,7 +114724,7 @@

Spatial Object Type: SoilThemeCoverage

-- Name --

-

valid time to

+

end life span version

-- Definition --

-

The ValidTime specifies the time window for which measurements have been captured to calculate the thematic soil property relevant for that period. The end time defines when the period stopped.

+

Date and time at which this version of the spatial object was superseded or retired in the spatial data set.

Voidable:

@@ -106056,54 +114740,7 @@

Spatial Object Type: SoilThemeCoverage

-

true

+

false

Value type:

- -
-

Date

-
-
- - - - -
-

Spatial Object Type: SoilThemeDescriptiveCoverage

- - - - - + + + + + +
-

SoilThemeDescriptiveCoverage

-
- - - - - - - - -
-

Definition:

-

-- Name --

-

soil theme descriptive coverage

-

-

-- Definition --

-

a spatial object type that is associated to the soil theme coverage and holds additional information on values of a property of the soil theme coverage.

-

-

-- Description --

-

This coverage can only exist in relation to a base coverage SoilThemeCoverage, it has the same domain and spatial extent as the base coverage. And it gives extra information on the values of the base coverages

-

SOURCE Adapted from "Coverage" [ISO 19123:2005].

-

EXAMPLE coverage indicating the confidence level of the pH values reported in the associated SoilThemeCoverage.

-
-

Subtype of:

-

RectifiedGridCoverage

-
-

Type:

-

Spatial Object Type

+

DateTime

@@ -106111,14 +114748,14 @@

Spatial Object Type: SoilThemeDescriptiveCoverage

-

Attribute:

+

Association role:

@@ -106126,11 +114763,11 @@

Spatial Object Type: SoilThemeDescriptiveCoverage

Name:

-

beginLifespanVersion

+

isDescribing

Definition:

@@ -106138,7 +114775,7 @@

Spatial Object Type: SoilThemeDescriptiveCoverage

-

-- Name --

-

begin life span version

-

-- Definition --

-

Date and time at which this version of the spatial object was inserted or changed in the spatial data set.

+

this association allows for a certain SoilThemeCoverage to have a related Coverage which does not have a meaning without the base coverage.

+

+

-- Description --

+

EXAMPLE a coverage of the pH of the topsoil is associated with a coverage with exactly the same extent and domain reporting on the level of confidence of the pH values of the base coverage.

Voidable:

@@ -106154,7 +114791,7 @@

Spatial Object Type: SoilThemeDescriptiveCoverage

-

false

+

true

Value type:

-

DateTime

+

SoilThemeCoverage (spatial object type)

@@ -106169,7 +114806,7 @@

Spatial Object Type: SoilThemeDescriptiveCoverage

Name:

@@ -106178,13 +114815,13 @@

Spatial Object Type: SoilThemeDescriptiveCoverage

-

domainExtent

+

soilThemeDescriptiveParameter

-- Name --

-

Domain extent.

+

soil theme descriptive parameter

-- Definition --

-

The attribute domainExtent shall contain the extent of the spatiotemporal domain of the coverage. The data type EX_Extent, is defined in ISO 19103. Extents may be specified in both space and time.

+

a descriptive property for the soil-related property (soil theme) that is represented by its associated SoilThemeCoverage.

-- Description --

-

SOURCE Adapted from [ISO 19123:2005].

+

EXAMPLE confidence level for each value in the SoilThemeCoverage (pH in the topsoil)

@@ -106200,7 +114837,7 @@

Spatial Object Type: SoilThemeDescriptiveCoverage

Multiplicity:

@@ -106208,7 +114845,7 @@

Spatial Object Type: SoilThemeDescriptiveCoverage

-

1..*

+

1

Value type:

-

EX_Extent

+

SoilThemeDescriptiveParameterType (data type)

@@ -106216,50 +114853,30 @@

Spatial Object Type: SoilThemeDescriptiveCoverage

-

Attribute:

+

Constraint:

- - - - - - - -

Name:

-

endLifespanVersion

-
-

Definition:

-
-

-- Name --

-

end life span version

-

-

-- Definition --

-

Date and time at which this version of the spatial object was superseded or retired in the spatial data set.

+

domainIsRectifiedGrid

-

Voidable:

+

Description:

-

false

+

The domain shall be a rectified grid.

-

Multiplicity:

+

Expression:

-

0..1

-
-

Value type:

-
-

DateTime

+

inv: domainSet.oclIsKindOf(CV_RectifiedGrid)

@@ -106267,50 +114884,22 @@

Spatial Object Type: SoilThemeDescriptiveCoverage

-

Association role:

+

Constraint:

- - - - - - - - - - - -

Name:

-

isDescribing

+

grid points shall coincide with grid cell centres

-

Definition:

+

Expression:

-

-- Definition --

-

this association allows for a certain SoilThemeCoverage to have a related Coverage which does not have a meaning without the base coverage.

-

-

-- Description --

-

EXAMPLE a coverage of the pH of the topsoil is associated with a coverage with exactly the same extent and domain reporting on the level of confidence of the pH values of the base coverage.

-
-

Voidable:

-
-

true

-
-

Multiplicity:

-
-

1

-
-

Value type:

-
-

SoilThemeCoverage (spatial object type)

+

/*Grid points of a RectifiedGridCoverage shall coincide with the centres of cells of the geographical grids defined in Section 2.2 of Annex II at any resolution level.*/

@@ -106318,53 +114907,47 @@

Spatial Object Type: SoilThemeDescriptiveCoverage

-

Attribute:

+

Constraint:

- - - - +

Name:

-

soilThemeDescriptiveParameter

-
-

Definition:

-
-

-- Name --

-

soil theme descriptive parameter

-

-

-- Definition --

-

a descriptive property for the soil-related property (soil theme) that is represented by its associated SoilThemeCoverage.

-

-

-- Description --

-

EXAMPLE confidence level for each value in the SoilThemeCoverage (pH in the topsoil)

+

gridFunctionRequiresGridDomain

-

Voidable:

+

Expression:

-

false

+

/*The grid function shall only be valid for domains that are grids */ +inv: coverageFunction.gridFunction.notEmpty() implies domainSet.oclIsKindOf(CV_Grid)

+
+

Constraint:

+
-

Multiplicity:

+

Name:

-

1

+

rangeSetValuesConstraint

-

Value type:

+

Expression:

-

SoilThemeDescriptiveParameterType (data type)

+

/*rangeSet values shall be of type Number, CharacterString or RangeType.*/ +inv: rangeSet->oclIsKindOf(Number) or rangeSet->oclIsKindOf(Characterstring) or rangeSet->oclIsKindOf(RangeType)

@@ -109300,6 +117883,30 @@

Spatial Object Type: SpeciesDistributionUnit

+

Constraint:

+ + + + + + + + + +
+

Name:

+
+

noGeometry

+
+

Expression:

+
+

/* If geometry has no value, a reference to a spatial object needs to be provided. */ +inv: self.geometry->isEmpty() implies self.spatialObject->notEmpty()

+
+
@@ -110673,6 +119280,29 @@

Spatial Object Type: StatisticalGrid

+ + +

Constraint:

+ + + + + + + + + +
+

Name:

+
+

resolutionTypeConstraint

+
+

Expression:

+
+

/* If the coordinate reference system is a projected one, the resolution shall be a length. Otherwise, it shall be an angle. */

+
+ + @@ -110830,7 +119460,58 @@

Spatial Object Type: StatisticalGridCell

Value type:

+ +
-

DirectPosition

+

DirectPosition

+
+ + + + +

Attribute:

+ + + + + + + + + + + + + + + + + + + +
+

Name:

+
+

geometry

+
+

Definition:

+
+

-- Name --

+

Geometry

+

+

-- Definition --

+

The grid cell geometry.

+
+

Voidable:

+
+

true

+
+

Multiplicity:

+
+

1

+
+

Value type:

+
+

GM_Polygon

@@ -110838,14 +119519,14 @@

Spatial Object Type: StatisticalGridCell

+ + +
-

Attribute:

+

Association role:

@@ -110853,11 +119534,8 @@

Spatial Object Type: StatisticalGridCell

Name:

-

geometry

+

grid

Definition:

@@ -110865,7 +119543,7 @@

Spatial Object Type: StatisticalGridCell

-

-- Name --

-

Geometry

-

-- Definition --

-

The grid cell geometry.

+

The grid made up of cells.

Voidable:

@@ -110881,7 +119559,7 @@

Spatial Object Type: StatisticalGridCell

-

true

+

false

Value type:

-

GM_Polygon

+

StatisticalGrid (spatial object type)

@@ -110889,14 +119567,14 @@

Spatial Object Type: StatisticalGridCell

+ + + + + +
-

Association role:

+

Attribute:

@@ -110904,8 +119582,11 @@

Spatial Object Type: StatisticalGridCell

Name:

-

grid

+

gridPosition

Definition:

@@ -110913,7 +119594,7 @@

Spatial Object Type: StatisticalGridCell

+

-- Name --

+

Grid position

+

-- Definition --

-

The grid made up of cells.

+

The grid cell position within the grid based on the grid coordinates.

Voidable:

@@ -110921,7 +119602,7 @@

Spatial Object Type: StatisticalGridCell

-

false

+

true

Multiplicity:

@@ -110929,7 +119610,7 @@

Spatial Object Type: StatisticalGridCell

-

1

+

0..1

Value type:

-

StatisticalGrid (spatial object type)

+

GridPosition (data type)

@@ -110937,14 +119618,14 @@

Spatial Object Type: StatisticalGridCell

+ + + + + + + + + + + + + + + + + +
-

Attribute:

+

Association role:

@@ -110952,11 +119633,8 @@

Spatial Object Type: StatisticalGridCell

Name:

-

gridPosition

+

lowers

Definition:

@@ -110972,15 +119650,7 @@

Spatial Object Type: StatisticalGridCell

-

-- Name --

-

Grid position

-

-- Definition --

-

The grid cell position within the grid based on the grid coordinates.

+

The immediately lower statistical grid cells.

Multiplicity:

- - - -
-

0..1

-
-

Value type:

-
-

GridPosition (data type)

+

0..*

@@ -110995,7 +119665,7 @@

Spatial Object Type: StatisticalGridCell

Name:

@@ -111004,7 +119674,7 @@

Spatial Object Type: StatisticalGridCell

-

lowers

+

upper

@@ -111020,7 +119690,15 @@

Spatial Object Type: StatisticalGridCell

-- Definition --

-

The immediately lower statistical grid cells.

+

The immediately upper statistical grid cell.

Multiplicity:

+ + + +
-

0..*

+

0..1

+
+

Value type:

+
+

StatisticalGridCell (spatial object type)

@@ -111028,47 +119706,98 @@

Spatial Object Type: StatisticalGridCell

+ + + + + + + + + + + + + + +
-

Association role:

+

Constraint:

+

Name:

-

upper

+

cellCodeConstraint

-

Definition:

+

Expression:

-

-- Definition --

-

The immediately upper statistical grid cell.

+

/* +The code shall be composed of: +(1) A coordinate reference system part, represented by the word CRS, followed by the EPSG code. +(2) A resolution and position part: +– If the coordinate reference system is projected, the word RES followed by the grid resolution in meters and the letter m. Then, the letter N followed by the northing value in meters, and the letter E followed by the easting value in meters. +– If the coordinate reference system is not projected, the word RES followed by the grid resolution in degree-minute-second, followed by the word dms. Then the word LON followed by the longitude value in degree-minute-second, and word LAT followed by the latitude value in degree-minute-second. +For both cases, the given position shall be the position of the lower left cell corner. +*/

+
+

Constraint:

+ +
-

Voidable:

+

Name:

-

true

+

gridPositionRangeConstraint

-

Multiplicity:

+

Expression:

-

0..1

+

/* The cell position should be within the grid, according to its width and height */

+
+

Constraint:

+ + + + + + +
-

Value type:

+

Name:

-

StatisticalGridCell (spatial object type)

+

spatialRepresentationConstraint

+
+

Expression:

+
+

/* At least one of the attributes code, geographicalPosition, gridPosition or geometry shall be provided */

+
+
+

Constraint:

+ + + + + + + +
+

Name:

+
+

spatialRepresentationsConsistencyConstraint

+
+

Expression:

+
+

/* Where several spatial representations are provided (code, geographicalPosition, gridPosition and geometry), they shall be consistent */

@@ -111715,6 +120444,52 @@

Spatial Object Type: AreaStatisticalUnit

+

Constraint:

+ + + + + + + + + +
+

Name:

+
+

AreaStatisticalUnitsConstraint

+
+

Expression:

+
+

/* Vector statistical units with a reference geometry instance of GM_MultiSurface must be instances of the specialised class AreaStatisticalUnit. */

+
+
+

Constraint:

+ + + + + + + + + +
+

Name:

+
+

AreaStatisticalUnitsGeometryConstraint

+
+

Expression:

+
+

/* The reference geometry of an area statistical units should be a GM_MultiSurface. */

+
+
@@ -112128,6 +120903,144 @@

Spatial Object Type: Evolution

+

Constraint:

+ + + + + + + + + +
+

Name:

+
+

AggregationConstraint

+
+

Expression:

+
+

/* An evolution with a typeValue "aggregation" shall have at least two initial unit versions (the units to be aggregated) and a single final one (the resulting aggregation). */

+
+
+

Constraint:

+ + + + + + + + + +
+

Name:

+
+

ChangeConstraint

+
+

Expression:

+
+

/* An evolution with a typeValue "change" shall have one initial unit version and one final one. */

+
+
+

Constraint:

+ + + + + + + + + +
+

Name:

+
+

ConsistencyConstraint

+
+

Expression:

+
+

/* Evolution representations shall be consistent with the versions of the concerned objects. */

+
+
+

Constraint:

+ + + + + + + + + +
+

Name:

+
+

CreationConstraint

+
+

Expression:

+
+

/* An evolution with a typeValue "creation" shall not have any initial unit versions and only one final one. */

+
+
+

Constraint:

+ + + + + + + + + +
+

Name:

+
+

DeletionConstraint

+
+

Expression:

+
+

/* An evolution with a typeValue "deletion" shall have one initial unit version and no final one. */

+
+
+

Constraint:

+ + + + + + + + + +
+

Name:

+
+

SplittingConstraint

+
+

Expression:

+
+

/* An evolution with a typeValue "splitting" shall have a single initial unit version (the unit to split), and at least two final ones (the units resulting from the splitting). */

+
+
@@ -112346,6 +121259,52 @@

Data type: GeometryDescriptor

+

Constraint:

+ + + + + + + + + +
+

Name:

+
+

GeneralisedGeometryConstraint

+
+

Expression:

+
+

/* The mostDetailedScale and leastDetailedScale fields shall be provided only for geometry descriptors with a type generalisedGeometry */

+
+
+

Constraint:

+ + + + + + + + + +
+

Name:

+
+

ScaleRelationConstraint

+
+

Expression:

+
+

/* If provided, mostDetailedScale shall be smaller than leastDetailedScale */

+
+
@@ -113167,6 +122126,29 @@

Spatial Object Type: VectorStatisticalUnit

+

Constraint:

+ + + + + + + + + +
+

Name:

+
+

AreaStatisticalUnitsConstraint

+
+

Expression:

+
+

/* Vector statistical units with a reference geometry instance of GM_MultiSurface must be instances of the specialised class AreaStatisticalUnit. */

+
+
@@ -113508,6 +122490,52 @@

Spatial Object Type: TelecommunicationsCable

+ + +

Constraint:

+ + + + + +
+

Name:

+
+

"TelecommunicationsCable" is not in IR

+
+ + + + +

Constraint:

+ + + + + + + + + + + + + +
+

Name:

+
+

All utility link objects have inspireId

+
+

Description:

+
+

All utility link objects have an external object identifier.

+
+

Expression:

+
+

inv:inspireId->notEmpty()

+
+ + @@ -113650,6 +122678,37 @@

Spatial Object Type: ThermalPipe

+ + +

Constraint:

+ + + + + + + + + + + + + +
+

Name:

+
+

All utility link objects have inspireId

+
+

Description:

+
+

All utility link objects have an external object identifier.

+
+

Expression:

+
+

inv:inspireId->notEmpty()

+
+ + @@ -113703,6 +122762,95 @@

Spatial Object Type: ProfileObservation

+ + +

Constraint:

+ + + + + + + + + +
+

Name:

+
+

featureOfInterest must be a SF_SamplingCurve

+
+

Expression:

+
+

/* featureOfInterest must be a SF_SamplingCurve */ +inv: self.featureOfInterest->forAll(oclIsKindOf(SF_SamplingCurvet))

+
+ + + + +

Constraint:

+ + + + + + + + + +
+

Name:

+
+

phenomenonTime must be a TM_Instant

+
+

Expression:

+
+

/*phenomenonTime must be a TM_Instant */ +inv: self.phenomenonTime.oclIsKindOf(TM_Instant)

+
+ + + + +

Constraint:

+ + + + + + + + + +
+

Name:

+
+

result must be a ReferenceableGridCoverage or RectifiedGridCoverage

+
+

Expression:

+
+

/*result must be a ReferenceableGridCoverage or a RectifiedGridCoverage */ +inv: self.result.oclIsKindOf(ReferenceableGridCoverage) +OR +inv: self.result.oclIsKindOf(RectifiedGridCoverage)

+
+ + + + +

Constraint:

+ + + + + +
+

Name:

+
+

spatial domain of the result shall contain one axis and that shall be vertical

+
+ + @@ -113829,6 +122977,102 @@

Spatial Object Type: TrajectoryObservation

+ + +

Constraint:

+ + + + + + + + + +
+

Name:

+
+

featureOfInterest must be a SF_SamplingCurve

+
+

Expression:

+
+

/*featureOfInterest must be a SF_SamplingPoint*/ +inv: self.featureOfInterest->forAll(oclIsKindOf(SF_SamplingPoint))

+
+ + + + +

Constraint:

+ + + + + + + + + +
+

Name:

+
+

phenomenonTime must be a TM_Period

+
+

Expression:

+
+

/* phenomenonTime must be a TM_Period */ +inv: self.phenomenonTime.oclIsKindOf(TM_Period)

+
+ + + + +

Constraint:

+ + + + + + + + + +
+

Name:

+
+

result must be a TimeSeries

+
+

Expression:

+
+

/* result must be a Timeseries */ +inv: self.result.oclIsKindOf(TimeSeries)

+
+ + + + +

Constraint:

+ + + + + + + + + +
+

Name:

+
+

result.point must be TimeLocationValueTriple

+
+

Expression:

+
+

/* each point in the result must be a TimeLocationValueTriple */ +inv: self.result.point.oclIsKindOf(TimeLocationValueTriple)

+
+ + @@ -114028,6 +123272,37 @@

Spatial Object Type: WaterPipe

+ + +

Constraint:

+ + + + + + + + + + + + + +
+

Name:

+
+

All utility link objects have inspireId

+
+

Description:

+
+

All utility link objects have an external object identifier.

+
+

Expression:

+
+

inv:inspireId->notEmpty()

+
+ + @@ -114087,6 +123362,37 @@

Spatial Object Type: Beacon

+ + +

Constraint:

+ + + + + + + + + + + + + +
+

Name:

+
+

All objects have inspireId

+
+

Description:

+
+

All transport points have an external object identfier.

+
+

Expression:

+
+

inv:inspireId->notEmpty()

+
+ + @@ -114131,6 +123437,37 @@

Spatial Object Type: Buoy

+ + +

Constraint:

+ + + + + + + + + + + + + +
+

Name:

+
+

All objects have inspireId

+
+

Description:

+
+

All transport points have an external object identfier.

+
+

Expression:

+
+

inv:inspireId->notEmpty()

+
+ + @@ -114317,6 +123654,61 @@

Spatial Object Type: CEMTClass

+ + +

Constraint:

+ + + + + + + + + + + + + +
+

Name:

+
+

All objects have inspireId

+
+

Description:

+
+

All transport properties have an external object identifier.

+
+

Expression:

+
+

inv:inspireId->notEmpty()

+
+ + + + +

Constraint:

+ + + + + + + + + +
+

Name:

+
+

Applies to InlandWaterway only

+
+

Expression:

+
+

/* This property can only be associated with a spatial object that is part of a water transport network. */ +inv: networkRef.element.oclIsKindOf(InlandWaterway)

+
+ + @@ -114356,6 +123748,61 @@

Spatial Object Type: ConditionOfWaterFacility

+ + + + + +
+

Constraint:

+ + + + + + + + + + + + + +
+

Name:

+
+

All objects have inspireId

+
+

Description:

+
+

All transport properties have an external object identifier.

+
+

Expression:

+
+

inv:inspireId->notEmpty()

+
+
+

Constraint:

+ + + + + + + + + +
+

Name:

+
+

Applies to PortNode and PortArea only

+
+

Expression:

+
+

/* This property can only be associated with a spatial object that is part of a water transport network. */ +inv: networkRef.element.oclIsKindOf(PortArea) or networkRef.element.oclIsKindOf(PortNode)

+
+
@@ -114400,6 +123847,37 @@

Spatial Object Type: FairwayArea

+ + +

Constraint:

+ + + + + + + + + + + + + +
+

Name:

+
+

All objects have inspireId

+
+

Description:

+
+

All transport areas have an external object identifier.

+
+

Expression:

+
+

inv:inspireId->notEmpty()

+
+ + @@ -114439,6 +123917,68 @@

Spatial Object Type: FerryCrossing

+ + +

Constraint:

+ + + + + + + + + + + + + +
+

Name:

+
+

All components belong to same transport network

+
+

Description:

+
+

A transport link set must be composed of transport links and or transport link sequences that all belong to the same transport network.

+
+

Expression:

+
+

inv: link->forAll(l | l.inNetwork = self.inNetwork)

+
+ + + + +

Constraint:

+ + + + + + + + + + + + + +
+

Name:

+
+

All objects have inspireId

+
+

Description:

+
+

All transport link sets have an external object identifier.

+
+

Expression:

+
+

inv:inspireId->notEmpty()

+
+ + @@ -114580,6 +124120,61 @@

Spatial Object Type: FerryUse

+ + +

Constraint:

+ + + + + + + + + + + + + +
+

Name:

+
+

All objects have inspireId

+
+

Description:

+
+

All transport properties have an external object identifier.

+
+

Expression:

+
+

inv:inspireId->notEmpty()

+
+ + + + +

Constraint:

+ + + + + + + + + +
+

Name:

+
+

Applies to FerryCrossing only

+
+

Expression:

+
+

/* This property can only be associated with a spatial object that is part of a water transport network. */ +inv: networkRef.element.oclIsKindOf(FerryCrossing)

+
+ + @@ -114622,6 +124217,68 @@

Spatial Object Type: InlandWaterway

+ + +

Constraint:

+ + + + + + + + + + + + + +
+

Name:

+
+

All components belong to same transport network

+
+

Description:

+
+

A transport link set must be composed of transport links and or transport link sequences that all belong to the same transport network.

+
+

Expression:

+
+

inv: link->forAll(l | l.inNetwork = self.inNetwork)

+
+ + + + +

Constraint:

+ + + + + + + + + + + + + +
+

Name:

+
+

All objects have inspireId

+
+

Description:

+
+

All transport link sets have an external object identifier.

+
+

Expression:

+
+

inv:inspireId->notEmpty()

+
+ + @@ -114711,6 +124368,68 @@

Spatial Object Type: MarineWaterway

+ + +

Constraint:

+ + + + + + + + + + + + + +
+

Name:

+
+

All components belong to same transport network

+
+

Description:

+
+

A transport link set must be composed of transport links and or transport link sequences that all belong to the same transport network.

+
+

Expression:

+
+

inv: link->forAll(l | l.inNetwork = self.inNetwork)

+
+ + + + +

Constraint:

+ + + + + + + + + + + + + +
+

Name:

+
+

All objects have inspireId

+
+

Description:

+
+

All transport link sets have an external object identifier.

+
+

Expression:

+
+

inv:inspireId->notEmpty()

+
+ + @@ -114750,6 +124469,37 @@

Spatial Object Type: PortArea

+ + +

Constraint:

+ + + + + + + + + + + + + +
+

Name:

+
+

All objects have inspireId

+
+

Description:

+
+

All transport areas have an external object identifier.

+
+

Expression:

+
+

inv:inspireId->notEmpty()

+
+ + @@ -114792,6 +124542,37 @@

Spatial Object Type: PortNode

+ + +

Constraint:

+ + + + + + + + + + + + + +
+

Name:

+
+

All objects have inspireId

+
+

Description:

+
+

All transport nodes have an external object identifier.

+
+

Expression:

+
+

inv:inspireId->notEmpty()

+
+ + @@ -114831,6 +124612,62 @@

Spatial Object Type: RestrictionForWaterVehicles

+

Constraint:

+
+ + + + + + + + + + + + +
+

Name:

+
+

All objects have inspireId

+
+

Description:

+
+

All transport properties have an external object identifier.

+
+

Expression:

+
+

inv:inspireId->notEmpty()

+
+ + + + +

Constraint:

+ + + + + + + + + +
+

Name:

+
+

Applies to WaterwayLink and WaterwayNode only

+
+

Expression:

+
+

/* This property can only be associated with a spatial object that is part of a water transport network. */ +inv: networkRef.element.oclIsKindOf(WaterwayLink) or +networkRef.element.oclIsKindOf(WaterwayNode)

+
+ + @@ -115099,6 +124936,37 @@

Spatial Object Type: TrafficSeparationSchemeArea

+

Constraint:

+
+ + + + + + + + + + + + +
+

Name:

+
+

All objects have inspireId

+
+

Description:

+
+

All transport areas have an external object identifier.

+
+

Expression:

+
+

inv:inspireId->notEmpty()

+
+ + @@ -115141,6 +125009,37 @@

Spatial Object Type: TrafficSeparationSchemeCrossing

+

Constraint:

+
+ + + + + + + + + + + + +
+

Name:

+
+

All objects have inspireId

+
+

Description:

+
+

All transport areas have an external object identifier.

+
+

Expression:

+
+

inv:inspireId->notEmpty()

+
+ + @@ -115183,6 +125082,37 @@

Spatial Object Type: TrafficSeparationSchemeLane

+

Constraint:

+
+ + + + + + + + + + + + +
+

Name:

+
+

All objects have inspireId

+
+

Description:

+
+

All transport areas have an external object identifier.

+
+

Expression:

+
+

inv:inspireId->notEmpty()

+
+ + @@ -115225,6 +125155,37 @@

Spatial Object Type: TrafficSeparationSchemeRoundabout

+ + +
+

Constraint:

+ + + + + + + + + + + + + +
+

Name:

+
+

All objects have inspireId

+
+

Description:

+
+

All transport areas have an external object identifier.

+
+

Expression:

+
+

inv:inspireId->notEmpty()

+
+
@@ -115267,6 +125228,37 @@

Spatial Object Type: TrafficSeparationSchemeSeparator

+

Constraint:

+
+ + + + + + + + + + + + +
+

Name:

+
+

All objects have inspireId

+
+

Description:

+
+

All transport areas have an external object identifier.

+
+

Expression:

+
+

inv:inspireId->notEmpty()

+
+ + @@ -115309,6 +125301,68 @@

Spatial Object Type: WaterLinkSequence

+ + +

Constraint:

+ + + + + + + + + + + + + +
+

Name:

+
+

All components belong to same transport network

+
+

Description:

+
+

A transport link sequence must be composed of transport links that all belong to the same transport network.

+
+

Expression:

+
+

inv: link->forAll(l | l.link.inNetwork = self.inNetwork)

+
+ + + + +

Constraint:

+ + + + + + + + + + + + + +
+

Name:

+
+

All objects have inspireId

+
+

Description:

+
+

All transport link sequences have an external object identifier.

+
+

Expression:

+
+

inv: inspireId->notEmpty()

+
+ + @@ -115364,6 +125418,37 @@

Spatial Object Type: WaterNode

+ + +

Constraint:

+ + + + + + + + + + + + + +
+

Name:

+
+

All objects have inspireId

+
+

Description:

+
+

All transport nodes have an external object identifier.

+
+

Expression:

+
+

inv:inspireId->notEmpty()

+
+ + @@ -115403,6 +125488,86 @@

Spatial Object Type: WaterTrafficFlowDirection

+

Constraint:

+
+ + + + + + + + + + + + +
+

Name:

+
+

All objects have inspireId

+
+

Description:

+
+

All transport properties have an external object identifier.

+
+

Expression:

+
+

inv:inspireId->notEmpty()

+
+ + + + +

Constraint:

+ + + + + + + + + +
+

Name:

+
+

Applies to Link and LinkSequence only

+
+

Expression:

+
+

/* This property can only be associated with a spatial object of the type Link or LinkSequence. */ +inv: networkRef.element.oclIsKindOf(LinkReference)

+
+ + + + +

Constraint:

+ + + + + + + + + +
+

Name:

+
+

Applies to WaterwayLink and WaterLinkSequence only

+
+

Expression:

+
+

/* This property can only be associated with a spatial object that is part of a water transport network. */ +inv: networkRef.element.oclIsKindOf(WaterLinkSequence) or +networkRef.element.oclIsKindOf(WaterwayLink)

+
+ + @@ -115456,6 +125621,68 @@

Spatial Object Type: Waterway

+ + +

Constraint:

+ + + + + + + + + + + + + +
+

Name:

+
+

All components belong to same transport network

+
+

Description:

+
+

A transport link set must be composed of transport links and or transport link sequences that all belong to the same transport network.

+
+

Expression:

+
+

inv: link->forAll(l | l.inNetwork = self.inNetwork)

+
+ + + + +

Constraint:

+ + + + + + + + + + + + + +
+

Name:

+
+

All objects have inspireId

+
+

Description:

+
+

All transport link sets have an external object identifier.

+
+

Expression:

+
+

inv:inspireId->notEmpty()

+
+ + @@ -115498,6 +125725,37 @@

Spatial Object Type: WaterwayLink

+ + +

Constraint:

+ + + + + + + + + + + + + +
+

Name:

+
+

All objects have inspireId

+
+

Description:

+
+

All transport links have an external object identifier.

+
+

Expression:

+
+

inv:inspireId->notEmpty()

+
+ + @@ -115659,6 +125917,37 @@

Spatial Object Type: WaterwayNode

+ + +

Constraint:

+ + + + + + + + + + + + + +
+

Name:

+
+

All objects have inspireId

+
+

Description:

+
+

All transport nodes have an external object identifier.

+
+

Expression:

+
+

inv:inspireId->notEmpty()

+
+ + diff --git a/approved/html/EARoot/EA1/EA1/EA1/EA1/EA14.png b/approved/html/EARoot/EA1/EA1/EA1/EA1/EA14.png index 671b93ff0..14ec4c52a 100644 Binary files a/approved/html/EARoot/EA1/EA1/EA1/EA1/EA14.png and b/approved/html/EARoot/EA1/EA1/EA1/EA1/EA14.png differ diff --git a/approved/html/EARoot/EA1/EA1/EA1/EA1/EA17.htm b/approved/html/EARoot/EA1/EA1/EA1/EA1/EA17.htm index de181f663..699081e68 100644 --- a/approved/html/EARoot/EA1/EA1/EA1/EA1/EA17.htm +++ b/approved/html/EARoot/EA1/EA1/EA1/EA1/EA17.htm @@ -109,7 +109,7 @@ @@ -158,7 +158,7 @@ Notes: @@ -167,7 +167,7 @@ - Public EarthMaterial
  material + Public WasteStorageTypeCode
  storageType @@ -216,7 +216,7 @@ Notes: - -- Definition --<br/>The material of which the mining waste is composed<br/><br/><br/> + -- Definition --<br/>The storage type of the waste eg surface storage, tailings pond, waste dump, covered storage etc<br/><br/><br/> @@ -225,7 +225,7 @@ - Public WasteStorageTypeCode
  storageType + Public MiningWasteMeasure
  wasteMeasure @@ -274,7 +274,7 @@ Notes: - -- Definition --<br/>The storage type of the waste eg surface storage, tailings pond, waste dump, covered storage etc<br/><br/><br/> + -- Definition --<br/>The measure of mining waste<br/><br/><br/> @@ -283,7 +283,7 @@ - Public MiningWasteMeasure
  wasteMeasure + Public MiningWasteTypeCode
  wasteType @@ -301,7 +301,7 @@ Stereotype: - <<voidable>> + Ordered: @@ -325,14 +325,14 @@ - nillable=true
+
Notes: - -- Definition --<br/>The measure of mining waste<br/><br/><br/> + -- Definition --<br/>The type of mining waste<br/><br/><br/>
@@ -341,7 +341,7 @@ - Public MiningWasteTypeCode
  wasteType + Public URI
  environmentalImpact @@ -359,7 +359,7 @@ Stereotype: - + <<voidable>> Ordered: @@ -383,14 +383,14 @@ - + nillable=true
Notes: - -- Definition --<br/>The type of mining waste<br/><br/><br/> + -- Definition --<br/>The potential environmental impact of the mining waste<br/><br/><br/>
diff --git a/approved/html/EARoot/EA1/EA1/EA1/EA1/EA18.htm b/approved/html/EARoot/EA1/EA1/EA1/EA1/EA18.htm index 4f392228e..b9833756b 100644 --- a/approved/html/EARoot/EA1/EA1/EA1/EA1/EA18.htm +++ b/approved/html/EARoot/EA1/EA1/EA1/EA1/EA18.htm @@ -165,7 +165,7 @@ - Public Quantity
  grade + Public Quantity
  volume @@ -214,7 +214,7 @@ Notes: - -- Definition --<br/>The grade of mining waste<br/><br/><br/> + -- Definition --<br/>The volume of mining waste<br/><br/><br/> @@ -223,7 +223,7 @@ - Public Quantity
  volume + Public Quantity
  grade @@ -272,7 +272,7 @@ Notes: - -- Definition --<br/>The volume of mining waste<br/><br/><br/> + -- Definition --<br/>The grade of mining waste<br/><br/><br/> diff --git a/approved/html/EARoot/EA1/EA1/EA1/EA2/EA26.png b/approved/html/EARoot/EA1/EA1/EA1/EA2/EA26.png index d807eefde..5334430aa 100644 Binary files a/approved/html/EARoot/EA1/EA1/EA1/EA2/EA26.png and b/approved/html/EARoot/EA1/EA1/EA1/EA2/EA26.png differ diff --git a/approved/html/EARoot/EA1/EA1/EA1/EA2/EA28.png b/approved/html/EARoot/EA1/EA1/EA1/EA2/EA28.png index 23c12fde3..3b64df249 100644 Binary files a/approved/html/EARoot/EA1/EA1/EA1/EA2/EA28.png and b/approved/html/EARoot/EA1/EA1/EA1/EA2/EA28.png differ diff --git a/approved/html/EARoot/EA1/EA1/EA1/EA2/EA30.png b/approved/html/EARoot/EA1/EA1/EA1/EA2/EA30.png index 2f15d64d7..ee4ede92a 100644 Binary files a/approved/html/EARoot/EA1/EA1/EA1/EA2/EA30.png and b/approved/html/EARoot/EA1/EA1/EA1/EA2/EA30.png differ diff --git a/approved/html/EARoot/EA1/EA1/EA1/EA9.png b/approved/html/EARoot/EA1/EA1/EA1/EA9.png index c0b099960..063887124 100644 Binary files a/approved/html/EARoot/EA1/EA1/EA1/EA9.png and b/approved/html/EARoot/EA1/EA1/EA1/EA9.png differ diff --git a/approved/html/EARoot/EA1/EA2/EA1/EA1/EA72.png b/approved/html/EARoot/EA1/EA2/EA1/EA1/EA72.png index 95df9a0df..e7ce2587c 100644 Binary files a/approved/html/EARoot/EA1/EA2/EA1/EA1/EA72.png and b/approved/html/EARoot/EA1/EA2/EA1/EA1/EA72.png differ diff --git a/approved/html/EARoot/EA1/EA2/EA1/EA1/EA78.png b/approved/html/EARoot/EA1/EA2/EA1/EA1/EA78.png index a6afc0222..70f5a8568 100644 Binary files a/approved/html/EARoot/EA1/EA2/EA1/EA1/EA78.png and b/approved/html/EARoot/EA1/EA2/EA1/EA1/EA78.png differ diff --git a/approved/html/EARoot/EA1/EA2/EA1/EA2/EA100.png b/approved/html/EARoot/EA1/EA2/EA1/EA2/EA100.png index 1c2a6c48c..5cbd53acb 100644 Binary files a/approved/html/EARoot/EA1/EA2/EA1/EA2/EA100.png and b/approved/html/EARoot/EA1/EA2/EA1/EA2/EA100.png differ diff --git a/approved/html/EARoot/EA1/EA2/EA1/EA2/EA102.png b/approved/html/EARoot/EA1/EA2/EA1/EA2/EA102.png index d3f37ae0b..e0a4e3bd9 100644 Binary files a/approved/html/EARoot/EA1/EA2/EA1/EA2/EA102.png and b/approved/html/EARoot/EA1/EA2/EA1/EA2/EA102.png differ diff --git a/approved/html/EARoot/EA1/EA2/EA1/EA2/EA104.png b/approved/html/EARoot/EA1/EA2/EA1/EA2/EA104.png index be2c1f1b2..dd3c6d417 100644 Binary files a/approved/html/EARoot/EA1/EA2/EA1/EA2/EA104.png and b/approved/html/EARoot/EA1/EA2/EA1/EA2/EA104.png differ diff --git a/approved/html/EARoot/EA1/EA2/EA1/EA2/EA106.png b/approved/html/EARoot/EA1/EA2/EA1/EA2/EA106.png index dbf1b0fcc..10e2b392a 100644 Binary files a/approved/html/EARoot/EA1/EA2/EA1/EA2/EA106.png and b/approved/html/EARoot/EA1/EA2/EA1/EA2/EA106.png differ diff --git a/approved/html/EARoot/EA1/EA2/EA1/EA2/EA108.png b/approved/html/EARoot/EA1/EA2/EA1/EA2/EA108.png index 4739f53df..7453cb6f9 100644 Binary files a/approved/html/EARoot/EA1/EA2/EA1/EA2/EA108.png and b/approved/html/EARoot/EA1/EA2/EA1/EA2/EA108.png differ diff --git a/approved/html/EARoot/EA1/EA2/EA1/EA2/EA115.htm b/approved/html/EARoot/EA1/EA2/EA1/EA2/EA115.htm index 91fbf8d54..12787807c 100644 --- a/approved/html/EARoot/EA1/EA2/EA1/EA2/EA115.htm +++ b/approved/html/EARoot/EA1/EA2/EA1/EA2/EA115.htm @@ -111,7 +111,7 @@ - Public CGI_Term
  bodyMorphology + Public GeologicUnitTypeTerm
  geologicUnitType @@ -129,7 +129,7 @@ Stereotype: - <<estimatedProperty>> + Ordered: @@ -153,14 +153,14 @@ - nillable=True
sequenceNumber=2
+ inlineOrByReference=byReference
sequenceNumber=1
Notes: - The geometry or form of a GeologicUnit.  Examples include: dike (dyke), cone, fan, sheet, etc. Morphology is independent of the substance (EarthMaterial) that composes the GeologicUnit or process that formed it.<br/><br/> + A scopped name pointing to a vocabulary defining the type of unit. Logical constraints of definition of unit and valid property cardinalities should be contained in the definition. Use of the CGI Geologic Unit Type vocabulary (eg: something like http://geosciml.org/classifierScheme/CGI/GeologicUnitType/200811) is preferred. <br/>
@@ -169,7 +169,7 @@ - Public CGI_Term
  exposureColor + Public CGI_Term
  bodyMorphology @@ -211,14 +211,14 @@ - nillable=True
sequenceNumber=4
+ nillable=True
sequenceNumber=2
Notes: - Typical color at the outcrop of a geologic unit. <br/><br/> + The geometry or form of a GeologicUnit.  Examples include: dike (dyke), cone, fan, sheet, etc. Morphology is independent of the substance (EarthMaterial) that composes the GeologicUnit or process that formed it.<br/><br/>
@@ -227,7 +227,7 @@ - Public GeologicUnitTypeTerm
  geologicUnitType + Public CGI_Term
  unitComposition @@ -245,7 +245,7 @@ Stereotype: - + <<estimatedProperty>> Ordered: @@ -269,14 +269,14 @@ - inlineOrByReference=byReference
sequenceNumber=1
+ nillable=True
sequenceNumber=3
Notes: - A scopped name pointing to a vocabulary defining the type of unit. Logical constraints of definition of unit and valid property cardinalities should be contained in the definition. Use of the CGI Geologic Unit Type vocabulary (eg: something like http://geosciml.org/classifierScheme/CGI/GeologicUnitType/200811) is preferred. <br/> + Composition-based classification that requires integrating the character of the unit over large area, not applicable at the rock-material/specimen level. Examples: alkalic, subaluminous, peraluminous, I-Type, carbonate, phosphate.<br/><br/>
@@ -285,7 +285,7 @@ - Public CGI_Term
  outcropCharacter + Public CGI_Term
  exposureColor @@ -327,14 +327,14 @@ - nillable=True
sequenceNumber=5
+ nillable=True
sequenceNumber=4
Notes: - Describes the nature of outcrops formed by a geologic unit. Examples: bouldery, cliff-forming, ledge-forming, slope-forming, poorly exposed<br/><br/> + Typical color at the outcrop of a geologic unit. <br/><br/>
@@ -343,7 +343,7 @@ - Public RankTerm
  rank + Public CGI_Term
  outcropCharacter @@ -361,7 +361,7 @@ Stereotype: - + <<estimatedProperty>> Ordered: @@ -385,14 +385,14 @@ - inlineOrByReference=byReference
nillable=True
sequenceNumber=6
+ nillable=True
sequenceNumber=5
Notes: - Term that classifies the geologic unit in a generalization hierarchy from most local/smallest volume to most regional. Scoped name because classification is asserted, not based on observational data.<br/>Examples: group, subgroup, formation, member, bed, intrusion, complex, batholith<br/><br/> + Describes the nature of outcrops formed by a geologic unit. Examples: bouldery, cliff-forming, ledge-forming, slope-forming, poorly exposed<br/><br/>
@@ -401,7 +401,7 @@ - Public CGI_Term
  unitComposition + Public RankTerm
  rank @@ -419,7 +419,7 @@ Stereotype: - <<estimatedProperty>> + Ordered: @@ -443,14 +443,14 @@ - nillable=True
sequenceNumber=3
+ inlineOrByReference=byReference
nillable=True
sequenceNumber=6
Notes: - Composition-based classification that requires integrating the character of the unit over large area, not applicable at the rock-material/specimen level. Examples: alkalic, subaluminous, peraluminous, I-Type, carbonate, phosphate.<br/><br/> + Term that classifies the geologic unit in a generalization hierarchy from most local/smallest volume to most regional. Scoped name because classification is asserted, not based on observational data.<br/>Examples: group, subgroup, formation, member, bed, intrusion, complex, batholith<br/><br/>
diff --git a/approved/html/EARoot/EA1/EA2/EA1/EA2/EA117.htm b/approved/html/EARoot/EA1/EA2/EA1/EA2/EA117.htm index 92c99d96e..178be394c 100644 --- a/approved/html/EARoot/EA1/EA2/EA1/EA2/EA117.htm +++ b/approved/html/EARoot/EA1/EA2/EA1/EA2/EA117.htm @@ -109,7 +109,7 @@ - Public CompoundMaterial
  material + Public CompositionPartRoleTerm
  role @@ -127,7 +127,7 @@ Stereotype: - <<estimatedProperty>> + Ordered: @@ -151,14 +151,14 @@ - sequenceNumber=2
+ inlineOrByReference=byReference
sequenceNumber=1
Notes: - Description of the compound material that comprises part or all of the geologic unit<br/> + Defines the relationship of the earth material constituent in the geologic unit, e.g. vein, interbedded constituent, layers, dominant constituent. Scoped name because role is asserted by the geologist building the description.<br/><br/>
@@ -167,7 +167,7 @@ - Public CGI_NumericRange
  proportion + Public CompoundMaterial
  material @@ -209,14 +209,14 @@ - nillable=True
sequenceNumber=3
+ sequenceNumber=2
Notes: - Quantity that specifies the fraction of the geologic unit composed of the compound material.<br/><br/> + Description of the compound material that comprises part or all of the geologic unit<br/>
@@ -225,7 +225,7 @@ - Public CompositionPartRoleTerm
  role + Public CGI_NumericRange
  proportion @@ -243,7 +243,7 @@ Stereotype: - + <<estimatedProperty>> Ordered: @@ -267,14 +267,14 @@ - inlineOrByReference=byReference
sequenceNumber=1
+ nillable=True
sequenceNumber=3
Notes: - Defines the relationship of the earth material constituent in the geologic unit, e.g. vein, interbedded constituent, layers, dominant constituent. Scoped name because role is asserted by the geologist building the description.<br/><br/> + Quantity that specifies the fraction of the geologic unit composed of the compound material.<br/><br/>
diff --git a/approved/html/EARoot/EA1/EA2/EA1/EA2/EA118.htm b/approved/html/EARoot/EA1/EA2/EA1/EA2/EA118.htm index 1a558cfdf..d5cbeb405 100644 --- a/approved/html/EARoot/EA1/EA2/EA1/EA2/EA118.htm +++ b/approved/html/EARoot/EA1/EA2/EA1/EA2/EA118.htm @@ -110,7 +110,7 @@ - Public CGI_NumericRange
  proportion + Public GeologicUnitPartRoleTerm
  role @@ -128,7 +128,7 @@ Stereotype: - <<estimatedProperty>> + Ordered: @@ -152,14 +152,14 @@ - nillable=true
sequenceNumber=2
+ inlineOrByReference=byReference
sequenceNumber=1
Notes: - Quantity that specifies the fraction of the geologic unit formed by the part.<br/><br/> + Nature of the parts, e.g. facies, stratigraphic, interbeds, geographic, eastern facies, <br/><br/>
@@ -168,7 +168,7 @@ - Public GeologicUnitPartRoleTerm
  role + Public CGI_NumericRange
  proportion @@ -186,7 +186,7 @@ Stereotype: - + <<estimatedProperty>> Ordered: @@ -210,14 +210,14 @@ - inlineOrByReference=byReference
sequenceNumber=1
+ nillable=true
sequenceNumber=2
Notes: - Nature of the parts, e.g. facies, stratigraphic, interbeds, geographic, eastern facies, <br/><br/> + Quantity that specifies the fraction of the geologic unit formed by the part.<br/><br/>
diff --git a/approved/html/EARoot/EA1/EA2/EA1/EA2/EA122.htm b/approved/html/EARoot/EA1/EA2/EA1/EA2/EA122.htm index fae9f758f..25206ae26 100644 --- a/approved/html/EARoot/EA1/EA2/EA1/EA2/EA122.htm +++ b/approved/html/EARoot/EA1/EA2/EA1/EA2/EA122.htm @@ -514,7 +514,7 @@ - Public
  GeologicUnit + Public
  GeomorphologicUnit @@ -563,7 +563,7 @@ Notes: - Type of geologic unit is unknown, unspecified, irrelevant, or some type not included in the vocabulary. Type makes no implication for required properties or cardinalities. This is the root concept for the type hierarchy.<br/> + Geologic unit defined by surface landform(?), eg hummocky moraine <br/> @@ -572,7 +572,7 @@ - Public
  GeomorphologicUnit + Public
  GeophysicalUnit @@ -621,7 +621,7 @@ Notes: - Geologic unit defined by surface landform(?), eg hummocky moraine <br/> + Geologic unit defined by its geophysical characteristics<br/> @@ -630,7 +630,7 @@ - Public
  GeophysicalUnit + Public
  LithodemicUnit @@ -679,7 +679,7 @@ Notes: - Geologic unit defined by its geophysical characteristics<br/> + Geologic unit defined by lithology, lacking stratification<br/> @@ -688,7 +688,7 @@ - Public
  LithodemicUnit + Public
  LithogeneticUnit @@ -737,7 +737,7 @@ Notes: - Geologic unit defined by lithology, lacking stratification<br/> + Geologic unit defined by genesis. These suggest the kinds of material that compose the unit, but the material is not the defining property. <br/> @@ -746,7 +746,7 @@ - Public
  LithogeneticUnit + Public
  LithologicUnit @@ -795,7 +795,7 @@ Notes: - Geologic unit defined by genesis. These suggest the kinds of material that compose the unit, but the material is not the defining property. <br/> + Geologic unit defined by lithology independent of subdividing external and internal boundaries. May be stratified or non-stratified. Use of 'facies' is ambiguous?sometimes refers to particular body of rock (a NADM geologic unit), sometimes refers to a 'kind' of rock body characterized by some internal sequence of rock types and the presence of various geologic (typically sedimentary?) structures <br/> @@ -804,7 +804,7 @@ - Public
  LithologicUnit + Public
  LithostratigraphicUnit @@ -853,7 +853,7 @@ Notes: - Geologic unit defined by lithology independent of subdividing external and internal boundaries. May be stratified or non-stratified. Use of 'facies' is ambiguous?sometimes refers to particular body of rock (a NADM geologic unit), sometimes refers to a 'kind' of rock body characterized by some internal sequence of rock types and the presence of various geologic (typically sedimentary?) structures <br/> + Geologic unit defined by lithology that is stratified.<br/> @@ -862,7 +862,7 @@ - Public
  LithostratigraphicUnit + Public
  LithotectonicUnit @@ -911,7 +911,7 @@ Notes: - Geologic unit defined by lithology that is stratified.<br/> + Geologic unit defined by geologic history or deformation<br/>Placeholder for units defined by a distinctive fabric<br/> @@ -920,7 +920,7 @@ - Public
  LithotectonicUnit + Public
  MagnetostratigraphicUnit @@ -969,7 +969,7 @@ Notes: - Geologic unit defined by geologic history or deformation<br/>Placeholder for units defined by a distinctive fabric<br/> + Geologic unit defined by specific remanent-magnetic properties <br/> @@ -978,7 +978,7 @@ - Public
  MagnetostratigraphicUnit + Public
  MassMovementUnit @@ -1027,7 +1027,7 @@ Notes: - Geologic unit defined by specific remanent-magnetic properties <br/> + Geologic unit defined by Movement type the type of movement giving rise to a landslide deposit, and Movement style describes how the individual movement types present in a landslide are related in time and space <br/> @@ -1036,7 +1036,7 @@ - Public
  MassMovementUnit + Public
  Pedoderm @@ -1085,7 +1085,7 @@ Notes: - Geologic unit defined by Movement type the type of movement giving rise to a landslide deposit, and Movement style describes how the individual movement types present in a landslide are related in time and space <br/> + Geologic unit defined based on soil type classification; defines parts of earth surface based on soil development and character. Pedoderm is not a surface classification unit because soil classification requires knowledge of the soil profile, which always extends some distance beneath the surface. <br/> @@ -1094,7 +1094,7 @@ - Public
  Pedoderm + Public
  PedostratigraphicUnit @@ -1143,7 +1143,7 @@ Notes: - Geologic unit defined based on soil type classification; defines parts of earth surface based on soil development and character. Pedoderm is not a surface classification unit because soil classification requires knowledge of the soil profile, which always extends some distance beneath the surface. <br/> + Geologic unit that represents a single pedologic horizon in a sequence of strata (consolidated or non-consolidated). The presence of an overlying geologic unit is required, but locally the soil horizon may be at the Earth surface (in which case is may be coincident with a Pedoderm?) (see PedostratigraphicUnit) <br/> @@ -1152,7 +1152,7 @@ - Public
  PedostratigraphicUnit + Public
  PolarityChronostratigraphicUnit @@ -1201,7 +1201,7 @@ Notes: - Geologic unit that represents a single pedologic horizon in a sequence of strata (consolidated or non-consolidated). The presence of an overlying geologic unit is required, but locally the soil horizon may be at the Earth surface (in which case is may be coincident with a Pedoderm?) (see PedostratigraphicUnit) <br/> + Geologic unit defined by its primary magnetic-polarity record<br/> @@ -1210,7 +1210,7 @@ - Public
  PolarityChronostratigraphicUnit + Public
  GeologicUnit @@ -1259,7 +1259,7 @@ Notes: - Geologic unit defined by its primary magnetic-polarity record<br/> + Type of geologic unit is unknown, unspecified, irrelevant, or some type not included in the vocabulary. Type makes no implication for required properties or cardinalities. This is the root concept for the type hierarchy.<br/> diff --git a/approved/html/EARoot/EA1/EA2/EA1/EA3/EA125.png b/approved/html/EARoot/EA1/EA2/EA1/EA3/EA125.png index cf4f5bcb7..c82a25040 100644 Binary files a/approved/html/EARoot/EA1/EA2/EA1/EA3/EA125.png and b/approved/html/EARoot/EA1/EA2/EA1/EA3/EA125.png differ diff --git a/approved/html/EARoot/EA1/EA2/EA1/EA3/EA127.png b/approved/html/EARoot/EA1/EA2/EA1/EA3/EA127.png index d1759277c..658372a66 100644 Binary files a/approved/html/EARoot/EA1/EA2/EA1/EA3/EA127.png and b/approved/html/EARoot/EA1/EA2/EA1/EA3/EA127.png differ diff --git a/approved/html/EARoot/EA1/EA2/EA1/EA3/EA135.htm b/approved/html/EARoot/EA1/EA2/EA1/EA3/EA135.htm index 292bf4448..37d5529c0 100644 --- a/approved/html/EARoot/EA1/EA2/EA1/EA3/EA135.htm +++ b/approved/html/EARoot/EA1/EA2/EA1/EA3/EA135.htm @@ -112,7 +112,7 @@ - Public CGI_Term
  eventEnvironment + Public EventProcessTerm
  eventProcess @@ -154,14 +154,14 @@ - nillable=True
sequenceNumber=5
+ inlineOrByReference=byReference
sequenceNumber=1
Notes: - The physical setting within which a GeologicEvent takes place.  GeologicEnvironment is construed broadly to include physical settings on the Earth surface specified by climate, tectonics, physiography or geography, and settings in the Earth’s interior specified by pressure, temperature, chemical environment, or tectonics. <br/><br/> + The eventProcess specifies the process or processes that occurred during the event. Examples include deposition, extrusion, intrusion, cooling.<br/><br/>
@@ -170,7 +170,7 @@ - Public EventProcessTerm
  eventProcess + Public CGI_NumericAgeRange
  numericAgeDate @@ -212,14 +212,14 @@ - inlineOrByReference=byReference
sequenceNumber=1
+ nillable=True
sequenceNumber=2
Notes: - The eventProcess specifies the process or processes that occurred during the event. Examples include deposition, extrusion, intrusion, cooling.<br/><br/> + The numericAgeDate attribute is the age of a particular geological event or feature expressed in terms of years before present (1950), using CGI_NumericAgeRange. This datatype allows a younger and older age boundary to express an interval, and a reporting age, which is a single numeric age to report for applications that can not use a numeric range. Age in years before present is an estimated time durations based on interpretation of isotopic analyses of EarthMaterial (some other methods are used for geologically young materials).<br/>Numeric age range uses StratigraphicDateEstimate to allow incorporation of various uncertainty measures using ISO19115 DataQuality elements, and binding with observation features to report details of date determination measurement.<br/><br/>
@@ -228,7 +228,7 @@ - Public CGI_NumericAgeRange
  numericAgeDate + Public GeochronologicEra
  olderNamedAge @@ -270,14 +270,14 @@ - nillable=True
sequenceNumber=2
+ inlineOrByReference=byReference
nillable=True
sequenceNumber=3
Notes: - The numericAgeDate attribute is the age of a particular geological event or feature expressed in terms of years before present (1950), using CGI_NumericAgeRange. This datatype allows a younger and older age boundary to express an interval, and a reporting age, which is a single numeric age to report for applications that can not use a numeric range. Age in years before present is an estimated time durations based on interpretation of isotopic analyses of EarthMaterial (some other methods are used for geologically young materials).<br/>Numeric age range uses StratigraphicDateEstimate to allow incorporation of various uncertainty measures using ISO19115 DataQuality elements, and binding with observation features to report details of date determination measurement.<br/><br/> + Older boundary of age of event expressed using a geochronologic era defined according to a geologic time scale per GeologicTime schema<br/><br/>
@@ -286,7 +286,7 @@ - Public GeochronologicEra
  olderNamedAge + Public GeochronologicEra
  youngerNamedAge @@ -328,14 +328,14 @@ - inlineOrByReference=byReference
nillable=True
sequenceNumber=3
+ inlineOrByReference=byReference
nillable=True
sequenceNumber=4
Notes: - Older boundary of age of event expressed using a geochronologic era defined according to a geologic time scale per GeologicTime schema<br/><br/> + Younger boundary of age of event expressed using a geochronologic era defined according to a geologic time scale per GeologicTime schema<br/><br/>
@@ -344,7 +344,7 @@ - Public GeochronologicEra
  youngerNamedAge + Public CGI_Term
  eventEnvironment @@ -386,14 +386,14 @@ - inlineOrByReference=byReference
nillable=True
sequenceNumber=4
+ nillable=True
sequenceNumber=5
Notes: - Younger boundary of age of event expressed using a geochronologic era defined according to a geologic time scale per GeologicTime schema<br/><br/> + The physical setting within which a GeologicEvent takes place.  GeologicEnvironment is construed broadly to include physical settings on the Earth surface specified by climate, tectonics, physiography or geography, and settings in the Earth’s interior specified by pressure, temperature, chemical environment, or tectonics. <br/><br/>
diff --git a/approved/html/EARoot/EA1/EA2/EA1/EA4/EA142.png b/approved/html/EARoot/EA1/EA2/EA1/EA4/EA142.png index b185a270f..f9bdc5f02 100644 Binary files a/approved/html/EARoot/EA1/EA2/EA1/EA4/EA142.png and b/approved/html/EARoot/EA1/EA2/EA1/EA4/EA142.png differ diff --git a/approved/html/EARoot/EA1/EA2/EA1/EA4/EA144.png b/approved/html/EARoot/EA1/EA2/EA1/EA4/EA144.png index 598038f81..802791580 100644 Binary files a/approved/html/EARoot/EA1/EA2/EA1/EA4/EA144.png and b/approved/html/EARoot/EA1/EA2/EA1/EA4/EA144.png differ diff --git a/approved/html/EARoot/EA1/EA2/EA1/EA4/EA150.png b/approved/html/EARoot/EA1/EA2/EA1/EA4/EA150.png index 80938ccb2..a2406b088 100644 Binary files a/approved/html/EARoot/EA1/EA2/EA1/EA4/EA150.png and b/approved/html/EARoot/EA1/EA2/EA1/EA4/EA150.png differ diff --git a/approved/html/EARoot/EA1/EA2/EA1/EA4/EA158.png b/approved/html/EARoot/EA1/EA2/EA1/EA4/EA158.png index 2a023dd0f..cde44ed06 100644 Binary files a/approved/html/EARoot/EA1/EA2/EA1/EA4/EA158.png and b/approved/html/EARoot/EA1/EA2/EA1/EA4/EA158.png differ diff --git a/approved/html/EARoot/EA1/EA2/EA1/EA4/EA168.png b/approved/html/EARoot/EA1/EA2/EA1/EA4/EA168.png index 4ae11f6ae..9c74f1e96 100644 Binary files a/approved/html/EARoot/EA1/EA2/EA1/EA4/EA168.png and b/approved/html/EARoot/EA1/EA2/EA1/EA4/EA168.png differ diff --git a/approved/html/EARoot/EA1/EA2/EA1/EA4/EA172.png b/approved/html/EARoot/EA1/EA2/EA1/EA4/EA172.png index dd11423be..e4aa9871f 100644 Binary files a/approved/html/EARoot/EA1/EA2/EA1/EA4/EA172.png and b/approved/html/EARoot/EA1/EA2/EA1/EA4/EA172.png differ diff --git a/approved/html/EARoot/EA1/EA2/EA1/EA4/EA180.htm b/approved/html/EARoot/EA1/EA2/EA1/EA4/EA180.htm index 2657d761c..434fcaaae 100644 --- a/approved/html/EARoot/EA1/EA2/EA1/EA4/EA180.htm +++ b/approved/html/EARoot/EA1/EA2/EA1/EA4/EA180.htm @@ -110,7 +110,7 @@ - Public CGI_Term
  contactCharacter + Public ContactTypeTerm
  contactType @@ -128,7 +128,7 @@ Stereotype: - <<estimatedProperty>> + Ordered: @@ -152,14 +152,14 @@ - nillable=True
sequenceNumber=1
+ inlineOrByReference=byReference
sequenceNumber=2
Notes: - The character of the boundary, as opposed to its type. e.g.  abrupt, gradational <br/><br/> + Classifies the contact (eg intrusive, unconformity, bedding surface, lithologic boundary, phase boundary)<br/><br/>
@@ -168,7 +168,7 @@ - Public ContactTypeTerm
  contactType + Public CGI_Term
  contactCharacter @@ -186,7 +186,7 @@ Stereotype: - + <<estimatedProperty>> Ordered: @@ -210,14 +210,14 @@ - inlineOrByReference=byReference
sequenceNumber=2
+ nillable=True
sequenceNumber=1
Notes: - Classifies the contact (eg intrusive, unconformity, bedding surface, lithologic boundary, phase boundary)<br/><br/> + The character of the boundary, as opposed to its type. e.g.  abrupt, gradational <br/><br/>
diff --git a/approved/html/EARoot/EA1/EA2/EA1/EA4/EA184.htm b/approved/html/EARoot/EA1/EA2/EA1/EA4/EA184.htm index e9aec583c..90f2eed49 100644 --- a/approved/html/EARoot/EA1/EA2/EA1/EA4/EA184.htm +++ b/approved/html/EARoot/EA1/EA2/EA1/EA4/EA184.htm @@ -109,7 +109,7 @@ - Public CGI_Term
  continuity + Public FoliationTypeTerm
  foliationType @@ -127,7 +127,7 @@ Stereotype: - <<estimatedProperty>> + Ordered: @@ -151,14 +151,14 @@ - nillable=True
sequenceNumber=3
+ inlineOrByReference=byReference
sequenceNumber=2
Notes: - terms to distinguish continuous vs. disjunct cleavages<br/><br/> + Specifies the type of foliation.  Examples include crenulation cleavage, slaty cleavage, schistosity<br/><br/>
@@ -225,7 +225,7 @@ - Public FoliationTypeTerm
  foliationType + Public CGI_Term
  continuity @@ -243,7 +243,7 @@ Stereotype: - + <<estimatedProperty>> Ordered: @@ -267,14 +267,14 @@ - inlineOrByReference=byReference
sequenceNumber=2
+ nillable=True
sequenceNumber=3
Notes: - Specifies the type of foliation.  Examples include crenulation cleavage, slaty cleavage, schistosity<br/><br/> + terms to distinguish continuous vs. disjunct cleavages<br/><br/>
diff --git a/approved/html/EARoot/EA1/EA2/EA1/EA4/EA189.htm b/approved/html/EARoot/EA1/EA2/EA1/EA4/EA189.htm index 28c55639f..93958f4ec 100644 --- a/approved/html/EARoot/EA1/EA2/EA1/EA4/EA189.htm +++ b/approved/html/EARoot/EA1/EA2/EA1/EA4/EA189.htm @@ -109,7 +109,7 @@ - Public CGI_Term
  definingElement + Public LineationTypeTerm
  lineationType @@ -127,7 +127,7 @@ Stereotype: - <<estimatedProperty>> + Ordered: @@ -151,14 +151,14 @@ - nillable=True
sequenceNumber=1
+ inlineOrByReference=byReference
sequenceNumber=2
Notes: - Kinds of describable inhomogeneity in a rock body that may define a GeologicStructure.   Examples include Oriented Particle.  <br/><br/> + Type of lineation.<br/>Examples include: flow lines, scratches, striae, slickenlines, linear arrangements of elongate components in sediments, elongate minerals, crinkles, and lines of intersection between penetrative planar structures.<br/><br/>
@@ -167,7 +167,7 @@ - Public CGI_Term
  intensity + Public CGI_Term
  definingElement @@ -209,14 +209,14 @@ - nillable=True
sequenceNumber=3
+ nillable=True
sequenceNumber=1
Notes: - How well the lineation is developed. Terms such as weak, moderate, strong.<br/><br/> + Kinds of describable inhomogeneity in a rock body that may define a GeologicStructure.   Examples include Oriented Particle.  <br/><br/>
@@ -225,7 +225,7 @@ - Public LineationTypeTerm
  lineationType + Public CGI_Term
  intensity @@ -243,7 +243,7 @@ Stereotype: - + <<estimatedProperty>> Ordered: @@ -267,14 +267,14 @@ - inlineOrByReference=byReference
sequenceNumber=2
+ nillable=True
sequenceNumber=3
Notes: - Type of lineation.<br/>Examples include: flow lines, scratches, striae, slickenlines, linear arrangements of elongate components in sediments, elongate minerals, crinkles, and lines of intersection between penetrative planar structures.<br/><br/> + How well the lineation is developed. Terms such as weak, moderate, strong.<br/><br/>
diff --git a/approved/html/EARoot/EA1/EA2/EA1/EA4/EA191.htm b/approved/html/EARoot/EA1/EA2/EA1/EA4/EA191.htm index f2797578d..b9f86165c 100644 --- a/approved/html/EARoot/EA1/EA2/EA1/EA4/EA191.htm +++ b/approved/html/EARoot/EA1/EA2/EA1/EA4/EA191.htm @@ -111,7 +111,7 @@ - Public DeformationStyleTerm
  deformationStyle + Public FaultTypeTerm
  faultType @@ -153,14 +153,14 @@ - inlineOrByReference=byReference
sequenceNumber=2
+ inlineOrByReference=byReference
sequenceNumber=1
Notes: - A mandatory element referring to a vocabulary of terms to describe the style of deformation, ie brittle (fault, breccia), ductile (shear), brittle-ductile, unknown.<br/> + Refers to a vocabulary of terms describing the type of shear displacement structure (eg; thrust fault, normal fault, wrench fault).<br/>
@@ -169,7 +169,7 @@ - Public FaultTypeTerm
  faultType + Public DeformationStyleTerm
  deformationStyle @@ -211,14 +211,14 @@ - inlineOrByReference=byReference
sequenceNumber=1
+ inlineOrByReference=byReference
sequenceNumber=2
Notes: - Refers to a vocabulary of terms describing the type of shear displacement structure (eg; thrust fault, normal fault, wrench fault).<br/> + A mandatory element referring to a vocabulary of terms to describe the style of deformation, ie brittle (fault, breccia), ductile (shear), brittle-ductile, unknown.<br/>
diff --git a/approved/html/EARoot/EA1/EA2/EA1/EA5/EA206.png b/approved/html/EARoot/EA1/EA2/EA1/EA5/EA206.png index 9f7a668a8..a122db5b9 100644 Binary files a/approved/html/EARoot/EA1/EA2/EA1/EA5/EA206.png and b/approved/html/EARoot/EA1/EA2/EA1/EA5/EA206.png differ diff --git a/approved/html/EARoot/EA1/EA2/EA1/EA5/EA208.png b/approved/html/EARoot/EA1/EA2/EA1/EA5/EA208.png index ef5ee1ff6..2c2ef87ed 100644 Binary files a/approved/html/EARoot/EA1/EA2/EA1/EA5/EA208.png and b/approved/html/EARoot/EA1/EA2/EA1/EA5/EA208.png differ diff --git a/approved/html/EARoot/EA1/EA2/EA1/EA5/EA222.png b/approved/html/EARoot/EA1/EA2/EA1/EA5/EA222.png index b704afea0..15c8e51b1 100644 Binary files a/approved/html/EARoot/EA1/EA2/EA1/EA5/EA222.png and b/approved/html/EARoot/EA1/EA2/EA1/EA5/EA222.png differ diff --git a/approved/html/EARoot/EA1/EA2/EA1/EA5/EA230.png b/approved/html/EARoot/EA1/EA2/EA1/EA5/EA230.png index 38b8db464..b47354f4c 100644 Binary files a/approved/html/EARoot/EA1/EA2/EA1/EA5/EA230.png and b/approved/html/EARoot/EA1/EA2/EA1/EA5/EA230.png differ diff --git a/approved/html/EARoot/EA1/EA2/EA1/EA5/EA232.png b/approved/html/EARoot/EA1/EA2/EA1/EA5/EA232.png index c18f07555..a36476f80 100644 Binary files a/approved/html/EARoot/EA1/EA2/EA1/EA5/EA232.png and b/approved/html/EARoot/EA1/EA2/EA1/EA5/EA232.png differ diff --git a/approved/html/EARoot/EA1/EA2/EA1/EA5/EA238.htm b/approved/html/EARoot/EA1/EA2/EA1/EA5/EA238.htm index 80f00d611..9bd1a5f12 100644 --- a/approved/html/EARoot/EA1/EA2/EA1/EA5/EA238.htm +++ b/approved/html/EARoot/EA1/EA2/EA1/EA5/EA238.htm @@ -111,7 +111,7 @@ - Public CGI_TermRange
  alterationDegree + Public AlterationTypeTerm
  alterationType @@ -153,14 +153,14 @@ - nillable=True
sequenceNumber=2
+ inlineOrByReference=byReference
sequenceNumber=1
Notes: - AlterationDegree is a term to specify degree of modification from original material.  eg: weak, moderate, strong, intense<br/><br/> + AlterationType is a general description of the dominant alteration mineralogy or alteration type, in common usage.  Examples include: argillic, phyllic, potassic, propylitic, calc-silicate, skarn, deuteric, greisen, serpenitisation,  weathering, etc.<br/><br/>
@@ -169,7 +169,7 @@ - Public CGI_Term
  alterationDistribution + Public CGI_TermRange
  alterationDegree @@ -211,14 +211,14 @@ - nillable=True
sequenceNumber=4
+ nillable=True
sequenceNumber=2
Notes: - AlterationDistribution describes the spatial distribution or geometry of alteration zones. eg: patchy, spotted, banded, viens, vein breccia, pervasive, disseminated, etc<br/><br/> + AlterationDegree is a term to specify degree of modification from original material.  eg: weak, moderate, strong, intense<br/><br/>
@@ -285,7 +285,7 @@ - Public AlterationTypeTerm
  alterationType + Public CGI_Term
  alterationDistribution @@ -327,14 +327,14 @@ - inlineOrByReference=byReference
sequenceNumber=1
+ nillable=True
sequenceNumber=4
Notes: - AlterationType is a general description of the dominant alteration mineralogy or alteration type, in common usage.  Examples include: argillic, phyllic, potassic, propylitic, calc-silicate, skarn, deuteric, greisen, serpenitisation,  weathering, etc.<br/><br/> + AlterationDistribution describes the spatial distribution or geometry of alteration zones. eg: patchy, spotted, banded, viens, vein breccia, pervasive, disseminated, etc<br/><br/>
diff --git a/approved/html/EARoot/EA1/EA2/EA1/EA5/EA243.htm b/approved/html/EARoot/EA1/EA2/EA1/EA5/EA243.htm index 16e060479..9d402e6db 100644 --- a/approved/html/EARoot/EA1/EA2/EA1/EA5/EA243.htm +++ b/approved/html/EARoot/EA1/EA2/EA1/EA5/EA243.htm @@ -110,7 +110,7 @@ - Public CGI_Term
  aspectRatio + Public ParticleTypeTerm
  particleType @@ -128,7 +128,7 @@ Stereotype: - <<estimatedProperty>> + Ordered: @@ -152,14 +152,14 @@ - nillable=True
sequenceNumber=2
+ inlineOrByReference=byReference
sequenceNumber=1
Notes: - AspectRatio describes the geometry of particles based on the ratios of lengths of long, intermediate and short axes of grains. Equates to sphericity in sedimentary rocks (ie: the degree to which the shape of a particle approximates a sphere).  A quantitative specification based on the ratio of lengths of long, intermediate and short axes of grain shape (Sneed and Folk, 1958; Zingg, 1935). (eg: prolate, slightly flattened, very bladed, equant, acicular, tabular)<br/><br/> + Terms to specify the nature of individual particles of each constituent in an Earth Material aggregation, based mostly on their genesis.  If applied on ParticleDescription for CompoundMaterial, then would characterize all particles in aggregate. Use this property on CompoundMaterial to distinguish rocks composed of crystals (crystalline rocks) from rocks composed of granular particles (clasts, fragments). Examples include oolith, crystals, pore space. Constituent type is determined based on the nature of the particles, and ideally is independent of the relationship between particles in a compound material aggregation.<br/>See discussion of particleType vs ConstituentPart.role in the scope notes for ConstituentPart.<br/><br/>
@@ -168,7 +168,7 @@ - Public ParticleTypeTerm
  particleType + Public CGI_Term
  aspectRatio @@ -186,7 +186,7 @@ Stereotype: - + <<estimatedProperty>> Ordered: @@ -210,14 +210,14 @@ - inlineOrByReference=byReference
sequenceNumber=1
+ nillable=True
sequenceNumber=2
Notes: - Terms to specify the nature of individual particles of each constituent in an Earth Material aggregation, based mostly on their genesis.  If applied on ParticleDescription for CompoundMaterial, then would characterize all particles in aggregate. Use this property on CompoundMaterial to distinguish rocks composed of crystals (crystalline rocks) from rocks composed of granular particles (clasts, fragments). Examples include oolith, crystals, pore space. Constituent type is determined based on the nature of the particles, and ideally is independent of the relationship between particles in a compound material aggregation.<br/>See discussion of particleType vs ConstituentPart.role in the scope notes for ConstituentPart.<br/><br/> + AspectRatio describes the geometry of particles based on the ratios of lengths of long, intermediate and short axes of grains. Equates to sphericity in sedimentary rocks (ie: the degree to which the shape of a particle approximates a sphere).  A quantitative specification based on the ratio of lengths of long, intermediate and short axes of grain shape (Sneed and Folk, 1958; Zingg, 1935). (eg: prolate, slightly flattened, very bladed, equant, acicular, tabular)<br/><br/>
diff --git a/approved/html/EARoot/EA1/EA2/EA1/EA5/EA245.htm b/approved/html/EARoot/EA1/EA2/EA1/EA5/EA245.htm index 83c6fe19b..f5305cc36 100644 --- a/approved/html/EARoot/EA1/EA2/EA1/EA5/EA245.htm +++ b/approved/html/EARoot/EA1/EA2/EA1/EA5/EA245.htm @@ -110,7 +110,7 @@ - Public CGI_NumericRange
  proportion + Public ConstituentPartRoleTerm
  role @@ -128,7 +128,7 @@ Stereotype: - <<estimatedProperty>> + Ordered: @@ -152,14 +152,14 @@ - nillable=True
sequenceNumber=1
+ inlineOrByReference=byReference
sequenceNumber=2
Notes: - The fraction of the whole that is formed by a ConstituentPart in a part/whole relationship.  Used for the ConstituentPart portion in a CompoundMaterial. <br/><br/>Quantity that specifies the fraction of the Earth Material formed by the part (eg: 20%, minor, dominant)<br/><br/> + The role a ConstituentPart plays in a CompoundMaterial aggregation. The same EarthMaterial may occur as different ConstituentParts playing different roles within the same CompoundMaterial.  For example, feldspar may be present as groundmass (a ConstituentPart::role) and as phenocrysts (an ConstituentPart::role) within a single igneous rock.<br/><br/>
@@ -168,7 +168,7 @@ - Public ConstituentPartRoleTerm
  role + Public CGI_NumericRange
  proportion @@ -186,7 +186,7 @@ Stereotype: - + <<estimatedProperty>> Ordered: @@ -210,14 +210,14 @@ - inlineOrByReference=byReference
sequenceNumber=2
+ nillable=True
sequenceNumber=1
Notes: - The role a ConstituentPart plays in a CompoundMaterial aggregation. The same EarthMaterial may occur as different ConstituentParts playing different roles within the same CompoundMaterial.  For example, feldspar may be present as groundmass (a ConstituentPart::role) and as phenocrysts (an ConstituentPart::role) within a single igneous rock.<br/><br/> + The fraction of the whole that is formed by a ConstituentPart in a part/whole relationship.  Used for the ConstituentPart portion in a CompoundMaterial. <br/><br/>Quantity that specifies the fraction of the Earth Material formed by the part (eg: 20%, minor, dominant)<br/><br/>
diff --git a/approved/html/EARoot/EA1/EA2/EA1/EA62.png b/approved/html/EARoot/EA1/EA2/EA1/EA62.png index ffdad43be..b6c9e5ac8 100644 Binary files a/approved/html/EARoot/EA1/EA2/EA1/EA62.png and b/approved/html/EARoot/EA1/EA2/EA1/EA62.png differ diff --git a/approved/html/EARoot/EA1/EA2/EA2/EA276.png b/approved/html/EARoot/EA1/EA2/EA2/EA276.png index 3052ddf78..cf652a95b 100644 Binary files a/approved/html/EARoot/EA1/EA2/EA2/EA276.png and b/approved/html/EARoot/EA1/EA2/EA2/EA276.png differ diff --git a/approved/html/EARoot/EA1/EA2/EA2/EA278.png b/approved/html/EARoot/EA1/EA2/EA2/EA278.png index e443ff7cc..95cf68603 100644 Binary files a/approved/html/EARoot/EA1/EA2/EA2/EA278.png and b/approved/html/EARoot/EA1/EA2/EA2/EA278.png differ diff --git a/approved/html/EARoot/EA1/EA2/EA2/EA282.png b/approved/html/EARoot/EA1/EA2/EA2/EA282.png index 84c3249e9..dba72d54d 100644 Binary files a/approved/html/EARoot/EA1/EA2/EA2/EA282.png and b/approved/html/EARoot/EA1/EA2/EA2/EA282.png differ diff --git a/approved/html/EARoot/EA1/EA2/EA2/EA284.png b/approved/html/EARoot/EA1/EA2/EA2/EA284.png index 764a315e4..f571d1466 100644 Binary files a/approved/html/EARoot/EA1/EA2/EA2/EA284.png and b/approved/html/EARoot/EA1/EA2/EA2/EA284.png differ diff --git a/approved/html/EARoot/EA1/EA2/EA3/EA1/EA300.png b/approved/html/EARoot/EA1/EA2/EA3/EA1/EA300.png index d8363034c..18b3b8a0c 100644 Binary files a/approved/html/EARoot/EA1/EA2/EA3/EA1/EA300.png and b/approved/html/EARoot/EA1/EA2/EA3/EA1/EA300.png differ diff --git a/approved/html/EARoot/EA1/EA2/EA3/EA1/EA302.png b/approved/html/EARoot/EA1/EA2/EA3/EA1/EA302.png index d84b6875b..1fbf87e40 100644 Binary files a/approved/html/EARoot/EA1/EA2/EA3/EA1/EA302.png and b/approved/html/EARoot/EA1/EA2/EA3/EA1/EA302.png differ diff --git a/approved/html/EARoot/EA1/EA2/EA3/EA1/EA304.png b/approved/html/EARoot/EA1/EA2/EA3/EA1/EA304.png index dc4709ba7..09e3e79b1 100644 Binary files a/approved/html/EARoot/EA1/EA2/EA3/EA1/EA304.png and b/approved/html/EARoot/EA1/EA2/EA3/EA1/EA304.png differ diff --git a/approved/html/EARoot/EA1/EA2/EA3/EA1/EA306.png b/approved/html/EARoot/EA1/EA2/EA3/EA1/EA306.png index f131d2abe..d1890afba 100644 Binary files a/approved/html/EARoot/EA1/EA2/EA3/EA1/EA306.png and b/approved/html/EARoot/EA1/EA2/EA3/EA1/EA306.png differ diff --git a/approved/html/EARoot/EA1/EA2/EA3/EA1/EA308.png b/approved/html/EARoot/EA1/EA2/EA3/EA1/EA308.png index 3a35e631e..170ce9398 100644 Binary files a/approved/html/EARoot/EA1/EA2/EA3/EA1/EA308.png and b/approved/html/EARoot/EA1/EA2/EA3/EA1/EA308.png differ diff --git a/approved/html/EARoot/EA1/EA2/EA3/EA1/EA313.htm b/approved/html/EARoot/EA1/EA2/EA3/EA1/EA313.htm index f0cfebef2..9e9f0d532 100644 --- a/approved/html/EARoot/EA1/EA2/EA3/EA1/EA313.htm +++ b/approved/html/EARoot/EA1/EA2/EA3/EA1/EA313.htm @@ -110,7 +110,7 @@ - Public CharacterString
  additionalCorrelationProperty + Public CharacterString
  primaryGuidingCriterion @@ -152,13 +152,13 @@ - nillable=True
sequenceNumber=3
+ nillable=True
sequenceNumber=2
  - Public CharacterString
  primaryGuidingCriterion + Public CharacterString
  additionalCorrelationProperty @@ -200,7 +200,7 @@ - nillable=True
sequenceNumber=2
+ nillable=True
sequenceNumber=3
  diff --git a/approved/html/EARoot/EA1/EA2/EA3/EA1/EA314.htm b/approved/html/EARoot/EA1/EA2/EA3/EA1/EA314.htm index c9ae2e9bb..c33188dfb 100644 --- a/approved/html/EARoot/EA1/EA2/EA3/EA1/EA314.htm +++ b/approved/html/EARoot/EA1/EA2/EA3/EA1/EA314.htm @@ -110,7 +110,7 @@ - Public CharacterString
  accessibility + Public CharacterString
  geologicSetting @@ -152,13 +152,13 @@ - nillable=True
sequenceNumber=4
+ nillable=true
sequenceNumber=2
  - Public CharacterString
  conservation + Public CharacterString
  geologicDescription @@ -200,13 +200,23 @@ - nillable=True
sequenceNumber=5
-   + nillable=True
sequenceNumber=3
+
+ + + + +
+ Notes: + + Lithology, Sedimentology, Paleobathymetry<br/> +
+ - Public CharacterString
  geologicDescription + Public CharacterString
  accessibility @@ -248,23 +258,13 @@ - nillable=True
sequenceNumber=3
-
- - - - -
- Notes: - - Lithology, Sedimentology, Paleobathymetry<br/> -
- + nillable=True
sequenceNumber=4
+   - Public CharacterString
  geologicSetting + Public CharacterString
  conservation @@ -306,7 +306,7 @@ - nillable=true
sequenceNumber=2
+ nillable=True
sequenceNumber=5
  diff --git a/approved/html/EARoot/EA1/EA2/EA3/EA2/EA318.png b/approved/html/EARoot/EA1/EA2/EA3/EA2/EA318.png index b9937cda5..0b4770cb4 100644 Binary files a/approved/html/EARoot/EA1/EA2/EA3/EA2/EA318.png and b/approved/html/EARoot/EA1/EA2/EA3/EA2/EA318.png differ diff --git a/approved/html/EARoot/EA1/EA2/EA3/EA2/EA320.png b/approved/html/EARoot/EA1/EA2/EA3/EA2/EA320.png index 2c93e3a4d..38c4a1bd9 100644 Binary files a/approved/html/EARoot/EA1/EA2/EA3/EA2/EA320.png and b/approved/html/EARoot/EA1/EA2/EA3/EA2/EA320.png differ diff --git a/approved/html/EARoot/EA1/EA2/EA3/EA2/EA326.png b/approved/html/EARoot/EA1/EA2/EA3/EA2/EA326.png index bb57c7de6..6b80fb4c3 100644 Binary files a/approved/html/EARoot/EA1/EA2/EA3/EA2/EA326.png and b/approved/html/EARoot/EA1/EA2/EA3/EA2/EA326.png differ diff --git a/approved/html/EARoot/EA1/EA2/EA3/EA2/EA336.htm b/approved/html/EARoot/EA1/EA2/EA3/EA2/EA336.htm index 4110d0581..1a43e0106 100644 --- a/approved/html/EARoot/EA1/EA2/EA3/EA2/EA336.htm +++ b/approved/html/EARoot/EA1/EA2/EA3/EA2/EA336.htm @@ -108,7 +108,7 @@ - Public
  Age + Public
  Eon @@ -156,7 +156,7 @@ - Public
  Chron + Public
  Sub-Eon @@ -204,7 +204,7 @@ - Public
  Eon + Public
  Era @@ -252,7 +252,7 @@ - Public
  Epoch + Public
  Sub-Era @@ -300,7 +300,7 @@ - Public
  Era + Public
  Period @@ -348,7 +348,7 @@ - Public
  Period + Public
  Sub-Period @@ -396,7 +396,7 @@ - Public
  Sub-Age + Public
  Epoch @@ -444,7 +444,7 @@ - Public
  Sub-Eon + Public
  Sub-Epoch @@ -492,7 +492,7 @@ - Public
  Sub-Epoch + Public
  Age @@ -540,7 +540,7 @@ - Public
  Sub-Era + Public
  Sub-Age @@ -588,7 +588,7 @@ - Public
  Sub-Period + Public
  Chron diff --git a/approved/html/EARoot/EA1/EA2/EA4/EA340.png b/approved/html/EARoot/EA1/EA2/EA4/EA340.png index de7eb7f88..7c7a9f588 100644 Binary files a/approved/html/EARoot/EA1/EA2/EA4/EA340.png and b/approved/html/EARoot/EA1/EA2/EA4/EA340.png differ diff --git a/approved/html/EARoot/EA1/EA2/EA4/EA342.png b/approved/html/EARoot/EA1/EA2/EA4/EA342.png index 65dbc1b49..f317d0bd0 100644 Binary files a/approved/html/EARoot/EA1/EA2/EA4/EA342.png and b/approved/html/EARoot/EA1/EA2/EA4/EA342.png differ diff --git a/approved/html/EARoot/EA1/EA2/EA4/EA344.png b/approved/html/EARoot/EA1/EA2/EA4/EA344.png index b1036f387..118a7eabd 100644 Binary files a/approved/html/EARoot/EA1/EA2/EA4/EA344.png and b/approved/html/EARoot/EA1/EA2/EA4/EA344.png differ diff --git a/approved/html/EARoot/EA1/EA2/EA4/EA348.png b/approved/html/EARoot/EA1/EA2/EA4/EA348.png index b808e9e65..74031bf02 100644 Binary files a/approved/html/EARoot/EA1/EA2/EA4/EA348.png and b/approved/html/EARoot/EA1/EA2/EA4/EA348.png differ diff --git a/approved/html/EARoot/EA1/EA2/EA4/EA356.htm b/approved/html/EARoot/EA1/EA2/EA4/EA356.htm index 4528af016..ba1911e64 100644 --- a/approved/html/EARoot/EA1/EA2/EA4/EA356.htm +++ b/approved/html/EARoot/EA1/EA2/EA4/EA356.htm @@ -109,7 +109,7 @@ - Public DirectPosition
  elevation + Public GM_Point
  location @@ -151,14 +151,14 @@ - nillable=True
sequenceNumber=2
+ sequenceNumber=1
Notes: - Compromise approach to supply elevation explictly for location; this is to allow for software that cannot process 3-D GM_Point. Use null if elevation is unknown. Direct position shall have a dimension of 1, and CRS will be a "vertical" CRS (e.g. EPSG CRSs in the range 5600-5799). <br/> + The location of the BoreholeCollar<br/>
@@ -167,7 +167,7 @@ - Public GM_Point
  location + Public DirectPosition
  elevation @@ -209,14 +209,14 @@ - sequenceNumber=1
+ nillable=True
sequenceNumber=2
Notes: - The location of the BoreholeCollar<br/> + Compromise approach to supply elevation explictly for location; this is to allow for software that cannot process 3-D GM_Point. Use null if elevation is unknown. Direct position shall have a dimension of 1, and CRS will be a "vertical" CRS (e.g. EPSG CRSs in the range 5600-5799). <br/>
diff --git a/approved/html/EARoot/EA1/EA2/EA4/EA358.htm b/approved/html/EARoot/EA1/EA2/EA4/EA358.htm index df51e6944..f9122feec 100644 --- a/approved/html/EARoot/EA1/EA2/EA4/EA358.htm +++ b/approved/html/EARoot/EA1/EA2/EA4/EA358.htm @@ -109,7 +109,7 @@ - Public CI_ResponsibleParty
  coreCustodian + Public CI_ResponsibleParty
  operator @@ -151,14 +151,14 @@ - nillable=True
sequenceNumber=9
+ nillable=True
sequenceNumber=1
Notes: - Organisation that is custodian of the core recovered from the borehole<br/> + Organisation responsible for commissioning the borehole (as opposed to drilling the borehole)<br/>
@@ -167,7 +167,7 @@ - Public GM_Envelope
  coredInterval + Public CI_ResponsibleParty
  driller @@ -209,14 +209,14 @@ - nillable=True
sequenceNumber=8
+ nillable=True
sequenceNumber=2
Notes: - Interval(s) within the borehole from which core was recovered<br/>Use GM_Envelope with 1-D CRS corresponding to borehole curve shape<br/> + The organisation responsible for drilling the borehole (as opposed to commissioning the borehole)<br/>
@@ -283,7 +283,7 @@ - Public CI_ResponsibleParty
  driller + Public BoreholeDrillingMethodCode
  drillingMethod @@ -325,14 +325,14 @@ - nillable=True
sequenceNumber=2
+ inlineOrByReference=byReference
nillable=True
sequenceNumber=4
Notes: - The organisation responsible for drilling the borehole (as opposed to commissioning the borehole)<br/> + Indicates the drilling method used. Appropriate terms would include Rotary; Shell & Auger; Downhole Air Hammer; Hand Auger etc<br/>
@@ -341,7 +341,7 @@ - Public BoreholeDrillingMethodCode
  drillingMethod + Public BoreholeStartPointCode
  startPoint @@ -383,14 +383,14 @@ - inlineOrByReference=byReference
nillable=True
sequenceNumber=4
+ inlineOrByReference=byReference
nillable=True
sequenceNumber=5
Notes: - Indicates the drilling method used. Appropriate terms would include Rotary; Shell & Auger; Downhole Air Hammer; Hand Auger etc<br/> + Indicates the position relative to ground surface where the borehole commenced. Appropriate terms would include Drilled from Ground Surface; Drilled Underground;  Drilled from Quarry Floor etc <br/>
@@ -399,7 +399,7 @@ - Public BoreholeInclinationCode
  inclinationType + Public Quantity
  nominalDiameter @@ -441,14 +441,14 @@ - inlineOrByReference=byReference
nillable=True
sequenceNumber=7
+ nillable=True
sequenceNumber=6
Notes: - Indicates the inclination of the borehole. Appropriate terms would include vertical; inclined up; inclined down, horizontal<br/> + The starting diameter<br/>
@@ -457,7 +457,7 @@ - Public Quantity
  nominalDiameter + Public BoreholeInclinationCode
  inclinationType @@ -499,14 +499,14 @@ - nillable=True
sequenceNumber=6
+ inlineOrByReference=byReference
nillable=True
sequenceNumber=7
Notes: - The starting diameter<br/> + Indicates the inclination of the borehole. Appropriate terms would include vertical; inclined up; inclined down, horizontal<br/>
@@ -515,7 +515,7 @@ - Public CI_ResponsibleParty
  operator + Public GM_Envelope
  coredInterval @@ -557,14 +557,14 @@ - nillable=True
sequenceNumber=1
+ nillable=True
sequenceNumber=8
Notes: - Organisation responsible for commissioning the borehole (as opposed to drilling the borehole)<br/> + Interval(s) within the borehole from which core was recovered<br/>Use GM_Envelope with 1-D CRS corresponding to borehole curve shape<br/>
@@ -573,7 +573,7 @@ - Public BoreholeStartPointCode
  startPoint + Public CI_ResponsibleParty
  coreCustodian @@ -615,14 +615,14 @@ - inlineOrByReference=byReference
nillable=True
sequenceNumber=5
+ nillable=True
sequenceNumber=9
Notes: - Indicates the position relative to ground surface where the borehole commenced. Appropriate terms would include Drilled from Ground Surface; Drilled Underground;  Drilled from Quarry Floor etc <br/> + Organisation that is custodian of the core recovered from the borehole<br/>
diff --git a/approved/html/EARoot/EA1/EA2/EA4/EA359.htm b/approved/html/EARoot/EA1/EA2/EA4/EA359.htm index e4bc088b8..e06ee46d1 100644 --- a/approved/html/EARoot/EA1/EA2/EA4/EA359.htm +++ b/approved/html/EARoot/EA1/EA2/EA4/EA359.htm @@ -108,7 +108,7 @@ - Public
  air core + Public
  auger @@ -150,14 +150,14 @@ - sequenceNumber=3
+ sequenceNumber=1
Notes: - http://en.wikipedia.org/wiki/Drilling_rig#Air_core_drilling<br/> + http://en.wikipedia.org/wiki/Drilling_rig#Auger_drilling<br/>
@@ -166,7 +166,7 @@ - Public
  auger + Public
  hand auger @@ -208,23 +208,13 @@ - sequenceNumber=1
-
- - - - -
- Notes: - - http://en.wikipedia.org/wiki/Drilling_rig#Auger_drilling<br/> -
- + sequenceNumber=2
+   - Public
  cable tool + Public
  air core @@ -266,14 +256,14 @@ - sequenceNumber=4
+ sequenceNumber=3
Notes: - http://en.wikipedia.org/wiki/Drilling_rig#Cable_tool_drilling<br/> + http://en.wikipedia.org/wiki/Drilling_rig#Air_core_drilling<br/>
@@ -282,7 +272,7 @@ - Public
  diamond core + Public
  cable tool @@ -324,14 +314,14 @@ - sequenceNumber=5
+ sequenceNumber=4
Notes: - http://en.wikipedia.org/wiki/Drilling_rig#Diamond_core_drilling<br/> + http://en.wikipedia.org/wiki/Drilling_rig#Cable_tool_drilling<br/>
@@ -340,7 +330,7 @@ - Public
  direct push + Public
  diamond core @@ -382,14 +372,14 @@ - sequenceNumber=6
+ sequenceNumber=5
Notes: - http://en.wikipedia.org/wiki/Drilling_rig#Direct_Push_Rigs<br/> + http://en.wikipedia.org/wiki/Drilling_rig#Diamond_core_drilling<br/>
@@ -398,7 +388,7 @@ - Public
  hand auger + Public
  direct push @@ -440,8 +430,18 @@ - sequenceNumber=2
-   + sequenceNumber=6
+
+ + + + +
+ Notes: + + http://en.wikipedia.org/wiki/Drilling_rig#Direct_Push_Rigs<br/> +
+ diff --git a/approved/html/EARoot/EA1/EA2/EA4/EA360.htm b/approved/html/EARoot/EA1/EA2/EA4/EA360.htm index 81d0bc780..1de237ab1 100644 --- a/approved/html/EARoot/EA1/EA2/EA4/EA360.htm +++ b/approved/html/EARoot/EA1/EA2/EA4/EA360.htm @@ -108,7 +108,7 @@ - Public
  horizontal + Public
  vertical @@ -150,13 +150,13 @@ - sequenceNumber=2
+ sequenceNumber=1
  - Public
  inclined down + Public
  horizontal @@ -198,7 +198,7 @@ - sequenceNumber=4
+ sequenceNumber=2
  @@ -252,7 +252,7 @@ - Public
  vertical + Public
  inclined down @@ -294,7 +294,7 @@ - sequenceNumber=1
+ sequenceNumber=4
  diff --git a/approved/html/EARoot/EA1/EA2/EA4/EA361.htm b/approved/html/EARoot/EA1/EA2/EA4/EA361.htm index 237c185f5..2404d3219 100644 --- a/approved/html/EARoot/EA1/EA2/EA4/EA361.htm +++ b/approved/html/EARoot/EA1/EA2/EA4/EA361.htm @@ -108,7 +108,7 @@ - Public
  from pre-existing hole + Public
  natural ground surface @@ -150,14 +150,14 @@ - sequenceNumber=4
+ sequenceNumber=1
Notes: - New drill hole spudded off the wall of an existing hole<br/> + drilling started from a natural topographic surface<br/>
@@ -166,7 +166,7 @@ - Public
  natural ground surface + Public
  open pit floor or wall @@ -208,14 +208,14 @@ - sequenceNumber=1
+ sequenceNumber=2
Notes: - drilling started from a natural topographic surface<br/> + Drilling started from the wall of an open pit or quarry<br/>
@@ -224,7 +224,7 @@ - Public
  open pit floor or wall + Public
  underground @@ -266,14 +266,14 @@ - sequenceNumber=2
+ sequenceNumber=3
Notes: - Drilling started from the wall of an open pit or quarry<br/> + Drilling started from an underground location, such as a driveway, chamber or open-stope<br/>
@@ -282,7 +282,7 @@ - Public
  underground + Public
  from pre-existing hole @@ -324,14 +324,14 @@ - sequenceNumber=3
+ sequenceNumber=4
Notes: - Drilling started from an underground location, such as a driveway, chamber or open-stope<br/> + New drill hole spudded off the wall of an existing hole<br/>
diff --git a/approved/html/EARoot/EA1/EA2/EA5/EA2/EA378.png b/approved/html/EARoot/EA1/EA2/EA5/EA2/EA378.png index 24891d3dd..4e1424fe6 100644 Binary files a/approved/html/EARoot/EA1/EA2/EA5/EA2/EA378.png and b/approved/html/EARoot/EA1/EA2/EA5/EA2/EA378.png differ diff --git a/approved/html/EARoot/EA1/EA2/EA5/EA2/EA380.png b/approved/html/EARoot/EA1/EA2/EA5/EA2/EA380.png index ee0485189..a7e705298 100644 Binary files a/approved/html/EARoot/EA1/EA2/EA5/EA2/EA380.png and b/approved/html/EARoot/EA1/EA2/EA5/EA2/EA380.png differ diff --git a/approved/html/EARoot/EA1/EA2/EA5/EA2/EA382.png b/approved/html/EARoot/EA1/EA2/EA5/EA2/EA382.png index 0a33baecd..1221f1848 100644 Binary files a/approved/html/EARoot/EA1/EA2/EA5/EA2/EA382.png and b/approved/html/EARoot/EA1/EA2/EA5/EA2/EA382.png differ diff --git a/approved/html/EARoot/EA1/EA2/EA5/EA2/EA388.png b/approved/html/EARoot/EA1/EA2/EA5/EA2/EA388.png index 5113115b8..d3aba842c 100644 Binary files a/approved/html/EARoot/EA1/EA2/EA5/EA2/EA388.png and b/approved/html/EARoot/EA1/EA2/EA5/EA2/EA388.png differ diff --git a/approved/html/EARoot/EA1/EA2/EA5/EA2/EA392.png b/approved/html/EARoot/EA1/EA2/EA5/EA2/EA392.png index d32dddc38..6c0f3c674 100644 Binary files a/approved/html/EARoot/EA1/EA2/EA5/EA2/EA392.png and b/approved/html/EARoot/EA1/EA2/EA5/EA2/EA392.png differ diff --git a/approved/html/EARoot/EA1/EA2/EA5/EA2/EA394.png b/approved/html/EARoot/EA1/EA2/EA5/EA2/EA394.png index cdf92397d..b2449761f 100644 Binary files a/approved/html/EARoot/EA1/EA2/EA5/EA2/EA394.png and b/approved/html/EARoot/EA1/EA2/EA5/EA2/EA394.png differ diff --git a/approved/html/EARoot/EA1/EA2/EA5/EA2/EA402.png b/approved/html/EARoot/EA1/EA2/EA5/EA2/EA402.png index 39b0ba686..693d1af6f 100644 Binary files a/approved/html/EARoot/EA1/EA2/EA5/EA2/EA402.png and b/approved/html/EARoot/EA1/EA2/EA5/EA2/EA402.png differ diff --git a/approved/html/EARoot/EA1/EA2/EA5/EA2/EA417.htm b/approved/html/EARoot/EA1/EA2/EA5/EA2/EA417.htm index ad08d490c..e971ea089 100644 --- a/approved/html/EARoot/EA1/EA2/EA5/EA2/EA417.htm +++ b/approved/html/EARoot/EA1/EA2/EA5/EA2/EA417.htm @@ -109,7 +109,7 @@ - Public CGI_Term
  descriptiveOrientation + Public DeterminationMethodTerm
  determinationMethod @@ -127,7 +127,7 @@ Stereotype: - <<estimatedProperty>> + Ordered: @@ -151,14 +151,14 @@ - nillable=True
sequenceNumber=2
+ inlineOrByReference=byReference
nillable=True
sequenceNumber=1
Notes: - terminologic specification of orientation, referencing to some local geography<br/><br/> + Describes the way the orientation value was determined (eg measured, inferred from dip slope, etc)<br/>
@@ -167,7 +167,7 @@ - Public DeterminationMethodTerm
  determinationMethod + Public CGI_Term
  descriptiveOrientation @@ -185,7 +185,7 @@ Stereotype: - + <<estimatedProperty>> Ordered: @@ -209,14 +209,14 @@ - inlineOrByReference=byReference
nillable=True
sequenceNumber=1
+ nillable=True
sequenceNumber=2
Notes: - Describes the way the orientation value was determined (eg measured, inferred from dip slope, etc)<br/> + terminologic specification of orientation, referencing to some local geography<br/><br/>
diff --git a/approved/html/EARoot/EA1/EA2/EA5/EA2/EA419.htm b/approved/html/EARoot/EA1/EA2/EA5/EA2/EA419.htm index e9816c202..96c1d18c4 100644 --- a/approved/html/EARoot/EA1/EA2/EA5/EA2/EA419.htm +++ b/approved/html/EARoot/EA1/EA2/EA5/EA2/EA419.htm @@ -108,7 +108,7 @@ - Public StratigraphicDateEstimate
  olderBoundDate + Public StratigraphicDateEstimate
  reportingDate @@ -150,14 +150,14 @@ - nillable=True
sequenceNumber=2
+ sequenceNumber=1
Notes: - The older bounding time coordinate in an age range<br/><br/> + Single time coordinate value to report as representative for this NumericAge assignment<br/><br/>
@@ -166,7 +166,7 @@ - Public StratigraphicDateEstimate
  reportingDate + Public StratigraphicDateEstimate
  olderBoundDate @@ -208,14 +208,14 @@ - sequenceNumber=1
+ nillable=True
sequenceNumber=2
Notes: - Single time coordinate value to report as representative for this NumericAge assignment<br/><br/> + The older bounding time coordinate in an age range<br/><br/>
diff --git a/approved/html/EARoot/EA1/EA2/EA5/EA2/EA421.htm b/approved/html/EARoot/EA1/EA2/EA5/EA2/EA421.htm index 153ec7887..0258eb39e 100644 --- a/approved/html/EARoot/EA1/EA2/EA5/EA2/EA421.htm +++ b/approved/html/EARoot/EA1/EA2/EA5/EA2/EA421.htm @@ -109,7 +109,7 @@ - Public CGI_NumericRange
  azimuth + Public ConventionCode
  convention @@ -127,7 +127,7 @@ Stereotype: - <<estimatedProperty>> + Ordered: @@ -151,14 +151,14 @@ - nillable=True
sequenceNumber=2
+ inlineOrByReference=byReference
sequenceNumber=1
Notes: - The azimuth (compass point, bearing etc) value of the orientation. Convention reports how azimuth is interpreted; if is quadrant. Allowance of different convention makes querying more difficult.<br/><br/> + The convention used for the measurement<br/>
@@ -167,7 +167,7 @@ - Public ConventionCode
  convention + Public CGI_NumericRange
  azimuth @@ -185,7 +185,7 @@ Stereotype: - + <<estimatedProperty>> Ordered: @@ -209,14 +209,14 @@ - inlineOrByReference=byReference
sequenceNumber=1
+ nillable=True
sequenceNumber=2
Notes: - The convention used for the measurement<br/> + The azimuth (compass point, bearing etc) value of the orientation. Convention reports how azimuth is interpreted; if is quadrant. Allowance of different convention makes querying more difficult.<br/><br/>
diff --git a/approved/html/EARoot/EA1/EA2/EA5/EA2/EA432.htm b/approved/html/EARoot/EA1/EA2/EA5/EA2/EA432.htm index 80110f2e1..28837995c 100644 --- a/approved/html/EARoot/EA1/EA2/EA5/EA2/EA432.htm +++ b/approved/html/EARoot/EA1/EA2/EA5/EA2/EA432.htm @@ -108,7 +108,7 @@ - Public
  overturned + Public
  upright @@ -157,7 +157,7 @@ Notes: - The plane is overturned (eg the bedding is overturned)<br/> + The plane is upright (eg bedding is upright facing)<br/> @@ -166,7 +166,7 @@ - Public
  upright + Public
  overturned @@ -215,7 +215,7 @@ Notes: - The plane is upright (eg bedding is upright facing)<br/> + The plane is overturned (eg the bedding is overturned)<br/> diff --git a/approved/html/EARoot/EA1/EA2/EA5/EA2/EA433.htm b/approved/html/EARoot/EA1/EA2/EA5/EA2/EA433.htm index 0b49f89ff..fa1b2f4b2 100644 --- a/approved/html/EARoot/EA1/EA2/EA5/EA2/EA433.htm +++ b/approved/html/EARoot/EA1/EA2/EA5/EA2/EA433.htm @@ -108,7 +108,7 @@ - Public
  always + Public
  equalTo @@ -156,7 +156,7 @@ - Public
  approximate + Public
  greaterThan @@ -204,7 +204,7 @@ - Public
  common + Public
  lessThan @@ -252,7 +252,7 @@ - Public
  equalTo + Public
  always @@ -300,7 +300,7 @@ - Public
  greaterThan + Public
  common @@ -348,7 +348,7 @@ - Public
  lessThan + Public
  approximate @@ -396,7 +396,7 @@ - Public
  never + Public
  sometimes @@ -492,7 +492,7 @@ - Public
  sometimes + Public
  never diff --git a/approved/html/EARoot/EA1/EA2/EA6/EA437.png b/approved/html/EARoot/EA1/EA2/EA6/EA437.png index 142d782aa..8ab79cefc 100644 Binary files a/approved/html/EARoot/EA1/EA2/EA6/EA437.png and b/approved/html/EARoot/EA1/EA2/EA6/EA437.png differ diff --git a/approved/html/EARoot/EA1/EA2/EA7/EA1/EA463.png b/approved/html/EARoot/EA1/EA2/EA7/EA1/EA463.png index 22f68ff82..4188a1cb5 100644 Binary files a/approved/html/EARoot/EA1/EA2/EA7/EA1/EA463.png and b/approved/html/EARoot/EA1/EA2/EA7/EA1/EA463.png differ diff --git a/approved/html/EARoot/EA1/EA2/EA7/EA1/EA467.png b/approved/html/EARoot/EA1/EA2/EA7/EA1/EA467.png index 6682bdff8..fe8d78b83 100644 Binary files a/approved/html/EARoot/EA1/EA2/EA7/EA1/EA467.png and b/approved/html/EARoot/EA1/EA2/EA7/EA1/EA467.png differ diff --git a/approved/html/EARoot/EA1/EA2/EA7/EA1/EA469.png b/approved/html/EARoot/EA1/EA2/EA7/EA1/EA469.png index 6c599c0a6..9251e4172 100644 Binary files a/approved/html/EARoot/EA1/EA2/EA7/EA1/EA469.png and b/approved/html/EARoot/EA1/EA2/EA7/EA1/EA469.png differ diff --git a/approved/html/EARoot/EA1/EA2/EA7/EA1/EA471.png b/approved/html/EARoot/EA1/EA2/EA7/EA1/EA471.png index 807f34e90..0e8e22376 100644 Binary files a/approved/html/EARoot/EA1/EA2/EA7/EA1/EA471.png and b/approved/html/EARoot/EA1/EA2/EA7/EA1/EA471.png differ diff --git a/approved/html/EARoot/EA1/EA2/EA7/EA1/EA473.png b/approved/html/EARoot/EA1/EA2/EA7/EA1/EA473.png index 9bbacc50b..7ac2a0c27 100644 Binary files a/approved/html/EARoot/EA1/EA2/EA7/EA1/EA473.png and b/approved/html/EARoot/EA1/EA2/EA7/EA1/EA473.png differ diff --git a/approved/html/EARoot/EA1/EA2/EA7/EA1/EA487.htm b/approved/html/EARoot/EA1/EA2/EA7/EA1/EA487.htm index a62cec4ba..d3ac6aa62 100644 --- a/approved/html/EARoot/EA1/EA2/EA7/EA1/EA487.htm +++ b/approved/html/EARoot/EA1/EA2/EA7/EA1/EA487.htm @@ -108,7 +108,7 @@ - Public Date
  commissionDate + Public InstrumentTypeTerm
  type @@ -150,14 +150,14 @@ - nillable=True
sequenceNumber=4
+ inlineOrByReference=byReference
sequenceNumber=1
Notes: - The date of the commissioning of an instrument (optional)<br/> + The category of instrument used in an analytical session (eg; XRF, ICPMS, SHRIMP, etc)<br/>
@@ -166,7 +166,7 @@ - Public CI_ResponsibleParty
  location + Public CharacterString
  model @@ -208,14 +208,14 @@ - nillable=true
sequenceNumber=5
+ nillable=true
sequenceNumber=2
Notes: - The location and owner of an instrument<br/> + An optional text string to identify the model of instrument used. (eg instrument type = XRD, model = Siemens Diffraktometer D500)<br/>
@@ -224,7 +224,7 @@ - Public CharacterString
  model + Public CharacterString
  serialNumber @@ -266,14 +266,14 @@ - nillable=true
sequenceNumber=2
+ nillable=True
sequenceNumber=3
Notes: - An optional text string to identify the model of instrument used. (eg instrument type = XRD, model = Siemens Diffraktometer D500)<br/> + An optional text string for the serial number of the machine used in an analytical session.<br/>
@@ -282,7 +282,7 @@ - Public CharacterString
  serialNumber + Public Date
  commissionDate @@ -324,14 +324,14 @@ - nillable=True
sequenceNumber=3
+ nillable=True
sequenceNumber=4
Notes: - An optional text string for the serial number of the machine used in an analytical session.<br/> + The date of the commissioning of an instrument (optional)<br/>
@@ -340,7 +340,7 @@ - Public InstrumentTypeTerm
  type + Public CI_ResponsibleParty
  location @@ -382,14 +382,14 @@ - inlineOrByReference=byReference
sequenceNumber=1
+ nillable=true
sequenceNumber=5
Notes: - The category of instrument used in an analytical session (eg; XRF, ICPMS, SHRIMP, etc)<br/> + The location and owner of an instrument<br/>
diff --git a/approved/html/EARoot/EA1/EA2/EA7/EA1/EA489.htm b/approved/html/EARoot/EA1/EA2/EA7/EA1/EA489.htm index e2b35488d..deac09e91 100644 --- a/approved/html/EARoot/EA1/EA2/EA7/EA1/EA489.htm +++ b/approved/html/EARoot/EA1/EA2/EA7/EA1/EA489.htm @@ -109,7 +109,7 @@ - Public CI_ResponsibleParty
  operator + Public TM_Period
  time @@ -151,14 +151,14 @@ - sequenceNumber=2
+ sequenceNumber=1
Notes: - The name of the operator or organisation responsible for the analytical session<br/> + The time period during which the analysis was performed<br/>
@@ -167,7 +167,7 @@ - Public NamedValue
  parameter + Public CI_ResponsibleParty
  operator @@ -209,14 +209,14 @@ - nillable=True
sequenceNumber=3
+ sequenceNumber=2
Notes: - This association is analogous to the "parameter" attribute of OM_Observation, but in this case describes environmental or instrument setting parameters that apply to an entire analytical session (eg, voltage, current, temperature, vacuum).  The "name" attribute of NamedValue is implemented in OMXML as a byReference URI to a controlled list.<br/> + The name of the operator or organisation responsible for the analytical session<br/>
@@ -225,7 +225,7 @@ - Public TM_Period
  time + Public NamedValue
  parameter @@ -267,14 +267,14 @@ - sequenceNumber=1
+ nillable=True
sequenceNumber=3
Notes: - The time period during which the analysis was performed<br/> + This association is analogous to the "parameter" attribute of OM_Observation, but in this case describes environmental or instrument setting parameters that apply to an entire analytical session (eg, voltage, current, temperature, vacuum).  The "name" attribute of NamedValue is implemented in OMXML as a byReference URI to a controlled list.<br/>
diff --git a/approved/html/EARoot/EA1/EA2/EA7/EA1/EA491.htm b/approved/html/EARoot/EA1/EA2/EA7/EA1/EA491.htm index 1704778bf..0980926ac 100644 --- a/approved/html/EARoot/EA1/EA2/EA7/EA1/EA491.htm +++ b/approved/html/EARoot/EA1/EA2/EA7/EA1/EA491.htm @@ -108,7 +108,7 @@ - Public CI_Citation
  citation + Public AnalyticalMethodTerm
  methodName @@ -150,14 +150,14 @@ - nillable=True
sequenceNumber=2
+ inlineOrByReference=byReference
sequenceNumber=1
Notes: - A published description of a particular analytical method (eg; a standard operating procedure document).  This attribute is nillable if such a document does not exist.<br/> + Reference to a controlled vocabulary of names of analytical method used in a session (eg; XRF mass spectrometry, ICPMS, SHRIMP geochronology)<br/>
@@ -166,7 +166,7 @@ - Public AnalyticalMethodTerm
  methodName + Public CI_Citation
  citation @@ -208,14 +208,14 @@ - inlineOrByReference=byReference
sequenceNumber=1
+ nillable=True
sequenceNumber=2
Notes: - Reference to a controlled vocabulary of names of analytical method used in a session (eg; XRF mass spectrometry, ICPMS, SHRIMP geochronology)<br/> + A published description of a particular analytical method (eg; a standard operating procedure document).  This attribute is nillable if such a document does not exist.<br/>
diff --git a/approved/html/EARoot/EA1/EA2/EA7/EA2/EA495.png b/approved/html/EARoot/EA1/EA2/EA7/EA2/EA495.png index e8480444b..a611511c9 100644 Binary files a/approved/html/EARoot/EA1/EA2/EA7/EA2/EA495.png and b/approved/html/EARoot/EA1/EA2/EA7/EA2/EA495.png differ diff --git a/approved/html/EARoot/EA1/EA2/EA7/EA2/EA497.png b/approved/html/EARoot/EA1/EA2/EA7/EA2/EA497.png index 7a85a0b20..5726e1888 100644 Binary files a/approved/html/EARoot/EA1/EA2/EA7/EA2/EA497.png and b/approved/html/EARoot/EA1/EA2/EA7/EA2/EA497.png differ diff --git a/approved/html/EARoot/EA1/EA2/EA7/EA3/EA517.png b/approved/html/EARoot/EA1/EA2/EA7/EA3/EA517.png index d1e4028ba..4f21b8416 100644 Binary files a/approved/html/EARoot/EA1/EA2/EA7/EA3/EA517.png and b/approved/html/EARoot/EA1/EA2/EA7/EA3/EA517.png differ diff --git a/approved/html/EARoot/EA1/EA2/EA7/EA3/EA519.png b/approved/html/EARoot/EA1/EA2/EA7/EA3/EA519.png index fddeecbbd..bfd37bc0b 100644 Binary files a/approved/html/EARoot/EA1/EA2/EA7/EA3/EA519.png and b/approved/html/EARoot/EA1/EA2/EA7/EA3/EA519.png differ diff --git a/approved/html/EARoot/EA1/EA2/EA8/EA533.png b/approved/html/EARoot/EA1/EA2/EA8/EA533.png index cb9bcfa4d..7504d60da 100644 Binary files a/approved/html/EARoot/EA1/EA2/EA8/EA533.png and b/approved/html/EARoot/EA1/EA2/EA8/EA533.png differ diff --git a/approved/html/EARoot/EA1/EA2/EA8/EA535.png b/approved/html/EARoot/EA1/EA2/EA8/EA535.png index e21de4d17..7f190ea6a 100644 Binary files a/approved/html/EARoot/EA1/EA2/EA8/EA535.png and b/approved/html/EARoot/EA1/EA2/EA8/EA535.png differ diff --git a/approved/html/EARoot/EA1/EA2/EA8/EA537.png b/approved/html/EARoot/EA1/EA2/EA8/EA537.png index de43f4cd9..451a3b907 100644 Binary files a/approved/html/EARoot/EA1/EA2/EA8/EA537.png and b/approved/html/EARoot/EA1/EA2/EA8/EA537.png differ diff --git a/approved/html/EARoot/EA1/EA2/EA8/EA546.htm b/approved/html/EARoot/EA1/EA2/EA8/EA546.htm index 273d194a4..7adb8cbbd 100644 --- a/approved/html/EARoot/EA1/EA2/EA8/EA546.htm +++ b/approved/html/EARoot/EA1/EA2/EA8/EA546.htm @@ -108,7 +108,7 @@ - Public PhysicalPropertyValue
  propertyMeasure + Public PhysicalPropertyTerm
  propertyName @@ -126,7 +126,7 @@ Stereotype: - <<estimatedProperty>> + Ordered: @@ -150,14 +150,14 @@ - sequenceNumber=2
+ inlineOrByReference=byReference
sequenceNumber=1
Notes: - A scalar or vector measurement of the physical property of a rock material<br/> + A term from a controlled vocabulary of physical properties of rock materials (eg; density, porosity, magnetic susceptibility, remanent magnetism, permeability, seismic velocity)<br/><br/>
@@ -166,7 +166,7 @@ - Public PhysicalPropertyTerm
  propertyName + Public PhysicalPropertyValue
  propertyMeasure @@ -184,7 +184,7 @@ Stereotype: - + <<estimatedProperty>> Ordered: @@ -208,14 +208,14 @@ - inlineOrByReference=byReference
sequenceNumber=1
+ sequenceNumber=2
Notes: - A term from a controlled vocabulary of physical properties of rock materials (eg; density, porosity, magnetic susceptibility, remanent magnetism, permeability, seismic velocity)<br/><br/> + A scalar or vector measurement of the physical property of a rock material<br/>
diff --git a/approved/html/EARoot/EA1/EA2/EA8/EA548.htm b/approved/html/EARoot/EA1/EA2/EA8/EA548.htm index 54b530d15..feb20c977 100644 --- a/approved/html/EARoot/EA1/EA2/EA8/EA548.htm +++ b/approved/html/EARoot/EA1/EA2/EA8/EA548.htm @@ -165,7 +165,7 @@ - Public SquareMatrix
  tensor + Public Vector
  vector @@ -207,7 +207,7 @@ - sequenceNumber=3
+ sequenceNumber=2
@@ -265,7 +265,7 @@
@@ -223,7 +223,7 @@
- Public Vector
  vector + Public SquareMatrix
  tensor
- sequenceNumber=2
+ sequenceNumber=3
@@ -154,7 +154,7 @@ diff --git a/approved/html/EARoot/EA1/EA3/EA1/EA1/EA648.htm b/approved/html/EARoot/EA1/EA3/EA1/EA1/EA648.htm index 9c3b7e642..4d1c5f344 100644 --- a/approved/html/EARoot/EA1/EA3/EA1/EA1/EA648.htm +++ b/approved/html/EARoot/EA1/EA3/EA1/EA1/EA648.htm @@ -109,7 +109,7 @@ @@ -135,7 +135,7 @@ - + @@ -157,7 +157,7 @@ @@ -183,7 +183,7 @@ - + diff --git a/approved/html/EARoot/EA1/EA3/EA1/EA1/EA649.htm b/approved/html/EARoot/EA1/EA3/EA1/EA1/EA649.htm index c1ee4ef60..bab664768 100644 --- a/approved/html/EARoot/EA1/EA3/EA1/EA1/EA649.htm +++ b/approved/html/EARoot/EA1/EA3/EA1/EA1/EA649.htm @@ -108,7 +108,7 @@ @@ -130,7 +130,7 @@ - + @@ -204,7 +204,7 @@ @@ -226,7 +226,7 @@ - + @@ -252,7 +252,7 @@ @@ -300,7 +300,7 @@ @@ -322,11 +322,11 @@ - + - + @@ -348,7 +348,7 @@ @@ -396,7 +396,7 @@ @@ -418,11 +418,11 @@ - + - + diff --git a/approved/html/EARoot/EA1/EA3/EA1/EA1/EA652.htm b/approved/html/EARoot/EA1/EA3/EA1/EA1/EA652.htm index 5949bf3b4..f4736e08b 100644 --- a/approved/html/EARoot/EA1/EA3/EA1/EA1/EA652.htm +++ b/approved/html/EARoot/EA1/EA3/EA1/EA1/EA652.htm @@ -107,7 +107,7 @@ @@ -155,7 +155,7 @@ @@ -177,7 +177,7 @@ - + @@ -203,7 +203,7 @@ @@ -251,7 +251,7 @@ @@ -347,7 +347,7 @@ @@ -395,7 +395,7 @@ @@ -417,7 +417,7 @@ - + diff --git a/approved/html/EARoot/EA1/EA3/EA1/EA1/EA653.htm b/approved/html/EARoot/EA1/EA3/EA1/EA1/EA653.htm index 1dd420591..b9900bdb7 100644 --- a/approved/html/EARoot/EA1/EA3/EA1/EA1/EA653.htm +++ b/approved/html/EARoot/EA1/EA3/EA1/EA1/EA653.htm @@ -107,7 +107,7 @@ @@ -133,7 +133,7 @@ - + @@ -155,7 +155,7 @@ @@ -203,7 +203,7 @@ @@ -229,7 +229,7 @@ - + @@ -251,7 +251,7 @@ @@ -299,7 +299,7 @@ @@ -325,7 +325,7 @@ - + @@ -347,7 +347,7 @@ @@ -373,7 +373,7 @@ - + diff --git a/approved/html/EARoot/EA1/EA3/EA1/EA1/EA656.htm b/approved/html/EARoot/EA1/EA3/EA1/EA1/EA656.htm index 8ea681b09..e77187eae 100644 --- a/approved/html/EARoot/EA1/EA3/EA1/EA1/EA656.htm +++ b/approved/html/EARoot/EA1/EA3/EA1/EA1/EA656.htm @@ -110,7 +110,7 @@ @@ -158,7 +158,7 @@ diff --git a/approved/html/EARoot/EA1/EA3/EA1/EA1/EA658.htm b/approved/html/EARoot/EA1/EA3/EA1/EA1/EA658.htm index d3171f27b..87e053afd 100644 --- a/approved/html/EARoot/EA1/EA3/EA1/EA1/EA658.htm +++ b/approved/html/EARoot/EA1/EA3/EA1/EA1/EA658.htm @@ -108,7 +108,7 @@ @@ -134,7 +134,7 @@ - + @@ -156,7 +156,7 @@ @@ -300,7 +300,7 @@ @@ -326,7 +326,7 @@ - + @@ -348,7 +348,7 @@ diff --git a/approved/html/EARoot/EA1/EA3/EA1/EA1/EA664.htm b/approved/html/EARoot/EA1/EA3/EA1/EA1/EA664.htm index f4fec1f81..38869975e 100644 --- a/approved/html/EARoot/EA1/EA3/EA1/EA1/EA664.htm +++ b/approved/html/EARoot/EA1/EA3/EA1/EA1/EA664.htm @@ -107,7 +107,7 @@ @@ -129,11 +129,11 @@ - + - + @@ -155,7 +155,7 @@ @@ -177,11 +177,11 @@ - + - + diff --git a/approved/html/EARoot/EA1/EA3/EA1/EA1/EA665.htm b/approved/html/EARoot/EA1/EA3/EA1/EA1/EA665.htm index 9cb28aa5e..c8405cba4 100644 --- a/approved/html/EARoot/EA1/EA3/EA1/EA1/EA665.htm +++ b/approved/html/EARoot/EA1/EA3/EA1/EA1/EA665.htm @@ -157,7 +157,7 @@ @@ -253,7 +253,7 @@ diff --git a/approved/html/EARoot/EA1/EA3/EA1/EA1/EA671.htm b/approved/html/EARoot/EA1/EA3/EA1/EA1/EA671.htm index ee23ae3dc..1e147d498 100644 --- a/approved/html/EARoot/EA1/EA3/EA1/EA1/EA671.htm +++ b/approved/html/EARoot/EA1/EA3/EA1/EA1/EA671.htm @@ -108,7 +108,7 @@ @@ -156,7 +156,7 @@ @@ -182,7 +182,7 @@ - + @@ -204,7 +204,7 @@ @@ -230,7 +230,7 @@ - + @@ -252,7 +252,7 @@ diff --git a/approved/html/EARoot/EA1/EA3/EA1/EA1/EA674.htm b/approved/html/EARoot/EA1/EA3/EA1/EA1/EA674.htm index b903a873c..f2e89f0bd 100644 --- a/approved/html/EARoot/EA1/EA3/EA1/EA1/EA674.htm +++ b/approved/html/EARoot/EA1/EA3/EA1/EA1/EA674.htm @@ -108,7 +108,7 @@ @@ -134,7 +134,7 @@ - + @@ -156,7 +156,7 @@ @@ -182,7 +182,7 @@ - + diff --git a/approved/html/EARoot/EA1/EA3/EA1/EA1/EA675.htm b/approved/html/EARoot/EA1/EA3/EA1/EA1/EA675.htm index dd7731869..1a411a509 100644 --- a/approved/html/EARoot/EA1/EA3/EA1/EA1/EA675.htm +++ b/approved/html/EARoot/EA1/EA3/EA1/EA1/EA675.htm @@ -109,7 +109,7 @@ @@ -157,7 +157,7 @@ @@ -183,7 +183,7 @@ - + @@ -263,7 +263,7 @@ @@ -289,7 +289,7 @@ - + diff --git a/approved/html/EARoot/EA1/EA3/EA1/EA1/EA676.htm b/approved/html/EARoot/EA1/EA3/EA1/EA1/EA676.htm index e714cdd15..56c794c2a 100644 --- a/approved/html/EARoot/EA1/EA3/EA1/EA1/EA676.htm +++ b/approved/html/EARoot/EA1/EA3/EA1/EA1/EA676.htm @@ -107,7 +107,7 @@ @@ -133,7 +133,7 @@ - + @@ -155,7 +155,7 @@ @@ -181,7 +181,7 @@ - + diff --git a/approved/html/EARoot/EA1/EA3/EA1/EA1/EA679.htm b/approved/html/EARoot/EA1/EA3/EA1/EA1/EA679.htm index 7e834788f..00f0db991 100644 --- a/approved/html/EARoot/EA1/EA3/EA1/EA1/EA679.htm +++ b/approved/html/EARoot/EA1/EA3/EA1/EA1/EA679.htm @@ -107,7 +107,7 @@ @@ -155,7 +155,7 @@ diff --git a/approved/html/EARoot/EA1/EA3/EA1/EA1/EA681.htm b/approved/html/EARoot/EA1/EA3/EA1/EA1/EA681.htm index d72529953..a34058bce 100644 --- a/approved/html/EARoot/EA1/EA3/EA1/EA1/EA681.htm +++ b/approved/html/EARoot/EA1/EA3/EA1/EA1/EA681.htm @@ -154,7 +154,7 @@ @@ -202,7 +202,7 @@ diff --git a/approved/html/EARoot/EA1/EA3/EA1/EA1/EA682.htm b/approved/html/EARoot/EA1/EA3/EA1/EA1/EA682.htm index 66037911a..16cafdc92 100644 --- a/approved/html/EARoot/EA1/EA3/EA1/EA1/EA682.htm +++ b/approved/html/EARoot/EA1/EA3/EA1/EA1/EA682.htm @@ -106,7 +106,7 @@ @@ -154,7 +154,7 @@ diff --git a/approved/html/EARoot/EA1/EA3/EA1/EA1/EA686.htm b/approved/html/EARoot/EA1/EA3/EA1/EA1/EA686.htm index 6f1f35061..81b0ce2a7 100644 --- a/approved/html/EARoot/EA1/EA3/EA1/EA1/EA686.htm +++ b/approved/html/EARoot/EA1/EA3/EA1/EA1/EA686.htm @@ -108,7 +108,7 @@ @@ -134,7 +134,7 @@ - + @@ -156,7 +156,7 @@ @@ -182,7 +182,7 @@ - + diff --git a/approved/html/EARoot/EA1/EA3/EA1/EA1/EA687.htm b/approved/html/EARoot/EA1/EA3/EA1/EA1/EA687.htm index a0a236372..64dc238f6 100644 --- a/approved/html/EARoot/EA1/EA3/EA1/EA1/EA687.htm +++ b/approved/html/EARoot/EA1/EA3/EA1/EA1/EA687.htm @@ -106,7 +106,7 @@ @@ -154,7 +154,7 @@ @@ -250,7 +250,7 @@ diff --git a/approved/html/EARoot/EA1/EA3/EA1/EA1/EA690.htm b/approved/html/EARoot/EA1/EA3/EA1/EA1/EA690.htm index 5cc1b15a5..680827bd9 100644 --- a/approved/html/EARoot/EA1/EA3/EA1/EA1/EA690.htm +++ b/approved/html/EARoot/EA1/EA3/EA1/EA1/EA690.htm @@ -110,7 +110,7 @@ @@ -136,7 +136,7 @@ - + @@ -158,7 +158,7 @@ @@ -184,7 +184,7 @@ - + diff --git a/approved/html/EARoot/EA1/EA3/EA10/EA1/EA1976.png b/approved/html/EARoot/EA1/EA3/EA10/EA1/EA1976.png index ebc4481a2..defc75aad 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA10/EA1/EA1976.png and b/approved/html/EARoot/EA1/EA3/EA10/EA1/EA1976.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA10/EA1/EA1978.png b/approved/html/EARoot/EA1/EA3/EA10/EA1/EA1978.png index 64adea521..a47187863 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA10/EA1/EA1978.png and b/approved/html/EARoot/EA1/EA3/EA10/EA1/EA1978.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA10/EA1/EA1980.png b/approved/html/EARoot/EA1/EA3/EA10/EA1/EA1980.png index 2ebd72056..c777794b8 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA10/EA1/EA1980.png and b/approved/html/EARoot/EA1/EA3/EA10/EA1/EA1980.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA10/EA1/EA1984.png b/approved/html/EARoot/EA1/EA3/EA10/EA1/EA1984.png index cd62f1803..1552ad824 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA10/EA1/EA1984.png and b/approved/html/EARoot/EA1/EA3/EA10/EA1/EA1984.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA10/EA1/EA1992.png b/approved/html/EARoot/EA1/EA3/EA10/EA1/EA1992.png index 3fe0ec524..d0079374f 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA10/EA1/EA1992.png and b/approved/html/EARoot/EA1/EA3/EA10/EA1/EA1992.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA10/EA1/EA1994.png b/approved/html/EARoot/EA1/EA3/EA10/EA1/EA1994.png index 568833c0e..5b0fb21e2 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA10/EA1/EA1994.png and b/approved/html/EARoot/EA1/EA3/EA10/EA1/EA1994.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA10/EA1/EA1996.png b/approved/html/EARoot/EA1/EA3/EA10/EA1/EA1996.png index 284e33bd9..43367d35b 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA10/EA1/EA1996.png and b/approved/html/EARoot/EA1/EA3/EA10/EA1/EA1996.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA10/EA1/EA1998.png b/approved/html/EARoot/EA1/EA3/EA10/EA1/EA1998.png index 32e5b41ae..4753707b0 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA10/EA1/EA1998.png and b/approved/html/EARoot/EA1/EA3/EA10/EA1/EA1998.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA10/EA1/EA2000.png b/approved/html/EARoot/EA1/EA3/EA10/EA1/EA2000.png index 5a6bf48ab..d6dd8de3d 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA10/EA1/EA2000.png and b/approved/html/EARoot/EA1/EA3/EA10/EA1/EA2000.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA10/EA1/EA2002.png b/approved/html/EARoot/EA1/EA3/EA10/EA1/EA2002.png index 7c29406cc..615453b5d 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA10/EA1/EA2002.png and b/approved/html/EARoot/EA1/EA3/EA10/EA1/EA2002.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA10/EA1/EA2006.png b/approved/html/EARoot/EA1/EA3/EA10/EA1/EA2006.png index 9f80fae4b..bad16c731 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA10/EA1/EA2006.png and b/approved/html/EARoot/EA1/EA3/EA10/EA1/EA2006.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA10/EA1/EA2008.png b/approved/html/EARoot/EA1/EA3/EA10/EA1/EA2008.png index 01b700589..f001a5247 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA10/EA1/EA2008.png and b/approved/html/EARoot/EA1/EA3/EA10/EA1/EA2008.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA10/EA1/EA2010.png b/approved/html/EARoot/EA1/EA3/EA10/EA1/EA2010.png index 53fc2d10f..b4a06bac2 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA10/EA1/EA2010.png and b/approved/html/EARoot/EA1/EA3/EA10/EA1/EA2010.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA10/EA1/EA2012.png b/approved/html/EARoot/EA1/EA3/EA10/EA1/EA2012.png index 9fe7f4fda..2652f885f 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA10/EA1/EA2012.png and b/approved/html/EARoot/EA1/EA3/EA10/EA1/EA2012.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA10/EA1/EA2014.png b/approved/html/EARoot/EA1/EA3/EA10/EA1/EA2014.png index eff311ac5..7e86e8ec5 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA10/EA1/EA2014.png and b/approved/html/EARoot/EA1/EA3/EA10/EA1/EA2014.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA10/EA1/EA2016.png b/approved/html/EARoot/EA1/EA3/EA10/EA1/EA2016.png index a4cfde0eb..4a9b94346 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA10/EA1/EA2016.png and b/approved/html/EARoot/EA1/EA3/EA10/EA1/EA2016.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA10/EA1/EA2020.png b/approved/html/EARoot/EA1/EA3/EA10/EA1/EA2020.png index 23c220980..a82ebba31 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA10/EA1/EA2020.png and b/approved/html/EARoot/EA1/EA3/EA10/EA1/EA2020.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA10/EA1/EA2022.png b/approved/html/EARoot/EA1/EA3/EA10/EA1/EA2022.png index c7b8d854e..af84b562e 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA10/EA1/EA2022.png and b/approved/html/EARoot/EA1/EA3/EA10/EA1/EA2022.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA10/EA1/EA2024.png b/approved/html/EARoot/EA1/EA3/EA10/EA1/EA2024.png index 2d3d4aa7b..6361b4c47 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA10/EA1/EA2024.png and b/approved/html/EARoot/EA1/EA3/EA10/EA1/EA2024.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA10/EA1/EA2038.htm b/approved/html/EARoot/EA1/EA3/EA10/EA1/EA2038.htm index 3ca8c0830..0672b38c0 100644 --- a/approved/html/EARoot/EA1/EA3/EA10/EA1/EA2038.htm +++ b/approved/html/EARoot/EA1/EA3/EA10/EA1/EA2038.htm @@ -169,7 +169,7 @@ @@ -183,7 +183,7 @@ - + @@ -218,7 +218,7 @@ Notes:
diff --git a/approved/html/EARoot/EA1/EA2/EA9/EA556.png b/approved/html/EARoot/EA1/EA2/EA9/EA556.png index 3af326e81..4d16f811b 100644 Binary files a/approved/html/EARoot/EA1/EA2/EA9/EA556.png and b/approved/html/EARoot/EA1/EA2/EA9/EA556.png differ diff --git a/approved/html/EARoot/EA1/EA2/EA9/EA558.png b/approved/html/EARoot/EA1/EA2/EA9/EA558.png index 13f6205db..b5edb0986 100644 Binary files a/approved/html/EARoot/EA1/EA2/EA9/EA558.png and b/approved/html/EARoot/EA1/EA2/EA9/EA558.png differ diff --git a/approved/html/EARoot/EA1/EA2/EA9/EA560.png b/approved/html/EARoot/EA1/EA2/EA9/EA560.png index 0cd9df6c7..f46b031cd 100644 Binary files a/approved/html/EARoot/EA1/EA2/EA9/EA560.png and b/approved/html/EARoot/EA1/EA2/EA9/EA560.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA1/EA1/EA611.png b/approved/html/EARoot/EA1/EA3/EA1/EA1/EA611.png index 54c45f28a..23165cbec 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA1/EA1/EA611.png and b/approved/html/EARoot/EA1/EA3/EA1/EA1/EA611.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA1/EA1/EA615.png b/approved/html/EARoot/EA1/EA3/EA1/EA1/EA615.png index 5f070700a..d14cdaa87 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA1/EA1/EA615.png and b/approved/html/EARoot/EA1/EA3/EA1/EA1/EA615.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA1/EA1/EA619.png b/approved/html/EARoot/EA1/EA3/EA1/EA1/EA619.png index 81881f517..702524bfc 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA1/EA1/EA619.png and b/approved/html/EARoot/EA1/EA3/EA1/EA1/EA619.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA1/EA1/EA621.png b/approved/html/EARoot/EA1/EA3/EA1/EA1/EA621.png index 3664d1b79..5951eb30f 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA1/EA1/EA621.png and b/approved/html/EARoot/EA1/EA3/EA1/EA1/EA621.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA1/EA1/EA623.png b/approved/html/EARoot/EA1/EA3/EA1/EA1/EA623.png index c738ee4c6..af007d6fe 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA1/EA1/EA623.png and b/approved/html/EARoot/EA1/EA3/EA1/EA1/EA623.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA1/EA1/EA625.png b/approved/html/EARoot/EA1/EA3/EA1/EA1/EA625.png index 1a1c79be9..8a654eb67 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA1/EA1/EA625.png and b/approved/html/EARoot/EA1/EA3/EA1/EA1/EA625.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA1/EA1/EA627.png b/approved/html/EARoot/EA1/EA3/EA1/EA1/EA627.png index 521ea9127..b6f2eddad 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA1/EA1/EA627.png and b/approved/html/EARoot/EA1/EA3/EA1/EA1/EA627.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA1/EA1/EA629.png b/approved/html/EARoot/EA1/EA3/EA1/EA1/EA629.png index b17cdc00b..3ee3b1565 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA1/EA1/EA629.png and b/approved/html/EARoot/EA1/EA3/EA1/EA1/EA629.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA1/EA1/EA631.png b/approved/html/EARoot/EA1/EA3/EA1/EA1/EA631.png index 3319ef1f1..73aeef0be 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA1/EA1/EA631.png and b/approved/html/EARoot/EA1/EA3/EA1/EA1/EA631.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA1/EA1/EA635.png b/approved/html/EARoot/EA1/EA3/EA1/EA1/EA635.png index c26246d7d..b3983aee4 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA1/EA1/EA635.png and b/approved/html/EARoot/EA1/EA3/EA1/EA1/EA635.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA1/EA1/EA637.png b/approved/html/EARoot/EA1/EA3/EA1/EA1/EA637.png index 53f356024..82515c10c 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA1/EA1/EA637.png and b/approved/html/EARoot/EA1/EA3/EA1/EA1/EA637.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA1/EA1/EA646.htm b/approved/html/EARoot/EA1/EA3/EA1/EA1/EA646.htm index 6acfd3226..6438a8d26 100644 --- a/approved/html/EARoot/EA1/EA3/EA1/EA1/EA646.htm +++ b/approved/html/EARoot/EA1/EA3/EA1/EA1/EA646.htm @@ -106,7 +106,7 @@
- Public Angle
  azimuth + Public Distance
  distance
- Public Distance
  distance + Public Angle
  azimuth
- Public SD_FittingFunction
  fittingFunction + Public CV_GridPoint
  regionOfValidity
- Public CV_GridPoint
  regionOfValidity + Public SD_FittingFunction
  fittingFunction
- Public SD_ArrayDimension
  arrayDimensions + Public Integer
  numberOfDimensions
- Public SD_ShapeCode
  detectorShape + Public SD_ArrayDimension
  arrayDimensions
- Public Length
  detectorSize + Public Vector
  offsetVectors
- Public SD_Distortion
  distortion + Public Length
  detectorSize
- Public Integer
  numberOfDimensions + Public SD_ShapeCode
  detectorShape
- Public Vector
  offsetVectors + Public SD_Distortion
  distortion
- Public Integer
  columns + Public Integer
  rows
- Public Real
  distortionValues + Public Integer
  columns
- Public Integer
  rows + Public Integer
  xOffset
- Public Integer
  xOffset + Public Integer
  yOffset
- Public Integer
  yOffset + Public Integer
  ySpacing
- Public Integer
  ySpacing + Public Real
  distortionValues
- Public Acceleration
  acceleration + Public SD_Attitude
  attitude
- Public AngularAcceleration
  angularAcceleration + Public Velocity
  velocity
- Public AngularVelocity
  angularVelocity + Public Acceleration
  acceleration
- Public SD_Attitude
  attitude + Public AngularVelocity
  angularVelocity
- Public DateTime
  dateTime + Public AngularAcceleration
  angularAcceleration
- Public Velocity
  velocity + Public DateTime
  dateTime
- Public CI_Contact
  accessInformation + Public Boolean
  accessRestricted
- Public Boolean
  accessRestricted + Public CI_Contact
  accessInformation
- Public SD_AzimuthMeasure
  azimuthIPR + Public Distance
  columnSpacing
- Public Distance
  columnSpacing + Public Distance
  rowSpacing
- Public SD_SurfaceCode
  referenceSurface + Public SD_AzimuthMeasure
  azimuthIPR
- Public Distance
  rowSpacing + Public SD_SurfaceCode
  referenceSurface
- Public Vector
  offsets + Public DirectPosition
  origin
- Public DirectPosition
  origin + Public Vector
  offsets
- Public DQ_PositionalAccuracy
  covPrincPtAutocoll + Public DQ_QuantitativeAttributeAccuracy
  qualityOfFocalLength
- Public DQ_QuantitativeAttributeAccuracy
  qualityOfFocalLength + Public DQ_PositionalAccuracy
  covPrincPtAutocoll
- Public SD_PlatformDynamics
  dynamics + Public SD_Position
  observedPosition
- Public SD_Position
  observedPosition + Public Vector
  positionObservationOffset
- Public Vector
  offsetOfINS + Public SD_PlatformDynamics
  dynamics
- Public Vector
  positionObservationOffset + Public Vector
  offsetOfINS
- Public DQ_PositionalAccuracy
  navigationalConfidence + Public DateTime
  timeOfMeasurement
- Public DateTime
  timeOfMeasurement + Public DQ_PositionalAccuracy
  navigationalConfidence
- Public SC_CRS
  CRS + Public SD_Dynamics
  dynamics
- Public SD_Dynamics
  dynamics + Public SD_Position
  position
- Public SD_Position
  position + Public SC_CRS
  CRS
- Public Angle
  forwardLookingAngle + Public TM_IntervalLength
  groundSamplingTime
- Public TM_IntervalLength
  groundSamplingTime + Public Angle
  forwardLookingAngle
- Public DirectPosition
  grpPosition + Public SD_SAROrientationCode
  orientation
- Public SD_SAROrientationCode
  orientation + Public DirectPosition
  grpPosition
- Public SD_ScanAngleTime
  angleTable + Public AngularVelocity
  rate
- Public AngularVelocity
  rate + Public SD_ScanAngleTime
  angleTable
- Public Angle
  angle + Public TM_IntervalLength
  time
- Public TM_IntervalLength
  time + Public Angle
  angle
- Public DateTime
  collectionEndTime + Public DateTime
  collectionStartTime
- Public DateTime
  collectionStartTime + Public DateTime
  collectionEndTime
- Public
  circular + Public
  square
- Public
  elliptical + Public
  circular
- Public
  square + Public
  elliptical
- Public DQ_PositionalAccuracy
  accuracy + Public CV_GridPoint
  regionOfValidity
- Public CV_GridPoint
  regionOfValidity + Public DQ_PositionalAccuracy
  accuracy
- Public Boolean
  isNavigable + Public FC_RoleType
  type
@@ -285,7 +285,7 @@ - Public FC_RoleType
  type + Public Boolean
  isNavigable @@ -299,7 +299,7 @@ Initial: - "ordinary" + TRUE Stereotype: @@ -334,7 +334,7 @@ Notes: - Type of association role, indicating whether this role acts as a "is part of" or "is a member of" semantics. <br/> + Indicates whether this role is navigable from the source feature to the target feature of the association. <br/>
diff --git a/approved/html/EARoot/EA1/EA3/EA10/EA1/EA2048.htm b/approved/html/EARoot/EA1/EA3/EA10/EA1/EA2048.htm index 2183e860f..3527fc20d 100644 --- a/approved/html/EARoot/EA1/EA3/EA10/EA1/EA2048.htm +++ b/approved/html/EARoot/EA1/EA3/EA10/EA1/EA2048.htm @@ -111,7 +111,7 @@ - Public CharacterString
  functionalLanguage + Public CI_ResponsibleParty
  producer @@ -137,7 +137,7 @@ Range: - Range:0 to 1 + Transient: @@ -160,7 +160,7 @@ Notes: - The formal functional language in which the feature operation formal definition occurs in this feature catalogue.<br/><br/>#lt;c#gt;<br/>Mandatory if feature operation formal definition occurs in feature catalogue.<br/>#lt;/c#gt;<br/> + Name, address, country, and telecommunications address of person or organization having primary responsibility for the intellectual content of this feature catalogue.<br/> @@ -169,7 +169,7 @@ - Public CI_ResponsibleParty
  producer + Public CharacterString
  functionalLanguage @@ -195,7 +195,7 @@ Range: - + Range:0 to 1 Transient: @@ -218,7 +218,7 @@ Notes: - Name, address, country, and telecommunications address of person or organization having primary responsibility for the intellectual content of this feature catalogue.<br/> + The formal functional language in which the feature operation formal definition occurs in this feature catalogue.<br/><br/>#lt;c#gt;<br/>Mandatory if feature operation formal definition occurs in feature catalogue.<br/>#lt;/c#gt;<br/> diff --git a/approved/html/EARoot/EA1/EA3/EA10/EA1/EA2049.htm b/approved/html/EARoot/EA1/EA3/EA10/EA1/EA2049.htm index b01ea8d9a..856066262 100644 --- a/approved/html/EARoot/EA1/EA3/EA10/EA1/EA2049.htm +++ b/approved/html/EARoot/EA1/EA3/EA10/EA1/EA2049.htm @@ -110,7 +110,7 @@ - Public CharacterString
  formalDefinition + Public CharacterString
  signature @@ -136,7 +136,7 @@ Range: - Range:0 to 1 + Transient: @@ -159,7 +159,7 @@ Notes: - Formal description of the behaviour of the member, expressed in the symbol set defined by FC_FeatureCatalogue::functionalLanguage. Involves operational parameters, and interactions with other members of the feature type. <br/> + The name and parameters for this operation. It may contain optional returned parameters. This signature is usually derived from the formalDefinition. The signature of an operation must be unique. This is the equivalent of the UML signature. <br/> @@ -168,7 +168,7 @@ - Public CharacterString
  signature + Public CharacterString
  formalDefinition @@ -194,7 +194,7 @@ Range: - + Range:0 to 1 Transient: @@ -217,7 +217,7 @@ Notes: - The name and parameters for this operation. It may contain optional returned parameters. This signature is usually derived from the formalDefinition. The signature of an operation must be unique. This is the equivalent of the UML signature. <br/> + Formal description of the behaviour of the member, expressed in the symbol set defined by FC_FeatureCatalogue::functionalLanguage. Involves operational parameters, and interactions with other members of the feature type. <br/> diff --git a/approved/html/EARoot/EA1/EA3/EA10/EA1/EA2050.htm b/approved/html/EARoot/EA1/EA3/EA10/EA1/EA2050.htm index 2da9a3d31..63d51dd1b 100644 --- a/approved/html/EARoot/EA1/EA3/EA10/EA1/EA2050.htm +++ b/approved/html/EARoot/EA1/EA3/EA10/EA1/EA2050.htm @@ -111,7 +111,7 @@ - Public LocalName
  aliases + Public LocalName
  typeName @@ -137,7 +137,7 @@ Range: - Range:0 to * + Transient: @@ -160,7 +160,7 @@ Notes: - Equivalent name(s) of this feature type.<br/> + Text string that uniquely identifies this feature type within the feature catalogue that contains this feature type. <br/> @@ -169,7 +169,7 @@ - Public CharacterString
  code + Public CharacterString
  definition @@ -218,7 +218,7 @@ Notes: - Code that uniquely identifies this feature type within the feature catalogue that contains this feature type.<br/> + Definition of the feature type in a natural language. This attribute is required if the definition is not provided by FC_FeatureCatalogue::definitionSource. If not provided, the definitionReference should specify a citation where the definition may be found, and any additional information as to which definition is to be used.<br/><br/>#lt;c#gt;Mandatory if definition not provided by definition source.#lt;/c#gt;<br/> @@ -227,7 +227,7 @@ - Public CharacterString
  definition + Public CharacterString
  code @@ -276,7 +276,7 @@ Notes: - Definition of the feature type in a natural language. This attribute is required if the definition is not provided by FC_FeatureCatalogue::definitionSource. If not provided, the definitionReference should specify a citation where the definition may be found, and any additional information as to which definition is to be used.<br/><br/>#lt;c#gt;Mandatory if definition not provided by definition source.#lt;/c#gt;<br/> + Code that uniquely identifies this feature type within the feature catalogue that contains this feature type.<br/> @@ -343,7 +343,7 @@ - Public LocalName
  typeName + Public LocalName
  aliases @@ -369,7 +369,7 @@ Range: - + Range:0 to * Transient: @@ -392,7 +392,7 @@ Notes: - Text string that uniquely identifies this feature type within the feature catalogue that contains this feature type. <br/> + Equivalent name(s) of this feature type.<br/> diff --git a/approved/html/EARoot/EA1/EA3/EA10/EA1/EA2051.htm b/approved/html/EARoot/EA1/EA3/EA10/EA1/EA2051.htm index 19762c12a..164d78000 100644 --- a/approved/html/EARoot/EA1/EA3/EA10/EA1/EA2051.htm +++ b/approved/html/EARoot/EA1/EA3/EA10/EA1/EA2051.htm @@ -111,7 +111,7 @@ - Public CharacterString
  description + Public CharacterString
  name @@ -137,7 +137,7 @@ Range: - + Range:0 to 1 Transient: @@ -160,7 +160,7 @@ Notes: - A natural language description of this inheritance relation. <br/> + Text string that uniquely identifies this inheritance relation within the feature catalogue that contains this inheritance relation.<br/> @@ -169,7 +169,7 @@ - Public CharacterString
  name + Public CharacterString
  description @@ -195,7 +195,7 @@ Range: - Range:0 to 1 + Transient: @@ -218,7 +218,7 @@ Notes: - Text string that uniquely identifies this inheritance relation within the feature catalogue that contains this inheritance relation.<br/> + A natural language description of this inheritance relation. <br/> diff --git a/approved/html/EARoot/EA1/EA3/EA10/EA1/EA2052.htm b/approved/html/EARoot/EA1/EA3/EA10/EA1/EA2052.htm index 2602954f3..f0a796091 100644 --- a/approved/html/EARoot/EA1/EA3/EA10/EA1/EA2052.htm +++ b/approved/html/EARoot/EA1/EA3/EA10/EA1/EA2052.htm @@ -110,7 +110,7 @@ - Public CharacterString
  code + Public CharacterString
  label @@ -136,7 +136,7 @@ Range: - Range:0 to 1 + Transient: @@ -159,7 +159,7 @@ Notes: - Numeric or alphanumeric code (such as a country code) that uniquely identifies this value of the feature attribute. <br/> + Descriptive label that uniquely identifies one value of the feature attribute. <br/> @@ -168,7 +168,7 @@ - Public CharacterString
  definition + Public CharacterString
  code @@ -217,7 +217,7 @@ Notes: - Definition of the attribute value in a natural language. If not provided, the definitionReference may specify a citation where the definition may be found, and any additional information as to which definition is to be used.<br/> + Numeric or alphanumeric code (such as a country code) that uniquely identifies this value of the feature attribute. <br/> @@ -226,7 +226,7 @@ - Public CharacterString
  label + Public CharacterString
  definition @@ -252,7 +252,7 @@ Range: - + Range:0 to 1 Transient: @@ -275,7 +275,7 @@ Notes: - Descriptive label that uniquely identifies one value of the feature attribute. <br/> + Definition of the attribute value in a natural language. If not provided, the definitionReference may specify a citation where the definition may be found, and any additional information as to which definition is to be used.<br/> diff --git a/approved/html/EARoot/EA1/EA3/EA10/EA1/EA2053.htm b/approved/html/EARoot/EA1/EA3/EA10/EA1/EA2053.htm index d523e20b3..99dd0f42f 100644 --- a/approved/html/EARoot/EA1/EA3/EA10/EA1/EA2053.htm +++ b/approved/html/EARoot/EA1/EA3/EA10/EA1/EA2053.htm @@ -111,7 +111,7 @@ - Public Multiplicity
  cardinality + Public LocalName
  memberName @@ -125,7 +125,7 @@ Initial: - 1 + Stereotype: @@ -160,7 +160,7 @@ Notes: - Cardinality of the member in the feature class. If this is an attribute or operation, the default cardinality is 1. If this is an association role, then the default cardinality is 0..*. For operations, this is the number of return values possible. <br/>This is an elaboration of the GFM to allow for complete specifications for various programming and data defintion languages.<br/> + member name that locates this member within a feature type for a local property or within the feature catalogue for a global property<br/> @@ -227,7 +227,7 @@ - Public LocalName
  memberName + Public Multiplicity
  cardinality @@ -241,7 +241,7 @@ Initial: - + 1 Stereotype: @@ -276,7 +276,7 @@ Notes: - member name that locates this member within a feature type for a local property or within the feature catalogue for a global property<br/> + Cardinality of the member in the feature class. If this is an attribute or operation, the default cardinality is 1. If this is an association role, then the default cardinality is 0..*. For operations, this is the number of return values possible. <br/>This is an elaboration of the GFM to allow for complete specifications for various programming and data defintion languages.<br/> diff --git a/approved/html/EARoot/EA1/EA3/EA10/EA1/EA2054.htm b/approved/html/EARoot/EA1/EA3/EA10/EA1/EA2054.htm index a046ebf18..a64d072f5 100644 --- a/approved/html/EARoot/EA1/EA3/EA10/EA1/EA2054.htm +++ b/approved/html/EARoot/EA1/EA3/EA10/EA1/EA2054.htm @@ -108,7 +108,7 @@ - Public <undefined>
  aggregation + Public <undefined>
  ordinary @@ -157,7 +157,7 @@ Notes: - Indicates a UML aggregation (part role).<br/> + Indicates an ordinary association<br/> @@ -166,7 +166,7 @@ - Public <undefined>
  composition + Public <undefined>
  aggregation @@ -215,7 +215,7 @@ Notes: - Indicates a UML composition (part role).<br/> + Indicates a UML aggregation (part role).<br/> @@ -224,7 +224,7 @@ - Public <undefined>
  ordinary + Public <undefined>
  composition @@ -273,7 +273,7 @@ Notes: - Indicates an ordinary association<br/> + Indicates a UML composition (part role).<br/> diff --git a/approved/html/EARoot/EA1/EA3/EA11/EA1/EA2094.png b/approved/html/EARoot/EA1/EA3/EA11/EA1/EA2094.png index fe01a798d..bc494d46e 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA11/EA1/EA2094.png and b/approved/html/EARoot/EA1/EA3/EA11/EA1/EA2094.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA11/EA1/EA2098.png b/approved/html/EARoot/EA1/EA3/EA11/EA1/EA2098.png index b59942cca..7c526c075 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA11/EA1/EA2098.png and b/approved/html/EARoot/EA1/EA3/EA11/EA1/EA2098.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA11/EA1/EA2112.png b/approved/html/EARoot/EA1/EA3/EA11/EA1/EA2112.png index b28c820b9..ed2eea39c 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA11/EA1/EA2112.png and b/approved/html/EARoot/EA1/EA3/EA11/EA1/EA2112.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA11/EA1/EA2114.png b/approved/html/EARoot/EA1/EA3/EA11/EA1/EA2114.png index 58149f18e..53d801bc8 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA11/EA1/EA2114.png and b/approved/html/EARoot/EA1/EA3/EA11/EA1/EA2114.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA11/EA1/EA2118.png b/approved/html/EARoot/EA1/EA3/EA11/EA1/EA2118.png index cc3e3ef26..6ec6ed8be 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA11/EA1/EA2118.png and b/approved/html/EARoot/EA1/EA3/EA11/EA1/EA2118.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA11/EA1/EA2120.png b/approved/html/EARoot/EA1/EA3/EA11/EA1/EA2120.png index f43e31942..08e06bebf 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA11/EA1/EA2120.png and b/approved/html/EARoot/EA1/EA3/EA11/EA1/EA2120.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA11/EA1/EA2124.png b/approved/html/EARoot/EA1/EA3/EA11/EA1/EA2124.png index ed701c950..b98903f16 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA11/EA1/EA2124.png and b/approved/html/EARoot/EA1/EA3/EA11/EA1/EA2124.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA11/EA1/EA2126.png b/approved/html/EARoot/EA1/EA3/EA11/EA1/EA2126.png index af9858099..73fc1207b 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA11/EA1/EA2126.png and b/approved/html/EARoot/EA1/EA3/EA11/EA1/EA2126.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA11/EA1/EA2135.htm b/approved/html/EARoot/EA1/EA3/EA11/EA1/EA2135.htm index 126066ff0..9185d0099 100644 --- a/approved/html/EARoot/EA1/EA3/EA11/EA1/EA2135.htm +++ b/approved/html/EARoot/EA1/EA3/EA11/EA1/EA2135.htm @@ -111,7 +111,7 @@ - Public DQ_PositionalAccuracy
  coordinateOperationAccuracy + Public CharacterString
  operationVersion @@ -137,7 +137,7 @@ Range: - Range:0 to * + Range:0 to 1 Transient: @@ -160,7 +160,7 @@ Notes: - Estimate(s) of the impact of this coordinate operation on point accuracy. Gives position error estimates for target coordinates of this coordinate operation, assuming no errors in source coordinates.<br/><br/> + Version of the coordinate transformation (i.e. instantiation due to the stochastic nature of the parameters). Mandatory when describing a coordinate transformation, and should not be supplied for a coordinate conversion. <br/><br/> @@ -227,7 +227,7 @@ - Public CharacterString
  operationVersion + Public CharacterString
  scope @@ -253,7 +253,7 @@ Range: - Range:0 to 1 + Transient: @@ -276,7 +276,7 @@ Notes: - Version of the coordinate transformation (i.e. instantiation due to the stochastic nature of the parameters). Mandatory when describing a coordinate transformation, and should not be supplied for a coordinate conversion. <br/><br/> + Description of usage, or limitations of usage, for which this coordinate operation is valid. If unknown, enter "not known".<br/><br/> @@ -285,7 +285,7 @@ - Public CharacterString
  scope + Public DQ_PositionalAccuracy
  coordinateOperationAccuracy @@ -311,7 +311,7 @@ Range: - + Range:0 to * Transient: @@ -334,7 +334,7 @@ Notes: - Description of usage, or limitations of usage, for which this coordinate operation is valid. If unknown, enter "not known".<br/><br/> + Estimate(s) of the impact of this coordinate operation on point accuracy. Gives position error estimates for target coordinates of this coordinate operation, assuming no errors in source coordinates.<br/><br/> diff --git a/approved/html/EARoot/EA1/EA3/EA11/EA1/EA2143.htm b/approved/html/EARoot/EA1/EA3/EA11/EA1/EA2143.htm index dfebd16e8..f445e7fad 100644 --- a/approved/html/EARoot/EA1/EA3/EA11/EA1/EA2143.htm +++ b/approved/html/EARoot/EA1/EA3/EA11/EA1/EA2143.htm @@ -108,7 +108,7 @@ - Public Boolean
  booleanValue + Public Measure
  value @@ -157,7 +157,7 @@ Notes: - Boolean value of a coordinate operation parameter. A Boolean value does not have an associated unit.<br/> + Numeric value of the coordinate operation parameter with its associated unit.<br/> @@ -166,7 +166,7 @@ - Public Integer
  integerValue + Public CharacterString
  stringValue @@ -215,7 +215,7 @@ Notes: - Positive integer value of a coordinate operation parameter, usually used for a count. An integer value does not have an associated unit.<br/> + String value of a coordinate operation parameter. A string value does not have an associated unit.<br/> @@ -224,7 +224,7 @@ - Public Sequence<Integer>
  integerValueList + Public Integer
  integerValue @@ -273,7 +273,7 @@ Notes: - Ordered collection, i.e. sequence, of two or more integer values of a coordinate operation parameter list, usually used for counts. These integer values do not have an associated unit.<br/> + Positive integer value of a coordinate operation parameter, usually used for a count. An integer value does not have an associated unit.<br/> @@ -282,7 +282,7 @@ - Public CharacterString
  stringValue + Public Boolean
  booleanValue @@ -331,7 +331,7 @@ Notes: - String value of a coordinate operation parameter. A string value does not have an associated unit.<br/> + Boolean value of a coordinate operation parameter. A Boolean value does not have an associated unit.<br/> @@ -340,7 +340,7 @@ - Public Measure
  value + Public Sequence<Measure>
  valueList @@ -389,7 +389,7 @@ Notes: - Numeric value of the coordinate operation parameter with its associated unit.<br/> + Ordered collection, i.e. sequence, of two or more numeric values of a coordinate operation parameter list, where each value has the same associated unit.<br/> @@ -398,7 +398,7 @@ - Public CharacterString
  valueFile + Public Sequence<Integer>
  integerValueList @@ -447,7 +447,7 @@ Notes: - Reference to a file or a part of a file containing one or more parameter values. When referencing a part of a file, that file shall contain multiple identified parts, such as an XML encoded document. Furthermore, the referenced file or part of a file can reference another part of the same or different files, as allowed in XML documents.<br/> + Ordered collection, i.e. sequence, of two or more integer values of a coordinate operation parameter list, usually used for counts. These integer values do not have an associated unit.<br/> @@ -456,7 +456,7 @@ - Public CI_Citation
  valueFileCitation + Public CharacterString
  valueFile @@ -505,7 +505,7 @@ Notes: - Citation for a reference to a file or a part of a file containing one or more parameter values. When referencing a part of a file, that file shall contain multiple identified parts, such as an XML encoded document. Furthermore, the referenced file or part of a file can reference another part of the same or different files, as allowed in XML documents.<br/> + Reference to a file or a part of a file containing one or more parameter values. When referencing a part of a file, that file shall contain multiple identified parts, such as an XML encoded document. Furthermore, the referenced file or part of a file can reference another part of the same or different files, as allowed in XML documents.<br/> @@ -514,7 +514,7 @@ - Public Sequence<Measure>
  valueList + Public CI_Citation
  valueFileCitation @@ -563,7 +563,7 @@ Notes: - Ordered collection, i.e. sequence, of two or more numeric values of a coordinate operation parameter list, where each value has the same associated unit.<br/> + Citation for a reference to a file or a part of a file containing one or more parameter values. When referencing a part of a file, that file shall contain multiple identified parts, such as an XML encoded document. Furthermore, the referenced file or part of a file can reference another part of the same or different files, as allowed in XML documents.<br/> diff --git a/approved/html/EARoot/EA1/EA3/EA11/EA2/EA2151.png b/approved/html/EARoot/EA1/EA3/EA11/EA2/EA2151.png index c476ed359..204d4f9cf 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA11/EA2/EA2151.png and b/approved/html/EARoot/EA1/EA3/EA11/EA2/EA2151.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA11/EA2/EA2153.png b/approved/html/EARoot/EA1/EA3/EA11/EA2/EA2153.png index 3e9d3f396..288913e5b 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA11/EA2/EA2153.png and b/approved/html/EARoot/EA1/EA3/EA11/EA2/EA2153.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA11/EA2/EA2155.png b/approved/html/EARoot/EA1/EA3/EA11/EA2/EA2155.png index 6e639488d..40d6f692b 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA11/EA2/EA2155.png and b/approved/html/EARoot/EA1/EA3/EA11/EA2/EA2155.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA11/EA2/EA2167.png b/approved/html/EARoot/EA1/EA3/EA11/EA2/EA2167.png index 1874d1bd0..26a2d0014 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA11/EA2/EA2167.png and b/approved/html/EARoot/EA1/EA3/EA11/EA2/EA2167.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA11/EA2/EA2171.png b/approved/html/EARoot/EA1/EA3/EA11/EA2/EA2171.png index 682758aa4..188ff0283 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA11/EA2/EA2171.png and b/approved/html/EARoot/EA1/EA3/EA11/EA2/EA2171.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA11/EA2/EA2181.htm b/approved/html/EARoot/EA1/EA3/EA11/EA2/EA2181.htm index 849139fd1..704dcaead 100644 --- a/approved/html/EARoot/EA1/EA3/EA11/EA2/EA2181.htm +++ b/approved/html/EARoot/EA1/EA3/EA11/EA2/EA2181.htm @@ -108,7 +108,7 @@ - Public <undefined>
  engineering + Public <undefined>
  geodetic @@ -157,7 +157,7 @@ Notes: - A contextually local coordinate reference system; which can be divided into two broad categories:<br/>- earth-fixed systems applied to engineering activities on or near the surface of the earth;<br/>- CRSs on moving platforms such as road vehicles, vessels, aircraft or spacecraft.<br/> + A coordinate reference system based on a geodetic datum; provides an accurate representation of the geometry of geographic features for a large portion of the earth's surface.<br/> @@ -166,7 +166,7 @@ - Public <undefined>
  geodetic + Public <undefined>
  vertical @@ -215,7 +215,7 @@ Notes: - A coordinate reference system based on a geodetic datum; provides an accurate representation of the geometry of geographic features for a large portion of the earth's surface.<br/> + A coordinate reference system used for recording of heights or depths. Vertical CRSs make use of the direction of gravity to define the concept of height or depth, but the relationship with gravity may not be straightforward.<br/> @@ -224,7 +224,7 @@ - Public <undefined>
  image + Public <undefined>
  engineering @@ -273,7 +273,7 @@ Notes: - An engineering coordinate reference system applied to locations in images.<br/> + A contextually local coordinate reference system; which can be divided into two broad categories:<br/>- earth-fixed systems applied to engineering activities on or near the surface of the earth;<br/>- CRSs on moving platforms such as road vehicles, vessels, aircraft or spacecraft.<br/> @@ -282,7 +282,7 @@ - Public <undefined>
  vertical + Public <undefined>
  image @@ -331,7 +331,7 @@ Notes: - A coordinate reference system used for recording of heights or depths. Vertical CRSs make use of the direction of gravity to define the concept of height or depth, but the relationship with gravity may not be straightforward.<br/> + An engineering coordinate reference system applied to locations in images.<br/> diff --git a/approved/html/EARoot/EA1/EA3/EA11/EA3/EA2192.png b/approved/html/EARoot/EA1/EA3/EA11/EA3/EA2192.png index c1327b231..939875b10 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA11/EA3/EA2192.png and b/approved/html/EARoot/EA1/EA3/EA11/EA3/EA2192.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA11/EA3/EA2196.png b/approved/html/EARoot/EA1/EA3/EA11/EA3/EA2196.png index dd199a99e..da5585f0a 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA11/EA3/EA2196.png and b/approved/html/EARoot/EA1/EA3/EA11/EA3/EA2196.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA11/EA3/EA2198.png b/approved/html/EARoot/EA1/EA3/EA11/EA3/EA2198.png index e5429944e..25cad3d2e 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA11/EA3/EA2198.png and b/approved/html/EARoot/EA1/EA3/EA11/EA3/EA2198.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA11/EA3/EA2224.png b/approved/html/EARoot/EA1/EA3/EA11/EA3/EA2224.png index 86fe942bc..92c043029 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA11/EA3/EA2224.png and b/approved/html/EARoot/EA1/EA3/EA11/EA3/EA2224.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA11/EA3/EA2227.htm b/approved/html/EARoot/EA1/EA3/EA11/EA3/EA2227.htm index 3737201bf..371a05d71 100644 --- a/approved/html/EARoot/EA1/EA3/EA11/EA3/EA2227.htm +++ b/approved/html/EARoot/EA1/EA3/EA11/EA3/EA2227.htm @@ -108,7 +108,7 @@ - Public <undefined>
  columnNegative + Public <undefined>
  north @@ -157,7 +157,7 @@ Notes: - Axis positive direction is towards lower pixel column.<br/> + Axis positive direction is north. In a geodetic or projected CRS, north is defined through the geodetic datum. In an engineering CRS, north may be defined with respect to an engineering object rather than a geographical direction.<br/> @@ -166,7 +166,7 @@ - Public <undefined>
  columnPositive + Public <undefined>
  northNorthEast @@ -215,7 +215,7 @@ Notes: - Axis positive direction is towards higher pixel column.<br/> + Axis positive direction is approximately north-north-east.<br/> @@ -224,7 +224,7 @@ - Public <undefined>
  displayDown + Public <undefined>
  northEast @@ -273,7 +273,7 @@ Notes: - Axis positive direction is towards bottom of approximately vertical display surface.<br/> + Axis positive direction is approximately north-east.<br/> @@ -282,7 +282,7 @@ - Public <undefined>
  displayLeft + Public <undefined>
  eastNorthEast @@ -331,7 +331,7 @@ Notes: - Axis positive direction is left in display.<br/> + Axis positive direction is approximately east-north-east.<br/> @@ -340,7 +340,7 @@ - Public <undefined>
  displayRight + Public <undefined>
  east @@ -389,7 +389,7 @@ Notes: - Axis positive direction is right in display.<br/> + Axis positive direction is  Pi/2 radians clockwise from north.<br/> @@ -398,7 +398,7 @@ - Public <undefined>
  displayUp + Public <undefined>
  eastSouthEast @@ -447,7 +447,7 @@ Notes: - Axis positive direction is towards top of approximately vertical display surface.<br/> + Axis positive direction is approximately east-south-east.<br/> @@ -456,7 +456,7 @@ - Public <undefined>
  down + Public <undefined>
  southEast @@ -505,7 +505,7 @@ Notes: - Axis positive direction is down relative to gravity.<br/> + Axis positive direction is approximately south-east.<br/> @@ -514,7 +514,7 @@ - Public <undefined>
  east + Public <undefined>
  southSouthEast @@ -563,7 +563,7 @@ Notes: - Axis positive direction is  Pi/2 radians clockwise from north.<br/> + Axis positive direction is approximately south-south-east.<br/> @@ -572,7 +572,7 @@ - Public <undefined>
  eastNorthEast + Public <undefined>
  south @@ -621,7 +621,7 @@ Notes: - Axis positive direction is approximately east-north-east.<br/> + Axis positive direction is Pi radians clockwise from north.<br/> @@ -630,7 +630,7 @@ - Public <undefined>
  eastSouthEast + Public <undefined>
  southSouthWest @@ -679,7 +679,7 @@ Notes: - Axis positive direction is approximately east-south-east.<br/> + Axis positive direction is approximately south-south-west.<br/> @@ -688,7 +688,7 @@ - Public <undefined>
  geocentricX + Public <undefined>
  southWest @@ -737,7 +737,7 @@ Notes: - Axis positive direction is in the equatorial plane from the centre of the modelled earth towards the intersection of the equator with the prime meridian.<br/> + Axis positive direction is approximately south-west.<br/> @@ -746,7 +746,7 @@ - Public <undefined>
  geocentricY + Public <undefined>
  westSouthWest @@ -795,7 +795,7 @@ Notes: - Axis positive direction is in the equatorial plane from the centre of the modelled earth towards the intersection of the equator and the meridian Pi/2 radians eastwards from the prime meridian.<br/> + Axis positive direction is approximately west-south-west.<br/> @@ -804,7 +804,7 @@ - Public <undefined>
  geocentricZ + Public <undefined>
  west @@ -853,7 +853,7 @@ Notes: - Axis positive direction is from the centre of the modelled earth parallel to its rotation axis and towards its north pole.<br/> + Axis positive direction is 3Pi/2 radians clockwise from north.<br/> @@ -862,7 +862,7 @@ - Public <undefined>
  north + Public <undefined>
  westNorthWest @@ -911,7 +911,7 @@ Notes: - Axis positive direction is north. In a geodetic or projected CRS, north is defined through the geodetic datum. In an engineering CRS, north may be defined with respect to an engineering object rather than a geographical direction.<br/> + Axis positive direction is approximately west-north-west.<br/> @@ -920,7 +920,7 @@ - Public <undefined>
  northEast + Public <undefined>
  northWest @@ -969,7 +969,7 @@ Notes: - Axis positive direction is approximately north-east.<br/> + Axis positive direction is approximately north-west.<br/> @@ -978,7 +978,7 @@ - Public <undefined>
  northNorthEast + Public <undefined>
  northNorthWest @@ -1027,7 +1027,7 @@ Notes: - Axis positive direction is approximately north-north-east.<br/> + Axis positive direction is approximately north-north-west.<br/> @@ -1036,7 +1036,7 @@ - Public <undefined>
  northNorthWest + Public <undefined>
  up @@ -1085,7 +1085,7 @@ Notes: - Axis positive direction is approximately north-north-west.<br/> + Axis positive direction is up relative to gravity.<br/> @@ -1094,7 +1094,7 @@ - Public <undefined>
  northWest + Public <undefined>
  down @@ -1143,7 +1143,7 @@ Notes: - Axis positive direction is approximately north-west.<br/> + Axis positive direction is down relative to gravity.<br/> @@ -1152,7 +1152,7 @@ - Public <undefined>
  rowNegative + Public <undefined>
  geocentricX @@ -1201,7 +1201,7 @@ Notes: - Axis positive direction is towards lower pixel row.<br/> + Axis positive direction is in the equatorial plane from the centre of the modelled earth towards the intersection of the equator with the prime meridian.<br/> @@ -1210,7 +1210,7 @@ - Public <undefined>
  rowPositive + Public <undefined>
  geocentricY @@ -1259,7 +1259,7 @@ Notes: - Axis positive direction is towards higher pixel row.<br/> + Axis positive direction is in the equatorial plane from the centre of the modelled earth towards the intersection of the equator and the meridian Pi/2 radians eastwards from the prime meridian.<br/> @@ -1268,7 +1268,7 @@ - Public <undefined>
  south + Public <undefined>
  geocentricZ @@ -1317,7 +1317,7 @@ Notes: - Axis positive direction is Pi radians clockwise from north.<br/> + Axis positive direction is from the centre of the modelled earth parallel to its rotation axis and towards its north pole.<br/> @@ -1326,7 +1326,7 @@ - Public <undefined>
  southEast + Public <undefined>
  columnPositive @@ -1375,7 +1375,7 @@ Notes: - Axis positive direction is approximately south-east.<br/> + Axis positive direction is towards higher pixel column.<br/> @@ -1384,7 +1384,7 @@ - Public <undefined>
  southSouthEast + Public <undefined>
  columnNegative @@ -1433,7 +1433,7 @@ Notes: - Axis positive direction is approximately south-south-east.<br/> + Axis positive direction is towards lower pixel column.<br/> @@ -1442,7 +1442,7 @@ - Public <undefined>
  southSouthWest + Public <undefined>
  rowPositive @@ -1491,7 +1491,7 @@ Notes: - Axis positive direction is approximately south-south-west.<br/> + Axis positive direction is towards higher pixel row.<br/> @@ -1500,7 +1500,7 @@ - Public <undefined>
  southWest + Public <undefined>
  rowNegative @@ -1549,7 +1549,7 @@ Notes: - Axis positive direction is approximately south-west.<br/> + Axis positive direction is towards lower pixel row.<br/> @@ -1558,7 +1558,7 @@ - Public <undefined>
  up + Public <undefined>
  displayRight @@ -1607,7 +1607,7 @@ Notes: - Axis positive direction is up relative to gravity.<br/> + Axis positive direction is right in display.<br/> @@ -1616,7 +1616,7 @@ - Public <undefined>
  west + Public <undefined>
  displayLeft @@ -1665,7 +1665,7 @@ Notes: - Axis positive direction is 3Pi/2 radians clockwise from north.<br/> + Axis positive direction is left in display.<br/> @@ -1674,7 +1674,7 @@ - Public <undefined>
  westNorthWest + Public <undefined>
  displayUp @@ -1723,7 +1723,7 @@ Notes: - Axis positive direction is approximately west-north-west.<br/> + Axis positive direction is towards top of approximately vertical display surface.<br/> @@ -1732,7 +1732,7 @@ - Public <undefined>
  westSouthWest + Public <undefined>
  displayDown @@ -1781,7 +1781,7 @@ Notes: - Axis positive direction is approximately west-south-west.<br/> + Axis positive direction is towards bottom of approximately vertical display surface.<br/> diff --git a/approved/html/EARoot/EA1/EA3/EA11/EA3/EA2230.htm b/approved/html/EARoot/EA1/EA3/EA11/EA3/EA2230.htm index b73bbce12..36c688647 100644 --- a/approved/html/EARoot/EA1/EA3/EA11/EA3/EA2230.htm +++ b/approved/html/EARoot/EA1/EA3/EA11/EA3/EA2230.htm @@ -285,7 +285,7 @@ - Public Number
  maximumValue + Public Number
  minimumValue @@ -334,7 +334,7 @@ Notes: - The maximum value normally allowed for this axis, in the unit of measure for the axis.<br/><br/> + The minimum value normally allowed for this axis, in the unit of measure for the axis.<br/><br/> @@ -343,7 +343,7 @@ - Public Number
  minimumValue + Public Number
  maximumValue @@ -392,7 +392,7 @@ Notes: - The minimum value normally allowed for this axis, in the unit of measure for the axis.<br/><br/> + The maximum value normally allowed for this axis, in the unit of measure for the axis.<br/><br/> diff --git a/approved/html/EARoot/EA1/EA3/EA11/EA4/EA2243.png b/approved/html/EARoot/EA1/EA3/EA11/EA4/EA2243.png index 4f2cd37a7..eeb97e104 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA11/EA4/EA2243.png and b/approved/html/EARoot/EA1/EA3/EA11/EA4/EA2243.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA11/EA4/EA2245.png b/approved/html/EARoot/EA1/EA3/EA11/EA4/EA2245.png index 50deffc95..c8475b937 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA11/EA4/EA2245.png and b/approved/html/EARoot/EA1/EA3/EA11/EA4/EA2245.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA11/EA4/EA2247.png b/approved/html/EARoot/EA1/EA3/EA11/EA4/EA2247.png index beebbaf90..e6be8670a 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA11/EA4/EA2247.png and b/approved/html/EARoot/EA1/EA3/EA11/EA4/EA2247.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA11/EA4/EA2249.png b/approved/html/EARoot/EA1/EA3/EA11/EA4/EA2249.png index e0d5f9e96..c20c80138 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA11/EA4/EA2249.png and b/approved/html/EARoot/EA1/EA3/EA11/EA4/EA2249.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA11/EA4/EA2251.png b/approved/html/EARoot/EA1/EA3/EA11/EA4/EA2251.png index 96374b7a0..4b13f9c6d 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA11/EA4/EA2251.png and b/approved/html/EARoot/EA1/EA3/EA11/EA4/EA2251.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA11/EA4/EA2257.png b/approved/html/EARoot/EA1/EA3/EA11/EA4/EA2257.png index f7584b253..98b50624f 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA11/EA4/EA2257.png and b/approved/html/EARoot/EA1/EA3/EA11/EA4/EA2257.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA11/EA4/EA2259.png b/approved/html/EARoot/EA1/EA3/EA11/EA4/EA2259.png index 3238f7323..eb70c792d 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA11/EA4/EA2259.png and b/approved/html/EARoot/EA1/EA3/EA11/EA4/EA2259.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA11/EA4/EA2263.png b/approved/html/EARoot/EA1/EA3/EA11/EA4/EA2263.png index facebf115..6f97b3759 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA11/EA4/EA2263.png and b/approved/html/EARoot/EA1/EA3/EA11/EA4/EA2263.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA11/EA4/EA2266.htm b/approved/html/EARoot/EA1/EA3/EA11/EA4/EA2266.htm index 0743669d0..869692be1 100644 --- a/approved/html/EARoot/EA1/EA3/EA11/EA4/EA2266.htm +++ b/approved/html/EARoot/EA1/EA3/EA11/EA4/EA2266.htm @@ -168,7 +168,7 @@ - Public EX_Extent
  domainOfValidity + Public Date
  realizationEpoch @@ -217,7 +217,7 @@ Notes: - Area or region or timeframe in which this datum is valid.<br/><br/> + The time after which this datum definition is valid. This time may be precise (e.g. 1997.0 for IRTF97) or merely a year (e.g. 1986 for NAD83(86)). In the latter case, the epoch usually refers to the year in which a major recalculation of the geodetic control network, underlying the datum, was executed or initiated. An old datum may remain valid after a new datum is defined. Alternatively, a datum may be replaced by a later datum, in which case the realization epoch for the new datum defines the upper limit for the validity of the replaced datum.<br/><br/> @@ -226,7 +226,7 @@ - Public Date
  realizationEpoch + Public EX_Extent
  domainOfValidity @@ -275,7 +275,7 @@ Notes: - The time after which this datum definition is valid. This time may be precise (e.g. 1997.0 for IRTF97) or merely a year (e.g. 1986 for NAD83(86)). In the latter case, the epoch usually refers to the year in which a major recalculation of the geodetic control network, underlying the datum, was executed or initiated. An old datum may remain valid after a new datum is defined. Alternatively, a datum may be replaced by a later datum, in which case the realization epoch for the new datum defines the upper limit for the validity of the replaced datum.<br/><br/> + Area or region or timeframe in which this datum is valid.<br/><br/> diff --git a/approved/html/EARoot/EA1/EA3/EA11/EA4/EA2267.htm b/approved/html/EARoot/EA1/EA3/EA11/EA4/EA2267.htm index 78ad7955f..2b09a70b9 100644 --- a/approved/html/EARoot/EA1/EA3/EA11/EA4/EA2267.htm +++ b/approved/html/EARoot/EA1/EA3/EA11/EA4/EA2267.htm @@ -110,7 +110,7 @@ - Public CD_SecondDefiningParameter
  secondDefiningParameter + Public Length
  semiMajorAxis @@ -159,7 +159,7 @@ Notes: - Definition of the second parameter that describes the shape of this ellipsoid.<br/> + Length of the semi-major axis of the ellipsoid. <br/> @@ -168,7 +168,7 @@ - Public Length
  semiMajorAxis + Public CD_SecondDefiningParameter
  secondDefiningParameter @@ -217,7 +217,7 @@ Notes: - Length of the semi-major axis of the ellipsoid. <br/> + Definition of the second parameter that describes the shape of this ellipsoid.<br/> diff --git a/approved/html/EARoot/EA1/EA3/EA11/EA4/EA2273.htm b/approved/html/EARoot/EA1/EA3/EA11/EA4/EA2273.htm index aff6ee46f..9ba73de1e 100644 --- a/approved/html/EARoot/EA1/EA3/EA11/EA4/EA2273.htm +++ b/approved/html/EARoot/EA1/EA3/EA11/EA4/EA2273.htm @@ -166,7 +166,7 @@ - Public Boolean
  isSphere + Public Length
  semiMinorAxis @@ -180,7 +180,7 @@ Initial: - "true" + Stereotype: @@ -215,7 +215,7 @@ Notes: - The ellipsoid is degenerate and is actually a sphere. The sphere is completely defined by the semi-major axis, which is the radius of the sphere. This attribute this has the value "true" if the figure is a sphere.<br/> + Length of the semi-minor axis of the ellipsoid. <br/> @@ -224,7 +224,7 @@ - Public Length
  semiMinorAxis + Public Boolean
  isSphere @@ -238,7 +238,7 @@ Initial: - + "true" Stereotype: @@ -273,7 +273,7 @@ Notes: - Length of the semi-minor axis of the ellipsoid. <br/> + The ellipsoid is degenerate and is actually a sphere. The sphere is completely defined by the semi-major axis, which is the radius of the sphere. This attribute this has the value "true" if the figure is a sphere.<br/> diff --git a/approved/html/EARoot/EA1/EA3/EA11/EA5/EA2276.png b/approved/html/EARoot/EA1/EA3/EA11/EA5/EA2276.png index 27f503018..4ff1a5e0f 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA11/EA5/EA2276.png and b/approved/html/EARoot/EA1/EA3/EA11/EA5/EA2276.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA11/EA5/EA2278.png b/approved/html/EARoot/EA1/EA3/EA11/EA5/EA2278.png index 996b2d6fc..4fb4f7eb1 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA11/EA5/EA2278.png and b/approved/html/EARoot/EA1/EA3/EA11/EA5/EA2278.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA11/EA5/EA2280.png b/approved/html/EARoot/EA1/EA3/EA11/EA5/EA2280.png index 6b7888253..81004c81a 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA11/EA5/EA2280.png and b/approved/html/EARoot/EA1/EA3/EA11/EA5/EA2280.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA11/EA5/EA2284.htm b/approved/html/EARoot/EA1/EA3/EA11/EA5/EA2284.htm index a70d55c4f..31c39bad9 100644 --- a/approved/html/EARoot/EA1/EA3/EA11/EA5/EA2284.htm +++ b/approved/html/EARoot/EA1/EA3/EA11/EA5/EA2284.htm @@ -109,7 +109,7 @@ - Public GenericName
  alias + Public RS_Identifier
  identifier @@ -158,7 +158,7 @@ Notes: - An alternative name by which this object is identified.<br/><br/> + An identifier which references elsewhere the object's defining information; alternatively an identifier by which this object can be referenced.<br/><br/> @@ -167,7 +167,7 @@ - Public RS_Identifier
  identifier + Public GenericName
  alias @@ -216,7 +216,7 @@ Notes: - An identifier which references elsewhere the object's defining information; alternatively an identifier by which this object can be referenced.<br/><br/> + An alternative name by which this object is identified.<br/><br/> diff --git a/approved/html/EARoot/EA1/EA3/EA11/EA6/EA2286.png b/approved/html/EARoot/EA1/EA3/EA11/EA6/EA2286.png index 2c89961c1..bec3f7a44 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA11/EA6/EA2286.png and b/approved/html/EARoot/EA1/EA3/EA11/EA6/EA2286.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA11/EA6/EA2288.htm b/approved/html/EARoot/EA1/EA3/EA11/EA6/EA2288.htm index 740e23318..8ba34a3c4 100644 --- a/approved/html/EARoot/EA1/EA3/EA11/EA6/EA2288.htm +++ b/approved/html/EARoot/EA1/EA3/EA11/EA6/EA2288.htm @@ -109,7 +109,7 @@ - Public EX_Extent
  domainOfValidity + Public RS_Identifier
  name @@ -135,7 +135,7 @@ Range: - Range:0 to 1 + Transient: @@ -152,22 +152,12 @@ -
- - - - -
- Notes: - - Area or region in which this CRS object is valid.<br/><br/> -
- +   - Public RS_Identifier
  name + Public EX_Extent
  domainOfValidity @@ -193,7 +183,7 @@ Range: - + Range:0 to 1 Transient: @@ -210,7 +200,17 @@ -   +
+ + + + +
+ Notes: + + Area or region in which this CRS object is valid.<br/><br/> +
+ diff --git a/approved/html/EARoot/EA1/EA3/EA12/EA1/EA2312.png b/approved/html/EARoot/EA1/EA3/EA12/EA1/EA2312.png index 445b4488d..4a42b7c27 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA12/EA1/EA2312.png and b/approved/html/EARoot/EA1/EA3/EA12/EA1/EA2312.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA12/EA1/EA2314.png b/approved/html/EARoot/EA1/EA3/EA12/EA1/EA2314.png index 8a8a5392a..45643ff85 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA12/EA1/EA2314.png and b/approved/html/EARoot/EA1/EA3/EA12/EA1/EA2314.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA12/EA1/EA2316.png b/approved/html/EARoot/EA1/EA3/EA12/EA1/EA2316.png index 2bf8fd1df..8366bd1f7 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA12/EA1/EA2316.png and b/approved/html/EARoot/EA1/EA3/EA12/EA1/EA2316.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA12/EA1/EA2318.htm b/approved/html/EARoot/EA1/EA3/EA12/EA1/EA2318.htm index 7f1a465ec..86ce4b331 100644 --- a/approved/html/EARoot/EA1/EA3/EA12/EA1/EA2318.htm +++ b/approved/html/EARoot/EA1/EA3/EA12/EA1/EA2318.htm @@ -111,7 +111,7 @@ - Public TypeName
  acceptableClassList + Public RS_Identifier
  name @@ -159,7 +159,7 @@ - Public SC_CRS
  coordinate_system + Public CharacterString
  scope @@ -207,7 +207,7 @@ - Public CI_ResponsibleParty
  custodian + Public EX_GeographicExtent
  territoryOfUse @@ -255,7 +255,7 @@ - Public Boolean
  isGlobal + Public CI_ResponsibleParty
  custodian @@ -303,7 +303,7 @@ - Public RS_Identifier
  name + Public SC_CRS
  coordinate_system @@ -329,7 +329,7 @@ Range: - + Range:0 to 1 Transient: @@ -351,7 +351,7 @@ - Public CharacterString
  scope + Public Boolean
  isGlobal @@ -377,7 +377,7 @@ Range: - Range:0 to 1 + Transient: @@ -399,7 +399,7 @@ - Public EX_GeographicExtent
  territoryOfUse + Public TypeName
  acceptableClassList diff --git a/approved/html/EARoot/EA1/EA3/EA12/EA1/EA2319.htm b/approved/html/EARoot/EA1/EA3/EA12/EA1/EA2319.htm index 838d345e5..4cb74a257 100644 --- a/approved/html/EARoot/EA1/EA3/EA12/EA1/EA2319.htm +++ b/approved/html/EARoot/EA1/EA3/EA12/EA1/EA2319.htm @@ -111,7 +111,7 @@ - Public CI_ResponsibleParty
  administrator + Public CharacterString
  geographicIdentifier @@ -255,7 +255,7 @@ - Public CharacterString
  geographicIdentifier + Public EX_TemporalExtent
  temporalExtent @@ -281,7 +281,7 @@ Range: - + Range:0 to 1 Transient: @@ -303,7 +303,7 @@ - Public GM_Point
  position + Public CI_ResponsibleParty
  administrator @@ -329,7 +329,7 @@ Range: - Range:0 to 1 + Transient: @@ -351,7 +351,7 @@ - Public EX_TemporalExtent
  temporalExtent + Public GM_Point
  position diff --git a/approved/html/EARoot/EA1/EA3/EA12/EA2/EA2321.png b/approved/html/EARoot/EA1/EA3/EA12/EA2/EA2321.png index 40064253f..666372617 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA12/EA2/EA2321.png and b/approved/html/EARoot/EA1/EA3/EA12/EA2/EA2321.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA12/EA2/EA2323.png b/approved/html/EARoot/EA1/EA3/EA12/EA2/EA2323.png index a83489585..1bc211602 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA12/EA2/EA2323.png and b/approved/html/EARoot/EA1/EA3/EA12/EA2/EA2323.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA12/EA2/EA2325.png b/approved/html/EARoot/EA1/EA3/EA12/EA2/EA2325.png index 73468dfa4..5025a07d5 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA12/EA2/EA2325.png and b/approved/html/EARoot/EA1/EA3/EA12/EA2/EA2325.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA12/EA2/EA2327.htm b/approved/html/EARoot/EA1/EA3/EA12/EA2/EA2327.htm index dcaa8df71..b78d94035 100644 --- a/approved/html/EARoot/EA1/EA3/EA12/EA2/EA2327.htm +++ b/approved/html/EARoot/EA1/EA3/EA12/EA2/EA2327.htm @@ -110,7 +110,7 @@ - Public CharacterString
  definition + Public RS_Identifier
  name @@ -158,7 +158,7 @@ - Public CharacterString
  identifier + Public CharacterString
  theme @@ -206,7 +206,7 @@ - Public RS_Identifier
  name + Public CharacterString
  identifier @@ -254,7 +254,7 @@ - Public CI_ResponsibleParty
  owner + Public CharacterString
  definition @@ -302,7 +302,7 @@ - Public EX_GeographicExtent
  territoryOfUse + Public CI_ResponsibleParty
  owner @@ -350,7 +350,7 @@ - Public CharacterString
  theme + Public EX_GeographicExtent
  territoryOfUse diff --git a/approved/html/EARoot/EA1/EA3/EA12/EA2/EA2328.htm b/approved/html/EARoot/EA1/EA3/EA12/EA2/EA2328.htm index 0797bea28..4a48d21c5 100644 --- a/approved/html/EARoot/EA1/EA3/EA12/EA2/EA2328.htm +++ b/approved/html/EARoot/EA1/EA3/EA12/EA2/EA2328.htm @@ -110,7 +110,7 @@ - Public CI_ResponsibleParty
  overallOwner + Public CharacterString
  theme @@ -158,7 +158,7 @@ - Public EX_GeographicExtent
  territoryOfUse + Public CI_ResponsibleParty
  overallOwner @@ -206,7 +206,7 @@ - Public CharacterString
  theme + Public EX_GeographicExtent
  territoryOfUse diff --git a/approved/html/EARoot/EA1/EA3/EA12/EA2304.png b/approved/html/EARoot/EA1/EA3/EA12/EA2304.png index a817c41b5..0dcd9e2b1 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA12/EA2304.png and b/approved/html/EARoot/EA1/EA3/EA12/EA2304.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA13/EA1/EA2420.png b/approved/html/EARoot/EA1/EA3/EA13/EA1/EA2420.png index 80be2b113..a246ce3f5 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA13/EA1/EA2420.png and b/approved/html/EARoot/EA1/EA3/EA13/EA1/EA2420.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA13/EA1/EA2426.png b/approved/html/EARoot/EA1/EA3/EA13/EA1/EA2426.png index 7241b4deb..51531b126 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA13/EA1/EA2426.png and b/approved/html/EARoot/EA1/EA3/EA13/EA1/EA2426.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA13/EA1/EA2430.png b/approved/html/EARoot/EA1/EA3/EA13/EA1/EA2430.png index 2258f674e..f0f9aa2d7 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA13/EA1/EA2430.png and b/approved/html/EARoot/EA1/EA3/EA13/EA1/EA2430.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA13/EA1/EA2438.png b/approved/html/EARoot/EA1/EA3/EA13/EA1/EA2438.png index 4742a4842..377c35dbc 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA13/EA1/EA2438.png and b/approved/html/EARoot/EA1/EA3/EA13/EA1/EA2438.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA13/EA10/EA2738.png b/approved/html/EARoot/EA1/EA3/EA13/EA10/EA2738.png index 174beb0f8..a251a7c8b 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA13/EA10/EA2738.png and b/approved/html/EARoot/EA1/EA3/EA13/EA10/EA2738.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA13/EA10/EA2740.png b/approved/html/EARoot/EA1/EA3/EA13/EA10/EA2740.png index 4061be5b8..e02d6ddf1 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA13/EA10/EA2740.png and b/approved/html/EARoot/EA1/EA3/EA13/EA10/EA2740.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA13/EA10/EA2742.png b/approved/html/EARoot/EA1/EA3/EA13/EA10/EA2742.png index 6ab7dc0bf..5eee69043 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA13/EA10/EA2742.png and b/approved/html/EARoot/EA1/EA3/EA13/EA10/EA2742.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA13/EA11/EA2746.png b/approved/html/EARoot/EA1/EA3/EA13/EA11/EA2746.png index 87a2bec26..dc9178a9d 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA13/EA11/EA2746.png and b/approved/html/EARoot/EA1/EA3/EA13/EA11/EA2746.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA13/EA11/EA2748.png b/approved/html/EARoot/EA1/EA3/EA13/EA11/EA2748.png index 1b0c49eb2..41d1bfa99 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA13/EA11/EA2748.png and b/approved/html/EARoot/EA1/EA3/EA13/EA11/EA2748.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA13/EA11/EA2752.png b/approved/html/EARoot/EA1/EA3/EA13/EA11/EA2752.png index 159e63d2c..de965c47b 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA13/EA11/EA2752.png and b/approved/html/EARoot/EA1/EA3/EA13/EA11/EA2752.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA13/EA11/EA2754.png b/approved/html/EARoot/EA1/EA3/EA13/EA11/EA2754.png index 9fad5a18f..95583cf08 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA13/EA11/EA2754.png and b/approved/html/EARoot/EA1/EA3/EA13/EA11/EA2754.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA13/EA11/EA2756.png b/approved/html/EARoot/EA1/EA3/EA13/EA11/EA2756.png index bf4220cb4..c1b30edce 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA13/EA11/EA2756.png and b/approved/html/EARoot/EA1/EA3/EA13/EA11/EA2756.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA13/EA11/EA2758.png b/approved/html/EARoot/EA1/EA3/EA13/EA11/EA2758.png index aad6c8927..92d2ded77 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA13/EA11/EA2758.png and b/approved/html/EARoot/EA1/EA3/EA13/EA11/EA2758.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA13/EA11/EA2760.png b/approved/html/EARoot/EA1/EA3/EA13/EA11/EA2760.png index 810dc2d81..c6acf1e57 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA13/EA11/EA2760.png and b/approved/html/EARoot/EA1/EA3/EA13/EA11/EA2760.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA13/EA11/EA2762.png b/approved/html/EARoot/EA1/EA3/EA13/EA11/EA2762.png index 84ed1a268..4ccd3b4c9 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA13/EA11/EA2762.png and b/approved/html/EARoot/EA1/EA3/EA13/EA11/EA2762.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA13/EA11/EA2764.png b/approved/html/EARoot/EA1/EA3/EA13/EA11/EA2764.png index 099262641..32e0be824 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA13/EA11/EA2764.png and b/approved/html/EARoot/EA1/EA3/EA13/EA11/EA2764.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA13/EA11/EA2768.htm b/approved/html/EARoot/EA1/EA3/EA13/EA11/EA2768.htm index 02c7663da..f3bb407eb 100644 --- a/approved/html/EARoot/EA1/EA3/EA13/EA11/EA2768.htm +++ b/approved/html/EARoot/EA1/EA3/EA13/EA11/EA2768.htm @@ -110,7 +110,7 @@ - Public MD_Medium
  offLine + Public CharacterString
  unitsOfDistribution @@ -153,12 +153,22 @@ -   +
+ + + + +
+ Notes: + + Tiles, layers, geographic areas, etc., in which data is available<br/> +
+ - Public CI_OnlineResource
  onLine + Public Real
  transferSize @@ -184,7 +194,7 @@ Range: - Range:0 to * + Range:0 to 1 Transient: @@ -207,7 +217,7 @@ Notes: - Information about online sources from which the dataset can be obtained<br/> + Estimated size of the transferred dataset in megabytes. The transfer size is #gt; 0.0<br/> @@ -216,7 +226,7 @@ - Public Real
  transferSize + Public CI_OnlineResource
  onLine @@ -242,7 +252,7 @@ Range: - Range:0 to 1 + Range:0 to * Transient: @@ -265,7 +275,7 @@ Notes: - Estimated size of the transferred dataset in megabytes. The transfer size is #gt; 0.0<br/> + Information about online sources from which the dataset can be obtained<br/> @@ -274,7 +284,7 @@ - Public CharacterString
  unitsOfDistribution + Public MD_Medium
  offLine @@ -317,17 +327,7 @@ -
- - - - -
- Notes: - - Tiles, layers, geographic areas, etc., in which data is available<br/> -
- +   diff --git a/approved/html/EARoot/EA1/EA3/EA13/EA11/EA2772.htm b/approved/html/EARoot/EA1/EA3/EA13/EA11/EA2772.htm index e2e67dc47..2d4fbe22e 100644 --- a/approved/html/EARoot/EA1/EA3/EA13/EA11/EA2772.htm +++ b/approved/html/EARoot/EA1/EA3/EA13/EA11/EA2772.htm @@ -110,7 +110,7 @@ - Public CharacterString
  amendmentNumber + Public CharacterString
  name @@ -136,7 +136,7 @@ Range: - Range:0 to 1 + Transient: @@ -159,7 +159,7 @@ Notes: - Amendment number of the format version<br/> + Name of the data transfer format(s) offered by the  distributor for an available dataset.<br/>Example:  SDTS<br/> @@ -168,7 +168,7 @@ - Public CharacterString
  fileDecompressionTechnique + Public CharacterString
  version @@ -194,7 +194,7 @@ Range: - Range:0 to 1 + Transient: @@ -217,7 +217,7 @@ Notes: - Recommendations of algorithms or processes that can be applied to read or expand datasets to which data compression techniques have been applied<br/> + Version number of the format<br/> @@ -226,7 +226,7 @@ - Public CharacterString
  name + Public CharacterString
  amendmentNumber @@ -252,7 +252,7 @@ Range: - + Range:0 to 1 Transient: @@ -275,7 +275,7 @@ Notes: - Name of the data transfer format(s) offered by the  distributor for an available dataset.<br/>Example:  SDTS<br/> + Amendment number of the format version<br/> @@ -342,7 +342,7 @@ - Public CharacterString
  version + Public CharacterString
  fileDecompressionTechnique @@ -368,7 +368,7 @@ Range: - + Range:0 to 1 Transient: @@ -391,7 +391,7 @@ Notes: - Version number of the format<br/> + Recommendations of algorithms or processes that can be applied to read or expand datasets to which data compression techniques have been applied<br/> diff --git a/approved/html/EARoot/EA1/EA3/EA13/EA11/EA2773.htm b/approved/html/EARoot/EA1/EA3/EA13/EA11/EA2773.htm index 2849e00d5..3bfa21b37 100644 --- a/approved/html/EARoot/EA1/EA3/EA13/EA11/EA2773.htm +++ b/approved/html/EARoot/EA1/EA3/EA13/EA11/EA2773.htm @@ -108,7 +108,7 @@ - Public Real
  density + Public MD_MediumNameCode
  name @@ -134,7 +134,7 @@ Range: - Range:0 to * + Range:0 to 1 Transient: @@ -157,7 +157,7 @@ Notes: - Density in which the dataset can be recorded<br/> + Name of the media on which the dataset can be received<br/>-Examples:"CD-ROM", "3.5 inch floppy disk", "5.25 inch floppy disk", "9-track tape", "4 mm cartridge tape", "8 mm cartridge tape", "1/4 inch cartridge tape", "on-line", " satellite", "telephone link", "brochure"<br/> @@ -166,7 +166,7 @@ - Public CharacterString
  densityUnits + Public Real
  density @@ -192,7 +192,7 @@ Range: - Range:0 to 1 + Range:0 to * Transient: @@ -215,7 +215,7 @@ Notes: - Units of measure for the recording density<br/> + Density in which the dataset can be recorded<br/> @@ -224,7 +224,7 @@ - Public MD_MediumFormatCode
  mediumFormat + Public CharacterString
  densityUnits @@ -250,7 +250,7 @@ Range: - Range:0 to * + Range:0 to 1 Transient: @@ -273,7 +273,7 @@ Notes: - Options available or method used to write the dataset to the medium<br/>-Examples: "cpio", "tar", "High Sierra", "ISO 9660", "ISO 9660 with Rock Ridge extensions", "ISO 9660 with Apple HFS extensions"<br/> + Units of measure for the recording density<br/> @@ -282,7 +282,7 @@ - Public CharacterString
  mediumNote + Public Integer
  volumes @@ -331,7 +331,7 @@ Notes: - Description of other limitations or requirements for using the medium<br/> + Number of items in the media identified<br/> @@ -340,7 +340,7 @@ - Public MD_MediumNameCode
  name + Public MD_MediumFormatCode
  mediumFormat @@ -366,7 +366,7 @@ Range: - Range:0 to 1 + Range:0 to * Transient: @@ -389,7 +389,7 @@ Notes: - Name of the media on which the dataset can be received<br/>-Examples:"CD-ROM", "3.5 inch floppy disk", "5.25 inch floppy disk", "9-track tape", "4 mm cartridge tape", "8 mm cartridge tape", "1/4 inch cartridge tape", "on-line", " satellite", "telephone link", "brochure"<br/> + Options available or method used to write the dataset to the medium<br/>-Examples: "cpio", "tar", "High Sierra", "ISO 9660", "ISO 9660 with Rock Ridge extensions", "ISO 9660 with Apple HFS extensions"<br/> @@ -398,7 +398,7 @@ - Public Integer
  volumes + Public CharacterString
  mediumNote @@ -447,7 +447,7 @@ Notes: - Number of items in the media identified<br/> + Description of other limitations or requirements for using the medium<br/> diff --git a/approved/html/EARoot/EA1/EA3/EA13/EA11/EA2774.htm b/approved/html/EARoot/EA1/EA3/EA13/EA11/EA2774.htm index 7e3b30dfc..c1121021d 100644 --- a/approved/html/EARoot/EA1/EA3/EA13/EA11/EA2774.htm +++ b/approved/html/EARoot/EA1/EA3/EA13/EA11/EA2774.htm @@ -155,7 +155,7 @@ - Public <undefined>
  highSierra + Public <undefined>
  tar @@ -203,7 +203,7 @@ - Public <undefined>
  iso9660 + Public <undefined>
  highSierra @@ -251,7 +251,7 @@ - Public <undefined>
  iso9660AppleHFS + Public <undefined>
  iso9660 @@ -347,7 +347,7 @@ - Public <undefined>
  tar + Public <undefined>
  iso9660AppleHFS diff --git a/approved/html/EARoot/EA1/EA3/EA13/EA11/EA2775.htm b/approved/html/EARoot/EA1/EA3/EA13/EA11/EA2775.htm index 069a741c8..265a9b3dc 100644 --- a/approved/html/EARoot/EA1/EA3/EA13/EA11/EA2775.htm +++ b/approved/html/EARoot/EA1/EA3/EA13/EA11/EA2775.htm @@ -107,7 +107,7 @@ - Public <undefined>
  1quarterInchCartridgeTape + Public <undefined>
  cdRom @@ -155,7 +155,7 @@ - Public <undefined>
  3480Cartridge + Public <undefined>
  dvd @@ -203,7 +203,7 @@ - Public <undefined>
  3490Cartridge + Public <undefined>
  dvdRom @@ -251,7 +251,7 @@ - Public <undefined>
  3580Cartridge + Public <undefined>
  3halfInchFloppy @@ -299,7 +299,7 @@ - Public <undefined>
  3halfInchFloppy + Public <undefined>
  5quarterInchFloppy @@ -347,7 +347,7 @@ - Public <undefined>
  4mmCartridgeTape + Public <undefined>
  7trackTape @@ -395,7 +395,7 @@ - Public <undefined>
  5quarterInchFloppy + Public <undefined>
  9trackTape @@ -443,7 +443,7 @@ - Public <undefined>
  7trackTape + Public <undefined>
  3480Cartridge @@ -491,7 +491,7 @@ - Public <undefined>
  8mmCartridgeTape + Public <undefined>
  3490Cartridge @@ -539,7 +539,7 @@ - Public <undefined>
  9trackTape + Public <undefined>
  3580Cartridge @@ -587,7 +587,7 @@ - Public <undefined>
  cdRom + Public <undefined>
  4mmCartridgeTape @@ -635,7 +635,7 @@ - Public <undefined>
  digitalLinearTape + Public <undefined>
  8mmCartridgeTape @@ -683,7 +683,7 @@ - Public <undefined>
  dvd + Public <undefined>
  1quarterInchCartridgeTape @@ -731,7 +731,7 @@ - Public <undefined>
  dvdRom + Public <undefined>
  digitalLinearTape @@ -779,7 +779,7 @@ - Public <undefined>
  hardcopy + Public <undefined>
  onLine @@ -827,7 +827,7 @@ - Public <undefined>
  onLine + Public <undefined>
  satellite @@ -875,7 +875,7 @@ - Public <undefined>
  satellite + Public <undefined>
  telephoneLink @@ -923,7 +923,7 @@ - Public <undefined>
  telephoneLink + Public <undefined>
  hardcopy diff --git a/approved/html/EARoot/EA1/EA3/EA13/EA11/EA2776.htm b/approved/html/EARoot/EA1/EA3/EA13/EA11/EA2776.htm index d283a02a3..a37e17869 100644 --- a/approved/html/EARoot/EA1/EA3/EA13/EA11/EA2776.htm +++ b/approved/html/EARoot/EA1/EA3/EA13/EA11/EA2776.htm @@ -167,7 +167,7 @@ - Public CharacterString
  orderingInstructions + Public DateTime
  plannedAvailableDateTime @@ -216,7 +216,7 @@ Notes: - General instructions , terms and services provided  by the distributor when ordering the dataset<br/> + Date and time when the dataset will be available. <br/> @@ -225,7 +225,7 @@ - Public DateTime
  plannedAvailableDateTime + Public CharacterString
  orderingInstructions @@ -274,7 +274,7 @@ Notes: - Date and time when the dataset will be available. <br/> + General instructions , terms and services provided  by the distributor when ordering the dataset<br/> diff --git a/approved/html/EARoot/EA1/EA3/EA13/EA12/EA2778.png b/approved/html/EARoot/EA1/EA3/EA13/EA12/EA2778.png index d8f858320..d4a887b93 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA13/EA12/EA2778.png and b/approved/html/EARoot/EA1/EA3/EA13/EA12/EA2778.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA13/EA12/EA2780.png b/approved/html/EARoot/EA1/EA3/EA13/EA12/EA2780.png index 6d6bea977..fa06ffd35 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA13/EA12/EA2780.png and b/approved/html/EARoot/EA1/EA3/EA13/EA12/EA2780.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA13/EA12/EA2782.png b/approved/html/EARoot/EA1/EA3/EA13/EA12/EA2782.png index cb3b83c48..c84d15135 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA13/EA12/EA2782.png and b/approved/html/EARoot/EA1/EA3/EA13/EA12/EA2782.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA13/EA12/EA2786.png b/approved/html/EARoot/EA1/EA3/EA13/EA12/EA2786.png index 2e47d753e..1da6bdb7a 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA13/EA12/EA2786.png and b/approved/html/EARoot/EA1/EA3/EA13/EA12/EA2786.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA13/EA12/EA2791.htm b/approved/html/EARoot/EA1/EA3/EA13/EA12/EA2791.htm index 8b7d7dccb..bd557ceed 100644 --- a/approved/html/EARoot/EA1/EA3/EA13/EA12/EA2791.htm +++ b/approved/html/EARoot/EA1/EA3/EA13/EA12/EA2791.htm @@ -107,7 +107,7 @@ - Public <undefined>
  abstractClass + Public <undefined>
  class @@ -155,7 +155,7 @@ - Public <undefined>
  aggregateClass + Public <undefined>
  codelist @@ -203,7 +203,7 @@ - Public <undefined>
  association + Public <undefined>
  enumeration @@ -251,7 +251,7 @@ - Public <undefined>
  characterString + Public <undefined>
  codelistElement @@ -299,7 +299,7 @@ - Public <undefined>
  class + Public <undefined>
  abstractClass @@ -347,7 +347,7 @@ - Public <undefined>
  codelist + Public <undefined>
  aggregateClass @@ -395,7 +395,7 @@ - Public <undefined>
  codelistElement + Public <undefined>
  specifiedClass @@ -491,7 +491,7 @@ - Public <undefined>
  enumeration + Public <undefined>
  interfaceClass @@ -539,7 +539,7 @@ - Public <undefined>
  integer + Public <undefined>
  unionClass @@ -587,7 +587,7 @@ - Public <undefined>
  interfaceClass + Public <undefined>
  metaClass @@ -635,7 +635,7 @@ - Public <undefined>
  metaClass + Public <undefined>
  typeClass @@ -683,7 +683,7 @@ - Public <undefined>
  specifiedClass + Public <undefined>
  characterString @@ -731,7 +731,7 @@ - Public <undefined>
  typeClass + Public <undefined>
  integer @@ -779,7 +779,7 @@ - Public <undefined>
  unionClass + Public <undefined>
  association diff --git a/approved/html/EARoot/EA1/EA3/EA13/EA12/EA2792.htm b/approved/html/EARoot/EA1/EA3/EA13/EA12/EA2792.htm index 43c793742..fa234bf0b 100644 --- a/approved/html/EARoot/EA1/EA3/EA13/EA12/EA2792.htm +++ b/approved/html/EARoot/EA1/EA3/EA13/EA12/EA2792.htm @@ -109,7 +109,7 @@ - Public CharacterString
  condition + Public CharacterString
  name @@ -135,7 +135,7 @@ Range: - Range:0 to 1 + Transient: @@ -152,12 +152,22 @@ -   +
+ + + + +
+ Notes: + + Name of the extended metadata element.<br/>NOTE: Do not duplicate any other Standard element name.<br/> +
+ - Public MD_DatatypeCode
  dataType + Public CharacterString
  shortName @@ -183,7 +193,7 @@ Range: - + Range:0 to 1 Transient: @@ -206,7 +216,7 @@ Notes: - Code which identifies the kind of value provided in the extended element<br/> + Unique numeric identifier of the extended element<br/>NOTE: Do not duplicate another identifier used by the standard.<br/> @@ -215,7 +225,7 @@ - Public CharacterString
  definition + Public Integer
  domainCode @@ -241,7 +251,7 @@ Range: - + Range:0 to 1 Transient: @@ -258,22 +268,12 @@ -
- - - - -
- Notes: - - Definition of the extended element<br/> -
- +   - Public Integer
  domainCode + Public CharacterString
  definition @@ -299,7 +299,7 @@ Range: - Range:0 to 1 + Transient: @@ -316,12 +316,22 @@ -   +
+ + + + +
+ Notes: + + Definition of the extended element<br/> +
+ - Public CharacterString
  domainValue + Public MD_ObligationCode
  obligation @@ -370,7 +380,7 @@ Notes: - Valid values that can be assigned to the extended element. The same rules as those for standard elements are applied here<br/> + Obligation and condition of the extended element<br/> @@ -379,7 +389,7 @@ - Public CharacterString
  maximumOccurrence + Public CharacterString
  condition @@ -422,22 +432,12 @@ -
- - - - -
- Notes: - - Maximum occurrence of the extended element within the "..."<br/> -
- +   - Public CharacterString
  name + Public MD_DatatypeCode
  dataType @@ -486,7 +486,7 @@ Notes: - Name of the extended metadata element.<br/>NOTE: Do not duplicate any other Standard element name.<br/> + Code which identifies the kind of value provided in the extended element<br/> @@ -495,7 +495,7 @@ - Public MD_ObligationCode
  obligation + Public CharacterString
  maximumOccurrence @@ -544,7 +544,7 @@ Notes: - Obligation and condition of the extended element<br/> + Maximum occurrence of the extended element within the "..."<br/> @@ -553,7 +553,7 @@ - Public CharacterString
  parentEntity + Public CharacterString
  domainValue @@ -579,7 +579,7 @@ Range: - + Range:0 to 1 Transient: @@ -602,7 +602,7 @@ Notes: - Name of the metadata entity(s) under which this extended metadata element may appear. The name(s) may be standard or other extended metadata element(s).<br/>(Must be the name of an existing standard or extended element.)<br/> + Valid values that can be assigned to the extended element. The same rules as those for standard elements are applied here<br/> @@ -611,7 +611,7 @@ - Public CharacterString
  rationale + Public CharacterString
  parentEntity @@ -637,7 +637,7 @@ Range: - Range:0 to * + Transient: @@ -660,7 +660,7 @@ Notes: - Reason for creating the extended element<br/> + Name of the metadata entity(s) under which this extended metadata element may appear. The name(s) may be standard or other extended metadata element(s).<br/>(Must be the name of an existing standard or extended element.)<br/> @@ -727,7 +727,7 @@ - Public CharacterString
  shortName + Public CharacterString
  rationale @@ -753,7 +753,7 @@ Range: - Range:0 to 1 + Range:0 to * Transient: @@ -776,7 +776,7 @@ Notes: - Unique numeric identifier of the extended element<br/>NOTE: Do not duplicate another identifier used by the standard.<br/> + Reason for creating the extended element<br/> diff --git a/approved/html/EARoot/EA1/EA3/EA13/EA13/EA2796.png b/approved/html/EARoot/EA1/EA3/EA13/EA13/EA2796.png index cea3f7c98..80b71794d 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA13/EA13/EA2796.png and b/approved/html/EARoot/EA1/EA3/EA13/EA13/EA2796.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA13/EA13/EA2798.png b/approved/html/EARoot/EA1/EA3/EA13/EA13/EA2798.png index 428d90e7c..3a57827ba 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA13/EA13/EA2798.png and b/approved/html/EARoot/EA1/EA3/EA13/EA13/EA2798.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA13/EA13/EA2802.htm b/approved/html/EARoot/EA1/EA3/EA13/EA13/EA2802.htm index a15829f45..b1ee68ff2 100644 --- a/approved/html/EARoot/EA1/EA3/EA13/EA13/EA2802.htm +++ b/approved/html/EARoot/EA1/EA3/EA13/EA13/EA2802.htm @@ -109,7 +109,7 @@ - Public CharacterString
  constraintLanguage + Public CI_Citation
  name @@ -152,12 +152,22 @@ -   +
+ + + + +
+ Notes: + + Name of the application schema used<br/> +
+ - Public BinaryData
  graphicsFile + Public CharacterString
  schemaLanguage @@ -183,7 +193,7 @@ Range: - Range:0 to 1 + Transient: @@ -206,7 +216,7 @@ Notes: - Full application schema given as a graphics file.<br/> + Identification of the schema language used<br/> @@ -215,7 +225,7 @@ - Public CI_Citation
  name + Public CharacterString
  constraintLanguage @@ -258,17 +268,7 @@ -
- - - - -
- Notes: - - Name of the application schema used<br/> -
- +   @@ -331,7 +331,7 @@ - Public CharacterString
  schemaLanguage + Public BinaryData
  graphicsFile @@ -357,7 +357,7 @@ Range: - + Range:0 to 1 Transient: @@ -380,7 +380,7 @@ Notes: - Identification of the schema language used<br/> + Full application schema given as a graphics file.<br/> diff --git a/approved/html/EARoot/EA1/EA3/EA13/EA14/EA2806.png b/approved/html/EARoot/EA1/EA3/EA13/EA14/EA2806.png index cec63c9cb..ef2df2d46 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA13/EA14/EA2806.png and b/approved/html/EARoot/EA1/EA3/EA13/EA14/EA2806.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA13/EA14/EA2808.png b/approved/html/EARoot/EA1/EA3/EA13/EA14/EA2808.png index 6e022dd45..68db36a8b 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA13/EA14/EA2808.png and b/approved/html/EARoot/EA1/EA3/EA13/EA14/EA2808.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA13/EA14/EA2812.png b/approved/html/EARoot/EA1/EA3/EA13/EA14/EA2812.png index 448e8fc5a..759d1872a 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA13/EA14/EA2812.png and b/approved/html/EARoot/EA1/EA3/EA13/EA14/EA2812.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA13/EA14/EA2818.png b/approved/html/EARoot/EA1/EA3/EA13/EA14/EA2818.png index 0cdf3e5c9..7de2778ca 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA13/EA14/EA2818.png and b/approved/html/EARoot/EA1/EA3/EA13/EA14/EA2818.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA13/EA14/EA2820.png b/approved/html/EARoot/EA1/EA3/EA13/EA14/EA2820.png index eafea9777..f79369164 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA13/EA14/EA2820.png and b/approved/html/EARoot/EA1/EA3/EA13/EA14/EA2820.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA13/EA14/EA2822.png b/approved/html/EARoot/EA1/EA3/EA13/EA14/EA2822.png index e79a733a5..dcecedfe5 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA13/EA14/EA2822.png and b/approved/html/EARoot/EA1/EA3/EA13/EA14/EA2822.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA13/EA14/EA2824.png b/approved/html/EARoot/EA1/EA3/EA13/EA14/EA2824.png index 031be861d..534485988 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA13/EA14/EA2824.png and b/approved/html/EARoot/EA1/EA3/EA13/EA14/EA2824.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA13/EA14/EA2829.htm b/approved/html/EARoot/EA1/EA3/EA13/EA14/EA2829.htm index e932baebb..7db39eb14 100644 --- a/approved/html/EARoot/EA1/EA3/EA13/EA14/EA2829.htm +++ b/approved/html/EARoot/EA1/EA3/EA13/EA14/EA2829.htm @@ -109,7 +109,7 @@ - Public Decimal
  eastBoundLongitude + Public Decimal
  westBoundLongitude @@ -158,7 +158,7 @@ Notes: - Eastern-most coordinate of the limit of the dataset extent expressed in longitude, in decimal degrees<br/> + Western-most coordinate of the limit of the dataset extent expressed in longitude, in decimal degrees<br/> @@ -167,7 +167,7 @@ - Public Decimal
  northBoundLatitude + Public Decimal
  eastBoundLongitude @@ -216,7 +216,7 @@ Notes: - Northern-most coordinate of the limit of the dataset extent expressed in latitude, in decimal degrees<br/> + Eastern-most coordinate of the limit of the dataset extent expressed in longitude, in decimal degrees<br/> @@ -283,7 +283,7 @@ - Public Decimal
  westBoundLongitude + Public Decimal
  northBoundLatitude @@ -332,7 +332,7 @@ Notes: - Western-most coordinate of the limit of the dataset extent expressed in longitude, in decimal degrees<br/> + Northern-most coordinate of the limit of the dataset extent expressed in latitude, in decimal degrees<br/> diff --git a/approved/html/EARoot/EA1/EA3/EA13/EA14/EA2834.htm b/approved/html/EARoot/EA1/EA3/EA13/EA14/EA2834.htm index b6419386c..6ad5434da 100644 --- a/approved/html/EARoot/EA1/EA3/EA13/EA14/EA2834.htm +++ b/approved/html/EARoot/EA1/EA3/EA13/EA14/EA2834.htm @@ -109,7 +109,7 @@ - Public Real
  maximumValue + Public Real
  minimumValue @@ -158,7 +158,7 @@ Notes: - Highest vertical extent contained in the dataset <br/> + Lowest vertical extent contained in the dataset <br/> @@ -167,7 +167,7 @@ - Public Real
  minimumValue + Public Real
  maximumValue @@ -216,7 +216,7 @@ Notes: - Lowest vertical extent contained in the dataset <br/> + Highest vertical extent contained in the dataset <br/> diff --git a/approved/html/EARoot/EA1/EA3/EA13/EA15/EA2835.htm b/approved/html/EARoot/EA1/EA3/EA13/EA15/EA2835.htm index 62f7a2279..e8f53e7dc 100644 --- a/approved/html/EARoot/EA1/EA3/EA13/EA15/EA2835.htm +++ b/approved/html/EARoot/EA1/EA3/EA13/EA15/EA2835.htm @@ -42,7 +42,7 @@ - + diff --git a/approved/html/EARoot/EA1/EA3/EA13/EA15/EA2836.png b/approved/html/EARoot/EA1/EA3/EA13/EA15/EA2836.png index 2a3dd4db4..6a51ffbcd 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA13/EA15/EA2836.png and b/approved/html/EARoot/EA1/EA3/EA13/EA15/EA2836.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA13/EA15/EA2838.png b/approved/html/EARoot/EA1/EA3/EA13/EA15/EA2838.png index 64e022b38..a1a1dfbe4 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA13/EA15/EA2838.png and b/approved/html/EARoot/EA1/EA3/EA13/EA15/EA2838.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA13/EA15/EA2840.png b/approved/html/EARoot/EA1/EA3/EA13/EA15/EA2840.png index 510c01fe2..2e10a90cd 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA13/EA15/EA2840.png and b/approved/html/EARoot/EA1/EA3/EA13/EA15/EA2840.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA13/EA15/EA2842.png b/approved/html/EARoot/EA1/EA3/EA13/EA15/EA2842.png index fa984267d..a53238e43 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA13/EA15/EA2842.png and b/approved/html/EARoot/EA1/EA3/EA13/EA15/EA2842.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA13/EA15/EA2844.png b/approved/html/EARoot/EA1/EA3/EA13/EA15/EA2844.png index 53722da04..9b3f4920a 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA13/EA15/EA2844.png and b/approved/html/EARoot/EA1/EA3/EA13/EA15/EA2844.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA13/EA15/EA2850.png b/approved/html/EARoot/EA1/EA3/EA13/EA15/EA2850.png index eda9a0948..8bfd330b6 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA13/EA15/EA2850.png and b/approved/html/EARoot/EA1/EA3/EA13/EA15/EA2850.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA13/EA15/EA2853.htm b/approved/html/EARoot/EA1/EA3/EA13/EA15/EA2853.htm index d7ae23983..4b422e5a0 100644 --- a/approved/html/EARoot/EA1/EA3/EA13/EA15/EA2853.htm +++ b/approved/html/EARoot/EA1/EA3/EA13/EA15/EA2853.htm @@ -38,7 +38,7 @@ - + diff --git a/approved/html/EARoot/EA1/EA3/EA13/EA15/EA2854.png b/approved/html/EARoot/EA1/EA3/EA13/EA15/EA2854.png index 7042690f5..38252df03 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA13/EA15/EA2854.png and b/approved/html/EARoot/EA1/EA3/EA13/EA15/EA2854.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA13/EA15/EA2856.png b/approved/html/EARoot/EA1/EA3/EA13/EA15/EA2856.png index 32b6ae568..98ed6c413 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA13/EA15/EA2856.png and b/approved/html/EARoot/EA1/EA3/EA13/EA15/EA2856.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA13/EA15/EA2858.png b/approved/html/EARoot/EA1/EA3/EA13/EA15/EA2858.png index 997c1671b..70be5b5de 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA13/EA15/EA2858.png and b/approved/html/EARoot/EA1/EA3/EA13/EA15/EA2858.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA13/EA15/EA2860.png b/approved/html/EARoot/EA1/EA3/EA13/EA15/EA2860.png index 8214a6023..8136f394f 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA13/EA15/EA2860.png and b/approved/html/EARoot/EA1/EA3/EA13/EA15/EA2860.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA13/EA15/EA2864.png b/approved/html/EARoot/EA1/EA3/EA13/EA15/EA2864.png index d3b8f8cd0..627636672 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA13/EA15/EA2864.png and b/approved/html/EARoot/EA1/EA3/EA13/EA15/EA2864.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA13/EA15/EA2867.htm b/approved/html/EARoot/EA1/EA3/EA13/EA15/EA2867.htm index 2d3673f2d..2600b662f 100644 --- a/approved/html/EARoot/EA1/EA3/EA13/EA15/EA2867.htm +++ b/approved/html/EARoot/EA1/EA3/EA13/EA15/EA2867.htm @@ -108,7 +108,7 @@ - Public CharacterString
  administrativeArea + Public CharacterString
  deliveryPoint @@ -134,7 +134,7 @@ Range: - Range:0 to 1 + Range:0 to * Transient: @@ -157,7 +157,7 @@ Notes: - State, province of the physical address<br/> + Address line for the physical address (Street name, box number, suite)<br/> @@ -224,7 +224,7 @@ - Public CharacterString
  country + Public CharacterString
  administrativeArea @@ -273,7 +273,7 @@ Notes: - Country of the physical address<br/> + State, province of the physical address<br/> @@ -282,7 +282,7 @@ - Public CharacterString
  deliveryPoint + Public CharacterString
  postalCode @@ -308,7 +308,7 @@ Range: - Range:0 to * + Range:0 to 1 Transient: @@ -331,7 +331,7 @@ Notes: - Address line for the physical address (Street name, box number, suite)<br/> + ZIP or other postal code <br/> @@ -340,7 +340,7 @@ - Public CharacterString
  electronicMailAddress + Public CharacterString
  country @@ -366,7 +366,7 @@ Range: - Range:0 to * + Range:0 to 1 Transient: @@ -389,7 +389,7 @@ Notes: - Address of the electronic mailbox of the responsible organisation or individual<br/> + Country of the physical address<br/> @@ -398,7 +398,7 @@ - Public CharacterString
  postalCode + Public CharacterString
  electronicMailAddress @@ -424,7 +424,7 @@ Range: - Range:0 to 1 + Range:0 to * Transient: @@ -447,7 +447,7 @@ Notes: - ZIP or other postal code <br/> + Address of the electronic mailbox of the responsible organisation or individual<br/> diff --git a/approved/html/EARoot/EA1/EA3/EA13/EA15/EA2868.htm b/approved/html/EARoot/EA1/EA3/EA13/EA15/EA2868.htm index bcb3e7499..3d87cf713 100644 --- a/approved/html/EARoot/EA1/EA3/EA13/EA15/EA2868.htm +++ b/approved/html/EARoot/EA1/EA3/EA13/EA15/EA2868.htm @@ -108,7 +108,7 @@ - Public CharacterString
  alternateTitle + Public CharacterString
  title @@ -134,7 +134,7 @@ Range: - Range:0 to * + Transient: @@ -157,7 +157,7 @@ Notes: - Short name or other language name by which the cited information is known.<br/>-Example: "Digital Chart of the World" or "DCW"<br/> + Name by which the cited information is known<br/> @@ -166,7 +166,7 @@ - Public CI_ResponsibleParty
  citedResponsibleParty + Public CharacterString
  alternateTitle @@ -215,7 +215,7 @@ Notes: - Name and position information for an individual or organisation that is responsible for the resource.<br/> + Short name or other language name by which the cited information is known.<br/>-Example: "Digital Chart of the World" or "DCW"<br/> @@ -224,7 +224,7 @@ - Public CharacterString
  collectiveTitle + Public CI_Date
  date @@ -250,7 +250,7 @@ Range: - Range:0 to 1 + Transient: @@ -273,7 +273,7 @@ Notes: - Common title with holdings note.<br/> + Reference date for the cited information<br/> @@ -282,7 +282,7 @@ - Public CI_Date
  date + Public CharacterString
  edition @@ -308,7 +308,7 @@ Range: - + Range:0 to 1 Transient: @@ -331,7 +331,7 @@ Notes: - Reference date for the cited information<br/> + Version of the dataset<br/> @@ -340,7 +340,7 @@ - Public CharacterString
  edition + Public Date
  editionDate @@ -389,7 +389,7 @@ Notes: - Version of the dataset<br/> + Date of the edition<br/> @@ -398,7 +398,7 @@ - Public Date
  editionDate + Public MD_Identifier
  identifier @@ -424,7 +424,7 @@ Range: - Range:0 to 1 + Range:0 to * Transient: @@ -447,7 +447,7 @@ Notes: - Date of the edition<br/> + value uniquely identifying an object within a namespace<br/> @@ -456,7 +456,7 @@ - Public MD_Identifier
  identifier + Public CI_ResponsibleParty
  citedResponsibleParty @@ -505,7 +505,7 @@ Notes: - value uniquely identifying an object within a namespace<br/> + Name and position information for an individual or organisation that is responsible for the resource.<br/> @@ -514,7 +514,7 @@ - Public CharacterString
  ISBN + Public CI_PresentationFormCode
  presentationForm @@ -540,7 +540,7 @@ Range: - Range:0 to 1 + Range:0 to * Transient: @@ -563,7 +563,7 @@ Notes: - International Standard Book Number.<br/> + Mode in which the data is represented<br/> @@ -572,7 +572,7 @@ - Public CharacterString
  ISSN + Public CI_Series
  series @@ -621,7 +621,7 @@ Notes: - International Standard Serial Number.<br/> + Name of the series of which the dataset is a part<br/> @@ -688,7 +688,7 @@ - Public CI_PresentationFormCode
  presentationForm + Public CharacterString
  collectiveTitle @@ -714,7 +714,7 @@ Range: - Range:0 to * + Range:0 to 1 Transient: @@ -737,7 +737,7 @@ Notes: - Mode in which the data is represented<br/> + Common title with holdings note.<br/> @@ -746,7 +746,7 @@ - Public CI_Series
  series + Public CharacterString
  ISBN @@ -795,7 +795,7 @@ Notes: - Name of the series of which the dataset is a part<br/> + International Standard Book Number.<br/> @@ -804,7 +804,7 @@ - Public CharacterString
  title + Public CharacterString
  ISSN @@ -830,7 +830,7 @@ Range: - + Range:0 to 1 Transient: @@ -853,7 +853,7 @@ Notes: - Name by which the cited information is known<br/> + International Standard Serial Number.<br/> diff --git a/approved/html/EARoot/EA1/EA3/EA13/EA15/EA2869.htm b/approved/html/EARoot/EA1/EA3/EA13/EA15/EA2869.htm index f0c72642c..d9077593d 100644 --- a/approved/html/EARoot/EA1/EA3/EA13/EA15/EA2869.htm +++ b/approved/html/EARoot/EA1/EA3/EA13/EA15/EA2869.htm @@ -108,7 +108,7 @@ - Public CI_Address
  address + Public CI_Telephone
  phone @@ -157,7 +157,7 @@ Notes: - Physical and email address at which the organisation or individual may be contacted<br/> + Telephone numbers at which the organisation or individual may be contacted<br/> @@ -166,7 +166,7 @@ - Public CharacterString
  contactInstructions + Public CI_Address
  address @@ -215,7 +215,7 @@ Notes: - Supplemental instructions on how or when to contact the individual or organisation<br/> + Physical and email address at which the organisation or individual may be contacted<br/> @@ -224,7 +224,7 @@ - Public CharacterString
  hoursOfService + Public CI_OnlineResource
  onlineResource @@ -273,7 +273,7 @@ Notes: - Time period (including time zone) when individuals can contact the organisation or individual<br/> + Online information that can be used to contact the individual or organisation<br/> @@ -282,7 +282,7 @@ - Public CI_OnlineResource
  onlineResource + Public CharacterString
  hoursOfService @@ -331,7 +331,7 @@ Notes: - Online information that can be used to contact the individual or organisation<br/> + Time period (including time zone) when individuals can contact the organisation or individual<br/> @@ -340,7 +340,7 @@ - Public CI_Telephone
  phone + Public CharacterString
  contactInstructions @@ -389,7 +389,7 @@ Notes: - Telephone numbers at which the organisation or individual may be contacted<br/> + Supplemental instructions on how or when to contact the individual or organisation<br/> diff --git a/approved/html/EARoot/EA1/EA3/EA13/EA15/EA2873.htm b/approved/html/EARoot/EA1/EA3/EA13/EA15/EA2873.htm index 72395a41c..51ed52191 100644 --- a/approved/html/EARoot/EA1/EA3/EA13/EA15/EA2873.htm +++ b/approved/html/EARoot/EA1/EA3/EA13/EA15/EA2873.htm @@ -108,7 +108,7 @@ - Public CharacterString
  applicationProfile + Public URL
  linkage @@ -134,7 +134,7 @@ Range: - Range:0 to 1 + Transient: @@ -157,7 +157,7 @@ Notes: - Name of an application profile that can be used with the resource<br/> + Method, source, or location for online access.<br/>Example: a Uniform Resource Locator (URL) such as http://www,gii.getty.edu/tgn_browser/<br/> @@ -166,7 +166,7 @@ - Public CharacterString
  description + Public CharacterString
  protocol @@ -215,7 +215,7 @@ Notes: - Description of what the resource is/does<br/> + Connection protocol to be used<br/> @@ -224,7 +224,7 @@ - Public CI_OnLineFunctionCode
  function + Public CharacterString
  applicationProfile @@ -273,7 +273,7 @@ Notes: - Function performed by the resource<br/> + Name of an application profile that can be used with the resource<br/> @@ -282,7 +282,7 @@ - Public URL
  linkage + Public CharacterString
  name @@ -308,7 +308,7 @@ Range: - + Range:0 to 1 Transient: @@ -331,7 +331,7 @@ Notes: - Method, source, or location for online access.<br/>Example: a Uniform Resource Locator (URL) such as http://www,gii.getty.edu/tgn_browser/<br/> + Name of the resource<br/> @@ -340,7 +340,7 @@ - Public CharacterString
  name + Public CharacterString
  description @@ -389,7 +389,7 @@ Notes: - Name of the resource<br/> + Description of what the resource is/does<br/> @@ -398,7 +398,7 @@ - Public CharacterString
  protocol + Public CI_OnLineFunctionCode
  function @@ -447,7 +447,7 @@ Notes: - Connection protocol to be used<br/> + Function performed by the resource<br/> diff --git a/approved/html/EARoot/EA1/EA3/EA13/EA15/EA2875.htm b/approved/html/EARoot/EA1/EA3/EA13/EA15/EA2875.htm index b98efeebe..5a873af39 100644 --- a/approved/html/EARoot/EA1/EA3/EA13/EA15/EA2875.htm +++ b/approved/html/EARoot/EA1/EA3/EA13/EA15/EA2875.htm @@ -109,7 +109,7 @@ - Public CI_Contact
  contactInfo + Public CharacterString
  individualName @@ -158,7 +158,7 @@ Notes: - Address of the responsible party<br/><br/> + Name of the responsible person-  SURNAME, given name, title separated by a delimiter<br/><br/> @@ -167,7 +167,7 @@ - Public CharacterString
  individualName + Public CharacterString
  organisationName @@ -216,7 +216,7 @@ Notes: - Name of the responsible person-  SURNAME, given name, title separated by a delimiter<br/><br/> + Name of the responsible organisation<br/><br/> @@ -225,7 +225,7 @@ - Public CharacterString
  organisationName + Public CharacterString
  positionName @@ -274,7 +274,7 @@ Notes: - Name of the responsible organisation<br/><br/> + Role or position of the responsible person<br/><br/> @@ -283,7 +283,7 @@ - Public CharacterString
  positionName + Public CI_Contact
  contactInfo @@ -332,7 +332,7 @@ Notes: - Role or position of the responsible person<br/><br/> + Address of the responsible party<br/><br/> diff --git a/approved/html/EARoot/EA1/EA3/EA13/EA15/EA2876.htm b/approved/html/EARoot/EA1/EA3/EA13/EA15/EA2876.htm index 9dd965592..89a92db1b 100644 --- a/approved/html/EARoot/EA1/EA3/EA13/EA15/EA2876.htm +++ b/approved/html/EARoot/EA1/EA3/EA13/EA15/EA2876.htm @@ -108,7 +108,7 @@ - Public <undefined>
  author + Public <undefined>
  resourceProvider @@ -151,7 +151,17 @@ -   +
+ + + + +
+ Notes: + + Party that supplies the data<br/> +
+ @@ -214,7 +224,7 @@ - Public <undefined>
  distributor + Public <undefined>
  owner @@ -263,7 +273,7 @@ Notes: - Person or organisation who distributes the data<br/> + Person who owns the data<br/> @@ -272,7 +282,7 @@ - Public <undefined>
  originator + Public <undefined>
  user @@ -321,7 +331,7 @@ Notes: - Responsible party who created the dataset or metadata<br/> + Person who uses the data<br/> @@ -330,7 +340,7 @@ - Public <undefined>
  owner + Public <undefined>
  distributor @@ -379,7 +389,7 @@ Notes: - Person who owns the data<br/> + Person or organisation who distributes the data<br/> @@ -388,7 +398,7 @@ - Public <undefined>
  pointOfContact + Public <undefined>
  originator @@ -437,7 +447,7 @@ Notes: - Responsible party who can be contacted for acquiring knowledge about or acquisition of the data.<br/> + Responsible party who created the dataset or metadata<br/> @@ -446,7 +456,7 @@ - Public <undefined>
  principalInvestigator + Public <undefined>
  pointOfContact @@ -495,7 +505,7 @@ Notes: - Key person responsible for gathering information and conducting research<br/> + Responsible party who can be contacted for acquiring knowledge about or acquisition of the data.<br/> @@ -504,7 +514,7 @@ - Public <undefined>
  processor + Public <undefined>
  principalInvestigator @@ -553,7 +563,7 @@ Notes: - Responsible party who has processed the data in a manner in which the data has been modified.<br/> + Key person responsible for gathering information and conducting research<br/> @@ -562,7 +572,7 @@ - Public <undefined>
  publisher + Public <undefined>
  processor @@ -611,7 +621,7 @@ Notes: - Responsible party who published the data<br/> + Responsible party who has processed the data in a manner in which the data has been modified.<br/> @@ -620,7 +630,7 @@ - Public <undefined>
  resourceProvider + Public <undefined>
  publisher @@ -669,7 +679,7 @@ Notes: - Party that supplies the data<br/> + Responsible party who published the data<br/> @@ -678,7 +688,7 @@ - Public <undefined>
  user + Public <undefined>
  author @@ -721,17 +731,7 @@ -
- - - - -
- Notes: - - Person who uses the data<br/> -
- +   diff --git a/approved/html/EARoot/EA1/EA3/EA13/EA15/EA2877.htm b/approved/html/EARoot/EA1/EA3/EA13/EA15/EA2877.htm index 37fd60772..f8c1f272f 100644 --- a/approved/html/EARoot/EA1/EA3/EA13/EA15/EA2877.htm +++ b/approved/html/EARoot/EA1/EA3/EA13/EA15/EA2877.htm @@ -107,7 +107,7 @@ - Public CharacterString
  issueIdentification + Public CharacterString
  name @@ -155,7 +155,7 @@ - Public CharacterString
  name + Public CharacterString
  issueIdentification diff --git a/approved/html/EARoot/EA1/EA3/EA13/EA15/EA2878.htm b/approved/html/EARoot/EA1/EA3/EA13/EA15/EA2878.htm index 32868e2e6..c94136be3 100644 --- a/approved/html/EARoot/EA1/EA3/EA13/EA15/EA2878.htm +++ b/approved/html/EARoot/EA1/EA3/EA13/EA15/EA2878.htm @@ -108,7 +108,7 @@ - Public CharacterString
  facsimile + Public CharacterString
  voice @@ -157,7 +157,7 @@ Notes: - Telephone number of a facsimile machine for the responsible organisation or individual<br/> + Telephone number by which individuals can speak to the responsible organisation or individual<br/> @@ -166,7 +166,7 @@ - Public CharacterString
  voice + Public CharacterString
  facsimile @@ -215,7 +215,7 @@ Notes: - Telephone number by which individuals can speak to the responsible organisation or individual<br/> + Telephone number of a facsimile machine for the responsible organisation or individual<br/> diff --git a/approved/html/EARoot/EA1/EA3/EA13/EA2/EA2450.png b/approved/html/EARoot/EA1/EA3/EA13/EA2/EA2450.png index c956911c9..e186b098c 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA13/EA2/EA2450.png and b/approved/html/EARoot/EA1/EA3/EA13/EA2/EA2450.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA13/EA2/EA2452.png b/approved/html/EARoot/EA1/EA3/EA13/EA2/EA2452.png index 59df8d414..e2245caef 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA13/EA2/EA2452.png and b/approved/html/EARoot/EA1/EA3/EA13/EA2/EA2452.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA13/EA2/EA2454.png b/approved/html/EARoot/EA1/EA3/EA13/EA2/EA2454.png index 196e881f0..2c2832002 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA13/EA2/EA2454.png and b/approved/html/EARoot/EA1/EA3/EA13/EA2/EA2454.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA13/EA2/EA2457.htm b/approved/html/EARoot/EA1/EA3/EA13/EA2/EA2457.htm index 6805fed48..2a136672b 100644 --- a/approved/html/EARoot/EA1/EA3/EA13/EA2/EA2457.htm +++ b/approved/html/EARoot/EA1/EA3/EA13/EA2/EA2457.htm @@ -111,7 +111,7 @@ - Public MD_CharacterSetCode
  characterSet + Public CharacterString
  fileIdentifier @@ -125,7 +125,7 @@ Initial: - "utf8" + Stereotype: @@ -160,7 +160,7 @@ Notes: - Full name of the ISO character coding standard used for the metadata set<br/> + Unique identifier for this metadata file<br/> @@ -169,7 +169,7 @@ - Public CI_ResponsibleParty
  contact + Public CharacterString
  language @@ -195,7 +195,7 @@ Range: - + Range:0 to 1 Transient: @@ -218,7 +218,7 @@ Notes: - Party responsible for the metadata information<br/> + Language used for documenting metadata<br/> @@ -227,7 +227,7 @@ - Public CharacterString
  dataSet + Public MD_CharacterSetCode
  characterSet @@ -241,7 +241,7 @@ Initial: - + "utf8" Stereotype: @@ -270,12 +270,22 @@ -   +
+ + + + +
+ Notes: + + Full name of the ISO character coding standard used for the metadata set<br/> +
+ - Public Date
  dateStamp + Public CharacterString
  parentIdentifier @@ -301,7 +311,7 @@ Range: - + Range:0 to 1 Transient: @@ -324,7 +334,7 @@ Notes: - Date that the metadata were created or last updated<br/> + Unique identifier of the parent metadata file<br/> @@ -333,7 +343,7 @@ - Public CharacterString
  fileIdentifier + Public MD_ScopeCode
  hierarchyLevel @@ -347,7 +357,7 @@ Initial: - + "dataset" Stereotype: @@ -359,7 +369,7 @@ Range: - Range:0 to 1 + Range:0 to * Transient: @@ -375,14 +385,14 @@ - + RationalRose$Java:Final=False
RationalRose$Java:GenerateDataMember=True
RationalRose$Java:Transient=False
RationalRose$Java:Volatile=False
RationalRose$Oracle8:CompositeUnique=False
RationalRose$Oracle8:IsIndex=False
RationalRose$Oracle8:IsPrimaryKey=False
RationalRose$Oracle8:IsUnique=False
RationalRose$Oracle8:NullsAllowed=True
RationalRose$Oracle8:Precision=2
RationalRose$Oracle8:Scale=6
RationalRose$Visual Basic:DataMemberName=$relationship
RationalRose$Visual Basic:GenerateDataMember=True
RationalRose$Visual Basic:GenerateGetOperation=False
RationalRose$Visual Basic:GenerateLetOperation=False
RationalRose$Visual Basic:GenerateSetOperation=False
RationalRose$Visual Basic:IsConst=False
RationalRose$Visual Basic:NameIfUnlabeled=the$supplier
RationalRose$Visual Basic:New=False
RationalRose$Visual Basic:WithEvents=False
Notes: - Unique identifier for this metadata file<br/> + Scope to which the metadata applies (see informative Annex J for more information about metadata heirarchy levels)<br/>
@@ -391,7 +401,7 @@ - Public MD_ScopeCode
  hierarchyLevel + Public CharacterString
  hierarchyLevelName @@ -405,7 +415,7 @@ Initial: - "dataset" + Stereotype: @@ -433,14 +443,14 @@ - RationalRose$Java:Final=False
RationalRose$Java:GenerateDataMember=True
RationalRose$Java:Transient=False
RationalRose$Java:Volatile=False
RationalRose$Oracle8:CompositeUnique=False
RationalRose$Oracle8:IsIndex=False
RationalRose$Oracle8:IsPrimaryKey=False
RationalRose$Oracle8:IsUnique=False
RationalRose$Oracle8:NullsAllowed=True
RationalRose$Oracle8:Precision=2
RationalRose$Oracle8:Scale=6
RationalRose$Visual Basic:DataMemberName=$relationship
RationalRose$Visual Basic:GenerateDataMember=True
RationalRose$Visual Basic:GenerateGetOperation=False
RationalRose$Visual Basic:GenerateLetOperation=False
RationalRose$Visual Basic:GenerateSetOperation=False
RationalRose$Visual Basic:IsConst=False
RationalRose$Visual Basic:NameIfUnlabeled=the$supplier
RationalRose$Visual Basic:New=False
RationalRose$Visual Basic:WithEvents=False
+
Notes: - Scope to which the metadata applies (see informative Annex J for more information about metadata heirarchy levels)<br/> + Name of the hierarchy level<br/>
@@ -449,7 +459,7 @@ - Public CharacterString
  hierarchyLevelName + Public CI_ResponsibleParty
  contact @@ -475,7 +485,7 @@ Range: - Range:0 to * + Transient: @@ -498,7 +508,7 @@ Notes: - Name of the hierarchy level<br/> + Party responsible for the metadata information<br/> @@ -507,7 +517,7 @@ - Public CharacterString
  language + Public Date
  dateStamp @@ -533,7 +543,7 @@ Range: - Range:0 to 1 + Transient: @@ -556,7 +566,7 @@ Notes: - Language used for documenting metadata<br/> + Date that the metadata were created or last updated<br/> @@ -565,7 +575,7 @@ - Public PT_Locale
  locale + Public CharacterString
  metadataStandardName @@ -591,7 +601,7 @@ Range: - Range:0 to * + Range:0 to 1 Transient: @@ -608,12 +618,22 @@ -   +
+ + + + +
+ Notes: + + Name of the metadata standard used<br/> +
+ - Public CharacterString
  metadataStandardName + Public CharacterString
  metadataStandardVersion @@ -662,7 +682,7 @@ Notes: - Name of the metadata standard used<br/> + Version of the metadata standard used<br/> @@ -671,7 +691,7 @@ - Public CharacterString
  metadataStandardVersion + Public CharacterString
  dataSet @@ -714,22 +734,12 @@ -
- - - - -
- Notes: - - Version of the metadata standard used<br/> -
- +   - Public CharacterString
  parentIdentifier + Public PT_Locale
  locale @@ -755,7 +765,7 @@ Range: - Range:0 to 1 + Range:0 to * Transient: @@ -772,17 +782,7 @@ -
- - - - -
- Notes: - - Unique identifier of the parent metadata file<br/> -
- +   diff --git a/approved/html/EARoot/EA1/EA3/EA13/EA2394.png b/approved/html/EARoot/EA1/EA3/EA13/EA2394.png index d2037fcde..eefe5aad6 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA13/EA2394.png and b/approved/html/EARoot/EA1/EA3/EA13/EA2394.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA13/EA2400.png b/approved/html/EARoot/EA1/EA3/EA13/EA2400.png index 9976108c9..3d127eb7b 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA13/EA2400.png and b/approved/html/EARoot/EA1/EA3/EA13/EA2400.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA13/EA3/EA2463.png b/approved/html/EARoot/EA1/EA3/EA13/EA3/EA2463.png index 408401d2f..f4961e43c 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA13/EA3/EA2463.png and b/approved/html/EARoot/EA1/EA3/EA13/EA3/EA2463.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA13/EA3/EA2465.png b/approved/html/EARoot/EA1/EA3/EA13/EA3/EA2465.png index f4819c2f7..2240432d0 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA13/EA3/EA2465.png and b/approved/html/EARoot/EA1/EA3/EA13/EA3/EA2465.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA13/EA3/EA2467.png b/approved/html/EARoot/EA1/EA3/EA13/EA3/EA2467.png index f074f6532..81dd226fa 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA13/EA3/EA2467.png and b/approved/html/EARoot/EA1/EA3/EA13/EA3/EA2467.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA13/EA3/EA2469.png b/approved/html/EARoot/EA1/EA3/EA13/EA3/EA2469.png index 11130619f..7973010a5 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA13/EA3/EA2469.png and b/approved/html/EARoot/EA1/EA3/EA13/EA3/EA2469.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA13/EA3/EA2471.png b/approved/html/EARoot/EA1/EA3/EA13/EA3/EA2471.png index 7e615fd13..c7d5df8cf 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA13/EA3/EA2471.png and b/approved/html/EARoot/EA1/EA3/EA13/EA3/EA2471.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA13/EA3/EA2473.png b/approved/html/EARoot/EA1/EA3/EA13/EA3/EA2473.png index e5d70d8c6..187f24851 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA13/EA3/EA2473.png and b/approved/html/EARoot/EA1/EA3/EA13/EA3/EA2473.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA13/EA3/EA2475.png b/approved/html/EARoot/EA1/EA3/EA13/EA3/EA2475.png index 961e9ff4e..8cb815490 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA13/EA3/EA2475.png and b/approved/html/EARoot/EA1/EA3/EA13/EA3/EA2475.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA13/EA3/EA2481.png b/approved/html/EARoot/EA1/EA3/EA13/EA3/EA2481.png index 61022496b..546abaa85 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA13/EA3/EA2481.png and b/approved/html/EARoot/EA1/EA3/EA13/EA3/EA2481.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA13/EA3/EA2483.png b/approved/html/EARoot/EA1/EA3/EA13/EA3/EA2483.png index 014e60d34..1c70c2b36 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA13/EA3/EA2483.png and b/approved/html/EARoot/EA1/EA3/EA13/EA3/EA2483.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA13/EA3/EA2485.png b/approved/html/EARoot/EA1/EA3/EA13/EA3/EA2485.png index a87485552..2ccff5b9a 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA13/EA3/EA2485.png and b/approved/html/EARoot/EA1/EA3/EA13/EA3/EA2485.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA13/EA3/EA2489.png b/approved/html/EARoot/EA1/EA3/EA13/EA3/EA2489.png index 1a55ec281..b2ee66dc0 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA13/EA3/EA2489.png and b/approved/html/EARoot/EA1/EA3/EA13/EA3/EA2489.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA13/EA3/EA2491.png b/approved/html/EARoot/EA1/EA3/EA13/EA3/EA2491.png index 50c26d45b..f2d6b582e 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA13/EA3/EA2491.png and b/approved/html/EARoot/EA1/EA3/EA13/EA3/EA2491.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA13/EA3/EA2499.htm b/approved/html/EARoot/EA1/EA3/EA13/EA3/EA2499.htm index 664954ed2..9b249b760 100644 --- a/approved/html/EARoot/EA1/EA3/EA13/EA3/EA2499.htm +++ b/approved/html/EARoot/EA1/EA3/EA13/EA3/EA2499.htm @@ -416,7 +416,7 @@ - Public <undefined>
  operation + Public <undefined>
  sensor @@ -464,7 +464,7 @@ - Public <undefined>
  platform + Public <undefined>
  operation @@ -512,7 +512,7 @@ - Public <undefined>
  process + Public <undefined>
  platform @@ -560,7 +560,7 @@ - Public <undefined>
  program + Public <undefined>
  process @@ -608,7 +608,7 @@ - Public <undefined>
  project + Public <undefined>
  program @@ -656,7 +656,7 @@ - Public <undefined>
  sensor + Public <undefined>
  project diff --git a/approved/html/EARoot/EA1/EA3/EA13/EA3/EA2500.htm b/approved/html/EARoot/EA1/EA3/EA13/EA3/EA2500.htm index 5a15a52d4..e4b54e980 100644 --- a/approved/html/EARoot/EA1/EA3/EA13/EA3/EA2500.htm +++ b/approved/html/EARoot/EA1/EA3/EA13/EA3/EA2500.htm @@ -109,7 +109,7 @@ - Public MD_Identifier
  aggregateDataSetIdentifier + Public CI_Citation
  aggregateDataSetName @@ -157,7 +157,7 @@ - Public CI_Citation
  aggregateDataSetName + Public MD_Identifier
  aggregateDataSetIdentifier diff --git a/approved/html/EARoot/EA1/EA3/EA13/EA3/EA2501.htm b/approved/html/EARoot/EA1/EA3/EA13/EA3/EA2501.htm index 0709df3d3..4d3a0e758 100644 --- a/approved/html/EARoot/EA1/EA3/EA13/EA3/EA2501.htm +++ b/approved/html/EARoot/EA1/EA3/EA13/EA3/EA2501.htm @@ -109,7 +109,7 @@ - Public CharacterString
  fileDescription + Public CharacterString
  fileName @@ -135,7 +135,7 @@ Range: - Range:0 to 1 + Transient: @@ -158,7 +158,7 @@ Notes: - Text description of the illustration<br/> + Name of the file that contains a graphic that provides an illustration of the dataset<br/> @@ -167,7 +167,7 @@ - Public CharacterString
  fileName + Public CharacterString
  fileDescription @@ -193,7 +193,7 @@ Range: - + Range:0 to 1 Transient: @@ -216,7 +216,7 @@ Notes: - Name of the file that contains a graphic that provides an illustration of the dataset<br/> + Text description of the illustration<br/> diff --git a/approved/html/EARoot/EA1/EA3/EA13/EA3/EA2502.htm b/approved/html/EARoot/EA1/EA3/EA13/EA3/EA2502.htm index 4b29d86d5..a0dd18ffe 100644 --- a/approved/html/EARoot/EA1/EA3/EA13/EA3/EA2502.htm +++ b/approved/html/EARoot/EA1/EA3/EA13/EA3/EA2502.htm @@ -107,7 +107,7 @@ - Public <undefined>
  (reservedforfutureuse) + Public <undefined>
  ucs2 @@ -155,7 +155,7 @@ - Public <undefined>
  8859part1 + Public <undefined>
  ucs4 @@ -203,7 +203,7 @@ - Public <undefined>
  8859part10 + Public <undefined>
  utf7 @@ -251,7 +251,7 @@ - Public <undefined>
  8859part11 + Public <undefined>
  utf8 @@ -299,7 +299,7 @@ - Public <undefined>
  8859part13 + Public <undefined>
  utf16 @@ -347,7 +347,7 @@ - Public <undefined>
  8859part14 + Public <undefined>
  8859part1 @@ -395,7 +395,7 @@ - Public <undefined>
  8859part15 + Public <undefined>
  8859part2 @@ -443,7 +443,7 @@ - Public <undefined>
  8859part16 + Public <undefined>
  8859part3 @@ -491,7 +491,7 @@ - Public <undefined>
  8859part2 + Public <undefined>
  8859part4 @@ -539,7 +539,7 @@ - Public <undefined>
  8859part3 + Public <undefined>
  8859part5 @@ -587,7 +587,7 @@ - Public <undefined>
  8859part4 + Public <undefined>
  8859part6 @@ -635,7 +635,7 @@ - Public <undefined>
  8859part5 + Public <undefined>
  8859part7 @@ -683,7 +683,7 @@ - Public <undefined>
  8859part6 + Public <undefined>
  8859part8 @@ -731,7 +731,7 @@ - Public <undefined>
  8859part7 + Public <undefined>
  8859part9 @@ -779,7 +779,7 @@ - Public <undefined>
  8859part8 + Public <undefined>
  8859part10 @@ -827,7 +827,7 @@ - Public <undefined>
  8859part9 + Public <undefined>
  8859part11 @@ -875,7 +875,7 @@ - Public <undefined>
  big5 + Public <undefined>
  (reservedforfutureuse) @@ -923,7 +923,7 @@ - Public <undefined>
  ebcdic + Public <undefined>
  8859part13 @@ -971,7 +971,7 @@ - Public <undefined>
  eucJP + Public <undefined>
  8859part14 @@ -1019,7 +1019,7 @@ - Public <undefined>
  eucKR + Public <undefined>
  8859part15 @@ -1067,7 +1067,7 @@ - Public <undefined>
  GB2312 + Public <undefined>
  8859part16 @@ -1211,7 +1211,7 @@ - Public <undefined>
  ucs2 + Public <undefined>
  eucJP @@ -1259,7 +1259,7 @@ - Public <undefined>
  ucs4 + Public <undefined>
  usAscii @@ -1307,7 +1307,7 @@ - Public <undefined>
  usAscii + Public <undefined>
  ebcdic @@ -1355,7 +1355,7 @@ - Public <undefined>
  utf16 + Public <undefined>
  eucKR @@ -1403,7 +1403,7 @@ - Public <undefined>
  utf7 + Public <undefined>
  big5 @@ -1451,7 +1451,7 @@ - Public <undefined>
  utf8 + Public <undefined>
  GB2312 diff --git a/approved/html/EARoot/EA1/EA3/EA13/EA3/EA2503.htm b/approved/html/EARoot/EA1/EA3/EA13/EA3/EA2503.htm index 3dd091ea7..a5e60637f 100644 --- a/approved/html/EARoot/EA1/EA3/EA13/EA3/EA2503.htm +++ b/approved/html/EARoot/EA1/EA3/EA13/EA3/EA2503.htm @@ -109,7 +109,7 @@ - Public MD_CharacterSetCode
  characterSet + Public MD_SpatialRepresentationTypeCode
  spatialRepresentationType @@ -123,7 +123,7 @@ Initial: - "utf8" + Stereotype: @@ -152,22 +152,12 @@ -
- - - - -
- Notes: - - Full name of the ISO character coding standard used for the data<br/> -
- +   - Public CharacterString
  environmentDescription + Public MD_Resolution
  spatialResolution @@ -193,7 +183,7 @@ Range: - Range:0 to 1 + Range:0 to * Transient: @@ -216,7 +206,7 @@ Notes: - Description of the dataset in the producer's processing environment, including items such as the name of the software, the computer operating system, file name, and the dataset size<br/> + Factor which provides a general understanding of the density of spatial data in the dataset.<br/>Example: The denominator of the representative fraction or the mean ground sample distance<br/> @@ -225,7 +215,7 @@ - Public EX_Extent
  extent + Public CharacterString
  language @@ -251,7 +241,7 @@ Range: - Range:0 to * + Transient: @@ -267,14 +257,14 @@ - RationalRose$Java:Final=False
RationalRose$Java:GenerateDataMember=True
RationalRose$Java:Transient=False
RationalRose$Java:Volatile=False
RationalRose$Oracle8:CompositeUnique=False
RationalRose$Oracle8:IsIndex=False
RationalRose$Oracle8:IsPrimaryKey=False
RationalRose$Oracle8:IsUnique=False
RationalRose$Oracle8:NullsAllowed=True
RationalRose$Oracle8:Precision=2
RationalRose$Oracle8:Scale=6
RationalRose$Visual Basic:DataMemberName=$relationship
RationalRose$Visual Basic:GenerateDataMember=True
RationalRose$Visual Basic:GenerateGetOperation=False
RationalRose$Visual Basic:GenerateLetOperation=False
RationalRose$Visual Basic:GenerateSetOperation=False
RationalRose$Visual Basic:IsConst=False
RationalRose$Visual Basic:NameIfUnlabeled=the$supplier
RationalRose$Visual Basic:New=False
RationalRose$Visual Basic:WithEvents=False
+
Notes: - Additional information about the bounding polygon, vertical, and temporal extent of the dataset<br/> + Language(s) used within the dataset<br/>
@@ -283,7 +273,7 @@ - Public CharacterString
  language + Public MD_CharacterSetCode
  characterSet @@ -297,7 +287,7 @@ Initial: - + "utf8" Stereotype: @@ -309,7 +299,7 @@ Range: - + Range:0 to * Transient: @@ -332,7 +322,7 @@ Notes: - Language(s) used within the dataset<br/> + Full name of the ISO character coding standard used for the data<br/> @@ -341,7 +331,7 @@ - Public MD_SpatialRepresentationTypeCode
  spatialRepresentationType + Public MD_TopicCategoryCode
  topicCategory @@ -367,7 +357,7 @@ Range: - Range:0 to * + Transient: @@ -384,12 +374,22 @@ -   +
+ + + + +
+ Notes: + + Keywords, describing a subject of a dataset<br/> +
+ - Public MD_Resolution
  spatialResolution + Public CharacterString
  environmentDescription @@ -415,7 +415,7 @@ Range: - Range:0 to * + Range:0 to 1 Transient: @@ -438,7 +438,7 @@ Notes: - Factor which provides a general understanding of the density of spatial data in the dataset.<br/>Example: The denominator of the representative fraction or the mean ground sample distance<br/> + Description of the dataset in the producer's processing environment, including items such as the name of the software, the computer operating system, file name, and the dataset size<br/> @@ -447,7 +447,7 @@ - Public CharacterString
  supplementalInformation + Public EX_Extent
  extent @@ -473,7 +473,7 @@ Range: - Range:0 to 1 + Range:0 to * Transient: @@ -489,14 +489,14 @@ - + RationalRose$Java:Final=False
RationalRose$Java:GenerateDataMember=True
RationalRose$Java:Transient=False
RationalRose$Java:Volatile=False
RationalRose$Oracle8:CompositeUnique=False
RationalRose$Oracle8:IsIndex=False
RationalRose$Oracle8:IsPrimaryKey=False
RationalRose$Oracle8:IsUnique=False
RationalRose$Oracle8:NullsAllowed=True
RationalRose$Oracle8:Precision=2
RationalRose$Oracle8:Scale=6
RationalRose$Visual Basic:DataMemberName=$relationship
RationalRose$Visual Basic:GenerateDataMember=True
RationalRose$Visual Basic:GenerateGetOperation=False
RationalRose$Visual Basic:GenerateLetOperation=False
RationalRose$Visual Basic:GenerateSetOperation=False
RationalRose$Visual Basic:IsConst=False
RationalRose$Visual Basic:NameIfUnlabeled=the$supplier
RationalRose$Visual Basic:New=False
RationalRose$Visual Basic:WithEvents=False
Notes: - Other descriptive information about the dataset. Example; Data Model<br/> + Additional information about the bounding polygon, vertical, and temporal extent of the dataset<br/>
@@ -505,7 +505,7 @@ - Public MD_TopicCategoryCode
  topicCategory + Public CharacterString
  supplementalInformation @@ -531,7 +531,7 @@ Range: - + Range:0 to 1 Transient: @@ -554,7 +554,7 @@ Notes: - Keywords, describing a subject of a dataset<br/> + Other descriptive information about the dataset. Example; Data Model<br/> diff --git a/approved/html/EARoot/EA1/EA3/EA13/EA3/EA2504.htm b/approved/html/EARoot/EA1/EA3/EA13/EA3/EA2504.htm index 1b8012e59..38d15ce89 100644 --- a/approved/html/EARoot/EA1/EA3/EA13/EA3/EA2504.htm +++ b/approved/html/EARoot/EA1/EA3/EA13/EA3/EA2504.htm @@ -111,7 +111,7 @@ - Public CharacterString
  abstract + Public CI_Citation
  citation @@ -153,14 +153,14 @@ - + RationalRose$Java:Final=False
RationalRose$Java:GenerateDataMember=True
RationalRose$Java:Transient=False
RationalRose$Java:Volatile=False
RationalRose$Oracle8:CompositeUnique=False
RationalRose$Oracle8:IsIndex=False
RationalRose$Oracle8:IsPrimaryKey=False
RationalRose$Oracle8:IsUnique=False
RationalRose$Oracle8:NullsAllowed=True
RationalRose$Oracle8:Precision=2
RationalRose$Oracle8:Scale=6
RationalRose$Visual Basic:DataMemberName=$relationship
RationalRose$Visual Basic:GenerateDataMember=True
RationalRose$Visual Basic:GenerateGetOperation=False
RationalRose$Visual Basic:GenerateLetOperation=False
RationalRose$Visual Basic:GenerateSetOperation=False
RationalRose$Visual Basic:IsConst=False
RationalRose$Visual Basic:NameIfUnlabeled=the$supplier
RationalRose$Visual Basic:New=False
RationalRose$Visual Basic:WithEvents=False
Notes: - Brief narrative summary of the content of the dataset<br/> + Recommended reference to be used for the dataset<br/>
@@ -169,7 +169,7 @@ - Public CI_Citation
  citation + Public CharacterString
  abstract @@ -211,14 +211,14 @@ - RationalRose$Java:Final=False
RationalRose$Java:GenerateDataMember=True
RationalRose$Java:Transient=False
RationalRose$Java:Volatile=False
RationalRose$Oracle8:CompositeUnique=False
RationalRose$Oracle8:IsIndex=False
RationalRose$Oracle8:IsPrimaryKey=False
RationalRose$Oracle8:IsUnique=False
RationalRose$Oracle8:NullsAllowed=True
RationalRose$Oracle8:Precision=2
RationalRose$Oracle8:Scale=6
RationalRose$Visual Basic:DataMemberName=$relationship
RationalRose$Visual Basic:GenerateDataMember=True
RationalRose$Visual Basic:GenerateGetOperation=False
RationalRose$Visual Basic:GenerateLetOperation=False
RationalRose$Visual Basic:GenerateSetOperation=False
RationalRose$Visual Basic:IsConst=False
RationalRose$Visual Basic:NameIfUnlabeled=the$supplier
RationalRose$Visual Basic:New=False
RationalRose$Visual Basic:WithEvents=False
+
Notes: - Recommended reference to be used for the dataset<br/> + Brief narrative summary of the content of the dataset<br/>
@@ -227,7 +227,7 @@ - Public CharacterString
  credit + Public CharacterString
  purpose @@ -253,7 +253,7 @@ Range: - Range:0 to * + Range:0 to 1 Transient: @@ -276,7 +276,7 @@ Notes: - Recognition of those who contributed to the dataset<br/> + Summary of the intentions with which the dataset was developed<br/> @@ -285,7 +285,7 @@ - Public CI_ResponsibleParty
  pointOfContact + Public CharacterString
  credit @@ -327,14 +327,14 @@ - RationalRose$Java:Final=False
RationalRose$Java:GenerateDataMember=True
RationalRose$Java:Transient=False
RationalRose$Java:Volatile=False
RationalRose$Oracle8:CompositeUnique=False
RationalRose$Oracle8:IsIndex=False
RationalRose$Oracle8:IsPrimaryKey=False
RationalRose$Oracle8:IsUnique=False
RationalRose$Oracle8:NullsAllowed=True
RationalRose$Oracle8:Precision=2
RationalRose$Oracle8:Scale=6
RationalRose$Visual Basic:DataMemberName=$relationship
RationalRose$Visual Basic:GenerateDataMember=True
RationalRose$Visual Basic:GenerateGetOperation=False
RationalRose$Visual Basic:GenerateLetOperation=False
RationalRose$Visual Basic:GenerateSetOperation=False
RationalRose$Visual Basic:IsConst=False
RationalRose$Visual Basic:NameIfUnlabeled=the$supplier
RationalRose$Visual Basic:New=False
RationalRose$Visual Basic:WithEvents=False
+
Notes: - Identification of, and means of communication with, person(s)  and organisations(s) associated  with the dataset<br/> + Recognition of those who contributed to the dataset<br/>
@@ -343,7 +343,7 @@ - Public CharacterString
  purpose + Public MD_ProgressCode
  status @@ -369,7 +369,7 @@ Range: - Range:0 to 1 + Range:0 to * Transient: @@ -392,7 +392,7 @@ Notes: - Summary of the intentions with which the dataset was developed<br/> + Status of dataset<br/> @@ -401,7 +401,7 @@ - Public MD_ProgressCode
  status + Public CI_ResponsibleParty
  pointOfContact @@ -443,14 +443,14 @@ - + RationalRose$Java:Final=False
RationalRose$Java:GenerateDataMember=True
RationalRose$Java:Transient=False
RationalRose$Java:Volatile=False
RationalRose$Oracle8:CompositeUnique=False
RationalRose$Oracle8:IsIndex=False
RationalRose$Oracle8:IsPrimaryKey=False
RationalRose$Oracle8:IsUnique=False
RationalRose$Oracle8:NullsAllowed=True
RationalRose$Oracle8:Precision=2
RationalRose$Oracle8:Scale=6
RationalRose$Visual Basic:DataMemberName=$relationship
RationalRose$Visual Basic:GenerateDataMember=True
RationalRose$Visual Basic:GenerateGetOperation=False
RationalRose$Visual Basic:GenerateLetOperation=False
RationalRose$Visual Basic:GenerateSetOperation=False
RationalRose$Visual Basic:IsConst=False
RationalRose$Visual Basic:NameIfUnlabeled=the$supplier
RationalRose$Visual Basic:New=False
RationalRose$Visual Basic:WithEvents=False
Notes: - Status of dataset<br/> + Identification of, and means of communication with, person(s)  and organisations(s) associated  with the dataset<br/>
diff --git a/approved/html/EARoot/EA1/EA3/EA13/EA3/EA2505.htm b/approved/html/EARoot/EA1/EA3/EA13/EA3/EA2505.htm index cf87de2a4..b6652a78f 100644 --- a/approved/html/EARoot/EA1/EA3/EA13/EA3/EA2505.htm +++ b/approved/html/EARoot/EA1/EA3/EA13/EA3/EA2505.htm @@ -168,7 +168,7 @@ - Public CI_Citation
  thesaurusName + Public MD_KeywordTypeCode
  type @@ -217,7 +217,7 @@ Notes: - Name of the formally registered thesaurus or a similar authoritative source of keywords<br/> + Method used to group similar keywords<br/> @@ -226,7 +226,7 @@ - Public MD_KeywordTypeCode
  type + Public CI_Citation
  thesaurusName @@ -275,7 +275,7 @@ Notes: - Method used to group similar keywords<br/> + Name of the formally registered thesaurus or a similar authoritative source of keywords<br/> diff --git a/approved/html/EARoot/EA1/EA3/EA13/EA3/EA2509.htm b/approved/html/EARoot/EA1/EA3/EA13/EA3/EA2509.htm index c15aed49d..c153ca1fb 100644 --- a/approved/html/EARoot/EA1/EA3/EA13/EA3/EA2509.htm +++ b/approved/html/EARoot/EA1/EA3/EA13/EA3/EA2509.htm @@ -107,7 +107,7 @@ - Public Distance
  distance + Public MD_RepresentativeFraction
  equivalentScale @@ -155,7 +155,7 @@ - Public MD_RepresentativeFraction
  equivalentScale + Public Distance
  distance diff --git a/approved/html/EARoot/EA1/EA3/EA13/EA3/EA2510.htm b/approved/html/EARoot/EA1/EA3/EA13/EA3/EA2510.htm index 3590e8184..45519d422 100644 --- a/approved/html/EARoot/EA1/EA3/EA13/EA3/EA2510.htm +++ b/approved/html/EARoot/EA1/EA3/EA13/EA3/EA2510.htm @@ -108,7 +108,7 @@ - Public <undefined>
  grid + Public <undefined>
  vector @@ -151,12 +151,22 @@ -   +
+ + + + +
+ Notes: + + Quantity having direction as well as magnitude, especially as determining the position of one point in space relative to another.<br/> +
+ - Public <undefined>
  stereoModel + Public <undefined>
  grid @@ -310,7 +320,7 @@ - Public <undefined>
  vector + Public <undefined>
  stereoModel @@ -353,17 +363,7 @@ -
- - - - -
- Notes: - - Quantity having direction as well as magnitude, especially as determining the position of one point in space relative to another.<br/> -
- +   diff --git a/approved/html/EARoot/EA1/EA3/EA13/EA3/EA2512.htm b/approved/html/EARoot/EA1/EA3/EA13/EA3/EA2512.htm index c2c1e7d6e..5179d8495 100644 --- a/approved/html/EARoot/EA1/EA3/EA13/EA3/EA2512.htm +++ b/approved/html/EARoot/EA1/EA3/EA13/EA3/EA2512.htm @@ -225,7 +225,7 @@ - Public CI_ResponsibleParty
  userContactInfo + Public CharacterString
  userDeterminedLimitations @@ -251,7 +251,7 @@ Range: - + Range:0 to 1 Transient: @@ -267,14 +267,14 @@ - RationalRose$Java:Final=False
RationalRose$Java:GenerateDataMember=True
RationalRose$Java:Transient=False
RationalRose$Java:Volatile=False
RationalRose$Oracle8:CompositeUnique=False
RationalRose$Oracle8:IsIndex=False
RationalRose$Oracle8:IsPrimaryKey=False
RationalRose$Oracle8:IsUnique=False
RationalRose$Oracle8:NullsAllowed=True
RationalRose$Oracle8:Precision=2
RationalRose$Oracle8:Scale=6
RationalRose$Visual Basic:DataMemberName=$relationship
RationalRose$Visual Basic:GenerateDataMember=True
RationalRose$Visual Basic:GenerateGetOperation=False
RationalRose$Visual Basic:GenerateLetOperation=False
RationalRose$Visual Basic:GenerateSetOperation=False
RationalRose$Visual Basic:IsConst=False
RationalRose$Visual Basic:NameIfUnlabeled=the$supplier
RationalRose$Visual Basic:New=False
RationalRose$Visual Basic:WithEvents=False
+
Notes: - Identification of means of communicating with person(s) and organisation(s) using the dataset and/or dataset series<br/> + Applications for which the dataset and/or dataset series is not suitable<br/>
@@ -283,7 +283,7 @@ - Public CharacterString
  userDeterminedLimitations + Public CI_ResponsibleParty
  userContactInfo @@ -309,7 +309,7 @@ Range: - Range:0 to 1 + Transient: @@ -325,14 +325,14 @@ - + RationalRose$Java:Final=False
RationalRose$Java:GenerateDataMember=True
RationalRose$Java:Transient=False
RationalRose$Java:Volatile=False
RationalRose$Oracle8:CompositeUnique=False
RationalRose$Oracle8:IsIndex=False
RationalRose$Oracle8:IsPrimaryKey=False
RationalRose$Oracle8:IsUnique=False
RationalRose$Oracle8:NullsAllowed=True
RationalRose$Oracle8:Precision=2
RationalRose$Oracle8:Scale=6
RationalRose$Visual Basic:DataMemberName=$relationship
RationalRose$Visual Basic:GenerateDataMember=True
RationalRose$Visual Basic:GenerateGetOperation=False
RationalRose$Visual Basic:GenerateLetOperation=False
RationalRose$Visual Basic:GenerateSetOperation=False
RationalRose$Visual Basic:IsConst=False
RationalRose$Visual Basic:NameIfUnlabeled=the$supplier
RationalRose$Visual Basic:New=False
RationalRose$Visual Basic:WithEvents=False
Notes: - Applications for which the dataset and/or dataset series is not suitable<br/> + Identification of means of communicating with person(s) and organisation(s) using the dataset and/or dataset series<br/>
diff --git a/approved/html/EARoot/EA1/EA3/EA13/EA4/EA2514.png b/approved/html/EARoot/EA1/EA3/EA13/EA4/EA2514.png index ed0ff9bd0..60e2d184b 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA13/EA4/EA2514.png and b/approved/html/EARoot/EA1/EA3/EA13/EA4/EA2514.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA13/EA4/EA2516.png b/approved/html/EARoot/EA1/EA3/EA13/EA4/EA2516.png index c200abda2..317cf0246 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA13/EA4/EA2516.png and b/approved/html/EARoot/EA1/EA3/EA13/EA4/EA2516.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA13/EA4/EA2518.png b/approved/html/EARoot/EA1/EA3/EA13/EA4/EA2518.png index 91b9a938b..64f8213b0 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA13/EA4/EA2518.png and b/approved/html/EARoot/EA1/EA3/EA13/EA4/EA2518.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA13/EA4/EA2520.png b/approved/html/EARoot/EA1/EA3/EA13/EA4/EA2520.png index 4aa84a80c..fb4c5ba06 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA13/EA4/EA2520.png and b/approved/html/EARoot/EA1/EA3/EA13/EA4/EA2520.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA13/EA4/EA2522.png b/approved/html/EARoot/EA1/EA3/EA13/EA4/EA2522.png index 8b3f4c397..90d6105fa 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA13/EA4/EA2522.png and b/approved/html/EARoot/EA1/EA3/EA13/EA4/EA2522.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA13/EA4/EA2524.png b/approved/html/EARoot/EA1/EA3/EA13/EA4/EA2524.png index 94071e4c5..d48d3edf3 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA13/EA4/EA2524.png and b/approved/html/EARoot/EA1/EA3/EA13/EA4/EA2524.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA13/EA4/EA2527.htm b/approved/html/EARoot/EA1/EA3/EA13/EA4/EA2527.htm index 81dfc830b..34c591a3a 100644 --- a/approved/html/EARoot/EA1/EA3/EA13/EA4/EA2527.htm +++ b/approved/html/EARoot/EA1/EA3/EA13/EA4/EA2527.htm @@ -108,7 +108,7 @@ - Public <undefined>
  confidential + Public <undefined>
  unclassified @@ -157,7 +157,7 @@ Notes: - Entrusted with information<br/> + Available for general disclosure<br/> @@ -214,7 +214,7 @@ - Public <undefined>
  secret + Public <undefined>
  confidential @@ -263,7 +263,7 @@ Notes: - Kept or meant to be kept private, unknown, or hidden from all but a select group of people<br/> + Entrusted with information<br/> @@ -272,7 +272,7 @@ - Public <undefined>
  topSecret + Public <undefined>
  secret @@ -321,7 +321,7 @@ Notes: - Of the highest secrecy<br/> + Kept or meant to be kept private, unknown, or hidden from all but a select group of people<br/> @@ -330,7 +330,7 @@ - Public <undefined>
  unclassified + Public <undefined>
  topSecret @@ -379,7 +379,7 @@ Notes: - Available for general disclosure<br/> + Of the highest secrecy<br/> diff --git a/approved/html/EARoot/EA1/EA3/EA13/EA4/EA2529.htm b/approved/html/EARoot/EA1/EA3/EA13/EA4/EA2529.htm index e596bb70a..1bb5856da 100644 --- a/approved/html/EARoot/EA1/EA3/EA13/EA4/EA2529.htm +++ b/approved/html/EARoot/EA1/EA3/EA13/EA4/EA2529.htm @@ -167,7 +167,7 @@ - Public CharacterString
  otherConstraints + Public MD_RestrictionCode
  useConstraints @@ -216,7 +216,7 @@ Notes: - Other restrictions and legal prerequisites for accessing and using the dtaset<br/> + Constraints applied to assure the protection of privacy or intellectual property, and any special restrictions or limitations or warnings on using the dataset<br/>-Examples: "copyright", "license", "non-commercial", "none"<br/> @@ -225,7 +225,7 @@ - Public MD_RestrictionCode
  useConstraints + Public CharacterString
  otherConstraints @@ -274,7 +274,7 @@ Notes: - Constraints applied to assure the protection of privacy or intellectual property, and any special restrictions or limitations or warnings on using the dataset<br/>-Examples: "copyright", "license", "non-commercial", "none"<br/> + Other restrictions and legal prerequisites for accessing and using the dtaset<br/> diff --git a/approved/html/EARoot/EA1/EA3/EA13/EA4/EA2530.htm b/approved/html/EARoot/EA1/EA3/EA13/EA4/EA2530.htm index 33b9f92f5..b682ab8f6 100644 --- a/approved/html/EARoot/EA1/EA3/EA13/EA4/EA2530.htm +++ b/approved/html/EARoot/EA1/EA3/EA13/EA4/EA2530.htm @@ -166,7 +166,7 @@ - Public <undefined>
  intellectualPropertyRights + Public <undefined>
  patent @@ -215,7 +215,7 @@ Notes: - Non-tangible property that is a result of creativity.<br/> + Produced or sold as a proprietary product<br/> @@ -224,7 +224,7 @@ - Public <undefined>
  license + Public <undefined>
  patentPending @@ -273,7 +273,7 @@ Notes: - Formal permission to do something<br/> + Produced or sold information awaiting a patent<br/> @@ -282,7 +282,7 @@ - Public <undefined>
  otherRestrictions + Public <undefined>
  trademark @@ -325,22 +325,12 @@ -
- - - - -
- Notes: - - Other limitations not covered<br/> -
- +   - Public <undefined>
  patent + Public <undefined>
  license @@ -389,7 +379,7 @@ Notes: - Produced or sold as a proprietary product<br/> + Formal permission to do something<br/> @@ -398,7 +388,7 @@ - Public <undefined>
  patentPending + Public <undefined>
  intellectualPropertyRights @@ -447,7 +437,7 @@ Notes: - Produced or sold information awaiting a patent<br/> + Non-tangible property that is a result of creativity.<br/> @@ -504,7 +494,7 @@ - Public <undefined>
  trademark + Public <undefined>
  otherRestrictions @@ -547,7 +537,17 @@ -   +
+ + + + +
+ Notes: + + Other limitations not covered<br/> +
+ diff --git a/approved/html/EARoot/EA1/EA3/EA13/EA4/EA2531.htm b/approved/html/EARoot/EA1/EA3/EA13/EA4/EA2531.htm index b19919ecf..14a27a878 100644 --- a/approved/html/EARoot/EA1/EA3/EA13/EA4/EA2531.htm +++ b/approved/html/EARoot/EA1/EA3/EA13/EA4/EA2531.htm @@ -167,7 +167,7 @@ - Public CharacterString
  classificationSystem + Public CharacterString
  userNote @@ -216,7 +216,7 @@ Notes: - Name of the classification system<br/> + Additional information about the classification<br/> @@ -225,7 +225,7 @@ - Public CharacterString
  handlingDescription + Public CharacterString
  classificationSystem @@ -274,7 +274,7 @@ Notes: - Additional information about the restrictions on handling the dataset<br/> + Name of the classification system<br/> @@ -283,7 +283,7 @@ - Public CharacterString
  userNote + Public CharacterString
  handlingDescription @@ -332,7 +332,7 @@ Notes: - Additional information about the classification<br/> + Additional information about the restrictions on handling the dataset<br/> diff --git a/approved/html/EARoot/EA1/EA3/EA13/EA5/EA2537.png b/approved/html/EARoot/EA1/EA3/EA13/EA5/EA2537.png index 0e2fd7b2e..9ae47279c 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA13/EA5/EA2537.png and b/approved/html/EARoot/EA1/EA3/EA13/EA5/EA2537.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA13/EA5/EA2545.png b/approved/html/EARoot/EA1/EA3/EA13/EA5/EA2545.png index 094f44017..f6d3d24ef 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA13/EA5/EA2545.png and b/approved/html/EARoot/EA1/EA3/EA13/EA5/EA2545.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA13/EA5/EA2547.png b/approved/html/EARoot/EA1/EA3/EA13/EA5/EA2547.png index a661ab9eb..71f934940 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA13/EA5/EA2547.png and b/approved/html/EARoot/EA1/EA3/EA13/EA5/EA2547.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA13/EA5/EA2551.png b/approved/html/EARoot/EA1/EA3/EA13/EA5/EA2551.png index 7290ffcb2..6824023a5 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA13/EA5/EA2551.png and b/approved/html/EARoot/EA1/EA3/EA13/EA5/EA2551.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA13/EA5/EA2553.png b/approved/html/EARoot/EA1/EA3/EA13/EA5/EA2553.png index 4f69c8a3b..636728982 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA13/EA5/EA2553.png and b/approved/html/EARoot/EA1/EA3/EA13/EA5/EA2553.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA13/EA5/EA2559.png b/approved/html/EARoot/EA1/EA3/EA13/EA5/EA2559.png index 86c8b5b97..b5996b4e4 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA13/EA5/EA2559.png and b/approved/html/EARoot/EA1/EA3/EA13/EA5/EA2559.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA13/EA5/EA2563.png b/approved/html/EARoot/EA1/EA3/EA13/EA5/EA2563.png index 13fd61418..a53022c69 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA13/EA5/EA2563.png and b/approved/html/EARoot/EA1/EA3/EA13/EA5/EA2563.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA13/EA5/EA2567.png b/approved/html/EARoot/EA1/EA3/EA13/EA5/EA2567.png index 72320bb42..3e26b3aa5 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA13/EA5/EA2567.png and b/approved/html/EARoot/EA1/EA3/EA13/EA5/EA2567.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA13/EA5/EA2571.png b/approved/html/EARoot/EA1/EA3/EA13/EA5/EA2571.png index 5131ded47..82efc500e 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA13/EA5/EA2571.png and b/approved/html/EARoot/EA1/EA3/EA13/EA5/EA2571.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA13/EA5/EA2573.png b/approved/html/EARoot/EA1/EA3/EA13/EA5/EA2573.png index d13b1ff57..a4ae97073 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA13/EA5/EA2573.png and b/approved/html/EARoot/EA1/EA3/EA13/EA5/EA2573.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA13/EA5/EA2575.png b/approved/html/EARoot/EA1/EA3/EA13/EA5/EA2575.png index 09f7fae16..e90aa8b32 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA13/EA5/EA2575.png and b/approved/html/EARoot/EA1/EA3/EA13/EA5/EA2575.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA13/EA5/EA2581.png b/approved/html/EARoot/EA1/EA3/EA13/EA5/EA2581.png index 4b9fbbf54..8ed821035 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA13/EA5/EA2581.png and b/approved/html/EARoot/EA1/EA3/EA13/EA5/EA2581.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA13/EA5/EA2587.png b/approved/html/EARoot/EA1/EA3/EA13/EA5/EA2587.png index 39dd776a3..362ed9809 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA13/EA5/EA2587.png and b/approved/html/EARoot/EA1/EA3/EA13/EA5/EA2587.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA13/EA5/EA2589.png b/approved/html/EARoot/EA1/EA3/EA13/EA5/EA2589.png index aef15eed6..9fd9f1a79 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA13/EA5/EA2589.png and b/approved/html/EARoot/EA1/EA3/EA13/EA5/EA2589.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA13/EA5/EA2591.png b/approved/html/EARoot/EA1/EA3/EA13/EA5/EA2591.png index 1bee2a3fa..b9242a2b6 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA13/EA5/EA2591.png and b/approved/html/EARoot/EA1/EA3/EA13/EA5/EA2591.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA13/EA5/EA2593.png b/approved/html/EARoot/EA1/EA3/EA13/EA5/EA2593.png index 06abbfde4..802a4430e 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA13/EA5/EA2593.png and b/approved/html/EARoot/EA1/EA3/EA13/EA5/EA2593.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA13/EA5/EA2595.png b/approved/html/EARoot/EA1/EA3/EA13/EA5/EA2595.png index b7ac91a60..16c0386b8 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA13/EA5/EA2595.png and b/approved/html/EARoot/EA1/EA3/EA13/EA5/EA2595.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA13/EA5/EA2612.htm b/approved/html/EARoot/EA1/EA3/EA13/EA5/EA2612.htm index b96764d11..ad04433bf 100644 --- a/approved/html/EARoot/EA1/EA3/EA13/EA5/EA2612.htm +++ b/approved/html/EARoot/EA1/EA3/EA13/EA5/EA2612.htm @@ -109,7 +109,7 @@ - Public CharacterString
  explanation + Public CI_Citation
  specification @@ -157,7 +157,7 @@ - Public Boolean
  pass + Public CharacterString
  explanation @@ -205,7 +205,7 @@ - Public CI_Citation
  specification + Public Boolean
  pass diff --git a/approved/html/EARoot/EA1/EA3/EA13/EA5/EA2615.htm b/approved/html/EARoot/EA1/EA3/EA13/EA5/EA2615.htm index 8026245e7..8c5e1560e 100644 --- a/approved/html/EARoot/EA1/EA3/EA13/EA5/EA2615.htm +++ b/approved/html/EARoot/EA1/EA3/EA13/EA5/EA2615.htm @@ -110,7 +110,7 @@ - Public DateTime
  dateTime + Public CharacterString
  nameOfMeasure @@ -158,7 +158,7 @@ - Public CharacterString
  evaluationMethodDescription + Public MD_Identifier
  measureIdentification @@ -206,7 +206,7 @@ - Public DQ_EvaluationMethodTypeCode
  evaluationMethodType + Public CharacterString
  measureDescription @@ -254,7 +254,7 @@ - Public CI_Citation
  evaluationProcedure + Public DQ_EvaluationMethodTypeCode
  evaluationMethodType @@ -302,7 +302,7 @@ - Public CharacterString
  measureDescription + Public CharacterString
  evaluationMethodDescription @@ -350,7 +350,7 @@ - Public MD_Identifier
  measureIdentification + Public CI_Citation
  evaluationProcedure @@ -398,7 +398,7 @@ - Public CharacterString
  nameOfMeasure + Public DateTime
  dateTime diff --git a/approved/html/EARoot/EA1/EA3/EA13/EA5/EA2616.htm b/approved/html/EARoot/EA1/EA3/EA13/EA5/EA2616.htm index d4829f8f9..b0e124e3b 100644 --- a/approved/html/EARoot/EA1/EA3/EA13/EA5/EA2616.htm +++ b/approved/html/EARoot/EA1/EA3/EA13/EA5/EA2616.htm @@ -107,7 +107,7 @@ - Public <undefined>
  directExternal + Public <undefined>
  directInternal @@ -155,7 +155,7 @@ - Public <undefined>
  directInternal + Public <undefined>
  directExternal diff --git a/approved/html/EARoot/EA1/EA3/EA13/EA5/EA2623.htm b/approved/html/EARoot/EA1/EA3/EA13/EA5/EA2623.htm index 35938de67..c3a769133 100644 --- a/approved/html/EARoot/EA1/EA3/EA13/EA5/EA2623.htm +++ b/approved/html/EARoot/EA1/EA3/EA13/EA5/EA2623.htm @@ -109,7 +109,7 @@ - Public CharacterString
  errorStatistic + Public RecordType
  valueType @@ -157,7 +157,7 @@ - Public Record
  value + Public UnitOfMeasure
  valueUnit @@ -205,7 +205,7 @@ - Public RecordType
  valueType + Public CharacterString
  errorStatistic @@ -253,7 +253,7 @@ - Public UnitOfMeasure
  valueUnit + Public Record
  value diff --git a/approved/html/EARoot/EA1/EA3/EA13/EA5/EA2626.htm b/approved/html/EARoot/EA1/EA3/EA13/EA5/EA2626.htm index 4cd83b6a4..e2134e272 100644 --- a/approved/html/EARoot/EA1/EA3/EA13/EA5/EA2626.htm +++ b/approved/html/EARoot/EA1/EA3/EA13/EA5/EA2626.htm @@ -107,7 +107,7 @@ - Public EX_Extent
  extent + Public MD_ScopeCode
  level @@ -133,7 +133,7 @@ Range: - Range:0 to 1 + Transient: @@ -150,12 +150,22 @@ -   +
+ + + + +
+ Notes: + + Either level or extent must be non-NULL.<br/> +
+ - Public MD_ScopeCode
  level + Public EX_Extent
  extent @@ -181,7 +191,7 @@ Range: - + Range:0 to 1 Transient: @@ -198,17 +208,7 @@ -
- - - - -
- Notes: - - Either level or extent must be non-NULL.<br/> -
- +   diff --git a/approved/html/EARoot/EA1/EA3/EA13/EA5/EA2634.htm b/approved/html/EARoot/EA1/EA3/EA13/EA5/EA2634.htm index af1fe1399..e7e9cfd11 100644 --- a/approved/html/EARoot/EA1/EA3/EA13/EA5/EA2634.htm +++ b/approved/html/EARoot/EA1/EA3/EA13/EA5/EA2634.htm @@ -110,7 +110,7 @@ - Public DateTime
  dateTime + Public CharacterString
  description @@ -136,7 +136,7 @@ Range: - Range:0 to 1 + Transient: @@ -158,7 +158,7 @@ - Public CharacterString
  description + Public CharacterString
  rationale @@ -184,7 +184,7 @@ Range: - + Range:0 to 1 Transient: @@ -206,7 +206,7 @@ - Public CI_ResponsibleParty
  processor + Public DateTime
  dateTime @@ -232,7 +232,7 @@ Range: - Range:0 to * + Range:0 to 1 Transient: @@ -254,7 +254,7 @@ - Public CharacterString
  rationale + Public CI_ResponsibleParty
  processor @@ -280,7 +280,7 @@ Range: - Range:0 to 1 + Range:0 to * Transient: diff --git a/approved/html/EARoot/EA1/EA3/EA13/EA5/EA2635.htm b/approved/html/EARoot/EA1/EA3/EA13/EA5/EA2635.htm index 8407b3616..07596f58e 100644 --- a/approved/html/EARoot/EA1/EA3/EA13/EA5/EA2635.htm +++ b/approved/html/EARoot/EA1/EA3/EA13/EA5/EA2635.htm @@ -205,7 +205,7 @@ - Public CI_Citation
  sourceCitation + Public MD_ReferenceSystem
  sourceReferenceSystem @@ -253,7 +253,7 @@ - Public EX_Extent
  sourceExtent + Public CI_Citation
  sourceCitation @@ -279,7 +279,7 @@ Range: - Range:0 to * + Range:0 to 1 Transient: @@ -301,7 +301,7 @@ - Public MD_ReferenceSystem
  sourceReferenceSystem + Public EX_Extent
  sourceExtent @@ -327,7 +327,7 @@ Range: - Range:0 to 1 + Range:0 to * Transient: diff --git a/approved/html/EARoot/EA1/EA3/EA13/EA6/EA2637.png b/approved/html/EARoot/EA1/EA3/EA13/EA6/EA2637.png index c00c71d50..21d6c25bd 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA13/EA6/EA2637.png and b/approved/html/EARoot/EA1/EA3/EA13/EA6/EA2637.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA13/EA6/EA2639.png b/approved/html/EARoot/EA1/EA3/EA13/EA6/EA2639.png index 68f4fb117..d40e470e6 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA13/EA6/EA2639.png and b/approved/html/EARoot/EA1/EA3/EA13/EA6/EA2639.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA13/EA6/EA2641.png b/approved/html/EARoot/EA1/EA3/EA13/EA6/EA2641.png index 276f3e8b5..87a8c931c 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA13/EA6/EA2641.png and b/approved/html/EARoot/EA1/EA3/EA13/EA6/EA2641.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA13/EA6/EA2643.png b/approved/html/EARoot/EA1/EA3/EA13/EA6/EA2643.png index eb5a83e64..dbbd8aaa1 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA13/EA6/EA2643.png and b/approved/html/EARoot/EA1/EA3/EA13/EA6/EA2643.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA13/EA6/EA2645.png b/approved/html/EARoot/EA1/EA3/EA13/EA6/EA2645.png index 0e59e5d40..2d71058ac 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA13/EA6/EA2645.png and b/approved/html/EARoot/EA1/EA3/EA13/EA6/EA2645.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA13/EA6/EA2648.htm b/approved/html/EARoot/EA1/EA3/EA13/EA6/EA2648.htm index 505407bd0..982e6f26c 100644 --- a/approved/html/EARoot/EA1/EA3/EA13/EA6/EA2648.htm +++ b/approved/html/EARoot/EA1/EA3/EA13/EA6/EA2648.htm @@ -107,7 +107,7 @@ - Public <undefined>
  annually + Public <undefined>
  continual @@ -156,7 +156,7 @@ Notes: - Data is updated every year<br/> + Data is updated on a continuous basis<br/> @@ -165,7 +165,7 @@ - Public <undefined>
  asNeeded + Public <undefined>
  daily @@ -214,7 +214,7 @@ Notes: - Data is updated as deemed necessary<br/> + Data is update each day<br/> @@ -223,7 +223,7 @@ - Public <undefined>
  biannually + Public <undefined>
  weekly @@ -272,7 +272,7 @@ Notes: - Data is updated twice each year<br/> + Data is updated on a weekly basis.<br/> @@ -281,7 +281,7 @@ - Public <undefined>
  continual + Public <undefined>
  fortnightly @@ -324,22 +324,12 @@ -
- - - - -
- Notes: - - Data is updated on a continuous basis<br/> -
- +   - Public <undefined>
  daily + Public <undefined>
  monthly @@ -388,7 +378,7 @@ Notes: - Data is update each day<br/> + Data is updated each month<br/> @@ -397,7 +387,7 @@ - Public <undefined>
  fortnightly + Public <undefined>
  quarterly @@ -445,7 +435,7 @@ - Public <undefined>
  irregular + Public <undefined>
  biannually @@ -494,7 +484,7 @@ Notes: - Data is updated in intervals that are uneven in duration<br/> + Data is updated twice each year<br/> @@ -503,7 +493,7 @@ - Public <undefined>
  monthly + Public <undefined>
  annually @@ -552,7 +542,7 @@ Notes: - Data is updated each month<br/> + Data is updated every year<br/> @@ -561,7 +551,7 @@ - Public <undefined>
  notPlanned + Public <undefined>
  asNeeded @@ -610,7 +600,7 @@ Notes: - There are no plans to update the data<br/> + Data is updated as deemed necessary<br/> @@ -619,7 +609,7 @@ - Public <undefined>
  quarterly + Public <undefined>
  irregular @@ -662,12 +652,22 @@ -   +
+ + + + +
+ Notes: + + Data is updated in intervals that are uneven in duration<br/> +
+ - Public <undefined>
  unknown + Public <undefined>
  notPlanned @@ -716,7 +716,7 @@ Notes: - Frequency of maintenance for the data is not known.<br/> + There are no plans to update the data<br/> @@ -725,7 +725,7 @@ - Public <undefined>
  weekly + Public <undefined>
  unknown @@ -774,7 +774,7 @@ Notes: - Data is updated on a weekly basis.<br/> + Frequency of maintenance for the data is not known.<br/> diff --git a/approved/html/EARoot/EA1/EA3/EA13/EA6/EA2649.htm b/approved/html/EARoot/EA1/EA3/EA13/EA6/EA2649.htm index 8229c6efa..fbfa47304 100644 --- a/approved/html/EARoot/EA1/EA3/EA13/EA6/EA2649.htm +++ b/approved/html/EARoot/EA1/EA3/EA13/EA6/EA2649.htm @@ -110,7 +110,7 @@ - Public CI_ResponsibleParty
  contact + Public MD_MaintenanceFrequencyCode
  maintenanceAndUpdateFrequency @@ -136,7 +136,7 @@ Range: - Range:0 to * + Transient: @@ -153,7 +153,17 @@ -   +
+ + + + +
+ Notes: + + Frequency with which changes and additions are made to the dataset after the initial dataset is completed.<br/> +
+ @@ -206,7 +216,7 @@ - Public MD_MaintenanceFrequencyCode
  maintenanceAndUpdateFrequency + Public TM_PeriodDuration
  userDefinedMaintenanceFrequency @@ -232,7 +242,7 @@ Range: - + Range:0 to 1 Transient: @@ -255,7 +265,7 @@ Notes: - Frequency with which changes and additions are made to the dataset after the initial dataset is completed.<br/> + Maintenance period other than those defined<br/> @@ -264,7 +274,7 @@ - Public CharacterString
  maintenanceNote + Public MD_ScopeCode
  updateScope @@ -306,13 +316,23 @@ - -   + RationalRose$Java:Final=False
RationalRose$Java:GenerateDataMember=True
RationalRose$Java:Transient=False
RationalRose$Java:Volatile=False
RationalRose$Oracle8:CompositeUnique=False
RationalRose$Oracle8:IsIndex=False
RationalRose$Oracle8:IsPrimaryKey=False
RationalRose$Oracle8:IsUnique=False
RationalRose$Oracle8:NullsAllowed=True
RationalRose$Oracle8:Precision=2
RationalRose$Oracle8:Scale=6
RationalRose$Visual Basic:DataMemberName=$relationship
RationalRose$Visual Basic:GenerateDataMember=True
RationalRose$Visual Basic:GenerateGetOperation=False
RationalRose$Visual Basic:GenerateLetOperation=False
RationalRose$Visual Basic:GenerateSetOperation=False
RationalRose$Visual Basic:IsConst=False
RationalRose$Visual Basic:NameIfUnlabeled=the$supplier
RationalRose$Visual Basic:New=False
RationalRose$Visual Basic:WithEvents=False
+
+ + + + +
+ Notes: + + Scope at which changes are applied<br/> +
+ - Public MD_ScopeCode
  updateScope + Public MD_ScopeDescription
  updateScopeDescription @@ -361,7 +381,7 @@ Notes: - Scope at which changes are applied<br/> + Additional information about the range or extent of the dtataset<br/> @@ -370,7 +390,7 @@ - Public MD_ScopeDescription
  updateScopeDescription + Public CharacterString
  maintenanceNote @@ -412,23 +432,13 @@ - RationalRose$Java:Final=False
RationalRose$Java:GenerateDataMember=True
RationalRose$Java:Transient=False
RationalRose$Java:Volatile=False
RationalRose$Oracle8:CompositeUnique=False
RationalRose$Oracle8:IsIndex=False
RationalRose$Oracle8:IsPrimaryKey=False
RationalRose$Oracle8:IsUnique=False
RationalRose$Oracle8:NullsAllowed=True
RationalRose$Oracle8:Precision=2
RationalRose$Oracle8:Scale=6
RationalRose$Visual Basic:DataMemberName=$relationship
RationalRose$Visual Basic:GenerateDataMember=True
RationalRose$Visual Basic:GenerateGetOperation=False
RationalRose$Visual Basic:GenerateLetOperation=False
RationalRose$Visual Basic:GenerateSetOperation=False
RationalRose$Visual Basic:IsConst=False
RationalRose$Visual Basic:NameIfUnlabeled=the$supplier
RationalRose$Visual Basic:New=False
RationalRose$Visual Basic:WithEvents=False
-
- - - - -
- Notes: - - Additional information about the range or extent of the dtataset<br/> -
- + +   - Public TM_PeriodDuration
  userDefinedMaintenanceFrequency + Public CI_ResponsibleParty
  contact @@ -454,7 +464,7 @@ Range: - Range:0 to 1 + Range:0 to * Transient: @@ -471,17 +481,7 @@ -
- - - - -
- Notes: - - Maintenance period other than those defined<br/> -
- +   diff --git a/approved/html/EARoot/EA1/EA3/EA13/EA6/EA2650.htm b/approved/html/EARoot/EA1/EA3/EA13/EA6/EA2650.htm index d425a4556..d9060e818 100644 --- a/approved/html/EARoot/EA1/EA3/EA13/EA6/EA2650.htm +++ b/approved/html/EARoot/EA1/EA3/EA13/EA6/EA2650.htm @@ -389,7 +389,7 @@ - Public <undefined>
  dimensionGroup + Public <undefined>
  series @@ -431,14 +431,14 @@ - + RationalRose$Java:Final=False
RationalRose$Java:GenerateDataMember=True
RationalRose$Java:Transient=False
RationalRose$Java:Volatile=False
RationalRose$Oracle8:CompositeUnique=False
RationalRose$Oracle8:IsIndex=False
RationalRose$Oracle8:IsPrimaryKey=False
RationalRose$Oracle8:IsUnique=False
RationalRose$Oracle8:NullsAllowed=True
RationalRose$Oracle8:Precision=2
RationalRose$Oracle8:Scale=6
RationalRose$Visual Basic:DataMemberName=$relationship
RationalRose$Visual Basic:GenerateDataMember=True
RationalRose$Visual Basic:GenerateGetOperation=False
RationalRose$Visual Basic:GenerateLetOperation=False
RationalRose$Visual Basic:GenerateSetOperation=False
RationalRose$Visual Basic:IsConst=False
RationalRose$Visual Basic:NameIfUnlabeled=the$supplier
RationalRose$Visual Basic:New=False
RationalRose$Visual Basic:WithEvents=False
Notes: - Information applies to a dimension group<br/> + Information applies to the series<br/>
@@ -447,7 +447,7 @@ - Public <undefined>
  feature + Public <undefined>
  nonGeographicDataset @@ -489,14 +489,14 @@ - RationalRose$Java:Final=False
RationalRose$Java:GenerateDataMember=True
RationalRose$Java:Transient=False
RationalRose$Java:Volatile=False
RationalRose$Oracle8:CompositeUnique=False
RationalRose$Oracle8:IsIndex=False
RationalRose$Oracle8:IsPrimaryKey=False
RationalRose$Oracle8:IsUnique=False
RationalRose$Oracle8:NullsAllowed=True
RationalRose$Oracle8:Precision=2
RationalRose$Oracle8:Scale=6
RationalRose$Visual Basic:DataMemberName=$relationship
RationalRose$Visual Basic:GenerateDataMember=True
RationalRose$Visual Basic:GenerateGetOperation=False
RationalRose$Visual Basic:GenerateLetOperation=False
RationalRose$Visual Basic:GenerateSetOperation=False
RationalRose$Visual Basic:IsConst=False
RationalRose$Visual Basic:NameIfUnlabeled=the$supplier
RationalRose$Visual Basic:New=False
RationalRose$Visual Basic:WithEvents=False
+
Notes: - Information applies to a feature<br/> + Information applies to non-geographic data<br/>
@@ -505,7 +505,7 @@ - Public <undefined>
  featureType + Public <undefined>
  dimensionGroup @@ -554,7 +554,7 @@ Notes: - Information applies to a feature type.<br/> + Information applies to a dimension group<br/> @@ -563,7 +563,7 @@ - Public <undefined>
  fieldSession + Public <undefined>
  feature @@ -605,14 +605,14 @@ - + RationalRose$Java:Final=False
RationalRose$Java:GenerateDataMember=True
RationalRose$Java:Transient=False
RationalRose$Java:Volatile=False
RationalRose$Oracle8:CompositeUnique=False
RationalRose$Oracle8:IsIndex=False
RationalRose$Oracle8:IsPrimaryKey=False
RationalRose$Oracle8:IsUnique=False
RationalRose$Oracle8:NullsAllowed=True
RationalRose$Oracle8:Precision=2
RationalRose$Oracle8:Scale=6
RationalRose$Visual Basic:DataMemberName=$relationship
RationalRose$Visual Basic:GenerateDataMember=True
RationalRose$Visual Basic:GenerateGetOperation=False
RationalRose$Visual Basic:GenerateLetOperation=False
RationalRose$Visual Basic:GenerateSetOperation=False
RationalRose$Visual Basic:IsConst=False
RationalRose$Visual Basic:NameIfUnlabeled=the$supplier
RationalRose$Visual Basic:New=False
RationalRose$Visual Basic:WithEvents=False
Notes: - Information applies to a fiels session<br/> + Information applies to a feature<br/>
@@ -621,7 +621,7 @@ - Public <undefined>
  model + Public <undefined>
  featureType @@ -664,12 +664,22 @@ -   +
+ + + + +
+ Notes: + + Information applies to a feature type.<br/> +
+ - Public <undefined>
  nonGeographicDataset + Public <undefined>
  propertyType @@ -711,14 +721,14 @@ - + RationalRose$Java:Final=False
RationalRose$Java:GenerateDataMember=True
RationalRose$Java:Transient=False
RationalRose$Java:Volatile=False
RationalRose$Oracle8:CompositeUnique=False
RationalRose$Oracle8:IsIndex=False
RationalRose$Oracle8:IsPrimaryKey=False
RationalRose$Oracle8:IsUnique=False
RationalRose$Oracle8:NullsAllowed=True
RationalRose$Oracle8:Precision=2
RationalRose$Oracle8:Scale=6
RationalRose$Visual Basic:DataMemberName=$relationship
RationalRose$Visual Basic:GenerateDataMember=True
RationalRose$Visual Basic:GenerateGetOperation=False
RationalRose$Visual Basic:GenerateLetOperation=False
RationalRose$Visual Basic:GenerateSetOperation=False
RationalRose$Visual Basic:IsConst=False
RationalRose$Visual Basic:NameIfUnlabeled=the$supplier
RationalRose$Visual Basic:New=False
RationalRose$Visual Basic:WithEvents=False
Notes: - Information applies to non-geographic data<br/> + Information applies to a  property type<br/>
@@ -727,7 +737,7 @@ - Public <undefined>
  propertyType + Public <undefined>
  fieldSession @@ -769,14 +779,14 @@ - RationalRose$Java:Final=False
RationalRose$Java:GenerateDataMember=True
RationalRose$Java:Transient=False
RationalRose$Java:Volatile=False
RationalRose$Oracle8:CompositeUnique=False
RationalRose$Oracle8:IsIndex=False
RationalRose$Oracle8:IsPrimaryKey=False
RationalRose$Oracle8:IsUnique=False
RationalRose$Oracle8:NullsAllowed=True
RationalRose$Oracle8:Precision=2
RationalRose$Oracle8:Scale=6
RationalRose$Visual Basic:DataMemberName=$relationship
RationalRose$Visual Basic:GenerateDataMember=True
RationalRose$Visual Basic:GenerateGetOperation=False
RationalRose$Visual Basic:GenerateLetOperation=False
RationalRose$Visual Basic:GenerateSetOperation=False
RationalRose$Visual Basic:IsConst=False
RationalRose$Visual Basic:NameIfUnlabeled=the$supplier
RationalRose$Visual Basic:New=False
RationalRose$Visual Basic:WithEvents=False
+
Notes: - Information applies to a  property type<br/> + Information applies to a fiels session<br/>
@@ -785,7 +795,7 @@ - Public <undefined>
  series + Public <undefined>
  software @@ -827,18 +837,8 @@ - RationalRose$Java:Final=False
RationalRose$Java:GenerateDataMember=True
RationalRose$Java:Transient=False
RationalRose$Java:Volatile=False
RationalRose$Oracle8:CompositeUnique=False
RationalRose$Oracle8:IsIndex=False
RationalRose$Oracle8:IsPrimaryKey=False
RationalRose$Oracle8:IsUnique=False
RationalRose$Oracle8:NullsAllowed=True
RationalRose$Oracle8:Precision=2
RationalRose$Oracle8:Scale=6
RationalRose$Visual Basic:DataMemberName=$relationship
RationalRose$Visual Basic:GenerateDataMember=True
RationalRose$Visual Basic:GenerateGetOperation=False
RationalRose$Visual Basic:GenerateLetOperation=False
RationalRose$Visual Basic:GenerateSetOperation=False
RationalRose$Visual Basic:IsConst=False
RationalRose$Visual Basic:NameIfUnlabeled=the$supplier
RationalRose$Visual Basic:New=False
RationalRose$Visual Basic:WithEvents=False
-
- - - - -
- Notes: - - Information applies to the series<br/> -
- + +   @@ -891,7 +891,7 @@ - Public <undefined>
  software + Public <undefined>
  model diff --git a/approved/html/EARoot/EA1/EA3/EA13/EA6/EA2651.htm b/approved/html/EARoot/EA1/EA3/EA13/EA6/EA2651.htm index 37cc73887..f3cc12460 100644 --- a/approved/html/EARoot/EA1/EA3/EA13/EA6/EA2651.htm +++ b/approved/html/EARoot/EA1/EA3/EA13/EA6/EA2651.htm @@ -108,7 +108,7 @@ - Public Set<GF_AttributeType>
  attributeInstances + Public Set<GF_AttributeType>
  attributes @@ -157,7 +157,7 @@ Notes: - Attribute instances to which the information applies<br/> + Attributes to which the information applies <br/> @@ -166,7 +166,7 @@ - Public Set<GF_AttributeType>
  attributes + Public Set<GF_FeatureType>
  features @@ -215,7 +215,7 @@ Notes: - Attributes to which the information applies <br/> + Features to which the information applies <br/> @@ -224,7 +224,7 @@ - Public CharacterString
  dataset + Public Set<GF_FeatureType>
  featureInstances @@ -273,7 +273,7 @@ Notes: - Feature collection to which the information applies<br/> + Feature instances to which the information applies<br/> @@ -282,7 +282,7 @@ - Public Set<GF_FeatureType>
  featureInstances + Public Set<GF_AttributeType>
  attributeInstances @@ -331,7 +331,7 @@ Notes: - Feature instances to which the information applies<br/> + Attribute instances to which the information applies<br/> @@ -340,7 +340,7 @@ - Public Set<GF_FeatureType>
  features + Public CharacterString
  dataset @@ -389,7 +389,7 @@ Notes: - Features to which the information applies <br/> + Feature collection to which the information applies<br/> diff --git a/approved/html/EARoot/EA1/EA3/EA13/EA7/EA2653.png b/approved/html/EARoot/EA1/EA3/EA13/EA7/EA2653.png index 4869899da..a40321786 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA13/EA7/EA2653.png and b/approved/html/EARoot/EA1/EA3/EA13/EA7/EA2653.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA13/EA7/EA2655.png b/approved/html/EARoot/EA1/EA3/EA13/EA7/EA2655.png index de12efcf1..0f5f01ee2 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA13/EA7/EA2655.png and b/approved/html/EARoot/EA1/EA3/EA13/EA7/EA2655.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA13/EA7/EA2657.png b/approved/html/EARoot/EA1/EA3/EA13/EA7/EA2657.png index 537d0524a..1386274f4 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA13/EA7/EA2657.png and b/approved/html/EARoot/EA1/EA3/EA13/EA7/EA2657.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA13/EA7/EA2659.png b/approved/html/EARoot/EA1/EA3/EA13/EA7/EA2659.png index d230e5aac..1ab099f9a 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA13/EA7/EA2659.png and b/approved/html/EARoot/EA1/EA3/EA13/EA7/EA2659.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA13/EA7/EA2663.png b/approved/html/EARoot/EA1/EA3/EA13/EA7/EA2663.png index a69fca357..f6b3f3ebe 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA13/EA7/EA2663.png and b/approved/html/EARoot/EA1/EA3/EA13/EA7/EA2663.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA13/EA7/EA2665.png b/approved/html/EARoot/EA1/EA3/EA13/EA7/EA2665.png index 5be51b216..2bbc928c9 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA13/EA7/EA2665.png and b/approved/html/EARoot/EA1/EA3/EA13/EA7/EA2665.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA13/EA7/EA2667.png b/approved/html/EARoot/EA1/EA3/EA13/EA7/EA2667.png index f0ad58981..15cfb0f4f 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA13/EA7/EA2667.png and b/approved/html/EARoot/EA1/EA3/EA13/EA7/EA2667.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA13/EA7/EA2671.png b/approved/html/EARoot/EA1/EA3/EA13/EA7/EA2671.png index f17a44452..26df1b62e 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA13/EA7/EA2671.png and b/approved/html/EARoot/EA1/EA3/EA13/EA7/EA2671.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA13/EA7/EA2673.png b/approved/html/EARoot/EA1/EA3/EA13/EA7/EA2673.png index bc0fa3650..703915844 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA13/EA7/EA2673.png and b/approved/html/EARoot/EA1/EA3/EA13/EA7/EA2673.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA13/EA7/EA2675.png b/approved/html/EARoot/EA1/EA3/EA13/EA7/EA2675.png index 4eed66641..36b57badd 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA13/EA7/EA2675.png and b/approved/html/EARoot/EA1/EA3/EA13/EA7/EA2675.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA13/EA7/EA2677.png b/approved/html/EARoot/EA1/EA3/EA13/EA7/EA2677.png index 906fdeefc..899cd27e9 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA13/EA7/EA2677.png and b/approved/html/EARoot/EA1/EA3/EA13/EA7/EA2677.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA13/EA7/EA2680.htm b/approved/html/EARoot/EA1/EA3/EA13/EA7/EA2680.htm index 3ef06aaa9..487e45746 100644 --- a/approved/html/EARoot/EA1/EA3/EA13/EA7/EA2680.htm +++ b/approved/html/EARoot/EA1/EA3/EA13/EA7/EA2680.htm @@ -107,7 +107,7 @@ - Public <undefined>
  area + Public <undefined>
  point @@ -155,7 +155,7 @@ - Public <undefined>
  point + Public <undefined>
  area diff --git a/approved/html/EARoot/EA1/EA3/EA13/EA7/EA2682.htm b/approved/html/EARoot/EA1/EA3/EA13/EA7/EA2682.htm index 3b1b0dd99..c053c715a 100644 --- a/approved/html/EARoot/EA1/EA3/EA13/EA7/EA2682.htm +++ b/approved/html/EARoot/EA1/EA3/EA13/EA7/EA2682.htm @@ -107,7 +107,7 @@ - Public <undefined>
  column + Public <undefined>
  row @@ -155,7 +155,7 @@ - Public <undefined>
  crossTrack + Public <undefined>
  column @@ -203,7 +203,7 @@ - Public <undefined>
  line + Public <undefined>
  vertical @@ -251,7 +251,7 @@ - Public <undefined>
  row + Public <undefined>
  track @@ -299,7 +299,7 @@ - Public <undefined>
  sample + Public <undefined>
  crossTrack @@ -347,7 +347,7 @@ - Public <undefined>
  time + Public <undefined>
  line @@ -395,7 +395,7 @@ - Public <undefined>
  track + Public <undefined>
  sample @@ -443,7 +443,7 @@ - Public <undefined>
  vertical + Public <undefined>
  time diff --git a/approved/html/EARoot/EA1/EA3/EA13/EA7/EA2683.htm b/approved/html/EARoot/EA1/EA3/EA13/EA7/EA2683.htm index afb4345b4..e2b6edaf2 100644 --- a/approved/html/EARoot/EA1/EA3/EA13/EA7/EA2683.htm +++ b/approved/html/EARoot/EA1/EA3/EA13/EA7/EA2683.htm @@ -107,7 +107,7 @@ - Public Integer
  geometricObjectCount + Public MD_GeometricObjectTypeCode
  geometricObjectType @@ -133,7 +133,7 @@ Range: - Range:0 to 1 + Transient: @@ -156,7 +156,7 @@ Notes: - Total number of the point or vector object type occurring in the dataset<br/> + Name of point and vector spatial objects used to locate zero-, one-, and two-dimensional spatial locations in the dataset <br/> @@ -165,7 +165,7 @@ - Public MD_GeometricObjectTypeCode
  geometricObjectType + Public Integer
  geometricObjectCount @@ -191,7 +191,7 @@ Range: - + Range:0 to 1 Transient: @@ -214,7 +214,7 @@ Notes: - Name of point and vector spatial objects used to locate zero-, one-, and two-dimensional spatial locations in the dataset <br/> + Total number of the point or vector object type occurring in the dataset<br/> diff --git a/approved/html/EARoot/EA1/EA3/EA13/EA7/EA2685.htm b/approved/html/EARoot/EA1/EA3/EA13/EA7/EA2685.htm index 0ce19d223..502cd15fe 100644 --- a/approved/html/EARoot/EA1/EA3/EA13/EA7/EA2685.htm +++ b/approved/html/EARoot/EA1/EA3/EA13/EA7/EA2685.htm @@ -108,7 +108,7 @@ - Public GM_Point
  centerPoint + Public Boolean
  checkPointAvailability @@ -134,7 +134,7 @@ Range: - Range:0 to 1 + Transient: @@ -156,7 +156,7 @@ - Public Boolean
  checkPointAvailability + Public CharacterString
  checkPointDescription @@ -182,7 +182,7 @@ Range: - + Range:0 to 1 Transient: @@ -204,7 +204,7 @@ - Public CharacterString
  checkPointDescription + Public Sequence<GM_Point>
  cornerPoints @@ -230,7 +230,7 @@ Range: - Range:0 to 1 + Transient: @@ -252,7 +252,7 @@ - Public Sequence<GM_Point>
  cornerPoints + Public GM_Point
  centerPoint @@ -278,7 +278,7 @@ Range: - + Range:0 to 1 Transient: diff --git a/approved/html/EARoot/EA1/EA3/EA13/EA7/EA2686.htm b/approved/html/EARoot/EA1/EA3/EA13/EA7/EA2686.htm index e0d6ffae6..728cd1c1f 100644 --- a/approved/html/EARoot/EA1/EA3/EA13/EA7/EA2686.htm +++ b/approved/html/EARoot/EA1/EA3/EA13/EA7/EA2686.htm @@ -156,7 +156,7 @@ - Public Record
  georeferencedParameters + Public Boolean
  orientationParameterAvailability @@ -204,7 +204,7 @@ - Public Boolean
  orientationParameterAvailability + Public CharacterString
  orientationParameterDescription @@ -230,7 +230,7 @@ Range: - + Range:0 to 1 Transient: @@ -252,7 +252,7 @@ - Public CharacterString
  orientationParameterDescription + Public Record
  georeferencedParameters @@ -278,7 +278,7 @@ Range: - Range:0 to 1 + Transient: diff --git a/approved/html/EARoot/EA1/EA3/EA13/EA7/EA2687.htm b/approved/html/EARoot/EA1/EA3/EA13/EA7/EA2687.htm index 7d4f647b7..f15beb83d 100644 --- a/approved/html/EARoot/EA1/EA3/EA13/EA7/EA2687.htm +++ b/approved/html/EARoot/EA1/EA3/EA13/EA7/EA2687.htm @@ -109,7 +109,7 @@ - Public Sequence<MD_Dimension>
  axisDimensionProperties + Public Integer
  numberOfDimensions @@ -157,7 +157,7 @@ - Public MD_CellGeometryCode
  cellGeometry + Public Sequence<MD_Dimension>
  axisDimensionProperties @@ -200,22 +200,12 @@ -
- - - - -
- Notes: - - Raster spatial objects used to locate zero-, two-, or three-dimensional locations in the dataset<br/> -
- +   - Public Integer
  numberOfDimensions + Public MD_CellGeometryCode
  cellGeometry @@ -258,7 +248,17 @@ -   +
+ + + + +
+ Notes: + + Raster spatial objects used to locate zero-, two-, or three-dimensional locations in the dataset<br/> +
+ diff --git a/approved/html/EARoot/EA1/EA3/EA13/EA7/EA2690.htm b/approved/html/EARoot/EA1/EA3/EA13/EA7/EA2690.htm index 88222b734..faa3e4409 100644 --- a/approved/html/EARoot/EA1/EA3/EA13/EA7/EA2690.htm +++ b/approved/html/EARoot/EA1/EA3/EA13/EA7/EA2690.htm @@ -108,7 +108,7 @@ - Public <undefined>
  abstract + Public <undefined>
  geometryOnly @@ -151,12 +151,22 @@ -   +
+ + + + +
+ Notes: + + Geometry objects only without any additional structure which describes topology<br/> +
+ - Public <undefined>
  fullPlanarGraph + Public <undefined>
  topology1D @@ -199,22 +209,12 @@ -
- - - - -
- Notes: - - A planar graph with all areas represented by faces. <br/> -
- +   - Public <undefined>
  fullSurfaceGraph + Public <undefined>
  planarGraph @@ -257,12 +257,22 @@ -   +
+ + + + +
+ Notes: + + The topology of a mathematical graph in the  plane, similar to non-Planar, but requiring all 2D intersections to be at nodes.<br/> +
+ - Public <undefined>
  fullTopology3D + Public <undefined>
  fullPlanarGraph @@ -311,7 +321,7 @@ Notes: - Three dimensional toplogical complex whose geometric realisation is a subset of a plane<br/> + A planar graph with all areas represented by faces. <br/> @@ -320,7 +330,7 @@ - Public <undefined>
  geometryOnly + Public <undefined>
  surfaceGraph @@ -369,7 +379,7 @@ Notes: - Geometry objects only without any additional structure which describes topology<br/> + The topology of a mathematical graph in the  plane, similar to non-Planar, but requiring all 2D intersections to be at nodes.<br/> @@ -378,7 +388,7 @@ - Public <undefined>
  planarGraph + Public <undefined>
  fullSurfaceGraph @@ -421,22 +431,12 @@ -
- - - - -
- Notes: - - The topology of a mathematical graph in the  plane, similar to non-Planar, but requiring all 2D intersections to be at nodes.<br/> -
- +   - Public <undefined>
  surfaceGraph + Public <undefined>
  topology3D @@ -479,22 +479,12 @@ -
- - - - -
- Notes: - - The topology of a mathematical graph in the  plane, similar to non-Planar, but requiring all 2D intersections to be at nodes.<br/> -
- +   - Public <undefined>
  topology1D + Public <undefined>
  fullTopology3D @@ -537,12 +527,22 @@ -   +
+ + + + +
+ Notes: + + Three dimensional toplogical complex whose geometric realisation is a subset of a plane<br/> +
+ - Public <undefined>
  topology3D + Public <undefined>
  abstract diff --git a/approved/html/EARoot/EA1/EA3/EA13/EA7/EA2691.htm b/approved/html/EARoot/EA1/EA3/EA13/EA7/EA2691.htm index ee8c79f16..df086ae8d 100644 --- a/approved/html/EARoot/EA1/EA3/EA13/EA7/EA2691.htm +++ b/approved/html/EARoot/EA1/EA3/EA13/EA7/EA2691.htm @@ -109,7 +109,7 @@ - Public MD_GeometricObjects
  geometricObjects + Public MD_TopologyLevelCode
  topologyLevel @@ -135,7 +135,7 @@ Range: - Range:0 to * + Range:0 to 1 Transient: @@ -152,12 +152,22 @@ -   +
+ + + + +
+ Notes: + + Code which identifies the degree of complexity of the spatial relationships<br/> +
+ - Public MD_TopologyLevelCode
  topologyLevel + Public MD_GeometricObjects
  geometricObjects @@ -183,7 +193,7 @@ Range: - Range:0 to 1 + Range:0 to * Transient: @@ -200,17 +210,7 @@ -
- - - - -
- Notes: - - Code which identifies the degree of complexity of the spatial relationships<br/> -
- +   diff --git a/approved/html/EARoot/EA1/EA3/EA13/EA8/EA2693.png b/approved/html/EARoot/EA1/EA3/EA13/EA8/EA2693.png index 4e23dcfe9..d1c6b0fca 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA13/EA8/EA2693.png and b/approved/html/EARoot/EA1/EA3/EA13/EA8/EA2693.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA13/EA8/EA2699.png b/approved/html/EARoot/EA1/EA3/EA13/EA8/EA2699.png index 06fc5ce29..c2051171e 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA13/EA8/EA2699.png and b/approved/html/EARoot/EA1/EA3/EA13/EA8/EA2699.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA13/EA8/EA2701.png b/approved/html/EARoot/EA1/EA3/EA13/EA8/EA2701.png index 06fc24b11..3e3b05c45 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA13/EA8/EA2701.png and b/approved/html/EARoot/EA1/EA3/EA13/EA8/EA2701.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA13/EA9/EA2708.png b/approved/html/EARoot/EA1/EA3/EA13/EA9/EA2708.png index 45a359efe..ec1e4e7d9 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA13/EA9/EA2708.png and b/approved/html/EARoot/EA1/EA3/EA13/EA9/EA2708.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA13/EA9/EA2710.png b/approved/html/EARoot/EA1/EA3/EA13/EA9/EA2710.png index 8b5b2215c..edc4a2c36 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA13/EA9/EA2710.png and b/approved/html/EARoot/EA1/EA3/EA13/EA9/EA2710.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA13/EA9/EA2712.png b/approved/html/EARoot/EA1/EA3/EA13/EA9/EA2712.png index 3bcc616fc..77f14e108 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA13/EA9/EA2712.png and b/approved/html/EARoot/EA1/EA3/EA13/EA9/EA2712.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA13/EA9/EA2714.png b/approved/html/EARoot/EA1/EA3/EA13/EA9/EA2714.png index cf6674276..d31c55f2e 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA13/EA9/EA2714.png and b/approved/html/EARoot/EA1/EA3/EA13/EA9/EA2714.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA13/EA9/EA2716.png b/approved/html/EARoot/EA1/EA3/EA13/EA9/EA2716.png index 94c119204..6cd0a3d22 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA13/EA9/EA2716.png and b/approved/html/EARoot/EA1/EA3/EA13/EA9/EA2716.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA13/EA9/EA2718.png b/approved/html/EARoot/EA1/EA3/EA13/EA9/EA2718.png index 55b309b81..757cfcdff 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA13/EA9/EA2718.png and b/approved/html/EARoot/EA1/EA3/EA13/EA9/EA2718.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA13/EA9/EA2722.png b/approved/html/EARoot/EA1/EA3/EA13/EA9/EA2722.png index b221a7bbb..18553d66f 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA13/EA9/EA2722.png and b/approved/html/EARoot/EA1/EA3/EA13/EA9/EA2722.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA13/EA9/EA2724.png b/approved/html/EARoot/EA1/EA3/EA13/EA9/EA2724.png index 2d4a7fc56..91d05779c 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA13/EA9/EA2724.png and b/approved/html/EARoot/EA1/EA3/EA13/EA9/EA2724.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA13/EA9/EA2726.png b/approved/html/EARoot/EA1/EA3/EA13/EA9/EA2726.png index 88892db56..bf77ed591 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA13/EA9/EA2726.png and b/approved/html/EARoot/EA1/EA3/EA13/EA9/EA2726.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA13/EA9/EA2729.htm b/approved/html/EARoot/EA1/EA3/EA13/EA9/EA2729.htm index 8376f45bd..bc30b3dda 100644 --- a/approved/html/EARoot/EA1/EA3/EA13/EA9/EA2729.htm +++ b/approved/html/EARoot/EA1/EA3/EA13/EA9/EA2729.htm @@ -108,7 +108,7 @@ - Public Integer
  bitsPerValue + Public Real
  maxValue @@ -157,7 +157,7 @@ Notes: - Maximum number of significant bits for the value in each band of each pixel without compression<br/> + Highest wavelength that the sensor is capable of collecting within a designated band in metres<br/> @@ -166,7 +166,7 @@ - Public Real
  maxValue + Public Real
  minValue @@ -215,7 +215,7 @@ Notes: - Highest wavelength that the sensor is capable of collecting within a designated band in metres<br/> + Lowest wavelength that the sensor is capable of collecting within a designated band in metres<br/> @@ -224,7 +224,7 @@ - Public Real
  minValue + Public UomLength
  units @@ -267,22 +267,12 @@ -
- - - - -
- Notes: - - Lowest wavelength that the sensor is capable of collecting within a designated band in metres<br/> -
- +   - Public Real
  offset + Public Real
  peakResponse @@ -330,7 +320,7 @@ - Public Real
  peakResponse + Public Integer
  bitsPerValue @@ -373,12 +363,22 @@ -   +
+ + + + +
+ Notes: + + Maximum number of significant bits for the value in each band of each pixel without compression<br/> +
+ - Public Real
  scaleFactor + Public Integer
  toneGradation @@ -421,12 +421,22 @@ -   +
+ + + + +
+ Notes: + + Number of colours present in the image<br/> +
+ - Public Integer
  toneGradation + Public Real
  scaleFactor @@ -469,22 +479,12 @@ -
- - - - -
- Notes: - - Number of colours present in the image<br/> -
- +   - Public UomLength
  units + Public Real
  offset diff --git a/approved/html/EARoot/EA1/EA3/EA13/EA9/EA2731.htm b/approved/html/EARoot/EA1/EA3/EA13/EA9/EA2731.htm index 103b168fa..bc0de0f25 100644 --- a/approved/html/EARoot/EA1/EA3/EA13/EA9/EA2731.htm +++ b/approved/html/EARoot/EA1/EA3/EA13/EA9/EA2731.htm @@ -155,7 +155,7 @@ - Public <undefined>
  physicalMeasurement + Public <undefined>
  thematicClassification @@ -203,7 +203,7 @@ - Public <undefined>
  thematicClassification + Public <undefined>
  physicalMeasurement diff --git a/approved/html/EARoot/EA1/EA3/EA13/EA9/EA2733.htm b/approved/html/EARoot/EA1/EA3/EA13/EA9/EA2733.htm index 37679b1c4..9b74dfee6 100644 --- a/approved/html/EARoot/EA1/EA3/EA13/EA9/EA2733.htm +++ b/approved/html/EARoot/EA1/EA3/EA13/EA9/EA2733.htm @@ -167,7 +167,7 @@ - Public CI_Citation
  featureCatalogueCitation + Public CharacterString
  language @@ -193,7 +193,7 @@ Range: - + Range:0 to * Transient: @@ -216,7 +216,7 @@ Notes: - Complete bibliographic reference to one or more external feature catalogues<br/> + Language(s) used within the dataset<br/> @@ -225,7 +225,7 @@ - Public GenericName
  featureTypes + Public Boolean
  includedWithDataset @@ -251,7 +251,7 @@ Range: - Range:0 to * + Transient: @@ -274,7 +274,7 @@ Notes: - Subset of feature types from cited feature catalogue occurring in dataset<br/> + Indicates whether ro not the feature catalogue is included with the dataset<br/> @@ -283,7 +283,7 @@ - Public Boolean
  includedWithDataset + Public GenericName
  featureTypes @@ -309,7 +309,7 @@ Range: - + Range:0 to * Transient: @@ -332,7 +332,7 @@ Notes: - Indicates whether ro not the feature catalogue is included with the dataset<br/> + Subset of feature types from cited feature catalogue occurring in dataset<br/> @@ -341,7 +341,7 @@ - Public CharacterString
  language + Public CI_Citation
  featureCatalogueCitation @@ -367,7 +367,7 @@ Range: - Range:0 to * + Transient: @@ -390,7 +390,7 @@ Notes: - Language(s) used within the dataset<br/> + Complete bibliographic reference to one or more external feature catalogues<br/> diff --git a/approved/html/EARoot/EA1/EA3/EA13/EA9/EA2734.htm b/approved/html/EARoot/EA1/EA3/EA13/EA9/EA2734.htm index b26b80afc..4db98bc72 100644 --- a/approved/html/EARoot/EA1/EA3/EA13/EA9/EA2734.htm +++ b/approved/html/EARoot/EA1/EA3/EA13/EA9/EA2734.htm @@ -109,7 +109,7 @@ - Public Boolean
  cameraCalibrationInformationAvailability + Public Real
  illuminationElevationAngle @@ -158,7 +158,7 @@ Notes: - Code which ndicates whether or not constants are available  which allow for camera calibration corrections.<br/> + Illumination elevation measured in degrees clockwise from the target plane at intersection of the optical line of sight with the earth's surface<br/> @@ -167,7 +167,7 @@ - Public Real
  cloudCoverPercentage + Public Real
  illuminationAzimuthAngle @@ -216,7 +216,7 @@ Notes: - Area of the dataset obscured by clouds, expressed as a percentage of the spatial extent<br/> + Illumination azimuth measured in degrees clockwise from true north at the time the image is taken<br/> @@ -225,7 +225,7 @@ - Public Integer
  compressionGenerationQuantity + Public MD_ImagingConditionCode
  imagingCondition @@ -274,7 +274,7 @@ Notes: - Counts the number of lossy compression cycles performed on the image<br/> + Code which indicates conditions which affect the quality of the image<br/> @@ -283,7 +283,7 @@ - Public Boolean
  filmDistortionInformationAvailability + Public MD_Identifier
  imageQualityCode @@ -332,7 +332,7 @@ Notes: - Code which indicates whether or not Calibration Reseau information is available<br/> + Specifies the image quality <br/> @@ -341,7 +341,7 @@ - Public Real
  illuminationAzimuthAngle + Public Real
  cloudCoverPercentage @@ -390,7 +390,7 @@ Notes: - Illumination azimuth measured in degrees clockwise from true north at the time the image is taken<br/> + Area of the dataset obscured by clouds, expressed as a percentage of the spatial extent<br/> @@ -399,7 +399,7 @@ - Public Real
  illuminationElevationAngle + Public MD_Identifier
  processingLevelCode @@ -448,7 +448,7 @@ Notes: - Illumination elevation measured in degrees clockwise from the target plane at intersection of the optical line of sight with the earth's surface<br/> + Image distributor's code that identifies the level of radiometric and geometric processing applied against the image<br/>-Examples: "LEVEL1A", "LEVEL1B", "SPOTVIEWORTHO", "SPOTVIEWPRECISIO"<br/> @@ -457,7 +457,7 @@ - Public MD_Identifier
  imageQualityCode + Public Integer
  compressionGenerationQuantity @@ -506,7 +506,7 @@ Notes: - Specifies the image quality <br/> + Counts the number of lossy compression cycles performed on the image<br/> @@ -515,7 +515,7 @@ - Public MD_ImagingConditionCode
  imagingCondition + Public Boolean
  triangulationIndicator @@ -564,7 +564,7 @@ Notes: - Code which indicates conditions which affect the quality of the image<br/> + Code which indicates whether or not triangulation has been performed upon the image<br/> @@ -573,7 +573,7 @@ - Public Boolean
  lensDistortionInformationAvailability + Public Boolean
  radiometricCalibrationDataAvailability @@ -622,7 +622,7 @@ Notes: - Code which indicates whether or not lens aberration correction information is available<br/> + Code which indicates whether or not Standard Radiometric Product data is available<br/> @@ -631,7 +631,7 @@ - Public MD_Identifier
  processingLevelCode + Public Boolean
  cameraCalibrationInformationAvailability @@ -680,7 +680,7 @@ Notes: - Image distributor's code that identifies the level of radiometric and geometric processing applied against the image<br/>-Examples: "LEVEL1A", "LEVEL1B", "SPOTVIEWORTHO", "SPOTVIEWPRECISIO"<br/> + Code which ndicates whether or not constants are available  which allow for camera calibration corrections.<br/> @@ -689,7 +689,7 @@ - Public Boolean
  radiometricCalibrationDataAvailability + Public Boolean
  filmDistortionInformationAvailability @@ -738,7 +738,7 @@ Notes: - Code which indicates whether or not Standard Radiometric Product data is available<br/> + Code which indicates whether or not Calibration Reseau information is available<br/> @@ -747,7 +747,7 @@ - Public Boolean
  triangulationIndicator + Public Boolean
  lensDistortionInformationAvailability @@ -796,7 +796,7 @@ Notes: - Code which indicates whether or not triangulation has been performed upon the image<br/> + Code which indicates whether or not lens aberration correction information is available<br/> diff --git a/approved/html/EARoot/EA1/EA3/EA13/EA9/EA2736.htm b/approved/html/EARoot/EA1/EA3/EA13/EA9/EA2736.htm index a687a1bce..79e152df3 100644 --- a/approved/html/EARoot/EA1/EA3/EA13/EA9/EA2736.htm +++ b/approved/html/EARoot/EA1/EA3/EA13/EA9/EA2736.htm @@ -110,7 +110,7 @@ - Public CharacterString
  descriptor + Public MemberName
  sequenceIdentifier @@ -153,12 +153,22 @@ -   +
+ + + + +
+ Notes: + + Number that uniquely identifies instances of bands of wavelengths on which a sensor operates<br/> +
+ - Public MemberName
  sequenceIdentifier + Public CharacterString
  descriptor @@ -201,17 +211,7 @@ -
- - - - -
- Notes: - - Number that uniquely identifies instances of bands of wavelengths on which a sensor operates<br/> -
- +   diff --git a/approved/html/EARoot/EA1/EA3/EA14/EA1/EA2891.png b/approved/html/EARoot/EA1/EA3/EA14/EA1/EA2891.png index c17085335..d775b4b05 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA14/EA1/EA2891.png and b/approved/html/EARoot/EA1/EA3/EA14/EA1/EA2891.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA14/EA1/EA2893.png b/approved/html/EARoot/EA1/EA3/EA14/EA1/EA2893.png index e04cbab2b..29f7fa8e1 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA14/EA1/EA2893.png and b/approved/html/EARoot/EA1/EA3/EA14/EA1/EA2893.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA14/EA1/EA2895.png b/approved/html/EARoot/EA1/EA3/EA14/EA1/EA2895.png index 52365721c..194741c2b 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA14/EA1/EA2895.png and b/approved/html/EARoot/EA1/EA3/EA14/EA1/EA2895.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA14/EA1/EA2897.png b/approved/html/EARoot/EA1/EA3/EA14/EA1/EA2897.png index 0e5e251fd..a42eda582 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA14/EA1/EA2897.png and b/approved/html/EARoot/EA1/EA3/EA14/EA1/EA2897.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA14/EA1/EA2899.png b/approved/html/EARoot/EA1/EA3/EA14/EA1/EA2899.png index e21cdbc67..d89732cee 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA14/EA1/EA2899.png and b/approved/html/EARoot/EA1/EA3/EA14/EA1/EA2899.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA14/EA1/EA2901.png b/approved/html/EARoot/EA1/EA3/EA14/EA1/EA2901.png index 6c5d3e811..d1b4fc269 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA14/EA1/EA2901.png and b/approved/html/EARoot/EA1/EA3/EA14/EA1/EA2901.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA14/EA1/EA2903.png b/approved/html/EARoot/EA1/EA3/EA14/EA1/EA2903.png index 946cd7a85..0a31eaa2f 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA14/EA1/EA2903.png and b/approved/html/EARoot/EA1/EA3/EA14/EA1/EA2903.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA14/EA1/EA2905.png b/approved/html/EARoot/EA1/EA3/EA14/EA1/EA2905.png index 57d1d8d66..f33f22d31 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA14/EA1/EA2905.png and b/approved/html/EARoot/EA1/EA3/EA14/EA1/EA2905.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA14/EA1/EA2906.htm b/approved/html/EARoot/EA1/EA3/EA14/EA1/EA2906.htm index c81a17ad3..cf371ac34 100644 --- a/approved/html/EARoot/EA1/EA3/EA14/EA1/EA2906.htm +++ b/approved/html/EARoot/EA1/EA3/EA14/EA1/EA2906.htm @@ -36,7 +36,7 @@ - + diff --git a/approved/html/EARoot/EA1/EA3/EA14/EA1/EA2907.png b/approved/html/EARoot/EA1/EA3/EA14/EA1/EA2907.png index a14bfdb01..f6e25c7bb 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA14/EA1/EA2907.png and b/approved/html/EARoot/EA1/EA3/EA14/EA1/EA2907.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA14/EA1/EA2910.htm b/approved/html/EARoot/EA1/EA3/EA14/EA1/EA2910.htm index 7e41a6104..fd12d9258 100644 --- a/approved/html/EARoot/EA1/EA3/EA14/EA1/EA2910.htm +++ b/approved/html/EARoot/EA1/EA3/EA14/EA1/EA2910.htm @@ -39,7 +39,7 @@ - + diff --git a/approved/html/EARoot/EA1/EA3/EA14/EA1/EA2911.png b/approved/html/EARoot/EA1/EA3/EA14/EA1/EA2911.png index 8bd2b6eb4..a51ccc9fe 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA14/EA1/EA2911.png and b/approved/html/EARoot/EA1/EA3/EA14/EA1/EA2911.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA14/EA1/EA2913.png b/approved/html/EARoot/EA1/EA3/EA14/EA1/EA2913.png index eb1fcbe8f..cb308e2b8 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA14/EA1/EA2913.png and b/approved/html/EARoot/EA1/EA3/EA14/EA1/EA2913.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA14/EA1/EA2915.png b/approved/html/EARoot/EA1/EA3/EA14/EA1/EA2915.png index 812f76390..3a75b0578 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA14/EA1/EA2915.png and b/approved/html/EARoot/EA1/EA3/EA14/EA1/EA2915.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA14/EA1/EA2917.png b/approved/html/EARoot/EA1/EA3/EA14/EA1/EA2917.png index acd8ce0b2..104050fe5 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA14/EA1/EA2917.png and b/approved/html/EARoot/EA1/EA3/EA14/EA1/EA2917.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA14/EA1/EA2921.png b/approved/html/EARoot/EA1/EA3/EA14/EA1/EA2921.png index 04781daf5..b4af7503c 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA14/EA1/EA2921.png and b/approved/html/EARoot/EA1/EA3/EA14/EA1/EA2921.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA14/EA1/EA2923.htm b/approved/html/EARoot/EA1/EA3/EA14/EA1/EA2923.htm index a133ab0c7..870cd52c6 100644 --- a/approved/html/EARoot/EA1/EA3/EA14/EA1/EA2923.htm +++ b/approved/html/EARoot/EA1/EA3/EA14/EA1/EA2923.htm @@ -108,7 +108,7 @@ - Public PS_CorrectionMethod
  augmentation + Public PS_PositionFixMode
  positionFixMode @@ -156,7 +156,7 @@ - Public PS_FrequencyList
  observationFrequiencesUsed + Public PS_PositionSolutionMethod
  positionSolutionMethod @@ -204,7 +204,7 @@ - Public PS_PositionFixMode
  positionFixMode + Public PS_ProcessingMode
  processingMode @@ -300,7 +300,7 @@ - Public PS_PositionSolutionMethod
  positionSolutionMethod + Public PS_CorrectionMethod
  augmentation @@ -348,7 +348,7 @@ - Public PS_ProcessingMode
  processingMode + Public PS_FrequencyList
  observationFrequiencesUsed diff --git a/approved/html/EARoot/EA1/EA3/EA14/EA1/EA2924.htm b/approved/html/EARoot/EA1/EA3/EA14/EA1/EA2924.htm index f946d88c6..d1f36a93c 100644 --- a/approved/html/EARoot/EA1/EA3/EA14/EA1/EA2924.htm +++ b/approved/html/EARoot/EA1/EA3/EA14/EA1/EA2924.htm @@ -155,7 +155,7 @@ - Public PS_OffsetVector
  objectOffset + Public PS_OffsetVector
  sensorOffset @@ -203,7 +203,7 @@ - Public PS_OffsetVector
  sensorOffset + Public PS_OffsetVector
  objectOffset diff --git a/approved/html/EARoot/EA1/EA3/EA14/EA1/EA2926.htm b/approved/html/EARoot/EA1/EA3/EA14/EA1/EA2926.htm index f9de90f28..b2e16c3bd 100644 --- a/approved/html/EARoot/EA1/EA3/EA14/EA1/EA2926.htm +++ b/approved/html/EARoot/EA1/EA3/EA14/EA1/EA2926.htm @@ -155,7 +155,7 @@ - Public <undefined>
  HDOP + Public <undefined>
  PDOP @@ -203,7 +203,7 @@ - Public <undefined>
  PDOP + Public <undefined>
  HDOP @@ -251,7 +251,7 @@ - Public <undefined>
  TDOP + Public <undefined>
  VDOP @@ -299,7 +299,7 @@ - Public <undefined>
  VDOP + Public <undefined>
  TDOP diff --git a/approved/html/EARoot/EA1/EA3/EA14/EA1/EA2927.htm b/approved/html/EARoot/EA1/EA3/EA14/EA1/EA2927.htm index 9c2c55319..9bb76c3b8 100644 --- a/approved/html/EARoot/EA1/EA3/EA14/EA1/EA2927.htm +++ b/approved/html/EARoot/EA1/EA3/EA14/EA1/EA2927.htm @@ -203,7 +203,7 @@ - Public <undefined>
  L1/L2/L3 + Public <undefined>
  L2 @@ -251,7 +251,7 @@ - Public <undefined>
  L1/L3 + Public <undefined>
  L3 @@ -299,7 +299,7 @@ - Public <undefined>
  L2 + Public <undefined>
  L1/L2/L3 @@ -395,7 +395,7 @@ - Public <undefined>
  L3 + Public <undefined>
  L1/L3 diff --git a/approved/html/EARoot/EA1/EA3/EA14/EA1/EA2929.htm b/approved/html/EARoot/EA1/EA3/EA14/EA1/EA2929.htm index 25e4a531f..8c6ae45da 100644 --- a/approved/html/EARoot/EA1/EA3/EA14/EA1/EA2929.htm +++ b/approved/html/EARoot/EA1/EA3/EA14/EA1/EA2929.htm @@ -109,7 +109,7 @@ - Public CharacterString
  calibrationReport + Public CharacterString
  type @@ -445,7 +445,7 @@ - Public CharacterString
  type + Public CharacterString
  calibrationReport diff --git a/approved/html/EARoot/EA1/EA3/EA14/EA1/EA2930.htm b/approved/html/EARoot/EA1/EA3/EA14/EA1/EA2930.htm index 065874193..9f4753e8d 100644 --- a/approved/html/EARoot/EA1/EA3/EA14/EA1/EA2930.htm +++ b/approved/html/EARoot/EA1/EA3/EA14/EA1/EA2930.htm @@ -107,7 +107,7 @@ - Public DQ_DataQuality
  accuracyOfReference + Public CharacterString
  identification @@ -133,7 +133,7 @@ Range: - Range:0 to 1 + Transient: @@ -203,7 +203,7 @@ - Public CharacterString
  identification + Public Vector
  referencePosition @@ -229,7 +229,7 @@ Range: - + Range:0 to 1 Transient: @@ -251,7 +251,7 @@ - Public Vector
  referencePosition + Public DQ_DataQuality
  accuracyOfReference diff --git a/approved/html/EARoot/EA1/EA3/EA14/EA1/EA2931.htm b/approved/html/EARoot/EA1/EA3/EA14/EA1/EA2931.htm index 626110698..ca9ea937b 100644 --- a/approved/html/EARoot/EA1/EA3/EA14/EA1/EA2931.htm +++ b/approved/html/EARoot/EA1/EA3/EA14/EA1/EA2931.htm @@ -108,7 +108,7 @@ - Public Real
  ageOfAugmentation + Public Integer
  satelliteIDs @@ -134,7 +134,7 @@ Range: - + Range:0 to * Transient: @@ -156,7 +156,7 @@ - Public PS_DOPType
  dilutionOfPrecisionTypes + Public Real
  signalStrenght @@ -204,7 +204,7 @@ - Public Real
  dilutionOfPrecisionValues + Public PS_DOPType
  dilutionOfPrecisionTypes @@ -230,7 +230,7 @@ Range: - + Range:0 to * Transient: @@ -252,7 +252,7 @@ - Public Integer
  satelliteIDs + Public Real
  dilutionOfPrecisionValues @@ -278,7 +278,7 @@ Range: - Range:0 to * + Transient: @@ -300,7 +300,7 @@ - Public Real
  signalStrenght + Public Real
  ageOfAugmentation @@ -326,7 +326,7 @@ Range: - Range:0 to * + Transient: diff --git a/approved/html/EARoot/EA1/EA3/EA14/EA1/EA2932.htm b/approved/html/EARoot/EA1/EA3/EA14/EA1/EA2932.htm index e7b013688..118b924f8 100644 --- a/approved/html/EARoot/EA1/EA3/EA14/EA1/EA2932.htm +++ b/approved/html/EARoot/EA1/EA3/EA14/EA1/EA2932.htm @@ -107,7 +107,7 @@ - Public <undefined>
  motion + Public <undefined>
  position @@ -203,7 +203,7 @@ - Public <undefined>
  position + Public <undefined>
  motion diff --git a/approved/html/EARoot/EA1/EA3/EA14/EA1/EA2936.htm b/approved/html/EARoot/EA1/EA3/EA14/EA1/EA2936.htm index 0b875a1c2..9426e1b03 100644 --- a/approved/html/EARoot/EA1/EA3/EA14/EA1/EA2936.htm +++ b/approved/html/EARoot/EA1/EA3/EA14/EA1/EA2936.htm @@ -157,7 +157,7 @@ - Public CC_ConcatenatedOperation
  operationsApplied + Public PS_MeasurementType
  resultType @@ -183,7 +183,7 @@ Range: - Range:0 to * + Range:0 to 1 Transient: @@ -205,7 +205,7 @@ - Public PS_ReferenceSystem
  positionalReferenceSystem + Public TM_ReferenceSystem
  temporalReferenceSystem @@ -253,7 +253,7 @@ - Public PS_LinkToReferenceSystem
  referenceLink + Public PS_ReferenceSystem
  positionalReferenceSystem @@ -279,7 +279,7 @@ Range: - Range:0 to 1 + Transient: @@ -301,7 +301,7 @@ - Public PS_MeasurementType
  resultType + Public PS_LinkToReferenceSystem
  referenceLink @@ -349,7 +349,7 @@ - Public TM_ReferenceSystem
  temporalReferenceSystem + Public CC_ConcatenatedOperation
  operationsApplied @@ -375,7 +375,7 @@ Range: - + Range:0 to * Transient: diff --git a/approved/html/EARoot/EA1/EA3/EA14/EA1/EA2940.htm b/approved/html/EARoot/EA1/EA3/EA14/EA1/EA2940.htm index 2b8ab4376..f4c93234a 100644 --- a/approved/html/EARoot/EA1/EA3/EA14/EA1/EA2940.htm +++ b/approved/html/EARoot/EA1/EA3/EA14/EA1/EA2940.htm @@ -108,7 +108,7 @@ - Public CI_Citation
  offsetSource + Public Vector
  ordinate @@ -134,7 +134,7 @@ Range: - Range:0 to 1 + Transient: @@ -156,7 +156,7 @@ - Public Vector
  ordinate + Public PS_OffsetSource
  sourceType @@ -182,7 +182,7 @@ Range: - + Range:0 to 1 Transient: @@ -204,7 +204,7 @@ - Public PS_OffsetSource
  sourceType + Public CI_Citation
  offsetSource diff --git a/approved/html/EARoot/EA1/EA3/EA14/EA1/EA2945.htm b/approved/html/EARoot/EA1/EA3/EA14/EA1/EA2945.htm index fa7a1f027..b42395bcd 100644 --- a/approved/html/EARoot/EA1/EA3/EA14/EA1/EA2945.htm +++ b/approved/html/EARoot/EA1/EA3/EA14/EA1/EA2945.htm @@ -107,7 +107,7 @@ - Public <undefined>
  1D + Public <undefined>
  Nofix @@ -155,7 +155,7 @@ - Public <undefined>
  2D + Public <undefined>
  Oldfix @@ -203,7 +203,7 @@ - Public <undefined>
  3D + Public <undefined>
  1D @@ -251,7 +251,7 @@ - Public <undefined>
  3Doverdetermined + Public <undefined>
  2D @@ -299,7 +299,7 @@ - Public <undefined>
  Nofix + Public <undefined>
  3D @@ -347,7 +347,7 @@ - Public <undefined>
  Oldfix + Public <undefined>
  3Doverdetermined diff --git a/approved/html/EARoot/EA1/EA3/EA14/EA1/EA2948.htm b/approved/html/EARoot/EA1/EA3/EA14/EA1/EA2948.htm index 90183d1c4..79cc7dcec 100644 --- a/approved/html/EARoot/EA1/EA3/EA14/EA1/EA2948.htm +++ b/approved/html/EARoot/EA1/EA3/EA14/EA1/EA2948.htm @@ -155,7 +155,7 @@ - Public <undefined>
  GNSS_InertialAided + Public <undefined>
  LORANC @@ -251,7 +251,7 @@ - Public <undefined>
  LORANC + Public <undefined>
  TotalStation @@ -299,7 +299,7 @@ - Public <undefined>
  TotalStation + Public <undefined>
  GNSS_InertialAided diff --git a/approved/html/EARoot/EA1/EA3/EA14/EA1/EA2949.htm b/approved/html/EARoot/EA1/EA3/EA14/EA1/EA2949.htm index 517e82f16..160f7cec3 100644 --- a/approved/html/EARoot/EA1/EA3/EA14/EA1/EA2949.htm +++ b/approved/html/EARoot/EA1/EA3/EA14/EA1/EA2949.htm @@ -155,7 +155,7 @@ - Public <undefined>
  KinematicFixed + Public <undefined>
  PPScode @@ -203,7 +203,7 @@ - Public <undefined>
  KinematicFloating + Public <undefined>
  StaticFloating @@ -251,7 +251,7 @@ - Public <undefined>
  PPScode + Public <undefined>
  StaticFixed @@ -299,7 +299,7 @@ - Public <undefined>
  StaticFixed + Public <undefined>
  KinematicFloating @@ -347,7 +347,7 @@ - Public <undefined>
  StaticFloating + Public <undefined>
  KinematicFixed diff --git a/approved/html/EARoot/EA1/EA3/EA14/EA1/EA2950.htm b/approved/html/EARoot/EA1/EA3/EA14/EA1/EA2950.htm index 0f4072754..0bdb8007c 100644 --- a/approved/html/EARoot/EA1/EA3/EA14/EA1/EA2950.htm +++ b/approved/html/EARoot/EA1/EA3/EA14/EA1/EA2950.htm @@ -107,7 +107,7 @@ - Public <undefined>
  PostProcessed + Public <undefined>
  RealTime @@ -155,7 +155,7 @@ - Public <undefined>
  RealTime + Public <undefined>
  PostProcessed diff --git a/approved/html/EARoot/EA1/EA3/EA14/EA1/EA2951.htm b/approved/html/EARoot/EA1/EA3/EA14/EA1/EA2951.htm index 37dfd4618..e3d98a79a 100644 --- a/approved/html/EARoot/EA1/EA3/EA14/EA1/EA2951.htm +++ b/approved/html/EARoot/EA1/EA3/EA14/EA1/EA2951.htm @@ -109,7 +109,7 @@ - Public DateTime
  dateTime + Public CharacterString
  nameOfMeasure @@ -135,7 +135,7 @@ Range: - Range:0 to 1 + Range:0 to * Transient: @@ -157,7 +157,7 @@ - Public CharacterString
  evaluationMethod_Description + Public MD_Identifier
  measureIdentification @@ -205,7 +205,7 @@ - Public DQ_EvaluationMethodTypeCode
  evaluationMethodType + Public CharacterString
  measureDescription @@ -253,7 +253,7 @@ - Public CI_Citation
  evaluationProcedure + Public DQ_EvaluationMethodTypeCode
  evaluationMethodType @@ -301,7 +301,7 @@ - Public CharacterString
  measureDescription + Public CharacterString
  evaluationMethod_Description @@ -349,7 +349,7 @@ - Public MD_Identifier
  measureIdentification + Public CI_Citation
  evaluationProcedure @@ -397,7 +397,7 @@ - Public CharacterString
  nameOfMeasure + Public DateTime
  dateTime @@ -423,7 +423,7 @@ Range: - Range:0 to * + Range:0 to 1 Transient: diff --git a/approved/html/EARoot/EA1/EA3/EA14/EA1/EA2953.htm b/approved/html/EARoot/EA1/EA3/EA14/EA1/EA2953.htm index 59de3c407..9526a202a 100644 --- a/approved/html/EARoot/EA1/EA3/EA14/EA1/EA2953.htm +++ b/approved/html/EARoot/EA1/EA3/EA14/EA1/EA2953.htm @@ -155,7 +155,7 @@ - Public <undefined>
  gridCell + Public <undefined>
  linear @@ -203,7 +203,7 @@ - Public <undefined>
  linear + Public <undefined>
  gridCell diff --git a/approved/html/EARoot/EA1/EA3/EA14/EA1/EA2956.htm b/approved/html/EARoot/EA1/EA3/EA14/EA1/EA2956.htm index 0930b2f68..6105698a3 100644 --- a/approved/html/EARoot/EA1/EA3/EA14/EA1/EA2956.htm +++ b/approved/html/EARoot/EA1/EA3/EA14/EA1/EA2956.htm @@ -109,7 +109,7 @@ - Public CharacterString
  datasetInitiative + Public CharacterString
  sessionID @@ -135,7 +135,7 @@ Range: - Range:0 to 1 + Transient: @@ -158,7 +158,7 @@ Notes: - Name or short description identifying the project or mission.<br/> + Session number, name or other identifier of the session.<br/> @@ -167,7 +167,7 @@ - Public CI_ResponsibleParty
  observer + Public TM_Instant
  startTime @@ -193,7 +193,7 @@ Range: - Range:0 to * + Transient: @@ -210,12 +210,22 @@ -   +
+ + + + +
+ Notes: + + Date and time at which observation session was initiated<br/> +
+ - Public CharacterString
  sessionID + Public TM_Instant
  stopTime @@ -241,7 +251,7 @@ Range: - + Range:0 to 1 Transient: @@ -258,22 +268,12 @@ -
- - - - -
- Notes: - - Session number, name or other identifier of the session.<br/> -
- +   - Public TM_Instant
  startTime + Public CharacterString
  datasetInitiative @@ -299,7 +299,7 @@ Range: - + Range:0 to 1 Transient: @@ -322,7 +322,7 @@ Notes: - Date and time at which observation session was initiated<br/> + Name or short description identifying the project or mission.<br/> @@ -331,7 +331,7 @@ - Public TM_Instant
  stopTime + Public CI_ResponsibleParty
  observer @@ -357,7 +357,7 @@ Range: - Range:0 to 1 + Range:0 to * Transient: diff --git a/approved/html/EARoot/EA1/EA3/EA14/EA1/EA2958.htm b/approved/html/EARoot/EA1/EA3/EA14/EA1/EA2958.htm index 79ef0bc6b..a714997db 100644 --- a/approved/html/EARoot/EA1/EA3/EA14/EA1/EA2958.htm +++ b/approved/html/EARoot/EA1/EA3/EA14/EA1/EA2958.htm @@ -107,7 +107,7 @@ - Public <undefined>
  attitudeData + Public <undefined>
  positionData @@ -155,7 +155,7 @@ - Public <undefined>
  attitudeQuality + Public <undefined>
  positionalQuality @@ -299,7 +299,7 @@ - Public <undefined>
  positionalQuality + Public <undefined>
  attitudeData @@ -347,7 +347,7 @@ - Public <undefined>
  positionData + Public <undefined>
  attitudeQuality @@ -395,7 +395,7 @@ - Public <undefined>
  rawMeasurementData + Public <undefined>
  rotationalData @@ -443,7 +443,7 @@ - Public <undefined>
  rotationalData + Public <undefined>
  rotationalQuality @@ -491,7 +491,7 @@ - Public <undefined>
  rotationalQuality + Public <undefined>
  technologySpecificData @@ -539,7 +539,7 @@ - Public <undefined>
  technologySpecificData + Public <undefined>
  rawMeasurementData diff --git a/approved/html/EARoot/EA1/EA3/EA15/EA2/EA2996.png b/approved/html/EARoot/EA1/EA3/EA15/EA2/EA2996.png index e93296eea..c2a46a00d 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA15/EA2/EA2996.png and b/approved/html/EARoot/EA1/EA3/EA15/EA2/EA2996.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA15/EA2/EA2998.png b/approved/html/EARoot/EA1/EA3/EA15/EA2/EA2998.png index 7a1c85596..a3a3ffbde 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA15/EA2/EA2998.png and b/approved/html/EARoot/EA1/EA3/EA15/EA2/EA2998.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA15/EA2/EA3000.png b/approved/html/EARoot/EA1/EA3/EA15/EA2/EA3000.png index aef934a0d..5155cfd84 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA15/EA2/EA3000.png and b/approved/html/EARoot/EA1/EA3/EA15/EA2/EA3000.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA15/EA2/EA3002.png b/approved/html/EARoot/EA1/EA3/EA15/EA2/EA3002.png index 41e567cfb..93bc09023 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA15/EA2/EA3002.png and b/approved/html/EARoot/EA1/EA3/EA15/EA2/EA3002.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA15/EA2/EA3004.png b/approved/html/EARoot/EA1/EA3/EA15/EA2/EA3004.png index 442064307..c8df86185 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA15/EA2/EA3004.png and b/approved/html/EARoot/EA1/EA3/EA15/EA2/EA3004.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA15/EA2/EA3006.png b/approved/html/EARoot/EA1/EA3/EA15/EA2/EA3006.png index 941647481..6428425dd 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA15/EA2/EA3006.png and b/approved/html/EARoot/EA1/EA3/EA15/EA2/EA3006.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA15/EA2/EA3008.png b/approved/html/EARoot/EA1/EA3/EA15/EA2/EA3008.png index fb42d9055..12b1a3626 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA15/EA2/EA3008.png and b/approved/html/EARoot/EA1/EA3/EA15/EA2/EA3008.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA15/EA2/EA3010.png b/approved/html/EARoot/EA1/EA3/EA15/EA2/EA3010.png index ba804b0d4..11c133b1f 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA15/EA2/EA3010.png and b/approved/html/EARoot/EA1/EA3/EA15/EA2/EA3010.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA15/EA2/EA3012.png b/approved/html/EARoot/EA1/EA3/EA15/EA2/EA3012.png index 2768361ee..4c5af7856 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA15/EA2/EA3012.png and b/approved/html/EARoot/EA1/EA3/EA15/EA2/EA3012.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA15/EA2/EA3014.png b/approved/html/EARoot/EA1/EA3/EA15/EA2/EA3014.png index d9a8774f4..f224146a0 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA15/EA2/EA3014.png and b/approved/html/EARoot/EA1/EA3/EA15/EA2/EA3014.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA15/EA2/EA3016.png b/approved/html/EARoot/EA1/EA3/EA15/EA2/EA3016.png index c03f8556d..98e8a9dab 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA15/EA2/EA3016.png and b/approved/html/EARoot/EA1/EA3/EA15/EA2/EA3016.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA15/EA2/EA3018.png b/approved/html/EARoot/EA1/EA3/EA15/EA2/EA3018.png index 7c43e3bc1..feff1bd7e 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA15/EA2/EA3018.png and b/approved/html/EARoot/EA1/EA3/EA15/EA2/EA3018.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA15/EA2/EA3020.png b/approved/html/EARoot/EA1/EA3/EA15/EA2/EA3020.png index 45751c4ab..1eb3b9679 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA15/EA2/EA3020.png and b/approved/html/EARoot/EA1/EA3/EA15/EA2/EA3020.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA15/EA2/EA3022.png b/approved/html/EARoot/EA1/EA3/EA15/EA2/EA3022.png index 68b39700c..2ed1da510 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA15/EA2/EA3022.png and b/approved/html/EARoot/EA1/EA3/EA15/EA2/EA3022.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA15/EA2/EA3031.htm b/approved/html/EARoot/EA1/EA3/EA15/EA2/EA3031.htm index 44fe8e10c..424713cc1 100644 --- a/approved/html/EARoot/EA1/EA3/EA15/EA2/EA3031.htm +++ b/approved/html/EARoot/EA1/EA3/EA15/EA2/EA3031.htm @@ -108,7 +108,7 @@ - Public Distance
  groundResolution + Public Distance
  scanningResolution @@ -157,7 +157,7 @@ Notes: - Description: Distance between adjacent pixels in the object space<br/>shortName: groundRes<br/> + Description: Distance between adjacent pixels in the scan plane<br/>shortName: scanRes<br/> @@ -166,7 +166,7 @@ - Public Distance
  scanningResolution + Public Distance
  groundResolution @@ -215,7 +215,7 @@ Notes: - Description: Distance between adjacent pixels in the scan plane<br/>shortName: scanRes<br/> + Description: Distance between adjacent pixels in the object space<br/>shortName: groundRes<br/> diff --git a/approved/html/EARoot/EA1/EA3/EA15/EA2/EA3032.htm b/approved/html/EARoot/EA1/EA3/EA15/EA2/EA3032.htm index 47dccd3bc..31e5b1180 100644 --- a/approved/html/EARoot/EA1/EA3/EA15/EA2/EA3032.htm +++ b/approved/html/EARoot/EA1/EA3/EA15/EA2/EA3032.htm @@ -110,7 +110,7 @@ - Public CI_Citation
  documentation + Public MD_Identifier
  identifier @@ -136,7 +136,7 @@ Range: - Range:0 to * + Transient: @@ -159,7 +159,7 @@ Notes: - Description: Reference to documentation describing the processing<br/>FGDC: Processing_Documentation<br/>Position: 4<br/>shortName: procInfoDoc<br/> + Description: Information to identify the processing package that produced the data<br/>FGDC: Processing_Identifiers<br/>Position: 1<br/>shortName: procInfoId<br/> @@ -168,7 +168,7 @@ - Public MD_Identifier
  identifier + Public CI_Citation
  softwareReference @@ -194,7 +194,7 @@ Range: - + Range:0 to 1 Transient: @@ -217,7 +217,7 @@ Notes: - Description: Information to identify the processing package that produced the data<br/>FGDC: Processing_Identifiers<br/>Position: 1<br/>shortName: procInfoId<br/> + Description: Reference to document describing processing software<br/>FGDC: Processing_Software_Reference<br/>Position: 2<br/>shortName: procInfoSwRef<br/> @@ -284,7 +284,7 @@ - Public CharacterString
  runTimeParameters + Public CI_Citation
  documentation @@ -310,7 +310,7 @@ Range: - Range:0 to 1 + Range:0 to * Transient: @@ -333,7 +333,7 @@ Notes: - Description: Parameters to control the processing operations, entered at run time<br/>FGDC: Command_Line_Processing_Parameter<br/>Position: 5<br/>shortName: procInfoParam<br/> + Description: Reference to documentation describing the processing<br/>FGDC: Processing_Documentation<br/>Position: 4<br/>shortName: procInfoDoc<br/> @@ -342,7 +342,7 @@ - Public CI_Citation
  softwareReference + Public CharacterString
  runTimeParameters @@ -391,7 +391,7 @@ Notes: - Description: Reference to document describing processing software<br/>FGDC: Processing_Software_Reference<br/>Position: 2<br/>shortName: procInfoSwRef<br/> + Description: Parameters to control the processing operations, entered at run time<br/>FGDC: Command_Line_Processing_Parameter<br/>Position: 5<br/>shortName: procInfoParam<br/> diff --git a/approved/html/EARoot/EA1/EA3/EA15/EA2/EA3034.htm b/approved/html/EARoot/EA1/EA3/EA15/EA2/EA3034.htm index 488b8f3f5..7dc8e9ec7 100644 --- a/approved/html/EARoot/EA1/EA3/EA15/EA2/EA3034.htm +++ b/approved/html/EARoot/EA1/EA3/EA15/EA2/EA3034.htm @@ -109,7 +109,7 @@ - Public CharacterString
  description + Public CharacterString
  name @@ -135,7 +135,7 @@ Range: - Range:0 to 1 + Transient: @@ -158,7 +158,7 @@ Notes: - Description: Textual description of what occurred during the process step<br/>shortName: procRepDesc<br/> + Description: Name of the processing report<br/>shortName: procRepName<br/> @@ -167,7 +167,7 @@ - Public CharacterString
  fileType + Public CharacterString
  description @@ -216,7 +216,7 @@ Notes: - Description: Type of file that contains that processing report<br/>shortName: procRepFilTyp<br/> + Description: Textual description of what occurred during the process step<br/>shortName: procRepDesc<br/> @@ -225,7 +225,7 @@ - Public CharacterString
  name + Public CharacterString
  fileType @@ -251,7 +251,7 @@ Range: - + Range:0 to 1 Transient: @@ -274,7 +274,7 @@ Notes: - Description: Name of the processing report<br/>shortName: procRepName<br/> + Description: Type of file that contains that processing report<br/>shortName: procRepFilTyp<br/> diff --git a/approved/html/EARoot/EA1/EA3/EA15/EA3/EA3040.png b/approved/html/EARoot/EA1/EA3/EA15/EA3/EA3040.png index b9e6a0103..b0ce526a7 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA15/EA3/EA3040.png and b/approved/html/EARoot/EA1/EA3/EA15/EA3/EA3040.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA15/EA3/EA3042.png b/approved/html/EARoot/EA1/EA3/EA15/EA3/EA3042.png index c00d99f15..fc2c684c0 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA15/EA3/EA3042.png and b/approved/html/EARoot/EA1/EA3/EA15/EA3/EA3042.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA15/EA3/EA3044.png b/approved/html/EARoot/EA1/EA3/EA15/EA3/EA3044.png index ca4260db0..cb3562888 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA15/EA3/EA3044.png and b/approved/html/EARoot/EA1/EA3/EA15/EA3/EA3044.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA15/EA3/EA3046.png b/approved/html/EARoot/EA1/EA3/EA15/EA3/EA3046.png index 845b1eac4..21d4fdd55 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA15/EA3/EA3046.png and b/approved/html/EARoot/EA1/EA3/EA15/EA3/EA3046.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA15/EA4/EA3054.png b/approved/html/EARoot/EA1/EA3/EA15/EA4/EA3054.png index 87f2be61f..9be01b85d 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA15/EA4/EA3054.png and b/approved/html/EARoot/EA1/EA3/EA15/EA4/EA3054.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA15/EA4/EA3056.png b/approved/html/EARoot/EA1/EA3/EA15/EA4/EA3056.png index 67a492b98..2e0da1de3 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA15/EA4/EA3056.png and b/approved/html/EARoot/EA1/EA3/EA15/EA4/EA3056.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA15/EA4/EA3060.png b/approved/html/EARoot/EA1/EA3/EA15/EA4/EA3060.png index 23161b462..a3c551b3c 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA15/EA4/EA3060.png and b/approved/html/EARoot/EA1/EA3/EA15/EA4/EA3060.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA15/EA4/EA3062.png b/approved/html/EARoot/EA1/EA3/EA15/EA4/EA3062.png index 8e6649ce8..738512435 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA15/EA4/EA3062.png and b/approved/html/EARoot/EA1/EA3/EA15/EA4/EA3062.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA15/EA4/EA3064.htm b/approved/html/EARoot/EA1/EA3/EA15/EA4/EA3064.htm index 50716f426..8deef649f 100644 --- a/approved/html/EARoot/EA1/EA3/EA15/EA4/EA3064.htm +++ b/approved/html/EARoot/EA1/EA3/EA15/EA4/EA3064.htm @@ -167,7 +167,7 @@ - Public MI_PolarisationOrientationCode
  detectedPolarisation + Public Real
  nominalSpatialResolution @@ -216,7 +216,7 @@ Notes: - Description: polarisation of the transmitter or detector<br/>shortName: polarisation<br/> + Description: Smallest distance between which separate points can be distinguished, as specified in instrument design<br/>FGDC: Nominal_Spatial_Resolution<br/>Position: 4<br/>shortName: bndRes<br/> @@ -225,7 +225,7 @@ - Public Real
  nominalSpatialResolution + Public MI_TransferFunctionTypeCode
  transferFunctionType @@ -274,7 +274,7 @@ Notes: - Description: Smallest distance between which separate points can be distinguished, as specified in instrument design<br/>FGDC: Nominal_Spatial_Resolution<br/>Position: 4<br/>shortName: bndRes<br/> + Description: transform function to be used when scaling a physical value for a given element<br/>shortName: scalXfrFunc<br/> @@ -283,7 +283,7 @@ - Public MI_TransferFunctionTypeCode
  transferFunctionType + Public MI_PolarisationOrientationCode
  transmittedPolarisation @@ -332,7 +332,7 @@ Notes: - Description: transform function to be used when scaling a physical value for a given element<br/>shortName: scalXfrFunc<br/> + Description: polarisation of the transmitter or detector<br/>shortName: polarisation<br/> @@ -341,7 +341,7 @@ - Public MI_PolarisationOrientationCode
  transmittedPolarisation + Public MI_PolarisationOrientationCode
  detectedPolarisation diff --git a/approved/html/EARoot/EA1/EA3/EA15/EA4/EA3065.htm b/approved/html/EARoot/EA1/EA3/EA15/EA4/EA3065.htm index dc5dbd9fa..88c3cb4fc 100644 --- a/approved/html/EARoot/EA1/EA3/EA15/EA4/EA3065.htm +++ b/approved/html/EARoot/EA1/EA3/EA15/EA4/EA3065.htm @@ -166,7 +166,7 @@ - Public <undefined>
  equivalentWidth + Public <undefined>
  halfMaximum @@ -215,7 +215,7 @@ Notes: - Description: TBD<br/>FGDC: equivalent width<br/>Code: 005<br/> + Description: width of a distribution equal to the distance between the outer two points on the distribution having power level half of that at the peak<br/>FGDC: half maximum<br/>Code: 002<br/> @@ -282,7 +282,7 @@ - Public <undefined>
  halfMaximum + Public <undefined>
  oneOverE @@ -331,7 +331,7 @@ Notes: - Description: width of a distribution equal to the distance between the outer two points on the distribution having power level half of that at the peak<br/>FGDC: half maximum<br/>Code: 002<br/> + Description: TBD<br/>FGDC: 1/e<br/>Code: 004<br/> @@ -340,7 +340,7 @@ - Public <undefined>
  oneOverE + Public <undefined>
  equivalentWidth @@ -389,7 +389,7 @@ Notes: - Description: TBD<br/>FGDC: 1/e<br/>Code: 004<br/> + Description: TBD<br/>FGDC: equivalent width<br/>Code: 005<br/> diff --git a/approved/html/EARoot/EA1/EA3/EA15/EA4/EA3068.htm b/approved/html/EARoot/EA1/EA3/EA15/EA4/EA3068.htm index 04009f2e5..67bd1dbd0 100644 --- a/approved/html/EARoot/EA1/EA3/EA15/EA4/EA3068.htm +++ b/approved/html/EARoot/EA1/EA3/EA15/EA4/EA3068.htm @@ -166,7 +166,7 @@ - Public <undefined>
  leftCircular + Public <undefined>
  vertical @@ -215,7 +215,7 @@ Notes: - Description: TBD<br/>Code: 003<br/> + Description: TBD<br/>Code: 002<br/> @@ -224,7 +224,7 @@ - Public <undefined>
  phi + Public <undefined>
  leftCircular @@ -273,7 +273,7 @@ Notes: - Description: TBD<br/>Code: 006<br/> + Description: TBD<br/>Code: 003<br/> @@ -398,7 +398,7 @@ - Public <undefined>
  vertical + Public <undefined>
  phi @@ -447,7 +447,7 @@ Notes: - Description: TBD<br/>Code: 002<br/> + Description: TBD<br/>Code: 006<br/> diff --git a/approved/html/EARoot/EA1/EA3/EA15/EA4/EA3069.htm b/approved/html/EARoot/EA1/EA3/EA15/EA4/EA3069.htm index 3ffbbb421..fc1b83943 100644 --- a/approved/html/EARoot/EA1/EA3/EA15/EA4/EA3069.htm +++ b/approved/html/EARoot/EA1/EA3/EA15/EA4/EA3069.htm @@ -110,7 +110,7 @@ - Public CharacterString
  definition + Public CharacterString
  name @@ -159,7 +159,7 @@ Notes: - Description: description of a set of specific range elements<br/>shortName: rgEltDef<br/> + Description: designation associated with a set of range elements<br/>shortName: rgEltName<br/> @@ -168,7 +168,7 @@ - Public CharacterString
  name + Public CharacterString
  definition @@ -217,7 +217,7 @@ Notes: - Description: designation associated with a set of range elements<br/>shortName: rgEltName<br/> + Description: description of a set of specific range elements<br/>shortName: rgEltDef<br/> diff --git a/approved/html/EARoot/EA1/EA3/EA15/EA4/EA3070.htm b/approved/html/EARoot/EA1/EA3/EA15/EA4/EA3070.htm index 93cf949b8..54852cf80 100644 --- a/approved/html/EARoot/EA1/EA3/EA15/EA4/EA3070.htm +++ b/approved/html/EARoot/EA1/EA3/EA15/EA4/EA3070.htm @@ -108,7 +108,7 @@ - Public <undefined>
  exponential + Public <undefined>
  linear @@ -157,7 +157,7 @@ Notes: - Description: TBD<br/>Code: 003<br/> + Description: TBD<br/>Code: 001<br/> @@ -166,7 +166,7 @@ - Public <undefined>
  linear + Public <undefined>
  logarithmic @@ -215,7 +215,7 @@ Notes: - Description: TBD<br/>Code: 001<br/> + Description: TBD<br/>Code: 002<br/> @@ -224,7 +224,7 @@ - Public <undefined>
  logarithmic + Public <undefined>
  exponential @@ -273,7 +273,7 @@ Notes: - Description: TBD<br/>Code: 002<br/> + Description: TBD<br/>Code: 003<br/> diff --git a/approved/html/EARoot/EA1/EA3/EA15/EA5/EA3072.png b/approved/html/EARoot/EA1/EA3/EA15/EA5/EA3072.png index aa12bba7b..3087beb19 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA15/EA5/EA3072.png and b/approved/html/EARoot/EA1/EA3/EA15/EA5/EA3072.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA15/EA5/EA3076.png b/approved/html/EARoot/EA1/EA3/EA15/EA5/EA3076.png index 562fe3f0b..84fa774d3 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA15/EA5/EA3076.png and b/approved/html/EARoot/EA1/EA3/EA15/EA5/EA3076.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA15/EA5/EA3078.png b/approved/html/EARoot/EA1/EA3/EA15/EA5/EA3078.png index 91b4d77cf..019971b87 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA15/EA5/EA3078.png and b/approved/html/EARoot/EA1/EA3/EA15/EA5/EA3078.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA15/EA5/EA3080.png b/approved/html/EARoot/EA1/EA3/EA15/EA5/EA3080.png index f7c493bde..518053369 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA15/EA5/EA3080.png and b/approved/html/EARoot/EA1/EA3/EA15/EA5/EA3080.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA15/EA5/EA3082.png b/approved/html/EARoot/EA1/EA3/EA15/EA5/EA3082.png index bc889b28f..6a73b8389 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA15/EA5/EA3082.png and b/approved/html/EARoot/EA1/EA3/EA15/EA5/EA3082.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA15/EA5/EA3086.png b/approved/html/EARoot/EA1/EA3/EA15/EA5/EA3086.png index ff9528793..c4ac95bab 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA15/EA5/EA3086.png and b/approved/html/EARoot/EA1/EA3/EA15/EA5/EA3086.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA15/EA5/EA3088.png b/approved/html/EARoot/EA1/EA3/EA15/EA5/EA3088.png index 29807400f..48a94f8e8 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA15/EA5/EA3088.png and b/approved/html/EARoot/EA1/EA3/EA15/EA5/EA3088.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA15/EA5/EA3090.png b/approved/html/EARoot/EA1/EA3/EA15/EA5/EA3090.png index 79c1b5aa0..85e32e37b 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA15/EA5/EA3090.png and b/approved/html/EARoot/EA1/EA3/EA15/EA5/EA3090.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA15/EA5/EA3092.png b/approved/html/EARoot/EA1/EA3/EA15/EA5/EA3092.png index 78e095104..d333a8319 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA15/EA5/EA3092.png and b/approved/html/EARoot/EA1/EA3/EA15/EA5/EA3092.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA15/EA5/EA3094.png b/approved/html/EARoot/EA1/EA3/EA15/EA5/EA3094.png index 0c005b4fa..1cee30e2e 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA15/EA5/EA3094.png and b/approved/html/EARoot/EA1/EA3/EA15/EA5/EA3094.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA15/EA5/EA3096.png b/approved/html/EARoot/EA1/EA3/EA15/EA5/EA3096.png index ae0afc3a9..e9f5fe386 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA15/EA5/EA3096.png and b/approved/html/EARoot/EA1/EA3/EA15/EA5/EA3096.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA15/EA5/EA3098.png b/approved/html/EARoot/EA1/EA3/EA15/EA5/EA3098.png index 6d6bfdc94..f52f5095a 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA15/EA5/EA3098.png and b/approved/html/EARoot/EA1/EA3/EA15/EA5/EA3098.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA15/EA5/EA3100.png b/approved/html/EARoot/EA1/EA3/EA15/EA5/EA3100.png index 499d019b5..3bb1539d5 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA15/EA5/EA3100.png and b/approved/html/EARoot/EA1/EA3/EA15/EA5/EA3100.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA15/EA5/EA3104.png b/approved/html/EARoot/EA1/EA3/EA15/EA5/EA3104.png index 8574379da..d55c77ce9 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA15/EA5/EA3104.png and b/approved/html/EARoot/EA1/EA3/EA15/EA5/EA3104.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA15/EA5/EA3106.png b/approved/html/EARoot/EA1/EA3/EA15/EA5/EA3106.png index c436ecb0d..5287ba695 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA15/EA5/EA3106.png and b/approved/html/EARoot/EA1/EA3/EA15/EA5/EA3106.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA15/EA5/EA3110.htm b/approved/html/EARoot/EA1/EA3/EA15/EA5/EA3110.htm index d06565713..2c4267d62 100644 --- a/approved/html/EARoot/EA1/EA3/EA15/EA5/EA3110.htm +++ b/approved/html/EARoot/EA1/EA3/EA15/EA5/EA3110.htm @@ -156,7 +156,7 @@ - Public Real
  maxAltitude + Public Real
  maxRelativeHumidity @@ -204,7 +204,7 @@ - Public Real
  maxRelativeHumidity + Public Real
  maxAltitude diff --git a/approved/html/EARoot/EA1/EA3/EA15/EA5/EA3111.htm b/approved/html/EARoot/EA1/EA3/EA15/EA5/EA3111.htm index 4e33aeaed..5f2e4956a 100644 --- a/approved/html/EARoot/EA1/EA3/EA15/EA5/EA3111.htm +++ b/approved/html/EARoot/EA1/EA3/EA15/EA5/EA3111.htm @@ -110,7 +110,7 @@ - Public MI_ContextCode
  context + Public MD_Identifier
  identifier @@ -159,7 +159,7 @@ Notes: - Description: Meaning of the event<br/>shortName: evtCntxt<br/> + Description: Event name or number<br/>shortName: evtId<br/> @@ -168,7 +168,7 @@ - Public MD_Identifier
  identifier + Public MI_TriggerCode
  trigger @@ -217,7 +217,7 @@ Notes: - Description: Event name or number<br/>shortName: evtId<br/> + Description: Initiator of the event<br/>shortName: evtTrig<br/> @@ -226,7 +226,7 @@ - Public MI_SequenceCode
  sequence + Public MI_ContextCode
  context @@ -275,7 +275,7 @@ Notes: - Description: Relative time ordering of the event<br/>shortName: evtSeq<br/> + Description: Meaning of the event<br/>shortName: evtCntxt<br/> @@ -284,7 +284,7 @@ - Public DateTime
  time + Public MI_SequenceCode
  sequence @@ -333,7 +333,7 @@ Notes: - Description: Time the event occured<br/>shortName: evtTime<br/> + Description: Relative time ordering of the event<br/>shortName: evtSeq<br/> @@ -342,7 +342,7 @@ - Public MI_TriggerCode
  trigger + Public DateTime
  time @@ -391,7 +391,7 @@ Notes: - Description: Initiator of the event<br/>shortName: evtTrig<br/> + Description: Time the event occured<br/>shortName: evtTime<br/> diff --git a/approved/html/EARoot/EA1/EA3/EA15/EA5/EA3112.htm b/approved/html/EARoot/EA1/EA3/EA15/EA5/EA3112.htm index 94ee50404..e8538f354 100644 --- a/approved/html/EARoot/EA1/EA3/EA15/EA5/EA3112.htm +++ b/approved/html/EARoot/EA1/EA3/EA15/EA5/EA3112.htm @@ -108,7 +108,7 @@ - Public <undefined>
  areal + Public <undefined>
  point @@ -157,7 +157,7 @@ Notes: - Description: collection of a geographic area definded by a polygon (coverage)<br/>Code: 003<br/> + Description: single geographic point of interest<br/>Code: 001<br/> @@ -224,7 +224,7 @@ - Public <undefined>
  point + Public <undefined>
  areal @@ -273,7 +273,7 @@ Notes: - Description: single geographic point of interest<br/>Code: 001<br/> + Description: collection of a geographic area definded by a polygon (coverage)<br/>Code: 003<br/> diff --git a/approved/html/EARoot/EA1/EA3/EA15/EA5/EA3113.htm b/approved/html/EARoot/EA1/EA3/EA15/EA5/EA3113.htm index 103bd4ce6..7bee20f34 100644 --- a/approved/html/EARoot/EA1/EA3/EA15/EA5/EA3113.htm +++ b/approved/html/EARoot/EA1/EA3/EA15/EA5/EA3113.htm @@ -168,7 +168,7 @@ - Public CharacterString
  description + Public MD_Identifier
  identifier @@ -194,7 +194,7 @@ Range: - Range:0 to 1 + Transient: @@ -217,7 +217,7 @@ Notes: - Description: Textual description of the instrument<br/>shortName: instDesc<br/><br/> + Description: complete citation of the instrument<br/>FGDC: Instrument_Full_Name<br/>Position: 1<br/>shortName: instNam<br/>Conditional: if shortName not specified<br/><br/> @@ -226,7 +226,7 @@ - Public MD_Identifier
  identifier + Public CharacterString
  type @@ -275,7 +275,7 @@ Notes: - Description: complete citation of the instrument<br/>FGDC: Instrument_Full_Name<br/>Position: 1<br/>shortName: instNam<br/>Conditional: if shortName not specified<br/><br/> + Description: Code describing the type of instrument<br/>shortName: instType<br/><br/> @@ -284,7 +284,7 @@ - Public CharacterString
  type + Public CharacterString
  description @@ -310,7 +310,7 @@ Range: - + Range:0 to 1 Transient: @@ -333,7 +333,7 @@ Notes: - Description: Code describing the type of instrument<br/>shortName: instType<br/><br/> + Description: Textual description of the instrument<br/>shortName: instDesc<br/><br/> diff --git a/approved/html/EARoot/EA1/EA3/EA15/EA5/EA3114.htm b/approved/html/EARoot/EA1/EA3/EA15/EA5/EA3114.htm index 15842bb85..f693025cd 100644 --- a/approved/html/EARoot/EA1/EA3/EA15/EA5/EA3114.htm +++ b/approved/html/EARoot/EA1/EA3/EA15/EA5/EA3114.htm @@ -110,7 +110,7 @@ - Public EX_Extent
  extent + Public MD_Identifier
  identifier @@ -136,7 +136,7 @@ Range: - Range:0 to * + Transient: @@ -159,7 +159,7 @@ Notes: - Description: extent information including the bounding box, bounding polygon, vertical and temporal extent of the objective<br/>Position: 6<br/>shortName: trgtExtent<br/><br/> + Description: Registered code used to identify the objective<br/>Postion: 1<br/>shortName: targetId<br/><br/> @@ -168,7 +168,7 @@ - Public CharacterString
  function + Public CharacterString
  priority @@ -194,7 +194,7 @@ Range: - Range:0 to * + Range:0 to 1 Transient: @@ -217,7 +217,7 @@ Notes: - Description: function performed by or at the objective<br/>Position: 5<br/>shortName: trgtFunct<br/> + Description: priority applied to the target<br/>Position: 3<br/>shortName: trgtPriority<br/> @@ -226,7 +226,7 @@ - Public MD_Identifier
  identifier + Public MI_ObjectiveTypeCode
  type @@ -252,7 +252,7 @@ Range: - + Range:0 to * Transient: @@ -275,7 +275,7 @@ Notes: - Description: Registered code used to identify the objective<br/>Postion: 1<br/>shortName: targetId<br/><br/> + Description: collection technique for the objective<br/>Position: 4<br/>shortName: trgtType<br/> @@ -284,7 +284,7 @@ - Public CharacterString
  priority + Public CharacterString
  function @@ -310,7 +310,7 @@ Range: - Range:0 to 1 + Range:0 to * Transient: @@ -333,7 +333,7 @@ Notes: - Description: priority applied to the target<br/>Position: 3<br/>shortName: trgtPriority<br/> + Description: function performed by or at the objective<br/>Position: 5<br/>shortName: trgtFunct<br/> @@ -342,7 +342,7 @@ - Public MI_ObjectiveTypeCode
  type + Public EX_Extent
  extent @@ -391,7 +391,7 @@ Notes: - Description: collection technique for the objective<br/>Position: 4<br/>shortName: trgtType<br/> + Description: extent information including the bounding box, bounding polygon, vertical and temporal extent of the objective<br/>Position: 6<br/>shortName: trgtExtent<br/><br/> diff --git a/approved/html/EARoot/EA1/EA3/EA15/EA5/EA3116.htm b/approved/html/EARoot/EA1/EA3/EA15/EA5/EA3116.htm index 120550bb0..22d93fb9d 100644 --- a/approved/html/EARoot/EA1/EA3/EA15/EA5/EA3116.htm +++ b/approved/html/EARoot/EA1/EA3/EA15/EA5/EA3116.htm @@ -110,7 +110,7 @@ - Public CI_Citation
  citation + Public CharacterString
  description @@ -159,7 +159,7 @@ Notes: - Description: character string by which the mission is known<br/>FGDC: Mission_Name<br/>Position: 1<br/>shortName: pltMssnNam<br/>NITF_ACFTA:AC_MSN_ID<br/><br/> + Description: Description of the mission on which the platform observations are part and the objectives of that mission<br/>FGDC: Mission_Description<br/>Position: 3<br/>shortName: mssnDesc<br/><br/> @@ -168,7 +168,7 @@ - Public CharacterString
  description + Public CI_Citation
  citation @@ -217,7 +217,7 @@ Notes: - Description: Description of the mission on which the platform observations are part and the objectives of that mission<br/>FGDC: Mission_Description<br/>Position: 3<br/>shortName: mssnDesc<br/><br/> + Description: character string by which the mission is known<br/>FGDC: Mission_Name<br/>Position: 1<br/>shortName: pltMssnNam<br/>NITF_ACFTA:AC_MSN_ID<br/><br/> diff --git a/approved/html/EARoot/EA1/EA3/EA15/EA5/EA3118.htm b/approved/html/EARoot/EA1/EA3/EA15/EA5/EA3118.htm index 9c52ea078..af3f3a21a 100644 --- a/approved/html/EARoot/EA1/EA3/EA15/EA5/EA3118.htm +++ b/approved/html/EARoot/EA1/EA3/EA15/EA5/EA3118.htm @@ -110,7 +110,7 @@ - Public CI_Citation
  citation + Public MI_GeometryTypeCode
  type @@ -136,7 +136,7 @@ Range: - + Range:0 to 1 Transient: @@ -159,7 +159,7 @@ Notes: - Description: Identification of authority requesting target collection<br/>Postion: 1<br/>shortName: planReqId<br/><br/> + Description: manner of sampling geometry the planner expects for collection of the objective data<br/>Postion: 2<br/>shortName: planType<br/> @@ -226,7 +226,7 @@ - Public MI_GeometryTypeCode
  type + Public CI_Citation
  citation @@ -252,7 +252,7 @@ Range: - Range:0 to 1 + Transient: @@ -275,7 +275,7 @@ Notes: - Description: manner of sampling geometry the planner expects for collection of the objective data<br/>Postion: 2<br/>shortName: planType<br/> + Description: Identification of authority requesting target collection<br/>Postion: 1<br/>shortName: planReqId<br/><br/> diff --git a/approved/html/EARoot/EA1/EA3/EA15/EA5/EA3119.htm b/approved/html/EARoot/EA1/EA3/EA15/EA5/EA3119.htm index 5de346979..a3dde7800 100644 --- a/approved/html/EARoot/EA1/EA3/EA15/EA5/EA3119.htm +++ b/approved/html/EARoot/EA1/EA3/EA15/EA5/EA3119.htm @@ -168,7 +168,7 @@ - Public CharacterString
  description + Public MD_Identifier
  identifier @@ -217,7 +217,7 @@ Notes: - Description: Narrative description of the platform supporting the instrument<br/>FGDC: Platform_Description<br/>Position: 2<br/>shortName: pltfrmDesc<br/> + Description: Unique identification of the platform<br/>shortName: pltId<br/><br/> @@ -226,7 +226,7 @@ - Public MD_Identifier
  identifier + Public CharacterString
  description @@ -275,7 +275,7 @@ Notes: - Description: Unique identification of the platform<br/>shortName: pltId<br/><br/> + Description: Narrative description of the platform supporting the instrument<br/>FGDC: Platform_Description<br/>Position: 2<br/>shortName: pltfrmDesc<br/> diff --git a/approved/html/EARoot/EA1/EA3/EA15/EA5/EA3120.htm b/approved/html/EARoot/EA1/EA3/EA15/EA5/EA3120.htm index 37e47ee22..4ec96e0ce 100644 --- a/approved/html/EARoot/EA1/EA3/EA15/EA5/EA3120.htm +++ b/approved/html/EARoot/EA1/EA3/EA15/EA5/EA3120.htm @@ -109,7 +109,7 @@ - Public GM_Object
  extent + Public MD_Identifier
  identifier @@ -135,7 +135,7 @@ Range: - Range:0 to 1 + Transient: @@ -158,7 +158,7 @@ Notes: - Description: Area covered by the pass<br/>shortName: passExt<br/> + Description: unique name of the pass<br/>shortName: passId<br/> @@ -167,7 +167,7 @@ - Public MD_Identifier
  identifier + Public GM_Object
  extent @@ -193,7 +193,7 @@ Range: - + Range:0 to 1 Transient: @@ -216,7 +216,7 @@ Notes: - Description: unique name of the pass<br/>shortName: passId<br/> + Description: Area covered by the pass<br/>shortName: passExt<br/> diff --git a/approved/html/EARoot/EA1/EA3/EA15/EA5/EA3121.htm b/approved/html/EARoot/EA1/EA3/EA15/EA5/EA3121.htm index 2ef2492f2..6f1640db6 100644 --- a/approved/html/EARoot/EA1/EA3/EA15/EA5/EA3121.htm +++ b/approved/html/EARoot/EA1/EA3/EA15/EA5/EA3121.htm @@ -224,7 +224,7 @@ - Public <undefined>
  lowImportance + Public <undefined>
  mediumImportance @@ -273,7 +273,7 @@ Notes: - Description: to be completed when resources are available<br/>Code: 004<br/> + Description: normal operation priority<br/>Code: 003<br/> @@ -282,7 +282,7 @@ - Public <undefined>
  mediumImportance + Public <undefined>
  lowImportance @@ -331,7 +331,7 @@ Notes: - Description: normal operation priority<br/>Code: 003<br/> + Description: to be completed when resources are available<br/>Code: 004<br/> diff --git a/approved/html/EARoot/EA1/EA3/EA15/EA5/EA3122.htm b/approved/html/EARoot/EA1/EA3/EA15/EA5/EA3122.htm index 967ded9b4..c5b44d3d2 100644 --- a/approved/html/EARoot/EA1/EA3/EA15/EA5/EA3122.htm +++ b/approved/html/EARoot/EA1/EA3/EA15/EA5/EA3122.htm @@ -108,7 +108,7 @@ - Public DateTime
  latestAcceptableDate + Public DateTime
  requestedDateOfCollection @@ -157,7 +157,7 @@ Notes: - Description: latest date and time collection must be completed<br/>shortName: latestDate<br/> + Description: preferred date and time of collection<br/>shortName: collectDate<br/> @@ -166,7 +166,7 @@ - Public DateTime
  requestedDateOfCollection + Public DateTime
  latestAcceptableDate @@ -215,7 +215,7 @@ Notes: - Description: preferred date and time of collection<br/>shortName: collectDate<br/> + Description: latest date and time collection must be completed<br/>shortName: latestDate<br/> diff --git a/approved/html/EARoot/EA1/EA3/EA15/EA5/EA3123.htm b/approved/html/EARoot/EA1/EA3/EA15/EA5/EA3123.htm index b7f11d999..584d67f60 100644 --- a/approved/html/EARoot/EA1/EA3/EA15/EA5/EA3123.htm +++ b/approved/html/EARoot/EA1/EA3/EA15/EA5/EA3123.htm @@ -168,7 +168,7 @@ - Public DateTime
  expiryDate + Public MD_Identifier
  identifier @@ -217,7 +217,7 @@ Notes: - Description: date and time after which collection is no longer valid<br/>shortName: reqExpire<br/> + Description: unique name, or code, for the requirement<br/>shortName: reqId<br/> @@ -226,7 +226,7 @@ - Public MD_Identifier
  identifier + Public CI_ResponsibleParty
  requestor @@ -275,7 +275,7 @@ Notes: - Description: unique name, or code, for the requirement<br/>shortName: reqId<br/> + Description: origin of requirement<br/>shortName: requestor<br/> @@ -284,7 +284,7 @@ - Public MI_PriorityCode
  priority + Public CI_ResponsibleParty
  recipient @@ -333,7 +333,7 @@ Notes: - Description: relative ordered importance, or urgency, of the requirement<br/>shortName: reqPri<br/> + Description: person(s), or body(ies), to recieve results of requirement<br/>shortName: recipient<br/> @@ -342,7 +342,7 @@ - Public CI_ResponsibleParty
  recipient + Public MI_PriorityCode
  priority @@ -391,7 +391,7 @@ Notes: - Description: person(s), or body(ies), to recieve results of requirement<br/>shortName: recipient<br/> + Description: relative ordered importance, or urgency, of the requirement<br/>shortName: reqPri<br/> @@ -458,7 +458,7 @@ - Public CI_ResponsibleParty
  requestor + Public DateTime
  expiryDate @@ -507,7 +507,7 @@ Notes: - Description: origin of requirement<br/>shortName: requestor<br/> + Description: date and time after which collection is no longer valid<br/>shortName: reqExpire<br/> diff --git a/approved/html/EARoot/EA1/EA3/EA15/EA5/EA3125.htm b/approved/html/EARoot/EA1/EA3/EA15/EA5/EA3125.htm index ac6ecb05e..cb6229525 100644 --- a/approved/html/EARoot/EA1/EA3/EA15/EA5/EA3125.htm +++ b/approved/html/EARoot/EA1/EA3/EA15/EA5/EA3125.htm @@ -108,7 +108,7 @@ - Public <undefined>
  end + Public <undefined>
  start @@ -157,7 +157,7 @@ Notes: - Description: End of a collection<br/>Code: 002<br/> + Description: Beginning of a collection<br/>Code: 001<br/> @@ -166,7 +166,7 @@ - Public <undefined>
  instantaneous + Public <undefined>
  end @@ -215,7 +215,7 @@ Notes: - Description: Collection without a significant duration<br/>Code: 003<br/> + Description: End of a collection<br/>Code: 002<br/> @@ -224,7 +224,7 @@ - Public <undefined>
  start + Public <undefined>
  instantaneous @@ -273,7 +273,7 @@ Notes: - Description: Beginning of a collection<br/>Code: 001<br/> + Description: Collection without a significant duration<br/>Code: 003<br/> diff --git a/approved/html/EARoot/EA1/EA3/EA16/EA1/EA3155.png b/approved/html/EARoot/EA1/EA3/EA16/EA1/EA3155.png index 09e9b9fe4..076124e5a 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA16/EA1/EA3155.png and b/approved/html/EARoot/EA1/EA3/EA16/EA1/EA3155.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA16/EA1/EA3165.png b/approved/html/EARoot/EA1/EA3/EA16/EA1/EA3165.png index d8fc95942..86e950683 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA16/EA1/EA3165.png and b/approved/html/EARoot/EA1/EA3/EA16/EA1/EA3165.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA16/EA1/EA3189.png b/approved/html/EARoot/EA1/EA3/EA16/EA1/EA3189.png index 95e5b388e..8a9dd86ba 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA16/EA1/EA3189.png and b/approved/html/EARoot/EA1/EA3/EA16/EA1/EA3189.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA16/EA1/EA3195.htm b/approved/html/EARoot/EA1/EA3/EA16/EA1/EA3195.htm index 81db56ffc..8e3ddb022 100644 --- a/approved/html/EARoot/EA1/EA3/EA16/EA1/EA3195.htm +++ b/approved/html/EARoot/EA1/EA3/EA16/EA1/EA3195.htm @@ -108,7 +108,7 @@ - Public Boolean
  inheritance + Public CharacterString
  schemaName @@ -156,7 +156,7 @@ - Public CharacterString
  schemaName + Public substAlternative
  substitution @@ -204,7 +204,7 @@ - Public substAlternative
  substitution + Public Boolean
  inheritance diff --git a/approved/html/EARoot/EA1/EA3/EA16/EA2/EA3213.png b/approved/html/EARoot/EA1/EA3/EA16/EA2/EA3213.png index 18b20a521..d4eafc6b4 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA16/EA2/EA3213.png and b/approved/html/EARoot/EA1/EA3/EA16/EA2/EA3213.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA16/EA2/EA3215.png b/approved/html/EARoot/EA1/EA3/EA16/EA2/EA3215.png index babf568f0..d86d217c7 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA16/EA2/EA3215.png and b/approved/html/EARoot/EA1/EA3/EA16/EA2/EA3215.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA16/EA2/EA3220.htm b/approved/html/EARoot/EA1/EA3/EA16/EA2/EA3220.htm index 9676e3d20..ef7d43958 100644 --- a/approved/html/EARoot/EA1/EA3/EA16/EA2/EA3220.htm +++ b/approved/html/EARoot/EA1/EA3/EA16/EA2/EA3220.htm @@ -109,7 +109,7 @@ - Public CI_Citation
  applicationSchemaCitation + Public CI_Citation
  datasetCitation @@ -135,7 +135,7 @@ Range: - Range:0 to 1 + Transient: @@ -157,7 +157,7 @@ - Public CI_Citation
  configFileCitation + Public CI_Citation
  metadataCitation @@ -205,7 +205,7 @@ - Public CI_Citation
  datasetCitation + Public CI_Citation
  applicationSchemaCitation @@ -231,7 +231,7 @@ Range: - + Range:0 to 1 Transient: @@ -253,7 +253,7 @@ - Public CI_Citation
  metadataCitation + Public CI_Citation
  configFileCitation diff --git a/approved/html/EARoot/EA1/EA3/EA16/EA3/EA3222.png b/approved/html/EARoot/EA1/EA3/EA16/EA3/EA3222.png index 1dc316e7b..0389ff460 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA16/EA3/EA3222.png and b/approved/html/EARoot/EA1/EA3/EA16/EA3/EA3222.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA16/EA3/EA3224.png b/approved/html/EARoot/EA1/EA3/EA16/EA3/EA3224.png index a766d9a2b..84d7e40f8 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA16/EA3/EA3224.png and b/approved/html/EARoot/EA1/EA3/EA16/EA3/EA3224.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA16/EA3/EA3226.png b/approved/html/EARoot/EA1/EA3/EA16/EA3/EA3226.png index e38f62c13..3a3cf6a05 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA16/EA3/EA3226.png and b/approved/html/EARoot/EA1/EA3/EA16/EA3/EA3226.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA16/EA3/EA3230.png b/approved/html/EARoot/EA1/EA3/EA16/EA3/EA3230.png index b95eed04d..8e6a5e197 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA16/EA3/EA3230.png and b/approved/html/EARoot/EA1/EA3/EA16/EA3/EA3230.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA16/EA3/EA3232.png b/approved/html/EARoot/EA1/EA3/EA16/EA3/EA3232.png index 90f895b1c..138350053 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA16/EA3/EA3232.png and b/approved/html/EARoot/EA1/EA3/EA16/EA3/EA3232.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA16/EA3/EA3241.htm b/approved/html/EARoot/EA1/EA3/EA16/EA3/EA3241.htm index 12f40de50..eaea568e2 100644 --- a/approved/html/EARoot/EA1/EA3/EA16/EA3/EA3241.htm +++ b/approved/html/EARoot/EA1/EA3/EA16/EA3/EA3241.htm @@ -108,7 +108,7 @@ - Public CharacterString
  exchangeMode + Public CharacterString
  version @@ -122,7 +122,7 @@ Initial: - + "1.0" Stereotype: @@ -134,7 +134,7 @@ Range: - Range:0 to 1 + Transient: @@ -204,7 +204,7 @@ - Public CharacterString
  version + Public CharacterString
  exchangeMode @@ -218,7 +218,7 @@ Initial: - "1.0" + Stereotype: @@ -230,7 +230,7 @@ Range: - + Range:0 to 1 Transient: diff --git a/approved/html/EARoot/EA1/EA3/EA16/EA4/EA3247.png b/approved/html/EARoot/EA1/EA3/EA16/EA4/EA3247.png index e1f250be5..300fea29b 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA16/EA4/EA3247.png and b/approved/html/EARoot/EA1/EA3/EA16/EA4/EA3247.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA16/EA4/EA3251.png b/approved/html/EARoot/EA1/EA3/EA16/EA4/EA3251.png index d8b2f23aa..f197697dc 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA16/EA4/EA3251.png and b/approved/html/EARoot/EA1/EA3/EA16/EA4/EA3251.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA16/EA4/EA3253.png b/approved/html/EARoot/EA1/EA3/EA16/EA4/EA3253.png index 3faf0f3a0..00d763439 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA16/EA4/EA3253.png and b/approved/html/EARoot/EA1/EA3/EA16/EA4/EA3253.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA16/EA4/EA3259.png b/approved/html/EARoot/EA1/EA3/EA16/EA4/EA3259.png index 971f6dc1f..d4e6723ce 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA16/EA4/EA3259.png and b/approved/html/EARoot/EA1/EA3/EA16/EA4/EA3259.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA16/EA4/EA3261.png b/approved/html/EARoot/EA1/EA3/EA16/EA4/EA3261.png index 53116329a..43ce3c3d0 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA16/EA4/EA3261.png and b/approved/html/EARoot/EA1/EA3/EA16/EA4/EA3261.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA16/EA4/EA3263.png b/approved/html/EARoot/EA1/EA3/EA16/EA4/EA3263.png index 78de728c5..a9a32e853 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA16/EA4/EA3263.png and b/approved/html/EARoot/EA1/EA3/EA16/EA4/EA3263.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA16/EA4/EA3269.png b/approved/html/EARoot/EA1/EA3/EA16/EA4/EA3269.png index efce73bda..17909404e 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA16/EA4/EA3269.png and b/approved/html/EARoot/EA1/EA3/EA16/EA4/EA3269.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA16/EA4/EA3271.htm b/approved/html/EARoot/EA1/EA3/EA16/EA4/EA3271.htm index 781fc41c5..461f66e0b 100644 --- a/approved/html/EARoot/EA1/EA3/EA16/EA4/EA3271.htm +++ b/approved/html/EARoot/EA1/EA3/EA16/EA4/EA3271.htm @@ -108,7 +108,7 @@ - Public DateTime
  extracted + Public CharacterString
  name @@ -156,7 +156,7 @@ - Public EM_CodeListValueFormat
  format + Public URI
  source @@ -204,7 +204,7 @@ - Public CharacterString
  name + Public DateTime
  extracted @@ -252,7 +252,7 @@ - Public URI
  source + Public EM_CodeListValueFormat
  format diff --git a/approved/html/EARoot/EA1/EA3/EA16/EA4/EA3272.htm b/approved/html/EARoot/EA1/EA3/EA16/EA4/EA3272.htm index 6fcd3d487..6fe733783 100644 --- a/approved/html/EARoot/EA1/EA3/EA16/EA4/EA3272.htm +++ b/approved/html/EARoot/EA1/EA3/EA16/EA4/EA3272.htm @@ -107,7 +107,7 @@ - Public <undefined>
  both + Public <undefined>
  code @@ -155,7 +155,7 @@ - Public <undefined>
  code + Public <undefined>
  value @@ -251,7 +251,7 @@ - Public <undefined>
  value + Public <undefined>
  both diff --git a/approved/html/EARoot/EA1/EA3/EA16/EA4/EA3276.htm b/approved/html/EARoot/EA1/EA3/EA16/EA4/EA3276.htm index 476ae7677..f2a616b1f 100644 --- a/approved/html/EARoot/EA1/EA3/EA16/EA4/EA3276.htm +++ b/approved/html/EARoot/EA1/EA3/EA16/EA4/EA3276.htm @@ -110,7 +110,7 @@ - Public CharacterString
  class + Public CharacterString
  id @@ -158,7 +158,7 @@ - Public CharacterString
  id + Public CharacterString
  uuid @@ -184,7 +184,7 @@ Range: - + Range:0 to 1 Transient: @@ -206,7 +206,7 @@ - Public CharacterString
  uuid + Public CharacterString
  class @@ -232,7 +232,7 @@ Range: - Range:0 to 1 + Transient: diff --git a/approved/html/EARoot/EA1/EA3/EA16/EA4/EA3277.htm b/approved/html/EARoot/EA1/EA3/EA16/EA4/EA3277.htm index 43706a3f2..e87c5c34a 100644 --- a/approved/html/EARoot/EA1/EA3/EA16/EA4/EA3277.htm +++ b/approved/html/EARoot/EA1/EA3/EA16/EA4/EA3277.htm @@ -156,7 +156,7 @@ - Public CharacterString
  uri_ref + Public CharacterString
  uuid_ref @@ -204,7 +204,7 @@ - Public CharacterString
  uuid_ref + Public CharacterString
  uri_ref diff --git a/approved/html/EARoot/EA1/EA3/EA17/EA1/EA3304.png b/approved/html/EARoot/EA1/EA3/EA17/EA1/EA3304.png index 900dd4fda..c60f180aa 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA17/EA1/EA3304.png and b/approved/html/EARoot/EA1/EA3/EA17/EA1/EA3304.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA17/EA1/EA3306.png b/approved/html/EARoot/EA1/EA3/EA17/EA1/EA3306.png index 2fe605828..db307c94f 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA17/EA1/EA3306.png and b/approved/html/EARoot/EA1/EA3/EA17/EA1/EA3306.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA17/EA1/EA3308.png b/approved/html/EARoot/EA1/EA3/EA17/EA1/EA3308.png index 9a23c7315..21a40623a 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA17/EA1/EA3308.png and b/approved/html/EARoot/EA1/EA3/EA17/EA1/EA3308.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA17/EA1/EA3310.png b/approved/html/EARoot/EA1/EA3/EA17/EA1/EA3310.png index 167511139..f00b1ed82 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA17/EA1/EA3310.png and b/approved/html/EARoot/EA1/EA3/EA17/EA1/EA3310.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA17/EA1/EA3312.png b/approved/html/EARoot/EA1/EA3/EA17/EA1/EA3312.png index b6ed7cd81..1be4b2ea7 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA17/EA1/EA3312.png and b/approved/html/EARoot/EA1/EA3/EA17/EA1/EA3312.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA17/EA1/EA3314.png b/approved/html/EARoot/EA1/EA3/EA17/EA1/EA3314.png index d1b2b13b8..ce23250a6 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA17/EA1/EA3314.png and b/approved/html/EARoot/EA1/EA3/EA17/EA1/EA3314.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA17/EA1/EA3317.htm b/approved/html/EARoot/EA1/EA3/EA17/EA1/EA3317.htm index d2f1a7633..d901384a5 100644 --- a/approved/html/EARoot/EA1/EA3/EA17/EA1/EA3317.htm +++ b/approved/html/EARoot/EA1/EA3/EA17/EA1/EA3317.htm @@ -109,7 +109,7 @@ - Public CharacterString
  defaultValue + Public CharacterString
  name @@ -135,7 +135,7 @@ Range: - Range:0 to 1 + Transient: @@ -205,7 +205,7 @@ - Public CharacterString
  name + Public CharacterString
  type @@ -253,7 +253,7 @@ - Public CharacterString
  type + Public CharacterString
  defaultValue @@ -279,7 +279,7 @@ Range: - + Range:0 to 1 Transient: diff --git a/approved/html/EARoot/EA1/EA3/EA17/EA1/EA3318.htm b/approved/html/EARoot/EA1/EA3/EA17/EA1/EA3318.htm index 9503a45fb..cc40e277e 100644 --- a/approved/html/EARoot/EA1/EA3/EA17/EA1/EA3318.htm +++ b/approved/html/EARoot/EA1/EA3/EA17/EA1/EA3318.htm @@ -109,7 +109,7 @@ - Public CharacterString
  description + Public CharacterString
  functionName @@ -157,7 +157,7 @@ - Public CharacterString
  functionName + Public CharacterString
  returnType @@ -205,7 +205,7 @@ - Public CharacterString
  returnType + Public CharacterString
  description diff --git a/approved/html/EARoot/EA1/EA3/EA17/EA1/EA3319.htm b/approved/html/EARoot/EA1/EA3/EA17/EA1/EA3319.htm index 81a504f0b..76ed8aecb 100644 --- a/approved/html/EARoot/EA1/EA3/EA17/EA1/EA3319.htm +++ b/approved/html/EARoot/EA1/EA3/EA17/EA1/EA3319.htm @@ -109,7 +109,7 @@ - Public CharacterString
  description + Public Integer
  priority @@ -135,7 +135,7 @@ Range: - + Range:0 to 1 Transient: @@ -157,7 +157,7 @@ - Public Integer
  priority + Public CharacterString
  description @@ -183,7 +183,7 @@ Range: - Range:0 to 1 + Transient: diff --git a/approved/html/EARoot/EA1/EA3/EA17/EA1/EA3320.htm b/approved/html/EARoot/EA1/EA3/EA17/EA1/EA3320.htm index c9c9208b0..145602d1f 100644 --- a/approved/html/EARoot/EA1/EA3/EA17/EA1/EA3320.htm +++ b/approved/html/EARoot/EA1/EA3/EA17/EA1/EA3320.htm @@ -109,7 +109,7 @@ - Public CharacterString
  actionLanguage + Public CharacterString
  queryLanguage @@ -157,7 +157,7 @@ - Public CI_OnlineResource
  defaultPortrayalSpec + Public CharacterString
  actionLanguage @@ -205,7 +205,7 @@ - Public CharacterString
  queryLanguage + Public CI_OnlineResource
  defaultPortrayalSpec diff --git a/approved/html/EARoot/EA1/EA3/EA17/EA1/EA3321.htm b/approved/html/EARoot/EA1/EA3/EA17/EA1/EA3321.htm index c2b76bda9..217a44908 100644 --- a/approved/html/EARoot/EA1/EA3/EA17/EA1/EA3321.htm +++ b/approved/html/EARoot/EA1/EA3/EA17/EA1/EA3321.htm @@ -109,7 +109,7 @@ - Public CharacterString
  description + Public CharacterString
  ruleName @@ -205,7 +205,7 @@ - Public CharacterString
  queryStatment + Public CharacterString
  description @@ -253,7 +253,7 @@ - Public CharacterString
  ruleName + Public CharacterString
  queryStatment diff --git a/approved/html/EARoot/EA1/EA3/EA17/EA2/EA3327.png b/approved/html/EARoot/EA1/EA3/EA17/EA2/EA3327.png index 6cf0f84db..853ab50b2 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA17/EA2/EA3327.png and b/approved/html/EARoot/EA1/EA3/EA17/EA2/EA3327.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA17/EA3/EA3331.png b/approved/html/EARoot/EA1/EA3/EA17/EA3/EA3331.png index c893129a9..e3b1115f9 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA17/EA3/EA3331.png and b/approved/html/EARoot/EA1/EA3/EA17/EA3/EA3331.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA17/EA3/EA3333.png b/approved/html/EARoot/EA1/EA3/EA17/EA3/EA3333.png index f17b05f2e..8bbf8455e 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA17/EA3/EA3333.png and b/approved/html/EARoot/EA1/EA3/EA17/EA3/EA3333.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA17/EA3/EA3335.png b/approved/html/EARoot/EA1/EA3/EA17/EA3/EA3335.png index 35f2ccd87..e190b3578 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA17/EA3/EA3335.png and b/approved/html/EARoot/EA1/EA3/EA17/EA3/EA3335.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA17/EA3/EA3337.png b/approved/html/EARoot/EA1/EA3/EA17/EA3/EA3337.png index f99f1ab05..bda273c0b 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA17/EA3/EA3337.png and b/approved/html/EARoot/EA1/EA3/EA17/EA3/EA3337.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA17/EA3/EA3339.png b/approved/html/EARoot/EA1/EA3/EA17/EA3/EA3339.png index 6cae2b489..dacbd48b2 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA17/EA3/EA3339.png and b/approved/html/EARoot/EA1/EA3/EA17/EA3/EA3339.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA17/EA3/EA3344.htm b/approved/html/EARoot/EA1/EA3/EA17/EA3/EA3344.htm index 41fc78027..2e3f2d16a 100644 --- a/approved/html/EARoot/EA1/EA3/EA17/EA3/EA3344.htm +++ b/approved/html/EARoot/EA1/EA3/EA17/EA3/EA3344.htm @@ -109,7 +109,7 @@ - Public CharacterString
  description + Public CharacterString
  label @@ -157,7 +157,7 @@ - Public CharacterString
  label + Public CharacterString
  description diff --git a/approved/html/EARoot/EA1/EA3/EA17/EA3/EA3345.htm b/approved/html/EARoot/EA1/EA3/EA17/EA3/EA3345.htm index df292220d..63599f3a1 100644 --- a/approved/html/EARoot/EA1/EA3/EA17/EA3/EA3345.htm +++ b/approved/html/EARoot/EA1/EA3/EA17/EA3/EA3345.htm @@ -109,7 +109,7 @@ - Public CharacterString
  description + Public CharacterString
  name @@ -157,7 +157,7 @@ - Public CharacterString
  name + Public CharacterString
  description diff --git a/approved/html/EARoot/EA1/EA3/EA17/EA3294.png b/approved/html/EARoot/EA1/EA3/EA17/EA3294.png index 63117ddec..54f376e6a 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA17/EA3294.png and b/approved/html/EARoot/EA1/EA3/EA17/EA3294.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA18/EA1/EA1/EA3396.png b/approved/html/EARoot/EA1/EA3/EA18/EA1/EA1/EA3396.png index 5659e53d7..344f91887 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA18/EA1/EA1/EA3396.png and b/approved/html/EARoot/EA1/EA3/EA18/EA1/EA1/EA3396.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA18/EA1/EA1/EA3398.png b/approved/html/EARoot/EA1/EA3/EA18/EA1/EA1/EA3398.png index 1cef65974..b47e27fb6 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA18/EA1/EA1/EA3398.png and b/approved/html/EARoot/EA1/EA3/EA18/EA1/EA1/EA3398.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA18/EA1/EA1/EA3404.png b/approved/html/EARoot/EA1/EA3/EA18/EA1/EA1/EA3404.png index 05182fa58..342294902 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA18/EA1/EA1/EA3404.png and b/approved/html/EARoot/EA1/EA3/EA18/EA1/EA1/EA3404.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA18/EA1/EA1/EA3408.png b/approved/html/EARoot/EA1/EA3/EA18/EA1/EA1/EA3408.png index 16d864c00..ff1de5bc8 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA18/EA1/EA1/EA3408.png and b/approved/html/EARoot/EA1/EA3/EA18/EA1/EA1/EA3408.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA18/EA1/EA1/EA3410.png b/approved/html/EARoot/EA1/EA3/EA18/EA1/EA1/EA3410.png index 78f309ae3..ded7d185c 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA18/EA1/EA1/EA3410.png and b/approved/html/EARoot/EA1/EA3/EA18/EA1/EA1/EA3410.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA18/EA1/EA1/EA3412.png b/approved/html/EARoot/EA1/EA3/EA18/EA1/EA1/EA3412.png index 0494ac81d..3dfc0daaa 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA18/EA1/EA1/EA3412.png and b/approved/html/EARoot/EA1/EA3/EA18/EA1/EA1/EA3412.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA18/EA1/EA1/EA3416.png b/approved/html/EARoot/EA1/EA3/EA18/EA1/EA1/EA3416.png index 0716e4aa5..dcb8a416b 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA18/EA1/EA1/EA3416.png and b/approved/html/EARoot/EA1/EA3/EA18/EA1/EA1/EA3416.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA18/EA1/EA1/EA3418.png b/approved/html/EARoot/EA1/EA3/EA18/EA1/EA1/EA3418.png index 79bfd5101..14e7626b4 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA18/EA1/EA1/EA3418.png and b/approved/html/EARoot/EA1/EA3/EA18/EA1/EA1/EA3418.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA18/EA1/EA1/EA3422.htm b/approved/html/EARoot/EA1/EA3/EA18/EA1/EA1/EA3422.htm index 8525a117f..2bd82c68c 100644 --- a/approved/html/EARoot/EA1/EA3/EA18/EA1/EA1/EA3422.htm +++ b/approved/html/EARoot/EA1/EA3/EA18/EA1/EA1/EA3422.htm @@ -106,7 +106,7 @@ - Public
  all + Public
  average @@ -154,7 +154,7 @@ - Public
  average + Public
  low @@ -202,7 +202,7 @@ - Public
  end + Public
  high @@ -250,7 +250,7 @@ - Public
  high + Public
  all @@ -298,7 +298,7 @@ - Public
  low + Public
  start @@ -346,7 +346,7 @@ - Public
  start + Public
  end diff --git a/approved/html/EARoot/EA1/EA3/EA18/EA1/EA1/EA3423.htm b/approved/html/EARoot/EA1/EA3/EA18/EA1/EA1/EA3423.htm index 2a3a8bfc4..1e00a10d9 100644 --- a/approved/html/EARoot/EA1/EA3/EA18/EA1/EA1/EA3423.htm +++ b/approved/html/EARoot/EA1/EA3/EA18/EA1/EA1/EA3423.htm @@ -110,7 +110,7 @@ - Public Record
  interpolationParametersType + Public CV_InterpolationMethod
  interpolationType @@ -136,7 +136,7 @@ Range: - Range:0 to 1 + Transient: @@ -158,7 +158,7 @@ - Public CV_InterpolationMethod
  interpolationType + Public Record
  interpolationParametersType @@ -184,7 +184,7 @@ Range: - + Range:0 to 1 Transient: diff --git a/approved/html/EARoot/EA1/EA3/EA18/EA1/EA1/EA3424.htm b/approved/html/EARoot/EA1/EA3/EA18/EA1/EA1/EA3424.htm index ca4b61111..f2aa66782 100644 --- a/approved/html/EARoot/EA1/EA3/EA18/EA1/EA1/EA3424.htm +++ b/approved/html/EARoot/EA1/EA3/EA18/EA1/EA1/EA3424.htm @@ -112,7 +112,7 @@ - Public CV_CommonPointRule
  commonPointRule + Public EX_Extent
  domainExtent @@ -155,12 +155,22 @@ -   +
+ + + + +
+ Notes: + + The attribute domainExtent shall contain the extent of the spatiotemporal domain of the coverage.  The data type EX_Extent, is defined in ISO 19103.  Extents may be specified in both space and time.  <br/> +
+ - Public EX_Extent
  domainExtent + Public RecordType
  rangeType @@ -203,22 +213,12 @@ -
- - - - -
- Notes: - - The attribute domainExtent shall contain the extent of the spatiotemporal domain of the coverage.  The data type EX_Extent, is defined in ISO 19103.  Extents may be specified in both space and time.  <br/> -
- +   - Public RecordType
  rangeType + Public CV_CommonPointRule
  commonPointRule diff --git a/approved/html/EARoot/EA1/EA3/EA18/EA1/EA1/EA3427.htm b/approved/html/EARoot/EA1/EA3/EA18/EA1/EA1/EA3427.htm index 5dd40a145..6b678616c 100644 --- a/approved/html/EARoot/EA1/EA3/EA18/EA1/EA1/EA3427.htm +++ b/approved/html/EARoot/EA1/EA3/EA18/EA1/EA1/EA3427.htm @@ -108,7 +108,7 @@ - Public <undefined>
  barycentric + Public <undefined>
  nearestneighbor @@ -156,7 +156,7 @@ - Public <undefined>
  bicubic + Public <undefined>
  linear @@ -204,7 +204,7 @@ - Public <undefined>
  bilinear + Public <undefined>
  quadratic @@ -252,7 +252,7 @@ - Public <undefined>
  biquadratic + Public <undefined>
  cubic @@ -300,7 +300,7 @@ - Public <undefined>
  cubic + Public <undefined>
  bilinear @@ -348,7 +348,7 @@ - Public <undefined>
  linear + Public <undefined>
  biquadratic @@ -396,7 +396,7 @@ - Public <undefined>
  lostarea + Public <undefined>
  bicubic @@ -444,7 +444,7 @@ - Public <undefined>
  nearestneighbor + Public <undefined>
  lostarea @@ -492,7 +492,7 @@ - Public <undefined>
  quadratic + Public <undefined>
  barycentric diff --git a/approved/html/EARoot/EA1/EA3/EA18/EA1/EA2/EA3432.png b/approved/html/EARoot/EA1/EA3/EA18/EA1/EA2/EA3432.png index 274142e46..b7d8a2330 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA18/EA1/EA2/EA3432.png and b/approved/html/EARoot/EA1/EA3/EA18/EA1/EA2/EA3432.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA18/EA1/EA2/EA3436.png b/approved/html/EARoot/EA1/EA3/EA18/EA1/EA2/EA3436.png index 5b3525fb1..85a96080a 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA18/EA1/EA2/EA3436.png and b/approved/html/EARoot/EA1/EA3/EA18/EA1/EA2/EA3436.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA18/EA1/EA3/EA3477.png b/approved/html/EARoot/EA1/EA3/EA18/EA1/EA3/EA3477.png index 969dc9f03..0a243f50d 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA18/EA1/EA3/EA3477.png and b/approved/html/EARoot/EA1/EA3/EA18/EA1/EA3/EA3477.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA18/EA1/EA4/EA3486.png b/approved/html/EARoot/EA1/EA3/EA18/EA1/EA4/EA3486.png index 4c12d3409..bf486a8ec 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA18/EA1/EA4/EA3486.png and b/approved/html/EARoot/EA1/EA3/EA18/EA1/EA4/EA3486.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA18/EA1/EA4/EA3490.png b/approved/html/EARoot/EA1/EA3/EA18/EA1/EA4/EA3490.png index 6501ebf78..c4fe2a4f2 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA18/EA1/EA4/EA3490.png and b/approved/html/EARoot/EA1/EA3/EA18/EA1/EA4/EA3490.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA18/EA1/EA4/EA3492.png b/approved/html/EARoot/EA1/EA3/EA18/EA1/EA4/EA3492.png index 04de89179..5b7da7e25 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA18/EA1/EA4/EA3492.png and b/approved/html/EARoot/EA1/EA3/EA18/EA1/EA4/EA3492.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA18/EA1/EA4/EA3498.png b/approved/html/EARoot/EA1/EA3/EA18/EA1/EA4/EA3498.png index 39ee843ed..eeb014e2d 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA18/EA1/EA4/EA3498.png and b/approved/html/EARoot/EA1/EA3/EA18/EA1/EA4/EA3498.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA18/EA1/EA4/EA3500.png b/approved/html/EARoot/EA1/EA3/EA18/EA1/EA4/EA3500.png index d35070b66..20e48189f 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA18/EA1/EA4/EA3500.png and b/approved/html/EARoot/EA1/EA3/EA18/EA1/EA4/EA3500.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA18/EA1/EA4/EA3504.png b/approved/html/EARoot/EA1/EA3/EA18/EA1/EA4/EA3504.png index bc966179b..0ccd80c10 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA18/EA1/EA4/EA3504.png and b/approved/html/EARoot/EA1/EA3/EA18/EA1/EA4/EA3504.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA18/EA1/EA4/EA3508.png b/approved/html/EARoot/EA1/EA3/EA18/EA1/EA4/EA3508.png index cd38c485b..b28feedb2 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA18/EA1/EA4/EA3508.png and b/approved/html/EARoot/EA1/EA3/EA18/EA1/EA4/EA3508.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA18/EA1/EA4/EA3510.png b/approved/html/EARoot/EA1/EA3/EA18/EA1/EA4/EA3510.png index 929f04287..83c912107 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA18/EA1/EA4/EA3510.png and b/approved/html/EARoot/EA1/EA3/EA18/EA1/EA4/EA3510.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA18/EA1/EA4/EA3512.png b/approved/html/EARoot/EA1/EA3/EA18/EA1/EA4/EA3512.png index c208ecc74..53c5c2530 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA18/EA1/EA4/EA3512.png and b/approved/html/EARoot/EA1/EA3/EA18/EA1/EA4/EA3512.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA18/EA1/EA4/EA3514.png b/approved/html/EARoot/EA1/EA3/EA18/EA1/EA4/EA3514.png index 6d173edf0..821856228 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA18/EA1/EA4/EA3514.png and b/approved/html/EARoot/EA1/EA3/EA18/EA1/EA4/EA3514.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA18/EA1/EA4/EA3516.png b/approved/html/EARoot/EA1/EA3/EA18/EA1/EA4/EA3516.png index 53c578915..12130e779 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA18/EA1/EA4/EA3516.png and b/approved/html/EARoot/EA1/EA3/EA18/EA1/EA4/EA3516.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA18/EA1/EA4/EA3518.png b/approved/html/EARoot/EA1/EA3/EA18/EA1/EA4/EA3518.png index 713768f4f..8d577df27 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA18/EA1/EA4/EA3518.png and b/approved/html/EARoot/EA1/EA3/EA18/EA1/EA4/EA3518.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA18/EA1/EA4/EA3520.png b/approved/html/EARoot/EA1/EA3/EA18/EA1/EA4/EA3520.png index 1ad4a84c8..564cd683f 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA18/EA1/EA4/EA3520.png and b/approved/html/EARoot/EA1/EA3/EA18/EA1/EA4/EA3520.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA18/EA1/EA4/EA3522.png b/approved/html/EARoot/EA1/EA3/EA18/EA1/EA4/EA3522.png index a7b3f2e28..311d3e692 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA18/EA1/EA4/EA3522.png and b/approved/html/EARoot/EA1/EA3/EA18/EA1/EA4/EA3522.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA18/EA1/EA4/EA3524.png b/approved/html/EARoot/EA1/EA3/EA18/EA1/EA4/EA3524.png index c6bc1a280..528c93634 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA18/EA1/EA4/EA3524.png and b/approved/html/EARoot/EA1/EA3/EA18/EA1/EA4/EA3524.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA18/EA1/EA4/EA3526.png b/approved/html/EARoot/EA1/EA3/EA18/EA1/EA4/EA3526.png index 3cd4fb4c7..745bc4c0e 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA18/EA1/EA4/EA3526.png and b/approved/html/EARoot/EA1/EA3/EA18/EA1/EA4/EA3526.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA18/EA1/EA4/EA3534.htm b/approved/html/EARoot/EA1/EA3/EA18/EA1/EA4/EA3534.htm index d196b066e..67baa5821 100644 --- a/approved/html/EARoot/EA1/EA3/EA18/EA1/EA4/EA3534.htm +++ b/approved/html/EARoot/EA1/EA3/EA18/EA1/EA4/EA3534.htm @@ -109,7 +109,7 @@ - Public Sequence<CharacterString>
  axisNames + Public Integer
  dimension @@ -157,7 +157,7 @@ - Public Integer
  dimension + Public Sequence<CharacterString>
  axisNames diff --git a/approved/html/EARoot/EA1/EA3/EA18/EA1/EA4/EA3537.htm b/approved/html/EARoot/EA1/EA3/EA18/EA1/EA4/EA3537.htm index f190e214e..de41ff030 100644 --- a/approved/html/EARoot/EA1/EA3/EA18/EA1/EA4/EA3537.htm +++ b/approved/html/EARoot/EA1/EA3/EA18/EA1/EA4/EA3537.htm @@ -107,7 +107,7 @@ - Public CV_GridCoordinate
  high + Public CV_GridCoordinate
  low @@ -155,7 +155,7 @@ - Public CV_GridCoordinate
  low + Public CV_GridCoordinate
  high diff --git a/approved/html/EARoot/EA1/EA3/EA18/EA1/EA4/EA3540.htm b/approved/html/EARoot/EA1/EA3/EA18/EA1/EA4/EA3540.htm index 9cc3a9a90..1f3486733 100644 --- a/approved/html/EARoot/EA1/EA3/EA18/EA1/EA4/EA3540.htm +++ b/approved/html/EARoot/EA1/EA3/EA18/EA1/EA4/EA3540.htm @@ -107,7 +107,7 @@ - Public CV_GridCoordinate
  high + Public CV_GridCoordinate
  low @@ -155,7 +155,7 @@ - Public CV_GridCoordinate
  low + Public CV_GridCoordinate
  high diff --git a/approved/html/EARoot/EA1/EA3/EA18/EA1/EA4/EA3542.htm b/approved/html/EARoot/EA1/EA3/EA18/EA1/EA4/EA3542.htm index 954531209..db17bc3ea 100644 --- a/approved/html/EARoot/EA1/EA3/EA18/EA1/EA4/EA3542.htm +++ b/approved/html/EARoot/EA1/EA3/EA18/EA1/EA4/EA3542.htm @@ -111,7 +111,7 @@ - Public CV_SequenceRule
  sequencingRule + Public Sequence<Record>
  values @@ -154,22 +154,12 @@ -
- - - - -
- Notes: - - Default is row major, other values will be from enumeration to be determined at a later date.<br/> -
- +   - Public CV_GridCoordinate
  startSequence + Public CV_SequenceRule
  sequencingRule @@ -212,12 +202,22 @@ -   +
+ + + + +
+ Notes: + + Default is row major, other values will be from enumeration to be determined at a later date.<br/> +
+ - Public Sequence<Record>
  values + Public CV_GridCoordinate
  startSequence diff --git a/approved/html/EARoot/EA1/EA3/EA18/EA1/EA4/EA3543.htm b/approved/html/EARoot/EA1/EA3/EA18/EA1/EA4/EA3543.htm index 96c13c873..d2648f257 100644 --- a/approved/html/EARoot/EA1/EA3/EA18/EA1/EA4/EA3543.htm +++ b/approved/html/EARoot/EA1/EA3/EA18/EA1/EA4/EA3543.htm @@ -109,7 +109,7 @@ - Public Sequence<Vector>
  offsetVectors + Public DirectPosition
  origin @@ -157,7 +157,7 @@ - Public DirectPosition
  origin + Public Sequence<Vector>
  offsetVectors diff --git a/approved/html/EARoot/EA1/EA3/EA18/EA1/EA4/EA3545.htm b/approved/html/EARoot/EA1/EA3/EA18/EA1/EA4/EA3545.htm index 0fcb520da..3a16d000a 100644 --- a/approved/html/EARoot/EA1/EA3/EA18/EA1/EA4/EA3545.htm +++ b/approved/html/EARoot/EA1/EA3/EA18/EA1/EA4/EA3545.htm @@ -107,7 +107,7 @@ - Public Sequence<CharacterString>
  scanDirection + Public CV_SequenceType
  type @@ -121,7 +121,7 @@ Initial: - + linear Stereotype: @@ -155,7 +155,7 @@ - Public CV_SequenceType
  type + Public Sequence<CharacterString>
  scanDirection @@ -169,7 +169,7 @@ Initial: - linear + Stereotype: diff --git a/approved/html/EARoot/EA1/EA3/EA18/EA1/EA4/EA3546.htm b/approved/html/EARoot/EA1/EA3/EA18/EA1/EA4/EA3546.htm index 918ae1a4d..5f35738fb 100644 --- a/approved/html/EARoot/EA1/EA3/EA18/EA1/EA4/EA3546.htm +++ b/approved/html/EARoot/EA1/EA3/EA18/EA1/EA4/EA3546.htm @@ -107,7 +107,7 @@ - Public <undefined>
  boustrophedonic + Public <undefined>
  linear @@ -155,7 +155,7 @@ - Public <undefined>
  CantorDiagonal + Public <undefined>
  boustrophedonic @@ -203,7 +203,7 @@ - Public <undefined>
  Hilbert + Public <undefined>
  CantorDiagonal @@ -251,7 +251,7 @@ - Public <undefined>
  linear + Public <undefined>
  spiral @@ -347,7 +347,7 @@ - Public <undefined>
  spiral + Public <undefined>
  Hilbert diff --git a/approved/html/EARoot/EA1/EA3/EA18/EA1/EA5/EA3548.png b/approved/html/EARoot/EA1/EA3/EA18/EA1/EA5/EA3548.png index e65631535..742aa9804 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA18/EA1/EA5/EA3548.png and b/approved/html/EARoot/EA1/EA3/EA18/EA1/EA5/EA3548.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA18/EA1/EA6/EA3561.png b/approved/html/EARoot/EA1/EA3/EA18/EA1/EA6/EA3561.png index 76a0f0dff..7d0644583 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA18/EA1/EA6/EA3561.png and b/approved/html/EARoot/EA1/EA3/EA18/EA1/EA6/EA3561.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA18/EA1/EA7/EA3571.png b/approved/html/EARoot/EA1/EA3/EA18/EA1/EA7/EA3571.png index 66f1b4ac1..e3b1f0ad8 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA18/EA1/EA7/EA3571.png and b/approved/html/EARoot/EA1/EA3/EA18/EA1/EA7/EA3571.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA18/EA1/EA7/EA3573.png b/approved/html/EARoot/EA1/EA3/EA18/EA1/EA7/EA3573.png index cd48e7af8..aa85d9396 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA18/EA1/EA7/EA3573.png and b/approved/html/EARoot/EA1/EA3/EA18/EA1/EA7/EA3573.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA18/EA1/EA7/EA3575.png b/approved/html/EARoot/EA1/EA3/EA18/EA1/EA7/EA3575.png index eff850232..fb71df72a 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA18/EA1/EA7/EA3575.png and b/approved/html/EARoot/EA1/EA3/EA18/EA1/EA7/EA3575.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA18/EA1/EA7/EA3577.png b/approved/html/EARoot/EA1/EA3/EA18/EA1/EA7/EA3577.png index 7e034b5f0..481cb7c15 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA18/EA1/EA7/EA3577.png and b/approved/html/EARoot/EA1/EA3/EA18/EA1/EA7/EA3577.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA18/EA1/EA7/EA3579.png b/approved/html/EARoot/EA1/EA3/EA18/EA1/EA7/EA3579.png index f06952787..1ce9fcad3 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA18/EA1/EA7/EA3579.png and b/approved/html/EARoot/EA1/EA3/EA18/EA1/EA7/EA3579.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA18/EA1/EA7/EA3581.htm b/approved/html/EARoot/EA1/EA3/EA18/EA1/EA7/EA3581.htm index 3c05d2819..21a9fe103 100644 --- a/approved/html/EARoot/EA1/EA3/EA18/EA1/EA7/EA3581.htm +++ b/approved/html/EARoot/EA1/EA3/EA18/EA1/EA7/EA3581.htm @@ -108,7 +108,7 @@ - Public <undefined>
  all + Public <undefined>
  average @@ -156,7 +156,7 @@ - Public <undefined>
  average + Public <undefined>
  low @@ -204,7 +204,7 @@ - Public <undefined>
  end + Public <undefined>
  high @@ -252,7 +252,7 @@ - Public <undefined>
  high + Public <undefined>
  all @@ -300,7 +300,7 @@ - Public <undefined>
  low + Public <undefined>
  start @@ -348,7 +348,7 @@ - Public <undefined>
  start + Public <undefined>
  end diff --git a/approved/html/EARoot/EA1/EA3/EA18/EA1/EA7/EA3584.htm b/approved/html/EARoot/EA1/EA3/EA18/EA1/EA7/EA3584.htm index 24016f3a6..cfb596cea 100644 --- a/approved/html/EARoot/EA1/EA3/EA18/EA1/EA7/EA3584.htm +++ b/approved/html/EARoot/EA1/EA3/EA18/EA1/EA7/EA3584.htm @@ -109,7 +109,7 @@ - Public Distance
  endParameter + Public Distance
  startParameter @@ -157,7 +157,7 @@ - Public Distance
  startParameter + Public Distance
  endParameter diff --git a/approved/html/EARoot/EA1/EA3/EA19/EA1/EA3599.png b/approved/html/EARoot/EA1/EA3/EA19/EA1/EA3599.png index 540da849a..accd23800 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA19/EA1/EA3599.png and b/approved/html/EARoot/EA1/EA3/EA19/EA1/EA3599.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA19/EA1/EA3603.png b/approved/html/EARoot/EA1/EA3/EA19/EA1/EA3603.png index f60c24cb9..6788f4eb4 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA19/EA1/EA3603.png and b/approved/html/EARoot/EA1/EA3/EA19/EA1/EA3603.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA19/EA1/EA3605.png b/approved/html/EARoot/EA1/EA3/EA19/EA1/EA3605.png index 064d9c2bc..6342511e8 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA19/EA1/EA3605.png and b/approved/html/EARoot/EA1/EA3/EA19/EA1/EA3605.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA19/EA1/EA3607.png b/approved/html/EARoot/EA1/EA3/EA19/EA1/EA3607.png index f8a05e1dd..cf0d1fcfe 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA19/EA1/EA3607.png and b/approved/html/EARoot/EA1/EA3/EA19/EA1/EA3607.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA19/EA1/EA3609.png b/approved/html/EARoot/EA1/EA3/EA19/EA1/EA3609.png index ba27bedc7..16c7ff4f7 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA19/EA1/EA3609.png and b/approved/html/EARoot/EA1/EA3/EA19/EA1/EA3609.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA19/EA1/EA3613.png b/approved/html/EARoot/EA1/EA3/EA19/EA1/EA3613.png index 35a1e568a..16a35cade 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA19/EA1/EA3613.png and b/approved/html/EARoot/EA1/EA3/EA19/EA1/EA3613.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA19/EA1/EA3615.png b/approved/html/EARoot/EA1/EA3/EA19/EA1/EA3615.png index 6648c0015..14bb60066 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA19/EA1/EA3615.png and b/approved/html/EARoot/EA1/EA3/EA19/EA1/EA3615.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA19/EA1/EA3617.png b/approved/html/EARoot/EA1/EA3/EA19/EA1/EA3617.png index c2535072e..891e44b26 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA19/EA1/EA3617.png and b/approved/html/EARoot/EA1/EA3/EA19/EA1/EA3617.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA19/EA1/EA3619.png b/approved/html/EARoot/EA1/EA3/EA19/EA1/EA3619.png index 561d92434..778f0f743 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA19/EA1/EA3619.png and b/approved/html/EARoot/EA1/EA3/EA19/EA1/EA3619.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA19/EA1/EA3621.png b/approved/html/EARoot/EA1/EA3/EA19/EA1/EA3621.png index d1d8bf73d..476085c9d 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA19/EA1/EA3621.png and b/approved/html/EARoot/EA1/EA3/EA19/EA1/EA3621.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA19/EA1/EA3623.htm b/approved/html/EARoot/EA1/EA3/EA19/EA1/EA3623.htm index 22c23ff1d..bd8e67b92 100644 --- a/approved/html/EARoot/EA1/EA3/EA19/EA1/EA3623.htm +++ b/approved/html/EARoot/EA1/EA3/EA19/EA1/EA3623.htm @@ -107,7 +107,7 @@ - Public <undefined>
  COM + Public <undefined>
  XML @@ -251,7 +251,7 @@ - Public <undefined>
  SQL + Public <undefined>
  COM @@ -299,7 +299,7 @@ - Public <undefined>
  WebServices + Public <undefined>
  SQL @@ -347,7 +347,7 @@ - Public <undefined>
  XML + Public <undefined>
  WebServices diff --git a/approved/html/EARoot/EA1/EA3/EA19/EA1/EA3627.htm b/approved/html/EARoot/EA1/EA3/EA19/EA1/EA3627.htm index fc0cad168..a639fb678 100644 --- a/approved/html/EARoot/EA1/EA3/EA19/EA1/EA3627.htm +++ b/approved/html/EARoot/EA1/EA3/EA19/EA1/EA3627.htm @@ -108,7 +108,7 @@ - Public CharacterString
  description + Public CharacterString
  name @@ -134,7 +134,7 @@ Range: - Range:0 to 1 + Transient: @@ -156,7 +156,7 @@ - Public CharacterString
  name + Public CharacterString
  description @@ -182,7 +182,7 @@ Range: - + Range:0 to 1 Transient: diff --git a/approved/html/EARoot/EA1/EA3/EA19/EA1/EA3628.htm b/approved/html/EARoot/EA1/EA3/EA19/EA1/EA3628.htm index c82fb9408..fcf731460 100644 --- a/approved/html/EARoot/EA1/EA3/EA19/EA1/EA3628.htm +++ b/approved/html/EARoot/EA1/EA3/EA19/EA1/EA3628.htm @@ -108,7 +108,7 @@ - Public CharacterString
  description + Public CharacterString
  name @@ -134,7 +134,7 @@ Range: - Range:0 to 1 + Transient: @@ -156,7 +156,7 @@ - Public CharacterString
  name + Public CharacterString
  description @@ -182,7 +182,7 @@ Range: - + Range:0 to 1 Transient: diff --git a/approved/html/EARoot/EA1/EA3/EA19/EA1/EA3629.htm b/approved/html/EARoot/EA1/EA3/EA19/EA1/EA3629.htm index 916c7be7e..b8e8c2261 100644 --- a/approved/html/EARoot/EA1/EA3/EA19/EA1/EA3629.htm +++ b/approved/html/EARoot/EA1/EA3/EA19/EA1/EA3629.htm @@ -110,7 +110,7 @@ - Public CI_OnlineResource
  connectPoint + Public CharacterString
  operationName @@ -206,7 +206,7 @@ - Public CharacterString
  invocationName + Public CharacterString
  operationDescription @@ -254,7 +254,7 @@ - Public CharacterString
  operationDescription + Public CharacterString
  invocationName @@ -302,7 +302,7 @@ - Public CharacterString
  operationName + Public CI_OnlineResource
  connectPoint diff --git a/approved/html/EARoot/EA1/EA3/EA19/EA1/EA3630.htm b/approved/html/EARoot/EA1/EA3/EA19/EA1/EA3630.htm index 4e4a4584f..431326a4a 100644 --- a/approved/html/EARoot/EA1/EA3/EA19/EA1/EA3630.htm +++ b/approved/html/EARoot/EA1/EA3/EA19/EA1/EA3630.htm @@ -110,7 +110,7 @@ - Public CharacterString
  description + Public SV_ParameterDirection
  direction @@ -158,7 +158,7 @@ - Public SV_ParameterDirection
  direction + Public CharacterString
  description diff --git a/approved/html/EARoot/EA1/EA3/EA19/EA1/EA3632.htm b/approved/html/EARoot/EA1/EA3/EA19/EA1/EA3632.htm index 4df5b376e..4c07f10ed 100644 --- a/approved/html/EARoot/EA1/EA3/EA19/EA1/EA3632.htm +++ b/approved/html/EARoot/EA1/EA3/EA19/EA1/EA3632.htm @@ -110,7 +110,7 @@ - Public MD_StandardOrderProcess
  accessProperties + Public GenericName
  serviceType @@ -136,7 +136,7 @@ Range: - Range:0 to 1 + Transient: @@ -159,7 +159,7 @@ Notes: - A entity imported from ISO 19115, including:<br/>- Fees<br/>-Planned availability date and time<br/>- Ordering instructions<br/>-Turnaround<br/> + A service type name from a registry of services. For, example, OGC may be the name space and catalogue may be the identifier.<br/> @@ -168,7 +168,7 @@ - Public SV_CoupledResource
  couplingResource + Public CharacterString
  serviceTypeVersion @@ -211,12 +211,22 @@ -   +
+ + + + +
+ Notes: + + Provides for searching based on the version of serviceType. For example, we may only be interested in OGC Catalogue V1.1 Services. By maintaining version as a separate attribute, users can easily search for all services of a type regardless of the version.<br/> +
+ - Public SV_CouplingType
  couplingType + Public MD_StandardOrderProcess
  accessProperties @@ -242,7 +252,7 @@ Range: - + Range:0 to 1 Transient: @@ -259,12 +269,22 @@ -   +
+ + + + +
+ Notes: + + A entity imported from ISO 19115, including:<br/>- Fees<br/>-Planned availability date and time<br/>- Ordering instructions<br/>-Turnaround<br/> +
+ - Public EX_Extent
  extent + Public MD_Constraints
  restrictions @@ -290,7 +310,7 @@ Range: - Range:0 to * + Range:0 to 1 Transient: @@ -312,7 +332,7 @@ - Public MD_Constraints
  restrictions + Public EX_Extent
  extent @@ -338,7 +358,7 @@ Range: - Range:0 to 1 + Range:0 to * Transient: @@ -360,7 +380,7 @@ - Public GenericName
  serviceType + Public SV_CouplingType
  couplingType @@ -403,22 +423,12 @@ -
- - - - -
- Notes: - - A service type name from a registry of services. For, example, OGC may be the name space and catalogue may be the identifier.<br/> -
- +   - Public CharacterString
  serviceTypeVersion + Public SV_CoupledResource
  couplingResource @@ -461,17 +471,7 @@ -
- - - - -
- Notes: - - Provides for searching based on the version of serviceType. For example, we may only be interested in OGC Catalogue V1.1 Services. By maintaining version as a separate attribute, users can easily search for all services of a type regardless of the version.<br/> -
- +   diff --git a/approved/html/EARoot/EA1/EA3/EA19/EA1/EA3633.htm b/approved/html/EARoot/EA1/EA3/EA19/EA1/EA3633.htm index f13bddcf9..8be70e4d4 100644 --- a/approved/html/EARoot/EA1/EA3/EA19/EA1/EA3633.htm +++ b/approved/html/EARoot/EA1/EA3/EA19/EA1/EA3633.htm @@ -108,7 +108,7 @@ - Public CharacterString
  providerName + Public CI_ResponsibleParty
  serviceContact @@ -156,7 +156,7 @@ - Public CI_ResponsibleParty
  serviceContact + Public CharacterString
  providerName diff --git a/approved/html/EARoot/EA1/EA3/EA19/EA2/EA3639.png b/approved/html/EARoot/EA1/EA3/EA19/EA2/EA3639.png index b2c4e754e..33f55171b 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA19/EA2/EA3639.png and b/approved/html/EARoot/EA1/EA3/EA19/EA2/EA3639.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA19/EA2/EA3641.png b/approved/html/EARoot/EA1/EA3/EA19/EA2/EA3641.png index feffc3e0f..cdf6aaadc 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA19/EA2/EA3641.png and b/approved/html/EARoot/EA1/EA3/EA19/EA2/EA3641.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA19/EA2/EA3643.png b/approved/html/EARoot/EA1/EA3/EA19/EA2/EA3643.png index 486660473..19d8f2d70 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA19/EA2/EA3643.png and b/approved/html/EARoot/EA1/EA3/EA19/EA2/EA3643.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA19/EA2/EA3651.png b/approved/html/EARoot/EA1/EA3/EA19/EA2/EA3651.png index 3606c99de..2f5ff9626 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA19/EA2/EA3651.png and b/approved/html/EARoot/EA1/EA3/EA19/EA2/EA3651.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA19/EA2/EA3655.png b/approved/html/EARoot/EA1/EA3/EA19/EA2/EA3655.png index 30e03d0ff..4482445a0 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA19/EA2/EA3655.png and b/approved/html/EARoot/EA1/EA3/EA19/EA2/EA3655.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA19/EA2/EA3657.png b/approved/html/EARoot/EA1/EA3/EA19/EA2/EA3657.png index 225bb4509..ef95886a3 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA19/EA2/EA3657.png and b/approved/html/EARoot/EA1/EA3/EA19/EA2/EA3657.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA19/EA2/EA3661.png b/approved/html/EARoot/EA1/EA3/EA19/EA2/EA3661.png index eedfe2c2b..c8d325099 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA19/EA2/EA3661.png and b/approved/html/EARoot/EA1/EA3/EA19/EA2/EA3661.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA19/EA2/EA3663.png b/approved/html/EARoot/EA1/EA3/EA19/EA2/EA3663.png index 07864c049..76f44877e 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA19/EA2/EA3663.png and b/approved/html/EARoot/EA1/EA3/EA19/EA2/EA3663.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA19/EA2/EA3665.png b/approved/html/EARoot/EA1/EA3/EA19/EA2/EA3665.png index 1c3b64fc0..722518e72 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA19/EA2/EA3665.png and b/approved/html/EARoot/EA1/EA3/EA19/EA2/EA3665.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA19/EA2/EA3673.png b/approved/html/EARoot/EA1/EA3/EA19/EA2/EA3673.png index 779eefdbb..794b231fc 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA19/EA2/EA3673.png and b/approved/html/EARoot/EA1/EA3/EA19/EA2/EA3673.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA19/EA2/EA3675.png b/approved/html/EARoot/EA1/EA3/EA19/EA2/EA3675.png index 0fe8d23de..9e55d8792 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA19/EA2/EA3675.png and b/approved/html/EARoot/EA1/EA3/EA19/EA2/EA3675.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA19/EA2/EA3677.png b/approved/html/EARoot/EA1/EA3/EA19/EA2/EA3677.png index 300452a96..9a9b39d83 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA19/EA2/EA3677.png and b/approved/html/EARoot/EA1/EA3/EA19/EA2/EA3677.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA19/EA2/EA3679.png b/approved/html/EARoot/EA1/EA3/EA19/EA2/EA3679.png index abb8e277c..8c5b6033f 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA19/EA2/EA3679.png and b/approved/html/EARoot/EA1/EA3/EA19/EA2/EA3679.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA19/EA2/EA3681.png b/approved/html/EARoot/EA1/EA3/EA19/EA2/EA3681.png index 5f98de065..0733e00a2 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA19/EA2/EA3681.png and b/approved/html/EARoot/EA1/EA3/EA19/EA2/EA3681.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA19/EA2/EA3683.png b/approved/html/EARoot/EA1/EA3/EA19/EA2/EA3683.png index c9cf29ef4..cda6e28f9 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA19/EA2/EA3683.png and b/approved/html/EARoot/EA1/EA3/EA19/EA2/EA3683.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA19/EA2/EA3685.png b/approved/html/EARoot/EA1/EA3/EA19/EA2/EA3685.png index 63b5f9afc..8067e777a 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA19/EA2/EA3685.png and b/approved/html/EARoot/EA1/EA3/EA19/EA2/EA3685.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA19/EA2/EA3687.png b/approved/html/EARoot/EA1/EA3/EA19/EA2/EA3687.png index 56c3c3de9..ca2f9c52e 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA19/EA2/EA3687.png and b/approved/html/EARoot/EA1/EA3/EA19/EA2/EA3687.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA19/EA2/EA3700.htm b/approved/html/EARoot/EA1/EA3/EA19/EA2/EA3700.htm index 4b8d06009..71f9391fe 100644 --- a/approved/html/EARoot/EA1/EA3/EA19/EA2/EA3700.htm +++ b/approved/html/EARoot/EA1/EA3/EA19/EA2/EA3700.htm @@ -108,7 +108,7 @@ - Public CharacterString
  invocationName + Public MemberName
  operationName @@ -134,7 +134,7 @@ Range: - Range:0 to 1 + Transient: @@ -204,7 +204,7 @@ - Public MemberName
  operationName + Public CharacterString
  invocationName @@ -230,7 +230,7 @@ Range: - + Range:0 to 1 Transient: diff --git a/approved/html/EARoot/EA1/EA3/EA19/EA2/EA3701.htm b/approved/html/EARoot/EA1/EA3/EA19/EA2/EA3701.htm index 6a640acda..9be4473de 100644 --- a/approved/html/EARoot/EA1/EA3/EA19/EA2/EA3701.htm +++ b/approved/html/EARoot/EA1/EA3/EA19/EA2/EA3701.htm @@ -109,7 +109,7 @@ - Public CharacterString
  description + Public MemberName
  name @@ -135,7 +135,7 @@ Range: - Range:0 to 1 + Transient: @@ -205,7 +205,7 @@ - Public MemberName
  name + Public CharacterString
  description @@ -231,7 +231,7 @@ Range: - + Range:0 to 1 Transient: diff --git a/approved/html/EARoot/EA1/EA3/EA19/EA2/EA3705.htm b/approved/html/EARoot/EA1/EA3/EA19/EA2/EA3705.htm index 9d371586b..50834ffdd 100644 --- a/approved/html/EARoot/EA1/EA3/EA19/EA2/EA3705.htm +++ b/approved/html/EARoot/EA1/EA3/EA19/EA2/EA3705.htm @@ -107,7 +107,7 @@ - Public URI
  address + Public DCPList
  binding @@ -155,7 +155,7 @@ - Public DCPList
  binding + Public URI
  address diff --git a/approved/html/EARoot/EA1/EA3/EA2/EA694.png b/approved/html/EARoot/EA1/EA3/EA2/EA694.png index 987afc026..5863c0c54 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA2/EA694.png and b/approved/html/EARoot/EA1/EA3/EA2/EA694.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA2/EA696.png b/approved/html/EARoot/EA1/EA3/EA2/EA696.png index 987afc026..5863c0c54 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA2/EA696.png and b/approved/html/EARoot/EA1/EA3/EA2/EA696.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA2/EA698.htm b/approved/html/EARoot/EA1/EA3/EA2/EA698.htm index a68f940ea..1e6346452 100644 --- a/approved/html/EARoot/EA1/EA3/EA2/EA698.htm +++ b/approved/html/EARoot/EA1/EA3/EA2/EA698.htm @@ -828,7 +828,7 @@ - Public <undefined>
  Finnish + Public <undefined>
  French @@ -876,7 +876,7 @@ - Public <undefined>
  French + Public <undefined>
  French(Canadian) @@ -924,7 +924,7 @@ - Public <undefined>
  French(Canadian) + Public <undefined>
  Finnish diff --git a/approved/html/EARoot/EA1/EA3/EA20/EA1/EA3725.png b/approved/html/EARoot/EA1/EA3/EA20/EA1/EA3725.png index 51d84b796..d5076e2ba 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA20/EA1/EA3725.png and b/approved/html/EARoot/EA1/EA3/EA20/EA1/EA3725.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA20/EA1/EA3727.png b/approved/html/EARoot/EA1/EA3/EA20/EA1/EA3727.png index f3c07ff0d..d2ff8f079 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA20/EA1/EA3727.png and b/approved/html/EARoot/EA1/EA3/EA20/EA1/EA3727.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA20/EA1/EA3729.png b/approved/html/EARoot/EA1/EA3/EA20/EA1/EA3729.png index 7d5e68b77..2e55bf85b 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA20/EA1/EA3729.png and b/approved/html/EARoot/EA1/EA3/EA20/EA1/EA3729.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA20/EA1/EA3731.png b/approved/html/EARoot/EA1/EA3/EA20/EA1/EA3731.png index 7009331f5..44754935e 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA20/EA1/EA3731.png and b/approved/html/EARoot/EA1/EA3/EA20/EA1/EA3731.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA20/EA1/EA3739.png b/approved/html/EARoot/EA1/EA3/EA20/EA1/EA3739.png index d5fd79c67..ce2dbf8ca 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA20/EA1/EA3739.png and b/approved/html/EARoot/EA1/EA3/EA20/EA1/EA3739.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA20/EA1/EA3745.png b/approved/html/EARoot/EA1/EA3/EA20/EA1/EA3745.png index 7e8e31af0..b7d3dbee2 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA20/EA1/EA3745.png and b/approved/html/EARoot/EA1/EA3/EA20/EA1/EA3745.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA20/EA1/EA3749.png b/approved/html/EARoot/EA1/EA3/EA20/EA1/EA3749.png index 2b2bace4f..68421dc2d 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA20/EA1/EA3749.png and b/approved/html/EARoot/EA1/EA3/EA20/EA1/EA3749.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA20/EA1/EA3757.png b/approved/html/EARoot/EA1/EA3/EA20/EA1/EA3757.png index 7cc810f5a..b2ecafd91 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA20/EA1/EA3757.png and b/approved/html/EARoot/EA1/EA3/EA20/EA1/EA3757.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA20/EA1/EA3759.png b/approved/html/EARoot/EA1/EA3/EA20/EA1/EA3759.png index 7e65d6752..0ba0e9671 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA20/EA1/EA3759.png and b/approved/html/EARoot/EA1/EA3/EA20/EA1/EA3759.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA20/EA1/EA3764.htm b/approved/html/EARoot/EA1/EA3/EA20/EA1/EA3764.htm index 112aebb88..00912e960 100644 --- a/approved/html/EARoot/EA1/EA3/EA20/EA1/EA3764.htm +++ b/approved/html/EARoot/EA1/EA3/EA20/EA1/EA3764.htm @@ -107,7 +107,7 @@ - Public CharacterString
  explaination + Public CD_ConceptRelationshipType
  type @@ -133,7 +133,7 @@ Range: - Range:0 to 1 + Transient: @@ -155,7 +155,7 @@ - Public CD_ConceptRelationshipType
  type + Public CharacterString
  explaination @@ -181,7 +181,7 @@ Range: - + Range:0 to 1 Transient: diff --git a/approved/html/EARoot/EA1/EA3/EA20/EA1/EA3765.htm b/approved/html/EARoot/EA1/EA3/EA20/EA1/EA3765.htm index 958ef669e..2f0b9654f 100644 --- a/approved/html/EARoot/EA1/EA3/EA20/EA1/EA3765.htm +++ b/approved/html/EARoot/EA1/EA3/EA20/EA1/EA3765.htm @@ -107,7 +107,7 @@ - Public <undefined>
  oppposition + Public <undefined>
  similarity @@ -155,7 +155,7 @@ - Public <undefined>
  other + Public <undefined>
  oppposition @@ -203,7 +203,7 @@ - Public <undefined>
  similarity + Public <undefined>
  other diff --git a/approved/html/EARoot/EA1/EA3/EA20/EA1/EA3769.htm b/approved/html/EARoot/EA1/EA3/EA20/EA1/EA3769.htm index a8312f3e1..690849324 100644 --- a/approved/html/EARoot/EA1/EA3/EA20/EA1/EA3769.htm +++ b/approved/html/EARoot/EA1/EA3/EA20/EA1/EA3769.htm @@ -109,7 +109,7 @@ - Public RE_FieldOfApplication
  fieldOfApplication + Public CD_Scope
  scope @@ -135,7 +135,7 @@ Range: - Range:0 to 1 + Transient: @@ -157,7 +157,7 @@ - Public CD_Scope
  scope + Public RE_FieldOfApplication
  fieldOfApplication @@ -183,7 +183,7 @@ Range: - + Range:0 to 1 Transient: diff --git a/approved/html/EARoot/EA1/EA3/EA20/EA1/EA3772.htm b/approved/html/EARoot/EA1/EA3/EA20/EA1/EA3772.htm index a63dcab47..74c97c0ac 100644 --- a/approved/html/EARoot/EA1/EA3/EA20/EA1/EA3772.htm +++ b/approved/html/EARoot/EA1/EA3/EA20/EA1/EA3772.htm @@ -108,7 +108,7 @@ - Public CharacterString
  definition + Public CharacterString
  roleName @@ -156,7 +156,7 @@ - Public CharacterString
  roleName + Public CharacterString
  definition diff --git a/approved/html/EARoot/EA1/EA3/EA20/EA1/EA3774.htm b/approved/html/EARoot/EA1/EA3/EA20/EA1/EA3774.htm index 7853aee0e..cf9f7ed1a 100644 --- a/approved/html/EARoot/EA1/EA3/EA20/EA1/EA3774.htm +++ b/approved/html/EARoot/EA1/EA3/EA20/EA1/EA3774.htm @@ -107,7 +107,7 @@ - Public CharacterString
  description + Public CharacterString
  name @@ -133,7 +133,7 @@ Range: - Range:0 to 1 + Transient: @@ -155,7 +155,7 @@ - Public CharacterString
  name + Public CharacterString
  description @@ -181,7 +181,7 @@ Range: - + Range:0 to 1 Transient: diff --git a/approved/html/EARoot/EA1/EA3/EA20/EA2/EA3776.png b/approved/html/EARoot/EA1/EA3/EA20/EA2/EA3776.png index 2777756b8..7f202d38b 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA20/EA2/EA3776.png and b/approved/html/EARoot/EA1/EA3/EA20/EA2/EA3776.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA20/EA2/EA3780.png b/approved/html/EARoot/EA1/EA3/EA20/EA2/EA3780.png index 0aa4d998a..1821c0f2d 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA20/EA2/EA3780.png and b/approved/html/EARoot/EA1/EA3/EA20/EA2/EA3780.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA20/EA2/EA3782.htm b/approved/html/EARoot/EA1/EA3/EA20/EA2/EA3782.htm index ae0976901..1379d5d8c 100644 --- a/approved/html/EARoot/EA1/EA3/EA20/EA2/EA3782.htm +++ b/approved/html/EARoot/EA1/EA3/EA20/EA2/EA3782.htm @@ -108,7 +108,7 @@ - Public Integer
  registerIdentifier + Public HR_FeatureInfoSubregisterType
  type @@ -134,7 +134,7 @@ Range: - Range:0 to 1 + Transient: @@ -204,7 +204,7 @@ - Public HR_FeatureInfoSubregisterType
  type + Public Integer
  registerIdentifier @@ -230,7 +230,7 @@ Range: - + Range:0 to 1 Transient: diff --git a/approved/html/EARoot/EA1/EA3/EA20/EA3720.png b/approved/html/EARoot/EA1/EA3/EA20/EA3720.png index e8df26b74..115f290e2 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA20/EA3720.png and b/approved/html/EARoot/EA1/EA3/EA20/EA3720.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA21/EA3795.png b/approved/html/EARoot/EA1/EA3/EA21/EA3795.png index ca45cabae..45e78b8a3 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA21/EA3795.png and b/approved/html/EARoot/EA1/EA3/EA21/EA3795.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA21/EA3797.png b/approved/html/EARoot/EA1/EA3/EA21/EA3797.png index 4b509ec6c..0ff758d61 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA21/EA3797.png and b/approved/html/EARoot/EA1/EA3/EA21/EA3797.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA21/EA3799.png b/approved/html/EARoot/EA1/EA3/EA21/EA3799.png index 6a07022f9..e9b7da70a 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA21/EA3799.png and b/approved/html/EARoot/EA1/EA3/EA21/EA3799.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA21/EA3806.htm b/approved/html/EARoot/EA1/EA3/EA21/EA3806.htm index d11a729ab..3da3c8776 100644 --- a/approved/html/EARoot/EA1/EA3/EA21/EA3806.htm +++ b/approved/html/EARoot/EA1/EA3/EA21/EA3806.htm @@ -107,7 +107,7 @@ - Public MS_Abstract
  abstract + Public CharacterString
  version @@ -121,7 +121,7 @@ Initial: - + 0.1.4 Stereotype: @@ -155,7 +155,7 @@ - Public EX_GeographicExtent
  boundingBox + Public MS_LayerList
  layerList @@ -203,7 +203,7 @@ - Public CI_Contact
  contact + Public MS_Window
  window @@ -251,7 +251,7 @@ - Public MS_Keywords
  keywords + Public MS_Title
  title @@ -277,7 +277,7 @@ Range: - Range:0 to 1 + Transient: @@ -299,7 +299,7 @@ - Public MS_LayerList
  layerList + Public MS_Abstract
  abstract @@ -347,7 +347,7 @@ - Public MS_Title
  title + Public EX_GeographicExtent
  boundingBox @@ -395,7 +395,7 @@ - Public CharacterString
  version + Public MS_Keywords
  keywords @@ -409,7 +409,7 @@ Initial: - 0.1.4 + Stereotype: @@ -421,7 +421,7 @@ Range: - + Range:0 to 1 Transient: @@ -443,7 +443,7 @@ - Public MS_Window
  window + Public CI_Contact
  contact diff --git a/approved/html/EARoot/EA1/EA3/EA21/EA3807.htm b/approved/html/EARoot/EA1/EA3/EA21/EA3807.htm index 498f35437..16e8598cb 100644 --- a/approved/html/EARoot/EA1/EA3/EA21/EA3807.htm +++ b/approved/html/EARoot/EA1/EA3/EA21/EA3807.htm @@ -108,7 +108,7 @@ - Public Integer
  height + Public Integer
  width @@ -156,7 +156,7 @@ - Public Integer
  width + Public Integer
  height diff --git a/approved/html/EARoot/EA1/EA3/EA22/EA1/EA3817.png b/approved/html/EARoot/EA1/EA3/EA22/EA1/EA3817.png index d9cc48f68..f57a59d1b 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA22/EA1/EA3817.png and b/approved/html/EARoot/EA1/EA3/EA22/EA1/EA3817.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA22/EA1/EA3819.png b/approved/html/EARoot/EA1/EA3/EA22/EA1/EA3819.png index 8d2f0cd21..9b46d758b 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA22/EA1/EA3819.png and b/approved/html/EARoot/EA1/EA3/EA22/EA1/EA3819.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA22/EA1/EA3821.png b/approved/html/EARoot/EA1/EA3/EA22/EA1/EA3821.png index c5e34860c..36ef61aaf 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA22/EA1/EA3821.png and b/approved/html/EARoot/EA1/EA3/EA22/EA1/EA3821.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA22/EA1/EA3823.png b/approved/html/EARoot/EA1/EA3/EA22/EA1/EA3823.png index f4f52448f..850082c27 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA22/EA1/EA3823.png and b/approved/html/EARoot/EA1/EA3/EA22/EA1/EA3823.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA22/EA1/EA3827.png b/approved/html/EARoot/EA1/EA3/EA22/EA1/EA3827.png index 1b998c06e..4ee683c31 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA22/EA1/EA3827.png and b/approved/html/EARoot/EA1/EA3/EA22/EA1/EA3827.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA22/EA1/EA3844.htm b/approved/html/EARoot/EA1/EA3/EA22/EA1/EA3844.htm index 2a5110ed6..2b26957bd 100644 --- a/approved/html/EARoot/EA1/EA3/EA22/EA1/EA3844.htm +++ b/approved/html/EARoot/EA1/EA3/EA22/EA1/EA3844.htm @@ -109,7 +109,7 @@ - Public CV_CommonPointRule
  commonPointRule + Public EX_Extent
  domainExtent @@ -152,12 +152,22 @@ -   +
+ + + + +
+ Notes: + + The attribute domainExtent shall contain the extent of the spatiotemporal domain of the coverage.  The data type EX_Extent, is defined in ISO 19103.  Extents may be specified in both space and time.  <br/> +
+ - Public EX_Extent
  domainExtent + Public RecordType
  rangeType @@ -200,22 +210,12 @@ -
- - - - -
- Notes: - - The attribute domainExtent shall contain the extent of the spatiotemporal domain of the coverage.  The data type EX_Extent, is defined in ISO 19103.  Extents may be specified in both space and time.  <br/> -
- +   - Public RecordType
  rangeType + Public CV_CommonPointRule
  commonPointRule diff --git a/approved/html/EARoot/EA1/EA3/EA22/EA1/EA3847.htm b/approved/html/EARoot/EA1/EA3/EA22/EA1/EA3847.htm index 036f8612b..7cf697ff6 100644 --- a/approved/html/EARoot/EA1/EA3/EA22/EA1/EA3847.htm +++ b/approved/html/EARoot/EA1/EA3/EA22/EA1/EA3847.htm @@ -109,7 +109,7 @@ - Public CV_CommonPointRule
  commonPointRule + Public EX_Extent
  domainExtent @@ -152,12 +152,22 @@ -   +
+ + + + +
+ Notes: + + The attribute domainExtent shall contain the extent of the spatiotemporal domain of the coverage.  The data type EX_Extent, is defined in ISO 19103.  Extents may be specified in both space and time.  <br/> +
+ - Public EX_Extent
  domainExtent + Public RecordType
  rangeType @@ -200,22 +210,12 @@ -
- - - - -
- Notes: - - The attribute domainExtent shall contain the extent of the spatiotemporal domain of the coverage.  The data type EX_Extent, is defined in ISO 19103.  Extents may be specified in both space and time.  <br/> -
- +   - Public Record
  interpolationParametersType + Public CV_CommonPointRule
  commonPointRule @@ -241,7 +241,7 @@ Range: - Range:0 to 1 + Transient: @@ -311,7 +311,7 @@ - Public RecordType
  rangeType + Public Record
  interpolationParametersType @@ -337,7 +337,7 @@ Range: - + Range:0 to 1 Transient: diff --git a/approved/html/EARoot/EA1/EA3/EA22/EA1/EA3849.htm b/approved/html/EARoot/EA1/EA3/EA22/EA1/EA3849.htm index 2d2c48513..dd94e5a3d 100644 --- a/approved/html/EARoot/EA1/EA3/EA22/EA1/EA3849.htm +++ b/approved/html/EARoot/EA1/EA3/EA22/EA1/EA3849.htm @@ -109,7 +109,7 @@ - Public CV_CommonPointRule
  commonPointRule + Public EX_Extent
  domainExtent @@ -152,12 +152,22 @@ -   +
+ + + + +
+ Notes: + + The attribute domainExtent shall contain the extent of the spatiotemporal domain of the coverage.  The data type EX_Extent, is defined in ISO 19103.  Extents may be specified in both space and time.  <br/> +
+ - Public EX_Extent
  domainExtent + Public RecordType
  rangeType @@ -200,22 +210,12 @@ -
- - - - -
- Notes: - - The attribute domainExtent shall contain the extent of the spatiotemporal domain of the coverage.  The data type EX_Extent, is defined in ISO 19103.  Extents may be specified in both space and time.  <br/> -
- +   - Public Record
  interpolationParametersType + Public CV_CommonPointRule
  commonPointRule @@ -241,7 +241,7 @@ Range: - Range:0 to 1 + Transient: @@ -311,7 +311,7 @@ - Public RecordType
  rangeType + Public Record
  interpolationParametersType @@ -337,7 +337,7 @@ Range: - + Range:0 to 1 Transient: diff --git a/approved/html/EARoot/EA1/EA3/EA22/EA1/EA3851.htm b/approved/html/EARoot/EA1/EA3/EA22/EA1/EA3851.htm index 45b46cfad..4d2bfa994 100644 --- a/approved/html/EARoot/EA1/EA3/EA22/EA1/EA3851.htm +++ b/approved/html/EARoot/EA1/EA3/EA22/EA1/EA3851.htm @@ -109,7 +109,7 @@ - Public GM_SurfaceBoundary
  boundary + Public GM_SurfaceInterpolation
  interpolation @@ -123,7 +123,7 @@ Initial: - + "planar" Stereotype: @@ -157,7 +157,7 @@ - Public GM_SurfaceInterpolation
  interpolation + Public Integer
  numDerivativesOnBoundary @@ -171,7 +171,7 @@ Initial: - "planar" + 0 Stereotype: @@ -183,7 +183,7 @@ Range: - + Range:0 to 1 Transient: @@ -205,7 +205,7 @@ - Public Integer
  numDerivativesOnBoundary + Public GM_SurfaceBoundary
  boundary @@ -219,7 +219,7 @@ Initial: - 0 + Stereotype: @@ -231,7 +231,7 @@ Range: - Range:0 to 1 + Transient: diff --git a/approved/html/EARoot/EA1/EA3/EA22/EA1/EA3853.htm b/approved/html/EARoot/EA1/EA3/EA22/EA1/EA3853.htm index 8d3f4b3bb..f9a85bc99 100644 --- a/approved/html/EARoot/EA1/EA3/EA22/EA1/EA3853.htm +++ b/approved/html/EARoot/EA1/EA3/EA22/EA1/EA3853.htm @@ -109,7 +109,7 @@ - Public CV_CommonPointRule
  commonPointRule + Public EX_Extent
  domainExtent @@ -152,12 +152,22 @@ -   +
+ + + + +
+ Notes: + + The attribute domainExtent shall contain the extent of the spatiotemporal domain of the coverage.  The data type EX_Extent, is defined in ISO 19103.  Extents may be specified in both space and time.  <br/> +
+ - Public EX_Extent
  domainExtent + Public RecordType
  rangeType @@ -200,22 +210,12 @@ -
- - - - -
- Notes: - - The attribute domainExtent shall contain the extent of the spatiotemporal domain of the coverage.  The data type EX_Extent, is defined in ISO 19103.  Extents may be specified in both space and time.  <br/> -
- +   - Public GM_Tin
  geometry + Public CV_CommonPointRule
  commonPointRule @@ -311,7 +311,7 @@ - Public CV_InterpolationMethod
  interpolationType + Public GM_Tin
  geometry @@ -325,7 +325,7 @@ Initial: - barycentric + Stereotype: @@ -359,7 +359,7 @@ - Public RecordType
  rangeType + Public CV_InterpolationMethod
  interpolationType @@ -373,7 +373,7 @@ Initial: - + barycentric Stereotype: diff --git a/approved/html/EARoot/EA1/EA3/EA23/EA10/EA3992.png b/approved/html/EARoot/EA1/EA3/EA23/EA10/EA3992.png index d2643bab5..d834d8c7c 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA23/EA10/EA3992.png and b/approved/html/EARoot/EA1/EA3/EA23/EA10/EA3992.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA23/EA11/EA3998.png b/approved/html/EARoot/EA1/EA3/EA23/EA11/EA3998.png index 81b27e4db..4dbd63759 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA23/EA11/EA3998.png and b/approved/html/EARoot/EA1/EA3/EA23/EA11/EA3998.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA23/EA12/EA4004.png b/approved/html/EARoot/EA1/EA3/EA23/EA12/EA4004.png index 0ddc5472b..69c307659 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA23/EA12/EA4004.png and b/approved/html/EARoot/EA1/EA3/EA23/EA12/EA4004.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA23/EA12/EA4006.png b/approved/html/EARoot/EA1/EA3/EA23/EA12/EA4006.png index b3217b05e..2699d56e3 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA23/EA12/EA4006.png and b/approved/html/EARoot/EA1/EA3/EA23/EA12/EA4006.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA23/EA12/EA4011.htm b/approved/html/EARoot/EA1/EA3/EA23/EA12/EA4011.htm index d2e40894c..cb6dd4d38 100644 --- a/approved/html/EARoot/EA1/EA3/EA23/EA12/EA4011.htm +++ b/approved/html/EARoot/EA1/EA3/EA23/EA12/EA4011.htm @@ -109,7 +109,7 @@ - Public CharacterString
  coverage + Public CharacterString
  scopeIdentification @@ -135,7 +135,7 @@ Range: - Range:0 to * + Transient: @@ -157,7 +157,7 @@ - Public EX_Extent
  extent + Public MD_ScopeCode
  level @@ -205,7 +205,7 @@ - Public MD_ScopeCode
  level + Public CharacterString
  levelName @@ -253,7 +253,7 @@ - Public CharacterString
  levelDescription + Public EX_Extent
  extent @@ -279,7 +279,7 @@ Range: - Range:0 to * + Range:0 to 1 Transient: @@ -301,7 +301,7 @@ - Public CharacterString
  levelName + Public CharacterString
  levelDescription @@ -327,7 +327,7 @@ Range: - Range:0 to 1 + Range:0 to * Transient: @@ -349,7 +349,7 @@ - Public CharacterString
  scopeIdentification + Public CharacterString
  coverage @@ -375,7 +375,7 @@ Range: - + Range:0 to * Transient: diff --git a/approved/html/EARoot/EA1/EA3/EA23/EA4/EA1/EA3943.png b/approved/html/EARoot/EA1/EA3/EA23/EA4/EA1/EA3943.png index c4c4131c2..78a928f26 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA23/EA4/EA1/EA3943.png and b/approved/html/EARoot/EA1/EA3/EA23/EA4/EA1/EA3943.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA23/EA4/EA1/EA3947.htm b/approved/html/EARoot/EA1/EA3/EA23/EA4/EA1/EA3947.htm index a2973ee22..fa2a95932 100644 --- a/approved/html/EARoot/EA1/EA3/EA23/EA4/EA1/EA3947.htm +++ b/approved/html/EARoot/EA1/EA3/EA23/EA4/EA1/EA3947.htm @@ -108,7 +108,7 @@ - Public CharacterString
  coverageDescription + Public CharacterString
  coverageID @@ -156,7 +156,7 @@ - Public CharacterString
  coverageID + Public CharacterString
  coverageDescription diff --git a/approved/html/EARoot/EA1/EA3/EA23/EA4/EA2/EA3949.png b/approved/html/EARoot/EA1/EA3/EA23/EA4/EA2/EA3949.png index 5a5f49674..adeccf963 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA23/EA4/EA2/EA3949.png and b/approved/html/EARoot/EA1/EA3/EA23/EA4/EA2/EA3949.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA23/EA4/EA3936.png b/approved/html/EARoot/EA1/EA3/EA23/EA4/EA3936.png index 280c56934..9bddcea6a 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA23/EA4/EA3936.png and b/approved/html/EARoot/EA1/EA3/EA23/EA4/EA3936.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA23/EA6/EA3963.png b/approved/html/EARoot/EA1/EA3/EA23/EA6/EA3963.png index 68239086b..8986b2c10 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA23/EA6/EA3963.png and b/approved/html/EARoot/EA1/EA3/EA23/EA6/EA3963.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA23/EA7/EA3970.png b/approved/html/EARoot/EA1/EA3/EA23/EA7/EA3970.png index 879d75da8..531b118e8 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA23/EA7/EA3970.png and b/approved/html/EARoot/EA1/EA3/EA23/EA7/EA3970.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA23/EA7/EA3972.png b/approved/html/EARoot/EA1/EA3/EA23/EA7/EA3972.png index e0ebe25b8..bbc554b92 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA23/EA7/EA3972.png and b/approved/html/EARoot/EA1/EA3/EA23/EA7/EA3972.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA23/EA7/EA3974.png b/approved/html/EARoot/EA1/EA3/EA23/EA7/EA3974.png index 697655a57..deb44286d 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA23/EA7/EA3974.png and b/approved/html/EARoot/EA1/EA3/EA23/EA7/EA3974.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA23/EA7/EA3976.htm b/approved/html/EARoot/EA1/EA3/EA23/EA7/EA3976.htm index a1c548d55..a98b2c3b4 100644 --- a/approved/html/EARoot/EA1/EA3/EA23/EA7/EA3976.htm +++ b/approved/html/EARoot/EA1/EA3/EA23/EA7/EA3976.htm @@ -108,7 +108,7 @@ - Public MD_CharacterSetCode
  characterSet + Public CharacterString
  formatName @@ -134,7 +134,7 @@ Range: - Range:0 to 1 + Transient: @@ -156,7 +156,7 @@ - Public CharacterString
  fileStructure + Public CharacterString
  version @@ -204,7 +204,7 @@ - Public CharacterString
  formatName + Public CharacterString
  specification @@ -230,7 +230,7 @@ Range: - + Range:0 to 1 Transient: @@ -252,7 +252,7 @@ - Public CharacterString
  language + Public CharacterString
  fileStructure @@ -278,7 +278,7 @@ Range: - + Range:0 to 1 Transient: @@ -300,7 +300,7 @@ - Public CharacterString
  specification + Public CharacterString
  language @@ -326,7 +326,7 @@ Range: - Range:0 to 1 + Transient: @@ -348,7 +348,7 @@ - Public CharacterString
  version + Public MD_CharacterSetCode
  characterSet diff --git a/approved/html/EARoot/EA1/EA3/EA23/EA7/EA3978.htm b/approved/html/EARoot/EA1/EA3/EA23/EA7/EA3978.htm index f57f3f677..38ad6da51 100644 --- a/approved/html/EARoot/EA1/EA3/EA23/EA7/EA3978.htm +++ b/approved/html/EARoot/EA1/EA3/EA23/EA7/EA3978.htm @@ -108,7 +108,7 @@ - Public CharacterString
  mediumName + Public CharacterString
  unitsOfDelivery @@ -134,7 +134,7 @@ Range: - Range:0 to 1 + Transient: @@ -156,7 +156,7 @@ - Public CharacterString
  otherDeliveryInformation + Public Real
  transferSize @@ -204,7 +204,7 @@ - Public Real
  transferSize + Public CharacterString
  mediumName @@ -252,7 +252,7 @@ - Public CharacterString
  unitsOfDelivery + Public CharacterString
  otherDeliveryInformation @@ -278,7 +278,7 @@ Range: - + Range:0 to 1 Transient: diff --git a/approved/html/EARoot/EA1/EA3/EA23/EA8/EA3980.png b/approved/html/EARoot/EA1/EA3/EA23/EA8/EA3980.png index e153f3b66..3b88b2992 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA23/EA8/EA3980.png and b/approved/html/EARoot/EA1/EA3/EA23/EA8/EA3980.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA23/EA8/EA3984.htm b/approved/html/EARoot/EA1/EA3/EA23/EA8/EA3984.htm index 70af9642a..73f0eb214 100644 --- a/approved/html/EARoot/EA1/EA3/EA23/EA8/EA3984.htm +++ b/approved/html/EARoot/EA1/EA3/EA23/EA8/EA3984.htm @@ -109,7 +109,7 @@ - Public CharacterString
  abstract + Public CharacterString
  title @@ -205,7 +205,7 @@ - Public EX_GeographicDescription
  geographicDescription + Public CharacterString
  abstract @@ -301,7 +301,7 @@ - Public MD_SpatialRepresentationTypeCode
  spatialRepresentationType + Public MD_TopicCategoryCode
  topicCategory @@ -327,7 +327,7 @@ Range: - Range:0 to * + Transient: @@ -349,7 +349,7 @@ - Public MD_Resolution
  spatialResolution + Public MD_SpatialRepresentationTypeCode
  spatialRepresentationType @@ -397,7 +397,7 @@ - Public CharacterString
  supplementalInformation + Public MD_Resolution
  spatialResolution @@ -423,7 +423,7 @@ Range: - Range:0 to 1 + Range:0 to * Transient: @@ -445,7 +445,7 @@ - Public CharacterString
  title + Public EX_GeographicDescription
  geographicDescription @@ -493,7 +493,7 @@ - Public MD_TopicCategoryCode
  topicCategory + Public CharacterString
  supplementalInformation @@ -519,7 +519,7 @@ Range: - + Range:0 to 1 Transient: diff --git a/approved/html/EARoot/EA1/EA3/EA24/EA2/EA3/EA4129.png b/approved/html/EARoot/EA1/EA3/EA24/EA2/EA3/EA4129.png index 163e855e1..fa963dfd9 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA24/EA2/EA3/EA4129.png and b/approved/html/EARoot/EA1/EA3/EA24/EA2/EA3/EA4129.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA24/EA2/EA3/EA4137.png b/approved/html/EARoot/EA1/EA3/EA24/EA2/EA3/EA4137.png index 5a042e6cd..1f69688ad 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA24/EA2/EA3/EA4137.png and b/approved/html/EARoot/EA1/EA3/EA24/EA2/EA3/EA4137.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA24/EA2/EA3/EA4139.png b/approved/html/EARoot/EA1/EA3/EA24/EA2/EA3/EA4139.png index 710530c24..0b26b5287 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA24/EA2/EA3/EA4139.png and b/approved/html/EARoot/EA1/EA3/EA24/EA2/EA3/EA4139.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA24/EA2/EA3/EA4141.png b/approved/html/EARoot/EA1/EA3/EA24/EA2/EA3/EA4141.png index fb12046fb..8c6625ba5 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA24/EA2/EA3/EA4141.png and b/approved/html/EARoot/EA1/EA3/EA24/EA2/EA3/EA4141.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA24/EA2/EA4/EA4155.png b/approved/html/EARoot/EA1/EA3/EA24/EA2/EA4/EA4155.png index 78fde53c1..977f6c0ce 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA24/EA2/EA4/EA4155.png and b/approved/html/EARoot/EA1/EA3/EA24/EA2/EA4/EA4155.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA24/EA3/EA4175.png b/approved/html/EARoot/EA1/EA3/EA24/EA3/EA4175.png index 666443227..b42f0a1a3 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA24/EA3/EA4175.png and b/approved/html/EARoot/EA1/EA3/EA24/EA3/EA4175.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA24/EA3/EA4177.png b/approved/html/EARoot/EA1/EA3/EA24/EA3/EA4177.png index 4005a86ef..9bfd297b3 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA24/EA3/EA4177.png and b/approved/html/EARoot/EA1/EA3/EA24/EA3/EA4177.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA24/EA3/EA4181.png b/approved/html/EARoot/EA1/EA3/EA24/EA3/EA4181.png index 3cfda5973..f70267fad 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA24/EA3/EA4181.png and b/approved/html/EARoot/EA1/EA3/EA24/EA3/EA4181.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA24/EA3/EA4185.png b/approved/html/EARoot/EA1/EA3/EA24/EA3/EA4185.png index d83442ddb..a4e10b7a2 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA24/EA3/EA4185.png and b/approved/html/EARoot/EA1/EA3/EA24/EA3/EA4185.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA24/EA3/EA4187.png b/approved/html/EARoot/EA1/EA3/EA24/EA3/EA4187.png index 7891a4247..689d0890c 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA24/EA3/EA4187.png and b/approved/html/EARoot/EA1/EA3/EA24/EA3/EA4187.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA24/EA3/EA4191.png b/approved/html/EARoot/EA1/EA3/EA24/EA3/EA4191.png index 7ef10eb2c..4188303b7 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA24/EA3/EA4191.png and b/approved/html/EARoot/EA1/EA3/EA24/EA3/EA4191.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA24/EA3/EA4193.png b/approved/html/EARoot/EA1/EA3/EA24/EA3/EA4193.png index 4c9082074..fe967fe85 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA24/EA3/EA4193.png and b/approved/html/EARoot/EA1/EA3/EA24/EA3/EA4193.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA24/EA3/EA4195.png b/approved/html/EARoot/EA1/EA3/EA24/EA3/EA4195.png index ccc8d69e8..3328f7cbe 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA24/EA3/EA4195.png and b/approved/html/EARoot/EA1/EA3/EA24/EA3/EA4195.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA24/EA3/EA4199.png b/approved/html/EARoot/EA1/EA3/EA24/EA3/EA4199.png index 99e8fbe68..939c28275 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA24/EA3/EA4199.png and b/approved/html/EARoot/EA1/EA3/EA24/EA3/EA4199.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA24/EA3/EA4203.png b/approved/html/EARoot/EA1/EA3/EA24/EA3/EA4203.png index b669d6e71..8690f9a12 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA24/EA3/EA4203.png and b/approved/html/EARoot/EA1/EA3/EA24/EA3/EA4203.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA24/EA3/EA4205.png b/approved/html/EARoot/EA1/EA3/EA24/EA3/EA4205.png index 01719555d..62f153228 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA24/EA3/EA4205.png and b/approved/html/EARoot/EA1/EA3/EA24/EA3/EA4205.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA24/EA3/EA4207.png b/approved/html/EARoot/EA1/EA3/EA24/EA3/EA4207.png index 95a182ac5..5cd52db00 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA24/EA3/EA4207.png and b/approved/html/EARoot/EA1/EA3/EA24/EA3/EA4207.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA24/EA3/EA4209.png b/approved/html/EARoot/EA1/EA3/EA24/EA3/EA4209.png index b692872e6..2861225b9 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA24/EA3/EA4209.png and b/approved/html/EARoot/EA1/EA3/EA24/EA3/EA4209.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA24/EA3/EA4211.png b/approved/html/EARoot/EA1/EA3/EA24/EA3/EA4211.png index b7fd464be..7cdd11169 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA24/EA3/EA4211.png and b/approved/html/EARoot/EA1/EA3/EA24/EA3/EA4211.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA24/EA3/EA4213.png b/approved/html/EARoot/EA1/EA3/EA24/EA3/EA4213.png index c3aa33b31..4499b5a4b 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA24/EA3/EA4213.png and b/approved/html/EARoot/EA1/EA3/EA24/EA3/EA4213.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA24/EA3/EA4219.png b/approved/html/EARoot/EA1/EA3/EA24/EA3/EA4219.png index abd97f95e..7f7f0cad9 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA24/EA3/EA4219.png and b/approved/html/EARoot/EA1/EA3/EA24/EA3/EA4219.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA24/EA3/EA4225.png b/approved/html/EARoot/EA1/EA3/EA24/EA3/EA4225.png index 008367e0f..42287081f 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA24/EA3/EA4225.png and b/approved/html/EARoot/EA1/EA3/EA24/EA3/EA4225.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA24/EA3/EA4229.png b/approved/html/EARoot/EA1/EA3/EA24/EA3/EA4229.png index 16035eb46..71aeb7bf1 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA24/EA3/EA4229.png and b/approved/html/EARoot/EA1/EA3/EA24/EA3/EA4229.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA24/EA3/EA4238.htm b/approved/html/EARoot/EA1/EA3/EA24/EA3/EA4238.htm index 34da8e2f6..344678377 100644 --- a/approved/html/EARoot/EA1/EA3/EA24/EA3/EA4238.htm +++ b/approved/html/EARoot/EA1/EA3/EA24/EA3/EA4238.htm @@ -107,7 +107,7 @@ - Public LBS_MapFormat
  format + Public Distance
  width @@ -299,7 +299,7 @@ - Public Distance
  width + Public LBS_MapFormat
  format diff --git a/approved/html/EARoot/EA1/EA3/EA24/EA3/EA4239.htm b/approved/html/EARoot/EA1/EA3/EA24/EA3/EA4239.htm index 716627b4a..aaa472c28 100644 --- a/approved/html/EARoot/EA1/EA3/EA24/EA3/EA4239.htm +++ b/approved/html/EARoot/EA1/EA3/EA24/EA3/EA4239.htm @@ -155,7 +155,7 @@ - Public LBS_Location
  place + Public TM_Primitive
  time @@ -181,7 +181,7 @@ Range: - + Range:0 to * Transient: @@ -203,7 +203,7 @@ - Public TM_Primitive
  time + Public LBS_Location
  place @@ -229,7 +229,7 @@ Range: - Range:0 to * + Transient: diff --git a/approved/html/EARoot/EA1/EA3/EA24/EA3/EA4247.htm b/approved/html/EARoot/EA1/EA3/EA24/EA3/EA4247.htm index 2a21dd560..408521392 100644 --- a/approved/html/EARoot/EA1/EA3/EA24/EA3/EA4247.htm +++ b/approved/html/EARoot/EA1/EA3/EA24/EA3/EA4247.htm @@ -107,7 +107,7 @@ - Public LBS_EventInfo
  event + Public LBS_AccessInfo
  user @@ -155,7 +155,7 @@ - Public LBS_Trigger
  trigger + Public LBS_EventInfo
  event @@ -203,7 +203,7 @@ - Public TM_Primitive
  triggerTime + Public LBS_Trigger
  trigger @@ -251,7 +251,7 @@ - Public LBS_AccessInfo
  user + Public TM_Primitive
  triggerTime diff --git a/approved/html/EARoot/EA1/EA3/EA24/EA3/EA4252.htm b/approved/html/EARoot/EA1/EA3/EA24/EA3/EA4252.htm index 06c6fc32b..f24a638d3 100644 --- a/approved/html/EARoot/EA1/EA3/EA24/EA3/EA4252.htm +++ b/approved/html/EARoot/EA1/EA3/EA24/EA3/EA4252.htm @@ -108,7 +108,7 @@ - Public LBS_RouteConstraint
  constraints + Public LBS_Location
  start @@ -134,7 +134,7 @@ Range: - Range:0 to * + Transient: @@ -157,7 +157,7 @@ Notes: - The "constraints" indicate logical, legal or temporal limits to the type of route that is acceptable. For example, in vehicle navigation, the type of vehicle or its physical limitation put constraints on the types of road segment usable in the route. In multimodal navigation, if the traveller is handicapped, then there is a constraint on access. <br/> + The "start" of the route is the location from which the traveller plans to begin navigation. <br/> @@ -166,7 +166,7 @@ - Public LBS_CostFunction
  costFunction + Public LBS_Location
  wayPoints @@ -192,7 +192,7 @@ Range: - + Range:0 to * Transient: @@ -215,7 +215,7 @@ Notes: - The "costFunction" indicated to the routing service what the user wishes to optimize. With the exception of the preferences, the route returned should be an optimal or near optimal choice among all possibilities satisfying the constraints of the request, and passing from start to finish though the way points. <br/> + The "waypoints" of the route are the locations through which the traveller wishes the route to pass. The constraints may indicate that the interior way points (not 'start' or 'end') are to be navigated in order or not. The default is order free, since a restriction on order can be accomplished by requesting several routes at one time.  <br/> @@ -282,7 +282,7 @@ - Public LBS_Preference
  preferences + Public LBS_RouteConstraint
  constraints @@ -331,7 +331,7 @@ Notes: - "Preference" are weaker than constraints in that they are not logically necessary to the use of a route, but if they can be added to the constraints without incurring much cost (as set by the user preference), then the user would prefer the alternate. <br/> + The "constraints" indicate logical, legal or temporal limits to the type of route that is acceptable. For example, in vehicle navigation, the type of vehicle or its physical limitation put constraints on the types of road segment usable in the route. In multimodal navigation, if the traveller is handicapped, then there is a constraint on access. <br/> @@ -340,7 +340,7 @@ - Public LBS_Location
  start + Public LBS_Preference
  preferences @@ -366,7 +366,7 @@ Range: - + Range:0 to * Transient: @@ -389,7 +389,7 @@ Notes: - The "start" of the route is the location from which the traveller plans to begin navigation. <br/> + "Preference" are weaker than constraints in that they are not logically necessary to the use of a route, but if they can be added to the constraints without incurring much cost (as set by the user preference), then the user would prefer the alternate. <br/> @@ -398,7 +398,7 @@ - Public LBS_Location
  wayPoints + Public LBS_CostFunction
  costFunction @@ -424,7 +424,7 @@ Range: - Range:0 to * + Transient: @@ -447,7 +447,7 @@ Notes: - The "waypoints" of the route are the locations through which the traveller wishes the route to pass. The constraints may indicate that the interior way points (not 'start' or 'end') are to be navigated in order or not. The default is order free, since a restriction on order can be accomplished by requesting several routes at one time.  <br/> + The "costFunction" indicated to the routing service what the user wishes to optimize. With the exception of the preferences, the route returned should be an optimal or near optimal choice among all possibilities satisfying the constraints of the request, and passing from start to finish though the way points. <br/> diff --git a/approved/html/EARoot/EA1/EA3/EA25/EA1/EA1/EA4302.png b/approved/html/EARoot/EA1/EA3/EA25/EA1/EA1/EA4302.png index 09d4b3ad1..ba3bd5973 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA25/EA1/EA1/EA4302.png and b/approved/html/EARoot/EA1/EA3/EA25/EA1/EA1/EA4302.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA25/EA1/EA1/EA4304.png b/approved/html/EARoot/EA1/EA3/EA25/EA1/EA1/EA4304.png index d19ad2125..3f77ef4db 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA25/EA1/EA1/EA4304.png and b/approved/html/EARoot/EA1/EA3/EA25/EA1/EA1/EA4304.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA25/EA1/EA1/EA4305.htm b/approved/html/EARoot/EA1/EA3/EA25/EA1/EA1/EA4305.htm index e66f59b16..c3f741941 100644 --- a/approved/html/EARoot/EA1/EA3/EA25/EA1/EA1/EA4305.htm +++ b/approved/html/EARoot/EA1/EA3/EA25/EA1/EA1/EA4305.htm @@ -37,7 +37,7 @@ - + diff --git a/approved/html/EARoot/EA1/EA3/EA25/EA1/EA1/EA4306.png b/approved/html/EARoot/EA1/EA3/EA25/EA1/EA1/EA4306.png index 36a91bdf0..ca0e9a8c8 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA25/EA1/EA1/EA4306.png and b/approved/html/EARoot/EA1/EA3/EA25/EA1/EA1/EA4306.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA25/EA1/EA1/EA4307.htm b/approved/html/EARoot/EA1/EA3/EA25/EA1/EA1/EA4307.htm index 5ccafc160..ef433d7ce 100644 --- a/approved/html/EARoot/EA1/EA3/EA25/EA1/EA1/EA4307.htm +++ b/approved/html/EARoot/EA1/EA3/EA25/EA1/EA1/EA4307.htm @@ -37,7 +37,7 @@ - + diff --git a/approved/html/EARoot/EA1/EA3/EA25/EA1/EA1/EA4308.png b/approved/html/EARoot/EA1/EA3/EA25/EA1/EA1/EA4308.png index ac41d9c04..640fbcd44 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA25/EA1/EA1/EA4308.png and b/approved/html/EARoot/EA1/EA3/EA25/EA1/EA1/EA4308.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA25/EA1/EA1/EA4313.htm b/approved/html/EARoot/EA1/EA3/EA25/EA1/EA1/EA4313.htm index 6feee7136..794df6379 100644 --- a/approved/html/EARoot/EA1/EA3/EA25/EA1/EA1/EA4313.htm +++ b/approved/html/EARoot/EA1/EA3/EA25/EA1/EA1/EA4313.htm @@ -157,7 +157,7 @@ - Public AD_NamedPlace
  city + Public AD_StreetAddress
  street @@ -205,7 +205,7 @@ - Public AD_PhoneNumber
  phoneNumber + Public AD_NamedPlace
  city @@ -231,7 +231,7 @@ Range: - Range:0 to * + Range:0 to 1 Transient: @@ -253,7 +253,7 @@ - Public AD_PostalCode
  postalCode + Public AD_NamedPlace
  state @@ -301,7 +301,7 @@ - Public AD_NamedPlace
  state + Public AD_PostalCode
  postalCode @@ -349,7 +349,7 @@ - Public AD_StreetAddress
  street + Public AD_PhoneNumber
  phoneNumber @@ -375,7 +375,7 @@ Range: - Range:0 to 1 + Range:0 to * Transient: diff --git a/approved/html/EARoot/EA1/EA3/EA25/EA1/EA2/EA4315.png b/approved/html/EARoot/EA1/EA3/EA25/EA1/EA2/EA4315.png index 3705487ec..836a2334d 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA25/EA1/EA2/EA4315.png and b/approved/html/EARoot/EA1/EA3/EA25/EA1/EA2/EA4315.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA25/EA1/EA2/EA4316.htm b/approved/html/EARoot/EA1/EA3/EA25/EA1/EA2/EA4316.htm index f6e5f772b..45c7e9a89 100644 --- a/approved/html/EARoot/EA1/EA3/EA25/EA1/EA2/EA4316.htm +++ b/approved/html/EARoot/EA1/EA3/EA25/EA1/EA2/EA4316.htm @@ -38,7 +38,7 @@ - + diff --git a/approved/html/EARoot/EA1/EA3/EA25/EA1/EA2/EA4317.png b/approved/html/EARoot/EA1/EA3/EA25/EA1/EA2/EA4317.png index ff7a29604..c6297d52b 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA25/EA1/EA2/EA4317.png and b/approved/html/EARoot/EA1/EA3/EA25/EA1/EA2/EA4317.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA25/EA1/EA2/EA4319.png b/approved/html/EARoot/EA1/EA3/EA25/EA1/EA2/EA4319.png index a76a4741f..eeae3fc62 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA25/EA1/EA2/EA4319.png and b/approved/html/EARoot/EA1/EA3/EA25/EA1/EA2/EA4319.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA25/EA1/EA2/EA4321.png b/approved/html/EARoot/EA1/EA3/EA25/EA1/EA2/EA4321.png index 69f2c8da3..fe3989742 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA25/EA1/EA2/EA4321.png and b/approved/html/EARoot/EA1/EA3/EA25/EA1/EA2/EA4321.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA25/EA1/EA2/EA4325.png b/approved/html/EARoot/EA1/EA3/EA25/EA1/EA2/EA4325.png index 58f0895ca..655327d89 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA25/EA1/EA2/EA4325.png and b/approved/html/EARoot/EA1/EA3/EA25/EA1/EA2/EA4325.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA25/EA1/EA2/EA4327.png b/approved/html/EARoot/EA1/EA3/EA25/EA1/EA2/EA4327.png index 864a838eb..19427e360 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA25/EA1/EA2/EA4327.png and b/approved/html/EARoot/EA1/EA3/EA25/EA1/EA2/EA4327.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA25/EA1/EA2/EA4333.png b/approved/html/EARoot/EA1/EA3/EA25/EA1/EA2/EA4333.png index c7fffd4fd..59d5a0af8 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA25/EA1/EA2/EA4333.png and b/approved/html/EARoot/EA1/EA3/EA25/EA1/EA2/EA4333.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA25/EA1/EA2/EA4335.png b/approved/html/EARoot/EA1/EA3/EA25/EA1/EA2/EA4335.png index 24620f63d..d1c540ebe 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA25/EA1/EA2/EA4335.png and b/approved/html/EARoot/EA1/EA3/EA25/EA1/EA2/EA4335.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA25/EA1/EA2/EA4337.png b/approved/html/EARoot/EA1/EA3/EA25/EA1/EA2/EA4337.png index 6d6bb4815..903e40fc1 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA25/EA1/EA2/EA4337.png and b/approved/html/EARoot/EA1/EA3/EA25/EA1/EA2/EA4337.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA25/EA1/EA2/EA4339.png b/approved/html/EARoot/EA1/EA3/EA25/EA1/EA2/EA4339.png index 5752ae84f..340d71751 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA25/EA1/EA2/EA4339.png and b/approved/html/EARoot/EA1/EA3/EA25/EA1/EA2/EA4339.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA25/EA1/EA2/EA4341.png b/approved/html/EARoot/EA1/EA3/EA25/EA1/EA2/EA4341.png index b158bd1f8..1ff9523bd 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA25/EA1/EA2/EA4341.png and b/approved/html/EARoot/EA1/EA3/EA25/EA1/EA2/EA4341.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA25/EA1/EA2/EA4342.htm b/approved/html/EARoot/EA1/EA3/EA25/EA1/EA2/EA4342.htm index 1662bfe25..2b939f377 100644 --- a/approved/html/EARoot/EA1/EA3/EA25/EA1/EA2/EA4342.htm +++ b/approved/html/EARoot/EA1/EA3/EA25/EA1/EA2/EA4342.htm @@ -37,7 +37,7 @@ - + diff --git a/approved/html/EARoot/EA1/EA3/EA25/EA1/EA2/EA4343.png b/approved/html/EARoot/EA1/EA3/EA25/EA1/EA2/EA4343.png index 0bb219054..da9599d2a 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA25/EA1/EA2/EA4343.png and b/approved/html/EARoot/EA1/EA3/EA25/EA1/EA2/EA4343.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA25/EA1/EA2/EA4345.htm b/approved/html/EARoot/EA1/EA3/EA25/EA1/EA2/EA4345.htm index 97f597cc8..eb731e575 100644 --- a/approved/html/EARoot/EA1/EA3/EA25/EA1/EA2/EA4345.htm +++ b/approved/html/EARoot/EA1/EA3/EA25/EA1/EA2/EA4345.htm @@ -156,7 +156,7 @@ - Public CharacterString
  postfix + Public CharacterString
  prefix @@ -204,7 +204,7 @@ - Public CharacterString
  prefix + Public CharacterString
  postfix diff --git a/approved/html/EARoot/EA1/EA3/EA25/EA1/EA2/EA4347.htm b/approved/html/EARoot/EA1/EA3/EA25/EA1/EA2/EA4347.htm index a6a13dd78..7f98885f8 100644 --- a/approved/html/EARoot/EA1/EA3/EA25/EA1/EA2/EA4347.htm +++ b/approved/html/EARoot/EA1/EA3/EA25/EA1/EA2/EA4347.htm @@ -108,7 +108,7 @@ - Public CharacterString
  buildingName + Public CharacterString
  number @@ -156,7 +156,7 @@ - Public CharacterString
  number + Public AD_NamedPlace
  subdivision @@ -204,7 +204,7 @@ - Public AD_NamedPlace
  subdivision + Public CharacterString
  buildingName diff --git a/approved/html/EARoot/EA1/EA3/EA25/EA1/EA2/EA4350.htm b/approved/html/EARoot/EA1/EA3/EA25/EA1/EA2/EA4350.htm index 9220c63a4..d487e8e24 100644 --- a/approved/html/EARoot/EA1/EA3/EA25/EA1/EA2/EA4350.htm +++ b/approved/html/EARoot/EA1/EA3/EA25/EA1/EA2/EA4350.htm @@ -108,7 +108,7 @@ - Public Integer
  level + Public CharacterString
  name @@ -134,7 +134,7 @@ Range: - Range:0 to 1 + Transient: @@ -156,7 +156,7 @@ - Public CharacterString
  name + Public AD_RegionCode
  regionOrCountry @@ -204,7 +204,7 @@ - Public AD_RegionCode
  regionOrCountry + Public Integer
  level @@ -230,7 +230,7 @@ Range: - + Range:0 to 1 Transient: diff --git a/approved/html/EARoot/EA1/EA3/EA25/EA1/EA2/EA4351.htm b/approved/html/EARoot/EA1/EA3/EA25/EA1/EA2/EA4351.htm index ab9825783..c2a11431b 100644 --- a/approved/html/EARoot/EA1/EA3/EA25/EA1/EA2/EA4351.htm +++ b/approved/html/EARoot/EA1/EA3/EA25/EA1/EA2/EA4351.htm @@ -155,7 +155,7 @@ - Public <undefined>
  countrySecondarySubdivision + Public <undefined>
  countrySubdividsion @@ -203,7 +203,7 @@ - Public <undefined>
  countrySubdividsion + Public <undefined>
  countrySecondarySubdivision diff --git a/approved/html/EARoot/EA1/EA3/EA25/EA1/EA2/EA4354.htm b/approved/html/EARoot/EA1/EA3/EA25/EA1/EA2/EA4354.htm index 572f816fa..662cbf79f 100644 --- a/approved/html/EARoot/EA1/EA3/EA25/EA1/EA2/EA4354.htm +++ b/approved/html/EARoot/EA1/EA3/EA25/EA1/EA2/EA4354.htm @@ -108,7 +108,7 @@ - Public CharacterString
  addonCode + Public CharacterString
  code @@ -134,7 +134,7 @@ Range: - Range:0 to 1 + Transient: @@ -156,7 +156,7 @@ - Public CharacterString
  code + Public CharacterString
  addonCode @@ -182,7 +182,7 @@ Range: - + Range:0 to 1 Transient: diff --git a/approved/html/EARoot/EA1/EA3/EA25/EA1/EA2/EA4355.htm b/approved/html/EARoot/EA1/EA3/EA25/EA1/EA2/EA4355.htm index fb8fe3341..d62af4db4 100644 --- a/approved/html/EARoot/EA1/EA3/EA25/EA1/EA2/EA4355.htm +++ b/approved/html/EARoot/EA1/EA3/EA25/EA1/EA2/EA4355.htm @@ -107,7 +107,7 @@ - Public <undefined>
  ... + Public <undefined>
  AT @@ -155,7 +155,7 @@ - Public <undefined>
  AT + Public <undefined>
  BE @@ -203,7 +203,7 @@ - Public <undefined>
  BE + Public <undefined>
  CA @@ -251,7 +251,7 @@ - Public <undefined>
  CA + Public <undefined>
  ES @@ -299,7 +299,7 @@ - Public <undefined>
  CA-NB + Public <undefined>
  GB @@ -347,7 +347,7 @@ - Public <undefined>
  CA-NT + Public <undefined>
  US @@ -395,7 +395,7 @@ - Public <undefined>
  CA-NU + Public <undefined>
  VA @@ -443,7 +443,7 @@ - Public <undefined>
  ES + Public <undefined>
  US-VA @@ -491,7 +491,7 @@ - Public <undefined>
  GB + Public <undefined>
  CA-NB @@ -539,7 +539,7 @@ - Public <undefined>
  US + Public <undefined>
  CA-NT @@ -587,7 +587,7 @@ - Public <undefined>
  US-VA + Public <undefined>
  CA-NU @@ -635,7 +635,7 @@ - Public <undefined>
  VA + Public <undefined>
  ... diff --git a/approved/html/EARoot/EA1/EA3/EA25/EA1/EA2/EA4356.htm b/approved/html/EARoot/EA1/EA3/EA25/EA1/EA2/EA4356.htm index da80115d6..9e233613d 100644 --- a/approved/html/EARoot/EA1/EA3/EA25/EA1/EA2/EA4356.htm +++ b/approved/html/EARoot/EA1/EA3/EA25/EA1/EA2/EA4356.htm @@ -156,7 +156,7 @@ - Public CharacterString
  directionalSuffix + Public CharacterString
  typePrefix @@ -204,7 +204,7 @@ - Public AD_MuniQuadrant
  muniQuadrant + Public CharacterString
  officialName @@ -252,7 +252,7 @@ - Public CharacterString
  officialName + Public Boolean
  trailingSpaces @@ -266,7 +266,7 @@ Initial: - + "TRUE" Stereotype: @@ -300,7 +300,7 @@ - Public AD_PostalCode
  postalCode + Public CharacterString
  typeSuffix @@ -348,7 +348,7 @@ - Public Boolean
  trailingSpaces + Public CharacterString
  directionalSuffix @@ -362,7 +362,7 @@ Initial: - "TRUE" + Stereotype: @@ -396,7 +396,7 @@ - Public CharacterString
  typePrefix + Public AD_MuniQuadrant
  muniQuadrant @@ -444,7 +444,7 @@ - Public CharacterString
  typeSuffix + Public AD_PostalCode
  postalCode diff --git a/approved/html/EARoot/EA1/EA3/EA25/EA2/EA1/EA4381.png b/approved/html/EARoot/EA1/EA3/EA25/EA2/EA1/EA4381.png index d0690cf2b..82b8e6936 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA25/EA2/EA1/EA4381.png and b/approved/html/EARoot/EA1/EA3/EA25/EA2/EA1/EA4381.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA25/EA2/EA1/EA4385.png b/approved/html/EARoot/EA1/EA3/EA25/EA2/EA1/EA4385.png index be4115892..2e4a11751 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA25/EA2/EA1/EA4385.png and b/approved/html/EARoot/EA1/EA3/EA25/EA2/EA1/EA4385.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA25/EA2/EA1/EA4409.png b/approved/html/EARoot/EA1/EA3/EA25/EA2/EA1/EA4409.png index f611b4d01..d0f1156a8 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA25/EA2/EA1/EA4409.png and b/approved/html/EARoot/EA1/EA3/EA25/EA2/EA1/EA4409.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA25/EA2/EA1/EA4416.htm b/approved/html/EARoot/EA1/EA3/EA25/EA2/EA1/EA4416.htm index c48d8b712..e71f757b8 100644 --- a/approved/html/EARoot/EA1/EA3/EA25/EA2/EA1/EA4416.htm +++ b/approved/html/EARoot/EA1/EA3/EA25/EA2/EA1/EA4416.htm @@ -107,7 +107,7 @@ - Public <undefined>
  counts + Public <undefined>
  time @@ -155,7 +155,7 @@ - Public <undefined>
  currency + Public <undefined>
  waitingTime @@ -203,7 +203,7 @@ - Public <undefined>
  distance + Public <undefined>
  travelTime @@ -251,7 +251,7 @@ - Public <undefined>
  fares + Public <undefined>
  currency @@ -299,7 +299,7 @@ - Public <undefined>
  manuevers + Public <undefined>
  tolls @@ -347,7 +347,7 @@ - Public <undefined>
  time + Public <undefined>
  fares @@ -395,7 +395,7 @@ - Public <undefined>
  tolls + Public <undefined>
  counts @@ -443,7 +443,7 @@ - Public <undefined>
  transfers + Public <undefined>
  turns @@ -491,7 +491,7 @@ - Public <undefined>
  travelTime + Public <undefined>
  transfers @@ -539,7 +539,7 @@ - Public <undefined>
  turns + Public <undefined>
  manuevers @@ -587,7 +587,7 @@ - Public <undefined>
  waitingTime + Public <undefined>
  distance diff --git a/approved/html/EARoot/EA1/EA3/EA25/EA2/EA1/EA4418.htm b/approved/html/EARoot/EA1/EA3/EA25/EA2/EA1/EA4418.htm index f6486b068..e90ea203a 100644 --- a/approved/html/EARoot/EA1/EA3/EA25/EA2/EA1/EA4418.htm +++ b/approved/html/EARoot/EA1/EA3/EA25/EA2/EA1/EA4418.htm @@ -108,7 +108,7 @@ - Public NS_CostElementType
  type + Public UnitOfMeasure
  unit @@ -156,7 +156,7 @@ - Public UnitOfMeasure
  unit + Public NS_CostElementType
  type diff --git a/approved/html/EARoot/EA1/EA3/EA25/EA2/EA2/EA4434.png b/approved/html/EARoot/EA1/EA3/EA25/EA2/EA2/EA4434.png index 7cb9fc393..b5bdb0254 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA25/EA2/EA2/EA4434.png and b/approved/html/EARoot/EA1/EA3/EA25/EA2/EA2/EA4434.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA25/EA2/EA2/EA4436.png b/approved/html/EARoot/EA1/EA3/EA25/EA2/EA2/EA4436.png index 5b554d145..2a748088d 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA25/EA2/EA2/EA4436.png and b/approved/html/EARoot/EA1/EA3/EA25/EA2/EA2/EA4436.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA25/EA2/EA2/EA4440.png b/approved/html/EARoot/EA1/EA3/EA25/EA2/EA2/EA4440.png index 88f85f86e..62ebd6670 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA25/EA2/EA2/EA4440.png and b/approved/html/EARoot/EA1/EA3/EA25/EA2/EA2/EA4440.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA25/EA2/EA2/EA4442.png b/approved/html/EARoot/EA1/EA3/EA25/EA2/EA2/EA4442.png index 7f781e604..cd771a753 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA25/EA2/EA2/EA4442.png and b/approved/html/EARoot/EA1/EA3/EA25/EA2/EA2/EA4442.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA25/EA2/EA2/EA4444.png b/approved/html/EARoot/EA1/EA3/EA25/EA2/EA2/EA4444.png index ca11870ba..e1b418edd 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA25/EA2/EA2/EA4444.png and b/approved/html/EARoot/EA1/EA3/EA25/EA2/EA2/EA4444.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA25/EA2/EA2/EA4446.png b/approved/html/EARoot/EA1/EA3/EA25/EA2/EA2/EA4446.png index ee963383e..f020bfcd9 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA25/EA2/EA2/EA4446.png and b/approved/html/EARoot/EA1/EA3/EA25/EA2/EA2/EA4446.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA25/EA2/EA2/EA4450.png b/approved/html/EARoot/EA1/EA3/EA25/EA2/EA2/EA4450.png index f9037a231..277f901cf 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA25/EA2/EA2/EA4450.png and b/approved/html/EARoot/EA1/EA3/EA25/EA2/EA2/EA4450.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA25/EA2/EA2/EA4452.png b/approved/html/EARoot/EA1/EA3/EA25/EA2/EA2/EA4452.png index 7f8d7b381..7596fa5ca 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA25/EA2/EA2/EA4452.png and b/approved/html/EARoot/EA1/EA3/EA25/EA2/EA2/EA4452.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA25/EA2/EA2/EA4454.png b/approved/html/EARoot/EA1/EA3/EA25/EA2/EA2/EA4454.png index 2f0fb940f..799714982 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA25/EA2/EA2/EA4454.png and b/approved/html/EARoot/EA1/EA3/EA25/EA2/EA2/EA4454.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA25/EA2/EA2/EA4456.png b/approved/html/EARoot/EA1/EA3/EA25/EA2/EA2/EA4456.png index f18d14028..a62a04ccc 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA25/EA2/EA2/EA4456.png and b/approved/html/EARoot/EA1/EA3/EA25/EA2/EA2/EA4456.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA25/EA2/EA2/EA4462.png b/approved/html/EARoot/EA1/EA3/EA25/EA2/EA2/EA4462.png index fb392560a..4fa6b03a3 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA25/EA2/EA2/EA4462.png and b/approved/html/EARoot/EA1/EA3/EA25/EA2/EA2/EA4462.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA25/EA2/EA2/EA4470.htm b/approved/html/EARoot/EA1/EA3/EA25/EA2/EA2/EA4470.htm index 8d2b707bd..165b8e39c 100644 --- a/approved/html/EARoot/EA1/EA3/EA25/EA2/EA2/EA4470.htm +++ b/approved/html/EARoot/EA1/EA3/EA25/EA2/EA2/EA4470.htm @@ -155,7 +155,7 @@ - Public <undefined>
  numberTurns + Public <undefined>
  time @@ -203,7 +203,7 @@ - Public <undefined>
  time + Public <undefined>
  numberTurns diff --git a/approved/html/EARoot/EA1/EA3/EA25/EA2/EA2/EA4471.htm b/approved/html/EARoot/EA1/EA3/EA25/EA2/EA2/EA4471.htm index 8b8ee7659..05468a9cd 100644 --- a/approved/html/EARoot/EA1/EA3/EA25/EA2/EA2/EA4471.htm +++ b/approved/html/EARoot/EA1/EA3/EA25/EA2/EA2/EA4471.htm @@ -110,7 +110,7 @@ - Public CharacterString
  action + Public Measure
  cost @@ -136,7 +136,7 @@ Range: - Range:0 to 1 + Transient: @@ -153,12 +153,22 @@ -   +
+ + + + +
+ Notes: + + The cost calculated for this turn, and the following link. For example, the intruction migth say "turn right and go 40km" in which case the value for a distance-based cost function is "40km."<br/> +
+ - Public NT_Advisory
  advisory + Public CharacterString
  action @@ -184,7 +194,7 @@ Range: - Range:0 to * + Range:0 to 1 Transient: @@ -206,7 +216,7 @@ - Public Measure
  cost + Public NT_Advisory
  advisory @@ -232,7 +242,7 @@ Range: - + Range:0 to * Transient: @@ -249,17 +259,7 @@ -
- - - - -
- Notes: - - The cost calculated for this turn, and the following link. For example, the intruction migth say "turn right and go 40km" in which case the value for a distance-based cost function is "40km."<br/> -
- +   diff --git a/approved/html/EARoot/EA1/EA3/EA25/EA2/EA2/EA4475.htm b/approved/html/EARoot/EA1/EA3/EA25/EA2/EA2/EA4475.htm index 6a5199210..b00353f8d 100644 --- a/approved/html/EARoot/EA1/EA3/EA25/EA2/EA2/EA4475.htm +++ b/approved/html/EARoot/EA1/EA3/EA25/EA2/EA2/EA4475.htm @@ -108,7 +108,7 @@ - Public Sequence<Image>
  groundLevelView + Public Sequence<Map>
  map @@ -156,7 +156,7 @@ - Public NS_InstructionList
  instructionList + Public Sequence<VoiceStream>
  voice @@ -204,7 +204,7 @@ - Public Sequence<Map>
  map + Public Sequence<CharacterString>
  text @@ -252,7 +252,7 @@ - Public Sequence<CharacterString>
  text + Public Sequence<Image>
  groundLevelView @@ -300,7 +300,7 @@ - Public Sequence<VoiceStream>
  voice + Public NS_InstructionList
  instructionList diff --git a/approved/html/EARoot/EA1/EA3/EA25/EA2/EA2/EA4477.htm b/approved/html/EARoot/EA1/EA3/EA25/EA2/EA2/EA4477.htm index 61efeb508..70ba9ce59 100644 --- a/approved/html/EARoot/EA1/EA3/EA25/EA2/EA2/EA4477.htm +++ b/approved/html/EARoot/EA1/EA3/EA25/EA2/EA2/EA4477.htm @@ -107,7 +107,7 @@ - Public <undefined>
  groundLevelView + Public <undefined>
  map @@ -155,7 +155,7 @@ - Public <undefined>
  maneuverInstructions + Public <undefined>
  voice @@ -203,7 +203,7 @@ - Public <undefined>
  map + Public <undefined>
  text @@ -251,7 +251,7 @@ - Public <undefined>
  text + Public <undefined>
  groundLevelView @@ -299,7 +299,7 @@ - Public <undefined>
  voice + Public <undefined>
  maneuverInstructions diff --git a/approved/html/EARoot/EA1/EA3/EA25/EA2/EA2/EA4478.htm b/approved/html/EARoot/EA1/EA3/EA25/EA2/EA2/EA4478.htm index 6a81634ef..29a92a2c3 100644 --- a/approved/html/EARoot/EA1/EA3/EA25/EA2/EA2/EA4478.htm +++ b/approved/html/EARoot/EA1/EA3/EA25/EA2/EA2/EA4478.htm @@ -110,7 +110,7 @@ - Public NT_AdvisoryCategory
  advisories + Public NS_RouteRequestType
  routeRequestType @@ -136,7 +136,7 @@ Range: - Range:0 to * + Transient: @@ -158,7 +158,7 @@ - Public TM_Period
  arrivalTime + Public NT_Vehicle
  vehicle @@ -184,7 +184,7 @@ Range: - Range:0 to 1 + Transient: @@ -206,7 +206,7 @@ - Public NS_AvoidList
  avoidList + Public NT_WayPointList
  wayPointList @@ -254,7 +254,7 @@ - Public NS_CostFunctionCode
  costFunction + Public NS_AvoidList
  avoidList @@ -268,7 +268,7 @@ Initial: - "distance" + Stereotype: @@ -280,7 +280,7 @@ Range: - Range:0 to 1 + Transient: @@ -350,7 +350,7 @@ - Public Boolean
  isDynamic + Public TM_Period
  arrivalTime @@ -364,7 +364,7 @@ Initial: - FALSE + Stereotype: @@ -376,7 +376,7 @@ Range: - + Range:0 to 1 Transient: @@ -398,7 +398,7 @@ - Public NS_RoutePreferences
  preferences + Public NS_CostFunctionCode
  costFunction @@ -412,7 +412,7 @@ Initial: - + "distance" Stereotype: @@ -424,7 +424,7 @@ Range: - Range:0 to * + Range:0 to 1 Transient: @@ -446,7 +446,7 @@ - Public TM_Duration
  refreshInterval + Public NS_RoutePreferences
  preferences @@ -472,7 +472,7 @@ Range: - Range:0 to 1 + Range:0 to * Transient: @@ -494,7 +494,7 @@ - Public Boolean
  returnRouteGeometry + Public NT_AdvisoryCategory
  advisories @@ -520,7 +520,7 @@ Range: - + Range:0 to * Transient: @@ -542,7 +542,7 @@ - Public Boolean
  returnRouteInstructions + Public Boolean
  isDynamic @@ -556,7 +556,7 @@ Initial: - + FALSE Stereotype: @@ -590,7 +590,7 @@ - Public Boolean
  returnRouteMaps + Public TM_Duration
  refreshInterval @@ -616,7 +616,7 @@ Range: - + Range:0 to 1 Transient: @@ -638,7 +638,7 @@ - Public NS_RouteRequestType
  routeRequestType + Public Boolean
  returnRouteInstructions @@ -686,7 +686,7 @@ - Public NT_Vehicle
  vehicle + Public Boolean
  returnRouteMaps @@ -734,7 +734,7 @@ - Public NT_WayPointList
  wayPointList + Public Boolean
  returnRouteGeometry diff --git a/approved/html/EARoot/EA1/EA3/EA25/EA2/EA2/EA4479.htm b/approved/html/EARoot/EA1/EA3/EA25/EA2/EA2/EA4479.htm index b4c1099a2..09e7b4cd3 100644 --- a/approved/html/EARoot/EA1/EA3/EA25/EA2/EA2/EA4479.htm +++ b/approved/html/EARoot/EA1/EA3/EA25/EA2/EA2/EA4479.htm @@ -155,7 +155,7 @@ - Public <undefined>
  complex + Public <undefined>
  predictive @@ -251,7 +251,7 @@ - Public <undefined>
  predictive + Public <undefined>
  complex diff --git a/approved/html/EARoot/EA1/EA3/EA25/EA2/EA3/EA4482.png b/approved/html/EARoot/EA1/EA3/EA25/EA2/EA3/EA4482.png index a93771dea..902cc9312 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA25/EA2/EA3/EA4482.png and b/approved/html/EARoot/EA1/EA3/EA25/EA2/EA3/EA4482.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA25/EA2/EA3/EA4484.png b/approved/html/EARoot/EA1/EA3/EA25/EA2/EA3/EA4484.png index 96c21bb71..192587031 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA25/EA2/EA3/EA4484.png and b/approved/html/EARoot/EA1/EA3/EA25/EA2/EA3/EA4484.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA25/EA2/EA3/EA4488.htm b/approved/html/EARoot/EA1/EA3/EA25/EA2/EA3/EA4488.htm index 1dfbe60c9..be2163cd9 100644 --- a/approved/html/EARoot/EA1/EA3/EA25/EA2/EA3/EA4488.htm +++ b/approved/html/EARoot/EA1/EA3/EA25/EA2/EA3/EA4488.htm @@ -108,7 +108,7 @@ - Public CharacterString
  mode + Public NT_WayPoint
  pointElement @@ -156,7 +156,7 @@ - Public NT_WayPoint
  pointElement + Public CharacterString
  mode diff --git a/approved/html/EARoot/EA1/EA3/EA25/EA2/EA3/EA4489.htm b/approved/html/EARoot/EA1/EA3/EA25/EA2/EA3/EA4489.htm index c43d65d0e..5ff0f9b29 100644 --- a/approved/html/EARoot/EA1/EA3/EA25/EA2/EA3/EA4489.htm +++ b/approved/html/EARoot/EA1/EA3/EA25/EA2/EA3/EA4489.htm @@ -108,7 +108,7 @@ - Public <undefined>
  avoidMajorHighways + Public <undefined>
  scenic @@ -252,7 +252,7 @@ - Public <undefined>
  scenic + Public <undefined>
  avoidMajorHighways diff --git a/approved/html/EARoot/EA1/EA3/EA25/EA3/EA1/EA4533.png b/approved/html/EARoot/EA1/EA3/EA25/EA3/EA1/EA4533.png index abc85adb1..2550ef486 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA25/EA3/EA1/EA4533.png and b/approved/html/EARoot/EA1/EA3/EA25/EA3/EA1/EA4533.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA25/EA3/EA1/EA4539.png b/approved/html/EARoot/EA1/EA3/EA25/EA3/EA1/EA4539.png index f357c260a..7029fb7bf 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA25/EA3/EA1/EA4539.png and b/approved/html/EARoot/EA1/EA3/EA25/EA3/EA1/EA4539.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA25/EA3/EA1/EA4543.png b/approved/html/EARoot/EA1/EA3/EA25/EA3/EA1/EA4543.png index e0f1435a2..7437b9053 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA25/EA3/EA1/EA4543.png and b/approved/html/EARoot/EA1/EA3/EA25/EA3/EA1/EA4543.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA25/EA3/EA2/EA4550.png b/approved/html/EARoot/EA1/EA3/EA25/EA3/EA2/EA4550.png index 6c8cd4c0b..8c5bfe992 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA25/EA3/EA2/EA4550.png and b/approved/html/EARoot/EA1/EA3/EA25/EA3/EA2/EA4550.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA25/EA3/EA2/EA4552.png b/approved/html/EARoot/EA1/EA3/EA25/EA3/EA2/EA4552.png index a34794f65..6cbfbaa5a 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA25/EA3/EA2/EA4552.png and b/approved/html/EARoot/EA1/EA3/EA25/EA3/EA2/EA4552.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA25/EA3/EA2/EA4554.png b/approved/html/EARoot/EA1/EA3/EA25/EA3/EA2/EA4554.png index ffdd8785c..30da094d3 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA25/EA3/EA2/EA4554.png and b/approved/html/EARoot/EA1/EA3/EA25/EA3/EA2/EA4554.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA25/EA3/EA2/EA4560.png b/approved/html/EARoot/EA1/EA3/EA25/EA3/EA2/EA4560.png index 880723590..222b29625 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA25/EA3/EA2/EA4560.png and b/approved/html/EARoot/EA1/EA3/EA25/EA3/EA2/EA4560.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA25/EA3/EA2/EA4562.png b/approved/html/EARoot/EA1/EA3/EA25/EA3/EA2/EA4562.png index 54cbfb1c8..33a951116 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA25/EA3/EA2/EA4562.png and b/approved/html/EARoot/EA1/EA3/EA25/EA3/EA2/EA4562.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA25/EA3/EA2/EA4566.png b/approved/html/EARoot/EA1/EA3/EA25/EA3/EA2/EA4566.png index 5b2d3dba8..3724cbfb1 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA25/EA3/EA2/EA4566.png and b/approved/html/EARoot/EA1/EA3/EA25/EA3/EA2/EA4566.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA25/EA3/EA2/EA4568.png b/approved/html/EARoot/EA1/EA3/EA25/EA3/EA2/EA4568.png index 653a45640..785dd9e3c 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA25/EA3/EA2/EA4568.png and b/approved/html/EARoot/EA1/EA3/EA25/EA3/EA2/EA4568.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA25/EA3/EA2/EA4570.png b/approved/html/EARoot/EA1/EA3/EA25/EA3/EA2/EA4570.png index 39291ff6c..8dab3fd6d 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA25/EA3/EA2/EA4570.png and b/approved/html/EARoot/EA1/EA3/EA25/EA3/EA2/EA4570.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA25/EA3/EA2/EA4572.png b/approved/html/EARoot/EA1/EA3/EA25/EA3/EA2/EA4572.png index 4d09872e6..24f65ae3e 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA25/EA3/EA2/EA4572.png and b/approved/html/EARoot/EA1/EA3/EA25/EA3/EA2/EA4572.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA25/EA3/EA2/EA4574.png b/approved/html/EARoot/EA1/EA3/EA25/EA3/EA2/EA4574.png index 3f05dbc65..59dece29e 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA25/EA3/EA2/EA4574.png and b/approved/html/EARoot/EA1/EA3/EA25/EA3/EA2/EA4574.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA25/EA3/EA2/EA4576.png b/approved/html/EARoot/EA1/EA3/EA25/EA3/EA2/EA4576.png index 7d810922d..b1e80ecdf 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA25/EA3/EA2/EA4576.png and b/approved/html/EARoot/EA1/EA3/EA25/EA3/EA2/EA4576.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA25/EA3/EA2/EA4580.png b/approved/html/EARoot/EA1/EA3/EA25/EA3/EA2/EA4580.png index 4d09872e6..24f65ae3e 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA25/EA3/EA2/EA4580.png and b/approved/html/EARoot/EA1/EA3/EA25/EA3/EA2/EA4580.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA25/EA3/EA2/EA4583.htm b/approved/html/EARoot/EA1/EA3/EA25/EA3/EA2/EA4583.htm index 68e7353cd..5df773790 100644 --- a/approved/html/EARoot/EA1/EA3/EA25/EA3/EA2/EA4583.htm +++ b/approved/html/EARoot/EA1/EA3/EA25/EA3/EA2/EA4583.htm @@ -107,7 +107,7 @@ - Public <undefined>
  byPass + Public <undefined>
  startLocation @@ -155,7 +155,7 @@ - Public <undefined>
  crossRoad + Public <undefined>
  endLocation @@ -203,7 +203,7 @@ - Public <undefined>
  endLocation + Public <undefined>
  viaLocation @@ -347,7 +347,7 @@ - Public <undefined>
  highwayMerge + Public <undefined>
  byPass @@ -395,7 +395,7 @@ - Public <undefined>
  landmark + Public <undefined>
  streetNameChange @@ -443,7 +443,7 @@ - Public <undefined>
  rampMerge + Public <undefined>
  tollBooth @@ -491,7 +491,7 @@ - Public <undefined>
  roadMerge + Public <undefined>
  landmark @@ -539,7 +539,7 @@ - Public <undefined>
  startLocation + Public <undefined>
  crossRoad @@ -587,7 +587,7 @@ - Public <undefined>
  streetNameChange + Public <undefined>
  highwayMerge @@ -635,7 +635,7 @@ - Public <undefined>
  tollBooth + Public <undefined>
  rampMerge @@ -683,7 +683,7 @@ - Public <undefined>
  viaLocation + Public <undefined>
  roadMerge diff --git a/approved/html/EARoot/EA1/EA3/EA25/EA3/EA2/EA4588.htm b/approved/html/EARoot/EA1/EA3/EA25/EA3/EA2/EA4588.htm index 176105d4e..033d315ba 100644 --- a/approved/html/EARoot/EA1/EA3/EA25/EA3/EA2/EA4588.htm +++ b/approved/html/EARoot/EA1/EA3/EA25/EA3/EA2/EA4588.htm @@ -111,7 +111,7 @@ - Public CharacterString
  description + Public TM_Primitive
  temporalValidity @@ -160,7 +160,7 @@ Notes: - This is a natural language description of the constraint, and may contain additional advisory information to be used in creatng instructions that this constraint plays a role in. <br/> + The attribute "temporalValidity" specifies the times at which this constraint is valid. In a temproal constraint, the temporalValidity may be used to indicate a larter time frame within which the temporal constaint is valid. For example, the temporalValidity may be "April-September" while the temproal constraint  list "Monday-Friday, 8AM to 10AM" meaing that the constaint is active only during those months, those days and between those times. <br/> @@ -169,7 +169,7 @@ - Public TM_Primitive
  temporalValidity + Public CharacterString
  description @@ -218,7 +218,7 @@ Notes: - The attribute "temporalValidity" specifies the times at which this constraint is valid. In a temproal constraint, the temporalValidity may be used to indicate a larter time frame within which the temporal constaint is valid. For example, the temporalValidity may be "April-September" while the temproal constraint  list "Monday-Friday, 8AM to 10AM" meaing that the constaint is active only during those months, those days and between those times. <br/> + This is a natural language description of the constraint, and may contain additional advisory information to be used in creatng instructions that this constraint plays a role in. <br/> diff --git a/approved/html/EARoot/EA1/EA3/EA25/EA3/EA2/EA4590.htm b/approved/html/EARoot/EA1/EA3/EA25/EA3/EA2/EA4590.htm index 1706cc55a..b448bb1b7 100644 --- a/approved/html/EARoot/EA1/EA3/EA25/EA3/EA2/EA4590.htm +++ b/approved/html/EARoot/EA1/EA3/EA25/EA3/EA2/EA4590.htm @@ -109,7 +109,7 @@ - Public Integer
  allowedLanes + Public Distance
  turningRadius @@ -152,22 +152,12 @@ -
- - - - -
- Notes: - - The allowed lanes from which the turn can be made. "+1" is the left most lane. Positive numbers count from the left. <br/>"-1" is the right most lane. Negative numbers count from the right.<br/> -
- +   - Public NT_Vehicle
  applicableVehicleTypes + Public Integer
  allowedLanes @@ -210,7 +200,17 @@ -   +
+ + + + +
+ Notes: + + The allowed lanes from which the turn can be made. "+1" is the left most lane. Positive numbers count from the left. <br/>"-1" is the right most lane. Negative numbers count from the right.<br/> +
+ @@ -273,7 +273,7 @@ - Public Distance
  turningRadius + Public NT_Vehicle
  applicableVehicleTypes diff --git a/approved/html/EARoot/EA1/EA3/EA25/EA3/EA2/EA4591.htm b/approved/html/EARoot/EA1/EA3/EA25/EA3/EA2/EA4591.htm index 0064de398..2be7dcb07 100644 --- a/approved/html/EARoot/EA1/EA3/EA25/EA3/EA2/EA4591.htm +++ b/approved/html/EARoot/EA1/EA3/EA25/EA3/EA2/EA4591.htm @@ -155,7 +155,7 @@ - Public <undefined>
  overRoute + Public <undefined>
  rightOfRoute @@ -203,7 +203,7 @@ - Public <undefined>
  rightOfRoute + Public <undefined>
  overRoute diff --git a/approved/html/EARoot/EA1/EA3/EA25/EA3/EA2/EA4593.htm b/approved/html/EARoot/EA1/EA3/EA25/EA3/EA2/EA4593.htm index 0eacacbfd..1ef02793f 100644 --- a/approved/html/EARoot/EA1/EA3/EA25/EA3/EA2/EA4593.htm +++ b/approved/html/EARoot/EA1/EA3/EA25/EA3/EA2/EA4593.htm @@ -108,7 +108,7 @@ - Public <undefined>
  4WheelDrive + Public <undefined>
  allVehicles @@ -156,7 +156,7 @@ - Public <undefined>
  allVehicles + Public <undefined>
  passengerCars @@ -204,7 +204,7 @@ - Public <undefined>
  bicycle + Public <undefined>
  truck @@ -252,7 +252,7 @@ - Public <undefined>
  carWithTrailer + Public <undefined>
  deliveryTruck @@ -300,7 +300,7 @@ - Public <undefined>
  dangerousCargo + Public <undefined>
  transportTruck @@ -348,7 +348,7 @@ - Public <undefined>
  deliveryTruck + Public <undefined>
  pedestrian @@ -396,7 +396,7 @@ - Public <undefined>
  disableOccupant + Public <undefined>
  bicycle @@ -444,7 +444,7 @@ - Public <undefined>
  emergency + Public <undefined>
  motorcycle @@ -492,7 +492,7 @@ - Public <undefined>
  employee + Public <undefined>
  moped @@ -540,7 +540,7 @@ - Public <undefined>
  explosiveCargo + Public <undefined>
  emergency @@ -588,7 +588,7 @@ - Public <undefined>
  facility + Public <undefined>
  taxi @@ -636,7 +636,7 @@ - Public <undefined>
  farm + Public <undefined>
  publicBus @@ -684,7 +684,7 @@ - Public <undefined>
  hov + Public <undefined>
  facility @@ -732,7 +732,7 @@ - Public <undefined>
  lightRail + Public <undefined>
  residential @@ -780,7 +780,7 @@ - Public <undefined>
  mailDelivery + Public <undefined>
  employee @@ -828,7 +828,7 @@ - Public <undefined>
  military + Public <undefined>
  hov @@ -876,7 +876,7 @@ - Public <undefined>
  moped + Public <undefined>
  military @@ -924,7 +924,7 @@ - Public <undefined>
  motorcycle + Public <undefined>
  carWithTrailer @@ -972,7 +972,7 @@ - Public <undefined>
  passengerCars + Public <undefined>
  privateBus @@ -1020,7 +1020,7 @@ - Public <undefined>
  pedestrian + Public <undefined>
  farm @@ -1068,7 +1068,7 @@ - Public <undefined>
  pollutingToWaterCargo + Public <undefined>
  explosiveCargo @@ -1116,7 +1116,7 @@ - Public <undefined>
  privateBus + Public <undefined>
  pollutingToWaterCargo @@ -1164,7 +1164,7 @@ - Public <undefined>
  publicBus + Public <undefined>
  dangerousCargo @@ -1212,7 +1212,7 @@ - Public <undefined>
  residential + Public <undefined>
  trolleyBus @@ -1260,7 +1260,7 @@ - Public <undefined>
  schoolBus + Public <undefined>
  lightRail @@ -1308,7 +1308,7 @@ - Public <undefined>
  snowChains + Public <undefined>
  schoolBus @@ -1356,7 +1356,7 @@ - Public <undefined>
  tanker + Public <undefined>
  4WheelDrive @@ -1404,7 +1404,7 @@ - Public <undefined>
  taxi + Public <undefined>
  snowChains @@ -1452,7 +1452,7 @@ - Public <undefined>
  transportTruck + Public <undefined>
  mailDelivery @@ -1500,7 +1500,7 @@ - Public <undefined>
  trolleyBus + Public <undefined>
  tanker @@ -1548,7 +1548,7 @@ - Public <undefined>
  truck + Public <undefined>
  disableOccupant diff --git a/approved/html/EARoot/EA1/EA3/EA25/EA3/EA2/EA4594.htm b/approved/html/EARoot/EA1/EA3/EA25/EA3/EA2/EA4594.htm index c56d741c9..1f9accf5a 100644 --- a/approved/html/EARoot/EA1/EA3/EA25/EA3/EA2/EA4594.htm +++ b/approved/html/EARoot/EA1/EA3/EA25/EA3/EA2/EA4594.htm @@ -205,7 +205,7 @@ - Public Angle
  grade + Public Distance
  turnRadius @@ -231,7 +231,7 @@ Range: - Range:0 to 2 + Range:0 to 1 Transient: @@ -253,7 +253,7 @@ - Public Distance
  maxClearance + Public Angle
  grade @@ -279,7 +279,7 @@ Range: - Range:0 to 1 + Range:0 to 2 Transient: @@ -349,7 +349,7 @@ - Public Distance
  turnRadius + Public Distance
  maxClearance diff --git a/approved/html/EARoot/EA1/EA3/EA25/EA3/EA3/EA4596.png b/approved/html/EARoot/EA1/EA3/EA25/EA3/EA3/EA4596.png index 574273067..74bb2deb1 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA25/EA3/EA3/EA4596.png and b/approved/html/EARoot/EA1/EA3/EA25/EA3/EA3/EA4596.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA25/EA3/EA3/EA4598.png b/approved/html/EARoot/EA1/EA3/EA25/EA3/EA3/EA4598.png index 46c8e9938..0105578fd 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA25/EA3/EA3/EA4598.png and b/approved/html/EARoot/EA1/EA3/EA25/EA3/EA3/EA4598.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA25/EA3/EA3/EA4600.png b/approved/html/EARoot/EA1/EA3/EA25/EA3/EA3/EA4600.png index 1d1b91f34..fa326cedc 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA25/EA3/EA3/EA4600.png and b/approved/html/EARoot/EA1/EA3/EA25/EA3/EA3/EA4600.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA25/EA3/EA3/EA4605.htm b/approved/html/EARoot/EA1/EA3/EA25/EA3/EA3/EA4605.htm index 200580515..e55d49e4f 100644 --- a/approved/html/EARoot/EA1/EA3/EA25/EA3/EA3/EA4605.htm +++ b/approved/html/EARoot/EA1/EA3/EA25/EA3/EA3/EA4605.htm @@ -107,7 +107,7 @@ - Public <undefined>
  airRoute + Public <undefined>
  road @@ -155,7 +155,7 @@ - Public <undefined>
  airway + Public <undefined>
  ferry @@ -203,7 +203,7 @@ - Public <undefined>
  bikepath + Public <undefined>
  rail @@ -251,7 +251,7 @@ - Public <undefined>
  bridge + Public <undefined>
  walkway @@ -299,7 +299,7 @@ - Public <undefined>
  bus + Public <undefined>
  subway @@ -347,7 +347,7 @@ - Public <undefined>
  endway + Public <undefined>
  airway @@ -395,7 +395,7 @@ - Public <undefined>
  ferry + Public <undefined>
  lightRail @@ -443,7 +443,7 @@ - Public <undefined>
  lightRail + Public <undefined>
  bus @@ -491,7 +491,7 @@ - Public <undefined>
  rail + Public <undefined>
  airRoute @@ -539,7 +539,7 @@ - Public <undefined>
  road + Public <undefined>
  bikepath @@ -587,7 +587,7 @@ - Public <undefined>
  subway + Public <undefined>
  toll @@ -635,7 +635,7 @@ - Public <undefined>
  toll + Public <undefined>
  tunnel @@ -683,7 +683,7 @@ - Public <undefined>
  tunnel + Public <undefined>
  endway @@ -731,7 +731,7 @@ - Public <undefined>
  walkway + Public <undefined>
  bridge diff --git a/approved/html/EARoot/EA1/EA3/EA25/EA3/EA4/EA4607.png b/approved/html/EARoot/EA1/EA3/EA25/EA3/EA4/EA4607.png index f94b4cf85..8d83d82ee 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA25/EA3/EA4/EA4607.png and b/approved/html/EARoot/EA1/EA3/EA25/EA3/EA4/EA4607.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA25/EA3/EA4/EA4609.png b/approved/html/EARoot/EA1/EA3/EA25/EA3/EA4/EA4609.png index 74bab3cb0..26fdeebbb 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA25/EA3/EA4/EA4609.png and b/approved/html/EARoot/EA1/EA3/EA25/EA3/EA4/EA4609.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA25/EA3/EA4/EA4611.png b/approved/html/EARoot/EA1/EA3/EA25/EA3/EA4/EA4611.png index 6b619ab83..1dbea5d43 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA25/EA3/EA4/EA4611.png and b/approved/html/EARoot/EA1/EA3/EA25/EA3/EA4/EA4611.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA25/EA3/EA4/EA4613.png b/approved/html/EARoot/EA1/EA3/EA25/EA3/EA4/EA4613.png index cadfd777d..c22286407 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA25/EA3/EA4/EA4613.png and b/approved/html/EARoot/EA1/EA3/EA25/EA3/EA4/EA4613.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA25/EA3/EA4/EA4619.htm b/approved/html/EARoot/EA1/EA3/EA25/EA3/EA4/EA4619.htm index 750197d1d..2a7b68e95 100644 --- a/approved/html/EARoot/EA1/EA3/EA25/EA3/EA4/EA4619.htm +++ b/approved/html/EARoot/EA1/EA3/EA25/EA3/EA4/EA4619.htm @@ -108,7 +108,7 @@ - Public NT_WayPoint
  endPoint + Public NT_WayPoint
  startPoint @@ -156,7 +156,7 @@ - Public Boolean
  isOrdered + Public NT_WayPoint
  viaPoint @@ -170,7 +170,7 @@ Initial: - TRUE + Stereotype: @@ -182,7 +182,7 @@ Range: - + Range:0 to * Transient: @@ -199,22 +199,12 @@ -
- - - - -
- Notes: - - Whether or not the order of the via point list is part of the route requirements. <br/> -
- +   - Public NT_WayPoint
  startPoint + Public NT_WayPoint
  endPoint @@ -262,7 +252,7 @@ - Public NT_WayPoint
  viaPoint + Public Boolean
  isOrdered @@ -276,7 +266,7 @@ Initial: - + TRUE Stereotype: @@ -288,7 +278,7 @@ Range: - Range:0 to * + Transient: @@ -305,7 +295,17 @@ -   +
+ + + + +
+ Notes: + + Whether or not the order of the via point list is part of the route requirements. <br/> +
+ diff --git a/approved/html/EARoot/EA1/EA3/EA25/EA3/EA5/EA4623.png b/approved/html/EARoot/EA1/EA3/EA25/EA3/EA5/EA4623.png index 6a3e8a560..fb82600a3 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA25/EA3/EA5/EA4623.png and b/approved/html/EARoot/EA1/EA3/EA25/EA3/EA5/EA4623.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA25/EA3/EA5/EA4627.png b/approved/html/EARoot/EA1/EA3/EA25/EA3/EA5/EA4627.png index caf2165ee..24edc331d 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA25/EA3/EA5/EA4627.png and b/approved/html/EARoot/EA1/EA3/EA25/EA3/EA5/EA4627.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA25/EA3/EA5/EA4630.htm b/approved/html/EARoot/EA1/EA3/EA25/EA3/EA5/EA4630.htm index a82e321bb..0d8522480 100644 --- a/approved/html/EARoot/EA1/EA3/EA25/EA3/EA5/EA4630.htm +++ b/approved/html/EARoot/EA1/EA3/EA25/EA3/EA5/EA4630.htm @@ -108,7 +108,7 @@ - Public NT_LinkPosition
  linkPosition + Public NT_Junction
  node @@ -156,7 +156,7 @@ - Public NT_Junction
  node + Public NT_LinkPosition
  linkPosition diff --git a/approved/html/EARoot/EA1/EA3/EA25/EA3/EA6/EA4632.png b/approved/html/EARoot/EA1/EA3/EA25/EA3/EA6/EA4632.png index f7e800b52..1fae4155a 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA25/EA3/EA6/EA4632.png and b/approved/html/EARoot/EA1/EA3/EA25/EA3/EA6/EA4632.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA25/EA3/EA6/EA4634.png b/approved/html/EARoot/EA1/EA3/EA25/EA3/EA6/EA4634.png index e32af9f99..5bce55bc5 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA25/EA3/EA6/EA4634.png and b/approved/html/EARoot/EA1/EA3/EA25/EA3/EA6/EA4634.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA25/EA3/EA6/EA4636.png b/approved/html/EARoot/EA1/EA3/EA25/EA3/EA6/EA4636.png index d1d399e03..8fc85817a 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA25/EA3/EA6/EA4636.png and b/approved/html/EARoot/EA1/EA3/EA25/EA3/EA6/EA4636.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA25/EA3/EA6/EA4638.png b/approved/html/EARoot/EA1/EA3/EA25/EA3/EA6/EA4638.png index 741657e35..efe345db9 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA25/EA3/EA6/EA4638.png and b/approved/html/EARoot/EA1/EA3/EA25/EA3/EA6/EA4638.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA25/EA3/EA6/EA4643.htm b/approved/html/EARoot/EA1/EA3/EA25/EA3/EA6/EA4643.htm index 5cc484c10..d2a331181 100644 --- a/approved/html/EARoot/EA1/EA3/EA25/EA3/EA6/EA4643.htm +++ b/approved/html/EARoot/EA1/EA3/EA25/EA3/EA6/EA4643.htm @@ -111,7 +111,7 @@ - Public GM_CompositeCurve
  geometry + Public NT_RouteSummary
  summary @@ -159,7 +159,7 @@ - Public NT_RouteSummary
  summary + Public GM_CompositeCurve
  geometry diff --git a/approved/html/EARoot/EA1/EA3/EA25/EA3/EA6/EA4644.htm b/approved/html/EARoot/EA1/EA3/EA25/EA3/EA6/EA4644.htm index e43cbc326..80e1e2e39 100644 --- a/approved/html/EARoot/EA1/EA3/EA25/EA3/EA6/EA4644.htm +++ b/approved/html/EARoot/EA1/EA3/EA25/EA3/EA6/EA4644.htm @@ -108,7 +108,7 @@ - Public NT_NetworkPosition
  begin + Public TM_Duration
  time @@ -204,7 +204,7 @@ - Public NT_NetworkPosition
  end + Public EX_GeographicExtent
  extent @@ -252,7 +252,7 @@ - Public EX_GeographicExtent
  extent + Public NT_NetworkPosition
  begin @@ -348,7 +348,7 @@ - Public TM_Duration
  time + Public NT_NetworkPosition
  end diff --git a/approved/html/EARoot/EA1/EA3/EA25/EA3/EA7/EA4648.png b/approved/html/EARoot/EA1/EA3/EA25/EA3/EA7/EA4648.png index 9039740c7..aeff031b9 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA25/EA3/EA7/EA4648.png and b/approved/html/EARoot/EA1/EA3/EA25/EA3/EA7/EA4648.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA25/EA3/EA7/EA4650.png b/approved/html/EARoot/EA1/EA3/EA25/EA3/EA7/EA4650.png index 34f8e90dc..38af41058 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA25/EA3/EA7/EA4650.png and b/approved/html/EARoot/EA1/EA3/EA25/EA3/EA7/EA4650.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA25/EA3/EA7/EA4652.png b/approved/html/EARoot/EA1/EA3/EA25/EA3/EA7/EA4652.png index 29d099fca..3020f03ac 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA25/EA3/EA7/EA4652.png and b/approved/html/EARoot/EA1/EA3/EA25/EA3/EA7/EA4652.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA25/EA3/EA7/EA4654.png b/approved/html/EARoot/EA1/EA3/EA25/EA3/EA7/EA4654.png index fe7bbd209..70b188d9e 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA25/EA3/EA7/EA4654.png and b/approved/html/EARoot/EA1/EA3/EA25/EA3/EA7/EA4654.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA25/EA3/EA7/EA4656.png b/approved/html/EARoot/EA1/EA3/EA25/EA3/EA7/EA4656.png index 63f83e6c5..6755b3da7 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA25/EA3/EA7/EA4656.png and b/approved/html/EARoot/EA1/EA3/EA25/EA3/EA7/EA4656.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA25/EA3/EA7/EA4662.htm b/approved/html/EARoot/EA1/EA3/EA25/EA3/EA7/EA4662.htm index 5c02edaa3..55cc59a49 100644 --- a/approved/html/EARoot/EA1/EA3/EA25/EA3/EA7/EA4662.htm +++ b/approved/html/EARoot/EA1/EA3/EA25/EA3/EA7/EA4662.htm @@ -107,7 +107,7 @@ - Public <undefined>
  boardingRamp + Public <undefined>
  intersection @@ -155,7 +155,7 @@ - Public <undefined>
  changOver + Public <undefined>
  roundabout @@ -251,7 +251,7 @@ - Public <undefined>
  entranceRamp + Public <undefined>
  exitRamp @@ -299,7 +299,7 @@ - Public <undefined>
  exitRamp + Public <undefined>
  entranceRamp @@ -347,7 +347,7 @@ - Public <undefined>
  intersection + Public <undefined>
  changOver @@ -395,7 +395,7 @@ - Public <undefined>
  roundabout + Public <undefined>
  boardingRamp diff --git a/approved/html/EARoot/EA1/EA3/EA25/EA3/EA7/EA4663.htm b/approved/html/EARoot/EA1/EA3/EA25/EA3/EA7/EA4663.htm index 2893c1564..4bbe427dc 100644 --- a/approved/html/EARoot/EA1/EA3/EA25/EA3/EA7/EA4663.htm +++ b/approved/html/EARoot/EA1/EA3/EA25/EA3/EA7/EA4663.htm @@ -112,7 +112,7 @@ - Public Integer
  entryCount + Public Integer
  exitCount @@ -155,12 +155,22 @@ -   +
+ + + + +
+ Notes: + + The exitCount indicates how far around the intersection the exit link occurs relative to entrance link. In right-hand lane systems the count is counter-clockwise. In left-hand lande systems the count is clockwise. In non-road systems, the number can usually be ignored. <br/> +
+ - Public Integer
  exitCount + Public NT_TurnDirection
  turnDirection @@ -186,7 +196,7 @@ Range: - + Range:0 to 1 Transient: @@ -194,7 +204,7 @@ Derived: - True + False IsID: @@ -203,22 +213,12 @@ -
- - - - -
- Notes: - - The exitCount indicates how far around the intersection the exit link occurs relative to entrance link. In right-hand lane systems the count is counter-clockwise. In left-hand lande systems the count is clockwise. In non-road systems, the number can usually be ignored. <br/> -
- +   - Public Boolean
  isManuever + Public Boolean
  isTraversable @@ -266,7 +266,7 @@ - Public Boolean
  isTraversable + Public Boolean
  isManuever @@ -314,7 +314,7 @@ - Public NT_TurnDirection
  turnDirection + Public Integer
  entryCount @@ -340,7 +340,7 @@ Range: - Range:0 to 1 + Transient: @@ -348,7 +348,7 @@ Derived: - False + True IsID: diff --git a/approved/html/EARoot/EA1/EA3/EA25/EA3/EA7/EA4664.htm b/approved/html/EARoot/EA1/EA3/EA25/EA3/EA7/EA4664.htm index eb587d2d4..9f6078ad3 100644 --- a/approved/html/EARoot/EA1/EA3/EA25/EA3/EA7/EA4664.htm +++ b/approved/html/EARoot/EA1/EA3/EA25/EA3/EA7/EA4664.htm @@ -107,7 +107,7 @@ - Public <undefined>
  keepLeft + Public <undefined>
  straight @@ -155,7 +155,7 @@ - Public <undefined>
  keepRight + Public <undefined>
  keepLeft @@ -203,7 +203,7 @@ - Public <undefined>
  left + Public <undefined>
  slightLeft @@ -251,7 +251,7 @@ - Public <undefined>
  right + Public <undefined>
  left @@ -347,7 +347,7 @@ - Public <undefined>
  sharpRight + Public <undefined>
  uTurn @@ -395,7 +395,7 @@ - Public <undefined>
  slightLeft + Public <undefined>
  sharpRight @@ -443,7 +443,7 @@ - Public <undefined>
  slightRight + Public <undefined>
  right @@ -491,7 +491,7 @@ - Public <undefined>
  straight + Public <undefined>
  slightRight @@ -539,7 +539,7 @@ - Public <undefined>
  uTurn + Public <undefined>
  keepRight diff --git a/approved/html/EARoot/EA1/EA3/EA25/EA5/EA1/EA4715.png b/approved/html/EARoot/EA1/EA3/EA25/EA5/EA1/EA4715.png index 3baaf8609..39ff24a21 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA25/EA5/EA1/EA4715.png and b/approved/html/EARoot/EA1/EA3/EA25/EA5/EA1/EA4715.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA25/EA5/EA1/EA4717.png b/approved/html/EARoot/EA1/EA3/EA25/EA5/EA1/EA4717.png index 030fca93a..9c3c7833e 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA25/EA5/EA1/EA4717.png and b/approved/html/EARoot/EA1/EA3/EA25/EA5/EA1/EA4717.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA25/EA5/EA1/EA4723.png b/approved/html/EARoot/EA1/EA3/EA25/EA5/EA1/EA4723.png index 7b69bfee3..0637f14d9 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA25/EA5/EA1/EA4723.png and b/approved/html/EARoot/EA1/EA3/EA25/EA5/EA1/EA4723.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA25/EA5/EA1/EA4725.htm b/approved/html/EARoot/EA1/EA3/EA25/EA5/EA1/EA4725.htm index fab134e26..4f4065208 100644 --- a/approved/html/EARoot/EA1/EA3/EA25/EA5/EA1/EA4725.htm +++ b/approved/html/EARoot/EA1/EA3/EA25/EA5/EA1/EA4725.htm @@ -111,7 +111,7 @@ - Public Record
  attributes + Public FD_FeatureName
  id @@ -137,7 +137,7 @@ Range: - + Range:0 to 1 Transient: @@ -160,7 +160,7 @@ Notes: - A record containing all the attributes of this feature. This mechanism is used to assure that any combination of attributes can be associated to a feature. This will support most type systems semantics  normally used for feature representations, including, strong, weak, dynamic, and untyped. <br/> + The local name, or identity of the feature. This will usually be listed in the Name Space for the Container Feature Collection for this Feature. <br/> @@ -169,7 +169,7 @@ - Public FD_FeatureName
  id + Public Record
  attributes @@ -195,7 +195,7 @@ Range: - Range:0 to 1 + Transient: @@ -218,7 +218,7 @@ Notes: - The local name, or identity of the feature. This will usually be listed in the Name Space for the Container Feature Collection for this Feature. <br/> + A record containing all the attributes of this feature. This mechanism is used to assure that any combination of attributes can be associated to a feature. This will support most type systems semantics  normally used for feature representations, including, strong, weak, dynamic, and untyped. <br/> diff --git a/approved/html/EARoot/EA1/EA3/EA25/EA5/EA2/EA4730.png b/approved/html/EARoot/EA1/EA3/EA25/EA5/EA2/EA4730.png index f8dcd3ed6..dfdf39722 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA25/EA5/EA2/EA4730.png and b/approved/html/EARoot/EA1/EA3/EA25/EA5/EA2/EA4730.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA25/EA5/EA2/EA4732.png b/approved/html/EARoot/EA1/EA3/EA25/EA5/EA2/EA4732.png index 429b74ea1..bc3abbbae 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA25/EA5/EA2/EA4732.png and b/approved/html/EARoot/EA1/EA3/EA25/EA5/EA2/EA4732.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA25/EA5/EA2/EA4734.png b/approved/html/EARoot/EA1/EA3/EA25/EA5/EA2/EA4734.png index 73f1894c3..ddfc0a70d 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA25/EA5/EA2/EA4734.png and b/approved/html/EARoot/EA1/EA3/EA25/EA5/EA2/EA4734.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA25/EA5/EA2/EA4738.png b/approved/html/EARoot/EA1/EA3/EA25/EA5/EA2/EA4738.png index 40663928f..02e951e8c 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA25/EA5/EA2/EA4738.png and b/approved/html/EARoot/EA1/EA3/EA25/EA5/EA2/EA4738.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA25/EA5/EA2/EA4740.png b/approved/html/EARoot/EA1/EA3/EA25/EA5/EA2/EA4740.png index 28c8799f2..b56d3ccb4 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA25/EA5/EA2/EA4740.png and b/approved/html/EARoot/EA1/EA3/EA25/EA5/EA2/EA4740.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA25/EA5/EA2/EA4742.png b/approved/html/EARoot/EA1/EA3/EA25/EA5/EA2/EA4742.png index 480bd5fd0..19bc4c77c 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA25/EA5/EA2/EA4742.png and b/approved/html/EARoot/EA1/EA3/EA25/EA5/EA2/EA4742.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA25/EA5/EA2/EA4744.png b/approved/html/EARoot/EA1/EA3/EA25/EA5/EA2/EA4744.png index 6349322b9..b75da2276 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA25/EA5/EA2/EA4744.png and b/approved/html/EARoot/EA1/EA3/EA25/EA5/EA2/EA4744.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA25/EA5/EA2/EA4746.png b/approved/html/EARoot/EA1/EA3/EA25/EA5/EA2/EA4746.png index f5be38324..b82d50d78 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA25/EA5/EA2/EA4746.png and b/approved/html/EARoot/EA1/EA3/EA25/EA5/EA2/EA4746.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA25/EA5/EA2/EA4752.htm b/approved/html/EARoot/EA1/EA3/EA25/EA5/EA2/EA4752.htm index 076be6e50..18cb8a354 100644 --- a/approved/html/EARoot/EA1/EA3/EA25/EA5/EA2/EA4752.htm +++ b/approved/html/EARoot/EA1/EA3/EA25/EA5/EA2/EA4752.htm @@ -157,7 +157,7 @@ - Public UnitOfMeasure
  offsetUnits + Public CharacterString
  type @@ -205,7 +205,7 @@ - Public LR_OffsetDirection
  positiveOffsetDirection + Public UnitOfMeasure
  units @@ -219,7 +219,7 @@ Initial: - "right" + Stereotype: @@ -253,7 +253,7 @@ - Public CharacterString
  type + Public UnitOfMeasure
  offsetUnits @@ -301,7 +301,7 @@ - Public UnitOfMeasure
  units + Public LR_OffsetDirection
  positiveOffsetDirection @@ -315,7 +315,7 @@ Initial: - + "right" Stereotype: diff --git a/approved/html/EARoot/EA1/EA3/EA25/EA5/EA2/EA4754.htm b/approved/html/EARoot/EA1/EA3/EA25/EA5/EA2/EA4754.htm index b3470ebdc..8852a8f88 100644 --- a/approved/html/EARoot/EA1/EA3/EA25/EA5/EA2/EA4754.htm +++ b/approved/html/EARoot/EA1/EA3/EA25/EA5/EA2/EA4754.htm @@ -108,7 +108,7 @@ - Public Measure
  offset + Public LR_OffsetReference
  offsetReference @@ -134,7 +134,7 @@ Range: - Range:0 to 1 + Transient: @@ -156,7 +156,7 @@ - Public LR_OffsetReference
  offsetReference + Public Measure
  offset @@ -182,7 +182,7 @@ Range: - + Range:0 to 1 Transient: diff --git a/approved/html/EARoot/EA1/EA3/EA25/EA5/EA2/EA4755.htm b/approved/html/EARoot/EA1/EA3/EA25/EA5/EA2/EA4755.htm index e7f319829..abb47c926 100644 --- a/approved/html/EARoot/EA1/EA3/EA25/EA5/EA2/EA4755.htm +++ b/approved/html/EARoot/EA1/EA3/EA25/EA5/EA2/EA4755.htm @@ -155,7 +155,7 @@ - Public <undefined>
  curbBack + Public <undefined>
  edgeOfTravel @@ -203,7 +203,7 @@ - Public <undefined>
  curbFace + Public <undefined>
  rightOfWay @@ -251,7 +251,7 @@ - Public <undefined>
  edgeOfBerm + Public <undefined>
  curbFace @@ -299,7 +299,7 @@ - Public <undefined>
  edgeOfShoulder + Public <undefined>
  curbBack @@ -347,7 +347,7 @@ - Public <undefined>
  edgeOfTravel + Public <undefined>
  edgeOfShoulder @@ -395,7 +395,7 @@ - Public <undefined>
  rightOfWay + Public <undefined>
  edgeOfBerm diff --git a/approved/html/EARoot/EA1/EA3/EA25/EA5/EA2/EA4757.htm b/approved/html/EARoot/EA1/EA3/EA25/EA5/EA2/EA4757.htm index cddda5057..08a04f6e9 100644 --- a/approved/html/EARoot/EA1/EA3/EA25/EA5/EA2/EA4757.htm +++ b/approved/html/EARoot/EA1/EA3/EA25/EA5/EA2/EA4757.htm @@ -108,7 +108,7 @@ - Public LR_PositionExpression
  location + Public CharacterString
  name @@ -134,7 +134,7 @@ Range: - Range:0 to 1 + Transient: @@ -156,7 +156,7 @@ - Public CharacterString
  name + Public CharacterString
  type @@ -252,7 +252,7 @@ - Public CharacterString
  type + Public LR_PositionExpression
  location @@ -278,7 +278,7 @@ Range: - + Range:0 to 1 Transient: diff --git a/approved/html/EARoot/EA1/EA3/EA25/EA5/EA3/EA4759.png b/approved/html/EARoot/EA1/EA3/EA25/EA5/EA3/EA4759.png index d7f4af4aa..156fda694 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA25/EA5/EA3/EA4759.png and b/approved/html/EARoot/EA1/EA3/EA25/EA5/EA3/EA4759.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA25/EA5/EA3/EA4761.png b/approved/html/EARoot/EA1/EA3/EA25/EA5/EA3/EA4761.png index f42b1424c..af64397c2 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA25/EA5/EA3/EA4761.png and b/approved/html/EARoot/EA1/EA3/EA25/EA5/EA3/EA4761.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA25/EA5/EA4/EA4767.png b/approved/html/EARoot/EA1/EA3/EA25/EA5/EA4/EA4767.png index 221b980b0..38af09015 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA25/EA5/EA4/EA4767.png and b/approved/html/EARoot/EA1/EA3/EA25/EA5/EA4/EA4767.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA25/EA5/EA4/EA4769.png b/approved/html/EARoot/EA1/EA3/EA25/EA5/EA4/EA4769.png index 021ae2b12..fb8657e89 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA25/EA5/EA4/EA4769.png and b/approved/html/EARoot/EA1/EA3/EA25/EA5/EA4/EA4769.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA25/EA5/EA4/EA4773.png b/approved/html/EARoot/EA1/EA3/EA25/EA5/EA4/EA4773.png index 6b177a86b..676ce90f5 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA25/EA5/EA4/EA4773.png and b/approved/html/EARoot/EA1/EA3/EA25/EA5/EA4/EA4773.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA25/EA5/EA5/EA4781.png b/approved/html/EARoot/EA1/EA3/EA25/EA5/EA5/EA4781.png index 10e1c694a..d48c582f5 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA25/EA5/EA5/EA4781.png and b/approved/html/EARoot/EA1/EA3/EA25/EA5/EA5/EA4781.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA25/EA5/EA5/EA4783.png b/approved/html/EARoot/EA1/EA3/EA25/EA5/EA5/EA4783.png index 738262bbc..28ec395a6 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA25/EA5/EA5/EA4783.png and b/approved/html/EARoot/EA1/EA3/EA25/EA5/EA5/EA4783.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA25/EA5/EA5/EA4787.png b/approved/html/EARoot/EA1/EA3/EA25/EA5/EA5/EA4787.png index c28095794..54482770d 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA25/EA5/EA5/EA4787.png and b/approved/html/EARoot/EA1/EA3/EA25/EA5/EA5/EA4787.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA25/EA5/EA5/EA4789.png b/approved/html/EARoot/EA1/EA3/EA25/EA5/EA5/EA4789.png index b4380d2fc..5fa77f9e9 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA25/EA5/EA5/EA4789.png and b/approved/html/EARoot/EA1/EA3/EA25/EA5/EA5/EA4789.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA25/EA5/EA5/EA4793.png b/approved/html/EARoot/EA1/EA3/EA25/EA5/EA5/EA4793.png index e40d80fea..fcb0361e0 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA25/EA5/EA5/EA4793.png and b/approved/html/EARoot/EA1/EA3/EA25/EA5/EA5/EA4793.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA25/EA5/EA5/EA4798.htm b/approved/html/EARoot/EA1/EA3/EA25/EA5/EA5/EA4798.htm index 4d6e41853..1cb0e3937 100644 --- a/approved/html/EARoot/EA1/EA3/EA25/EA5/EA5/EA4798.htm +++ b/approved/html/EARoot/EA1/EA3/EA25/EA5/EA5/EA4798.htm @@ -109,7 +109,7 @@ - Public Angle
  endBearing + Public Distance
  innerRadius @@ -157,7 +157,7 @@ - Public Distance
  innerRadius + Public Distance
  outerRadius @@ -205,7 +205,7 @@ - Public Distance
  outerRadius + Public Angle
  startBearing @@ -253,7 +253,7 @@ - Public Angle
  startBearing + Public Angle
  endBearing diff --git a/approved/html/EARoot/EA1/EA3/EA25/EA5/EA5/EA4800.htm b/approved/html/EARoot/EA1/EA3/EA25/EA5/EA5/EA4800.htm index fc74d900f..3229dae07 100644 --- a/approved/html/EARoot/EA1/EA3/EA25/EA5/EA5/EA4800.htm +++ b/approved/html/EARoot/EA1/EA3/EA25/EA5/EA5/EA4800.htm @@ -109,7 +109,7 @@ - Public Angle
  majorAxisBearing + Public Distance
  majorAxisRadius @@ -157,7 +157,7 @@ - Public Distance
  majorAxisRadius + Public Distance
  minorAxisRadius @@ -205,7 +205,7 @@ - Public Distance
  minorAxisRadius + Public Angle
  majorAxisBearing diff --git a/approved/html/EARoot/EA1/EA3/EA25/EA5/EA5/EA4801.htm b/approved/html/EARoot/EA1/EA3/EA25/EA5/EA5/EA4801.htm index 23f4b93bf..baa264ae7 100644 --- a/approved/html/EARoot/EA1/EA3/EA25/EA5/EA5/EA4801.htm +++ b/approved/html/EARoot/EA1/EA3/EA25/EA5/EA5/EA4801.htm @@ -108,7 +108,7 @@ - Public Angle
  majorAxisBearing + Public Distance
  majorAxisRadius @@ -156,7 +156,7 @@ - Public Distance
  majorAxisRadius + Public Distance
  minorAxisRadius @@ -204,7 +204,7 @@ - Public Angle
  minorAxisBearing + Public Angle
  majorAxisBearing @@ -230,7 +230,7 @@ Range: - Range:0 to 2 + Transient: @@ -252,7 +252,7 @@ - Public Distance
  minorAxisRadius + Public Angle
  minorAxisBearing @@ -278,7 +278,7 @@ Range: - + Range:0 to 2 Transient: diff --git a/approved/html/EARoot/EA1/EA3/EA25/EA5/EA6/EA4804.png b/approved/html/EARoot/EA1/EA3/EA25/EA5/EA6/EA4804.png index 76c7fbedb..43140c51c 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA25/EA5/EA6/EA4804.png and b/approved/html/EARoot/EA1/EA3/EA25/EA5/EA6/EA4804.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA25/EA5/EA6/EA4806.png b/approved/html/EARoot/EA1/EA3/EA25/EA5/EA6/EA4806.png index 69b078508..08794a047 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA25/EA5/EA6/EA4806.png and b/approved/html/EARoot/EA1/EA3/EA25/EA5/EA6/EA4806.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA25/EA5/EA6/EA4808.png b/approved/html/EARoot/EA1/EA3/EA25/EA5/EA6/EA4808.png index b2404f669..78b7b344d 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA25/EA5/EA6/EA4808.png and b/approved/html/EARoot/EA1/EA3/EA25/EA5/EA6/EA4808.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA25/EA5/EA6/EA4810.png b/approved/html/EARoot/EA1/EA3/EA25/EA5/EA6/EA4810.png index 7a113e870..b365e1265 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA25/EA5/EA6/EA4810.png and b/approved/html/EARoot/EA1/EA3/EA25/EA5/EA6/EA4810.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA25/EA5/EA6/EA4812.png b/approved/html/EARoot/EA1/EA3/EA25/EA5/EA6/EA4812.png index 4b9495aa8..0f1092c55 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA25/EA5/EA6/EA4812.png and b/approved/html/EARoot/EA1/EA3/EA25/EA5/EA6/EA4812.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA25/EA5/EA6/EA4814.png b/approved/html/EARoot/EA1/EA3/EA25/EA5/EA6/EA4814.png index 2d15b2106..c9c6924d7 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA25/EA5/EA6/EA4814.png and b/approved/html/EARoot/EA1/EA3/EA25/EA5/EA6/EA4814.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA25/EA5/EA6/EA4816.png b/approved/html/EARoot/EA1/EA3/EA25/EA5/EA6/EA4816.png index 34a87bb46..3043a7d19 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA25/EA5/EA6/EA4816.png and b/approved/html/EARoot/EA1/EA3/EA25/EA5/EA6/EA4816.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA25/EA5/EA6/EA4818.png b/approved/html/EARoot/EA1/EA3/EA25/EA5/EA6/EA4818.png index 1a9cd307b..86cbf9e0b 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA25/EA5/EA6/EA4818.png and b/approved/html/EARoot/EA1/EA3/EA25/EA5/EA6/EA4818.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA25/EA5/EA6/EA4820.png b/approved/html/EARoot/EA1/EA3/EA25/EA5/EA6/EA4820.png index 3eb9f7b58..07b0e93c5 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA25/EA5/EA6/EA4820.png and b/approved/html/EARoot/EA1/EA3/EA25/EA5/EA6/EA4820.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA25/EA5/EA6/EA4822.png b/approved/html/EARoot/EA1/EA3/EA25/EA5/EA6/EA4822.png index e0e931a4b..85ffded66 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA25/EA5/EA6/EA4822.png and b/approved/html/EARoot/EA1/EA3/EA25/EA5/EA6/EA4822.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA25/EA5/EA6/EA4824.png b/approved/html/EARoot/EA1/EA3/EA25/EA5/EA6/EA4824.png index e3eec5b80..70fd1414e 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA25/EA5/EA6/EA4824.png and b/approved/html/EARoot/EA1/EA3/EA25/EA5/EA6/EA4824.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA25/EA5/EA6/EA4826.png b/approved/html/EARoot/EA1/EA3/EA25/EA5/EA6/EA4826.png index dfefce93a..e5a04fafc 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA25/EA5/EA6/EA4826.png and b/approved/html/EARoot/EA1/EA3/EA25/EA5/EA6/EA4826.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA25/EA5/EA6/EA4828.png b/approved/html/EARoot/EA1/EA3/EA25/EA5/EA6/EA4828.png index 85b669465..6b4aa2fa1 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA25/EA5/EA6/EA4828.png and b/approved/html/EARoot/EA1/EA3/EA25/EA5/EA6/EA4828.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA25/EA5/EA6/EA4830.png b/approved/html/EARoot/EA1/EA3/EA25/EA5/EA6/EA4830.png index 9ee598b96..27aa4d0fe 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA25/EA5/EA6/EA4830.png and b/approved/html/EARoot/EA1/EA3/EA25/EA5/EA6/EA4830.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA25/EA5/EA6/EA4832.png b/approved/html/EARoot/EA1/EA3/EA25/EA5/EA6/EA4832.png index 52b6e5800..367f8fae8 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA25/EA5/EA6/EA4832.png and b/approved/html/EARoot/EA1/EA3/EA25/EA5/EA6/EA4832.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA25/EA5/EA6/EA4833.htm b/approved/html/EARoot/EA1/EA3/EA25/EA5/EA6/EA4833.htm index 30fb00e0a..c6473fb69 100644 --- a/approved/html/EARoot/EA1/EA3/EA25/EA5/EA6/EA4833.htm +++ b/approved/html/EARoot/EA1/EA3/EA25/EA5/EA6/EA4833.htm @@ -37,7 +37,7 @@ - + diff --git a/approved/html/EARoot/EA1/EA3/EA25/EA5/EA6/EA4834.png b/approved/html/EARoot/EA1/EA3/EA25/EA5/EA6/EA4834.png index 44f9bab89..1aa40f321 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA25/EA5/EA6/EA4834.png and b/approved/html/EARoot/EA1/EA3/EA25/EA5/EA6/EA4834.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA25/EA5/EA6/EA4836.png b/approved/html/EARoot/EA1/EA3/EA25/EA5/EA6/EA4836.png index 1388ffb8e..3f6e7f4f3 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA25/EA5/EA6/EA4836.png and b/approved/html/EARoot/EA1/EA3/EA25/EA5/EA6/EA4836.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA25/EA5/EA6/EA4840.png b/approved/html/EARoot/EA1/EA3/EA25/EA5/EA6/EA4840.png index decefeee3..63af6fe0c 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA25/EA5/EA6/EA4840.png and b/approved/html/EARoot/EA1/EA3/EA25/EA5/EA6/EA4840.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA25/EA5/EA6/EA4842.png b/approved/html/EARoot/EA1/EA3/EA25/EA5/EA6/EA4842.png index ba81f231e..39ed4317d 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA25/EA5/EA6/EA4842.png and b/approved/html/EARoot/EA1/EA3/EA25/EA5/EA6/EA4842.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA25/EA5/EA6/EA4844.htm b/approved/html/EARoot/EA1/EA3/EA25/EA5/EA6/EA4844.htm index 2d4876179..581ca3b3e 100644 --- a/approved/html/EARoot/EA1/EA3/EA25/EA5/EA6/EA4844.htm +++ b/approved/html/EARoot/EA1/EA3/EA25/EA5/EA6/EA4844.htm @@ -156,7 +156,7 @@ - Public Number
  sigma + Public Number
  sigmaLevel @@ -204,7 +204,7 @@ - Public Number
  sigmaLevel + Public Number
  sigma diff --git a/approved/html/EARoot/EA1/EA3/EA25/EA5/EA6/EA4845.htm b/approved/html/EARoot/EA1/EA3/EA25/EA5/EA6/EA4845.htm index 9b692db81..e2d0fbf85 100644 --- a/approved/html/EARoot/EA1/EA3/EA25/EA5/EA6/EA4845.htm +++ b/approved/html/EARoot/EA1/EA3/EA25/EA5/EA6/EA4845.htm @@ -108,7 +108,7 @@ - Public TK_Accuracy
  accuracy + Public CharacterString
  axis @@ -156,7 +156,7 @@ - Public CharacterString
  axis + Public TK_Accuracy
  accuracy diff --git a/approved/html/EARoot/EA1/EA3/EA25/EA5/EA6/EA4846.htm b/approved/html/EARoot/EA1/EA3/EA25/EA5/EA6/EA4846.htm index d678b630e..727cdcbfc 100644 --- a/approved/html/EARoot/EA1/EA3/EA25/EA5/EA6/EA4846.htm +++ b/approved/html/EARoot/EA1/EA3/EA25/EA5/EA6/EA4846.htm @@ -107,7 +107,7 @@ - Public <undefined>
  circularRMS + Public <undefined>
  linear @@ -155,7 +155,7 @@ - Public <undefined>
  ellipticalRMS + Public <undefined>
  circularRMS @@ -203,7 +203,7 @@ - Public <undefined>
  linear + Public <undefined>
  ellipticalRMS diff --git a/approved/html/EARoot/EA1/EA3/EA25/EA5/EA6/EA4848.htm b/approved/html/EARoot/EA1/EA3/EA25/EA5/EA6/EA4848.htm index 5721c7ec4..bfcdfa475 100644 --- a/approved/html/EARoot/EA1/EA3/EA25/EA5/EA6/EA4848.htm +++ b/approved/html/EARoot/EA1/EA3/EA25/EA5/EA6/EA4848.htm @@ -108,7 +108,7 @@ - Public TM_Primitive
  maxTime + Public TM_Primitive
  minTime @@ -156,7 +156,7 @@ - Public TM_Primitive
  minTime + Public TM_Primitive
  maxTime diff --git a/approved/html/EARoot/EA1/EA3/EA25/EA5/EA6/EA4849.htm b/approved/html/EARoot/EA1/EA3/EA25/EA5/EA6/EA4849.htm index 3173b46a6..e0fcc5c4f 100644 --- a/approved/html/EARoot/EA1/EA3/EA25/EA5/EA6/EA4849.htm +++ b/approved/html/EARoot/EA1/EA3/EA25/EA5/EA6/EA4849.htm @@ -110,7 +110,7 @@ - Public AD_AbstractAddress
  address + Public DirectPosition
  directPosition @@ -158,7 +158,7 @@ - Public DirectPosition
  directPosition + Public SI_LocationInstance
  placeName @@ -350,7 +350,7 @@ - Public CharacterString
  phone + Public AD_AbstractAddress
  address @@ -398,7 +398,7 @@ - Public SI_LocationInstance
  placeName + Public CharacterString
  phone diff --git a/approved/html/EARoot/EA1/EA3/EA25/EA5/EA6/EA4850.htm b/approved/html/EARoot/EA1/EA3/EA25/EA5/EA6/EA4850.htm index fa17a9053..175523009 100644 --- a/approved/html/EARoot/EA1/EA3/EA25/EA5/EA6/EA4850.htm +++ b/approved/html/EARoot/EA1/EA3/EA25/EA5/EA6/EA4850.htm @@ -108,7 +108,7 @@ - Public <undefined>
  address + Public <undefined>
  coordinate @@ -156,7 +156,7 @@ - Public <undefined>
  coordinate + Public <undefined>
  placeName @@ -348,7 +348,7 @@ - Public <undefined>
  phone + Public <undefined>
  address @@ -396,7 +396,7 @@ - Public <undefined>
  placeName + Public <undefined>
  phone diff --git a/approved/html/EARoot/EA1/EA3/EA25/EA5/EA6/EA4852.htm b/approved/html/EARoot/EA1/EA3/EA25/EA5/EA6/EA4852.htm index a5aecb8c0..73362dd88 100644 --- a/approved/html/EARoot/EA1/EA3/EA25/EA5/EA6/EA4852.htm +++ b/approved/html/EARoot/EA1/EA3/EA25/EA5/EA6/EA4852.htm @@ -109,7 +109,7 @@ - Public Bearing
  direction + Public TK_Position
  position @@ -135,7 +135,7 @@ Range: - Range:0 to 1 + Transient: @@ -157,7 +157,7 @@ - Public TK_Position
  position + Public TM_Primitive
  time @@ -183,7 +183,7 @@ Range: - + Range:0 to 1 Transient: @@ -205,7 +205,7 @@ - Public Velocity
  speed + Public Bearing
  direction @@ -253,7 +253,7 @@ - Public TM_Primitive
  time + Public Velocity
  speed diff --git a/approved/html/EARoot/EA1/EA3/EA25/EA5/EA6/EA4853.htm b/approved/html/EARoot/EA1/EA3/EA25/EA5/EA6/EA4853.htm index 00aef9439..51c654b80 100644 --- a/approved/html/EARoot/EA1/EA3/EA25/EA5/EA6/EA4853.htm +++ b/approved/html/EARoot/EA1/EA3/EA25/EA5/EA6/EA4853.htm @@ -108,7 +108,7 @@ - Public CharacterString
  clientID + Public TK_MobileSubscriber
  ms @@ -134,7 +134,7 @@ Range: - + Range:0 to 1 Transient: @@ -156,7 +156,7 @@ - Public TK_MobileSubscriber
  ms + Public TK_QualityOfPosition
  quality @@ -182,7 +182,7 @@ Range: - Range:0 to 1 + Transient: @@ -204,7 +204,7 @@ - Public TK_QualityOfPosition
  quality + Public TM_Primitive
  time @@ -252,7 +252,7 @@ - Public TM_Primitive
  time + Public CharacterString
  clientID diff --git a/approved/html/EARoot/EA1/EA3/EA25/EA5/EA6/EA4856.htm b/approved/html/EARoot/EA1/EA3/EA25/EA5/EA6/EA4856.htm index 89f89d7ca..509072917 100644 --- a/approved/html/EARoot/EA1/EA3/EA25/EA5/EA6/EA4856.htm +++ b/approved/html/EARoot/EA1/EA3/EA25/EA5/EA6/EA4856.htm @@ -108,7 +108,7 @@ - Public Boolean
  availability + Public TK_TransitionType
  type @@ -134,7 +134,7 @@ Range: - Range:0 to 1 + Transient: @@ -156,7 +156,7 @@ - Public Angle
  deltaDirection + Public TM_Primitive
  time @@ -182,7 +182,7 @@ Range: - Range:0 to 1 + Transient: @@ -204,7 +204,7 @@ - Public Distance
  deltaPosition + Public Angle
  deltaDirection @@ -252,7 +252,7 @@ - Public TM_Primitive
  time + Public Distance
  deltaPosition @@ -278,7 +278,7 @@ Range: - + Range:0 to 1 Transient: @@ -300,7 +300,7 @@ - Public TK_TransitionType
  type + Public Boolean
  availability @@ -326,7 +326,7 @@ Range: - + Range:0 to 1 Transient: diff --git a/approved/html/EARoot/EA1/EA3/EA25/EA5/EA6/EA4857.htm b/approved/html/EARoot/EA1/EA3/EA25/EA5/EA6/EA4857.htm index 156e4fa41..08d313e72 100644 --- a/approved/html/EARoot/EA1/EA3/EA25/EA5/EA6/EA4857.htm +++ b/approved/html/EARoot/EA1/EA3/EA25/EA5/EA6/EA4857.htm @@ -108,7 +108,7 @@ - Public Angle
  deltaDirection + Public TK_TransitionType
  type @@ -134,7 +134,7 @@ Range: - Range:0 to 1 + Range:0 to * Transient: @@ -156,7 +156,7 @@ - Public Distance
  deltaPosition + Public Angle
  deltaDirection @@ -204,7 +204,7 @@ - Public TK_TransitionType
  type + Public Distance
  deltaPosition @@ -230,7 +230,7 @@ Range: - Range:0 to * + Range:0 to 1 Transient: diff --git a/approved/html/EARoot/EA1/EA3/EA25/EA5/EA6/EA4858.htm b/approved/html/EARoot/EA1/EA3/EA25/EA5/EA6/EA4858.htm index 9f18aeb56..f9d51cf4f 100644 --- a/approved/html/EARoot/EA1/EA3/EA25/EA5/EA6/EA4858.htm +++ b/approved/html/EARoot/EA1/EA3/EA25/EA5/EA6/EA4858.htm @@ -107,7 +107,7 @@ - Public <undefined>
  changeAvailability + Public <undefined>
  enterCell @@ -155,7 +155,7 @@ - Public <undefined>
  changeContacts + Public <undefined>
  leaveCell @@ -203,7 +203,7 @@ - Public <undefined>
  changeDirection + Public <undefined>
  changeContacts @@ -251,7 +251,7 @@ - Public <undefined>
  changePosition + Public <undefined>
  changeDirection @@ -299,7 +299,7 @@ - Public <undefined>
  enterCell + Public <undefined>
  changePosition @@ -347,7 +347,7 @@ - Public <undefined>
  leaveCell + Public <undefined>
  changeAvailability diff --git a/approved/html/EARoot/EA1/EA3/EA26/EA1/EA4893.png b/approved/html/EARoot/EA1/EA3/EA26/EA1/EA4893.png index a2d0c74ac..bbde035bc 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA26/EA1/EA4893.png and b/approved/html/EARoot/EA1/EA3/EA26/EA1/EA4893.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA26/EA1/EA4895.png b/approved/html/EARoot/EA1/EA3/EA26/EA1/EA4895.png index 7d49dd99f..a9c727dab 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA26/EA1/EA4895.png and b/approved/html/EARoot/EA1/EA3/EA26/EA1/EA4895.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA26/EA1/EA4897.png b/approved/html/EARoot/EA1/EA3/EA26/EA1/EA4897.png index 14e0af312..2f60e75ce 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA26/EA1/EA4897.png and b/approved/html/EARoot/EA1/EA3/EA26/EA1/EA4897.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA26/EA1/EA4899.png b/approved/html/EARoot/EA1/EA3/EA26/EA1/EA4899.png index 050c639ac..4343110cb 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA26/EA1/EA4899.png and b/approved/html/EARoot/EA1/EA3/EA26/EA1/EA4899.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA26/EA1/EA4901.png b/approved/html/EARoot/EA1/EA3/EA26/EA1/EA4901.png index 33509a31b..2518d7c0a 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA26/EA1/EA4901.png and b/approved/html/EARoot/EA1/EA3/EA26/EA1/EA4901.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA26/EA1/EA4903.png b/approved/html/EARoot/EA1/EA3/EA26/EA1/EA4903.png index c45054b73..4eb23cbc9 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA26/EA1/EA4903.png and b/approved/html/EARoot/EA1/EA3/EA26/EA1/EA4903.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA26/EA1/EA4906.htm b/approved/html/EARoot/EA1/EA3/EA26/EA1/EA4906.htm index 211d1c3f2..321f40426 100644 --- a/approved/html/EARoot/EA1/EA3/EA26/EA1/EA4906.htm +++ b/approved/html/EARoot/EA1/EA3/EA26/EA1/EA4906.htm @@ -108,7 +108,7 @@ - Public <undefined>
  byPass + Public <undefined>
  startLocation @@ -156,7 +156,7 @@ - Public <undefined>
  crossRoad + Public <undefined>
  endLocation @@ -204,7 +204,7 @@ - Public <undefined>
  dropoffTransferPoint + Public <undefined>
  viaLocation @@ -252,7 +252,7 @@ - Public <undefined>
  endLocation + Public <undefined>
  enterPlace @@ -300,7 +300,7 @@ - Public <undefined>
  enterPlace + Public <undefined>
  exitPlace @@ -348,7 +348,7 @@ - Public <undefined>
  exitPlace + Public <undefined>
  takeTransferPoint @@ -396,7 +396,7 @@ - Public <undefined>
  landmark + Public <undefined>
  dropoffTransferPoint @@ -444,7 +444,7 @@ - Public <undefined>
  startLocation + Public <undefined>
  landmark @@ -492,7 +492,7 @@ - Public <undefined>
  takeTransferPoint + Public <undefined>
  crossRoad @@ -540,7 +540,7 @@ - Public <undefined>
  viaLocation + Public <undefined>
  byPass diff --git a/approved/html/EARoot/EA1/EA3/EA26/EA1/EA4909.htm b/approved/html/EARoot/EA1/EA3/EA26/EA1/EA4909.htm index 4fabc9569..8b0e94e2b 100644 --- a/approved/html/EARoot/EA1/EA3/EA26/EA1/EA4909.htm +++ b/approved/html/EARoot/EA1/EA3/EA26/EA1/EA4909.htm @@ -109,7 +109,7 @@ - Public TM_Period
  inoperableTime + Public TM_Period
  operableTime @@ -157,7 +157,7 @@ - Public TM_Period
  operableTime + Public TM_Period
  inoperableTime diff --git a/approved/html/EARoot/EA1/EA3/EA26/EA1/EA4910.htm b/approved/html/EARoot/EA1/EA3/EA26/EA1/EA4910.htm index 8d5af4cd2..10e14564b 100644 --- a/approved/html/EARoot/EA1/EA3/EA26/EA1/EA4910.htm +++ b/approved/html/EARoot/EA1/EA3/EA26/EA1/EA4910.htm @@ -108,7 +108,7 @@ - Public <undefined>
  airway + Public <undefined>
  intracityBus @@ -156,7 +156,7 @@ - Public <undefined>
  bike + Public <undefined>
  intercityBus @@ -204,7 +204,7 @@ - Public <undefined>
  ferry + Public <undefined>
  shuttleBus @@ -252,7 +252,7 @@ - Public <undefined>
  highSpeedRailway + Public <undefined>
  rovingBus @@ -300,7 +300,7 @@ - Public <undefined>
  intercityBus + Public <undefined>
  subway @@ -348,7 +348,7 @@ - Public <undefined>
  intracityBus + Public <undefined>
  lightrail @@ -396,7 +396,7 @@ - Public <undefined>
  lightrail + Public <undefined>
  tram @@ -492,7 +492,7 @@ - Public <undefined>
  rovingBus + Public <undefined>
  highSpeedRailway @@ -540,7 +540,7 @@ - Public <undefined>
  shuttleBus + Public <undefined>
  ferry @@ -588,7 +588,7 @@ - Public <undefined>
  subway + Public <undefined>
  airway @@ -636,7 +636,7 @@ - Public <undefined>
  taxi + Public <undefined>
  walk @@ -684,7 +684,7 @@ - Public <undefined>
  tram + Public <undefined>
  bike @@ -732,7 +732,7 @@ - Public <undefined>
  walk + Public <undefined>
  taxi diff --git a/approved/html/EARoot/EA1/EA3/EA26/EA2/EA4916.png b/approved/html/EARoot/EA1/EA3/EA26/EA2/EA4916.png index b1f039beb..388544c04 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA26/EA2/EA4916.png and b/approved/html/EARoot/EA1/EA3/EA26/EA2/EA4916.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA26/EA2/EA4938.png b/approved/html/EARoot/EA1/EA3/EA26/EA2/EA4938.png index 01093cff8..8183b3fa9 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA26/EA2/EA4938.png and b/approved/html/EARoot/EA1/EA3/EA26/EA2/EA4938.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA26/EA2/EA4940.png b/approved/html/EARoot/EA1/EA3/EA26/EA2/EA4940.png index 6a83468e3..271e4fe7b 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA26/EA2/EA4940.png and b/approved/html/EARoot/EA1/EA3/EA26/EA2/EA4940.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA26/EA2/EA4944.htm b/approved/html/EARoot/EA1/EA3/EA26/EA2/EA4944.htm index 90acdf61e..b4ea76779 100644 --- a/approved/html/EARoot/EA1/EA3/EA26/EA2/EA4944.htm +++ b/approved/html/EARoot/EA1/EA3/EA26/EA2/EA4944.htm @@ -108,7 +108,7 @@ - Public <undefined>
  distance + Public <undefined>
  waitingTime @@ -156,7 +156,7 @@ - Public <undefined>
  fares + Public <undefined>
  travelTime @@ -204,7 +204,7 @@ - Public <undefined>
  numberOfTransfers + Public <undefined>
  totalCost @@ -252,7 +252,7 @@ - Public <undefined>
  totalCost + Public <undefined>
  fares @@ -300,7 +300,7 @@ - Public <undefined>
  travelTime + Public <undefined>
  wayPointsCost @@ -348,7 +348,7 @@ - Public <undefined>
  waitingTime + Public <undefined>
  numberOfTransfers @@ -396,7 +396,7 @@ - Public <undefined>
  wayPointsCost + Public <undefined>
  distance diff --git a/approved/html/EARoot/EA1/EA3/EA26/EA2/EA4956.htm b/approved/html/EARoot/EA1/EA3/EA26/EA2/EA4956.htm index 24ac46538..177ff5f1d 100644 --- a/approved/html/EARoot/EA1/EA3/EA26/EA2/EA4956.htm +++ b/approved/html/EARoot/EA1/EA3/EA26/EA2/EA4956.htm @@ -109,7 +109,7 @@ - Public MN_CostType
  type + Public UnitOfMeasure
  unit @@ -157,7 +157,7 @@ - Public UnitOfMeasure
  unit + Public MN_CostType
  type diff --git a/approved/html/EARoot/EA1/EA3/EA26/EA3/EA4958.png b/approved/html/EARoot/EA1/EA3/EA26/EA3/EA4958.png index 8b422562f..eddc8acdb 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA26/EA3/EA4958.png and b/approved/html/EARoot/EA1/EA3/EA26/EA3/EA4958.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA26/EA3/EA4960.png b/approved/html/EARoot/EA1/EA3/EA26/EA3/EA4960.png index 88d11a5be..de2dc3e0a 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA26/EA3/EA4960.png and b/approved/html/EARoot/EA1/EA3/EA26/EA3/EA4960.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA26/EA3/EA4962.png b/approved/html/EARoot/EA1/EA3/EA26/EA3/EA4962.png index 61f3ce977..f7fa4913c 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA26/EA3/EA4962.png and b/approved/html/EARoot/EA1/EA3/EA26/EA3/EA4962.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA26/EA3/EA4964.png b/approved/html/EARoot/EA1/EA3/EA26/EA3/EA4964.png index 52376eb9b..13f5a4d47 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA26/EA3/EA4964.png and b/approved/html/EARoot/EA1/EA3/EA26/EA3/EA4964.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA26/EA3/EA4968.png b/approved/html/EARoot/EA1/EA3/EA26/EA3/EA4968.png index e46c8e20c..0d052e55e 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA26/EA3/EA4968.png and b/approved/html/EARoot/EA1/EA3/EA26/EA3/EA4968.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA26/EA3/EA4970.png b/approved/html/EARoot/EA1/EA3/EA26/EA3/EA4970.png index bc26e860c..564e9fb7e 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA26/EA3/EA4970.png and b/approved/html/EARoot/EA1/EA3/EA26/EA3/EA4970.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA26/EA3/EA4974.png b/approved/html/EARoot/EA1/EA3/EA26/EA3/EA4974.png index 9f91200cb..4956889a9 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA26/EA3/EA4974.png and b/approved/html/EARoot/EA1/EA3/EA26/EA3/EA4974.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA26/EA3/EA4976.png b/approved/html/EARoot/EA1/EA3/EA26/EA3/EA4976.png index a701e6d8b..5e7a04baa 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA26/EA3/EA4976.png and b/approved/html/EARoot/EA1/EA3/EA26/EA3/EA4976.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA26/EA3/EA4978.png b/approved/html/EARoot/EA1/EA3/EA26/EA3/EA4978.png index 5bf1c8e7e..8d8d15a7e 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA26/EA3/EA4978.png and b/approved/html/EARoot/EA1/EA3/EA26/EA3/EA4978.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA26/EA3/EA4980.png b/approved/html/EARoot/EA1/EA3/EA26/EA3/EA4980.png index f97c17f04..fa1f8d3d9 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA26/EA3/EA4980.png and b/approved/html/EARoot/EA1/EA3/EA26/EA3/EA4980.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA26/EA3/EA4983.htm b/approved/html/EARoot/EA1/EA3/EA26/EA3/EA4983.htm index dac17629b..5de6c574f 100644 --- a/approved/html/EARoot/EA1/EA3/EA26/EA3/EA4983.htm +++ b/approved/html/EARoot/EA1/EA3/EA26/EA3/EA4983.htm @@ -107,7 +107,7 @@ - Public <undefined>
  distance + Public <undefined>
  time @@ -155,7 +155,7 @@ - Public <undefined>
  numberOfTransfers + Public <undefined>
  distance @@ -203,7 +203,7 @@ - Public <undefined>
  time + Public <undefined>
  numberOfTransfers @@ -251,7 +251,7 @@ - Public <undefined>
  totalCost + Public <undefined>
  totalFare @@ -299,7 +299,7 @@ - Public <undefined>
  totalFare + Public <undefined>
  totalCost diff --git a/approved/html/EARoot/EA1/EA3/EA26/EA3/EA4988.htm b/approved/html/EARoot/EA1/EA3/EA26/EA3/EA4988.htm index 334524227..41a7de583 100644 --- a/approved/html/EARoot/EA1/EA3/EA26/EA3/EA4988.htm +++ b/approved/html/EARoot/EA1/EA3/EA26/EA3/EA4988.htm @@ -108,7 +108,7 @@ - Public Sequence<Image>
  groundLevelView + Public Sequence<Map>
  map @@ -156,7 +156,7 @@ - Public MN_Itinerary
  itinerary + Public Sequence<VoiceStream>
  voice @@ -204,7 +204,7 @@ - Public Sequence<Map>
  map + Public Sequence<CharacterString>
  text @@ -252,7 +252,7 @@ - Public Sequence<CharacterString>
  text + Public Sequence<Image>
  groundLevelView @@ -300,7 +300,7 @@ - Public Sequence<VoiceStream>
  voice + Public MN_Itinerary
  itinerary diff --git a/approved/html/EARoot/EA1/EA3/EA26/EA3/EA4990.htm b/approved/html/EARoot/EA1/EA3/EA26/EA3/EA4990.htm index 4f6bf72ca..b678ddfea 100644 --- a/approved/html/EARoot/EA1/EA3/EA26/EA3/EA4990.htm +++ b/approved/html/EARoot/EA1/EA3/EA26/EA3/EA4990.htm @@ -107,7 +107,7 @@ - Public <undefined>
  groundLevelView + Public <undefined>
  map @@ -155,7 +155,7 @@ - Public <undefined>
  Itinerary + Public <undefined>
  voice @@ -203,7 +203,7 @@ - Public <undefined>
  map + Public <undefined>
  text @@ -251,7 +251,7 @@ - Public <undefined>
  text + Public <undefined>
  groundLevelView @@ -299,7 +299,7 @@ - Public <undefined>
  voice + Public <undefined>
  Itinerary diff --git a/approved/html/EARoot/EA1/EA3/EA26/EA3/EA4991.htm b/approved/html/EARoot/EA1/EA3/EA26/EA3/EA4991.htm index 303285c2a..ba11a3494 100644 --- a/approved/html/EARoot/EA1/EA3/EA26/EA3/EA4991.htm +++ b/approved/html/EARoot/EA1/EA3/EA26/EA3/EA4991.htm @@ -107,7 +107,7 @@ - Public <undefined>
  cheapest + Public <undefined>
  fastest @@ -155,7 +155,7 @@ - Public <undefined>
  easiest + Public <undefined>
  cheapest @@ -203,7 +203,7 @@ - Public <undefined>
  fastest + Public <undefined>
  minimumTransfers @@ -251,7 +251,7 @@ - Public <undefined>
  minimumTransfers + Public <undefined>
  easiest diff --git a/approved/html/EARoot/EA1/EA3/EA26/EA3/EA4992.htm b/approved/html/EARoot/EA1/EA3/EA26/EA3/EA4992.htm index e3cbd94bf..bbbd614ef 100644 --- a/approved/html/EARoot/EA1/EA3/EA26/EA3/EA4992.htm +++ b/approved/html/EARoot/EA1/EA3/EA26/EA3/EA4992.htm @@ -110,7 +110,7 @@ - Public MM_AdvisoryCategory
  advisories + Public MN_CostFunctionCode
  costFunction @@ -124,7 +124,7 @@ Initial: - + "time" Stereotype: @@ -136,7 +136,7 @@ Range: - Range:0 to * + Range:0 to 1 Transient: @@ -158,7 +158,7 @@ - Public MM_TransportationModeType
  avoidMode + Public MM_TransportationModeType
  transportationMode @@ -184,7 +184,7 @@ Range: - Range:0 to * + Transient: @@ -206,7 +206,7 @@ - Public MN_CostFunctionCode
  costFunction + Public MM_TransportationModeType
  avoidMode @@ -220,7 +220,7 @@ Initial: - "time" + Stereotype: @@ -232,7 +232,7 @@ Range: - Range:0 to 1 + Range:0 to * Transient: @@ -302,7 +302,7 @@ - Public Boolean
  returnItineraries + Public MM_AdvisoryCategory
  advisories @@ -328,7 +328,7 @@ Range: - + Range:0 to * Transient: @@ -350,7 +350,7 @@ - Public MM_TransportationModeType
  transportationMode + Public Boolean
  returnItineraries diff --git a/approved/html/EARoot/EA1/EA3/EA26/EA4/EA4997.png b/approved/html/EARoot/EA1/EA3/EA26/EA4/EA4997.png index 3fff79e81..8a676e42a 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA26/EA4/EA4997.png and b/approved/html/EARoot/EA1/EA3/EA26/EA4/EA4997.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA26/EA4/EA5001.png b/approved/html/EARoot/EA1/EA3/EA26/EA4/EA5001.png index 71e376f54..51d91acea 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA26/EA4/EA5001.png and b/approved/html/EARoot/EA1/EA3/EA26/EA4/EA5001.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA26/EA4/EA5003.png b/approved/html/EARoot/EA1/EA3/EA26/EA4/EA5003.png index dfccd70bc..cc96aebd5 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA26/EA4/EA5003.png and b/approved/html/EARoot/EA1/EA3/EA26/EA4/EA5003.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA26/EA4/EA5005.png b/approved/html/EARoot/EA1/EA3/EA26/EA4/EA5005.png index 7d7a554fe..a70d0da1b 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA26/EA4/EA5005.png and b/approved/html/EARoot/EA1/EA3/EA26/EA4/EA5005.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA26/EA4/EA5007.png b/approved/html/EARoot/EA1/EA3/EA26/EA4/EA5007.png index ab5bb1145..0b5e95e90 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA26/EA4/EA5007.png and b/approved/html/EARoot/EA1/EA3/EA26/EA4/EA5007.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA26/EA4/EA5013.htm b/approved/html/EARoot/EA1/EA3/EA26/EA4/EA5013.htm index 6ce01ee79..ad76896ef 100644 --- a/approved/html/EARoot/EA1/EA3/EA26/EA4/EA5013.htm +++ b/approved/html/EARoot/EA1/EA3/EA26/EA4/EA5013.htm @@ -111,7 +111,7 @@ - Public Boolean
  isTheDisabledAccessible + Public Boolean
  isTraversable @@ -159,7 +159,7 @@ - Public Boolean
  isTraversable + Public Boolean
  isTheDisabledAccessible diff --git a/approved/html/EARoot/EA1/EA3/EA26/EA4/EA5014.htm b/approved/html/EARoot/EA1/EA3/EA26/EA4/EA5014.htm index 545f5b69e..9c5dc5e16 100644 --- a/approved/html/EARoot/EA1/EA3/EA26/EA4/EA5014.htm +++ b/approved/html/EARoot/EA1/EA3/EA26/EA4/EA5014.htm @@ -111,7 +111,7 @@ - Public NT_NetworkPosition
  networkPosition + Public MM_TransferNodeType
  transferNodeType @@ -159,7 +159,7 @@ - Public MM_TransferNodeType
  transferNodeType + Public NT_NetworkPosition
  networkPosition diff --git a/approved/html/EARoot/EA1/EA3/EA26/EA4/EA5015.htm b/approved/html/EARoot/EA1/EA3/EA26/EA4/EA5015.htm index 030154991..4df1a6e2a 100644 --- a/approved/html/EARoot/EA1/EA3/EA26/EA4/EA5015.htm +++ b/approved/html/EARoot/EA1/EA3/EA26/EA4/EA5015.htm @@ -108,7 +108,7 @@ - Public <undefined>
  airport + Public <undefined>
  busStop @@ -156,7 +156,7 @@ - Public <undefined>
  busStop + Public <undefined>
  taxiStop @@ -204,7 +204,7 @@ - Public <undefined>
  gate + Public <undefined>
  subwayStation @@ -252,7 +252,7 @@ - Public <undefined>
  interCityBusTerminal + Public <undefined>
  lightrailStation @@ -300,7 +300,7 @@ - Public <undefined>
  lightrailStation + Public <undefined>
  railwayStation @@ -348,7 +348,7 @@ - Public <undefined>
  parkAndRide + Public <undefined>
  interCityBusTerminal @@ -444,7 +444,7 @@ - Public <undefined>
  port + Public <undefined>
  gate @@ -492,7 +492,7 @@ - Public <undefined>
  privateParkingLot + Public <undefined>
  port @@ -540,7 +540,7 @@ - Public <undefined>
  publicParkingLot + Public <undefined>
  airport @@ -588,7 +588,7 @@ - Public <undefined>
  railwayStation + Public <undefined>
  parkAndRide @@ -636,7 +636,7 @@ - Public <undefined>
  subwayStation + Public <undefined>
  publicParkingLot @@ -684,7 +684,7 @@ - Public <undefined>
  taxiStop + Public <undefined>
  privateParkingLot diff --git a/approved/html/EARoot/EA1/EA3/EA26/EA4861.png b/approved/html/EARoot/EA1/EA3/EA26/EA4861.png index 4ae0ef2a3..1163f0387 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA26/EA4861.png and b/approved/html/EARoot/EA1/EA3/EA26/EA4861.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA26/EA4863.png b/approved/html/EARoot/EA1/EA3/EA26/EA4863.png index cfc91f58d..8284ad0a9 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA26/EA4863.png and b/approved/html/EARoot/EA1/EA3/EA26/EA4863.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA26/EA5/EA5017.png b/approved/html/EARoot/EA1/EA3/EA26/EA5/EA5017.png index c7353aca9..642f208c0 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA26/EA5/EA5017.png and b/approved/html/EARoot/EA1/EA3/EA26/EA5/EA5017.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA26/EA5/EA5019.png b/approved/html/EARoot/EA1/EA3/EA26/EA5/EA5019.png index 8f5ea8b09..681a51276 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA26/EA5/EA5019.png and b/approved/html/EARoot/EA1/EA3/EA26/EA5/EA5019.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA26/EA5/EA5023.png b/approved/html/EARoot/EA1/EA3/EA26/EA5/EA5023.png index 4cb11808c..c72044329 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA26/EA5/EA5023.png and b/approved/html/EARoot/EA1/EA3/EA26/EA5/EA5023.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA26/EA5/EA5025.htm b/approved/html/EARoot/EA1/EA3/EA26/EA5/EA5025.htm index 62aaf5d6c..7d2a6da71 100644 --- a/approved/html/EARoot/EA1/EA3/EA26/EA5/EA5025.htm +++ b/approved/html/EARoot/EA1/EA3/EA26/EA5/EA5025.htm @@ -111,7 +111,7 @@ - Public GM_CompositeCurve
  geometry + Public MM_RouteSummary
  summary @@ -159,7 +159,7 @@ - Public MM_RouteSummary
  summary + Public GM_CompositeCurve
  geometry diff --git a/approved/html/EARoot/EA1/EA3/EA26/EA5/EA5026.htm b/approved/html/EARoot/EA1/EA3/EA26/EA5/EA5026.htm index 56f59234d..dda23ed61 100644 --- a/approved/html/EARoot/EA1/EA3/EA26/EA5/EA5026.htm +++ b/approved/html/EARoot/EA1/EA3/EA26/EA5/EA5026.htm @@ -109,7 +109,7 @@ - Public Integer
  numberOfTransfers + Public Measure
  totalCost @@ -157,7 +157,7 @@ - Public Measure
  totalCost + Public Integer
  numberOfTransfers diff --git a/approved/html/EARoot/EA1/EA3/EA27/EA5032.png b/approved/html/EARoot/EA1/EA3/EA27/EA5032.png index 5fd7daa5c..e19fbc095 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA27/EA5032.png and b/approved/html/EARoot/EA1/EA3/EA27/EA5032.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA27/EA5034.png b/approved/html/EARoot/EA1/EA3/EA27/EA5034.png index ee201c0c0..0515a5351 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA27/EA5034.png and b/approved/html/EARoot/EA1/EA3/EA27/EA5034.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA27/EA5036.png b/approved/html/EARoot/EA1/EA3/EA27/EA5036.png index 152d8ef88..dfa419ae3 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA27/EA5036.png and b/approved/html/EARoot/EA1/EA3/EA27/EA5036.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA27/EA5038.png b/approved/html/EARoot/EA1/EA3/EA27/EA5038.png index aaab44c7b..44cf9286e 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA27/EA5038.png and b/approved/html/EARoot/EA1/EA3/EA27/EA5038.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA27/EA5040.png b/approved/html/EARoot/EA1/EA3/EA27/EA5040.png index 201be54e0..197dc27d1 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA27/EA5040.png and b/approved/html/EARoot/EA1/EA3/EA27/EA5040.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA27/EA5044.png b/approved/html/EARoot/EA1/EA3/EA27/EA5044.png index 89350c4fd..5136afa18 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA27/EA5044.png and b/approved/html/EARoot/EA1/EA3/EA27/EA5044.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA27/EA5046.png b/approved/html/EARoot/EA1/EA3/EA27/EA5046.png index ed21e57af..3172eb03c 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA27/EA5046.png and b/approved/html/EARoot/EA1/EA3/EA27/EA5046.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA27/EA5048.png b/approved/html/EARoot/EA1/EA3/EA27/EA5048.png index c9b96ed28..cd1d95eef 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA27/EA5048.png and b/approved/html/EARoot/EA1/EA3/EA27/EA5048.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA27/EA5050.png b/approved/html/EARoot/EA1/EA3/EA27/EA5050.png index ba5ed7ab4..960c34fae 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA27/EA5050.png and b/approved/html/EARoot/EA1/EA3/EA27/EA5050.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA27/EA5052.png b/approved/html/EARoot/EA1/EA3/EA27/EA5052.png index 8fcd8c178..1abda1f3c 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA27/EA5052.png and b/approved/html/EARoot/EA1/EA3/EA27/EA5052.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA27/EA5054.png b/approved/html/EARoot/EA1/EA3/EA27/EA5054.png index 27f7b32cc..c771231f1 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA27/EA5054.png and b/approved/html/EARoot/EA1/EA3/EA27/EA5054.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA27/EA5056.png b/approved/html/EARoot/EA1/EA3/EA27/EA5056.png index 23de2da7d..351a0c26e 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA27/EA5056.png and b/approved/html/EARoot/EA1/EA3/EA27/EA5056.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA27/EA5058.png b/approved/html/EARoot/EA1/EA3/EA27/EA5058.png index 64fa01c1a..86ab2f2ee 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA27/EA5058.png and b/approved/html/EARoot/EA1/EA3/EA27/EA5058.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA27/EA5060.png b/approved/html/EARoot/EA1/EA3/EA27/EA5060.png index 52f631e91..238b5b531 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA27/EA5060.png and b/approved/html/EARoot/EA1/EA3/EA27/EA5060.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA27/EA5064.png b/approved/html/EARoot/EA1/EA3/EA27/EA5064.png index 519ddc683..fa88a6d4f 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA27/EA5064.png and b/approved/html/EARoot/EA1/EA3/EA27/EA5064.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA27/EA5070.png b/approved/html/EARoot/EA1/EA3/EA27/EA5070.png index 2fc83861e..7b28e729f 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA27/EA5070.png and b/approved/html/EARoot/EA1/EA3/EA27/EA5070.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA27/EA5072.png b/approved/html/EARoot/EA1/EA3/EA27/EA5072.png index 4f6664c07..984b92b8e 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA27/EA5072.png and b/approved/html/EARoot/EA1/EA3/EA27/EA5072.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA27/EA5076.png b/approved/html/EARoot/EA1/EA3/EA27/EA5076.png index 5bb7121eb..aa3cc7024 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA27/EA5076.png and b/approved/html/EARoot/EA1/EA3/EA27/EA5076.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA27/EA5078.png b/approved/html/EARoot/EA1/EA3/EA27/EA5078.png index bc84f0915..313f93e9b 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA27/EA5078.png and b/approved/html/EARoot/EA1/EA3/EA27/EA5078.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA27/EA5080.png b/approved/html/EARoot/EA1/EA3/EA27/EA5080.png index a757ecb01..97287000c 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA27/EA5080.png and b/approved/html/EARoot/EA1/EA3/EA27/EA5080.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA27/EA5082.png b/approved/html/EARoot/EA1/EA3/EA27/EA5082.png index 4c4c572bd..f005cdb8d 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA27/EA5082.png and b/approved/html/EARoot/EA1/EA3/EA27/EA5082.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA27/EA5084.png b/approved/html/EARoot/EA1/EA3/EA27/EA5084.png index b0b2d5d14..003fe5dd4 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA27/EA5084.png and b/approved/html/EARoot/EA1/EA3/EA27/EA5084.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA27/EA5086.png b/approved/html/EARoot/EA1/EA3/EA27/EA5086.png index 414d1efee..bafbab53c 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA27/EA5086.png and b/approved/html/EARoot/EA1/EA3/EA27/EA5086.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA27/EA5088.png b/approved/html/EARoot/EA1/EA3/EA27/EA5088.png index fab83f670..877ca8aae 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA27/EA5088.png and b/approved/html/EARoot/EA1/EA3/EA27/EA5088.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA27/EA5090.png b/approved/html/EARoot/EA1/EA3/EA27/EA5090.png index d251a9424..801ed11bf 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA27/EA5090.png and b/approved/html/EARoot/EA1/EA3/EA27/EA5090.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA27/EA5092.png b/approved/html/EARoot/EA1/EA3/EA27/EA5092.png index 0a6b64495..38e6c597c 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA27/EA5092.png and b/approved/html/EARoot/EA1/EA3/EA27/EA5092.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA27/EA5094.png b/approved/html/EARoot/EA1/EA3/EA27/EA5094.png index df9f52a64..dbe67f196 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA27/EA5094.png and b/approved/html/EARoot/EA1/EA3/EA27/EA5094.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA27/EA5096.png b/approved/html/EARoot/EA1/EA3/EA27/EA5096.png index f5fab8b6b..82b34f47d 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA27/EA5096.png and b/approved/html/EARoot/EA1/EA3/EA27/EA5096.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA27/EA5098.png b/approved/html/EARoot/EA1/EA3/EA27/EA5098.png index c050efad0..aaf361894 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA27/EA5098.png and b/approved/html/EARoot/EA1/EA3/EA27/EA5098.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA27/EA5100.png b/approved/html/EARoot/EA1/EA3/EA27/EA5100.png index 056966b80..cbdebfa72 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA27/EA5100.png and b/approved/html/EARoot/EA1/EA3/EA27/EA5100.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA27/EA5115.htm b/approved/html/EARoot/EA1/EA3/EA27/EA5115.htm index 7ecac1b13..5da359fa2 100644 --- a/approved/html/EARoot/EA1/EA3/EA27/EA5115.htm +++ b/approved/html/EARoot/EA1/EA3/EA27/EA5115.htm @@ -108,7 +108,7 @@ - Public CharacterString
  definition + Public CharacterString
  name @@ -134,7 +134,7 @@ Range: - Range:0 to 1 + Transient: @@ -156,7 +156,7 @@ - Public CharacterString
  description + Public CharacterString
  definition @@ -204,7 +204,7 @@ - Public Set<RE_FieldOfApplication>
  fieldOfApplication + Public CharacterString
  description @@ -252,7 +252,7 @@ - Public CharacterString
  name + Public Set<RE_FieldOfApplication>
  fieldOfApplication @@ -278,7 +278,7 @@ Range: - + Range:0 to 1 Transient: diff --git a/approved/html/EARoot/EA1/EA3/EA27/EA5122.htm b/approved/html/EARoot/EA1/EA3/EA27/EA5122.htm index ced69615a..ba00f23da 100644 --- a/approved/html/EARoot/EA1/EA3/EA27/EA5122.htm +++ b/approved/html/EARoot/EA1/EA3/EA27/EA5122.htm @@ -107,7 +107,7 @@ - Public CharacterString
  description + Public CharacterString
  name @@ -133,7 +133,7 @@ Range: - Range:0 to 1 + Transient: @@ -155,7 +155,7 @@ - Public CharacterString
  name + Public CharacterString
  description @@ -181,7 +181,7 @@ Range: - + Range:0 to 1 Transient: diff --git a/approved/html/EARoot/EA1/EA3/EA27/EA5123.htm b/approved/html/EARoot/EA1/EA3/EA27/EA5123.htm index d21636252..1d7f10276 100644 --- a/approved/html/EARoot/EA1/EA3/EA27/EA5123.htm +++ b/approved/html/EARoot/EA1/EA3/EA27/EA5123.htm @@ -109,7 +109,7 @@ - Public Set<RE_AlternativeName>
  alternativeName + Public CharacterString
  name @@ -157,7 +157,7 @@ - Public CharacterString
  name + Public CI_Citation
  technicalStandard @@ -205,7 +205,7 @@ - Public CI_Citation
  technicalStandard + Public Set<RE_AlternativeName>
  alternativeName diff --git a/approved/html/EARoot/EA1/EA3/EA27/EA5125.htm b/approved/html/EARoot/EA1/EA3/EA27/EA5125.htm index 9ea7ed359..c94379478 100644 --- a/approved/html/EARoot/EA1/EA3/EA27/EA5125.htm +++ b/approved/html/EARoot/EA1/EA3/EA27/EA5125.htm @@ -109,7 +109,7 @@ - Public MD_CharacterSetCode
  characterEncoding + Public CharacterString
  name @@ -157,7 +157,7 @@ - Public CI_Citation
  citation + Public LanguageCode
  language @@ -253,7 +253,7 @@ - Public LanguageCode
  language + Public MD_CharacterSetCode
  characterEncoding @@ -301,7 +301,7 @@ - Public CharacterString
  name + Public CI_Citation
  citation diff --git a/approved/html/EARoot/EA1/EA3/EA27/EA5126.htm b/approved/html/EARoot/EA1/EA3/EA27/EA5126.htm index bcdfc6d73..a55841926 100644 --- a/approved/html/EARoot/EA1/EA3/EA27/EA5126.htm +++ b/approved/html/EARoot/EA1/EA3/EA27/EA5126.htm @@ -109,7 +109,7 @@ - Public CharacterString
  controlBodyDecisionEvent + Public Date
  dateProposed @@ -135,7 +135,7 @@ Range: - Range:0 to 1 + Transient: @@ -157,7 +157,7 @@ - Public CharacterString
  controlBodyNotes + Public CharacterString
  justification @@ -183,7 +183,7 @@ Range: - Range:0 to 1 + Transient: @@ -205,7 +205,7 @@ - Public Date
  dateDisposed + Public RE_DecisionStatus
  status @@ -231,7 +231,7 @@ Range: - Range:0 to 1 + Transient: @@ -253,7 +253,7 @@ - Public Date
  dateProposed + Public RE_Disposition
  disposition @@ -279,7 +279,7 @@ Range: - + Range:0 to 1 Transient: @@ -301,7 +301,7 @@ - Public RE_Disposition
  disposition + Public Date
  dateDisposed @@ -349,7 +349,7 @@ - Public CharacterString
  justification + Public CharacterString
  controlBodyDecisionEvent @@ -375,7 +375,7 @@ Range: - + Range:0 to 1 Transient: @@ -397,7 +397,7 @@ - Public CharacterString
  registerManagerNotes + Public CharacterString
  controlBodyNotes @@ -445,7 +445,7 @@ - Public RE_DecisionStatus
  status + Public CharacterString
  registerManagerNotes @@ -471,7 +471,7 @@ Range: - + Range:0 to 1 Transient: diff --git a/approved/html/EARoot/EA1/EA3/EA27/EA5127.htm b/approved/html/EARoot/EA1/EA3/EA27/EA5127.htm index 8d79b984d..95f8ea450 100644 --- a/approved/html/EARoot/EA1/EA3/EA27/EA5127.htm +++ b/approved/html/EARoot/EA1/EA3/EA27/EA5127.htm @@ -157,7 +157,7 @@ - Public CharacterString
  notes + Public RE_SimilarityToSource
  similarity @@ -183,7 +183,7 @@ Range: - Range:0 to 1 + Transient: @@ -253,7 +253,7 @@ - Public RE_SimilarityToSource
  similarity + Public CharacterString
  notes @@ -279,7 +279,7 @@ Range: - + Range:0 to 1 Transient: diff --git a/approved/html/EARoot/EA1/EA3/EA27/EA5129.htm b/approved/html/EARoot/EA1/EA3/EA27/EA5129.htm index 02552c9b7..3d02286f3 100644 --- a/approved/html/EARoot/EA1/EA3/EA27/EA5129.htm +++ b/approved/html/EARoot/EA1/EA3/EA27/EA5129.htm @@ -110,7 +110,7 @@ - Public Set<RE_Locale>
  alternativeLanguages + Public CharacterString
  name @@ -206,7 +206,7 @@ - Public Date
  dateOfLastChange + Public CI_OnlineResource
  uniformResourceIdentifier @@ -232,7 +232,7 @@ Range: - Range:0 to 1 + Transient: @@ -254,7 +254,7 @@ - Public CharacterString
  name + Public RE_Locale
  operatingLanguage @@ -302,7 +302,7 @@ - Public RE_Locale
  operatingLanguage + Public Set<RE_Locale>
  alternativeLanguages @@ -350,7 +350,7 @@ - Public CI_OnlineResource
  uniformResourceIdentifier + Public RE_Version
  version @@ -376,7 +376,7 @@ Range: - + Range:0 to 1 Transient: @@ -398,7 +398,7 @@ - Public RE_Version
  version + Public Date
  dateOfLastChange diff --git a/approved/html/EARoot/EA1/EA3/EA27/EA5130.htm b/approved/html/EARoot/EA1/EA3/EA27/EA5130.htm index 5f31e61d9..14c2ac863 100644 --- a/approved/html/EARoot/EA1/EA3/EA27/EA5130.htm +++ b/approved/html/EARoot/EA1/EA3/EA27/EA5130.htm @@ -110,7 +110,7 @@ - Public Set<RE_AlternativeExpression>
  alternativeExpressions + Public Integer
  itemIdentifier @@ -136,7 +136,7 @@ Range: - Range:0 to 1 + Transient: @@ -158,7 +158,7 @@ - Public Date
  dateAccepted + Public CharacterString
  name @@ -184,7 +184,7 @@ Range: - Range:0 to 1 + Transient: @@ -206,7 +206,7 @@ - Public Date
  dateAmended + Public RE_ItemStatus
  status @@ -232,7 +232,7 @@ Range: - Range:0 to 1 + Transient: @@ -240,7 +240,7 @@ Derived: - False + True IsID: @@ -254,7 +254,7 @@ - Public CharacterString
  definition + Public Date
  dateAccepted @@ -280,7 +280,7 @@ Range: - + Range:0 to 1 Transient: @@ -302,7 +302,7 @@ - Public CharacterString
  description + Public Date
  dateAmended @@ -350,7 +350,7 @@ - Public Set<RE_FieldOfApplication>
  fieldOfApplication + Public CharacterString
  definition @@ -376,7 +376,7 @@ Range: - Range:0 to 1 + Transient: @@ -398,7 +398,7 @@ - Public Integer
  itemIdentifier + Public CharacterString
  description @@ -424,7 +424,7 @@ Range: - + Range:0 to 1 Transient: @@ -446,7 +446,7 @@ - Public CharacterString
  name + Public Set<RE_FieldOfApplication>
  fieldOfApplication @@ -472,7 +472,7 @@ Range: - + Range:0 to 1 Transient: @@ -494,7 +494,7 @@ - Public RE_ItemStatus
  status + Public Set<RE_AlternativeExpression>
  alternativeExpressions @@ -520,7 +520,7 @@ Range: - + Range:0 to 1 Transient: @@ -528,7 +528,7 @@ Derived: - True + False IsID: diff --git a/approved/html/EARoot/EA1/EA3/EA27/EA5131.htm b/approved/html/EARoot/EA1/EA3/EA27/EA5131.htm index 155ba655b..743cf161d 100644 --- a/approved/html/EARoot/EA1/EA3/EA27/EA5131.htm +++ b/approved/html/EARoot/EA1/EA3/EA27/EA5131.htm @@ -108,7 +108,7 @@ - Public CI_ResponsibleParty
  contact + Public CharacterString
  name @@ -156,7 +156,7 @@ - Public CharacterString
  name + Public CI_ResponsibleParty
  contact diff --git a/approved/html/EARoot/EA1/EA3/EA27/EA5132.htm b/approved/html/EARoot/EA1/EA3/EA27/EA5132.htm index 017d6c60c..90aa202db 100644 --- a/approved/html/EARoot/EA1/EA3/EA27/EA5132.htm +++ b/approved/html/EARoot/EA1/EA3/EA27/EA5132.htm @@ -108,7 +108,7 @@ - Public CI_ResponsibleParty
  contact + Public CharacterString
  name @@ -156,7 +156,7 @@ - Public CharacterString
  name + Public CI_ResponsibleParty
  contact diff --git a/approved/html/EARoot/EA1/EA3/EA27/EA5133.htm b/approved/html/EARoot/EA1/EA3/EA27/EA5133.htm index 6d213a268..6ff651cdd 100644 --- a/approved/html/EARoot/EA1/EA3/EA27/EA5133.htm +++ b/approved/html/EARoot/EA1/EA3/EA27/EA5133.htm @@ -108,7 +108,7 @@ - Public <undefined>
  contextAdded + Public <undefined>
  identical @@ -122,7 +122,7 @@ Initial: - 3 + 1 Stereotype: @@ -156,7 +156,7 @@ - Public <undefined>
  generalization + Public <undefined>
  restyled @@ -170,7 +170,7 @@ Initial: - 4 + 2 Stereotype: @@ -204,7 +204,7 @@ - Public <undefined>
  identical + Public <undefined>
  contextAdded @@ -218,7 +218,7 @@ Initial: - 1 + 3 Stereotype: @@ -252,7 +252,7 @@ - Public <undefined>
  restyled + Public <undefined>
  generalization @@ -266,7 +266,7 @@ Initial: - 2 + 4 Stereotype: diff --git a/approved/html/EARoot/EA1/EA3/EA27/EA5134.htm b/approved/html/EARoot/EA1/EA3/EA27/EA5134.htm index e8c7d4312..f1ff09a70 100644 --- a/approved/html/EARoot/EA1/EA3/EA27/EA5134.htm +++ b/approved/html/EARoot/EA1/EA3/EA27/EA5134.htm @@ -109,7 +109,7 @@ - Public CI_ResponsibleParty
  contact + Public CharacterString
  name @@ -157,7 +157,7 @@ - Public CharacterString
  name + Public CI_ResponsibleParty
  contact diff --git a/approved/html/EARoot/EA1/EA3/EA27/EA5135.htm b/approved/html/EARoot/EA1/EA3/EA27/EA5135.htm index 6ce282be1..a246a14aa 100644 --- a/approved/html/EARoot/EA1/EA3/EA27/EA5135.htm +++ b/approved/html/EARoot/EA1/EA3/EA27/EA5135.htm @@ -109,7 +109,7 @@ - Public RE_Locale
  operatingLanguage + Public CI_OnlineResource
  uniformResourceIdentifier @@ -157,7 +157,7 @@ - Public CI_OnlineResource
  uniformResourceIdentifier + Public RE_Locale
  operatingLanguage diff --git a/approved/html/EARoot/EA1/EA3/EA27/EA5136.htm b/approved/html/EARoot/EA1/EA3/EA27/EA5136.htm index e61c4544d..5dc1dfc14 100644 --- a/approved/html/EARoot/EA1/EA3/EA27/EA5136.htm +++ b/approved/html/EARoot/EA1/EA3/EA27/EA5136.htm @@ -109,7 +109,7 @@ - Public Date
  versionDate + Public CharacterString
  versionNumber @@ -157,7 +157,7 @@ - Public CharacterString
  versionNumber + Public Date
  versionDate diff --git a/approved/html/EARoot/EA1/EA3/EA28/EA1/EA5235.png b/approved/html/EARoot/EA1/EA3/EA28/EA1/EA5235.png index 73ca1520d..18a1c9f5b 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA28/EA1/EA5235.png and b/approved/html/EARoot/EA1/EA3/EA28/EA1/EA5235.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA28/EA1/EA5237.png b/approved/html/EARoot/EA1/EA3/EA28/EA1/EA5237.png index a6d4f69d8..d0decf1da 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA28/EA1/EA5237.png and b/approved/html/EARoot/EA1/EA3/EA28/EA1/EA5237.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA28/EA1/EA5245.png b/approved/html/EARoot/EA1/EA3/EA28/EA1/EA5245.png index 51e1a937d..9f22c81a4 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA28/EA1/EA5245.png and b/approved/html/EARoot/EA1/EA3/EA28/EA1/EA5245.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA28/EA1/EA5249.png b/approved/html/EARoot/EA1/EA3/EA28/EA1/EA5249.png index b5c5095ce..d992c2b54 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA28/EA1/EA5249.png and b/approved/html/EARoot/EA1/EA3/EA28/EA1/EA5249.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA28/EA1/EA5251.png b/approved/html/EARoot/EA1/EA3/EA28/EA1/EA5251.png index 90739aa3b..5aea17ca1 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA28/EA1/EA5251.png and b/approved/html/EARoot/EA1/EA3/EA28/EA1/EA5251.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA28/EA1/EA5255.png b/approved/html/EARoot/EA1/EA3/EA28/EA1/EA5255.png index a92d8649b..49d3476b3 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA28/EA1/EA5255.png and b/approved/html/EARoot/EA1/EA3/EA28/EA1/EA5255.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA28/EA1/EA5257.png b/approved/html/EARoot/EA1/EA3/EA28/EA1/EA5257.png index cf1296e62..c5234c13a 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA28/EA1/EA5257.png and b/approved/html/EARoot/EA1/EA3/EA28/EA1/EA5257.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA28/EA1/EA5261.png b/approved/html/EARoot/EA1/EA3/EA28/EA1/EA5261.png index dc092b329..08d0b9b8c 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA28/EA1/EA5261.png and b/approved/html/EARoot/EA1/EA3/EA28/EA1/EA5261.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA28/EA1/EA5263.png b/approved/html/EARoot/EA1/EA3/EA28/EA1/EA5263.png index 37dfe5c67..9019514db 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA28/EA1/EA5263.png and b/approved/html/EARoot/EA1/EA3/EA28/EA1/EA5263.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA28/EA1/EA5267.png b/approved/html/EARoot/EA1/EA3/EA28/EA1/EA5267.png index de4262854..4bd110089 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA28/EA1/EA5267.png and b/approved/html/EARoot/EA1/EA3/EA28/EA1/EA5267.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA28/EA1/EA5269.png b/approved/html/EARoot/EA1/EA3/EA28/EA1/EA5269.png index 742e8dec8..812f9ed90 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA28/EA1/EA5269.png and b/approved/html/EARoot/EA1/EA3/EA28/EA1/EA5269.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA28/EA1/EA5283.png b/approved/html/EARoot/EA1/EA3/EA28/EA1/EA5283.png index 6ce12a92b..e4603a559 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA28/EA1/EA5283.png and b/approved/html/EARoot/EA1/EA3/EA28/EA1/EA5283.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA28/EA1/EA5287.png b/approved/html/EARoot/EA1/EA3/EA28/EA1/EA5287.png index 020a8b2ad..212334198 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA28/EA1/EA5287.png and b/approved/html/EARoot/EA1/EA3/EA28/EA1/EA5287.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA28/EA1/EA5293.htm b/approved/html/EARoot/EA1/EA3/EA28/EA1/EA5293.htm index d2bdba1fc..88b72b8d3 100644 --- a/approved/html/EARoot/EA1/EA3/EA28/EA1/EA5293.htm +++ b/approved/html/EARoot/EA1/EA3/EA28/EA1/EA5293.htm @@ -107,7 +107,7 @@ - Public NilReason
  nilReason + Public Boolean
  value @@ -155,7 +155,7 @@ - Public Boolean
  value + Public NilReason
  nilReason diff --git a/approved/html/EARoot/EA1/EA3/EA28/EA1/EA5298.htm b/approved/html/EARoot/EA1/EA3/EA28/EA1/EA5298.htm index 3e45cb83c..7c1aca925 100644 --- a/approved/html/EARoot/EA1/EA3/EA28/EA1/EA5298.htm +++ b/approved/html/EARoot/EA1/EA3/EA28/EA1/EA5298.htm @@ -108,7 +108,7 @@ - Public CharacterString
  cs + Public CharacterString
  decimal @@ -122,7 +122,7 @@ Initial: - "," + "." Stereotype: @@ -156,7 +156,7 @@ - Public CharacterString
  decimal + Public CharacterString
  cs @@ -170,7 +170,7 @@ Initial: - "." + "," Stereotype: diff --git a/approved/html/EARoot/EA1/EA3/EA28/EA1/EA5300.htm b/approved/html/EARoot/EA1/EA3/EA28/EA1/EA5300.htm index 593e15395..2516ecb4b 100644 --- a/approved/html/EARoot/EA1/EA3/EA28/EA1/EA5300.htm +++ b/approved/html/EARoot/EA1/EA3/EA28/EA1/EA5300.htm @@ -107,7 +107,7 @@ - Public NilReason
  nilReason + Public Real
  value @@ -155,7 +155,7 @@ - Public Real
  value + Public NilReason
  nilReason diff --git a/approved/html/EARoot/EA1/EA3/EA28/EA1/EA5303.htm b/approved/html/EARoot/EA1/EA3/EA28/EA1/EA5303.htm index 33b806062..702912e97 100644 --- a/approved/html/EARoot/EA1/EA3/EA28/EA1/EA5303.htm +++ b/approved/html/EARoot/EA1/EA3/EA28/EA1/EA5303.htm @@ -107,7 +107,7 @@ - Public NilReason
  nilReason + Public Integer
  value @@ -155,7 +155,7 @@ - Public Integer
  value + Public NilReason
  nilReason diff --git a/approved/html/EARoot/EA1/EA3/EA28/EA1/EA5306.htm b/approved/html/EARoot/EA1/EA3/EA28/EA1/EA5306.htm index 2790c44bc..a19c1b4ec 100644 --- a/approved/html/EARoot/EA1/EA3/EA28/EA1/EA5306.htm +++ b/approved/html/EARoot/EA1/EA3/EA28/EA1/EA5306.htm @@ -107,7 +107,7 @@ - Public NilReason
  nilReason + Public Measure
  value @@ -155,7 +155,7 @@ - Public Measure
  value + Public NilReason
  nilReason diff --git a/approved/html/EARoot/EA1/EA3/EA28/EA1/EA5309.htm b/approved/html/EARoot/EA1/EA3/EA28/EA1/EA5309.htm index 28b098ab3..a161a5dda 100644 --- a/approved/html/EARoot/EA1/EA3/EA28/EA1/EA5309.htm +++ b/approved/html/EARoot/EA1/EA3/EA28/EA1/EA5309.htm @@ -107,7 +107,7 @@ - Public NilReason
  nilReason + Public CharacterString
  value @@ -155,7 +155,7 @@ - Public CharacterString
  value + Public NilReason
  nilReason diff --git a/approved/html/EARoot/EA1/EA3/EA28/EA1/EA5317.htm b/approved/html/EARoot/EA1/EA3/EA28/EA1/EA5317.htm index d4a9c2a69..9a1a78676 100644 --- a/approved/html/EARoot/EA1/EA3/EA28/EA1/EA5317.htm +++ b/approved/html/EARoot/EA1/EA3/EA28/EA1/EA5317.htm @@ -107,7 +107,7 @@ - Public NilReason
  nilReason + Public CharacterString
  value @@ -155,7 +155,7 @@ - Public CharacterString
  value + Public NilReason
  nilReason diff --git a/approved/html/EARoot/EA1/EA3/EA28/EA12/EA5410.png b/approved/html/EARoot/EA1/EA3/EA28/EA12/EA5410.png index 3b0334686..e401dc950 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA28/EA12/EA5410.png and b/approved/html/EARoot/EA1/EA3/EA28/EA12/EA5410.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA28/EA12/EA5412.png b/approved/html/EARoot/EA1/EA3/EA28/EA12/EA5412.png index d6d638ce8..e085c472e 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA28/EA12/EA5412.png and b/approved/html/EARoot/EA1/EA3/EA28/EA12/EA5412.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA28/EA12/EA5416.png b/approved/html/EARoot/EA1/EA3/EA28/EA12/EA5416.png index 946dea7b8..5f37e397d 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA28/EA12/EA5416.png and b/approved/html/EARoot/EA1/EA3/EA28/EA12/EA5416.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA28/EA12/EA5420.htm b/approved/html/EARoot/EA1/EA3/EA28/EA12/EA5420.htm index b670fbca2..72599f3d3 100644 --- a/approved/html/EARoot/EA1/EA3/EA28/EA12/EA5420.htm +++ b/approved/html/EARoot/EA1/EA3/EA28/EA12/EA5420.htm @@ -156,7 +156,7 @@ - Public Angle
  endAngle + Public Length
  radius @@ -182,7 +182,7 @@ Range: - Range:0 to 1 + Transient: @@ -204,7 +204,7 @@ - Public Length
  radius + Public Angle
  startAngle @@ -230,7 +230,7 @@ Range: - + Range:0 to 1 Transient: @@ -252,7 +252,7 @@ - Public Angle
  startAngle + Public Angle
  endAngle diff --git a/approved/html/EARoot/EA1/EA3/EA28/EA13/EA5424.png b/approved/html/EARoot/EA1/EA3/EA28/EA13/EA5424.png index fcb064d98..d4b713038 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA28/EA13/EA5424.png and b/approved/html/EARoot/EA1/EA3/EA28/EA13/EA5424.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA28/EA13/EA5430.png b/approved/html/EARoot/EA1/EA3/EA28/EA13/EA5430.png index 4f0160a45..c3a5e8500 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA28/EA13/EA5430.png and b/approved/html/EARoot/EA1/EA3/EA28/EA13/EA5430.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA28/EA13/EA5434.htm b/approved/html/EARoot/EA1/EA3/EA28/EA13/EA5434.htm index a06327537..a79b9a6ce 100644 --- a/approved/html/EARoot/EA1/EA3/EA28/EA13/EA5434.htm +++ b/approved/html/EARoot/EA1/EA3/EA28/EA13/EA5434.htm @@ -204,7 +204,7 @@ - Public ScopedName
  identifier + Public GenericName
  name @@ -230,7 +230,7 @@ Range: - Range:0 to 1 + Range:0 to * Transient: @@ -252,7 +252,7 @@ - Public GenericName
  name + Public ScopedName
  identifier @@ -278,7 +278,7 @@ Range: - Range:0 to * + Range:0 to 1 Transient: diff --git a/approved/html/EARoot/EA1/EA3/EA28/EA15/EA5444.png b/approved/html/EARoot/EA1/EA3/EA28/EA15/EA5444.png index d75623671..b112129db 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA28/EA15/EA5444.png and b/approved/html/EARoot/EA1/EA3/EA28/EA15/EA5444.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA28/EA15/EA5448.png b/approved/html/EARoot/EA1/EA3/EA28/EA15/EA5448.png index 2cf3c1cf9..83990da62 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA28/EA15/EA5448.png and b/approved/html/EARoot/EA1/EA3/EA28/EA15/EA5448.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA28/EA15/EA5450.png b/approved/html/EARoot/EA1/EA3/EA28/EA15/EA5450.png index d1d7a41c0..420708f1d 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA28/EA15/EA5450.png and b/approved/html/EARoot/EA1/EA3/EA28/EA15/EA5450.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA28/EA15/EA5455.htm b/approved/html/EARoot/EA1/EA3/EA28/EA15/EA5455.htm index 3f4dae0da..2bbadf23d 100644 --- a/approved/html/EARoot/EA1/EA3/EA28/EA15/EA5455.htm +++ b/approved/html/EARoot/EA1/EA3/EA28/EA15/EA5455.htm @@ -108,7 +108,7 @@ - Public Any
  resultOf + Public TM_Instant
  validTime @@ -156,7 +156,7 @@ - Public Any
  target + Public Any
  using @@ -204,7 +204,7 @@ - Public Any
  using + Public Any
  target @@ -252,7 +252,7 @@ - Public TM_Instant
  validTime + Public Any
  resultOf diff --git a/approved/html/EARoot/EA1/EA3/EA28/EA17/EA5476.png b/approved/html/EARoot/EA1/EA3/EA28/EA17/EA5476.png index 914eaf7e1..6b7358ca1 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA28/EA17/EA5476.png and b/approved/html/EARoot/EA1/EA3/EA28/EA17/EA5476.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA28/EA17/EA5478.png b/approved/html/EARoot/EA1/EA3/EA28/EA17/EA5478.png index 6d3f5aeb0..ed15f24d0 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA28/EA17/EA5478.png and b/approved/html/EARoot/EA1/EA3/EA28/EA17/EA5478.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA28/EA17/EA5480.png b/approved/html/EARoot/EA1/EA3/EA28/EA17/EA5480.png index e0887c405..d34572440 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA28/EA17/EA5480.png and b/approved/html/EARoot/EA1/EA3/EA28/EA17/EA5480.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA28/EA17/EA5482.png b/approved/html/EARoot/EA1/EA3/EA28/EA17/EA5482.png index dc34237b4..1e2305234 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA28/EA17/EA5482.png and b/approved/html/EARoot/EA1/EA3/EA28/EA17/EA5482.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA28/EA17/EA5484.png b/approved/html/EARoot/EA1/EA3/EA28/EA17/EA5484.png index b8120dfa7..59ffe5542 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA28/EA17/EA5484.png and b/approved/html/EARoot/EA1/EA3/EA28/EA17/EA5484.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA28/EA17/EA5490.png b/approved/html/EARoot/EA1/EA3/EA28/EA17/EA5490.png index a7f6fdd2e..b19472f63 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA28/EA17/EA5490.png and b/approved/html/EARoot/EA1/EA3/EA28/EA17/EA5490.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA28/EA17/EA5492.png b/approved/html/EARoot/EA1/EA3/EA28/EA17/EA5492.png index 34abbb585..d67cb05ee 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA28/EA17/EA5492.png and b/approved/html/EARoot/EA1/EA3/EA28/EA17/EA5492.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA28/EA17/EA5496.htm b/approved/html/EARoot/EA1/EA3/EA28/EA17/EA5496.htm index 000ca9c2c..cefd16041 100644 --- a/approved/html/EARoot/EA1/EA3/EA28/EA17/EA5496.htm +++ b/approved/html/EARoot/EA1/EA3/EA28/EA17/EA5496.htm @@ -156,7 +156,7 @@ - Public DerivationUnitTerm
  derivationUnitTerm + Public ConversionToPreferredUnit
  roughConversionToPreferredUnit @@ -182,7 +182,7 @@ Range: - Range:0 to * + Range:0 to 1 Transient: @@ -204,7 +204,7 @@ - Public ConversionToPreferredUnit
  roughConversionToPreferredUnit + Public DerivationUnitTerm
  derivationUnitTerm @@ -230,7 +230,7 @@ Range: - Range:0 to 1 + Range:0 to * Transient: diff --git a/approved/html/EARoot/EA1/EA3/EA28/EA17/EA5497.htm b/approved/html/EARoot/EA1/EA3/EA28/EA17/EA5497.htm index 4d645ad55..5f1b43b1e 100644 --- a/approved/html/EARoot/EA1/EA3/EA28/EA17/EA5497.htm +++ b/approved/html/EARoot/EA1/EA3/EA28/EA17/EA5497.htm @@ -107,7 +107,7 @@ - Public FactorOrFormula
  factorOrFormula + Public UnitOfMeasure
  uom @@ -155,7 +155,7 @@ - Public UnitOfMeasure
  uom + Public FactorOrFormula
  factorOrFormula diff --git a/approved/html/EARoot/EA1/EA3/EA28/EA17/EA5498.htm b/approved/html/EARoot/EA1/EA3/EA28/EA17/EA5498.htm index 4ac050eda..7990bd73a 100644 --- a/approved/html/EARoot/EA1/EA3/EA28/EA17/EA5498.htm +++ b/approved/html/EARoot/EA1/EA3/EA28/EA17/EA5498.htm @@ -107,7 +107,7 @@ - Public Integer
  exponent + Public UnitOfMeasure
  uom @@ -155,7 +155,7 @@ - Public UnitOfMeasure
  uom + Public Integer
  exponent diff --git a/approved/html/EARoot/EA1/EA3/EA28/EA17/EA5502.htm b/approved/html/EARoot/EA1/EA3/EA28/EA17/EA5502.htm index dad7d64bc..902ba21b1 100644 --- a/approved/html/EARoot/EA1/EA3/EA28/EA17/EA5502.htm +++ b/approved/html/EARoot/EA1/EA3/EA28/EA17/EA5502.htm @@ -109,7 +109,7 @@ - Public GenericName
  catalogSymbol + Public CharacterString
  quantityType @@ -157,7 +157,7 @@ - Public CharacterString
  quantityType + Public URI
  quantityTypeReference @@ -205,7 +205,7 @@ - Public URI
  quantityTypeReference + Public GenericName
  catalogSymbol diff --git a/approved/html/EARoot/EA1/EA3/EA28/EA18/EA5510.png b/approved/html/EARoot/EA1/EA3/EA28/EA18/EA5510.png index aefa3cf35..516a47f0e 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA28/EA18/EA5510.png and b/approved/html/EARoot/EA1/EA3/EA28/EA18/EA5510.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA28/EA18/EA5512.png b/approved/html/EARoot/EA1/EA3/EA28/EA18/EA5512.png index b34756c49..cb8bb57c4 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA28/EA18/EA5512.png and b/approved/html/EARoot/EA1/EA3/EA28/EA18/EA5512.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA28/EA18/EA5514.png b/approved/html/EARoot/EA1/EA3/EA28/EA18/EA5514.png index c2bc7b355..33d115df1 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA28/EA18/EA5514.png and b/approved/html/EARoot/EA1/EA3/EA28/EA18/EA5514.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA28/EA18/EA5518.png b/approved/html/EARoot/EA1/EA3/EA28/EA18/EA5518.png index 4a3aadaa6..53b66c1c7 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA28/EA18/EA5518.png and b/approved/html/EARoot/EA1/EA3/EA28/EA18/EA5518.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA28/EA18/EA5520.png b/approved/html/EARoot/EA1/EA3/EA28/EA18/EA5520.png index 06020aff2..1bbbfa65c 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA28/EA18/EA5520.png and b/approved/html/EARoot/EA1/EA3/EA28/EA18/EA5520.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA28/EA18/EA5524.png b/approved/html/EARoot/EA1/EA3/EA28/EA18/EA5524.png index ce6811177..59a3b796c 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA28/EA18/EA5524.png and b/approved/html/EARoot/EA1/EA3/EA28/EA18/EA5524.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA28/EA18/EA5528.png b/approved/html/EARoot/EA1/EA3/EA28/EA18/EA5528.png index 9ee2eb508..b0c9a6168 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA28/EA18/EA5528.png and b/approved/html/EARoot/EA1/EA3/EA28/EA18/EA5528.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA28/EA18/EA5530.png b/approved/html/EARoot/EA1/EA3/EA28/EA18/EA5530.png index f35cefbdd..440a8a041 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA28/EA18/EA5530.png and b/approved/html/EARoot/EA1/EA3/EA28/EA18/EA5530.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA28/EA18/EA5534.png b/approved/html/EARoot/EA1/EA3/EA28/EA18/EA5534.png index 2225943db..87a440b97 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA28/EA18/EA5534.png and b/approved/html/EARoot/EA1/EA3/EA28/EA18/EA5534.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA28/EA18/EA5538.png b/approved/html/EARoot/EA1/EA3/EA28/EA18/EA5538.png index 7669f5e1e..6630213e4 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA28/EA18/EA5538.png and b/approved/html/EARoot/EA1/EA3/EA28/EA18/EA5538.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA28/EA18/EA5542.png b/approved/html/EARoot/EA1/EA3/EA28/EA18/EA5542.png index 8acfc1bc1..dcfa86d3c 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA28/EA18/EA5542.png and b/approved/html/EARoot/EA1/EA3/EA28/EA18/EA5542.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA28/EA18/EA5546.png b/approved/html/EARoot/EA1/EA3/EA28/EA18/EA5546.png index 2849b758f..62be4deb0 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA28/EA18/EA5546.png and b/approved/html/EARoot/EA1/EA3/EA28/EA18/EA5546.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA28/EA18/EA5561.htm b/approved/html/EARoot/EA1/EA3/EA28/EA18/EA5561.htm index 6500afba4..c697595ce 100644 --- a/approved/html/EARoot/EA1/EA3/EA28/EA18/EA5561.htm +++ b/approved/html/EARoot/EA1/EA3/EA28/EA18/EA5561.htm @@ -107,7 +107,7 @@ - Public NilReason
  nilReason + Public GenericName
  value @@ -155,7 +155,7 @@ - Public GenericName
  value + Public NilReason
  nilReason diff --git a/approved/html/EARoot/EA1/EA3/EA28/EA18/EA5570.htm b/approved/html/EARoot/EA1/EA3/EA28/EA18/EA5570.htm index 975872da7..707401114 100644 --- a/approved/html/EARoot/EA1/EA3/EA28/EA18/EA5570.htm +++ b/approved/html/EARoot/EA1/EA3/EA28/EA18/EA5570.htm @@ -108,7 +108,7 @@ - Public NameSpace
  codeSpace + Public UnitOfMeasure
  uom @@ -156,7 +156,7 @@ - Public UnitOfMeasure
  uom + Public NameSpace
  codeSpace diff --git a/approved/html/EARoot/EA1/EA3/EA28/EA2/EA5320.png b/approved/html/EARoot/EA1/EA3/EA28/EA2/EA5320.png index 63e49e220..b664503f5 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA28/EA2/EA5320.png and b/approved/html/EARoot/EA1/EA3/EA28/EA2/EA5320.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA28/EA4/EA5337.png b/approved/html/EARoot/EA1/EA3/EA28/EA4/EA5337.png index b2e85cfe8..fa3adb812 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA28/EA4/EA5337.png and b/approved/html/EARoot/EA1/EA3/EA28/EA4/EA5337.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA28/EA4/EA5339.png b/approved/html/EARoot/EA1/EA3/EA28/EA4/EA5339.png index 88cdcba11..44138b4b7 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA28/EA4/EA5339.png and b/approved/html/EARoot/EA1/EA3/EA28/EA4/EA5339.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA28/EA4/EA5341.png b/approved/html/EARoot/EA1/EA3/EA28/EA4/EA5341.png index 9e071255a..289624b75 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA28/EA4/EA5341.png and b/approved/html/EARoot/EA1/EA3/EA28/EA4/EA5341.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA28/EA4/EA5343.htm b/approved/html/EARoot/EA1/EA3/EA28/EA4/EA5343.htm index a45e34f06..1c14422e4 100644 --- a/approved/html/EARoot/EA1/EA3/EA28/EA4/EA5343.htm +++ b/approved/html/EARoot/EA1/EA3/EA28/EA4/EA5343.htm @@ -157,7 +157,7 @@ - Public DateTime
  origin + Public Date
  realizationEpoch @@ -183,7 +183,7 @@ Range: - + Range:0 to 0 Transient: @@ -205,7 +205,7 @@ - Public Date
  realizationEpoch + Public DateTime
  origin @@ -231,7 +231,7 @@ Range: - Range:0 to 0 + Transient: diff --git a/approved/html/EARoot/EA1/EA3/EA28/EA5/EA5345.png b/approved/html/EARoot/EA1/EA3/EA28/EA5/EA5345.png index 4a65ee971..22a8a3b61 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA28/EA5/EA5345.png and b/approved/html/EARoot/EA1/EA3/EA28/EA5/EA5345.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA28/EA5/EA5349.png b/approved/html/EARoot/EA1/EA3/EA28/EA5/EA5349.png index d02365e71..07ca8a6bd 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA28/EA5/EA5349.png and b/approved/html/EARoot/EA1/EA3/EA28/EA5/EA5349.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA28/EA6/EA5357.png b/approved/html/EARoot/EA1/EA3/EA28/EA6/EA5357.png index b485c57c7..fd8942aa8 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA28/EA6/EA5357.png and b/approved/html/EARoot/EA1/EA3/EA28/EA6/EA5357.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA28/EA6/EA5359.png b/approved/html/EARoot/EA1/EA3/EA28/EA6/EA5359.png index b78b5a84c..3cb4567a0 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA28/EA6/EA5359.png and b/approved/html/EARoot/EA1/EA3/EA28/EA6/EA5359.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA28/EA6/EA5362.htm b/approved/html/EARoot/EA1/EA3/EA28/EA6/EA5362.htm index 7d26475fd..fe16b3e80 100644 --- a/approved/html/EARoot/EA1/EA3/EA28/EA6/EA5362.htm +++ b/approved/html/EARoot/EA1/EA3/EA28/EA6/EA5362.htm @@ -107,7 +107,7 @@ - Public CompassPoint
  compassPoint + Public Vector
  vector @@ -155,7 +155,7 @@ - Public CharacterString
  description + Public CompassPoint
  compassPoint @@ -251,7 +251,7 @@ - Public URI
  reference + Public CharacterString
  description @@ -299,7 +299,7 @@ - Public Vector
  vector + Public URI
  reference diff --git a/approved/html/EARoot/EA1/EA3/EA28/EA7/EA5364.png b/approved/html/EARoot/EA1/EA3/EA28/EA7/EA5364.png index f46094a99..bb04b3812 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA28/EA7/EA5364.png and b/approved/html/EARoot/EA1/EA3/EA28/EA7/EA5364.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA28/EA7/EA5366.png b/approved/html/EARoot/EA1/EA3/EA28/EA7/EA5366.png index fec14f01c..8ba9da3d8 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA28/EA7/EA5366.png and b/approved/html/EARoot/EA1/EA3/EA28/EA7/EA5366.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA28/EA7/EA5368.png b/approved/html/EARoot/EA1/EA3/EA28/EA7/EA5368.png index 360f989cb..e541cf9d9 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA28/EA7/EA5368.png and b/approved/html/EARoot/EA1/EA3/EA28/EA7/EA5368.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA28/EA7/EA5370.png b/approved/html/EARoot/EA1/EA3/EA28/EA7/EA5370.png index 73bed15fb..fb933aa35 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA28/EA7/EA5370.png and b/approved/html/EARoot/EA1/EA3/EA28/EA7/EA5370.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA28/EA7/EA5372.htm b/approved/html/EARoot/EA1/EA3/EA28/EA7/EA5372.htm index 483605f4f..f46ec3fcd 100644 --- a/approved/html/EARoot/EA1/EA3/EA28/EA7/EA5372.htm +++ b/approved/html/EARoot/EA1/EA3/EA28/EA7/EA5372.htm @@ -107,7 +107,7 @@ - Public CharacterString
  dataSource + Public TM_Primitive
  validTime @@ -133,7 +133,7 @@ Range: - Range:0 to 1 + Transient: @@ -155,7 +155,7 @@ - Public URI
  dataSourceReference + Public CharacterString
  dataSource @@ -203,7 +203,7 @@ - Public TM_Primitive
  validTime + Public URI
  dataSourceReference @@ -229,7 +229,7 @@ Range: - + Range:0 to 1 Transient: diff --git a/approved/html/EARoot/EA1/EA3/EA28/EA7/EA5373.htm b/approved/html/EARoot/EA1/EA3/EA28/EA7/EA5373.htm index 5e1d5b44b..f97f09468 100644 --- a/approved/html/EARoot/EA1/EA3/EA28/EA7/EA5373.htm +++ b/approved/html/EARoot/EA1/EA3/EA28/EA7/EA5373.htm @@ -109,7 +109,7 @@ - Public CharacterString
  dataSource + Public TM_Primitive
  validTime @@ -157,7 +157,7 @@ - Public URI
  dataSourceReference + Public AbstractTimeSlice
  history @@ -183,7 +183,7 @@ Range: - Range:0 to 1 + Range:0 to * Transient: @@ -205,7 +205,7 @@ - Public AbstractTimeSlice
  history + Public CharacterString
  dataSource @@ -231,7 +231,7 @@ Range: - Range:0 to * + Range:0 to 1 Transient: @@ -253,7 +253,7 @@ - Public TM_Primitive
  validTime + Public URI
  dataSourceReference diff --git a/approved/html/EARoot/EA1/EA3/EA28/EA8/EA5376.png b/approved/html/EARoot/EA1/EA3/EA28/EA8/EA5376.png index 7e93f9180..0cbe6228d 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA28/EA8/EA5376.png and b/approved/html/EARoot/EA1/EA3/EA28/EA8/EA5376.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA28/EA8/EA5378.png b/approved/html/EARoot/EA1/EA3/EA28/EA8/EA5378.png index 55769d13f..6073aee97 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA28/EA8/EA5378.png and b/approved/html/EARoot/EA1/EA3/EA28/EA8/EA5378.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA28/EA8/EA5380.png b/approved/html/EARoot/EA1/EA3/EA28/EA8/EA5380.png index f72fc85fa..38cf26c49 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA28/EA8/EA5380.png and b/approved/html/EARoot/EA1/EA3/EA28/EA8/EA5380.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA28/EA8/EA5384.htm b/approved/html/EARoot/EA1/EA3/EA28/EA8/EA5384.htm index 06106cf61..29bb21023 100644 --- a/approved/html/EARoot/EA1/EA3/EA28/EA8/EA5384.htm +++ b/approved/html/EARoot/EA1/EA3/EA28/EA8/EA5384.htm @@ -108,7 +108,7 @@ - Public TM_Position
  beginPosition + Public TM_ReferenceSystem
  frame @@ -122,7 +122,7 @@ Initial: - + "ISO-8601" Stereotype: @@ -156,7 +156,7 @@ - Public TM_Position
  endPosition + Public TM_Position
  beginPosition @@ -204,7 +204,7 @@ - Public TM_ReferenceSystem
  frame + Public TM_Position
  endPosition @@ -218,7 +218,7 @@ Initial: - "ISO-8601" + Stereotype: diff --git a/approved/html/EARoot/EA1/EA3/EA29/EA1/EA5580.png b/approved/html/EARoot/EA1/EA3/EA29/EA1/EA5580.png index ed4590675..587ce28ac 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA29/EA1/EA5580.png and b/approved/html/EARoot/EA1/EA3/EA29/EA1/EA5580.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA29/EA1/EA5582.png b/approved/html/EARoot/EA1/EA3/EA29/EA1/EA5582.png index 70d3e4fae..db42702b9 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA29/EA1/EA5582.png and b/approved/html/EARoot/EA1/EA3/EA29/EA1/EA5582.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA29/EA1/EA5590.png b/approved/html/EARoot/EA1/EA3/EA29/EA1/EA5590.png index 8ad448ea9..6a0c137dc 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA29/EA1/EA5590.png and b/approved/html/EARoot/EA1/EA3/EA29/EA1/EA5590.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA29/EA1/EA5594.htm b/approved/html/EARoot/EA1/EA3/EA29/EA1/EA5594.htm index 9ce6c3af8..1867b79bb 100644 --- a/approved/html/EARoot/EA1/EA3/EA29/EA1/EA5594.htm +++ b/approved/html/EARoot/EA1/EA3/EA29/EA1/EA5594.htm @@ -157,7 +157,7 @@ - Public Integer
  numDerivativeInterior + Public Integer
  numDerivativesAtStart @@ -253,7 +253,7 @@ - Public Integer
  numDerivativesAtStart + Public Integer
  numDerivativeInterior diff --git a/approved/html/EARoot/EA1/EA3/EA30/EA1/EA5613.png b/approved/html/EARoot/EA1/EA3/EA30/EA1/EA5613.png index e554628af..6acd144c9 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA30/EA1/EA5613.png and b/approved/html/EARoot/EA1/EA3/EA30/EA1/EA5613.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA30/EA1/EA5615.png b/approved/html/EARoot/EA1/EA3/EA30/EA1/EA5615.png index 938245ce5..e517e942e 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA30/EA1/EA5615.png and b/approved/html/EARoot/EA1/EA3/EA30/EA1/EA5615.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA30/EA1/EA5617.png b/approved/html/EARoot/EA1/EA3/EA30/EA1/EA5617.png index b5b6068b5..933a2bf9d 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA30/EA1/EA5617.png and b/approved/html/EARoot/EA1/EA3/EA30/EA1/EA5617.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA30/EA1/EA5621.png b/approved/html/EARoot/EA1/EA3/EA30/EA1/EA5621.png index 9738e57ee..630a2943a 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA30/EA1/EA5621.png and b/approved/html/EARoot/EA1/EA3/EA30/EA1/EA5621.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA30/EA1/EA5623.png b/approved/html/EARoot/EA1/EA3/EA30/EA1/EA5623.png index 5a799d4eb..7f6d7c54e 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA30/EA1/EA5623.png and b/approved/html/EARoot/EA1/EA3/EA30/EA1/EA5623.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA30/EA1/EA5625.png b/approved/html/EARoot/EA1/EA3/EA30/EA1/EA5625.png index 5ea253b65..f046a82b6 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA30/EA1/EA5625.png and b/approved/html/EARoot/EA1/EA3/EA30/EA1/EA5625.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA30/EA1/EA5627.png b/approved/html/EARoot/EA1/EA3/EA30/EA1/EA5627.png index f71fd74f7..ffbb8f796 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA30/EA1/EA5627.png and b/approved/html/EARoot/EA1/EA3/EA30/EA1/EA5627.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA30/EA1/EA5629.png b/approved/html/EARoot/EA1/EA3/EA30/EA1/EA5629.png index efa012d60..466861ccb 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA30/EA1/EA5629.png and b/approved/html/EARoot/EA1/EA3/EA30/EA1/EA5629.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA30/EA1/EA5631.png b/approved/html/EARoot/EA1/EA3/EA30/EA1/EA5631.png index 329d58bcc..a7d6bdece 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA30/EA1/EA5631.png and b/approved/html/EARoot/EA1/EA3/EA30/EA1/EA5631.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA30/EA1/EA5633.htm b/approved/html/EARoot/EA1/EA3/EA30/EA1/EA5633.htm index d731bdab8..d8f5feec7 100644 --- a/approved/html/EARoot/EA1/EA3/EA30/EA1/EA5633.htm +++ b/approved/html/EARoot/EA1/EA3/EA30/EA1/EA5633.htm @@ -107,7 +107,7 @@ - Public LR_Element
  geometry + Public GM_Curve[1..*]
  graphOfMeasure @@ -155,7 +155,7 @@ - Public GM_Curve[1..*]
  graphOfMeasure + Public GM_Curve[1..*]
  graphOfOffset @@ -181,7 +181,7 @@ Range: - + Range:0 to 1 Transient: @@ -203,7 +203,7 @@ - Public GM_Curve[1..*]
  graphOfOffset + Public GM_Curve[1..*]
  graphOfSecondaryOffsets @@ -251,7 +251,7 @@ - Public GM_Curve[1..*]
  graphOfSecondaryOffsets + Public LR_Element
  geometry @@ -277,7 +277,7 @@ Range: - Range:0 to 1 + Transient: diff --git a/approved/html/EARoot/EA1/EA3/EA30/EA1/EA5638.htm b/approved/html/EARoot/EA1/EA3/EA30/EA1/EA5638.htm index 47063944b..d517824f5 100644 --- a/approved/html/EARoot/EA1/EA3/EA30/EA1/EA5638.htm +++ b/approved/html/EARoot/EA1/EA3/EA30/EA1/EA5638.htm @@ -227,7 +227,7 @@ - Public GM_Curve[1..*]
  graphTimeToAcceleration + Public GM_Curve[1..*]
  graphTimeToPoint @@ -241,7 +241,7 @@ Initial: - + graphParameterToPoint Stereotype: @@ -275,7 +275,7 @@ - Public GM_Curve[1..*]
  graphTimeToCumulativeDistance + Public GM_Curve[1..*]
  graphTimeToVelocity @@ -323,7 +323,7 @@ - Public GM_Curve[1..*]
  graphTimeToDistance + Public GM_Curve[1..*]
  graphTimeToAcceleration @@ -371,7 +371,7 @@ - Public GM_Curve[1..*]
  graphTimeToPoint + Public GM_Curve[1..*]
  graphTimeToDistance @@ -385,7 +385,7 @@ Initial: - graphParameterToPoint + Stereotype: @@ -419,7 +419,7 @@ - Public GM_Curve[1..*]
  graphTimeToVelocity + Public GM_Curve[1..*]
  graphTimeToCumulativeDistance diff --git a/approved/html/EARoot/EA1/EA3/EA30/EA1/EA5639.htm b/approved/html/EARoot/EA1/EA3/EA30/EA1/EA5639.htm index 20cc41ac8..ade34d2d0 100644 --- a/approved/html/EARoot/EA1/EA3/EA30/EA1/EA5639.htm +++ b/approved/html/EARoot/EA1/EA3/EA30/EA1/EA5639.htm @@ -110,7 +110,7 @@ - Public Number
  beginDomain + Public GM_Curve
  pathGeometry @@ -158,7 +158,7 @@ - Public Number
  endDomain + Public GM_Curve[1..*]
  graphParameterToPoint @@ -254,7 +254,7 @@ - Public GM_Curve[1..*]
  graphParameterToPoint + Public Number
  beginDomain @@ -302,7 +302,7 @@ - Public GM_Curve
  pathGeometry + Public Number
  endDomain diff --git a/approved/html/EARoot/EA1/EA3/EA30/EA2/EA5641.png b/approved/html/EARoot/EA1/EA3/EA30/EA2/EA5641.png index 9e38820c4..2d0ed8346 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA30/EA2/EA5641.png and b/approved/html/EARoot/EA1/EA3/EA30/EA2/EA5641.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA30/EA2/EA5645.png b/approved/html/EARoot/EA1/EA3/EA30/EA2/EA5645.png index 493b3acc5..b04088042 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA30/EA2/EA5645.png and b/approved/html/EARoot/EA1/EA3/EA30/EA2/EA5645.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA30/EA2/EA5647.png b/approved/html/EARoot/EA1/EA3/EA30/EA2/EA5647.png index 1913c7949..6dc43a851 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA30/EA2/EA5647.png and b/approved/html/EARoot/EA1/EA3/EA30/EA2/EA5647.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA30/EA2/EA5653.png b/approved/html/EARoot/EA1/EA3/EA30/EA2/EA5653.png index 5e1587bc4..7d2ae17ba 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA30/EA2/EA5653.png and b/approved/html/EARoot/EA1/EA3/EA30/EA2/EA5653.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA30/EA2/EA5655.png b/approved/html/EARoot/EA1/EA3/EA30/EA2/EA5655.png index e4c50653c..607bb6cac 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA30/EA2/EA5655.png and b/approved/html/EARoot/EA1/EA3/EA30/EA2/EA5655.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA30/EA2/EA5657.png b/approved/html/EARoot/EA1/EA3/EA30/EA2/EA5657.png index f27a08716..d5203db69 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA30/EA2/EA5657.png and b/approved/html/EARoot/EA1/EA3/EA30/EA2/EA5657.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA30/EA2/EA5663.htm b/approved/html/EARoot/EA1/EA3/EA30/EA2/EA5663.htm index 58f8967b8..6e69a6704 100644 --- a/approved/html/EARoot/EA1/EA3/EA30/EA2/EA5663.htm +++ b/approved/html/EARoot/EA1/EA3/EA30/EA2/EA5663.htm @@ -107,7 +107,7 @@ - Public <undefined>
  axis1 + Public <undefined>
  tangent @@ -156,7 +156,7 @@ Notes: - The "axis1" vector is the ujit tanget of a local curve whose first coordinate of the CRS alone varies. It is thus the coordiate axis of the CRS's first ordinate. <br/> + The "tangent" vector represents the geometric unit tangent to the curve. It always points in the forward direction of the curve's underlying "parameterization by length" as defined in ISO 19107. This is not the tangent to the motion of the object. If the object backtracks the curve, the forward unit tangent of the object will be the negative of the curve's tangent.<br/> @@ -165,7 +165,7 @@ - Public <undefined>
  axis2 + Public <undefined>
  backtangent @@ -214,7 +214,7 @@ Notes: - The "axis2" vector is the unit tanget of a local curve whose second coordinate of the CRS alone varies. It is thus the coordiate axis of the CRS's second ordinate. <br/> + The "backTangent" vector is the negative of the tangent to the curve.<br/> @@ -223,7 +223,7 @@ - Public <undefined>
  axis3 + Public <undefined>
  normal @@ -272,7 +272,7 @@ Notes: - The "axis3" vector is the unit tanget of a local curve whose third coordinate of the CRS alone varies. It is thus the coordiate axis of the CRS's third ordinate. If the CRS is 2D, then this is the upward unit vector to a vertical axis perpendicular to defining surface of the 2D CRS. It should be used when placing 3D moving feature icons on a 2D map. <br/> + Where this vector is well defined, the normal is the unit vector in the direction of the curvature of the underlying curve. It is the derivative of the unit tangent with respect to arc distance. When the curve is a staight line, or encounters an inflection point (a swap in the direction of curvature) the normal will be undefined. If the curve is ill-behaved in this aspect, the alternative use of right or left (one of which is the normal when defined) would be more appropriate. <br/> @@ -281,7 +281,7 @@ - Public <undefined>
  backtangent + Public <undefined>
  bearing @@ -330,7 +330,7 @@ Notes: - The "backTangent" vector is the negative of the tangent to the curve.<br/> + The bearing is the projection of the tangent to the curve onto the horizontal plane of the CRS. If the curve is perfectly vertical, the bearing is undefined. Curves that might go perfectly vertical should not use bearing. If the CRS is 2D, the bearing is the same as the tangent. <br/> @@ -339,7 +339,7 @@ - Public <undefined>
  bearing + Public <undefined>
  up @@ -353,7 +353,7 @@ Initial: - + binormal Stereotype: @@ -388,7 +388,7 @@ Notes: - The bearing is the projection of the tangent to the curve onto the horizontal plane of the CRS. If the curve is perfectly vertical, the bearing is undefined. Curves that might go perfectly vertical should not use bearing. If the CRS is 2D, the bearing is the same as the tangent. <br/> + The vector up is the cross product of the tangent and left. It represents the up for the moving feture, which may be the up for the geographic coordinate system if the curve is locally on a surface of constant elevation. <br/> @@ -455,7 +455,7 @@ - Public <undefined>
  left + Public <undefined>
  right @@ -504,7 +504,7 @@ Notes: - The " left" vector is the unit vector point to the left of the curve. As such the left is the cross product of up and the tangent. Left is the negative of right. <br/> + The " right" vector is the unit vector point to the right of the curve. As such the right is the cross product of the tangent and up. Right is the negative of left. <br/> @@ -513,7 +513,7 @@ - Public <undefined>
  negativeAxis1 + Public <undefined>
  left @@ -562,7 +562,7 @@ Notes: - This is negative unit tangent of the first coordinate axis of the CRS<br/> + The " left" vector is the unit vector point to the left of the curve. As such the left is the cross product of up and the tangent. Left is the negative of right. <br/> @@ -571,7 +571,7 @@ - Public <undefined>
  negativeAxis2 + Public <undefined>
  axis1 @@ -620,7 +620,7 @@ Notes: - This is negative unit tangent of the second coordinate axis of the CRS<br/> + The "axis1" vector is the ujit tanget of a local curve whose first coordinate of the CRS alone varies. It is thus the coordiate axis of the CRS's first ordinate. <br/> @@ -629,7 +629,7 @@ - Public <undefined>
  negativeAxis3 + Public <undefined>
  negativeAxis1 @@ -678,7 +678,7 @@ Notes: - This is negative unit tangent of the third coordinate axis of the CRS<br/> + This is negative unit tangent of the first coordinate axis of the CRS<br/> @@ -687,7 +687,7 @@ - Public <undefined>
  normal + Public <undefined>
  axis2 @@ -736,7 +736,7 @@ Notes: - Where this vector is well defined, the normal is the unit vector in the direction of the curvature of the underlying curve. It is the derivative of the unit tangent with respect to arc distance. When the curve is a staight line, or encounters an inflection point (a swap in the direction of curvature) the normal will be undefined. If the curve is ill-behaved in this aspect, the alternative use of right or left (one of which is the normal when defined) would be more appropriate. <br/> + The "axis2" vector is the unit tanget of a local curve whose second coordinate of the CRS alone varies. It is thus the coordiate axis of the CRS's second ordinate. <br/> @@ -745,7 +745,7 @@ - Public <undefined>
  right + Public <undefined>
  negativeAxis2 @@ -794,7 +794,7 @@ Notes: - The " right" vector is the unit vector point to the right of the curve. As such the right is the cross product of the tangent and up. Right is the negative of left. <br/> + This is negative unit tangent of the second coordinate axis of the CRS<br/> @@ -803,7 +803,7 @@ - Public <undefined>
  tangent + Public <undefined>
  axis3 @@ -852,7 +852,7 @@ Notes: - The "tangent" vector represents the geometric unit tangent to the curve. It always points in the forward direction of the curve's underlying "parameterization by length" as defined in ISO 19107. This is not the tangent to the motion of the object. If the object backtracks the curve, the forward unit tangent of the object will be the negative of the curve's tangent.<br/> + The "axis3" vector is the unit tanget of a local curve whose third coordinate of the CRS alone varies. It is thus the coordiate axis of the CRS's third ordinate. If the CRS is 2D, then this is the upward unit vector to a vertical axis perpendicular to defining surface of the 2D CRS. It should be used when placing 3D moving feature icons on a 2D map. <br/> @@ -861,7 +861,7 @@ - Public <undefined>
  up + Public <undefined>
  negativeAxis3 @@ -875,7 +875,7 @@ Initial: - binormal + Stereotype: @@ -910,7 +910,7 @@ Notes: - The vector up is the cross product of the tangent and left. It represents the up for the moving feture, which may be the up for the geographic coordinate system if the curve is locally on a surface of constant elevation. <br/> + This is negative unit tangent of the third coordinate axis of the CRS<br/> diff --git a/approved/html/EARoot/EA1/EA3/EA30/EA2/EA5664.htm b/approved/html/EARoot/EA1/EA3/EA30/EA2/EA5664.htm index 359b2fd9a..6cb74c647 100644 --- a/approved/html/EARoot/EA1/EA3/EA30/EA2/EA5664.htm +++ b/approved/html/EARoot/EA1/EA3/EA30/EA2/EA5664.htm @@ -109,7 +109,7 @@ - Public Vector
  axis + Public DirectPosition
  origin @@ -135,7 +135,7 @@ Range: - Range:0 to 3 + Transient: @@ -158,7 +158,7 @@ Notes: - The attribute "axis" names up to three local vectors that will be used in describing the local objects orientation (and scale) when it is embedded in geographic space. These vectors are considered to be centered on the "origin" as described above. <br/> + The attribute "origin" describes a point on the local geometry that will act as a placement point into greographic space. This point is chosen by the application usually for ease of calculations. Common choices for an origin might be center of gravity or center of footprint, which is the  projection of the center of gravity onto the surface. <br/> @@ -167,7 +167,7 @@ - Public DirectPosition
  origin + Public Vector
  axis @@ -193,7 +193,7 @@ Range: - + Range:0 to 3 Transient: @@ -216,7 +216,7 @@ Notes: - The attribute "origin" describes a point on the local geometry that will act as a placement point into greographic space. This point is chosen by the application usually for ease of calculations. Common choices for an origin might be center of gravity or center of footprint, which is the  projection of the center of gravity onto the surface. <br/> + The attribute "axis" names up to three local vectors that will be used in describing the local objects orientation (and scale) when it is embedded in geographic space. These vectors are considered to be centered on the "origin" as described above. <br/> diff --git a/approved/html/EARoot/EA1/EA3/EA30/EA2/EA5665.htm b/approved/html/EARoot/EA1/EA3/EA30/EA2/EA5665.htm index 3b9f1759d..44d4371b2 100644 --- a/approved/html/EARoot/EA1/EA3/EA30/EA2/EA5665.htm +++ b/approved/html/EARoot/EA1/EA3/EA30/EA2/EA5665.htm @@ -111,7 +111,7 @@ - Public MF_TemporalOrientation
  controlOrientation + Public MF_GlobalAxisName
  globalAxis @@ -125,7 +125,7 @@ Initial: - + [tangent, up, right] Stereotype: @@ -137,7 +137,7 @@ Range: - Range:0 to * + Transient: @@ -160,7 +160,7 @@ Notes: - The attribute "controlPosition" array contains some number of rotational positions distributed along the curve by time. The method of interpolation used use between these orientations in describe in the Annex.<br/> + The attribute "globalAxis" is the global, possibly moving, geometric coordinate frame (represented as three axes with respect to points along the trajectory curve) in which the rotation of the base geometry is defined. It is a right-handed local Euclidean vector space, equal to the tangent space of the CRS at the points along the curve. If the third vector is not given, it is assumed to be the cross product of the first two. If only the first is given, it is assume to be a horizontal vector, with the second being up and the third being the cross product of the first two. <br/> @@ -169,7 +169,7 @@ - Public MF_GlobalAxisName
  globalAxis + Public MF_TemporalOrientation
  controlOrientation @@ -183,7 +183,7 @@ Initial: - [tangent, up, right] + Stereotype: @@ -195,7 +195,7 @@ Range: - + Range:0 to * Transient: @@ -218,7 +218,7 @@ Notes: - The attribute "globalAxis" is the global, possibly moving, geometric coordinate frame (represented as three axes with respect to points along the trajectory curve) in which the rotation of the base geometry is defined. It is a right-handed local Euclidean vector space, equal to the tangent space of the CRS at the points along the curve. If the third vector is not given, it is assumed to be the cross product of the first two. If only the first is given, it is assume to be a horizontal vector, with the second being up and the third being the cross product of the first two. <br/> + The attribute "controlPosition" array contains some number of rotational positions distributed along the curve by time. The method of interpolation used use between these orientations in describe in the Annex.<br/> diff --git a/approved/html/EARoot/EA1/EA3/EA30/EA5598.png b/approved/html/EARoot/EA1/EA3/EA30/EA5598.png index a89a1e128..c030016a6 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA30/EA5598.png and b/approved/html/EARoot/EA1/EA3/EA30/EA5598.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA31/EA1/EA5681.png b/approved/html/EARoot/EA1/EA3/EA31/EA1/EA5681.png index d9daea91c..f9f64dc9b 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA31/EA1/EA5681.png and b/approved/html/EARoot/EA1/EA3/EA31/EA1/EA5681.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA31/EA1/EA5683.png b/approved/html/EARoot/EA1/EA3/EA31/EA1/EA5683.png index fe0f88b1b..d6c84195e 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA31/EA1/EA5683.png and b/approved/html/EARoot/EA1/EA3/EA31/EA1/EA5683.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA31/EA1/EA5687.png b/approved/html/EARoot/EA1/EA3/EA31/EA1/EA5687.png index 771eeefbf..3e16a2a77 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA31/EA1/EA5687.png and b/approved/html/EARoot/EA1/EA3/EA31/EA1/EA5687.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA31/EA1/EA5689.png b/approved/html/EARoot/EA1/EA3/EA31/EA1/EA5689.png index 1f955253d..b024532b9 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA31/EA1/EA5689.png and b/approved/html/EARoot/EA1/EA3/EA31/EA1/EA5689.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA31/EA1/EA5695.png b/approved/html/EARoot/EA1/EA3/EA31/EA1/EA5695.png index 3ee67669b..7025c8e21 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA31/EA1/EA5695.png and b/approved/html/EARoot/EA1/EA3/EA31/EA1/EA5695.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA31/EA1/EA5697.png b/approved/html/EARoot/EA1/EA3/EA31/EA1/EA5697.png index 65e04cc79..67a604e2e 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA31/EA1/EA5697.png and b/approved/html/EARoot/EA1/EA3/EA31/EA1/EA5697.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA31/EA1/EA5699.png b/approved/html/EARoot/EA1/EA3/EA31/EA1/EA5699.png index a6518f312..f2dd9e13d 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA31/EA1/EA5699.png and b/approved/html/EARoot/EA1/EA3/EA31/EA1/EA5699.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA31/EA1/EA5705.htm b/approved/html/EARoot/EA1/EA3/EA31/EA1/EA5705.htm index 362021063..779fa925f 100644 --- a/approved/html/EARoot/EA1/EA3/EA31/EA1/EA5705.htm +++ b/approved/html/EARoot/EA1/EA3/EA31/EA1/EA5705.htm @@ -107,7 +107,7 @@ - Public CharacterString
  alphaCode + Public Integer
  code @@ -133,7 +133,7 @@ Range: - Range:0 to * + Range:0 to 1 Transient: @@ -155,7 +155,7 @@ - Public Integer
  code + Public CharacterString
  alphaCode @@ -181,7 +181,7 @@ Range: - Range:0 to 1 + Range:0 to * Transient: diff --git a/approved/html/EARoot/EA1/EA3/EA31/EA1/EA5707.htm b/approved/html/EARoot/EA1/EA3/EA31/EA1/EA5707.htm index 3d7cd0828..f046aec81 100644 --- a/approved/html/EARoot/EA1/EA3/EA31/EA1/EA5707.htm +++ b/approved/html/EARoot/EA1/EA3/EA31/EA1/EA5707.htm @@ -108,7 +108,7 @@ - Public Set<RE_FieldOfApplication>
  fieldOfApplication + Public Set<CharacterString>
  scopeSet @@ -134,7 +134,7 @@ Range: - Range:0 to 1 + Transient: @@ -156,7 +156,7 @@ - Public CharacterString
  functionalLanguage + Public Set<RE_FieldOfApplication>
  fieldOfApplication @@ -204,7 +204,7 @@ - Public Set<CharacterString>
  scopeSet + Public CharacterString
  functionalLanguage @@ -230,7 +230,7 @@ Range: - + Range:0 to 1 Transient: diff --git a/approved/html/EARoot/EA1/EA3/EA31/EA1/EA5711.htm b/approved/html/EARoot/EA1/EA3/EA31/EA1/EA5711.htm index 835404aae..3a7556dfd 100644 --- a/approved/html/EARoot/EA1/EA3/EA31/EA1/EA5711.htm +++ b/approved/html/EARoot/EA1/EA3/EA31/EA1/EA5711.htm @@ -107,7 +107,7 @@ - Public CharacterString
  alphaCode + Public Integer
  code @@ -133,7 +133,7 @@ Range: - Range:0 to * + Range:0 to 1 Transient: @@ -155,7 +155,7 @@ - Public Integer
  code + Public CharacterString
  alphaCode @@ -181,7 +181,7 @@ Range: - Range:0 to 1 + Range:0 to * Transient: diff --git a/approved/html/EARoot/EA1/EA3/EA31/EA1/EA5712.htm b/approved/html/EARoot/EA1/EA3/EA31/EA1/EA5712.htm index 0007cdd88..45d925c26 100644 --- a/approved/html/EARoot/EA1/EA3/EA31/EA1/EA5712.htm +++ b/approved/html/EARoot/EA1/EA3/EA31/EA1/EA5712.htm @@ -107,7 +107,7 @@ - Private CV_SequenceRule
  sequenceRule + Public CL_TessellationGeometry
  tessellationGeometry @@ -133,7 +133,7 @@ Range: - + Range:0 to 1 Transient: @@ -155,7 +155,7 @@ - Public CL_TessellationGeometry
  tessellationGeometry + Private CV_SequenceRule
  sequenceRule @@ -181,7 +181,7 @@ Range: - Range:0 to 1 + Transient: diff --git a/approved/html/EARoot/EA1/EA3/EA31/EA1/EA5716.htm b/approved/html/EARoot/EA1/EA3/EA31/EA1/EA5716.htm index e738cf1ba..a9b59262e 100644 --- a/approved/html/EARoot/EA1/EA3/EA31/EA1/EA5716.htm +++ b/approved/html/EARoot/EA1/EA3/EA31/EA1/EA5716.htm @@ -106,7 +106,7 @@ - Public
  hexagonal grid + Public
  quadrilateral grid @@ -154,7 +154,7 @@ - Public
  polygon network + Public
  hexagonal grid @@ -202,7 +202,7 @@ - Public
  quadrilateral grid + Public
  TIN @@ -250,7 +250,7 @@ - Public
  Thiessen polygon network + Public
  polygon network @@ -298,7 +298,7 @@ - Public
  TIN + Public
  Thiessen polygon network diff --git a/approved/html/EARoot/EA1/EA3/EA31/EA2/EA1/EA5735.png b/approved/html/EARoot/EA1/EA3/EA31/EA2/EA1/EA5735.png index 9ac4f4d7e..6efff696c 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA31/EA2/EA1/EA5735.png and b/approved/html/EARoot/EA1/EA3/EA31/EA2/EA1/EA5735.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA31/EA2/EA1/EA5747.htm b/approved/html/EARoot/EA1/EA3/EA31/EA2/EA1/EA5747.htm index 6a457b0fe..d3db34392 100644 --- a/approved/html/EARoot/EA1/EA3/EA31/EA2/EA1/EA5747.htm +++ b/approved/html/EARoot/EA1/EA3/EA31/EA2/EA1/EA5747.htm @@ -107,7 +107,7 @@ - Public
  conditional + Public
  fixed @@ -156,7 +156,7 @@ Notes: -     Conditional - The existence of an LC_Element in a strata may exist dependant upon the existance of another LC_Element<br/><br/> + The LC_Element exists in the strata <br/><br/> @@ -223,7 +223,7 @@ - Public
  fixed + Public
  conditional @@ -272,7 +272,7 @@ Notes: - The LC_Element exists in the strata <br/><br/> +     Conditional - The existence of an LC_Element in a strata may exist dependant upon the existance of another LC_Element<br/><br/> diff --git a/approved/html/EARoot/EA1/EA3/EA31/EA2/EA1/EA5748.htm b/approved/html/EARoot/EA1/EA3/EA31/EA2/EA1/EA5748.htm index dfe6e7343..179692fef 100644 --- a/approved/html/EARoot/EA1/EA3/EA31/EA2/EA1/EA5748.htm +++ b/approved/html/EARoot/EA1/EA3/EA31/EA2/EA1/EA5748.htm @@ -108,7 +108,7 @@ - Public LC_PermittedPosRealRange
  lengthOfTemporalRelationship + Public LC_ElementPresenceType
  presenceType @@ -151,22 +151,12 @@ -
- - - - -
- Notes: - - For "sequentialSameYear" value of the attribute <i>temporalType</i> the value is measured in months. For "sequentialOtherYear" value of the attribute <i>temporalType</i> the value is measured in years.<br/><br/> -
- +   - Public LC_ElementPresenceType
  presenceType + Public LC_SequentialTemporalRelationshipType
  temporalType @@ -214,7 +204,7 @@ - Public LC_SequentialTemporalRelationshipType
  temporalType + Public LC_PermittedPosRealRange
  lengthOfTemporalRelationship @@ -257,7 +247,17 @@ -   +
+ + + + +
+ Notes: + + For "sequentialSameYear" value of the attribute <i>temporalType</i> the value is measured in months. For "sequentialOtherYear" value of the attribute <i>temporalType</i> the value is measured in years.<br/><br/> +
+ diff --git a/approved/html/EARoot/EA1/EA3/EA31/EA2/EA1/EA5750.htm b/approved/html/EARoot/EA1/EA3/EA31/EA2/EA1/EA5750.htm index da4af005e..3a0aaee78 100644 --- a/approved/html/EARoot/EA1/EA3/EA31/EA2/EA1/EA5750.htm +++ b/approved/html/EARoot/EA1/EA3/EA31/EA2/EA1/EA5750.htm @@ -110,7 +110,7 @@ - Public LC_PermittedPercentageValue
  patternCoverPercentage + Public CharacterString
  patternType @@ -158,7 +158,7 @@ - Public LC_PermittedPercentageValue
  patternOccurrence + Public LC_PermittedPercentageValue
  patternCoverPercentage @@ -206,7 +206,7 @@ - Public CharacterString
  patternType + Public LC_PermittedPercentageValue
  patternOccurrence diff --git a/approved/html/EARoot/EA1/EA3/EA31/EA2/EA1/EA5751.htm b/approved/html/EARoot/EA1/EA3/EA31/EA2/EA1/EA5751.htm index c2d220cff..9cb229d1b 100644 --- a/approved/html/EARoot/EA1/EA3/EA31/EA2/EA1/EA5751.htm +++ b/approved/html/EARoot/EA1/EA3/EA31/EA2/EA1/EA5751.htm @@ -108,7 +108,7 @@ - Public LC_OnTopType
  onTop + Public LC_StratumPresenceType
  presenceType @@ -156,7 +156,7 @@ - Public LC_StratumPresenceType
  presenceType + Public LC_OnTopType
  onTop diff --git a/approved/html/EARoot/EA1/EA3/EA31/EA2/EA1/EA5756.htm b/approved/html/EARoot/EA1/EA3/EA31/EA2/EA1/EA5756.htm index 0f598c704..32c958b7a 100644 --- a/approved/html/EARoot/EA1/EA3/EA31/EA2/EA1/EA5756.htm +++ b/approved/html/EARoot/EA1/EA3/EA31/EA2/EA1/EA5756.htm @@ -165,7 +165,7 @@ - Public
  previousAll + Public
  previousE1 @@ -214,7 +214,7 @@ Notes: - Elements of a stratum are "on top" of the all the elements of the previous stratum.<br/><br/> + Elements of a stratum are "on top" of the first element (or set of elements regulated by an exclusive, temporal or conditional relationship) of the previous stratum.<br/><br/> @@ -223,7 +223,7 @@ - Public
  previousE1 + Public
  previousE2 @@ -272,7 +272,7 @@ Notes: - Elements of a stratum are "on top" of the first element (or set of elements regulated by an exclusive, temporal or conditional relationship) of the previous stratum.<br/><br/> + Elements of a stratum are "on top" of the second element (or set of elements regulated by an exclusive, temporal or conditional relationship) of the previous stratum.<br/><br/> @@ -281,7 +281,7 @@ - Public
  previousE2 + Public
  previousE3 @@ -330,7 +330,7 @@ Notes: - Elements of a stratum are "on top" of the second element (or set of elements regulated by an exclusive, temporal or conditional relationship) of the previous stratum.<br/><br/> + Elements of a stratum are "on top" of the third element (or set of elements regulated by an exclusive, temporal or conditional relationship) of the previous stratum.<br/><br/> @@ -339,7 +339,7 @@ - Public
  previousE3 + Public
  previousAll @@ -388,7 +388,7 @@ Notes: - Elements of a stratum are "on top" of the third element (or set of elements regulated by an exclusive, temporal or conditional relationship) of the previous stratum.<br/><br/> + Elements of a stratum are "on top" of the all the elements of the previous stratum.<br/><br/> @@ -397,7 +397,7 @@ - Public
  stratum1All + Public
  stratum1E1 @@ -446,7 +446,7 @@ Notes: - Elements of a stratum are "on top" of all of the elements of the first stratum defined in the set of stratum which are components of the LC_LandCover metaobject.<br/><br/> + Elements of a stratum are "on top" of the first element (or set of elements regulated by an exclusive, temporal or conditional relationship) of the first stratum defined in the set of stratum which are components of the LC_LandCover metaobject.<br/><br/> @@ -455,7 +455,7 @@ - Public
  stratum1E1 + Public
  stratum1All @@ -504,7 +504,7 @@ Notes: - Elements of a stratum are "on top" of the first element (or set of elements regulated by an exclusive, temporal or conditional relationship) of the first stratum defined in the set of stratum which are components of the LC_LandCover metaobject.<br/><br/> + Elements of a stratum are "on top" of all of the elements of the first stratum defined in the set of stratum which are components of the LC_LandCover metaobject.<br/><br/> @@ -513,7 +513,7 @@ - Public
  stratum2All + Public
  stratum2E1 @@ -562,7 +562,7 @@ Notes: - Elements of a stratum are "on top" of all of the elements of the first stratum defined in the set of stratum which are components of the LC_LandCover metaobject.<br/><br/> + Elements of a stratum are "on top" of the first element (or set of elements regulated by an exclusive, temporal or conditional relationship) of the second stratum defined in the set of stratum which are components of the LC_LandCover metaobject.<br/><br/> @@ -571,7 +571,7 @@ - Public
  stratum2E1 + Public
  stratum2All @@ -620,7 +620,7 @@ Notes: - Elements of a stratum are "on top" of the first element (or set of elements regulated by an exclusive, temporal or conditional relationship) of the second stratum defined in the set of stratum which are components of the LC_LandCover metaobject.<br/><br/> + Elements of a stratum are "on top" of all of the elements of the first stratum defined in the set of stratum which are components of the LC_LandCover metaobject.<br/><br/> diff --git a/approved/html/EARoot/EA1/EA3/EA31/EA2/EA1/EA5757.htm b/approved/html/EARoot/EA1/EA3/EA31/EA2/EA1/EA5757.htm index d92f24488..19f618fe5 100644 --- a/approved/html/EARoot/EA1/EA3/EA31/EA2/EA1/EA5757.htm +++ b/approved/html/EARoot/EA1/EA3/EA31/EA2/EA1/EA5757.htm @@ -107,7 +107,7 @@ - Public
  sequentialOtherYear + Public
  sequentialSameYear @@ -155,7 +155,7 @@ - Public
  sequentialSameYear + Public
  sequentialOtherYear diff --git a/approved/html/EARoot/EA1/EA3/EA31/EA2/EA1/EA5759.htm b/approved/html/EARoot/EA1/EA3/EA31/EA2/EA1/EA5759.htm index 498c6b725..01f21948e 100644 --- a/approved/html/EARoot/EA1/EA3/EA31/EA2/EA1/EA5759.htm +++ b/approved/html/EARoot/EA1/EA3/EA31/EA2/EA1/EA5759.htm @@ -107,7 +107,7 @@ - Public
  conditional + Public
  fixed @@ -155,7 +155,7 @@ - Public
  fixed + Public
  conditional diff --git a/approved/html/EARoot/EA1/EA3/EA31/EA2/EA2/EA5762.png b/approved/html/EARoot/EA1/EA3/EA31/EA2/EA2/EA5762.png index 916247cc9..8b663254a 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA31/EA2/EA2/EA5762.png and b/approved/html/EARoot/EA1/EA3/EA31/EA2/EA2/EA5762.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA31/EA2/EA2/EA5766.png b/approved/html/EARoot/EA1/EA3/EA31/EA2/EA2/EA5766.png index feb059b9f..758020a64 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA31/EA2/EA2/EA5766.png and b/approved/html/EARoot/EA1/EA3/EA31/EA2/EA2/EA5766.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA31/EA2/EA2/EA5768.png b/approved/html/EARoot/EA1/EA3/EA31/EA2/EA2/EA5768.png index a26d14878..d7b7287d2 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA31/EA2/EA2/EA5768.png and b/approved/html/EARoot/EA1/EA3/EA31/EA2/EA2/EA5768.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA31/EA2/EA2/EA5782.htm b/approved/html/EARoot/EA1/EA3/EA31/EA2/EA2/EA5782.htm index f43ad27a3..16fa59874 100644 --- a/approved/html/EARoot/EA1/EA3/EA31/EA2/EA2/EA5782.htm +++ b/approved/html/EARoot/EA1/EA3/EA31/EA2/EA2/EA5782.htm @@ -108,7 +108,7 @@ - Public LC_PermittedPosRealValue
  length + Public LC_PermittedPosRealValue
  starting @@ -156,7 +156,7 @@ - Public LC_PermittedPosRealValue
  starting + Public LC_PermittedPosRealValue
  length diff --git a/approved/html/EARoot/EA1/EA3/EA31/EA2/EA2/EA5786.htm b/approved/html/EARoot/EA1/EA3/EA31/EA2/EA2/EA5786.htm index dc0c45661..31842fdc0 100644 --- a/approved/html/EARoot/EA1/EA3/EA31/EA2/EA2/EA5786.htm +++ b/approved/html/EARoot/EA1/EA3/EA31/EA2/EA2/EA5786.htm @@ -107,7 +107,7 @@ - Public
  nonrooted + Public
  rooted @@ -155,7 +155,7 @@ - Public
  rooted + Public
  nonrooted diff --git a/approved/html/EARoot/EA1/EA3/EA31/EA2/EA2/EA5788.htm b/approved/html/EARoot/EA1/EA3/EA31/EA2/EA2/EA5788.htm index 78965e9da..7539b5120 100644 --- a/approved/html/EARoot/EA1/EA3/EA31/EA2/EA2/EA5788.htm +++ b/approved/html/EARoot/EA1/EA3/EA31/EA2/EA2/EA5788.htm @@ -109,7 +109,7 @@ - Public LC_PermittedPercentageValue
  cover + Public LC_PermittedPosRealValue
  height @@ -157,7 +157,7 @@ - Public LC_PermittedPosRealValue
  height + Public LC_PermittedPercentageValue
  cover diff --git a/approved/html/EARoot/EA1/EA3/EA31/EA2/EA3/EA5811.png b/approved/html/EARoot/EA1/EA3/EA31/EA2/EA3/EA5811.png index 93d4b07aa..b275a80cc 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA31/EA2/EA3/EA5811.png and b/approved/html/EARoot/EA1/EA3/EA31/EA2/EA3/EA5811.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA31/EA2/EA3/EA5813.png b/approved/html/EARoot/EA1/EA3/EA31/EA2/EA3/EA5813.png index 8c6d0409f..e42909d0e 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA31/EA2/EA3/EA5813.png and b/approved/html/EARoot/EA1/EA3/EA31/EA2/EA3/EA5813.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA31/EA2/EA3/EA5815.png b/approved/html/EARoot/EA1/EA3/EA31/EA2/EA3/EA5815.png index f6d3fb668..2bf6923c3 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA31/EA2/EA3/EA5815.png and b/approved/html/EARoot/EA1/EA3/EA31/EA2/EA3/EA5815.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA31/EA2/EA3/EA5819.png b/approved/html/EARoot/EA1/EA3/EA31/EA2/EA3/EA5819.png index ac66f713a..4f9a1dfd0 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA31/EA2/EA3/EA5819.png and b/approved/html/EARoot/EA1/EA3/EA31/EA2/EA3/EA5819.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA31/EA2/EA3/EA5826.htm b/approved/html/EARoot/EA1/EA3/EA31/EA2/EA3/EA5826.htm index b31da1ccf..383192c38 100644 --- a/approved/html/EARoot/EA1/EA3/EA31/EA2/EA3/EA5826.htm +++ b/approved/html/EARoot/EA1/EA3/EA31/EA2/EA3/EA5826.htm @@ -108,7 +108,7 @@ - Public LC_PermittedPercentageValue
  cover + Public LC_PermittedRealValue
  height @@ -156,7 +156,7 @@ - Public LC_PermittedRealValue
  height + Public LC_PermittedPercentageValue
  cover diff --git a/approved/html/EARoot/EA1/EA3/EA31/EA2/EA3/EA5828.htm b/approved/html/EARoot/EA1/EA3/EA31/EA2/EA3/EA5828.htm index 2bbc7d261..8be5a1a23 100644 --- a/approved/html/EARoot/EA1/EA3/EA31/EA2/EA3/EA5828.htm +++ b/approved/html/EARoot/EA1/EA3/EA31/EA2/EA3/EA5828.htm @@ -108,7 +108,7 @@ - Public LC_PermittedPercentageValue
  cover + Public LC_CoarseMineralFragmentType
  type @@ -134,7 +134,7 @@ Range: - + Range:0 to 1 Transient: @@ -156,7 +156,7 @@ - Public LC_CoarseMineralFragmentType
  type + Public LC_PermittedPercentageValue
  cover @@ -182,7 +182,7 @@ Range: - Range:0 to 1 + Transient: diff --git a/approved/html/EARoot/EA1/EA3/EA31/EA2/EA3/EA5829.htm b/approved/html/EARoot/EA1/EA3/EA31/EA2/EA3/EA5829.htm index 54fc42bc0..fc1e69794 100644 --- a/approved/html/EARoot/EA1/EA3/EA31/EA2/EA3/EA5829.htm +++ b/approved/html/EARoot/EA1/EA3/EA31/EA2/EA3/EA5829.htm @@ -107,7 +107,7 @@ - Public
  boulder + Public
  gravel @@ -155,7 +155,7 @@ - Public
  gravel + Public
  stone @@ -203,7 +203,7 @@ - Public
  stone + Public
  boulder diff --git a/approved/html/EARoot/EA1/EA3/EA31/EA2/EA3/EA5837.htm b/approved/html/EARoot/EA1/EA3/EA31/EA2/EA3/EA5837.htm index 450dbca9e..803c2ac46 100644 --- a/approved/html/EARoot/EA1/EA3/EA31/EA2/EA3/EA5837.htm +++ b/approved/html/EARoot/EA1/EA3/EA31/EA2/EA3/EA5837.htm @@ -155,7 +155,7 @@ - Public
  longitudinal + Public
  parabolic @@ -203,7 +203,7 @@ - Public
  parabolic + Public
  longitudinal diff --git a/approved/html/EARoot/EA1/EA3/EA31/EA2/EA3/EA5839.htm b/approved/html/EARoot/EA1/EA3/EA31/EA2/EA3/EA5839.htm index d5b3259b2..24cbbc0c1 100644 --- a/approved/html/EARoot/EA1/EA3/EA31/EA2/EA3/EA5839.htm +++ b/approved/html/EARoot/EA1/EA3/EA31/EA2/EA3/EA5839.htm @@ -107,7 +107,7 @@ - Public
  substrate + Public
  surface @@ -155,7 +155,7 @@ - Public
  surface + Public
  substrate diff --git a/approved/html/EARoot/EA1/EA3/EA31/EA2/EA3/EA5843.htm b/approved/html/EARoot/EA1/EA3/EA31/EA2/EA3/EA5843.htm index 62e2ab652..c594ae33c 100644 --- a/approved/html/EARoot/EA1/EA3/EA31/EA2/EA3/EA5843.htm +++ b/approved/html/EARoot/EA1/EA3/EA31/EA2/EA3/EA5843.htm @@ -108,7 +108,7 @@ - Public LC_PermittedPosRealValue
  height + Public LC_IceDynamics
  iceDynamics @@ -156,7 +156,7 @@ - Public LC_IceDynamics
  iceDynamics + Public LC_PermittedPosRealValue
  height diff --git a/approved/html/EARoot/EA1/EA3/EA31/EA2/EA3/EA5846.htm b/approved/html/EARoot/EA1/EA3/EA31/EA2/EA3/EA5846.htm index ecd40ecd4..f150ce45e 100644 --- a/approved/html/EARoot/EA1/EA3/EA31/EA2/EA3/EA5846.htm +++ b/approved/html/EARoot/EA1/EA3/EA31/EA2/EA3/EA5846.htm @@ -107,7 +107,7 @@ - Public
  gypsum + Public
  salt @@ -155,7 +155,7 @@ - Public
  lime + Public
  soda @@ -203,7 +203,7 @@ - Public
  salt + Public
  lime @@ -251,7 +251,7 @@ - Public
  soda + Public
  gypsum diff --git a/approved/html/EARoot/EA1/EA3/EA31/EA2/EA3/EA5856.htm b/approved/html/EARoot/EA1/EA3/EA31/EA2/EA3/EA5856.htm index 3fe9f2410..3d8acc657 100644 --- a/approved/html/EARoot/EA1/EA3/EA31/EA2/EA3/EA5856.htm +++ b/approved/html/EARoot/EA1/EA3/EA31/EA2/EA3/EA5856.htm @@ -108,7 +108,7 @@ - Public LC_PermittedPercentageValue
  cover + Public LC_PermittedRealValue
  height @@ -156,7 +156,7 @@ - Public LC_PermittedRealValue
  height + Public LC_PermittedPercentageValue
  cover diff --git a/approved/html/EARoot/EA1/EA3/EA31/EA2/EA3/EA5857.htm b/approved/html/EARoot/EA1/EA3/EA31/EA2/EA3/EA5857.htm index 71a9eba99..a4e4bbd38 100644 --- a/approved/html/EARoot/EA1/EA3/EA31/EA2/EA3/EA5857.htm +++ b/approved/html/EARoot/EA1/EA3/EA31/EA2/EA3/EA5857.htm @@ -107,7 +107,7 @@ - Public
  minerotrophic + Public
  ombrotrophic @@ -156,7 +156,7 @@ Notes: - Peat produced in contact with ground water, beyond or in capillary contact with the water table, is minerotrophic and that type of mire is often called <b>fen</b> (transition mire). Minerotrophic peat could develop on overgrowing lakes or poorly drained terrestrial areas.<br/> + Ombrotrophic peat, connected with a kind of mire called <b>bog</b>, is created when there is an excessive precipitation and the contact with the water table is absent. Ombrotrophic peat could develop on top of minerotrophic peat, when the peat layer has grown thick enough to loose contact with the water table. It could also develop directly on the ground in extremely humid areas, such as the Atlantic areas in Ireland and Norway.<br/> @@ -165,7 +165,7 @@ - Public
  ombrotrophic + Public
  minerotrophic @@ -214,7 +214,7 @@ Notes: - Ombrotrophic peat, connected with a kind of mire called <b>bog</b>, is created when there is an excessive precipitation and the contact with the water table is absent. Ombrotrophic peat could develop on top of minerotrophic peat, when the peat layer has grown thick enough to loose contact with the water table. It could also develop directly on the ground in extremely humid areas, such as the Atlantic areas in Ireland and Norway.<br/> + Peat produced in contact with ground water, beyond or in capillary contact with the water table, is minerotrophic and that type of mire is often called <b>fen</b> (transition mire). Minerotrophic peat could develop on overgrowing lakes or poorly drained terrestrial areas.<br/> diff --git a/approved/html/EARoot/EA1/EA3/EA31/EA2/EA3/EA5858.htm b/approved/html/EARoot/EA1/EA3/EA31/EA2/EA3/EA5858.htm index 9f1ba7302..428c70bf0 100644 --- a/approved/html/EARoot/EA1/EA3/EA31/EA2/EA3/EA5858.htm +++ b/approved/html/EARoot/EA1/EA3/EA31/EA2/EA3/EA5858.htm @@ -110,7 +110,7 @@ - Public CharacterString
  description + Public LC_PeriodVariationType
  periodType @@ -136,7 +136,7 @@ Range: - + Range:0 to 1 Transient: @@ -153,32 +153,12 @@ -
- - - - -
- Notes: - - description of the type of periodic variation such as - seasonal monsoon, seasonal spring, etc.<br/> -
- - Constraints:
Pre-condition descriptionConstraint - - - - - -
- - - ::LC_PeriodicVariationType defined -
+   + - Public LC_PeriodVariationType
  periodType + Public LC_PermittedPosRealRange
  persistencePeriod @@ -226,7 +206,7 @@ - Public LC_PermittedPosRealRange
  persistencePeriod + Public Time
  persistenceUnits @@ -269,12 +249,32 @@ -   - +
+ + + + +
+ Notes: + + allowable values<br/>second, minute, hour, day, month, year <br/> +
+ + Constraints:
  persistenceConstraint + + + + + +
+ + + ::{count periodType + persistence > 0}
{if count persistence = 1, then persistenceUnit = 1} +
- Public Time
  persistenceUnits + Public CharacterString
  description @@ -300,7 +300,7 @@ Range: - Range:0 to 1 + Transient: @@ -323,19 +323,19 @@ Notes: - allowable values<br/>second, minute, hour, day, month, year <br/> + description of the type of periodic variation such as - seasonal monsoon, seasonal spring, etc.<br/> - Constraints:
  persistenceConstraint + Constraints:
Pre-condition descriptionConstraint
- ::{count periodType + persistence > 0}
{if count persistence = 1, then persistenceUnit = 1} + ::LC_PeriodicVariationType defined
diff --git a/approved/html/EARoot/EA1/EA3/EA31/EA2/EA3/EA5859.htm b/approved/html/EARoot/EA1/EA3/EA31/EA2/EA3/EA5859.htm index 0452412e9..4e8aba3bc 100644 --- a/approved/html/EARoot/EA1/EA3/EA31/EA2/EA3/EA5859.htm +++ b/approved/html/EARoot/EA1/EA3/EA31/EA2/EA3/EA5859.htm @@ -203,7 +203,7 @@ - Public
  seasonal + Public
  tidal @@ -251,7 +251,7 @@ - Public
  tidal + Public
  seasonal diff --git a/approved/html/EARoot/EA1/EA3/EA31/EA2/EA3/EA5860.htm b/approved/html/EARoot/EA1/EA3/EA31/EA2/EA3/EA5860.htm index 99ac408ea..2908b175c 100644 --- a/approved/html/EARoot/EA1/EA3/EA31/EA2/EA3/EA5860.htm +++ b/approved/html/EARoot/EA1/EA3/EA31/EA2/EA3/EA5860.htm @@ -108,7 +108,7 @@ - Public LC_PermittedPosRealValue
  depth + Public LC_PermafrostType
  permafrostType @@ -151,12 +151,22 @@ -   +
+ + + + +
+ Notes: + + permafrostType allows different types of permafrost to be described.<br/> +
+ - Public LC_PermafrostType
  permafrostType + Public LC_PermittedPosRealValue
  depth @@ -199,17 +209,7 @@ -
- - - - -
- Notes: - - permafrostType allows different types of permafrost to be described.<br/> -
- +   diff --git a/approved/html/EARoot/EA1/EA3/EA31/EA2/EA3/EA5870.htm b/approved/html/EARoot/EA1/EA3/EA31/EA2/EA3/EA5870.htm index 8cd5e01f6..f8bffc4b7 100644 --- a/approved/html/EARoot/EA1/EA3/EA31/EA2/EA3/EA5870.htm +++ b/approved/html/EARoot/EA1/EA3/EA31/EA2/EA3/EA5870.htm @@ -108,7 +108,7 @@ - Public LC_PermittedPosRealValue
  depth + Public LC_WaterBodyDynamics
  dynamics @@ -134,7 +134,7 @@ Range: - + Range:0 to 1 Transient: @@ -156,7 +156,7 @@ - Public LC_WaterBodyDynamics
  dynamics + Public LC_WaterBodyPositions
  position @@ -204,7 +204,7 @@ - Public LC_WaterBodyPositions
  position + Public LC_PermittedPosRealValue
  depth @@ -230,7 +230,7 @@ Range: - Range:0 to 1 + Transient: diff --git a/approved/html/EARoot/EA1/EA3/EA31/EA2/EA4/EA5875.png b/approved/html/EARoot/EA1/EA3/EA31/EA2/EA4/EA5875.png index ae56f67ad..c06f49512 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA31/EA2/EA4/EA5875.png and b/approved/html/EARoot/EA1/EA3/EA31/EA2/EA4/EA5875.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA31/EA2/EA4/EA5878.htm b/approved/html/EARoot/EA1/EA3/EA31/EA2/EA4/EA5878.htm index 615514537..a0eef7557 100644 --- a/approved/html/EARoot/EA1/EA3/EA31/EA2/EA4/EA5878.htm +++ b/approved/html/EARoot/EA1/EA3/EA31/EA2/EA4/EA5878.htm @@ -107,7 +107,7 @@ - Public
  gravityErosion + Public
  waterErosionSheet @@ -155,7 +155,7 @@ - Public
  iceErosion + Public
  waterErosionRill @@ -251,7 +251,7 @@ - Public
  waterErosionRill + Public
  gravityErosion @@ -299,7 +299,7 @@ - Public
  waterErosionSheet + Public
  iceErosion diff --git a/approved/html/EARoot/EA1/EA3/EA31/EA2/EA4/EA5880.htm b/approved/html/EARoot/EA1/EA3/EA31/EA2/EA4/EA5880.htm index 3b5c1ce67..2cac63cb3 100644 --- a/approved/html/EARoot/EA1/EA3/EA31/EA2/EA4/EA5880.htm +++ b/approved/html/EARoot/EA1/EA3/EA31/EA2/EA4/EA5880.htm @@ -107,7 +107,7 @@ - Public
  bay + Public
  beach @@ -155,7 +155,7 @@ - Public
  beach + Public
  bay diff --git a/approved/html/EARoot/EA1/EA3/EA31/EA2/EA4/EA5884.htm b/approved/html/EARoot/EA1/EA3/EA31/EA2/EA4/EA5884.htm index 0c107bd4c..1a9778634 100644 --- a/approved/html/EARoot/EA1/EA3/EA31/EA2/EA4/EA5884.htm +++ b/approved/html/EARoot/EA1/EA3/EA31/EA2/EA4/EA5884.htm @@ -108,7 +108,7 @@ - Public LC_RockAgeType
  rockAgeType + Public LC_RockType
  rockType @@ -156,7 +156,7 @@ - Public LC_RockType
  rockType + Public LC_RockAgeType
  rockAgeType diff --git a/approved/html/EARoot/EA1/EA3/EA31/EA2/EA4/EA5888.htm b/approved/html/EARoot/EA1/EA3/EA31/EA2/EA4/EA5888.htm index c42c6dffe..6ce9c9be2 100644 --- a/approved/html/EARoot/EA1/EA3/EA31/EA2/EA4/EA5888.htm +++ b/approved/html/EARoot/EA1/EA3/EA31/EA2/EA4/EA5888.htm @@ -108,7 +108,7 @@ - Public LC_ErosionType
  erosionType + Public LC_SoilType
  soilType @@ -156,7 +156,7 @@ - Public LC_SedimentationType
  sedimentationType + Public LC_ErosionType
  erosionType @@ -204,7 +204,7 @@ - Public LC_SoilType
  soilType + Public LC_SedimentationType
  sedimentationType diff --git a/approved/html/EARoot/EA1/EA3/EA31/EA2/EA5/EA5895.png b/approved/html/EARoot/EA1/EA3/EA31/EA2/EA5/EA5895.png index d44b86a1c..723144435 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA31/EA2/EA5/EA5895.png and b/approved/html/EARoot/EA1/EA3/EA31/EA2/EA5/EA5895.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA31/EA2/EA5/EA5897.png b/approved/html/EARoot/EA1/EA3/EA31/EA2/EA5/EA5897.png index 2905fd0b7..03cdeba93 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA31/EA2/EA5/EA5897.png and b/approved/html/EARoot/EA1/EA3/EA31/EA2/EA5/EA5897.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA31/EA2/EA5/EA5899.png b/approved/html/EARoot/EA1/EA3/EA31/EA2/EA5/EA5899.png index 52f65e6de..2c92096b0 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA31/EA2/EA5/EA5899.png and b/approved/html/EARoot/EA1/EA3/EA31/EA2/EA5/EA5899.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA31/EA2/EA5/EA5901.png b/approved/html/EARoot/EA1/EA3/EA31/EA2/EA5/EA5901.png index 872f594b4..4ebe07540 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA31/EA2/EA5/EA5901.png and b/approved/html/EARoot/EA1/EA3/EA31/EA2/EA5/EA5901.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA31/EA2/EA5/EA5903.png b/approved/html/EARoot/EA1/EA3/EA31/EA2/EA5/EA5903.png index 9e8d63d9a..673a462a2 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA31/EA2/EA5/EA5903.png and b/approved/html/EARoot/EA1/EA3/EA31/EA2/EA5/EA5903.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA31/EA2/EA5/EA5906.htm b/approved/html/EARoot/EA1/EA3/EA31/EA2/EA5/EA5906.htm index 1aa071a4c..5ea73fb96 100644 --- a/approved/html/EARoot/EA1/EA3/EA31/EA2/EA5/EA5906.htm +++ b/approved/html/EARoot/EA1/EA3/EA31/EA2/EA5/EA5906.htm @@ -108,7 +108,7 @@ - Public LC_PermittedPosRealValue
  crownDiameter + Public LC_PermittedPosRealValue
  trunkDiameter @@ -156,7 +156,7 @@ - Public LC_PermittedPosRealValue
  trunkDiameter + Public LC_PermittedPosRealValue
  crownDiameter diff --git a/approved/html/EARoot/EA1/EA3/EA31/EA2/EA5/EA5911.htm b/approved/html/EARoot/EA1/EA3/EA31/EA2/EA5/EA5911.htm index 56232de0c..e5dd71733 100644 --- a/approved/html/EARoot/EA1/EA3/EA31/EA2/EA5/EA5911.htm +++ b/approved/html/EARoot/EA1/EA3/EA31/EA2/EA5/EA5911.htm @@ -107,7 +107,7 @@ - Public
  artificial + Public
  natural @@ -155,7 +155,7 @@ - Public
  natural + Public
  artificial diff --git a/approved/html/EARoot/EA1/EA3/EA31/EA2/EA5/EA5913.htm b/approved/html/EARoot/EA1/EA3/EA31/EA2/EA5/EA5913.htm index c7d9f55e6..18b0f0e34 100644 --- a/approved/html/EARoot/EA1/EA3/EA31/EA2/EA5/EA5913.htm +++ b/approved/html/EARoot/EA1/EA3/EA31/EA2/EA5/EA5913.htm @@ -108,7 +108,7 @@ - Public LC_ArtificialityType
  damageType + Public LC_PermittedPercentageValue
  percentage @@ -134,7 +134,7 @@ Range: - Range:0 to 1 + Transient: @@ -156,7 +156,7 @@ - Public LC_PermittedPercentageValue
  percentage + Public LC_ArtificialityType
  damageType @@ -182,7 +182,7 @@ Range: - + Range:0 to 1 Transient: diff --git a/approved/html/EARoot/EA1/EA3/EA31/EA2/EA5/EA5916.htm b/approved/html/EARoot/EA1/EA3/EA31/EA2/EA5/EA5916.htm index 39517ba63..5d8cc2241 100644 --- a/approved/html/EARoot/EA1/EA3/EA31/EA2/EA5/EA5916.htm +++ b/approved/html/EARoot/EA1/EA3/EA31/EA2/EA5/EA5916.htm @@ -107,7 +107,7 @@ - Public
  abandoned + Public
  finished @@ -155,7 +155,7 @@ - Public
  finished + Public
  in_progress @@ -203,7 +203,7 @@ - Public
  in_progress + Public
  abandoned diff --git a/approved/html/EARoot/EA1/EA3/EA31/EA2/EA5/EA5918.htm b/approved/html/EARoot/EA1/EA3/EA31/EA2/EA5/EA5918.htm index 8afdb9143..230c4d992 100644 --- a/approved/html/EARoot/EA1/EA3/EA31/EA2/EA5/EA5918.htm +++ b/approved/html/EARoot/EA1/EA3/EA31/EA2/EA5/EA5918.htm @@ -107,7 +107,7 @@ - Public
  inorganic + Public
  organic @@ -155,7 +155,7 @@ - Public
  organic + Public
  inorganic diff --git a/approved/html/EARoot/EA1/EA3/EA31/EA2/EA5/EA5919.htm b/approved/html/EARoot/EA1/EA3/EA31/EA2/EA5/EA5919.htm index c02df0fec..0fcc3271c 100644 --- a/approved/html/EARoot/EA1/EA3/EA31/EA2/EA5/EA5919.htm +++ b/approved/html/EARoot/EA1/EA3/EA31/EA2/EA5/EA5919.htm @@ -109,7 +109,7 @@ - Public LC_PermittedPosIntegerRange
  growingLength + Public LC_PermittedPosIntegerValue
  seedingTime @@ -157,7 +157,7 @@ - Public LC_PermittedPercentageValue
  overlapGrowing + Public LC_PermittedPosIntegerRange
  growingLength @@ -205,7 +205,7 @@ - Public LC_PermittedPosIntegerValue
  seedingTime + Public LC_PermittedPercentageValue
  overlapGrowing diff --git a/approved/html/EARoot/EA1/EA3/EA31/EA2/EA5/EA5930.htm b/approved/html/EARoot/EA1/EA3/EA31/EA2/EA5/EA5930.htm index a366365b7..51de6c593 100644 --- a/approved/html/EARoot/EA1/EA3/EA31/EA2/EA5/EA5930.htm +++ b/approved/html/EARoot/EA1/EA3/EA31/EA2/EA5/EA5930.htm @@ -107,7 +107,7 @@ - Public
  NonStatisticallyDerivedPlantGroup + Public
  statisticallyDerivedPlantGroup @@ -155,7 +155,7 @@ - Public
  statisticallyDerivedPlantGroup + Public
  NonStatisticallyDerivedPlantGroup diff --git a/approved/html/EARoot/EA1/EA3/EA31/EA2/EA5/EA5937.htm b/approved/html/EARoot/EA1/EA3/EA31/EA2/EA5/EA5937.htm index aa3f3672f..898cc4f43 100644 --- a/approved/html/EARoot/EA1/EA3/EA31/EA2/EA5/EA5937.htm +++ b/approved/html/EARoot/EA1/EA3/EA31/EA2/EA5/EA5937.htm @@ -107,7 +107,7 @@ - Public
  drip + Public
  surface @@ -203,7 +203,7 @@ - Public
  surface + Public
  drip diff --git a/approved/html/EARoot/EA1/EA3/EA31/EA2/EA5/EA5945.htm b/approved/html/EARoot/EA1/EA3/EA31/EA2/EA5/EA5945.htm index f72f7dfb7..2175303b8 100644 --- a/approved/html/EARoot/EA1/EA3/EA31/EA2/EA5/EA5945.htm +++ b/approved/html/EARoot/EA1/EA3/EA31/EA2/EA5/EA5945.htm @@ -107,7 +107,7 @@ - Public
  eutrophic + Public
  oligotrophic @@ -156,7 +156,7 @@ Notes: - <b>A </b>water bodies which is eutrophic has a high content of nutrients, such as phosphorus. Due to the high primary productivity the oxygen content could sink to low levels. The water has poor visibility.<br/> + <b>A </b>water bodies which is oligotrophic has low content of nutrients, such as phosphorus. The primary productivity is low, content of oxygen is high and the water is in most cases very clear.<br/> @@ -223,7 +223,7 @@ - Public
  oligotrophic + Public
  eutrophic @@ -272,7 +272,7 @@ Notes: - <b>A </b>water bodies which is oligotrophic has low content of nutrients, such as phosphorus. The primary productivity is low, content of oxygen is high and the water is in most cases very clear.<br/> + <b>A </b>water bodies which is eutrophic has a high content of nutrients, such as phosphorus. Due to the high primary productivity the oxygen content could sink to low levels. The water has poor visibility.<br/> diff --git a/approved/html/EARoot/EA1/EA3/EA31/EA2/EA5/EA5949.htm b/approved/html/EARoot/EA1/EA3/EA31/EA2/EA5/EA5949.htm index 9d1f7fd59..90abc165e 100644 --- a/approved/html/EARoot/EA1/EA3/EA31/EA2/EA5/EA5949.htm +++ b/approved/html/EARoot/EA1/EA3/EA31/EA2/EA5/EA5949.htm @@ -107,7 +107,7 @@ - Public
  inorganic + Public
  organic @@ -155,7 +155,7 @@ - Public
  organic + Public
  inorganic diff --git a/approved/html/EARoot/EA1/EA3/EA31/EA2/EA5/EA5952.htm b/approved/html/EARoot/EA1/EA3/EA31/EA2/EA5/EA5952.htm index 6b39c9d95..842ae037f 100644 --- a/approved/html/EARoot/EA1/EA3/EA31/EA2/EA5/EA5952.htm +++ b/approved/html/EARoot/EA1/EA3/EA31/EA2/EA5/EA5952.htm @@ -107,7 +107,7 @@ - Public
  irregular + Public
  regular @@ -155,7 +155,7 @@ - Public
  regular + Public
  irregular diff --git a/approved/html/EARoot/EA1/EA3/EA31/EA2/EA5/EA5961.htm b/approved/html/EARoot/EA1/EA3/EA31/EA2/EA5/EA5961.htm index a9d6c1d67..5fda60dbe 100644 --- a/approved/html/EARoot/EA1/EA3/EA31/EA2/EA5/EA5961.htm +++ b/approved/html/EARoot/EA1/EA3/EA31/EA2/EA5/EA5961.htm @@ -107,7 +107,7 @@ - Public
  clearcutting + Public
  evenAgedManagement @@ -155,7 +155,7 @@ - Public
  evenAgedManagement + Public
  clearcutting diff --git a/approved/html/EARoot/EA1/EA3/EA31/EA2/EA5/EA5966.htm b/approved/html/EARoot/EA1/EA3/EA31/EA2/EA5/EA5966.htm index bdb04f5c3..7f9f73377 100644 --- a/approved/html/EARoot/EA1/EA3/EA31/EA2/EA5/EA5966.htm +++ b/approved/html/EARoot/EA1/EA3/EA31/EA2/EA5/EA5966.htm @@ -108,7 +108,7 @@ - Public LC_VegetationDamageType
  damageType + Public LC_PermittedPercentageValue
  percentage @@ -134,7 +134,7 @@ Range: - Range:0 to 1 + Transient: @@ -156,7 +156,7 @@ - Public LC_PermittedPercentageValue
  percentage + Public LC_VegetationDamageType
  damageType @@ -182,7 +182,7 @@ Range: - + Range:0 to 1 Transient: diff --git a/approved/html/EARoot/EA1/EA3/EA31/EA2/EA5/EA5971.htm b/approved/html/EARoot/EA1/EA3/EA31/EA2/EA5/EA5971.htm index 1192a335f..d9688093d 100644 --- a/approved/html/EARoot/EA1/EA3/EA31/EA2/EA5/EA5971.htm +++ b/approved/html/EARoot/EA1/EA3/EA31/EA2/EA5/EA5971.htm @@ -107,7 +107,7 @@ - Public
  brackish + Public
  fresh @@ -155,7 +155,7 @@ - Public
  brine + Public
  brackish @@ -203,7 +203,7 @@ - Public
  fresh + Public
  saline @@ -251,7 +251,7 @@ - Public
  saline + Public
  brine diff --git a/approved/html/EARoot/EA1/EA3/EA31/EA2/EA5/EA5973.htm b/approved/html/EARoot/EA1/EA3/EA31/EA2/EA5/EA5973.htm index 7f2e02fe5..bca87581a 100644 --- a/approved/html/EARoot/EA1/EA3/EA31/EA2/EA5/EA5973.htm +++ b/approved/html/EARoot/EA1/EA3/EA31/EA2/EA5/EA5973.htm @@ -108,7 +108,7 @@ - Public LC_PermittedPercentageValue
  irrigationPercentage + Public LC_PermittedPercentageValue
  rainfedPercentage @@ -156,7 +156,7 @@ - Public LC_IrrigationType
  irrigationType + Public LC_PermittedPercentageValue
  postfloodingPercentage @@ -204,7 +204,7 @@ - Public LC_PermittedPercentageValue
  postfloodingPercentage + Public LC_PermittedPercentageValue
  irrigationPercentage @@ -252,7 +252,7 @@ - Public LC_PermittedPercentageValue
  rainfedPercentage + Public LC_IrrigationType
  irrigationType diff --git a/approved/html/EARoot/EA1/EA3/EA31/EA2/EA5720.png b/approved/html/EARoot/EA1/EA3/EA31/EA2/EA5720.png index 2bf515148..bc895bccb 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA31/EA2/EA5720.png and b/approved/html/EARoot/EA1/EA3/EA31/EA2/EA5720.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA31/EA2/EA7/EA5995.png b/approved/html/EARoot/EA1/EA3/EA31/EA2/EA7/EA5995.png index 4c986cbf7..eba61c601 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA31/EA2/EA7/EA5995.png and b/approved/html/EARoot/EA1/EA3/EA31/EA2/EA7/EA5995.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA31/EA2/EA7/EA5997.png b/approved/html/EARoot/EA1/EA3/EA31/EA2/EA7/EA5997.png index ccca57cfb..03a21dcde 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA31/EA2/EA7/EA5997.png and b/approved/html/EARoot/EA1/EA3/EA31/EA2/EA7/EA5997.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA31/EA2/EA7/EA5999.png b/approved/html/EARoot/EA1/EA3/EA31/EA2/EA7/EA5999.png index f70af8233..274866480 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA31/EA2/EA7/EA5999.png and b/approved/html/EARoot/EA1/EA3/EA31/EA2/EA7/EA5999.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA31/EA2/EA7/EA6001.png b/approved/html/EARoot/EA1/EA3/EA31/EA2/EA7/EA6001.png index 9ea05fc2c..349d980a3 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA31/EA2/EA7/EA6001.png and b/approved/html/EARoot/EA1/EA3/EA31/EA2/EA7/EA6001.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA31/EA2/EA7/EA6003.png b/approved/html/EARoot/EA1/EA3/EA31/EA2/EA7/EA6003.png index beb7320c2..4f9993b24 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA31/EA2/EA7/EA6003.png and b/approved/html/EARoot/EA1/EA3/EA31/EA2/EA7/EA6003.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA31/EA2/EA7/EA6006.htm b/approved/html/EARoot/EA1/EA3/EA31/EA2/EA7/EA6006.htm index 587112d9f..c00dbc926 100644 --- a/approved/html/EARoot/EA1/EA3/EA31/EA2/EA7/EA6006.htm +++ b/approved/html/EARoot/EA1/EA3/EA31/EA2/EA7/EA6006.htm @@ -108,7 +108,7 @@ - Public CharacterString
  metalanguageObjectAttributes + Public CharacterString
  metalanguageObjectDescription @@ -134,7 +134,7 @@ Range: - Range:0 to * + Transient: @@ -156,7 +156,7 @@ - Public CharacterString
  metalanguageObjectDescription + Public CharacterString
  metalanguageObjectAttributes @@ -182,7 +182,7 @@ Range: - + Range:0 to * Transient: diff --git a/approved/html/EARoot/EA1/EA3/EA31/EA2/EA7/EA6008.htm b/approved/html/EARoot/EA1/EA3/EA31/EA2/EA7/EA6008.htm index ae45ee805..1dbd3d62a 100644 --- a/approved/html/EARoot/EA1/EA3/EA31/EA2/EA7/EA6008.htm +++ b/approved/html/EARoot/EA1/EA3/EA31/EA2/EA7/EA6008.htm @@ -108,7 +108,7 @@ - Public CharacterString
  metalanguageObjectAttributes + Public CharacterString
  metalanguageObjectDescription @@ -134,7 +134,7 @@ Range: - Range:0 to * + Transient: @@ -156,7 +156,7 @@ - Public CharacterString
  metalanguageObjectDescription + Public CharacterString
  metalanguageObjectAttributes @@ -182,7 +182,7 @@ Range: - + Range:0 to * Transient: diff --git a/approved/html/EARoot/EA1/EA3/EA31/EA2/EA7/EA6010.htm b/approved/html/EARoot/EA1/EA3/EA31/EA2/EA7/EA6010.htm index 782be469b..da9bad4cd 100644 --- a/approved/html/EARoot/EA1/EA3/EA31/EA2/EA7/EA6010.htm +++ b/approved/html/EARoot/EA1/EA3/EA31/EA2/EA7/EA6010.htm @@ -108,7 +108,7 @@ - Public CharacterString
  metalanguageObjectAttributes + Public CharacterString
  metalanguageObjectDescription @@ -134,7 +134,7 @@ Range: - Range:0 to * + Transient: @@ -156,7 +156,7 @@ - Public CharacterString
  metalanguageObjectDescription + Public CharacterString
  metalanguageObjectAttributes @@ -182,7 +182,7 @@ Range: - + Range:0 to * Transient: diff --git a/approved/html/EARoot/EA1/EA3/EA32/EA1/EA1/EA6314.png b/approved/html/EARoot/EA1/EA3/EA32/EA1/EA1/EA6314.png index c557d5529..a4cc714f2 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA32/EA1/EA1/EA6314.png and b/approved/html/EARoot/EA1/EA3/EA32/EA1/EA1/EA6314.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA32/EA1/EA1/EA6316.png b/approved/html/EARoot/EA1/EA3/EA32/EA1/EA1/EA6316.png index 29dcae99f..ea914fbcd 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA32/EA1/EA1/EA6316.png and b/approved/html/EARoot/EA1/EA3/EA32/EA1/EA1/EA6316.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA32/EA1/EA1/EA6318.png b/approved/html/EARoot/EA1/EA3/EA32/EA1/EA1/EA6318.png index b8005b915..6dbd89788 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA32/EA1/EA1/EA6318.png and b/approved/html/EARoot/EA1/EA3/EA32/EA1/EA1/EA6318.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA32/EA1/EA1/EA6320.png b/approved/html/EARoot/EA1/EA3/EA32/EA1/EA1/EA6320.png index 131efcda2..54996a0ad 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA32/EA1/EA1/EA6320.png and b/approved/html/EARoot/EA1/EA3/EA32/EA1/EA1/EA6320.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA32/EA1/EA2/EA6332.png b/approved/html/EARoot/EA1/EA3/EA32/EA1/EA2/EA6332.png index 664c89072..e0d5cf566 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA32/EA1/EA2/EA6332.png and b/approved/html/EARoot/EA1/EA3/EA32/EA1/EA2/EA6332.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA32/EA1/EA2/EA6334.png b/approved/html/EARoot/EA1/EA3/EA32/EA1/EA2/EA6334.png index 6885814db..c3270e5a8 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA32/EA1/EA2/EA6334.png and b/approved/html/EARoot/EA1/EA3/EA32/EA1/EA2/EA6334.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA32/EA1/EA2/EA6336.png b/approved/html/EARoot/EA1/EA3/EA32/EA1/EA2/EA6336.png index 97cefd29d..56c0caf13 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA32/EA1/EA2/EA6336.png and b/approved/html/EARoot/EA1/EA3/EA32/EA1/EA2/EA6336.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA32/EA1/EA2/EA6338.png b/approved/html/EARoot/EA1/EA3/EA32/EA1/EA2/EA6338.png index 15e579347..cd24185fb 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA32/EA1/EA2/EA6338.png and b/approved/html/EARoot/EA1/EA3/EA32/EA1/EA2/EA6338.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA32/EA1/EA2/EA6346.png b/approved/html/EARoot/EA1/EA3/EA32/EA1/EA2/EA6346.png index 60c45dff3..8c5d4dc42 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA32/EA1/EA2/EA6346.png and b/approved/html/EARoot/EA1/EA3/EA32/EA1/EA2/EA6346.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA32/EA1/EA3/EA6359.png b/approved/html/EARoot/EA1/EA3/EA32/EA1/EA3/EA6359.png index 79bb1293b..4513053b7 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA32/EA1/EA3/EA6359.png and b/approved/html/EARoot/EA1/EA3/EA32/EA1/EA3/EA6359.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA32/EA1/EA3/EA6361.png b/approved/html/EARoot/EA1/EA3/EA32/EA1/EA3/EA6361.png index 0218c8bca..3576894e2 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA32/EA1/EA3/EA6361.png and b/approved/html/EARoot/EA1/EA3/EA32/EA1/EA3/EA6361.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA32/EA1/EA3/EA6363.png b/approved/html/EARoot/EA1/EA3/EA32/EA1/EA3/EA6363.png index b73515226..15322cf51 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA32/EA1/EA3/EA6363.png and b/approved/html/EARoot/EA1/EA3/EA32/EA1/EA3/EA6363.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA32/EA1/EA6290.png b/approved/html/EARoot/EA1/EA3/EA32/EA1/EA6290.png index c69c7e3ce..70431b597 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA32/EA1/EA6290.png and b/approved/html/EARoot/EA1/EA3/EA32/EA1/EA6290.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA32/EA1/EA6292.png b/approved/html/EARoot/EA1/EA3/EA32/EA1/EA6292.png index f08851b56..7451cdc08 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA32/EA1/EA6292.png and b/approved/html/EARoot/EA1/EA3/EA32/EA1/EA6292.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA32/EA1/EA6306.png b/approved/html/EARoot/EA1/EA3/EA32/EA1/EA6306.png index f7a018dc4..96c74a278 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA32/EA1/EA6306.png and b/approved/html/EARoot/EA1/EA3/EA32/EA1/EA6306.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA32/EA1/EA6310.htm b/approved/html/EARoot/EA1/EA3/EA32/EA1/EA6310.htm index ec0dd5b48..8a7ebee94 100644 --- a/approved/html/EARoot/EA1/EA3/EA32/EA1/EA6310.htm +++ b/approved/html/EARoot/EA1/EA3/EA32/EA1/EA6310.htm @@ -110,7 +110,7 @@ - Public MD_CharacterSetCode
  characterSet + Public CharacterString
  name @@ -124,7 +124,7 @@ Initial: - "utf8" + Stereotype: @@ -136,7 +136,7 @@ Range: - Range:0 to 1 + Transient: @@ -158,7 +158,7 @@ - Public CharacterString
  fieldOfApplication + Public CharacterString
  scope @@ -184,7 +184,7 @@ Range: - Range:0 to * + Transient: @@ -206,7 +206,7 @@ - Public CharacterString
  language + Public CharacterString
  fieldOfApplication @@ -232,7 +232,7 @@ Range: - Range:0 to 1 + Range:0 to * Transient: @@ -254,7 +254,7 @@ - Public PT_Locale
  locale + Public CharacterString
  versionNumber @@ -280,7 +280,7 @@ Range: - Range:0 to * + Transient: @@ -302,7 +302,7 @@ - Public CharacterString
  name + Public Date
  versionDate @@ -350,7 +350,7 @@ - Public CharacterString
  scope + Public CharacterString
  language @@ -376,7 +376,7 @@ Range: - + Range:0 to 1 Transient: @@ -398,7 +398,7 @@ - Public Date
  versionDate + Public MD_CharacterSetCode
  characterSet @@ -412,7 +412,7 @@ Initial: - + "utf8" Stereotype: @@ -424,7 +424,7 @@ Range: - + Range:0 to 1 Transient: @@ -446,7 +446,7 @@ - Public CharacterString
  versionNumber + Public PT_Locale
  locale @@ -472,7 +472,7 @@ Range: - + Range:0 to * Transient: diff --git a/approved/html/EARoot/EA1/EA3/EA32/EA1/EA6311.htm b/approved/html/EARoot/EA1/EA3/EA32/EA1/EA6311.htm index 8f2147507..dc4bec5a7 100644 --- a/approved/html/EARoot/EA1/EA3/EA32/EA1/EA6311.htm +++ b/approved/html/EARoot/EA1/EA3/EA32/EA1/EA6311.htm @@ -108,7 +108,7 @@ - Public CharacterString
  definition + Public GenericName
  identifier @@ -156,7 +156,7 @@ - Public CharacterString
  description + Public GenericName
  name @@ -182,7 +182,7 @@ Range: - Range:0 to 1 + Range:0 to * Transient: @@ -204,7 +204,7 @@ - Public GenericName
  identifier + Public CharacterString
  definition @@ -252,7 +252,7 @@ - Public GenericName
  name + Public CharacterString
  description @@ -278,7 +278,7 @@ Range: - Range:0 to * + Range:0 to 1 Transient: diff --git a/approved/html/EARoot/EA1/EA3/EA32/EA2/EA6372.png b/approved/html/EARoot/EA1/EA3/EA32/EA2/EA6372.png index 34e55cdf3..9e40079fe 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA32/EA2/EA6372.png and b/approved/html/EARoot/EA1/EA3/EA32/EA2/EA6372.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA32/EA2/EA6374.png b/approved/html/EARoot/EA1/EA3/EA32/EA2/EA6374.png index eac8ab24d..6516b680a 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA32/EA2/EA6374.png and b/approved/html/EARoot/EA1/EA3/EA32/EA2/EA6374.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA32/EA2/EA6376.png b/approved/html/EARoot/EA1/EA3/EA32/EA2/EA6376.png index 9e7aabb62..ffe4bd910 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA32/EA2/EA6376.png and b/approved/html/EARoot/EA1/EA3/EA32/EA2/EA6376.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA32/EA2/EA6378.png b/approved/html/EARoot/EA1/EA3/EA32/EA2/EA6378.png index e642e8d55..946402b68 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA32/EA2/EA6378.png and b/approved/html/EARoot/EA1/EA3/EA32/EA2/EA6378.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA32/EA2/EA6382.htm b/approved/html/EARoot/EA1/EA3/EA32/EA2/EA6382.htm index 0449a20b5..8fd79daaa 100644 --- a/approved/html/EARoot/EA1/EA3/EA32/EA2/EA6382.htm +++ b/approved/html/EARoot/EA1/EA3/EA32/EA2/EA6382.htm @@ -109,7 +109,7 @@ - Public MD_CharacterSetCode
  characterSetCode + Public LanguageCode
  languageCode @@ -135,7 +135,7 @@ Range: - Range:0 to 1 + Transient: @@ -205,7 +205,7 @@ - Public LanguageCode
  languageCode + Public MD_CharacterSetCode
  characterSetCode @@ -231,7 +231,7 @@ Range: - + Range:0 to 1 Transient: diff --git a/approved/html/EARoot/EA1/EA3/EA32/EA2/EA6383.htm b/approved/html/EARoot/EA1/EA3/EA32/EA2/EA6383.htm index 6a5f18c90..9e9154ddf 100644 --- a/approved/html/EARoot/EA1/EA3/EA32/EA2/EA6383.htm +++ b/approved/html/EARoot/EA1/EA3/EA32/EA2/EA6383.htm @@ -109,7 +109,7 @@ - Public CI_Date
  date + Public CharacterString
  description @@ -157,7 +157,7 @@ - Public CharacterString
  description + Public PT_Locale
  locale @@ -205,7 +205,7 @@ - Public PT_Locale
  locale + Public CI_Date
  date diff --git a/approved/html/EARoot/EA1/EA3/EA32/EA3/EA6387.png b/approved/html/EARoot/EA1/EA3/EA32/EA3/EA6387.png index 115ee60b9..c85a051a5 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA32/EA3/EA6387.png and b/approved/html/EARoot/EA1/EA3/EA32/EA3/EA6387.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA32/EA3/EA6391.png b/approved/html/EARoot/EA1/EA3/EA32/EA3/EA6391.png index 2ff695393..7cb55c7bf 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA32/EA3/EA6391.png and b/approved/html/EARoot/EA1/EA3/EA32/EA3/EA6391.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA32/EA3/EA6393.png b/approved/html/EARoot/EA1/EA3/EA32/EA3/EA6393.png index 0f910342f..ad428754a 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA32/EA3/EA6393.png and b/approved/html/EARoot/EA1/EA3/EA32/EA3/EA6393.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA32/EA3/EA6395.png b/approved/html/EARoot/EA1/EA3/EA32/EA3/EA6395.png index 8e7883cf6..c74731b71 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA32/EA3/EA6395.png and b/approved/html/EARoot/EA1/EA3/EA32/EA3/EA6395.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA32/EA3/EA6399.png b/approved/html/EARoot/EA1/EA3/EA32/EA3/EA6399.png index e0ab45c96..98eabbe8c 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA32/EA3/EA6399.png and b/approved/html/EARoot/EA1/EA3/EA32/EA3/EA6399.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA32/EA3/EA6406.htm b/approved/html/EARoot/EA1/EA3/EA32/EA3/EA6406.htm index 97dee5832..66bab2a7a 100644 --- a/approved/html/EARoot/EA1/EA3/EA32/EA3/EA6406.htm +++ b/approved/html/EARoot/EA1/EA3/EA32/EA3/EA6406.htm @@ -108,7 +108,7 @@ - Public CharacterString
  fileDescription + Public FileName
  fileName @@ -156,7 +156,7 @@ - Public FileName
  fileName + Public CharacterString
  fileDescription diff --git a/approved/html/EARoot/EA1/EA3/EA32/EA3/EA6407.htm b/approved/html/EARoot/EA1/EA3/EA32/EA3/EA6407.htm index c4ff4a98e..30fb56061 100644 --- a/approved/html/EARoot/EA1/EA3/EA32/EA3/EA6407.htm +++ b/approved/html/EARoot/EA1/EA3/EA32/EA3/EA6407.htm @@ -156,7 +156,7 @@ - Public <undefined>
  otherAggregate + Public <undefined>
  stereoMate @@ -204,7 +204,7 @@ - Public <undefined>
  platformSeries + Public <undefined>
  sensor @@ -252,7 +252,7 @@ - Public <undefined>
  productionSeries + Public <undefined>
  platformSeries @@ -300,7 +300,7 @@ - Public <undefined>
  sensor + Public <undefined>
  sensorSeries @@ -348,7 +348,7 @@ - Public <undefined>
  sensorSeries + Public <undefined>
  productionSeries @@ -396,7 +396,7 @@ - Public <undefined>
  stereoMate + Public <undefined>
  transferAggregate @@ -444,7 +444,7 @@ - Public <undefined>
  transferAggregate + Public <undefined>
  otherAggregate diff --git a/approved/html/EARoot/EA1/EA3/EA33/EA6425.png b/approved/html/EARoot/EA1/EA3/EA33/EA6425.png index 99fade978..d70f02323 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA33/EA6425.png and b/approved/html/EARoot/EA1/EA3/EA33/EA6425.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA33/EA6427.png b/approved/html/EARoot/EA1/EA3/EA33/EA6427.png index 759bf6130..5af249766 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA33/EA6427.png and b/approved/html/EARoot/EA1/EA3/EA33/EA6427.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA33/EA6429.png b/approved/html/EARoot/EA1/EA3/EA33/EA6429.png index 9c2c0583e..3c6e26297 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA33/EA6429.png and b/approved/html/EARoot/EA1/EA3/EA33/EA6429.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA33/EA6431.png b/approved/html/EARoot/EA1/EA3/EA33/EA6431.png index 9330ee15b..517fdba25 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA33/EA6431.png and b/approved/html/EARoot/EA1/EA3/EA33/EA6431.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA33/EA6433.png b/approved/html/EARoot/EA1/EA3/EA33/EA6433.png index 01c73ccc5..ff365a9ed 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA33/EA6433.png and b/approved/html/EARoot/EA1/EA3/EA33/EA6433.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA33/EA6435.png b/approved/html/EARoot/EA1/EA3/EA33/EA6435.png index dc9fd399c..9be5e5c63 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA33/EA6435.png and b/approved/html/EARoot/EA1/EA3/EA33/EA6435.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA33/EA6439.png b/approved/html/EARoot/EA1/EA3/EA33/EA6439.png index 958bf8d99..639d444a0 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA33/EA6439.png and b/approved/html/EARoot/EA1/EA3/EA33/EA6439.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA33/EA6441.png b/approved/html/EARoot/EA1/EA3/EA33/EA6441.png index 2b774f6cb..981cf8323 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA33/EA6441.png and b/approved/html/EARoot/EA1/EA3/EA33/EA6441.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA33/EA6443.png b/approved/html/EARoot/EA1/EA3/EA33/EA6443.png index c2f77133e..5360a65e4 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA33/EA6443.png and b/approved/html/EARoot/EA1/EA3/EA33/EA6443.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA33/EA6445.png b/approved/html/EARoot/EA1/EA3/EA33/EA6445.png index 1d164056a..fcc41a76f 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA33/EA6445.png and b/approved/html/EARoot/EA1/EA3/EA33/EA6445.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA33/EA6447.png b/approved/html/EARoot/EA1/EA3/EA33/EA6447.png index 308b988a0..8aac15fdc 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA33/EA6447.png and b/approved/html/EARoot/EA1/EA3/EA33/EA6447.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA33/EA6449.png b/approved/html/EARoot/EA1/EA3/EA33/EA6449.png index e74a290c8..87ef943bd 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA33/EA6449.png and b/approved/html/EARoot/EA1/EA3/EA33/EA6449.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA33/EA6451.png b/approved/html/EARoot/EA1/EA3/EA33/EA6451.png index ec102096a..55aef19bf 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA33/EA6451.png and b/approved/html/EARoot/EA1/EA3/EA33/EA6451.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA33/EA6453.png b/approved/html/EARoot/EA1/EA3/EA33/EA6453.png index 861d0604d..807ea761f 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA33/EA6453.png and b/approved/html/EARoot/EA1/EA3/EA33/EA6453.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA33/EA6455.png b/approved/html/EARoot/EA1/EA3/EA33/EA6455.png index 56feeb112..8c525dc50 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA33/EA6455.png and b/approved/html/EARoot/EA1/EA3/EA33/EA6455.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA33/EA6459.htm b/approved/html/EARoot/EA1/EA3/EA33/EA6459.htm index 17ed6f12d..3fb6e4154 100644 --- a/approved/html/EARoot/EA1/EA3/EA33/EA6459.htm +++ b/approved/html/EARoot/EA1/EA3/EA33/EA6459.htm @@ -108,7 +108,7 @@ - Public CI_OnlineResource
  compressionService + Public CI_Citation
  name @@ -134,7 +134,7 @@ Range: - Range:0 to * + Transient: @@ -204,7 +204,7 @@ - Public CI_Citation
  name + Public GPLR_Version
  version @@ -230,7 +230,7 @@ Range: - + Range:0 to 1 Transient: @@ -252,7 +252,7 @@ - Public GPLR_Version
  version + Public CI_OnlineResource
  compressionService @@ -278,7 +278,7 @@ Range: - Range:0 to 1 + Range:0 to * Transient: diff --git a/approved/html/EARoot/EA1/EA3/EA33/EA6460.htm b/approved/html/EARoot/EA1/EA3/EA33/EA6460.htm index e231a0c7f..e83b68311 100644 --- a/approved/html/EARoot/EA1/EA3/EA33/EA6460.htm +++ b/approved/html/EARoot/EA1/EA3/EA33/EA6460.htm @@ -110,7 +110,7 @@ - Public GPLR_ConversionType
  conversionType + Public CharacterString
  name @@ -206,7 +206,7 @@ - Public CharacterString
  name + Public CI_OnlineResource
  uniformResourceIdentifier @@ -232,7 +232,7 @@ Range: - + Range:0 to * Transient: @@ -254,7 +254,7 @@ - Public CI_OnlineResource
  uniformResourceIdentifier + Public GPLR_ConversionType
  conversionType @@ -280,7 +280,7 @@ Range: - Range:0 to * + Transient: diff --git a/approved/html/EARoot/EA1/EA3/EA33/EA6461.htm b/approved/html/EARoot/EA1/EA3/EA33/EA6461.htm index 0d78594b1..3e68891b2 100644 --- a/approved/html/EARoot/EA1/EA3/EA33/EA6461.htm +++ b/approved/html/EARoot/EA1/EA3/EA33/EA6461.htm @@ -107,7 +107,7 @@ - Public <undefined>
  dynamic + Public <undefined>
  static @@ -155,7 +155,7 @@ - Public <undefined>
  static + Public <undefined>
  dynamic diff --git a/approved/html/EARoot/EA1/EA3/EA33/EA6462.htm b/approved/html/EARoot/EA1/EA3/EA33/EA6462.htm index 78a766e2e..4370e8f2e 100644 --- a/approved/html/EARoot/EA1/EA3/EA33/EA6462.htm +++ b/approved/html/EARoot/EA1/EA3/EA33/EA6462.htm @@ -110,7 +110,7 @@ - Public Boolean
  fixed + Public Boolean
  supported @@ -136,7 +136,7 @@ Range: - Range:0 to 1 + Transient: @@ -158,7 +158,7 @@ - Public Boolean
  supported + Public Boolean
  fixed @@ -184,7 +184,7 @@ Range: - + Range:0 to 1 Transient: diff --git a/approved/html/EARoot/EA1/EA3/EA33/EA6464.htm b/approved/html/EARoot/EA1/EA3/EA33/EA6464.htm index 9f48c421d..e31209a75 100644 --- a/approved/html/EARoot/EA1/EA3/EA33/EA6464.htm +++ b/approved/html/EARoot/EA1/EA3/EA33/EA6464.htm @@ -159,7 +159,7 @@ - Public MD_LegalConstraints
  legalConstraints + Public CI_Citation
  specificationName @@ -185,7 +185,7 @@ Range: - Range:0 to * + Transient: @@ -207,7 +207,7 @@ - Public CI_Citation
  specificationName + Public GPLR_Version
  version @@ -255,7 +255,7 @@ - Public GPLR_RepresentationType
  type + Public MD_LegalConstraints
  legalConstraints @@ -269,7 +269,7 @@ Initial: - text + Stereotype: @@ -281,7 +281,7 @@ Range: - + Range:0 to * Transient: @@ -303,7 +303,7 @@ - Public GPLR_Version
  version + Public GPLR_RepresentationType
  type @@ -317,7 +317,7 @@ Initial: - + text Stereotype: diff --git a/approved/html/EARoot/EA1/EA3/EA33/EA6466.htm b/approved/html/EARoot/EA1/EA3/EA33/EA6466.htm index d00b84ca9..f8faa4ee0 100644 --- a/approved/html/EARoot/EA1/EA3/EA33/EA6466.htm +++ b/approved/html/EARoot/EA1/EA3/EA33/EA6466.htm @@ -111,7 +111,7 @@ - Public Date
  dateOfLastChange + Public CharacterString
  name @@ -137,7 +137,7 @@ Range: - Range:0 to 1 + Transient: @@ -159,7 +159,7 @@ - Public CharacterString
  name + Public CharacterString
  summary @@ -185,7 +185,7 @@ Range: - + Range:0 to 1 Transient: @@ -207,7 +207,7 @@ - Public RE_Locale
  operatingLanguage + Public CI_OnlineResource
  uniformResourceIdentifier @@ -255,7 +255,7 @@ - Public CharacterString
  summary + Public RE_Locale
  operatingLanguage @@ -281,7 +281,7 @@ Range: - Range:0 to 1 + Transient: @@ -303,7 +303,7 @@ - Public CI_OnlineResource
  uniformResourceIdentifier + Public RE_Version
  version @@ -329,7 +329,7 @@ Range: - + Range:0 to 1 Transient: @@ -351,7 +351,7 @@ - Public RE_Version
  version + Public Date
  dateOfLastChange diff --git a/approved/html/EARoot/EA1/EA3/EA33/EA6468.htm b/approved/html/EARoot/EA1/EA3/EA33/EA6468.htm index 43c8fff11..f4abe1e2e 100644 --- a/approved/html/EARoot/EA1/EA3/EA33/EA6468.htm +++ b/approved/html/EARoot/EA1/EA3/EA33/EA6468.htm @@ -107,7 +107,7 @@ - Public <undefined>
  binary + Public <undefined>
  text @@ -155,7 +155,7 @@ - Public <undefined>
  text + Public <undefined>
  binary diff --git a/approved/html/EARoot/EA1/EA3/EA34/EA6477.png b/approved/html/EARoot/EA1/EA3/EA34/EA6477.png index c17ab9303..ac202e4b8 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA34/EA6477.png and b/approved/html/EARoot/EA1/EA3/EA34/EA6477.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA34/EA6479.png b/approved/html/EARoot/EA1/EA3/EA34/EA6479.png index 91934cc48..7dfddc552 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA34/EA6479.png and b/approved/html/EARoot/EA1/EA3/EA34/EA6479.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA34/EA6482.htm b/approved/html/EARoot/EA1/EA3/EA34/EA6482.htm index 46a5e4436..b811af44d 100644 --- a/approved/html/EARoot/EA1/EA3/EA34/EA6482.htm +++ b/approved/html/EARoot/EA1/EA3/EA34/EA6482.htm @@ -106,7 +106,7 @@ - Public Character String
  description + Public Character String
  name @@ -132,7 +132,7 @@ Range: - Range:0 to 1 + Transient: @@ -154,7 +154,7 @@ - Public Character String
  name + Public Character String
  description @@ -180,7 +180,7 @@ Range: - + Range:0 to 1 Transient: diff --git a/approved/html/EARoot/EA1/EA3/EA34/EA6483.htm b/approved/html/EARoot/EA1/EA3/EA34/EA6483.htm index 96b415eab..1d2b9d682 100644 --- a/approved/html/EARoot/EA1/EA3/EA34/EA6483.htm +++ b/approved/html/EARoot/EA1/EA3/EA34/EA6483.htm @@ -107,7 +107,7 @@ - Public Date
  crossMapDate + Public int
  crossMapIdentifier @@ -155,7 +155,7 @@ - Public CharacterString
  crossMapDecisionEvent + Public TR_TermRelationship
  operatingTermRel @@ -181,7 +181,7 @@ Range: - Range:0 to 1 + Transient: @@ -203,7 +203,7 @@ - Public int
  crossMapIdentifier + Public TR_ConceptRelationship
  operatingConceptRel @@ -251,7 +251,7 @@ - Public CharacterString
  crossMapNotes + Public Date
  crossMapDate @@ -277,7 +277,7 @@ Range: - Range:0 to 1 + Transient: @@ -299,7 +299,7 @@ - Public TR_ConceptRelationship
  operatingConceptRel + Public CharacterString
  crossMapDecisionEvent @@ -325,7 +325,7 @@ Range: - + Range:0 to 1 Transient: @@ -347,7 +347,7 @@ - Public TR_TermRelationship
  operatingTermRel + Public CharacterString
  crossMapNotes @@ -373,7 +373,7 @@ Range: - + Range:0 to 1 Transient: diff --git a/approved/html/EARoot/EA1/EA3/EA34/EA6487.htm b/approved/html/EARoot/EA1/EA3/EA34/EA6487.htm index 8796bec1b..33513985e 100644 --- a/approved/html/EARoot/EA1/EA3/EA34/EA6487.htm +++ b/approved/html/EARoot/EA1/EA3/EA34/EA6487.htm @@ -107,7 +107,7 @@ - Public TR_Domain
  domain + Public TR_TermSubregisterType
  type @@ -155,7 +155,7 @@ - Public TR_TermSubregisterType
  type + Public TR_Domain
  domain diff --git a/approved/html/EARoot/EA1/EA3/EA34/EA6488.htm b/approved/html/EARoot/EA1/EA3/EA34/EA6488.htm index c85524304..5d483e3a9 100644 --- a/approved/html/EARoot/EA1/EA3/EA34/EA6488.htm +++ b/approved/html/EARoot/EA1/EA3/EA34/EA6488.htm @@ -106,7 +106,7 @@ - Public <undefined>
  OperatingVocabulary + Public <undefined>
  ReferenceVocabulary @@ -120,7 +120,7 @@ Initial: - 2 + 1 Stereotype: @@ -154,7 +154,7 @@ - Public <undefined>
  ReferenceVocabulary + Public <undefined>
  OperatingVocabulary @@ -168,7 +168,7 @@ Initial: - 1 + 2 Stereotype: diff --git a/approved/html/EARoot/EA1/EA3/EA35/EA1/EA6504.htm b/approved/html/EARoot/EA1/EA3/EA35/EA1/EA6504.htm index 6726858bf..40c00ce9e 100644 --- a/approved/html/EARoot/EA1/EA3/EA35/EA1/EA6504.htm +++ b/approved/html/EARoot/EA1/EA3/EA35/EA1/EA6504.htm @@ -108,7 +108,7 @@ - Public LR_DistanceExpression
  fromPosition + Public Integer
  value @@ -204,7 +204,7 @@ - Public LR_DistanceExpression
  toPosition + Public LR_DistanceExpression
  fromPosition @@ -252,7 +252,7 @@ - Public ValidityPeriod
  validity + Public LR_DistanceExpression
  toPosition @@ -300,7 +300,7 @@ - Public Integer
  value + Public ValidityPeriod
  validity diff --git a/approved/html/EARoot/EA1/EA3/EA35/EA1/EA6505.htm b/approved/html/EARoot/EA1/EA3/EA35/EA1/EA6505.htm index c409cf68d..bea86ef18 100644 --- a/approved/html/EARoot/EA1/EA3/EA35/EA1/EA6505.htm +++ b/approved/html/EARoot/EA1/EA3/EA35/EA1/EA6505.htm @@ -107,7 +107,7 @@ - Public LE_LinearLocation
  linearLocation + Public Integer
  value @@ -155,7 +155,7 @@ - Public ValidityPeriod
  validity + Public LE_LinearLocation
  linearLocation @@ -203,7 +203,7 @@ - Public Integer
  value + Public ValidityPeriod
  validity diff --git a/approved/html/EARoot/EA1/EA3/EA35/EA2/EA6508.png b/approved/html/EARoot/EA1/EA3/EA35/EA2/EA6508.png index 561a8f85a..4a6691a31 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA35/EA2/EA6508.png and b/approved/html/EARoot/EA1/EA3/EA35/EA2/EA6508.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA35/EA2/EA6510.png b/approved/html/EARoot/EA1/EA3/EA35/EA2/EA6510.png index db587756b..5543f1a4c 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA35/EA2/EA6510.png and b/approved/html/EARoot/EA1/EA3/EA35/EA2/EA6510.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA35/EA2/EA6512.png b/approved/html/EARoot/EA1/EA3/EA35/EA2/EA6512.png index 2111682ce..0d7b47d61 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA35/EA2/EA6512.png and b/approved/html/EARoot/EA1/EA3/EA35/EA2/EA6512.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA35/EA2/EA6514.png b/approved/html/EARoot/EA1/EA3/EA35/EA2/EA6514.png index 783620cdb..056c68507 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA35/EA2/EA6514.png and b/approved/html/EARoot/EA1/EA3/EA35/EA2/EA6514.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA35/EA3/EA6517.png b/approved/html/EARoot/EA1/EA3/EA35/EA3/EA6517.png index 855e28550..8eb18e114 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA35/EA3/EA6517.png and b/approved/html/EARoot/EA1/EA3/EA35/EA3/EA6517.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA35/EA3/EA6521.png b/approved/html/EARoot/EA1/EA3/EA35/EA3/EA6521.png index 9797e6e15..a161b917d 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA35/EA3/EA6521.png and b/approved/html/EARoot/EA1/EA3/EA35/EA3/EA6521.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA35/EA4/EA6524.png b/approved/html/EARoot/EA1/EA3/EA35/EA4/EA6524.png index 0064e3148..a98911890 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA35/EA4/EA6524.png and b/approved/html/EARoot/EA1/EA3/EA35/EA4/EA6524.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA35/EA4/EA6526.png b/approved/html/EARoot/EA1/EA3/EA35/EA4/EA6526.png index 08e2da494..8185b1e29 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA35/EA4/EA6526.png and b/approved/html/EARoot/EA1/EA3/EA35/EA4/EA6526.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA35/EA4/EA6528.png b/approved/html/EARoot/EA1/EA3/EA35/EA4/EA6528.png index 4b00822f8..8777f656e 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA35/EA4/EA6528.png and b/approved/html/EARoot/EA1/EA3/EA35/EA4/EA6528.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA35/EA4/EA6530.png b/approved/html/EARoot/EA1/EA3/EA35/EA4/EA6530.png index 53ba44d6f..25a373be2 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA35/EA4/EA6530.png and b/approved/html/EARoot/EA1/EA3/EA35/EA4/EA6530.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA35/EA4/EA6532.png b/approved/html/EARoot/EA1/EA3/EA35/EA4/EA6532.png index 27e8a8174..e017cdc55 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA35/EA4/EA6532.png and b/approved/html/EARoot/EA1/EA3/EA35/EA4/EA6532.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA35/EA4/EA6534.png b/approved/html/EARoot/EA1/EA3/EA35/EA4/EA6534.png index ea70ad672..67763ecc2 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA35/EA4/EA6534.png and b/approved/html/EARoot/EA1/EA3/EA35/EA4/EA6534.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA35/EA4/EA6536.png b/approved/html/EARoot/EA1/EA3/EA35/EA4/EA6536.png index b5e23366a..2984d519a 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA35/EA4/EA6536.png and b/approved/html/EARoot/EA1/EA3/EA35/EA4/EA6536.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA35/EA4/EA6542.png b/approved/html/EARoot/EA1/EA3/EA35/EA4/EA6542.png index 8b7e2d120..52dd2280a 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA35/EA4/EA6542.png and b/approved/html/EARoot/EA1/EA3/EA35/EA4/EA6542.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA35/EA4/EA6544.png b/approved/html/EARoot/EA1/EA3/EA35/EA4/EA6544.png index b1ef4dc1b..d77694d58 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA35/EA4/EA6544.png and b/approved/html/EARoot/EA1/EA3/EA35/EA4/EA6544.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA35/EA4/EA6550.png b/approved/html/EARoot/EA1/EA3/EA35/EA4/EA6550.png index 16dad07b5..be0eb6030 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA35/EA4/EA6550.png and b/approved/html/EARoot/EA1/EA3/EA35/EA4/EA6550.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA35/EA4/EA6552.png b/approved/html/EARoot/EA1/EA3/EA35/EA4/EA6552.png index f87484837..7080a4451 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA35/EA4/EA6552.png and b/approved/html/EARoot/EA1/EA3/EA35/EA4/EA6552.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA35/EA4/EA6554.png b/approved/html/EARoot/EA1/EA3/EA35/EA4/EA6554.png index 7b2e49cbb..b27f709df 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA35/EA4/EA6554.png and b/approved/html/EARoot/EA1/EA3/EA35/EA4/EA6554.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA35/EA4/EA6568.htm b/approved/html/EARoot/EA1/EA3/EA35/EA4/EA6568.htm index f0ab403f5..5d86a70b1 100644 --- a/approved/html/EARoot/EA1/EA3/EA35/EA4/EA6568.htm +++ b/approved/html/EARoot/EA1/EA3/EA35/EA4/EA6568.htm @@ -107,7 +107,7 @@ - Public LR_Curve
  curve + Public LR_Feature
  feature @@ -155,7 +155,7 @@ - Public LR_DirectedEdge
  edge + Public LR_Curve
  curve @@ -203,7 +203,7 @@ - Public LR_Feature
  feature + Public LR_DirectedEdge
  edge diff --git a/approved/html/EARoot/EA1/EA3/EA35/EA4/EA6569.htm b/approved/html/EARoot/EA1/EA3/EA35/EA4/EA6569.htm index 2c41fe1aa..3c680266b 100644 --- a/approved/html/EARoot/EA1/EA3/EA35/EA4/EA6569.htm +++ b/approved/html/EARoot/EA1/EA3/EA35/EA4/EA6569.htm @@ -109,7 +109,7 @@ - Public CharacterString
  constraint + Public CharacterString
  name @@ -135,7 +135,7 @@ Range: - Range:0 to * + Transient: @@ -157,7 +157,7 @@ - Public CharacterString
  name + Public LR_LRMType
  type @@ -205,7 +205,7 @@ - Public LR_LRMType
  type + Public UnitOfMeasure
  units @@ -253,7 +253,7 @@ - Public UnitOfMeasure
  units + Public CharacterString
  constraint @@ -279,7 +279,7 @@ Range: - + Range:0 to * Transient: diff --git a/approved/html/EARoot/EA1/EA3/EA35/EA4/EA6570.htm b/approved/html/EARoot/EA1/EA3/EA35/EA4/EA6570.htm index d3d75e64c..8ae77a2e5 100644 --- a/approved/html/EARoot/EA1/EA3/EA35/EA4/EA6570.htm +++ b/approved/html/EARoot/EA1/EA3/EA35/EA4/EA6570.htm @@ -155,7 +155,7 @@ - Public <undefined>
  interpolative + Public <undefined>
  relative @@ -203,7 +203,7 @@ - Public <undefined>
  relative + Public <undefined>
  interpolative diff --git a/approved/html/EARoot/EA1/EA3/EA35/EA4/EA6572.htm b/approved/html/EARoot/EA1/EA3/EA35/EA4/EA6572.htm index 58ff395fd..161cab426 100644 --- a/approved/html/EARoot/EA1/EA3/EA35/EA4/EA6572.htm +++ b/approved/html/EARoot/EA1/EA3/EA35/EA4/EA6572.htm @@ -108,7 +108,7 @@ - Public LR_PositionExpression
  location + Public CharacterString
  name @@ -134,7 +134,7 @@ Range: - Range:0 to 1 + Transient: @@ -156,7 +156,7 @@ - Public CharacterString
  name + Public LR_ReferentType
  type @@ -252,7 +252,7 @@ - Public LR_ReferentType
  type + Public LR_PositionExpression
  location @@ -278,7 +278,7 @@ Range: - + Range:0 to 1 Transient: diff --git a/approved/html/EARoot/EA1/EA3/EA35/EA4/EA6573.htm b/approved/html/EARoot/EA1/EA3/EA35/EA4/EA6573.htm index 00117d71c..6c925c7f4 100644 --- a/approved/html/EARoot/EA1/EA3/EA35/EA4/EA6573.htm +++ b/approved/html/EARoot/EA1/EA3/EA35/EA4/EA6573.htm @@ -107,7 +107,7 @@ - Public <undefined>
  boundary + Public <undefined>
  referenceMarker @@ -203,7 +203,7 @@ - Public <undefined>
  landmark + Public <undefined>
  boundary @@ -251,7 +251,7 @@ - Public <undefined>
  referenceMarker + Public <undefined>
  landmark diff --git a/approved/html/EARoot/EA1/EA3/EA35/EA5/EA6575.png b/approved/html/EARoot/EA1/EA3/EA35/EA5/EA6575.png index 4a77d5bf2..5ccdfcf6a 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA35/EA5/EA6575.png and b/approved/html/EARoot/EA1/EA3/EA35/EA5/EA6575.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA35/EA5/EA6577.png b/approved/html/EARoot/EA1/EA3/EA35/EA5/EA6577.png index 7dd48920e..4658c70aa 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA35/EA5/EA6577.png and b/approved/html/EARoot/EA1/EA3/EA35/EA5/EA6577.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA35/EA5/EA6579.png b/approved/html/EARoot/EA1/EA3/EA35/EA5/EA6579.png index e4e51c765..d1fe6ba1c 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA35/EA5/EA6579.png and b/approved/html/EARoot/EA1/EA3/EA35/EA5/EA6579.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA35/EA6/EA6584.png b/approved/html/EARoot/EA1/EA3/EA35/EA6/EA6584.png index 5ffb385f0..c20fdc9e1 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA35/EA6/EA6584.png and b/approved/html/EARoot/EA1/EA3/EA35/EA6/EA6584.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA35/EA6/EA6586.png b/approved/html/EARoot/EA1/EA3/EA35/EA6/EA6586.png index 98e685ee1..46e953024 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA35/EA6/EA6586.png and b/approved/html/EARoot/EA1/EA3/EA35/EA6/EA6586.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA35/EA6/EA6588.png b/approved/html/EARoot/EA1/EA3/EA35/EA6/EA6588.png index f24360415..86a5ab794 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA35/EA6/EA6588.png and b/approved/html/EARoot/EA1/EA3/EA35/EA6/EA6588.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA35/EA6/EA6590.png b/approved/html/EARoot/EA1/EA3/EA35/EA6/EA6590.png index dafbcecb2..6a7991d71 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA35/EA6/EA6590.png and b/approved/html/EARoot/EA1/EA3/EA35/EA6/EA6590.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA35/EA6/EA6592.png b/approved/html/EARoot/EA1/EA3/EA35/EA6/EA6592.png index 8bf0f06d3..00f8463bf 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA35/EA6/EA6592.png and b/approved/html/EARoot/EA1/EA3/EA35/EA6/EA6592.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA35/EA6/EA6594.png b/approved/html/EARoot/EA1/EA3/EA35/EA6/EA6594.png index f4fd5be1b..5c6533597 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA35/EA6/EA6594.png and b/approved/html/EARoot/EA1/EA3/EA35/EA6/EA6594.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA35/EA6/EA6602.htm b/approved/html/EARoot/EA1/EA3/EA35/EA6/EA6602.htm index 6437b920a..3cd3f851f 100644 --- a/approved/html/EARoot/EA1/EA3/EA35/EA6/EA6602.htm +++ b/approved/html/EARoot/EA1/EA3/EA35/EA6/EA6602.htm @@ -107,7 +107,7 @@ - Public <undefined>
  left + Public <undefined>
  right @@ -155,7 +155,7 @@ - Public <undefined>
  right + Public <undefined>
  left diff --git a/approved/html/EARoot/EA1/EA3/EA35/EA6/EA6604.htm b/approved/html/EARoot/EA1/EA3/EA35/EA6/EA6604.htm index 3704cab63..cfbc271de 100644 --- a/approved/html/EARoot/EA1/EA3/EA35/EA6/EA6604.htm +++ b/approved/html/EARoot/EA1/EA3/EA35/EA6/EA6604.htm @@ -108,7 +108,7 @@ - Public LRO_LateralOffsetReferent
  lateralOffsetReferent + Public Measure
  offsetLateralDistance @@ -156,7 +156,7 @@ - Public Measure
  offsetLateralDistance + Public LRO_LateralOffsetReferent
  lateralOffsetReferent diff --git a/approved/html/EARoot/EA1/EA3/EA35/EA6/EA6607.htm b/approved/html/EARoot/EA1/EA3/EA35/EA6/EA6607.htm index 69c531d7c..f6e2797f0 100644 --- a/approved/html/EARoot/EA1/EA3/EA35/EA6/EA6607.htm +++ b/approved/html/EARoot/EA1/EA3/EA35/EA6/EA6607.htm @@ -107,7 +107,7 @@ - Public <undefined>
  down + Public <undefined>
  up @@ -155,7 +155,7 @@ - Public <undefined>
  up + Public <undefined>
  down diff --git a/approved/html/EARoot/EA1/EA3/EA35/EA8/EA6620.png b/approved/html/EARoot/EA1/EA3/EA35/EA8/EA6620.png index fdfae657b..f5257b12b 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA35/EA8/EA6620.png and b/approved/html/EARoot/EA1/EA3/EA35/EA8/EA6620.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA35/EA8/EA6622.png b/approved/html/EARoot/EA1/EA3/EA35/EA8/EA6622.png index 3f37aa81c..214f52e7e 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA35/EA8/EA6622.png and b/approved/html/EARoot/EA1/EA3/EA35/EA8/EA6622.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA35/EA8/EA6624.png b/approved/html/EARoot/EA1/EA3/EA35/EA8/EA6624.png index cc8aa9fd8..c941e37f2 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA35/EA8/EA6624.png and b/approved/html/EARoot/EA1/EA3/EA35/EA8/EA6624.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA35/EA8/EA6626.png b/approved/html/EARoot/EA1/EA3/EA35/EA8/EA6626.png index af81e81d9..73d32a638 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA35/EA8/EA6626.png and b/approved/html/EARoot/EA1/EA3/EA35/EA8/EA6626.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA35/EA8/EA6628.png b/approved/html/EARoot/EA1/EA3/EA35/EA8/EA6628.png index 7e4d559e2..7a1d64fb9 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA35/EA8/EA6628.png and b/approved/html/EARoot/EA1/EA3/EA35/EA8/EA6628.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA35/EA8/EA6630.png b/approved/html/EARoot/EA1/EA3/EA35/EA8/EA6630.png index 032d574ed..3b642cf9b 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA35/EA8/EA6630.png and b/approved/html/EARoot/EA1/EA3/EA35/EA8/EA6630.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA35/EA8/EA6632.png b/approved/html/EARoot/EA1/EA3/EA35/EA8/EA6632.png index 5233308c1..b057604d8 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA35/EA8/EA6632.png and b/approved/html/EARoot/EA1/EA3/EA35/EA8/EA6632.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA35/EA8/EA6636.png b/approved/html/EARoot/EA1/EA3/EA35/EA8/EA6636.png index 64dfa674e..f4bc49523 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA35/EA8/EA6636.png and b/approved/html/EARoot/EA1/EA3/EA35/EA8/EA6636.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA35/EA8/EA6638.png b/approved/html/EARoot/EA1/EA3/EA35/EA8/EA6638.png index 1ca8d05aa..1a1688144 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA35/EA8/EA6638.png and b/approved/html/EARoot/EA1/EA3/EA35/EA8/EA6638.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA35/EA8/EA6641.htm b/approved/html/EARoot/EA1/EA3/EA35/EA8/EA6641.htm index 31acf6997..f16c3a285 100644 --- a/approved/html/EARoot/EA1/EA3/EA35/EA8/EA6641.htm +++ b/approved/html/EARoot/EA1/EA3/EA35/EA8/EA6641.htm @@ -109,7 +109,7 @@ - Public LR_LinearReferencingMethod
  overridingLRM + Public TC_Type
  value @@ -135,7 +135,7 @@ Range: - Range:0 to 1 + Transient: @@ -157,7 +157,7 @@ - Public TC_Type
  value + Public LR_LinearReferencingMethod
  overridingLRM @@ -183,7 +183,7 @@ Range: - + Range:0 to 1 Transient: diff --git a/approved/html/EARoot/EA1/EA3/EA35/EA8/EA6642.htm b/approved/html/EARoot/EA1/EA3/EA35/EA8/EA6642.htm index 9054721e2..740368e74 100644 --- a/approved/html/EARoot/EA1/EA3/EA35/EA8/EA6642.htm +++ b/approved/html/EARoot/EA1/EA3/EA35/EA8/EA6642.htm @@ -156,7 +156,7 @@ - Public LE_EventLocation
  location + Public ANY
  value @@ -182,7 +182,7 @@ Range: - + Range:0 to 1 Transient: @@ -204,7 +204,7 @@ - Public LE_EventTime
  time + Public LE_EventLocation
  location @@ -230,7 +230,7 @@ Range: - Range:0 to 1 + Transient: @@ -252,7 +252,7 @@ - Public ANY
  value + Public LE_EventTime
  time diff --git a/approved/html/EARoot/EA1/EA3/EA35/EA8/EA6649.htm b/approved/html/EARoot/EA1/EA3/EA35/EA8/EA6649.htm index a8ce2d0a6..267e4d7c5 100644 --- a/approved/html/EARoot/EA1/EA3/EA35/EA8/EA6649.htm +++ b/approved/html/EARoot/EA1/EA3/EA35/EA8/EA6649.htm @@ -203,7 +203,7 @@ - Public LR_LinearReferencingMethod
  overridingtoLRM + Public LR_DistanceExpression
  toPosition @@ -229,7 +229,7 @@ Range: - Range:0 to 1 + Transient: @@ -251,7 +251,7 @@ - Public LR_DistanceExpression
  toPosition + Public LR_LinearReferencingMethod
  overridingtoLRM @@ -277,7 +277,7 @@ Range: - + Range:0 to 1 Transient: diff --git a/approved/html/EARoot/EA1/EA3/EA35/EA8/EA6655.htm b/approved/html/EARoot/EA1/EA3/EA35/EA8/EA6655.htm index 720a1e1a9..1d9766e48 100644 --- a/approved/html/EARoot/EA1/EA3/EA35/EA8/EA6655.htm +++ b/approved/html/EARoot/EA1/EA3/EA35/EA8/EA6655.htm @@ -107,7 +107,7 @@ - Public LR_DistanceExpression
  fromPosition + Public LR_LinearReferencingMethod
  overridingLRM @@ -133,7 +133,7 @@ Range: - + Range:0 to 1 Transient: @@ -155,7 +155,7 @@ - Public LR_LinearReferencingMethod
  overridingLRM + Public LR_DistanceExpression
  fromPosition @@ -181,7 +181,7 @@ Range: - Range:0 to 1 + Transient: diff --git a/approved/html/EARoot/EA1/EA3/EA35/EA9/EA6666.png b/approved/html/EARoot/EA1/EA3/EA35/EA9/EA6666.png index d49245458..98716ee25 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA35/EA9/EA6666.png and b/approved/html/EARoot/EA1/EA3/EA35/EA9/EA6666.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA35/EA9/EA6670.png b/approved/html/EARoot/EA1/EA3/EA35/EA9/EA6670.png index 5a43b40a2..269d2ebab 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA35/EA9/EA6670.png and b/approved/html/EARoot/EA1/EA3/EA35/EA9/EA6670.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA35/EA9/EA6672.png b/approved/html/EARoot/EA1/EA3/EA35/EA9/EA6672.png index e6a383859..4c26002df 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA35/EA9/EA6672.png and b/approved/html/EARoot/EA1/EA3/EA35/EA9/EA6672.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA35/EA9/EA6674.htm b/approved/html/EARoot/EA1/EA3/EA35/EA9/EA6674.htm index 249329a94..392ca21a2 100644 --- a/approved/html/EARoot/EA1/EA3/EA35/EA9/EA6674.htm +++ b/approved/html/EARoot/EA1/EA3/EA35/EA9/EA6674.htm @@ -108,7 +108,7 @@ - Public LR_DistanceExpression
  endFeatureLocation + Public LR_DistanceExpression
  startFeatureLocation @@ -156,7 +156,7 @@ - Public Record
  segmentingAttributeValue + Public LR_DistanceExpression
  endFeatureLocation @@ -204,7 +204,7 @@ - Public LR_DistanceExpression
  startFeatureLocation + Public Record
  segmentingAttributeValue diff --git a/approved/html/EARoot/EA1/EA3/EA36/EA1/EA6688.png b/approved/html/EARoot/EA1/EA3/EA36/EA1/EA6688.png index 20b5b0eb5..e7f53f206 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA36/EA1/EA6688.png and b/approved/html/EARoot/EA1/EA3/EA36/EA1/EA6688.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA36/EA1/EA6690.png b/approved/html/EARoot/EA1/EA3/EA36/EA1/EA6690.png index 81b9d8c89..1975eaa71 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA36/EA1/EA6690.png and b/approved/html/EARoot/EA1/EA3/EA36/EA1/EA6690.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA36/EA1/EA6694.png b/approved/html/EARoot/EA1/EA3/EA36/EA1/EA6694.png index c17fd3a55..6ec222ac5 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA36/EA1/EA6694.png and b/approved/html/EARoot/EA1/EA3/EA36/EA1/EA6694.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA36/EA1/EA6701.htm b/approved/html/EARoot/EA1/EA3/EA36/EA1/EA6701.htm index b5d00f015..c47c19968 100644 --- a/approved/html/EARoot/EA1/EA3/EA36/EA1/EA6701.htm +++ b/approved/html/EARoot/EA1/EA3/EA36/EA1/EA6701.htm @@ -157,7 +157,7 @@ - Public TM_Period
  validPeriod + Public CharacterString
  value @@ -183,7 +183,7 @@ Range: - Range:0 to 1 + Transient: @@ -205,7 +205,7 @@ - Public CharacterString
  value + Public TM_Period
  validPeriod @@ -231,7 +231,7 @@ Range: - + Range:0 to 1 Transient: diff --git a/approved/html/EARoot/EA1/EA3/EA36/EA1/EA6702.htm b/approved/html/EARoot/EA1/EA3/EA36/EA1/EA6702.htm index 22653b7a8..22b702f09 100644 --- a/approved/html/EARoot/EA1/EA3/EA36/EA1/EA6702.htm +++ b/approved/html/EARoot/EA1/EA3/EA36/EA1/EA6702.htm @@ -109,7 +109,7 @@ - Public CharacterString
  definition + Public RS_Identifier
  name @@ -135,7 +135,7 @@ Range: - Range:0 to 1 + Transient: @@ -205,7 +205,7 @@ - Public RS_Identifier
  name + Public CharacterString
  definition @@ -231,7 +231,7 @@ Range: - + Range:0 to 1 Transient: diff --git a/approved/html/EARoot/EA1/EA3/EA37/EA1/EA1/EA1/EA6738.png b/approved/html/EARoot/EA1/EA3/EA37/EA1/EA1/EA1/EA6738.png index 4222c8527..5dbf13ff9 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA37/EA1/EA1/EA1/EA6738.png and b/approved/html/EARoot/EA1/EA3/EA37/EA1/EA1/EA1/EA6738.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA37/EA1/EA1/EA1/EA6740.png b/approved/html/EARoot/EA1/EA3/EA37/EA1/EA1/EA1/EA6740.png index 06359a182..2e7342bf0 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA37/EA1/EA1/EA1/EA6740.png and b/approved/html/EARoot/EA1/EA3/EA37/EA1/EA1/EA1/EA6740.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA37/EA1/EA1/EA1/EA6742.png b/approved/html/EARoot/EA1/EA3/EA37/EA1/EA1/EA1/EA6742.png index bee18b6aa..70f668878 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA37/EA1/EA1/EA1/EA6742.png and b/approved/html/EARoot/EA1/EA3/EA37/EA1/EA1/EA1/EA6742.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA37/EA1/EA1/EA1/EA6746.htm b/approved/html/EARoot/EA1/EA3/EA37/EA1/EA1/EA1/EA6746.htm index fd766650d..32b137b7a 100644 --- a/approved/html/EARoot/EA1/EA3/EA37/EA1/EA1/EA1/EA6746.htm +++ b/approved/html/EARoot/EA1/EA3/EA37/EA1/EA1/EA1/EA6746.htm @@ -112,7 +112,7 @@ - Public NamedValue
  parameter + Public TM_Object
  phenomenonTime @@ -138,7 +138,7 @@ Range: - Range:0 to * + Transient: @@ -154,14 +154,14 @@ - sequenceNumber=7
+ sequenceNumber=3
Notes: - If present, the attributes <i>parameter:NamedValue</i> shall describe an arbitrary event-specific parameter. This might be an environmental parameter, an instrument setting or input, or an event-specific sampling parameter that is not tightly bound to either the feature-of-interest (6.2.2.7) or to the observation procedure (6.2.2.10). To avoid ambiguity, there shall be no more than one parameter with the same name. <br/><br/>NOTE Parameters that are tightly bound to the procedure may be recorded as part of the procedure description. <br/><br/>In some contexts the <i>Observation::procedure</i> (6.2.2.10) is a generic or standard procedure, rather than an event-specific process. In this context, parameters bound to the observation act, such as instrument settings, calibrations or inputs, local position, detection limits, asset identifer, operator, may augment the description of a standard procedure. <br/><br/>EXAMPLE A time sequence of observations of water quality in a well may be made at variable depths within the well. While these may be associated with specimens taken from the well at this depth as the features-of-interest, a more common approach is to identify the well itself as the feature-of-interest, and add a “samplingDepth” parameter to the observation (Figure 3). The sampling depth is of secondary interest compared to the temporal variation of water quality at the site. <br/><br/> + The attribute <i>phenomenonTime:TM_Object</i> shall describe the time that the result (6.2.2.9) applies to the property of the feature-of-interest (6.2.2.7). This is often the time of interaction by a sampling procedure (8.2) or observation procedure (6.2.2.10) with a real-world feature. <br/><br/>NOTE 1 The phenomenon time is the temporal parameter normally used in geospatial analysis of the result. <br/><br/>NOTE 2 If the observedProperty of an observation is ‘occurrence time’ then the result should be the same as the phenomenonTime<br/><br/>
@@ -170,7 +170,7 @@ - Public TM_Object
  phenomenonTime + Public TM_Instant
  resultTime @@ -212,14 +212,14 @@ - sequenceNumber=3
+ sequenceNumber=4
Notes: - The attribute <i>phenomenonTime:TM_Object</i> shall describe the time that the result (6.2.2.9) applies to the property of the feature-of-interest (6.2.2.7). This is often the time of interaction by a sampling procedure (8.2) or observation procedure (6.2.2.10) with a real-world feature. <br/><br/>NOTE 1 The phenomenon time is the temporal parameter normally used in geospatial analysis of the result. <br/><br/>NOTE 2 If the observedProperty of an observation is ‘occurrence time’ then the result should be the same as the phenomenonTime<br/><br/> + The attribute <i>resultTime:TM_Instant</i> shall describe the time when the result became available, typically when the procedure (6.2.2.10) associated with the observation was completed For some observations this is identical to the phenomenonTime. However, there are important cases where they differ. <br/><br/>EXAMPLE 1 Where a measurement is made on a specimen in a laboratory, the phenomenonTime is the time the specimen was retrieved from its host, while the resultTime is the time the laboratory procedure was applied. <br/><br/>EXAMPLE 2 The resultTime also supports disambiguation of repeat measurements made of the same property of a feature using the same procedure. <br/><br/>EXAMPLE 3 Where sensor observation results are post-processed, the resultTime is the post-processing time, while the phenomenonTime is the time of initial interaction with the world. <br/><br/>EXAMPLE 4 Simulations may be used to estimate the values for phenomena in the future or past. The phenomenonTime is the time that the result applies to, while the resultTime is the time that the simulation was executed. <br/><br/>
@@ -228,7 +228,7 @@ - Public DQ_Element
  resultQuality + Public TM_Period
  validTime @@ -254,7 +254,7 @@ Range: - Range:0 to * + Range:0 to 1 Transient: @@ -270,14 +270,14 @@ - sequenceNumber=10
+ sequenceNumber=5
Notes: - If present, the attributes <i>resultQuality:DQ_Element</i> shall describe the quality of the result (6.2.2.9). This instance-specific description complements the description of the observation procedure (6.2.2.10), which provides information concerning the quality of all observations using this procedure. Quality of a result may be assessed following the procedures in ISO 19114:2003.Multiple measures may be provided (ISO/TS 19138:2006). <br/><br/> + If present, the attribute <i>validTime:TM_Period</i> shall describe the time period during which the result is intended to be used. <br/><br/>NOTE This attribute is commonly required in forecasting applications. <br/><br/>
@@ -286,7 +286,7 @@ - Public TM_Instant
  resultTime + Public DQ_Element
  resultQuality @@ -312,7 +312,7 @@ Range: - + Range:0 to * Transient: @@ -328,14 +328,14 @@ - sequenceNumber=4
+ sequenceNumber=10
Notes: - The attribute <i>resultTime:TM_Instant</i> shall describe the time when the result became available, typically when the procedure (6.2.2.10) associated with the observation was completed For some observations this is identical to the phenomenonTime. However, there are important cases where they differ. <br/><br/>EXAMPLE 1 Where a measurement is made on a specimen in a laboratory, the phenomenonTime is the time the specimen was retrieved from its host, while the resultTime is the time the laboratory procedure was applied. <br/><br/>EXAMPLE 2 The resultTime also supports disambiguation of repeat measurements made of the same property of a feature using the same procedure. <br/><br/>EXAMPLE 3 Where sensor observation results are post-processed, the resultTime is the post-processing time, while the phenomenonTime is the time of initial interaction with the world. <br/><br/>EXAMPLE 4 Simulations may be used to estimate the values for phenomena in the future or past. The phenomenonTime is the time that the result applies to, while the resultTime is the time that the simulation was executed. <br/><br/> + If present, the attributes <i>resultQuality:DQ_Element</i> shall describe the quality of the result (6.2.2.9). This instance-specific description complements the description of the observation procedure (6.2.2.10), which provides information concerning the quality of all observations using this procedure. Quality of a result may be assessed following the procedures in ISO 19114:2003.Multiple measures may be provided (ISO/TS 19138:2006). <br/><br/>
@@ -344,7 +344,7 @@ - Public TM_Period
  validTime + Public NamedValue
  parameter @@ -370,7 +370,7 @@ Range: - Range:0 to 1 + Range:0 to * Transient: @@ -386,14 +386,14 @@ - sequenceNumber=5
+ sequenceNumber=7
Notes: - If present, the attribute <i>validTime:TM_Period</i> shall describe the time period during which the result is intended to be used. <br/><br/>NOTE This attribute is commonly required in forecasting applications. <br/><br/> + If present, the attributes <i>parameter:NamedValue</i> shall describe an arbitrary event-specific parameter. This might be an environmental parameter, an instrument setting or input, or an event-specific sampling parameter that is not tightly bound to either the feature-of-interest (6.2.2.7) or to the observation procedure (6.2.2.10). To avoid ambiguity, there shall be no more than one parameter with the same name. <br/><br/>NOTE Parameters that are tightly bound to the procedure may be recorded as part of the procedure description. <br/><br/>In some contexts the <i>Observation::procedure</i> (6.2.2.10) is a generic or standard procedure, rather than an event-specific process. In this context, parameters bound to the observation act, such as instrument settings, calibrations or inputs, local position, detection limits, asset identifer, operator, may augment the description of a standard procedure. <br/><br/>EXAMPLE A time sequence of observations of water quality in a well may be made at variable depths within the well. While these may be associated with specimens taken from the well at this depth as the features-of-interest, a more common approach is to identify the well itself as the feature-of-interest, and add a “samplingDepth” parameter to the observation (Figure 3). The sampling depth is of secondary interest compared to the temporal variation of water quality at the site. <br/><br/>
diff --git a/approved/html/EARoot/EA1/EA3/EA37/EA1/EA1/EA6718.png b/approved/html/EARoot/EA1/EA3/EA37/EA1/EA1/EA6718.png index 837681b64..32c0d14c0 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA37/EA1/EA1/EA6718.png and b/approved/html/EARoot/EA1/EA3/EA37/EA1/EA1/EA6718.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA37/EA1/EA2/EA1/EA6812.png b/approved/html/EARoot/EA1/EA3/EA37/EA1/EA2/EA1/EA6812.png index 182827eb7..7fab0c614 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA37/EA1/EA2/EA1/EA6812.png and b/approved/html/EARoot/EA1/EA3/EA37/EA1/EA2/EA1/EA6812.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA37/EA1/EA2/EA1/EA6816.png b/approved/html/EARoot/EA1/EA3/EA37/EA1/EA2/EA1/EA6816.png index eedea5f5a..a26aa355a 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA37/EA1/EA2/EA1/EA6816.png and b/approved/html/EARoot/EA1/EA3/EA37/EA1/EA2/EA1/EA6816.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA37/EA1/EA2/EA1/EA6821.htm b/approved/html/EARoot/EA1/EA3/EA37/EA1/EA2/EA1/EA6821.htm index 10ec1fab5..33a75a6bb 100644 --- a/approved/html/EARoot/EA1/EA3/EA37/EA1/EA2/EA1/EA6821.htm +++ b/approved/html/EARoot/EA1/EA3/EA37/EA1/EA2/EA1/EA6821.htm @@ -112,7 +112,7 @@ - Public LI_Lineage
  lineage + Public NamedValue
  parameter @@ -138,7 +138,7 @@ Range: - Range:0 to 1 + Range:0 to * Transient: @@ -154,14 +154,14 @@ - sequenceNumber=2
+ sequenceNumber=5
Notes: - If present, the attribute lineage:LI_Lineage shall describe the history and provenance of the SF_SamplingFeature. This might include information relating to the handling of the specimen, or details of the survey procedure of a spatial sampling feature.  <br/><br/> + If present, the attributes <i>parameter:NamedValue</i> shall describe an arbitrary parameter associated with the SF_SamplingFeature. This might be a parameter that qualifies the interaction with the sampled feature, or an environmental parameter associated with the sampling process. <br/><br/>
@@ -170,7 +170,7 @@ - Public NamedValue
  parameter + Public LI_Lineage
  lineage @@ -196,7 +196,7 @@ Range: - Range:0 to * + Range:0 to 1 Transient: @@ -212,14 +212,14 @@ - sequenceNumber=5
+ sequenceNumber=2
Notes: - If present, the attributes <i>parameter:NamedValue</i> shall describe an arbitrary parameter associated with the SF_SamplingFeature. This might be a parameter that qualifies the interaction with the sampled feature, or an environmental parameter associated with the sampling process. <br/><br/> + If present, the attribute lineage:LI_Lineage shall describe the history and provenance of the SF_SamplingFeature. This might include information relating to the handling of the specimen, or details of the survey procedure of a spatial sampling feature.  <br/><br/>
diff --git a/approved/html/EARoot/EA1/EA3/EA37/EA1/EA2/EA6793.png b/approved/html/EARoot/EA1/EA3/EA37/EA1/EA2/EA6793.png index 6c02bfa41..db8265ce3 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA37/EA1/EA2/EA6793.png and b/approved/html/EARoot/EA1/EA3/EA37/EA1/EA2/EA6793.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA37/EA1/EA2/EA6801.png b/approved/html/EARoot/EA1/EA3/EA37/EA1/EA2/EA6801.png index 692ffee8c..0621859e6 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA37/EA1/EA2/EA6801.png and b/approved/html/EARoot/EA1/EA3/EA37/EA1/EA2/EA6801.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA37/EA1/EA2/EA7/EA6856.png b/approved/html/EARoot/EA1/EA3/EA37/EA1/EA2/EA7/EA6856.png index 8a4f1725e..95d8dce86 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA37/EA1/EA2/EA7/EA6856.png and b/approved/html/EARoot/EA1/EA3/EA37/EA1/EA2/EA7/EA6856.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA37/EA1/EA2/EA7/EA6858.png b/approved/html/EARoot/EA1/EA3/EA37/EA1/EA2/EA7/EA6858.png index fdcbd8d8c..30f0f6a9f 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA37/EA1/EA2/EA7/EA6858.png and b/approved/html/EARoot/EA1/EA3/EA37/EA1/EA2/EA7/EA6858.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA37/EA1/EA2/EA7/EA6860.png b/approved/html/EARoot/EA1/EA3/EA37/EA1/EA2/EA7/EA6860.png index d2143048e..b729da388 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA37/EA1/EA2/EA7/EA6860.png and b/approved/html/EARoot/EA1/EA3/EA37/EA1/EA2/EA7/EA6860.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA37/EA1/EA2/EA7/EA6863.htm b/approved/html/EARoot/EA1/EA3/EA37/EA1/EA2/EA7/EA6863.htm index e4e1c5f82..b767c72d2 100644 --- a/approved/html/EARoot/EA1/EA3/EA37/EA1/EA2/EA7/EA6863.htm +++ b/approved/html/EARoot/EA1/EA3/EA37/EA1/EA2/EA7/EA6863.htm @@ -107,7 +107,7 @@ - Public CI_ResponsibleParty
  processOperator + Public TM_Object
  time @@ -133,7 +133,7 @@ Range: - Range:0 to 1 + Transient: @@ -149,14 +149,14 @@ - sequenceNumber=2
+ sequenceNumber=1
Notes: - If present, the attribute <i>processOperator:CI_ResponsibleParty </i>shall describe the operator of the process involved in the preparation step. <br/><br/> + The attribute <i>time:TM_Object </i>shall describe the time that the OM_Process was applied to the SP_Specimen. It supports ordering of preparation steps.<br/>
@@ -165,7 +165,7 @@ - Public TM_Object
  time + Public CI_ResponsibleParty
  processOperator @@ -191,7 +191,7 @@ Range: - + Range:0 to 1 Transient: @@ -207,14 +207,14 @@ - sequenceNumber=1
+ sequenceNumber=2
Notes: - The attribute <i>time:TM_Object </i>shall describe the time that the OM_Process was applied to the SP_Specimen. It supports ordering of preparation steps.<br/> + If present, the attribute <i>processOperator:CI_ResponsibleParty </i>shall describe the operator of the process involved in the preparation step. <br/><br/>
diff --git a/approved/html/EARoot/EA1/EA3/EA37/EA1/EA2/EA7/EA6865.htm b/approved/html/EARoot/EA1/EA3/EA37/EA1/EA2/EA7/EA6865.htm index 4294a6efa..5e1de6f77 100644 --- a/approved/html/EARoot/EA1/EA3/EA37/EA1/EA2/EA7/EA6865.htm +++ b/approved/html/EARoot/EA1/EA3/EA37/EA1/EA2/EA7/EA6865.htm @@ -111,7 +111,7 @@ - Public Location
  currentLocation + Public GenericName
  materialClass @@ -137,7 +137,7 @@ Range: - Range:0 to 1 + Transient: @@ -153,14 +153,14 @@ - sequenceNumber=7
+ sequenceNumber=1
Notes: - If present, the attribute <i>currentLocation:Location </i>shall describe the location of a physical specimen. This may be a storage location, such as a shelf in a warehouse or a drawer in a museum. <br/>NOTE If a specimen no longer exists, for example it was destroyed in connection with an observation act, then the currentLocation should be omitted or carry a suitable null indicator. <br/><br/> + The attribute <i>materialClass:GenericName </i>shall provide a basic classification of the material type of the specimen. <br/>EXAMPLE soil, water, rock, aqueous, liquid, tissue, vegetation, food. <br/><br/>
@@ -169,7 +169,7 @@ - Public GenericName
  materialClass + Public TM_Object
  samplingTime @@ -211,14 +211,14 @@ - sequenceNumber=1
+ sequenceNumber=2
Notes: - The attribute <i>materialClass:GenericName </i>shall provide a basic classification of the material type of the specimen. <br/>EXAMPLE soil, water, rock, aqueous, liquid, tissue, vegetation, food. <br/><br/> + The attribute <i>samplingTime:TM_Object </i>shall record when the specimen was retrieved from the sampled feature.<br/><br/>
@@ -343,7 +343,7 @@ - Public TM_Object
  samplingTime + Public Location
  currentLocation @@ -369,7 +369,7 @@ Range: - + Range:0 to 1 Transient: @@ -385,14 +385,14 @@ - sequenceNumber=2
+ sequenceNumber=7
Notes: - The attribute <i>samplingTime:TM_Object </i>shall record when the specimen was retrieved from the sampled feature.<br/><br/> + If present, the attribute <i>currentLocation:Location </i>shall describe the location of a physical specimen. This may be a storage location, such as a shelf in a warehouse or a drawer in a museum. <br/>NOTE If a specimen no longer exists, for example it was destroyed in connection with an observation act, then the currentLocation should be omitted or carry a suitable null indicator. <br/><br/>
@@ -401,7 +401,7 @@ - Public Measure
  size + Public GenericName
  specimenType @@ -419,7 +419,7 @@ Stereotype: - <<estimatedProperty>> + Ordered: @@ -443,14 +443,14 @@ - sequenceNumber=6
+ sequenceNumber=8
Notes: - If present, the attribute <i>size:Measure </i>shall describe a physical extent of the specimen. This may be length, mass, volume, etc as appropriate for the specimen instance and its material class. <br/><br/> + If present, the attribute <i>specimenType:GenericName </i>shall describe the basic form of the specimen. <br/>EXAMPLE polished section; core; pulp; solution. <br/><br/>
@@ -459,7 +459,7 @@ - Public GenericName
  specimenType + Public Measure
  size @@ -477,7 +477,7 @@ Stereotype: - + <<estimatedProperty>> Ordered: @@ -501,14 +501,14 @@ - sequenceNumber=8
+ sequenceNumber=6
Notes: - If present, the attribute <i>specimenType:GenericName </i>shall describe the basic form of the specimen. <br/>EXAMPLE polished section; core; pulp; solution. <br/><br/> + If present, the attribute <i>size:Measure </i>shall describe a physical extent of the specimen. This may be length, mass, volume, etc as appropriate for the specimen instance and its material class. <br/><br/>
diff --git a/approved/html/EARoot/EA1/EA3/EA37/EA1/EA5/EA6911.png b/approved/html/EARoot/EA1/EA3/EA37/EA1/EA5/EA6911.png index faba90d52..13a2d21a9 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA37/EA1/EA5/EA6911.png and b/approved/html/EARoot/EA1/EA3/EA37/EA1/EA5/EA6911.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA38/EA1/EA2/EA1/EA7029.png b/approved/html/EARoot/EA1/EA3/EA38/EA1/EA2/EA1/EA7029.png index 912402086..b6583852a 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA38/EA1/EA2/EA1/EA7029.png and b/approved/html/EARoot/EA1/EA3/EA38/EA1/EA2/EA1/EA7029.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA38/EA1/EA2/EA1/EA7031.htm b/approved/html/EARoot/EA1/EA3/EA38/EA1/EA2/EA1/EA7031.htm index adc7f7f3f..b694af46e 100644 --- a/approved/html/EARoot/EA1/EA3/EA38/EA1/EA2/EA1/EA7031.htm +++ b/approved/html/EARoot/EA1/EA3/EA38/EA1/EA2/EA1/EA7031.htm @@ -108,7 +108,7 @@ - Public CharacterString
  explanation + Public Boolean
  pass @@ -134,7 +134,7 @@ Range: - Range:0 to 1 + Transient: @@ -157,7 +157,7 @@ Notes: - explanation of the meaning of conformance for this result<br/> + indication of the conformance result where 0 = fail and 1 = pass<br/> @@ -166,7 +166,7 @@ - Public Boolean
  pass + Public CI_Citation
  specification @@ -215,7 +215,7 @@ Notes: - indication of the conformance result where 0 = fail and 1 = pass<br/> + citation of data product specification or user requirement against which data is being evaluated<br/> @@ -224,7 +224,7 @@ - Public CI_Citation
  specification + Public CharacterString
  explanation @@ -250,7 +250,7 @@ Range: - + Range:0 to 1 Transient: @@ -273,7 +273,7 @@ Notes: - citation of data product specification or user requirement against which data is being evaluated<br/> + explanation of the meaning of conformance for this result<br/> diff --git a/approved/html/EARoot/EA1/EA3/EA38/EA1/EA2/EA1/EA7033.htm b/approved/html/EARoot/EA1/EA3/EA38/EA1/EA2/EA1/EA7033.htm index 8cee683b9..a0ea575d1 100644 --- a/approved/html/EARoot/EA1/EA3/EA38/EA1/EA2/EA1/EA7033.htm +++ b/approved/html/EARoot/EA1/EA3/EA38/EA1/EA2/EA1/EA7033.htm @@ -166,7 +166,7 @@ - Public RecordType
  valueRecordType + Public UnitOfMeasure
  valueUnit @@ -215,7 +215,7 @@ Notes: - value type for reporting a data quality result, depends of the implementation<br/> + value unit for reporting a data quality result<br/> @@ -224,7 +224,7 @@ - Public UnitOfMeasure
  valueUnit + Public RecordType
  valueRecordType @@ -273,7 +273,7 @@ Notes: - value unit for reporting a data quality result<br/> + value type for reporting a data quality result, depends of the implementation<br/> diff --git a/approved/html/EARoot/EA1/EA3/EA38/EA1/EA2/EA3/EA7045.png b/approved/html/EARoot/EA1/EA3/EA38/EA1/EA2/EA3/EA7045.png index 3cbf656c4..df9b2506c 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA38/EA1/EA2/EA3/EA7045.png and b/approved/html/EARoot/EA1/EA3/EA38/EA1/EA2/EA3/EA7045.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA38/EA1/EA2/EA3/EA7047.png b/approved/html/EARoot/EA1/EA3/EA38/EA1/EA2/EA3/EA7047.png index 15fbfbd37..dac560913 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA38/EA1/EA2/EA3/EA7047.png and b/approved/html/EARoot/EA1/EA3/EA38/EA1/EA2/EA3/EA7047.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA38/EA1/EA2/EA3/EA7051.htm b/approved/html/EARoot/EA1/EA3/EA38/EA1/EA2/EA3/EA7051.htm index 34c536519..c2d1d3474 100644 --- a/approved/html/EARoot/EA1/EA3/EA38/EA1/EA2/EA3/EA7051.htm +++ b/approved/html/EARoot/EA1/EA3/EA38/EA1/EA2/EA3/EA7051.htm @@ -225,7 +225,7 @@ - Public DQ_EvaluationMethodTypeCode
  evaluationMethodType + Public CI_Citation
  evaluationProcedure @@ -274,7 +274,7 @@ Notes: - type of method used to evaluate quality of the data<br/> + reference to the procedure information <br/> @@ -283,7 +283,7 @@ - Public CI_Citation
  evaluationProcedure + Public CI_Citation
  referenceDoc @@ -309,7 +309,7 @@ Range: - Range:0 to 1 + Range:0 to * Transient: @@ -332,7 +332,7 @@ Notes: - reference to the procedure information <br/> + Information on documents which are referenced in developing and applying a data quality evaluation method<br/> @@ -341,7 +341,7 @@ - Public CI_Citation
  referenceDoc + Public DQ_EvaluationMethodTypeCode
  evaluationMethodType @@ -367,7 +367,7 @@ Range: - Range:0 to * + Range:0 to 1 Transient: @@ -390,7 +390,7 @@ Notes: - Information on documents which are referenced in developing and applying a data quality evaluation method<br/> + type of method used to evaluate quality of the data<br/> diff --git a/approved/html/EARoot/EA1/EA3/EA38/EA1/EA2/EA3/EA7052.htm b/approved/html/EARoot/EA1/EA3/EA38/EA1/EA2/EA3/EA7052.htm index ec85e4181..b98e984b5 100644 --- a/approved/html/EARoot/EA1/EA3/EA38/EA1/EA2/EA3/EA7052.htm +++ b/approved/html/EARoot/EA1/EA3/EA38/EA1/EA2/EA3/EA7052.htm @@ -108,7 +108,7 @@ - Public <undefined>
  directExternal + Public <undefined>
  directInternal @@ -157,7 +157,7 @@ Notes: - method of evaluating the quality of a dataset based on inspection of items within the dataset, where reference data external to the dataset being evaluated is required<br/> + method of evaluating the quality of a dataset based on inspection of items within the dataset, where all data required is internal to the dataset being evaluated<br/> @@ -166,7 +166,7 @@ - Public <undefined>
  directInternal + Public <undefined>
  directExternal @@ -215,7 +215,7 @@ Notes: - method of evaluating the quality of a dataset based on inspection of items within the dataset, where all data required is internal to the dataset being evaluated<br/> + method of evaluating the quality of a dataset based on inspection of items within the dataset, where reference data external to the dataset being evaluated is required<br/> diff --git a/approved/html/EARoot/EA1/EA3/EA38/EA1/EA2/EA3/EA7055.htm b/approved/html/EARoot/EA1/EA3/EA38/EA1/EA2/EA3/EA7055.htm index ede57c3dc..8498309ca 100644 --- a/approved/html/EARoot/EA1/EA3/EA38/EA1/EA2/EA3/EA7055.htm +++ b/approved/html/EARoot/EA1/EA3/EA38/EA1/EA2/EA3/EA7055.htm @@ -108,7 +108,7 @@ - Public CharacterString
  lotDescription + Public CharacterString
  samplingScheme @@ -157,7 +157,7 @@ Notes: - information of how lots are defined<br/> + information of the type of sampling scheme and description of the sampling procedure<br/> @@ -166,7 +166,7 @@ - Public CharacterString
  samplingRatio + Public CharacterString
  lotDescription @@ -215,7 +215,7 @@ Notes: - information on how many samples on average are extracted for inspection from each lot of population<br/> + information of how lots are defined<br/> @@ -224,7 +224,7 @@ - Public CharacterString
  samplingScheme + Public CharacterString
  samplingRatio @@ -273,7 +273,7 @@ Notes: - information of the type of sampling scheme and description of the sampling procedure<br/> + information on how many samples on average are extracted for inspection from each lot of population<br/> diff --git a/approved/html/EARoot/EA1/EA3/EA38/EA1/EA2/EA6990.png b/approved/html/EARoot/EA1/EA3/EA38/EA1/EA2/EA6990.png index 04b9677dc..4dc421a0b 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA38/EA1/EA2/EA6990.png and b/approved/html/EARoot/EA1/EA3/EA38/EA1/EA2/EA6990.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA38/EA1/EA2/EA6992.png b/approved/html/EARoot/EA1/EA3/EA38/EA1/EA2/EA6992.png index bbf79d470..b928d24f1 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA38/EA1/EA2/EA6992.png and b/approved/html/EARoot/EA1/EA3/EA38/EA1/EA2/EA6992.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA38/EA1/EA2/EA7012.htm b/approved/html/EARoot/EA1/EA3/EA38/EA1/EA2/EA7012.htm index 63cdda05c..a25a1ccb0 100644 --- a/approved/html/EARoot/EA1/EA3/EA38/EA1/EA2/EA7012.htm +++ b/approved/html/EARoot/EA1/EA3/EA38/EA1/EA2/EA7012.htm @@ -110,7 +110,7 @@ - Public CharacterString
  measureDescription + Public MD_Identifier
  measureIdentification @@ -159,7 +159,7 @@ Notes: - description of the measure<br/> + Identifier of the measure, value uniquely identifying the measure within a namespace<br/> @@ -168,7 +168,7 @@ - Public MD_Identifier
  measureIdentification + Public CharacterString
  nameOfMeasure @@ -194,7 +194,7 @@ Range: - Range:0 to 1 + Range:0 to * Transient: @@ -217,7 +217,7 @@ Notes: - Identifier of the measure, value uniquely identifying the measure within a namespace<br/> + name of the test applied to the data<br/> @@ -226,7 +226,7 @@ - Public CharacterString
  nameOfMeasure + Public CharacterString
  measureDescription @@ -252,7 +252,7 @@ Range: - Range:0 to * + Range:0 to 1 Transient: @@ -275,7 +275,7 @@ Notes: - name of the test applied to the data<br/> + description of the measure<br/> diff --git a/approved/html/EARoot/EA1/EA3/EA38/EA1/EA2/EA7017.htm b/approved/html/EARoot/EA1/EA3/EA38/EA1/EA2/EA7017.htm index 95d57b557..9a71b1a4f 100644 --- a/approved/html/EARoot/EA1/EA3/EA38/EA1/EA2/EA7017.htm +++ b/approved/html/EARoot/EA1/EA3/EA38/EA1/EA2/EA7017.htm @@ -110,7 +110,7 @@ - Public CharacterString
  abstract + Public CI_Citation
  reportReference @@ -159,7 +159,7 @@ Notes: - abstract for the associated standalone quality report<br/> + reference to the associated standalone quality report<br/> @@ -168,7 +168,7 @@ - Public CI_Citation
  reportReference + Public CharacterString
  abstract @@ -217,7 +217,7 @@ Notes: - reference to the associated standalone quality report<br/> + abstract for the associated standalone quality report<br/> diff --git a/approved/html/EARoot/EA1/EA3/EA38/EA1/EA3/EA7057.png b/approved/html/EARoot/EA1/EA3/EA38/EA1/EA3/EA7057.png index 731d82645..93d3ef230 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA38/EA1/EA3/EA7057.png and b/approved/html/EARoot/EA1/EA3/EA38/EA1/EA3/EA7057.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA38/EA1/EA3/EA7061.png b/approved/html/EARoot/EA1/EA3/EA38/EA1/EA3/EA7061.png index a9b82dfe9..55ee31cca 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA38/EA1/EA3/EA7061.png and b/approved/html/EARoot/EA1/EA3/EA38/EA1/EA3/EA7061.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA38/EA1/EA3/EA7063.htm b/approved/html/EARoot/EA1/EA3/EA38/EA1/EA3/EA7063.htm index 10c0d0443..fc87ffb9e 100644 --- a/approved/html/EARoot/EA1/EA3/EA38/EA1/EA3/EA7063.htm +++ b/approved/html/EARoot/EA1/EA3/EA38/EA1/EA3/EA7063.htm @@ -111,7 +111,7 @@ - Public CharacterString
  definition + Public CharacterString
  name @@ -160,7 +160,7 @@ Notes: - definition of the data quality basic measure<br/> + name of the data quality basic measure applied to the data<br/> @@ -169,7 +169,7 @@ - Public DQM_Description
  example + Public CharacterString
  definition @@ -195,7 +195,7 @@ Range: - Range:0 to 1 + Transient: @@ -218,7 +218,7 @@ Notes: - illustration of the use of a data quality measure<br/> + definition of the data quality basic measure<br/> @@ -227,7 +227,7 @@ - Public CharacterString
  name + Public DQM_Description
  example @@ -253,7 +253,7 @@ Range: - + Range:0 to 1 Transient: @@ -276,7 +276,7 @@ Notes: - name of the data quality basic measure applied to the data<br/> + illustration of the use of a data quality measure<br/> diff --git a/approved/html/EARoot/EA1/EA3/EA38/EA1/EA3/EA7064.htm b/approved/html/EARoot/EA1/EA3/EA38/EA1/EA3/EA7064.htm index 55325e545..340d34fc8 100644 --- a/approved/html/EARoot/EA1/EA3/EA38/EA1/EA3/EA7064.htm +++ b/approved/html/EARoot/EA1/EA3/EA38/EA1/EA3/EA7064.htm @@ -107,7 +107,7 @@ - Public MD_BrowseGraphic
  extendedDescription + Public CharacterString
  textDescription @@ -133,7 +133,7 @@ Range: - Range:0 to 1 + Transient: @@ -156,7 +156,7 @@ Notes: - illustration<br/> + text description<br/> @@ -165,7 +165,7 @@ - Public CharacterString
  textDescription + Public MD_BrowseGraphic
  extendedDescription @@ -191,7 +191,7 @@ Range: - + Range:0 to 1 Transient: @@ -214,7 +214,7 @@ Notes: - text description<br/> + illustration<br/> diff --git a/approved/html/EARoot/EA1/EA3/EA38/EA1/EA3/EA7065.htm b/approved/html/EARoot/EA1/EA3/EA38/EA1/EA3/EA7065.htm index 5df37ec2c..1b0d1c204 100644 --- a/approved/html/EARoot/EA1/EA3/EA38/EA1/EA3/EA7065.htm +++ b/approved/html/EARoot/EA1/EA3/EA38/EA1/EA3/EA7065.htm @@ -110,7 +110,7 @@ - Public CharacterString
  alias + Public MD_Identifier
  measureIdentifier @@ -136,7 +136,7 @@ Range: - Range:0 to * + Transient: @@ -159,7 +159,7 @@ Notes: - another recognized name, an abbreviation or a short name for the same data quality measure<br/> + value uniquely identifying the measure within a namespace<br/> @@ -168,7 +168,7 @@ - Public CharacterString
  definition + Public CharacterString
  name @@ -217,7 +217,7 @@ Notes: - definition of the fundamental concept for the data quality measure<br/> + name of the data quality measure applied to the data<br/> @@ -226,7 +226,7 @@ - Public DQM_Description
  description + Public CharacterString
  alias @@ -252,7 +252,7 @@ Range: - Range:0 to 1 + Range:0 to * Transient: @@ -275,7 +275,7 @@ Notes: - description of the data quality measure, including all formulae and/or illustrations needed to establish the result of applying the measure<br/> + another recognized name, an abbreviation or a short name for the same data quality measure<br/> @@ -352,7 +352,7 @@ - Public DQM_Description
  example + Public CharacterString
  definition @@ -378,7 +378,7 @@ Range: - Range:0 to * + Transient: @@ -401,7 +401,7 @@ Notes: - illustration of the use of a data quality measure<br/> + definition of the fundamental concept for the data quality measure<br/> @@ -410,7 +410,7 @@ - Public MD_Identifier
  measureIdentifier + Public DQM_Description
  description @@ -436,7 +436,7 @@ Range: - + Range:0 to 1 Transient: @@ -459,7 +459,7 @@ Notes: - value uniquely identifying the measure within a namespace<br/> + description of the data quality measure, including all formulae and/or illustrations needed to establish the result of applying the measure<br/> @@ -468,7 +468,7 @@ - Public CharacterString
  name + Public TypeName
  valueType @@ -517,7 +517,7 @@ Notes: - name of the data quality measure applied to the data<br/> + value type for reporting a data quality result (shall be one of the data types defined in ISO/TS 19103:2005)<br/> @@ -584,7 +584,7 @@ - Public TypeName
  valueType + Public DQM_Description
  example @@ -610,7 +610,7 @@ Range: - + Range:0 to * Transient: @@ -633,7 +633,7 @@ Notes: - value type for reporting a data quality result (shall be one of the data types defined in ISO/TS 19103:2005)<br/> + illustration of the use of a data quality measure<br/> diff --git a/approved/html/EARoot/EA1/EA3/EA38/EA1/EA3/EA7067.htm b/approved/html/EARoot/EA1/EA3/EA38/EA1/EA3/EA7067.htm index 066012612..95fbba304 100644 --- a/approved/html/EARoot/EA1/EA3/EA38/EA1/EA3/EA7067.htm +++ b/approved/html/EARoot/EA1/EA3/EA38/EA1/EA3/EA7067.htm @@ -111,7 +111,7 @@ - Public CharacterString
  definition + Public CharacterString
  name @@ -160,7 +160,7 @@ Notes: - definition of the data quality parameter<br/> + name of the data quality parameter<br/> @@ -169,7 +169,7 @@ - Public DQM_Description
  description + Public CharacterString
  definition @@ -195,7 +195,7 @@ Range: - Range:0 to 1 + Transient: @@ -218,7 +218,7 @@ Notes: - description of the data quality parameter<br/> + definition of the data quality parameter<br/> @@ -227,7 +227,7 @@ - Public CharacterString
  name + Public DQM_Description
  description @@ -253,7 +253,7 @@ Range: - + Range:0 to 1 Transient: @@ -276,7 +276,7 @@ Notes: - name of the data quality parameter<br/> + description of the data quality parameter<br/> @@ -285,7 +285,7 @@ - Public DQM_ValueStructure
  valueStructure + Public TypeName
  valueType @@ -311,7 +311,7 @@ Range: - Range:0 to 1 + Transient: @@ -334,7 +334,7 @@ Notes: - structure of the data quality parameter<br/> + value type of the data quality parameter (shall be one of the data types defined in ISO/TS 19103:2005)<br/> @@ -343,7 +343,7 @@ - Public TypeName
  valueType + Public DQM_ValueStructure
  valueStructure @@ -369,7 +369,7 @@ Range: - + Range:0 to 1 Transient: @@ -392,7 +392,7 @@ Notes: - value type of the data quality parameter (shall be one of the data types defined in ISO/TS 19103:2005)<br/> + structure of the data quality parameter<br/> diff --git a/approved/html/EARoot/EA1/EA3/EA38/EA1/EA3/EA7072.htm b/approved/html/EARoot/EA1/EA3/EA38/EA1/EA3/EA7072.htm index d17051a0a..530055f11 100644 --- a/approved/html/EARoot/EA1/EA3/EA38/EA1/EA3/EA7072.htm +++ b/approved/html/EARoot/EA1/EA3/EA38/EA1/EA3/EA7072.htm @@ -164,7 +164,7 @@ - Public
  coverage + Public
  set @@ -213,7 +213,7 @@ Notes: - feature that acts as a function to return values from its range for any direct position within its spatial, temporal or spatiotemporal domain (ISO 19123:2005)<br/> + unordered collection of related items (objects or values) with no repetition (ISO 19107:2003)<br/> @@ -222,7 +222,7 @@ - Public
  matrix + Public
  sequence @@ -271,7 +271,7 @@ Notes: - rectangular array of numbers (ISO/TS 19129:2009)<br/> + finite, ordered collection of related items (objects or values) that may be repeated (ISO 19107:2003)<br/> @@ -280,7 +280,7 @@ - Public
  sequence + Public
  table @@ -329,7 +329,7 @@ Notes: - finite, ordered collection of related items (objects or values) that may be repeated (ISO 19107:2003)<br/> + an arrangement of data in which each item may be identified by means of arguments or keys (ISO/IEC 2382-4:1999)<br/> @@ -338,7 +338,7 @@ - Public
  set + Public
  matrix @@ -387,7 +387,7 @@ Notes: - unordered collection of related items (objects or values) with no repetition (ISO 19107:2003)<br/> + rectangular array of numbers (ISO/TS 19129:2009)<br/> @@ -396,7 +396,7 @@ - Public
  table + Public
  coverage @@ -445,7 +445,7 @@ Notes: - an arrangement of data in which each item may be identified by means of arguments or keys (ISO/IEC 2382-4:1999)<br/> + feature that acts as a function to return values from its range for any direct position within its spatial, temporal or spatiotemporal domain (ISO 19123:2005)<br/> diff --git a/approved/html/EARoot/EA1/EA3/EA4/EA1/EA712.png b/approved/html/EARoot/EA1/EA3/EA4/EA1/EA712.png index ff68333cc..1eca61037 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA4/EA1/EA712.png and b/approved/html/EARoot/EA1/EA3/EA4/EA1/EA712.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA4/EA1/EA714.htm b/approved/html/EARoot/EA1/EA3/EA4/EA1/EA714.htm index 3ea366826..b63604fc3 100644 --- a/approved/html/EARoot/EA1/EA3/EA4/EA1/EA714.htm +++ b/approved/html/EARoot/EA1/EA3/EA4/EA1/EA714.htm @@ -107,7 +107,7 @@ - Public BinaryData
  binary + Public CharacterString
  string @@ -155,7 +155,7 @@ - Public CharacterString
  string + Public BinaryData
  binary diff --git a/approved/html/EARoot/EA1/EA3/EA4/EA1/EA716.htm b/approved/html/EARoot/EA1/EA3/EA4/EA1/EA716.htm index 19d4111c7..123a4d089 100644 --- a/approved/html/EARoot/EA1/EA3/EA4/EA1/EA716.htm +++ b/approved/html/EARoot/EA1/EA3/EA4/EA1/EA716.htm @@ -166,7 +166,26 @@ Public
- asSequence():Sequence<Number> + encode( repType: CharacterString, + + + + + + + + + + + + + + + + + +
+):GPL_CoordinateRepresentation @@ -252,33 +271,14 @@ Public
- encode( repType: CharacterString, - - - - - - - - - - - - - - - - - -
-):GPL_CoordinateRepresentation + GM_Point():GM_Point
Details:
- Sequential + sequential @@ -295,7 +295,7 @@ @@ -319,14 +319,14 @@ @@ -216,7 +216,7 @@ Notes:
Public
- GM_Point():GM_Point + GM_Position():GM_Position
Public
- GM_Position():GM_Position + asSequence():Sequence<Number>
Details:
- sequential + Sequential diff --git a/approved/html/EARoot/EA1/EA3/EA5/EA3/EA794.png b/approved/html/EARoot/EA1/EA3/EA5/EA3/EA794.png index 3df0028aa..29e85cef2 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA5/EA3/EA794.png and b/approved/html/EARoot/EA1/EA3/EA5/EA3/EA794.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA5/EA3/EA802.htm b/approved/html/EARoot/EA1/EA3/EA5/EA3/EA802.htm index cbd71ccee..055b4eaee 100644 --- a/approved/html/EARoot/EA1/EA3/EA5/EA3/EA802.htm +++ b/approved/html/EARoot/EA1/EA3/EA5/EA3/EA802.htm @@ -107,7 +107,7 @@ @@ -155,7 +155,7 @@ diff --git a/approved/html/EARoot/EA1/EA3/EA6/EA1/EA1/EA1033.htm b/approved/html/EARoot/EA1/EA3/EA6/EA1/EA1/EA1033.htm index 90f52f078..61bd0a8ce 100644 --- a/approved/html/EARoot/EA1/EA3/EA6/EA1/EA1/EA1033.htm +++ b/approved/html/EARoot/EA1/EA3/EA6/EA1/EA1/EA1033.htm @@ -110,7 +110,7 @@ @@ -158,7 +158,7 @@ diff --git a/approved/html/EARoot/EA1/EA3/EA6/EA1/EA1/EA1034.htm b/approved/html/EARoot/EA1/EA3/EA6/EA1/EA1/EA1034.htm index 71e04b332..77d81de50 100644 --- a/approved/html/EARoot/EA1/EA3/EA6/EA1/EA1/EA1034.htm +++ b/approved/html/EARoot/EA1/EA3/EA6/EA1/EA1/EA1034.htm @@ -158,7 +158,7 @@ @@ -206,7 +206,7 @@ diff --git a/approved/html/EARoot/EA1/EA3/EA6/EA1/EA1/EA1036.htm b/approved/html/EARoot/EA1/EA3/EA6/EA1/EA1/EA1036.htm index c01ab8031..e818e268f 100644 --- a/approved/html/EARoot/EA1/EA3/EA6/EA1/EA1/EA1036.htm +++ b/approved/html/EARoot/EA1/EA3/EA6/EA1/EA1/EA1036.htm @@ -108,7 +108,7 @@ @@ -156,7 +156,7 @@ @@ -204,7 +204,7 @@ @@ -252,7 +252,7 @@ diff --git a/approved/html/EARoot/EA1/EA3/EA6/EA1/EA1/EA1038.htm b/approved/html/EARoot/EA1/EA3/EA6/EA1/EA1/EA1038.htm index 763ac7c03..05f271987 100644 --- a/approved/html/EARoot/EA1/EA3/EA6/EA1/EA1/EA1038.htm +++ b/approved/html/EARoot/EA1/EA3/EA6/EA1/EA1/EA1038.htm @@ -158,7 +158,7 @@ @@ -184,7 +184,7 @@ - + @@ -206,7 +206,7 @@ @@ -232,7 +232,7 @@ - + diff --git a/approved/html/EARoot/EA1/EA3/EA6/EA1/EA1/EA1039.htm b/approved/html/EARoot/EA1/EA3/EA6/EA1/EA1/EA1039.htm index 6bbfc0fa4..dbf69f2a7 100644 --- a/approved/html/EARoot/EA1/EA3/EA6/EA1/EA1/EA1039.htm +++ b/approved/html/EARoot/EA1/EA3/EA6/EA1/EA1/EA1039.htm @@ -157,7 +157,7 @@ @@ -183,7 +183,7 @@ - + @@ -205,7 +205,7 @@ @@ -231,7 +231,7 @@ - + @@ -253,7 +253,7 @@ @@ -301,7 +301,7 @@ diff --git a/approved/html/EARoot/EA1/EA3/EA6/EA1/EA1/EA1040.htm b/approved/html/EARoot/EA1/EA3/EA6/EA1/EA1/EA1040.htm index 6d6fd2c94..bd6a1c60e 100644 --- a/approved/html/EARoot/EA1/EA3/EA6/EA1/EA1/EA1040.htm +++ b/approved/html/EARoot/EA1/EA3/EA6/EA1/EA1/EA1040.htm @@ -107,7 +107,7 @@ @@ -203,7 +203,7 @@ diff --git a/approved/html/EARoot/EA1/EA3/EA6/EA1/EA1/EA1042.htm b/approved/html/EARoot/EA1/EA3/EA6/EA1/EA1/EA1042.htm index 5acceb9db..2c786e5f8 100644 --- a/approved/html/EARoot/EA1/EA3/EA6/EA1/EA1/EA1042.htm +++ b/approved/html/EARoot/EA1/EA3/EA6/EA1/EA1/EA1042.htm @@ -109,7 +109,7 @@ @@ -157,7 +157,7 @@ @@ -205,7 +205,7 @@ @@ -253,7 +253,7 @@ diff --git a/approved/html/EARoot/EA1/EA3/EA6/EA1/EA1/EA1044.htm b/approved/html/EARoot/EA1/EA3/EA6/EA1/EA1/EA1044.htm index 04d1ee942..af958790a 100644 --- a/approved/html/EARoot/EA1/EA3/EA6/EA1/EA1/EA1044.htm +++ b/approved/html/EARoot/EA1/EA3/EA6/EA1/EA1/EA1044.htm @@ -109,7 +109,7 @@ @@ -157,7 +157,7 @@ @@ -205,7 +205,7 @@ @@ -301,7 +301,7 @@ @@ -349,7 +349,7 @@ diff --git a/approved/html/EARoot/EA1/EA3/EA6/EA1/EA1/EA1047.htm b/approved/html/EARoot/EA1/EA3/EA6/EA1/EA1/EA1047.htm index ae50d6a13..930237b83 100644 --- a/approved/html/EARoot/EA1/EA3/EA6/EA1/EA1/EA1047.htm +++ b/approved/html/EARoot/EA1/EA3/EA6/EA1/EA1/EA1047.htm @@ -109,7 +109,7 @@ @@ -158,7 +158,7 @@ Notes:
- Public Real
  dataType + Public CharacterString
  unit
- Public CharacterString
  unit + Public Real
  dataType
- Public GM_PointArray
  controlPoints + Public Integer
  numArc
- Public Integer
  numArc + Public GM_PointArray
  controlPoints
- Public Sequence<Vector>
  normal + Public Integer
  numArc
- Public Integer
  numArc + Public Sequence<Vector>
  normal
- Public Sequence<Vector>
  horiVectorAtEnd + Public Sequence<Vector>
  horiVectorAtStart
- Public Sequence<Vector>
  horiVectorAtStart + Public Sequence<Vector>
  horiVectorAtEnd
- Public Sequence<Vector>
  vertVectorAtEnd + Public Sequence<Vector>
  vertVectorAtStart
- Public Sequence<Vector>
  vertVectorAtStart + Public Sequence<Vector>
  vertVectorAtEnd
- Public Boolean
  isPolynomial + Public GM_KnotType
  knotSpec
- Public GM_KnotType
  knotSpec + Public Boolean
  isPolynomial
- Public Boolean
  isPolynomial + Public Sequence<GM_Knot>
  knot
- Public Sequence<GM_Knot>
  knot + Public GM_KnotType
  knotSpec
- Public GM_KnotType
  knotSpec + Public GM_BSplineSurfaceForm
  surfaceForm
- Public GM_BSplineSurfaceForm
  surfaceForm + Public Boolean
  isPolynomial
- Public <undefined>
  conical + Public <undefined>
  planar
- Public <undefined>
  planar + Public <undefined>
  conical
- Public Real
  endParameter + Public GM_AffinePlacement
  refLocation
- Public GM_AffinePlacement
  refLocation + Public Number
  scaleFactor
- Public Number
  scaleFactor + Public Real
  startParameter
- Public Real
  startParameter + Public Real
  endParameter
- Public Real
  eccentricity + Public GM_AffinePlacement
  position
- Public Real
  endConstrParam + Public Boolean
  shifted
- Public GM_AffinePlacement
  position + Public Real
  eccentricity
- Public Boolean
  shifted + Public Real
  startConstrParam
- Public Real
  startConstrParam + Public Real
  endConstrParam
- Public DirectPosition
  lowerCorner + Public DirectPosition
  upperCorner
- A coordinate consisting of all minimal values of the ordinates of all points within the GM_Envelope.<br/>The "lowerCorner" of a GM_Envelope is a coordinate position consisting of all the minimal ordinates for each dimension for all points within the GM_Envelope.<br/>GM_Envelope::lowerCorner : DirectPosition<br/> + A coordinate consisting of all maximal values of the ordinates of all points within the GM_Envelope.<br/>The "upperCorner" of a GM_Envelope is a coordinate position consisting of all the maximal ordinates for each dimension for all points within the GM_Envelope.<br/>GM_Envelope::upperCorner : DirectPosition<br/>
@@ -167,7 +167,7 @@
- Public DirectPosition
  upperCorner + Public DirectPosition
  lowerCorner
- A coordinate consisting of all maximal values of the ordinates of all points within the GM_Envelope.<br/>The "upperCorner" of a GM_Envelope is a coordinate position consisting of all the maximal ordinates for each dimension for all points within the GM_Envelope.<br/>GM_Envelope::upperCorner : DirectPosition<br/> + A coordinate consisting of all minimal values of the ordinates of all points within the GM_Envelope.<br/>The "lowerCorner" of a GM_Envelope is a coordinate position consisting of all the minimal ordinates for each dimension for all points within the GM_Envelope.<br/>GM_Envelope::lowerCorner : DirectPosition<br/>
diff --git a/approved/html/EARoot/EA1/EA3/EA6/EA1/EA1/EA1052.htm b/approved/html/EARoot/EA1/EA3/EA6/EA1/EA1/EA1052.htm index 0aa66fc54..1240fe7aa 100644 --- a/approved/html/EARoot/EA1/EA3/EA6/EA1/EA1/EA1052.htm +++ b/approved/html/EARoot/EA1/EA3/EA6/EA1/EA1/EA1052.htm @@ -109,7 +109,7 @@ - Public Integer
  columns + Public GM_PointGrid
  controlPoint @@ -143,7 +143,7 @@ Derived: - True + False IsID: @@ -157,7 +157,7 @@ - Public GM_PointGrid
  controlPoint + Public Integer
  rows @@ -191,7 +191,7 @@ Derived: - False + True IsID: @@ -205,7 +205,7 @@ - Public Integer
  rows + Public Integer
  columns diff --git a/approved/html/EARoot/EA1/EA3/EA6/EA1/EA1/EA1053.htm b/approved/html/EARoot/EA1/EA3/EA6/EA1/EA1/EA1053.htm index 633adc558..43b34df3d 100644 --- a/approved/html/EARoot/EA1/EA3/EA6/EA1/EA1/EA1053.htm +++ b/approved/html/EARoot/EA1/EA3/EA6/EA1/EA1/EA1053.htm @@ -108,7 +108,7 @@ - Public Integer
  multiplicity + Public Real
  value @@ -156,7 +156,7 @@ - Public Real
  value + Public Integer
  multiplicity diff --git a/approved/html/EARoot/EA1/EA3/EA6/EA1/EA1/EA1054.htm b/approved/html/EARoot/EA1/EA3/EA6/EA1/EA1/EA1054.htm index f3cb557af..133de1cd6 100644 --- a/approved/html/EARoot/EA1/EA3/EA6/EA1/EA1/EA1054.htm +++ b/approved/html/EARoot/EA1/EA3/EA6/EA1/EA1/EA1054.htm @@ -108,7 +108,7 @@ - Public <undefined>
  piecewiseBezier + Public <undefined>
  uniform @@ -204,7 +204,7 @@ - Public <undefined>
  uniform + Public <undefined>
  piecewiseBezier diff --git a/approved/html/EARoot/EA1/EA3/EA6/EA1/EA1/EA1065.htm b/approved/html/EARoot/EA1/EA3/EA6/EA1/EA1/EA1065.htm index 479322b43..98ba6b1bd 100644 --- a/approved/html/EARoot/EA1/EA3/EA6/EA1/EA1/EA1065.htm +++ b/approved/html/EARoot/EA1/EA3/EA6/EA1/EA1/EA1065.htm @@ -109,7 +109,7 @@ - Public Sequence<Vector>
  vectorAtEnd + Public Sequence<Vector>
  vectorAtStart @@ -157,7 +157,7 @@ - Public Sequence<Vector>
  vectorAtStart + Public Sequence<Vector>
  vectorAtEnd diff --git a/approved/html/EARoot/EA1/EA3/EA6/EA1/EA1/EA1068.htm b/approved/html/EARoot/EA1/EA3/EA6/EA1/EA1/EA1068.htm index 881f8c8f1..62e6cf46a 100644 --- a/approved/html/EARoot/EA1/EA3/EA6/EA1/EA1/EA1068.htm +++ b/approved/html/EARoot/EA1/EA3/EA6/EA1/EA1/EA1068.htm @@ -109,7 +109,7 @@ - Public GM_PointArray
  controlPoints + Public Integer
  degree @@ -157,7 +157,7 @@ - Public Integer
  degree + Public Sequence<GM_Knot>
  knot @@ -205,7 +205,7 @@ - Public Sequence<GM_Knot>
  knot + Public GM_PointArray
  controlPoints diff --git a/approved/html/EARoot/EA1/EA3/EA6/EA1/EA1/EA1069.htm b/approved/html/EARoot/EA1/EA3/EA6/EA1/EA1/EA1069.htm index 36dda7571..46e0e14d9 100644 --- a/approved/html/EARoot/EA1/EA3/EA6/EA1/EA1/EA1069.htm +++ b/approved/html/EARoot/EA1/EA3/EA6/EA1/EA1/EA1069.htm @@ -108,7 +108,7 @@ - Public <undefined>
  circularArc + Public <undefined>
  polylineForm @@ -156,7 +156,7 @@ - Public <undefined>
  ellipticArc + Public <undefined>
  circularArc @@ -204,7 +204,7 @@ - Public <undefined>
  hyperbolicArc + Public <undefined>
  ellipticArc @@ -300,7 +300,7 @@ - Public <undefined>
  polylineForm + Public <undefined>
  hyperbolicArc diff --git a/approved/html/EARoot/EA1/EA3/EA6/EA1/EA1/EA1070.htm b/approved/html/EARoot/EA1/EA3/EA6/EA1/EA1/EA1070.htm index 372fc296f..a59a7c0d1 100644 --- a/approved/html/EARoot/EA1/EA3/EA6/EA1/EA1/EA1070.htm +++ b/approved/html/EARoot/EA1/EA3/EA6/EA1/EA1/EA1070.htm @@ -110,7 +110,7 @@ - Public Set<GM_LineString>
  breakLines + Public Set<GM_LineString>
  stopLines @@ -158,7 +158,7 @@ - Public GM_Position
  controlPoint + Public Set<GM_LineString>
  breakLines @@ -184,7 +184,7 @@ Range: - Range:3 to * + Transient: @@ -254,7 +254,7 @@ - Public Set<GM_LineString>
  stopLines + Public GM_Position
  controlPoint @@ -280,7 +280,7 @@ Range: - + Range:3 to * Transient: diff --git a/approved/html/EARoot/EA1/EA3/EA6/EA1/EA1/EA896.png b/approved/html/EARoot/EA1/EA3/EA6/EA1/EA1/EA896.png index 12606e6d2..c3457fd31 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA6/EA1/EA1/EA896.png and b/approved/html/EARoot/EA1/EA3/EA6/EA1/EA1/EA896.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA6/EA1/EA1/EA898.png b/approved/html/EARoot/EA1/EA3/EA6/EA1/EA1/EA898.png index dd4d4871c..06fc0270f 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA6/EA1/EA1/EA898.png and b/approved/html/EARoot/EA1/EA3/EA6/EA1/EA1/EA898.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA6/EA1/EA1/EA900.png b/approved/html/EARoot/EA1/EA3/EA6/EA1/EA1/EA900.png index b5660fe30..154868ef2 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA6/EA1/EA1/EA900.png and b/approved/html/EARoot/EA1/EA3/EA6/EA1/EA1/EA900.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA6/EA1/EA1/EA902.png b/approved/html/EARoot/EA1/EA3/EA6/EA1/EA1/EA902.png index 058ff8da0..f20593002 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA6/EA1/EA1/EA902.png and b/approved/html/EARoot/EA1/EA3/EA6/EA1/EA1/EA902.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA6/EA1/EA1/EA904.png b/approved/html/EARoot/EA1/EA3/EA6/EA1/EA1/EA904.png index 1f90fb55e..5790cc956 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA6/EA1/EA1/EA904.png and b/approved/html/EARoot/EA1/EA3/EA6/EA1/EA1/EA904.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA6/EA1/EA1/EA906.png b/approved/html/EARoot/EA1/EA3/EA6/EA1/EA1/EA906.png index 370f55b6e..09b003af0 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA6/EA1/EA1/EA906.png and b/approved/html/EARoot/EA1/EA3/EA6/EA1/EA1/EA906.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA6/EA1/EA1/EA908.png b/approved/html/EARoot/EA1/EA3/EA6/EA1/EA1/EA908.png index c192e903e..ec5ea02d8 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA6/EA1/EA1/EA908.png and b/approved/html/EARoot/EA1/EA3/EA6/EA1/EA1/EA908.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA6/EA1/EA1/EA910.png b/approved/html/EARoot/EA1/EA3/EA6/EA1/EA1/EA910.png index 783c9e6d0..f7d894b9b 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA6/EA1/EA1/EA910.png and b/approved/html/EARoot/EA1/EA3/EA6/EA1/EA1/EA910.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA6/EA1/EA1/EA912.png b/approved/html/EARoot/EA1/EA3/EA6/EA1/EA1/EA912.png index 0c3cacfbf..cd63c0f78 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA6/EA1/EA1/EA912.png and b/approved/html/EARoot/EA1/EA3/EA6/EA1/EA1/EA912.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA6/EA1/EA1/EA914.png b/approved/html/EARoot/EA1/EA3/EA6/EA1/EA1/EA914.png index 34f2cc968..79a2cab8b 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA6/EA1/EA1/EA914.png and b/approved/html/EARoot/EA1/EA3/EA6/EA1/EA1/EA914.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA6/EA1/EA1/EA918.png b/approved/html/EARoot/EA1/EA3/EA6/EA1/EA1/EA918.png index a925882c2..115d05e1b 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA6/EA1/EA1/EA918.png and b/approved/html/EARoot/EA1/EA3/EA6/EA1/EA1/EA918.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA6/EA1/EA1/EA920.png b/approved/html/EARoot/EA1/EA3/EA6/EA1/EA1/EA920.png index 7b30fa058..826f9478b 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA6/EA1/EA1/EA920.png and b/approved/html/EARoot/EA1/EA3/EA6/EA1/EA1/EA920.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA6/EA1/EA1/EA922.png b/approved/html/EARoot/EA1/EA3/EA6/EA1/EA1/EA922.png index 01f97145b..0e637510b 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA6/EA1/EA1/EA922.png and b/approved/html/EARoot/EA1/EA3/EA6/EA1/EA1/EA922.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA6/EA1/EA1/EA924.png b/approved/html/EARoot/EA1/EA3/EA6/EA1/EA1/EA924.png index 05d1370da..619abc617 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA6/EA1/EA1/EA924.png and b/approved/html/EARoot/EA1/EA3/EA6/EA1/EA1/EA924.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA6/EA1/EA1/EA926.png b/approved/html/EARoot/EA1/EA3/EA6/EA1/EA1/EA926.png index b47d18936..43e160f1e 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA6/EA1/EA1/EA926.png and b/approved/html/EARoot/EA1/EA3/EA6/EA1/EA1/EA926.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA6/EA1/EA1/EA928.png b/approved/html/EARoot/EA1/EA3/EA6/EA1/EA1/EA928.png index 6756a5986..a531bdb0f 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA6/EA1/EA1/EA928.png and b/approved/html/EARoot/EA1/EA3/EA6/EA1/EA1/EA928.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA6/EA1/EA1/EA936.png b/approved/html/EARoot/EA1/EA3/EA6/EA1/EA1/EA936.png index d3d625491..659a2205f 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA6/EA1/EA1/EA936.png and b/approved/html/EARoot/EA1/EA3/EA6/EA1/EA1/EA936.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA6/EA1/EA1/EA938.png b/approved/html/EARoot/EA1/EA3/EA6/EA1/EA1/EA938.png index ffb3c95ad..8205e1870 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA6/EA1/EA1/EA938.png and b/approved/html/EARoot/EA1/EA3/EA6/EA1/EA1/EA938.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA6/EA1/EA1/EA940.png b/approved/html/EARoot/EA1/EA3/EA6/EA1/EA1/EA940.png index 569aa00d1..adfa2c81d 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA6/EA1/EA1/EA940.png and b/approved/html/EARoot/EA1/EA3/EA6/EA1/EA1/EA940.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA6/EA1/EA1/EA942.png b/approved/html/EARoot/EA1/EA3/EA6/EA1/EA1/EA942.png index 08d45613a..89cb6e4a4 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA6/EA1/EA1/EA942.png and b/approved/html/EARoot/EA1/EA3/EA6/EA1/EA1/EA942.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA6/EA1/EA1/EA946.png b/approved/html/EARoot/EA1/EA3/EA6/EA1/EA1/EA946.png index e7c88dca6..a4469cc6c 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA6/EA1/EA1/EA946.png and b/approved/html/EARoot/EA1/EA3/EA6/EA1/EA1/EA946.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA6/EA1/EA1/EA948.png b/approved/html/EARoot/EA1/EA3/EA6/EA1/EA1/EA948.png index 94ec39d4e..7f6979f91 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA6/EA1/EA1/EA948.png and b/approved/html/EARoot/EA1/EA3/EA6/EA1/EA1/EA948.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA6/EA1/EA1/EA950.png b/approved/html/EARoot/EA1/EA3/EA6/EA1/EA1/EA950.png index f5c1d2809..216999255 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA6/EA1/EA1/EA950.png and b/approved/html/EARoot/EA1/EA3/EA6/EA1/EA1/EA950.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA6/EA1/EA1/EA964.png b/approved/html/EARoot/EA1/EA3/EA6/EA1/EA1/EA964.png index 92cb933f3..7ae3d0cb4 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA6/EA1/EA1/EA964.png and b/approved/html/EARoot/EA1/EA3/EA6/EA1/EA1/EA964.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA6/EA1/EA1/EA968.png b/approved/html/EARoot/EA1/EA3/EA6/EA1/EA1/EA968.png index d72b26525..cf1446d75 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA6/EA1/EA1/EA968.png and b/approved/html/EARoot/EA1/EA3/EA6/EA1/EA1/EA968.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA6/EA1/EA1/EA970.png b/approved/html/EARoot/EA1/EA3/EA6/EA1/EA1/EA970.png index 4f4951ac8..2b9725fd9 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA6/EA1/EA1/EA970.png and b/approved/html/EARoot/EA1/EA3/EA6/EA1/EA1/EA970.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA6/EA1/EA1/EA972.png b/approved/html/EARoot/EA1/EA3/EA6/EA1/EA1/EA972.png index 97ff29a17..074c154f2 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA6/EA1/EA1/EA972.png and b/approved/html/EARoot/EA1/EA3/EA6/EA1/EA1/EA972.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA6/EA1/EA1/EA974.png b/approved/html/EARoot/EA1/EA3/EA6/EA1/EA1/EA974.png index 91147cffe..79feba2bf 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA6/EA1/EA1/EA974.png and b/approved/html/EARoot/EA1/EA3/EA6/EA1/EA1/EA974.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA6/EA1/EA1/EA982.png b/approved/html/EARoot/EA1/EA3/EA6/EA1/EA1/EA982.png index 270d1e710..fda3cd5fc 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA6/EA1/EA1/EA982.png and b/approved/html/EARoot/EA1/EA3/EA6/EA1/EA1/EA982.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA6/EA1/EA1/EA984.png b/approved/html/EARoot/EA1/EA3/EA6/EA1/EA1/EA984.png index 5f9bc32f2..473a1f92b 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA6/EA1/EA1/EA984.png and b/approved/html/EARoot/EA1/EA3/EA6/EA1/EA1/EA984.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA6/EA1/EA1/EA988.png b/approved/html/EARoot/EA1/EA3/EA6/EA1/EA1/EA988.png index 9458372e9..b57058a12 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA6/EA1/EA1/EA988.png and b/approved/html/EARoot/EA1/EA3/EA6/EA1/EA1/EA988.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA6/EA1/EA1/EA990.png b/approved/html/EARoot/EA1/EA3/EA6/EA1/EA1/EA990.png index c66bf897c..79a3e8266 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA6/EA1/EA1/EA990.png and b/approved/html/EARoot/EA1/EA3/EA6/EA1/EA1/EA990.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA6/EA1/EA1/EA992.png b/approved/html/EARoot/EA1/EA3/EA6/EA1/EA1/EA992.png index 62bb500ec..1463cd34d 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA6/EA1/EA1/EA992.png and b/approved/html/EARoot/EA1/EA3/EA6/EA1/EA1/EA992.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA6/EA1/EA1/EA994.png b/approved/html/EARoot/EA1/EA3/EA6/EA1/EA1/EA994.png index f3d21dee4..acab369e9 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA6/EA1/EA1/EA994.png and b/approved/html/EARoot/EA1/EA3/EA6/EA1/EA1/EA994.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA6/EA1/EA1/EA996.png b/approved/html/EARoot/EA1/EA3/EA6/EA1/EA1/EA996.png index 38ed34c7c..ad697bca1 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA6/EA1/EA1/EA996.png and b/approved/html/EARoot/EA1/EA3/EA6/EA1/EA1/EA996.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA6/EA1/EA1/EA998.png b/approved/html/EARoot/EA1/EA3/EA6/EA1/EA1/EA998.png index 9d43c3ae7..2533f2600 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA6/EA1/EA1/EA998.png and b/approved/html/EARoot/EA1/EA3/EA6/EA1/EA1/EA998.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA6/EA1/EA2/EA1083.png b/approved/html/EARoot/EA1/EA3/EA6/EA1/EA2/EA1083.png index 5afdda411..3e8672e5a 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA6/EA1/EA2/EA1083.png and b/approved/html/EARoot/EA1/EA3/EA6/EA1/EA2/EA1083.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA6/EA1/EA2/EA1087.png b/approved/html/EARoot/EA1/EA3/EA6/EA1/EA2/EA1087.png index 461530a22..5ef51a440 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA6/EA1/EA2/EA1087.png and b/approved/html/EARoot/EA1/EA3/EA6/EA1/EA2/EA1087.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA6/EA1/EA2/EA1098.htm b/approved/html/EARoot/EA1/EA3/EA6/EA1/EA2/EA1098.htm index 9c44afa7e..c2a2c9afc 100644 --- a/approved/html/EARoot/EA1/EA3/EA6/EA1/EA2/EA1098.htm +++ b/approved/html/EARoot/EA1/EA3/EA6/EA1/EA2/EA1098.htm @@ -108,7 +108,7 @@ - Public Area
  area + Public Volume
  volume @@ -156,7 +156,7 @@ - Public Volume
  volume + Public Area
  area diff --git a/approved/html/EARoot/EA1/EA3/EA6/EA1/EA3/EA1115.png b/approved/html/EARoot/EA1/EA3/EA6/EA1/EA3/EA1115.png index c911c763a..390c7da6d 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA6/EA1/EA3/EA1115.png and b/approved/html/EARoot/EA1/EA3/EA6/EA1/EA3/EA1115.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA6/EA1/EA4/EA1140.png b/approved/html/EARoot/EA1/EA3/EA6/EA1/EA4/EA1140.png index 4838a0dc9..8929d98d3 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA6/EA1/EA4/EA1140.png and b/approved/html/EARoot/EA1/EA3/EA6/EA1/EA4/EA1140.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA6/EA1/EA4/EA1144.png b/approved/html/EARoot/EA1/EA3/EA6/EA1/EA4/EA1144.png index 14cccb4c5..5e69fbc20 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA6/EA1/EA4/EA1144.png and b/approved/html/EARoot/EA1/EA3/EA6/EA1/EA4/EA1144.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA6/EA1/EA4/EA1146.png b/approved/html/EARoot/EA1/EA3/EA6/EA1/EA4/EA1146.png index 8d3d3ce1e..b6fe3bd6c 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA6/EA1/EA4/EA1146.png and b/approved/html/EARoot/EA1/EA3/EA6/EA1/EA4/EA1146.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA6/EA1/EA4/EA1172.png b/approved/html/EARoot/EA1/EA3/EA6/EA1/EA4/EA1172.png index 3e76e067c..0e55308af 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA6/EA1/EA4/EA1172.png and b/approved/html/EARoot/EA1/EA3/EA6/EA1/EA4/EA1172.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA6/EA1/EA4/EA1174.png b/approved/html/EARoot/EA1/EA3/EA6/EA1/EA4/EA1174.png index 034ea0cdd..bf36dddfe 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA6/EA1/EA4/EA1174.png and b/approved/html/EARoot/EA1/EA3/EA6/EA1/EA4/EA1174.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA6/EA1/EA4/EA1193.htm b/approved/html/EARoot/EA1/EA3/EA6/EA1/EA4/EA1193.htm index 14e281cca..7db69595f 100644 --- a/approved/html/EARoot/EA1/EA3/EA6/EA1/EA4/EA1193.htm +++ b/approved/html/EARoot/EA1/EA3/EA6/EA1/EA4/EA1193.htm @@ -108,7 +108,7 @@ - Public <undefined>
  circularArc2PointWithBulge + Public <undefined>
  linear @@ -156,7 +156,7 @@ - Public <undefined>
  circularArc3Points + Public <undefined>
  geodesic @@ -204,7 +204,7 @@ - Public <undefined>
  clothoid + Public <undefined>
  circularArc3Points @@ -252,7 +252,7 @@ - Public <undefined>
  conic + Public <undefined>
  circularArc2PointWithBulge @@ -300,7 +300,7 @@ - Public <undefined>
  cubicSpline + Public <undefined>
  elliptical @@ -348,7 +348,7 @@ - Public <undefined>
  elliptical + Public <undefined>
  clothoid @@ -396,7 +396,7 @@ - Public <undefined>
  geodesic + Public <undefined>
  conic @@ -444,7 +444,7 @@ - Public <undefined>
  linear + Public <undefined>
  polynomialSpline @@ -492,7 +492,7 @@ - Public <undefined>
  polynomialSpline + Public <undefined>
  cubicSpline diff --git a/approved/html/EARoot/EA1/EA3/EA6/EA1/EA4/EA1194.htm b/approved/html/EARoot/EA1/EA3/EA6/EA1/EA4/EA1194.htm index 2f3bab2f3..533aa51d3 100644 --- a/approved/html/EARoot/EA1/EA3/EA6/EA1/EA4/EA1194.htm +++ b/approved/html/EARoot/EA1/EA3/EA6/EA1/EA4/EA1194.htm @@ -160,7 +160,7 @@ - Public Integer
  numDerivativeInterior + Public Integer
  numDerivativesAtStart @@ -256,7 +256,7 @@ - Public Integer
  numDerivativesAtStart + Public Integer
  numDerivativeInterior diff --git a/approved/html/EARoot/EA1/EA3/EA6/EA1/EA4/EA1207.htm b/approved/html/EARoot/EA1/EA3/EA6/EA1/EA4/EA1207.htm index d1eb203a4..978d596d8 100644 --- a/approved/html/EARoot/EA1/EA3/EA6/EA1/EA4/EA1207.htm +++ b/approved/html/EARoot/EA1/EA3/EA6/EA1/EA4/EA1207.htm @@ -108,7 +108,7 @@ - Public <undefined>
  conic + Public <undefined>
  none @@ -156,7 +156,7 @@ - Public <undefined>
  elliptical + Public <undefined>
  planar @@ -204,7 +204,7 @@ - Public <undefined>
  none + Public <undefined>
  spherical @@ -252,7 +252,7 @@ - Public <undefined>
  parametricCurve + Public <undefined>
  elliptical @@ -300,7 +300,7 @@ - Public <undefined>
  planar + Public <undefined>
  conic @@ -348,7 +348,7 @@ - Public <undefined>
  polynomialSpline + Public <undefined>
  tin @@ -396,7 +396,7 @@ - Public <undefined>
  rationalSpline + Public <undefined>
  parametricCurve @@ -444,7 +444,7 @@ - Public <undefined>
  spherical + Public <undefined>
  polynomialSpline @@ -492,7 +492,7 @@ - Public <undefined>
  tin + Public <undefined>
  rationalSpline diff --git a/approved/html/EARoot/EA1/EA3/EA6/EA2/EA2/EA1269.png b/approved/html/EARoot/EA1/EA3/EA6/EA2/EA2/EA1269.png index 56ffae80c..978ef92af 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA6/EA2/EA2/EA1269.png and b/approved/html/EARoot/EA1/EA3/EA6/EA2/EA2/EA1269.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA6/EA2/EA2/EA1297.png b/approved/html/EARoot/EA1/EA3/EA6/EA2/EA2/EA1297.png index 15228d7ee..47cc29c53 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA6/EA2/EA2/EA1297.png and b/approved/html/EARoot/EA1/EA3/EA6/EA2/EA2/EA1297.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA6/EA2/EA2/EA1307.png b/approved/html/EARoot/EA1/EA3/EA6/EA2/EA2/EA1307.png index 0e3b941e0..682abf148 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA6/EA2/EA2/EA1307.png and b/approved/html/EARoot/EA1/EA3/EA6/EA2/EA2/EA1307.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA6/EA2/EA2/EA1309.png b/approved/html/EARoot/EA1/EA3/EA6/EA2/EA2/EA1309.png index 7c87a92ac..9270a84dc 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA6/EA2/EA2/EA1309.png and b/approved/html/EARoot/EA1/EA3/EA6/EA2/EA2/EA1309.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA6/EA2/EA2/EA1333.htm b/approved/html/EARoot/EA1/EA3/EA6/EA2/EA2/EA1333.htm index 23959b9c3..17a04f198 100644 --- a/approved/html/EARoot/EA1/EA3/EA6/EA2/EA2/EA1333.htm +++ b/approved/html/EARoot/EA1/EA3/EA6/EA2/EA2/EA1333.htm @@ -108,7 +108,7 @@ - Public TP_DirectedNode
  endNode + Public TP_DirectedNode
  startNode @@ -156,7 +156,7 @@ - Public TP_DirectedNode
  startNode + Public TP_DirectedNode
  endNode diff --git a/approved/html/EARoot/EA1/EA3/EA7/EA1/EA1/EA1/EA1389.png b/approved/html/EARoot/EA1/EA3/EA7/EA1/EA1/EA1/EA1389.png index 58ec7ac07..9dfaff866 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA7/EA1/EA1/EA1/EA1389.png and b/approved/html/EARoot/EA1/EA3/EA7/EA1/EA1/EA1/EA1389.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA7/EA1/EA1/EA1/EA1399.png b/approved/html/EARoot/EA1/EA3/EA7/EA1/EA1/EA1/EA1399.png index 865bbc712..3f23bc41e 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA7/EA1/EA1/EA1/EA1399.png and b/approved/html/EARoot/EA1/EA3/EA7/EA1/EA1/EA1/EA1399.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA7/EA1/EA1/EA1/EA1401.png b/approved/html/EARoot/EA1/EA3/EA7/EA1/EA1/EA1/EA1401.png index d61842a39..2c512249b 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA7/EA1/EA1/EA1/EA1401.png and b/approved/html/EARoot/EA1/EA3/EA7/EA1/EA1/EA1/EA1401.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA7/EA1/EA1/EA1/EA1403.png b/approved/html/EARoot/EA1/EA3/EA7/EA1/EA1/EA1/EA1403.png index cb51846d4..4b7d00827 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA7/EA1/EA1/EA1/EA1403.png and b/approved/html/EARoot/EA1/EA3/EA7/EA1/EA1/EA1/EA1403.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA7/EA1/EA1/EA1/EA1405.png b/approved/html/EARoot/EA1/EA3/EA7/EA1/EA1/EA1/EA1405.png index 9c7a3757d..280b619b6 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA7/EA1/EA1/EA1/EA1405.png and b/approved/html/EARoot/EA1/EA3/EA7/EA1/EA1/EA1/EA1405.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA7/EA1/EA1/EA1/EA1411.png b/approved/html/EARoot/EA1/EA3/EA7/EA1/EA1/EA1/EA1411.png index fc3d785cf..37bebe237 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA7/EA1/EA1/EA1/EA1411.png and b/approved/html/EARoot/EA1/EA3/EA7/EA1/EA1/EA1/EA1411.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA7/EA1/EA1/EA1/EA1413.png b/approved/html/EARoot/EA1/EA3/EA7/EA1/EA1/EA1/EA1413.png index f320fdc09..0bbee3097 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA7/EA1/EA1/EA1/EA1413.png and b/approved/html/EARoot/EA1/EA3/EA7/EA1/EA1/EA1/EA1413.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA7/EA1/EA1/EA1/EA1415.png b/approved/html/EARoot/EA1/EA3/EA7/EA1/EA1/EA1/EA1415.png index 29114dbe7..56529ffe6 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA7/EA1/EA1/EA1/EA1415.png and b/approved/html/EARoot/EA1/EA3/EA7/EA1/EA1/EA1/EA1415.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA7/EA1/EA1/EA1/EA1417.png b/approved/html/EARoot/EA1/EA3/EA7/EA1/EA1/EA1/EA1417.png index 65b751ef3..4d3db3338 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA7/EA1/EA1/EA1/EA1417.png and b/approved/html/EARoot/EA1/EA3/EA7/EA1/EA1/EA1/EA1417.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA7/EA1/EA1/EA1/EA1419.png b/approved/html/EARoot/EA1/EA3/EA7/EA1/EA1/EA1/EA1419.png index c93417b7f..d1e02fbd8 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA7/EA1/EA1/EA1/EA1419.png and b/approved/html/EARoot/EA1/EA3/EA7/EA1/EA1/EA1/EA1419.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA7/EA1/EA1/EA1/EA1421.png b/approved/html/EARoot/EA1/EA3/EA7/EA1/EA1/EA1/EA1421.png index 4d93e702d..4141b9fe8 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA7/EA1/EA1/EA1/EA1421.png and b/approved/html/EARoot/EA1/EA3/EA7/EA1/EA1/EA1/EA1421.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA7/EA1/EA1/EA1/EA1423.png b/approved/html/EARoot/EA1/EA3/EA7/EA1/EA1/EA1/EA1423.png index bf0fc5528..e62fd1572 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA7/EA1/EA1/EA1/EA1423.png and b/approved/html/EARoot/EA1/EA3/EA7/EA1/EA1/EA1/EA1423.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA7/EA1/EA1/EA1/EA1425.png b/approved/html/EARoot/EA1/EA3/EA7/EA1/EA1/EA1/EA1425.png index c6e66fd5a..b15f9c5eb 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA7/EA1/EA1/EA1/EA1425.png and b/approved/html/EARoot/EA1/EA3/EA7/EA1/EA1/EA1/EA1425.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA7/EA1/EA1/EA1/EA1427.png b/approved/html/EARoot/EA1/EA3/EA7/EA1/EA1/EA1/EA1427.png index 87913736c..86e950e0b 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA7/EA1/EA1/EA1/EA1427.png and b/approved/html/EARoot/EA1/EA3/EA7/EA1/EA1/EA1/EA1427.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA7/EA1/EA1/EA1/EA1429.png b/approved/html/EARoot/EA1/EA3/EA7/EA1/EA1/EA1/EA1429.png index b7b45c68a..c952f18a2 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA7/EA1/EA1/EA1/EA1429.png and b/approved/html/EARoot/EA1/EA3/EA7/EA1/EA1/EA1/EA1429.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA7/EA1/EA1/EA1/EA1431.png b/approved/html/EARoot/EA1/EA3/EA7/EA1/EA1/EA1/EA1431.png index 6bfbc626d..751c35c61 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA7/EA1/EA1/EA1/EA1431.png and b/approved/html/EARoot/EA1/EA3/EA7/EA1/EA1/EA1/EA1431.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA7/EA1/EA1/EA1/EA1433.png b/approved/html/EARoot/EA1/EA3/EA7/EA1/EA1/EA1/EA1433.png index 834af4687..3ec1684c7 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA7/EA1/EA1/EA1/EA1433.png and b/approved/html/EARoot/EA1/EA3/EA7/EA1/EA1/EA1/EA1433.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA7/EA1/EA1/EA1/EA1439.png b/approved/html/EARoot/EA1/EA3/EA7/EA1/EA1/EA1/EA1439.png index 66155d992..2f33ace5d 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA7/EA1/EA1/EA1/EA1439.png and b/approved/html/EARoot/EA1/EA3/EA7/EA1/EA1/EA1/EA1439.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA7/EA1/EA1/EA1/EA1442.htm b/approved/html/EARoot/EA1/EA3/EA7/EA1/EA1/EA1/EA1442.htm index af20a8a2b..86a50b3ce 100644 --- a/approved/html/EARoot/EA1/EA3/EA7/EA1/EA1/EA1/EA1442.htm +++ b/approved/html/EARoot/EA1/EA3/EA7/EA1/EA1/EA1/EA1442.htm @@ -108,7 +108,7 @@ - Public UomAngle
  angle + Public UomTime
  time @@ -157,7 +157,7 @@ Notes: - The unit of distance or length used to measure the velocity.<br/> + the units of time used to measure this velocity<br/>
@@ -166,7 +166,7 @@ - Public UomTime
  time + Public UomAngle
  angle @@ -215,7 +215,7 @@ Notes: - the units of time used to measure this velocity<br/> + The unit of distance or length used to measure the velocity.<br/> diff --git a/approved/html/EARoot/EA1/EA3/EA7/EA1/EA1/EA1/EA1448.htm b/approved/html/EARoot/EA1/EA3/EA7/EA1/EA1/EA1/EA1448.htm index b9c9cd001..95479d112 100644 --- a/approved/html/EARoot/EA1/EA3/EA7/EA1/EA1/EA1/EA1448.htm +++ b/approved/html/EARoot/EA1/EA3/EA7/EA1/EA1/EA1/EA1448.htm @@ -108,7 +108,7 @@ - Public <undefined>
  angle + Public <undefined>
  area @@ -156,7 +156,7 @@ - Public <undefined>
  area + Public <undefined>
  length @@ -204,7 +204,7 @@ - Public <undefined>
  length + Public <undefined>
  angle @@ -252,7 +252,7 @@ - Public <undefined>
  scale + Public <undefined>
  time @@ -300,7 +300,7 @@ - Public <undefined>
  time + Public <undefined>
  velocity @@ -348,7 +348,7 @@ - Public <undefined>
  velocity + Public <undefined>
  volume @@ -396,7 +396,7 @@ - Public <undefined>
  volume + Public <undefined>
  scale diff --git a/approved/html/EARoot/EA1/EA3/EA7/EA1/EA1/EA1/EA1449.htm b/approved/html/EARoot/EA1/EA3/EA7/EA1/EA1/EA1/EA1449.htm index fd285c241..4b4e62eba 100644 --- a/approved/html/EARoot/EA1/EA3/EA7/EA1/EA1/EA1/EA1449.htm +++ b/approved/html/EARoot/EA1/EA3/EA7/EA1/EA1/EA1/EA1449.htm @@ -110,7 +110,7 @@ - Public UomLength
  sourceUnits + Public UomScale
  uom @@ -158,7 +158,7 @@ - Public UomLength
  targetUnits + Public UomLength
  sourceUnits @@ -206,7 +206,7 @@ - Public UomScale
  uom + Public UomLength
  targetUnits diff --git a/approved/html/EARoot/EA1/EA3/EA7/EA1/EA1/EA1/EA1450.htm b/approved/html/EARoot/EA1/EA3/EA7/EA1/EA1/EA1/EA1450.htm index 5dc56d7e8..821bf58e8 100644 --- a/approved/html/EARoot/EA1/EA3/EA7/EA1/EA1/EA1/EA1450.htm +++ b/approved/html/EARoot/EA1/EA3/EA7/EA1/EA1/EA1/EA1450.htm @@ -109,7 +109,7 @@ - Public <undefined>
  cubicMeter + Public <undefined>
  meter @@ -157,7 +157,7 @@ - Public <undefined>
  kilogram + Public <undefined>
  second @@ -205,7 +205,7 @@ - Public <undefined>
  meter + Public <undefined>
  radian @@ -253,7 +253,7 @@ - Public <undefined>
  meter/meter + Public <undefined>
  squareMeter @@ -301,7 +301,7 @@ - Public <undefined>
  meters/second + Public <undefined>
  cubicMeter @@ -349,7 +349,7 @@ - Public <undefined>
  radian + Public <undefined>
  meters/second @@ -397,7 +397,7 @@ - Public <undefined>
  second + Public <undefined>
  meter/meter @@ -445,7 +445,7 @@ - Public <undefined>
  squareMeter + Public <undefined>
  kilogram diff --git a/approved/html/EARoot/EA1/EA3/EA7/EA1/EA1/EA1/EA1453.htm b/approved/html/EARoot/EA1/EA3/EA7/EA1/EA1/EA1/EA1453.htm index f69549ea0..594bb44af 100644 --- a/approved/html/EARoot/EA1/EA3/EA7/EA1/EA1/EA1/EA1453.htm +++ b/approved/html/EARoot/EA1/EA3/EA7/EA1/EA1/EA1/EA1453.htm @@ -113,7 +113,7 @@ - Public CharacterString
  formula + Public CharacterString
  uomName @@ -139,7 +139,7 @@ Range: - Range:0 to 1 + Transient: @@ -162,7 +162,7 @@ Notes: - An algebraic formula (probably in some programming language) converting this unit of measure (represented in the formula by its uomSymbol) to the ISO standard (represented by its symbol. This member attribute is not required, but it is a valuable piece of documentation. <br/> + The name(s) of a particular unit of measure.  Examples would include the following: 1) for uomArea - square feet, 2) for uomTime - seconds, 3)for uomArea - miles and 4) uomAngle - degrees.<br/> @@ -171,7 +171,7 @@ - Public MeasureType
  measureType + Public CharacterString
  uomSymbol @@ -214,12 +214,22 @@ -   +
+ + + + +
+ Notes: + + The symbol used for this unit of measure, such at "ft" for feet, or "m" for meter. <br/> +
+ - Public CharacterString
  nameStandardUnit + Public MeasureType
  measureType @@ -245,7 +255,7 @@ Range: - Range:0 to 1 + Transient: @@ -262,22 +272,12 @@ -
- - - - -
- Notes: - - Name of the standard units to which this unit of measure can be directly converted. If this variable is NULL, then the standard unit for this measure type given by the local copy of the StandardsUnits code list. <br/> -
- +   - Public Real
  offsetToStandardUnit + Public CharacterString
  nameStandardUnit @@ -326,7 +326,7 @@ Notes: - See scaleToStandardUnit for a description. Again, this variable is NULL is no linear conversion is possible. If the two units are only a scale in difference, then this number is zero (0). If the implementation system used for this object does not support NULL, the then scale set to 0 is equivalent to NULL for both scale and offset. <br/> + Name of the standard units to which this unit of measure can be directly converted. If this variable is NULL, then the standard unit for this measure type given by the local copy of the StandardsUnits code list. <br/> @@ -393,7 +393,7 @@ - Public CharacterString
  uomName + Public Real
  offsetToStandardUnit @@ -419,7 +419,7 @@ Range: - + Range:0 to 1 Transient: @@ -442,7 +442,7 @@ Notes: - The name(s) of a particular unit of measure.  Examples would include the following: 1) for uomArea - square feet, 2) for uomTime - seconds, 3)for uomArea - miles and 4) uomAngle - degrees.<br/> + See scaleToStandardUnit for a description. Again, this variable is NULL is no linear conversion is possible. If the two units are only a scale in difference, then this number is zero (0). If the implementation system used for this object does not support NULL, the then scale set to 0 is equivalent to NULL for both scale and offset. <br/> @@ -451,7 +451,7 @@ - Public CharacterString
  uomSymbol + Public CharacterString
  formula @@ -477,7 +477,7 @@ Range: - + Range:0 to 1 Transient: @@ -500,7 +500,7 @@ Notes: - The symbol used for this unit of measure, such at "ft" for feet, or "m" for meter. <br/> + An algebraic formula (probably in some programming language) converting this unit of measure (represented in the formula by its uomSymbol) to the ISO standard (represented by its symbol. This member attribute is not required, but it is a valuable piece of documentation. <br/> diff --git a/approved/html/EARoot/EA1/EA3/EA7/EA1/EA1/EA1/EA1454.htm b/approved/html/EARoot/EA1/EA3/EA7/EA1/EA1/EA1/EA1454.htm index f1c13e66d..b0be371fa 100644 --- a/approved/html/EARoot/EA1/EA3/EA7/EA1/EA1/EA1/EA1454.htm +++ b/approved/html/EARoot/EA1/EA3/EA7/EA1/EA1/EA1/EA1454.htm @@ -109,7 +109,7 @@ - Public <undefined>
  cubicYard + Public <undefined>
  foot @@ -157,7 +157,7 @@ - Public <undefined>
  foot + Public <undefined>
  squareFoot @@ -205,7 +205,7 @@ - Public <undefined>
  squareFoot + Public <undefined>
  cubicYard diff --git a/approved/html/EARoot/EA1/EA3/EA7/EA1/EA1/EA1/EA1465.htm b/approved/html/EARoot/EA1/EA3/EA7/EA1/EA1/EA1/EA1465.htm index c4be05565..00727856f 100644 --- a/approved/html/EARoot/EA1/EA3/EA7/EA1/EA1/EA1/EA1465.htm +++ b/approved/html/EARoot/EA1/EA3/EA7/EA1/EA1/EA1/EA1465.htm @@ -109,7 +109,7 @@ - Public UomLength
  distance + Public UomTime
  time @@ -158,7 +158,7 @@ Notes: - The unit of distance or length used to measure the velocity.<br/> + the units of time used to measure this velocity<br/> @@ -167,7 +167,7 @@ - Public UomTime
  time + Public UomLength
  distance @@ -216,7 +216,7 @@ Notes: - the units of time used to measure this velocity<br/> + The unit of distance or length used to measure the velocity.<br/> diff --git a/approved/html/EARoot/EA1/EA3/EA7/EA1/EA2/EA1/EA1487.png b/approved/html/EARoot/EA1/EA3/EA7/EA1/EA2/EA1/EA1487.png index 102c960a5..7ab15a532 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA7/EA1/EA2/EA1/EA1487.png and b/approved/html/EARoot/EA1/EA3/EA7/EA1/EA2/EA1/EA1487.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA7/EA1/EA2/EA1/EA1495.png b/approved/html/EARoot/EA1/EA3/EA7/EA1/EA2/EA1/EA1495.png index 9c9b8aed8..82b9bbc4e 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA7/EA1/EA2/EA1/EA1495.png and b/approved/html/EARoot/EA1/EA3/EA7/EA1/EA2/EA1/EA1495.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA7/EA1/EA2/EA1/EA1501.png b/approved/html/EARoot/EA1/EA3/EA7/EA1/EA2/EA1/EA1501.png index cecb108e0..880b18f81 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA7/EA1/EA2/EA1/EA1501.png and b/approved/html/EARoot/EA1/EA3/EA7/EA1/EA2/EA1/EA1501.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA7/EA1/EA2/EA1/EA1519.png b/approved/html/EARoot/EA1/EA3/EA7/EA1/EA2/EA1/EA1519.png index 368fa000a..bf7a94468 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA7/EA1/EA2/EA1/EA1519.png and b/approved/html/EARoot/EA1/EA3/EA7/EA1/EA2/EA1/EA1519.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA7/EA1/EA2/EA1/EA1529.htm b/approved/html/EARoot/EA1/EA3/EA7/EA1/EA2/EA1/EA1529.htm index f0f832a47..c18148537 100644 --- a/approved/html/EARoot/EA1/EA3/EA7/EA1/EA2/EA1/EA1529.htm +++ b/approved/html/EARoot/EA1/EA3/EA7/EA1/EA2/EA1/EA1529.htm @@ -107,7 +107,7 @@ - Public CharacterString
  asCharacter + Public Number
  asNumber @@ -155,7 +155,7 @@ - Public Number
  asNumber + Public CharacterString
  asCharacter diff --git a/approved/html/EARoot/EA1/EA3/EA7/EA1/EA2/EA2/EA1542.png b/approved/html/EARoot/EA1/EA3/EA7/EA1/EA2/EA2/EA1542.png index 4390b6e3b..de9505e06 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA7/EA1/EA2/EA2/EA1542.png and b/approved/html/EARoot/EA1/EA3/EA7/EA1/EA2/EA2/EA1542.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA7/EA1/EA2/EA2/EA1548.png b/approved/html/EARoot/EA1/EA3/EA7/EA1/EA2/EA2/EA1548.png index 385574c2b..94201f0d9 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA7/EA1/EA2/EA2/EA1548.png and b/approved/html/EARoot/EA1/EA3/EA7/EA1/EA2/EA2/EA1548.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA7/EA1/EA2/EA2/EA1554.png b/approved/html/EARoot/EA1/EA3/EA7/EA1/EA2/EA2/EA1554.png index 322770a3e..559775a54 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA7/EA1/EA2/EA2/EA1554.png and b/approved/html/EARoot/EA1/EA3/EA7/EA1/EA2/EA2/EA1554.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA7/EA1/EA2/EA2/EA1559.htm b/approved/html/EARoot/EA1/EA3/EA7/EA1/EA2/EA2/EA1559.htm index b5f0e3c79..a3def6644 100644 --- a/approved/html/EARoot/EA1/EA3/EA7/EA1/EA2/EA2/EA1559.htm +++ b/approved/html/EARoot/EA1/EA3/EA7/EA1/EA2/EA2/EA1559.htm @@ -111,7 +111,7 @@ - Public TypeName
  acceptableClassList + Public Boolean
  isGlobal @@ -125,7 +125,7 @@ Initial: - {Any} + Stereotype: @@ -137,7 +137,7 @@ Range: - Range:0 to * + Transient: @@ -159,7 +159,7 @@ - Public Boolean
  isGlobal + Public TypeName
  acceptableClassList @@ -173,7 +173,7 @@ Initial: - + {Any} Stereotype: @@ -185,7 +185,7 @@ Range: - + Range:0 to * Transient: @@ -215,27 +215,27 @@ - Protected
- generateID( registeredObj: Any, + Public
+ locate( name: LocalName, - + - + - + - +
-):LocalName +):Any @@ -257,7 +257,7 @@ Notes: - generate create a unique local name and assigns it to the passed "registeredObj." <br/> + locate takes a local name and find the object that is registered within this scope for this local name.<br/> @@ -269,26 +269,7 @@ Public
- locate( name: LocalName, - - - - - - - - - - - - - - - - - -
-):Any + name():GenericName @@ -304,17 +285,7 @@ -
- - - - -
- Notes: - - locate takes a local name and find the object that is registered within this scope for this local name.<br/> -
- + @@ -322,7 +293,26 @@ Public
- name():GenericName + select( name: GenericName, + + + + + + + + + + + + + + + + + +
+):Any @@ -346,45 +336,26 @@ Protected
- registerID( aName: LocalName, - - - - - - - - - - - - - - - - - -
- registeredObj: Reference<Any>, + generateID( registeredObj: Any, - + - + - + - +
-):Boolean +):LocalName @@ -406,7 +377,7 @@ Notes: - registerID allows the registeredObj to request a particular name. If the name is valid and currently unused, then the result is the same as generate (except the passed name is used) and the return is TRUE indicating successful registration. <br/>If the form of the name is invalid, or already in use, then "FALSE" is returned and the registration fails.<br/> + generate create a unique local name and assigns it to the passed "registeredObj." <br/> @@ -417,27 +388,46 @@ - Public
- select( name: GenericName, + Protected
+ registerID( aName: LocalName, - + - + - + - +
-):Any + registeredObj: Reference<Any>, + + + + + + + + + + + + + + + + + +
+):Boolean @@ -453,7 +443,17 @@ - +
+ + + + +
+ Notes: + + registerID allows the registeredObj to request a particular name. If the name is valid and currently unused, then the result is the same as generate (except the passed name is used) and the return is TRUE indicating successful registration. <br/>If the form of the name is invalid, or already in use, then "FALSE" is returned and the registration fails.<br/> +
+ diff --git a/approved/html/EARoot/EA1/EA3/EA7/EA1/EA2/EA3/EA1568.png b/approved/html/EARoot/EA1/EA3/EA7/EA1/EA2/EA3/EA1568.png index a4b091334..ac9396c00 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA7/EA1/EA2/EA3/EA1568.png and b/approved/html/EARoot/EA1/EA3/EA7/EA1/EA2/EA3/EA1568.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA7/EA1/EA2/EA3/EA1572.png b/approved/html/EARoot/EA1/EA3/EA7/EA1/EA2/EA3/EA1572.png index 99fea3692..9d9269307 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA7/EA1/EA2/EA3/EA1572.png and b/approved/html/EARoot/EA1/EA3/EA7/EA1/EA2/EA3/EA1572.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA7/EA1/EA2/EA3/EA1574.png b/approved/html/EARoot/EA1/EA3/EA7/EA1/EA2/EA3/EA1574.png index bb260f60e..ac38c1004 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA7/EA1/EA2/EA3/EA1574.png and b/approved/html/EARoot/EA1/EA3/EA7/EA1/EA2/EA3/EA1574.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA7/EA1/EA2/EA3/EA1578.png b/approved/html/EARoot/EA1/EA3/EA7/EA1/EA2/EA3/EA1578.png index c534b6c1d..72b8da591 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA7/EA1/EA2/EA3/EA1578.png and b/approved/html/EARoot/EA1/EA3/EA7/EA1/EA2/EA3/EA1578.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA7/EA1/EA2/EA3/EA1582.png b/approved/html/EARoot/EA1/EA3/EA7/EA1/EA2/EA3/EA1582.png index 8db192e01..57247ccd1 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA7/EA1/EA2/EA3/EA1582.png and b/approved/html/EARoot/EA1/EA3/EA7/EA1/EA2/EA3/EA1582.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA7/EA1/EA2/EA3/EA1586.png b/approved/html/EARoot/EA1/EA3/EA7/EA1/EA2/EA3/EA1586.png index c1d7b1a9c..933c5ac0d 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA7/EA1/EA2/EA3/EA1586.png and b/approved/html/EARoot/EA1/EA3/EA7/EA1/EA2/EA3/EA1586.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA7/EA1/EA2/EA3/EA1588.png b/approved/html/EARoot/EA1/EA3/EA7/EA1/EA2/EA3/EA1588.png index 8c91939ff..959c47106 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA7/EA1/EA2/EA3/EA1588.png and b/approved/html/EARoot/EA1/EA3/EA7/EA1/EA2/EA3/EA1588.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA7/EA1/EA2/EA3/EA1595.htm b/approved/html/EARoot/EA1/EA3/EA7/EA1/EA2/EA3/EA1595.htm index d1b68aab0..2dd30a3de 100644 --- a/approved/html/EARoot/EA1/EA3/EA7/EA1/EA2/EA3/EA1595.htm +++ b/approved/html/EARoot/EA1/EA3/EA7/EA1/EA2/EA3/EA1595.htm @@ -108,7 +108,7 @@ - Public CharacterString
  descirption + Public RecordType
  inputParameters @@ -156,7 +156,7 @@ - Public RecordType
  inputParameters + Public RecordType
  ouputParamters @@ -204,7 +204,7 @@ - Public CharacterString
  metaData + Public Type
  returnType @@ -252,7 +252,7 @@ - Public RecordType
  ouputParamters + Public CharacterString
  descirption @@ -300,7 +300,7 @@ - Public Type
  returnType + Public CharacterString
  metaData diff --git a/approved/html/EARoot/EA1/EA3/EA7/EA1/EA2/EA3/EA1599.htm b/approved/html/EARoot/EA1/EA3/EA7/EA1/EA2/EA3/EA1599.htm index 2af15297e..8c440e5e4 100644 --- a/approved/html/EARoot/EA1/EA3/EA7/EA1/EA2/EA3/EA1599.htm +++ b/approved/html/EARoot/EA1/EA3/EA7/EA1/EA2/EA3/EA1599.htm @@ -111,7 +111,7 @@ - Public TypeName
  acceptableClassList + Public LocalName
  schemaName @@ -125,7 +125,7 @@ Initial: - {Any} + Stereotype: @@ -137,7 +137,7 @@ Range: - Range:0 to * + Transient: @@ -207,7 +207,7 @@ - Public LocalName
  schemaName + Public TypeName
  acceptableClassList @@ -221,7 +221,7 @@ Initial: - + {Any} Stereotype: @@ -233,7 +233,7 @@ Range: - + Range:0 to * Transient: diff --git a/approved/html/EARoot/EA1/EA3/EA7/EA1/EA3/EA1/EA1637.png b/approved/html/EARoot/EA1/EA3/EA7/EA1/EA3/EA1/EA1637.png index 14bad3243..fa97bebe2 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA7/EA1/EA3/EA1/EA1637.png and b/approved/html/EARoot/EA1/EA3/EA7/EA1/EA3/EA1/EA1637.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA7/EA1/EA3/EA1/EA1639.png b/approved/html/EARoot/EA1/EA3/EA7/EA1/EA3/EA1/EA1639.png index 3ada04f4f..469648cc4 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA7/EA1/EA3/EA1/EA1639.png and b/approved/html/EARoot/EA1/EA3/EA7/EA1/EA3/EA1/EA1639.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA7/EA1/EA3/EA1/EA1641.png b/approved/html/EARoot/EA1/EA3/EA7/EA1/EA3/EA1/EA1641.png index c1dac54c5..1e3494517 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA7/EA1/EA3/EA1/EA1641.png and b/approved/html/EARoot/EA1/EA3/EA7/EA1/EA3/EA1/EA1641.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA7/EA1/EA3/EA1/EA1643.png b/approved/html/EARoot/EA1/EA3/EA7/EA1/EA3/EA1/EA1643.png index 6d8f96243..8498ca2ee 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA7/EA1/EA3/EA1/EA1643.png and b/approved/html/EARoot/EA1/EA3/EA7/EA1/EA3/EA1/EA1643.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA7/EA1/EA3/EA1/EA1645.png b/approved/html/EARoot/EA1/EA3/EA7/EA1/EA3/EA1/EA1645.png index 7670d9770..744ca71fa 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA7/EA1/EA3/EA1/EA1645.png and b/approved/html/EARoot/EA1/EA3/EA7/EA1/EA3/EA1/EA1645.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA7/EA1/EA3/EA1/EA1648.htm b/approved/html/EARoot/EA1/EA3/EA7/EA1/EA3/EA1/EA1648.htm index 3c3b212b9..c205f0677 100644 --- a/approved/html/EARoot/EA1/EA3/EA7/EA1/EA3/EA1/EA1648.htm +++ b/approved/html/EARoot/EA1/EA3/EA7/EA1/EA3/EA1/EA1648.htm @@ -157,7 +157,7 @@ - Public CharacterString
  day + Public CharacterString
  year @@ -253,7 +253,7 @@ - Public CharacterString
  year + Public CharacterString
  day diff --git a/approved/html/EARoot/EA1/EA3/EA7/EA1/EA3/EA1/EA1649.htm b/approved/html/EARoot/EA1/EA3/EA7/EA1/EA3/EA1/EA1649.htm index 6e1e6bae2..3f092b88a 100644 --- a/approved/html/EARoot/EA1/EA3/EA7/EA1/EA3/EA1/EA1649.htm +++ b/approved/html/EARoot/EA1/EA3/EA7/EA1/EA3/EA1/EA1649.htm @@ -108,7 +108,7 @@ - Public CharacterString
  determinationMethod + Public CharacterString
  precision @@ -156,7 +156,7 @@ - Public CharacterString
  precision + Public CharacterString
  determinationMethod diff --git a/approved/html/EARoot/EA1/EA3/EA7/EA1/EA3/EA5/EA1697.png b/approved/html/EARoot/EA1/EA3/EA7/EA1/EA3/EA5/EA1697.png index 74a02aec7..d8ba2113d 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA7/EA1/EA3/EA5/EA1697.png and b/approved/html/EARoot/EA1/EA3/EA7/EA1/EA3/EA5/EA1697.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA7/EA1/EA3/EA5/EA1701.png b/approved/html/EARoot/EA1/EA3/EA7/EA1/EA3/EA5/EA1701.png index 42a042d6a..e907df6c5 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA7/EA1/EA3/EA5/EA1701.png and b/approved/html/EARoot/EA1/EA3/EA7/EA1/EA3/EA5/EA1701.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA7/EA1/EA3/EA5/EA1703.png b/approved/html/EARoot/EA1/EA3/EA7/EA1/EA3/EA5/EA1703.png index 42c454839..49fe6833a 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA7/EA1/EA3/EA5/EA1703.png and b/approved/html/EARoot/EA1/EA3/EA7/EA1/EA3/EA5/EA1703.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA7/EA1/EA3/EA5/EA1708.htm b/approved/html/EARoot/EA1/EA3/EA7/EA1/EA3/EA5/EA1708.htm index 6c264fc63..fd5f12a9f 100644 --- a/approved/html/EARoot/EA1/EA3/EA7/EA1/EA3/EA5/EA1708.htm +++ b/approved/html/EARoot/EA1/EA3/EA7/EA1/EA3/EA5/EA1708.htm @@ -107,7 +107,7 @@ - Public <undefined>
  ISO10646-1 + Public <undefined>
  ISO10646-2 @@ -121,7 +121,7 @@ Initial: - + default Stereotype: @@ -155,7 +155,7 @@ - Public <undefined>
  ISO10646-2 + Public <undefined>
  ISO8859 @@ -169,7 +169,7 @@ Initial: - default + Stereotype: @@ -203,7 +203,7 @@ - Public <undefined>
  ISO8859 + Public <undefined>
  ISO10646-1 diff --git a/approved/html/EARoot/EA1/EA3/EA8/EA1/EA1743.htm b/approved/html/EARoot/EA1/EA3/EA8/EA1/EA1743.htm index f3e56f830..1308b1ecf 100644 --- a/approved/html/EARoot/EA1/EA3/EA8/EA1/EA1743.htm +++ b/approved/html/EARoot/EA1/EA3/EA8/EA1/EA1743.htm @@ -38,7 +38,7 @@ - + diff --git a/approved/html/EARoot/EA1/EA3/EA8/EA1/EA1744.png b/approved/html/EARoot/EA1/EA3/EA8/EA1/EA1744.png index 0303a495d..8671a1f92 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA8/EA1/EA1744.png and b/approved/html/EARoot/EA1/EA3/EA8/EA1/EA1744.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA8/EA1/EA1748.png b/approved/html/EARoot/EA1/EA3/EA8/EA1/EA1748.png index 8b5c57b40..4c032554e 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA8/EA1/EA1748.png and b/approved/html/EARoot/EA1/EA3/EA8/EA1/EA1748.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA8/EA1/EA1750.png b/approved/html/EARoot/EA1/EA3/EA8/EA1/EA1750.png index 49d5fa0b6..b2010a024 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA8/EA1/EA1750.png and b/approved/html/EARoot/EA1/EA3/EA8/EA1/EA1750.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA8/EA1/EA1752.png b/approved/html/EARoot/EA1/EA3/EA8/EA1/EA1752.png index b6fe34df0..49906f9e4 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA8/EA1/EA1752.png and b/approved/html/EARoot/EA1/EA3/EA8/EA1/EA1752.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA8/EA1/EA1760.png b/approved/html/EARoot/EA1/EA3/EA8/EA1/EA1760.png index fdd55bb42..ec532b8b9 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA8/EA1/EA1760.png and b/approved/html/EARoot/EA1/EA3/EA8/EA1/EA1760.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA8/EA1/EA1762.png b/approved/html/EARoot/EA1/EA3/EA8/EA1/EA1762.png index 173c8ef79..81f45d2a5 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA8/EA1/EA1762.png and b/approved/html/EARoot/EA1/EA3/EA8/EA1/EA1762.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA8/EA1/EA1764.png b/approved/html/EARoot/EA1/EA3/EA8/EA1/EA1764.png index 8cd9f5cde..2278fd75f 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA8/EA1/EA1764.png and b/approved/html/EARoot/EA1/EA3/EA8/EA1/EA1764.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA8/EA1/EA1766.png b/approved/html/EARoot/EA1/EA3/EA8/EA1/EA1766.png index 49cf033e2..9b3e265bf 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA8/EA1/EA1766.png and b/approved/html/EARoot/EA1/EA3/EA8/EA1/EA1766.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA8/EA1/EA1768.png b/approved/html/EARoot/EA1/EA3/EA8/EA1/EA1768.png index f2a99b5f2..5a221f6b6 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA8/EA1/EA1768.png and b/approved/html/EARoot/EA1/EA3/EA8/EA1/EA1768.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA8/EA1/EA1770.png b/approved/html/EARoot/EA1/EA3/EA8/EA1/EA1770.png index 00a890e66..e7f087df1 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA8/EA1/EA1770.png and b/approved/html/EARoot/EA1/EA3/EA8/EA1/EA1770.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA8/EA1/EA1772.png b/approved/html/EARoot/EA1/EA3/EA8/EA1/EA1772.png index dda2cbd46..9c346d8b5 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA8/EA1/EA1772.png and b/approved/html/EARoot/EA1/EA3/EA8/EA1/EA1772.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA8/EA1/EA1774.png b/approved/html/EARoot/EA1/EA3/EA8/EA1/EA1774.png index 9ef8b4488..cc4372843 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA8/EA1/EA1774.png and b/approved/html/EARoot/EA1/EA3/EA8/EA1/EA1774.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA8/EA1/EA1778.png b/approved/html/EARoot/EA1/EA3/EA8/EA1/EA1778.png index 98a4a75c7..5d6e1957d 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA8/EA1/EA1778.png and b/approved/html/EARoot/EA1/EA3/EA8/EA1/EA1778.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA8/EA1/EA1784.png b/approved/html/EARoot/EA1/EA3/EA8/EA1/EA1784.png index 679b3a4cd..d46f8024d 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA8/EA1/EA1784.png and b/approved/html/EARoot/EA1/EA3/EA8/EA1/EA1784.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA8/EA1/EA1786.png b/approved/html/EARoot/EA1/EA3/EA8/EA1/EA1786.png index 006ba6979..a3623bcd3 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA8/EA1/EA1786.png and b/approved/html/EARoot/EA1/EA3/EA8/EA1/EA1786.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA8/EA1/EA1788.png b/approved/html/EARoot/EA1/EA3/EA8/EA1/EA1788.png index 4c866d12f..cf9dc247b 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA8/EA1/EA1788.png and b/approved/html/EARoot/EA1/EA3/EA8/EA1/EA1788.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA8/EA1/EA1790.png b/approved/html/EARoot/EA1/EA3/EA8/EA1/EA1790.png index 7235f89da..cf2c10621 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA8/EA1/EA1790.png and b/approved/html/EARoot/EA1/EA3/EA8/EA1/EA1790.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA8/EA1/EA1792.png b/approved/html/EARoot/EA1/EA3/EA8/EA1/EA1792.png index 628e73c45..0ea7a1c73 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA8/EA1/EA1792.png and b/approved/html/EARoot/EA1/EA3/EA8/EA1/EA1792.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA8/EA1/EA1794.png b/approved/html/EARoot/EA1/EA3/EA8/EA1/EA1794.png index 1c4898fec..a806cb517 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA8/EA1/EA1794.png and b/approved/html/EARoot/EA1/EA3/EA8/EA1/EA1794.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA8/EA1/EA1798.htm b/approved/html/EARoot/EA1/EA3/EA8/EA1/EA1798.htm index 84ee25006..7016544bc 100644 --- a/approved/html/EARoot/EA1/EA3/EA8/EA1/EA1798.htm +++ b/approved/html/EARoot/EA1/EA3/EA8/EA1/EA1798.htm @@ -109,7 +109,7 @@ - Public Multiplicity
  cardinality + Public TypeName
  valueType @@ -157,7 +157,7 @@ - Public TypeName
  valueType + Public Multiplicity
  cardinality diff --git a/approved/html/EARoot/EA1/EA3/EA8/EA1/EA1800.htm b/approved/html/EARoot/EA1/EA3/EA8/EA1/EA1800.htm index e816e80c6..343156cdf 100644 --- a/approved/html/EARoot/EA1/EA3/EA8/EA1/EA1800.htm +++ b/approved/html/EARoot/EA1/EA3/EA8/EA1/EA1800.htm @@ -111,7 +111,7 @@ - Public Multiplicity
  cardinality + Public TypeName
  valueType @@ -207,7 +207,7 @@ - Public TypeName
  valueType + Public Multiplicity
  cardinality diff --git a/approved/html/EARoot/EA1/EA3/EA8/EA1/EA1804.htm b/approved/html/EARoot/EA1/EA3/EA8/EA1/EA1804.htm index a87de16c4..8bfa26819 100644 --- a/approved/html/EARoot/EA1/EA3/EA8/EA1/EA1804.htm +++ b/approved/html/EARoot/EA1/EA3/EA8/EA1/EA1804.htm @@ -107,7 +107,7 @@ - Public GenericName
  feature + Public GF_FeatureType
  featureType @@ -155,7 +155,7 @@ - Public GF_FeatureType
  featureType + Public Set<GF_FeatureType>
  setOfTypes @@ -203,7 +203,7 @@ - Public DS_DataSet
  setOfFeature + Public GenericName
  feature @@ -251,7 +251,7 @@ - Public Set<GF_FeatureType>
  setOfTypes + Public DS_DataSet
  setOfFeature diff --git a/approved/html/EARoot/EA1/EA3/EA8/EA1/EA1805.htm b/approved/html/EARoot/EA1/EA3/EA8/EA1/EA1805.htm index cff57e021..cb954251c 100644 --- a/approved/html/EARoot/EA1/EA3/EA8/EA1/EA1805.htm +++ b/approved/html/EARoot/EA1/EA3/EA8/EA1/EA1805.htm @@ -111,7 +111,7 @@ - Public CharacterString
  definition + Public LocalName
  typeName @@ -159,7 +159,7 @@ - Public Boolean
  isAbstract + Public CharacterString
  definition @@ -173,7 +173,7 @@ Initial: - false + Stereotype: @@ -207,7 +207,7 @@ - Public LocalName
  typeName + Public Boolean
  isAbstract @@ -221,7 +221,7 @@ Initial: - + false Stereotype: diff --git a/approved/html/EARoot/EA1/EA3/EA8/EA1/EA1806.htm b/approved/html/EARoot/EA1/EA3/EA8/EA1/EA1806.htm index 5c3fce11c..a0703ec3a 100644 --- a/approved/html/EARoot/EA1/EA3/EA8/EA1/EA1806.htm +++ b/approved/html/EARoot/EA1/EA3/EA8/EA1/EA1806.htm @@ -110,7 +110,7 @@ - Public CharacterString
  description + Public CharacterString
  name[0..1] @@ -158,7 +158,7 @@ - Public CharacterString
  name[0..1] + Public CharacterString
  description diff --git a/approved/html/EARoot/EA1/EA3/EA8/EA1/EA1810.htm b/approved/html/EARoot/EA1/EA3/EA8/EA1/EA1810.htm index a4099436d..1ee462942 100644 --- a/approved/html/EARoot/EA1/EA3/EA8/EA1/EA1810.htm +++ b/approved/html/EARoot/EA1/EA3/EA8/EA1/EA1810.htm @@ -110,7 +110,7 @@ - Public CharacterString
  definition + Public LocalName
  memberName @@ -158,7 +158,7 @@ - Public LocalName
  memberName + Public CharacterString
  definition diff --git a/approved/html/EARoot/EA1/EA3/EA8/EA1734.png b/approved/html/EARoot/EA1/EA3/EA8/EA1734.png index d6ba1b120..4074918fb 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA8/EA1734.png and b/approved/html/EARoot/EA1/EA3/EA8/EA1734.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA9/EA1/EA1842.png b/approved/html/EARoot/EA1/EA3/EA9/EA1/EA1842.png index 77645af20..457016239 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA9/EA1/EA1842.png and b/approved/html/EARoot/EA1/EA3/EA9/EA1/EA1842.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA9/EA1/EA1854.png b/approved/html/EARoot/EA1/EA3/EA9/EA1/EA1854.png index 829025133..738d65b5b 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA9/EA1/EA1854.png and b/approved/html/EARoot/EA1/EA3/EA9/EA1/EA1854.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA9/EA1/EA1872.png b/approved/html/EARoot/EA1/EA3/EA9/EA1/EA1872.png index cfb30409f..380531eb8 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA9/EA1/EA1872.png and b/approved/html/EARoot/EA1/EA3/EA9/EA1/EA1872.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA9/EA1/EA1874.png b/approved/html/EARoot/EA1/EA3/EA9/EA1/EA1874.png index b9781d688..4d081befa 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA9/EA1/EA1874.png and b/approved/html/EARoot/EA1/EA3/EA9/EA1/EA1874.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA9/EA1/EA1878.png b/approved/html/EARoot/EA1/EA3/EA9/EA1/EA1878.png index e249a7bc1..50aa73499 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA9/EA1/EA1878.png and b/approved/html/EARoot/EA1/EA3/EA9/EA1/EA1878.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA9/EA1/EA1880.png b/approved/html/EARoot/EA1/EA3/EA9/EA1/EA1880.png index 57c25d90e..51f5415ec 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA9/EA1/EA1880.png and b/approved/html/EARoot/EA1/EA3/EA9/EA1/EA1880.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA9/EA1/EA1887.htm b/approved/html/EARoot/EA1/EA3/EA9/EA1/EA1887.htm index ba35ccc95..33c1db57c 100644 --- a/approved/html/EARoot/EA1/EA3/EA9/EA1/EA1887.htm +++ b/approved/html/EARoot/EA1/EA3/EA9/EA1/EA1887.htm @@ -109,7 +109,7 @@ - Public Integer
  factor + Public CharacterString
  unit @@ -152,17 +152,7 @@ -
- - - - -
- Notes: - - The exponent of the multiplier that determines the resolution of the unit.  <br/> -
- +   @@ -225,7 +215,7 @@ - Public CharacterString
  unit + Public Integer
  factor @@ -268,7 +258,17 @@ -   +
+ + + + +
+ Notes: + + The exponent of the multiplier that determines the resolution of the unit.  <br/> +
+ diff --git a/approved/html/EARoot/EA1/EA3/EA9/EA1/EA1892.htm b/approved/html/EARoot/EA1/EA3/EA9/EA1/EA1892.htm index 9e938c5b9..53866cffc 100644 --- a/approved/html/EARoot/EA1/EA3/EA9/EA1/EA1892.htm +++ b/approved/html/EARoot/EA1/EA3/EA9/EA1/EA1892.htm @@ -109,7 +109,7 @@ - Public CharacterString
  days + Public CharacterString
  designator @@ -123,7 +123,7 @@ Initial: - + P Stereotype: @@ -135,7 +135,7 @@ Range: - Range:0 to 1 + Transient: @@ -157,7 +157,7 @@ - Public CharacterString
  designator + Public CharacterString
  years @@ -171,7 +171,7 @@ Initial: - P + Stereotype: @@ -183,7 +183,7 @@ Range: - + Range:0 to 1 Transient: @@ -205,7 +205,7 @@ - Public CharacterString
  hours + Public CharacterString
  months @@ -253,7 +253,7 @@ - Public CharacterString
  minutes + Public CharacterString
  days @@ -301,7 +301,7 @@ - Public CharacterString
  months + Public CharacterString
  timeIndicator @@ -315,7 +315,7 @@ Initial: - + T Stereotype: @@ -349,7 +349,7 @@ - Public CharacterString
  seconds + Public CharacterString
  hours @@ -397,7 +397,7 @@ - Public CharacterString
  timeIndicator + Public CharacterString
  minutes @@ -411,7 +411,7 @@ Initial: - T + Stereotype: @@ -445,7 +445,7 @@ - Public CharacterString
  years + Public CharacterString
  seconds diff --git a/approved/html/EARoot/EA1/EA3/EA9/EA2/EA1899.png b/approved/html/EARoot/EA1/EA3/EA9/EA2/EA1899.png index c013413bf..ce59a5a2b 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA9/EA2/EA1899.png and b/approved/html/EARoot/EA1/EA3/EA9/EA2/EA1899.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA9/EA2/EA1907.png b/approved/html/EARoot/EA1/EA3/EA9/EA2/EA1907.png index e9c8e63ce..2820892e6 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA9/EA2/EA1907.png and b/approved/html/EARoot/EA1/EA3/EA9/EA2/EA1907.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA9/EA2/EA1915.png b/approved/html/EARoot/EA1/EA3/EA9/EA2/EA1915.png index 8dae51004..512b297a0 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA9/EA2/EA1915.png and b/approved/html/EARoot/EA1/EA3/EA9/EA2/EA1915.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA9/EA2/EA1921.png b/approved/html/EARoot/EA1/EA3/EA9/EA2/EA1921.png index 1c6bea622..1be9bbc5d 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA9/EA2/EA1921.png and b/approved/html/EARoot/EA1/EA3/EA9/EA2/EA1921.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA9/EA2/EA1927.png b/approved/html/EARoot/EA1/EA3/EA9/EA2/EA1927.png index 612df8924..bc90179d0 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA9/EA2/EA1927.png and b/approved/html/EARoot/EA1/EA3/EA9/EA2/EA1927.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA9/EA2/EA1929.png b/approved/html/EARoot/EA1/EA3/EA9/EA2/EA1929.png index 92b7b554f..84f4a64a5 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA9/EA2/EA1929.png and b/approved/html/EARoot/EA1/EA3/EA9/EA2/EA1929.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA9/EA2/EA1935.png b/approved/html/EARoot/EA1/EA3/EA9/EA2/EA1935.png index 5f90eafe4..3a5464147 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA9/EA2/EA1935.png and b/approved/html/EARoot/EA1/EA3/EA9/EA2/EA1935.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA9/EA2/EA1937.png b/approved/html/EARoot/EA1/EA3/EA9/EA2/EA1937.png index 1e2239d77..cfdff9315 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA9/EA2/EA1937.png and b/approved/html/EARoot/EA1/EA3/EA9/EA2/EA1937.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA9/EA2/EA1939.png b/approved/html/EARoot/EA1/EA3/EA9/EA2/EA1939.png index 85f7b34cf..f9431319d 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA9/EA2/EA1939.png and b/approved/html/EARoot/EA1/EA3/EA9/EA2/EA1939.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA9/EA2/EA1941.png b/approved/html/EARoot/EA1/EA3/EA9/EA2/EA1941.png index 01711e35a..60564f085 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA9/EA2/EA1941.png and b/approved/html/EARoot/EA1/EA3/EA9/EA2/EA1941.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA9/EA2/EA1943.png b/approved/html/EARoot/EA1/EA3/EA9/EA2/EA1943.png index f2edea245..271f1b0de 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA9/EA2/EA1943.png and b/approved/html/EARoot/EA1/EA3/EA9/EA2/EA1943.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA9/EA2/EA1945.png b/approved/html/EARoot/EA1/EA3/EA9/EA2/EA1945.png index ffb0cd3c3..c2ac81e36 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA9/EA2/EA1945.png and b/approved/html/EARoot/EA1/EA3/EA9/EA2/EA1945.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA9/EA2/EA1947.png b/approved/html/EARoot/EA1/EA3/EA9/EA2/EA1947.png index 49a2f6ade..4cd036af0 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA9/EA2/EA1947.png and b/approved/html/EARoot/EA1/EA3/EA9/EA2/EA1947.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA9/EA2/EA1949.png b/approved/html/EARoot/EA1/EA3/EA9/EA2/EA1949.png index 13f3f02c5..e33a6eb7e 100644 Binary files a/approved/html/EARoot/EA1/EA3/EA9/EA2/EA1949.png and b/approved/html/EARoot/EA1/EA3/EA9/EA2/EA1949.png differ diff --git a/approved/html/EARoot/EA1/EA3/EA9/EA2/EA1954.htm b/approved/html/EARoot/EA1/EA3/EA9/EA2/EA1954.htm index 5757e7ab0..84483c396 100644 --- a/approved/html/EARoot/EA1/EA3/EA9/EA2/EA1954.htm +++ b/approved/html/EARoot/EA1/EA3/EA9/EA2/EA1954.htm @@ -108,7 +108,7 @@ - Public TM_Period
  epochOfUse + Public CharacterString
  name @@ -150,14 +150,14 @@ - + RationalRose$Java:Final=False
RationalRose$Java:GenerateDataMember=True
RationalRose$Java:Transient=False
RationalRose$Java:Volatile=False
RationalRose$Oracle8:CompositeUnique=False
RationalRose$Oracle8:IsIndex=False
RationalRose$Oracle8:IsPrimaryKey=False
RationalRose$Oracle8:IsUnique=False
RationalRose$Oracle8:NullsAllowed=True
RationalRose$Oracle8:Precision=2
RationalRose$Oracle8:Scale=6
RationalRose$Visual Basic:DataMemberName=$relationship
RationalRose$Visual Basic:GenerateDataMember=True
RationalRose$Visual Basic:GenerateGetOperation=False
RationalRose$Visual Basic:GenerateLetOperation=False
RationalRose$Visual Basic:GenerateSetOperation=False
RationalRose$Visual Basic:IsConst=False
RationalRose$Visual Basic:NameIfUnlabeled=the$supplier
RationalRose$Visual Basic:New=False
RationalRose$Visual Basic:WithEvents=False
Notes: - The period for which the calendar era was used as a basis for dating, where the temporal positions of period.begin and period.end are expressed as Julian day numbers.  <br/> + The name of the calendar era.  <br/>
@@ -166,7 +166,7 @@ - Public JulianDate
  julianReference + Public CharacterString
  referenceEvent @@ -215,7 +215,7 @@ Notes: - The Julian date that corresponds to the reference date.  <br/> + The name or description of the event that fixes the base scale of the calendar era.  <br/> @@ -224,7 +224,7 @@ - Public CharacterString
  name + Public TM_CalDate
  referenceDate @@ -266,14 +266,14 @@ - RationalRose$Java:Final=False
RationalRose$Java:GenerateDataMember=True
RationalRose$Java:Transient=False
RationalRose$Java:Volatile=False
RationalRose$Oracle8:CompositeUnique=False
RationalRose$Oracle8:IsIndex=False
RationalRose$Oracle8:IsPrimaryKey=False
RationalRose$Oracle8:IsUnique=False
RationalRose$Oracle8:NullsAllowed=True
RationalRose$Oracle8:Precision=2
RationalRose$Oracle8:Scale=6
RationalRose$Visual Basic:DataMemberName=$relationship
RationalRose$Visual Basic:GenerateDataMember=True
RationalRose$Visual Basic:GenerateGetOperation=False
RationalRose$Visual Basic:GenerateLetOperation=False
RationalRose$Visual Basic:GenerateSetOperation=False
RationalRose$Visual Basic:IsConst=False
RationalRose$Visual Basic:NameIfUnlabeled=the$supplier
RationalRose$Visual Basic:New=False
RationalRose$Visual Basic:WithEvents=False
+
Notes: - The name of the calendar era.  <br/> + The date of the reference event expressed as a date in this calendar.  <br/>
@@ -282,7 +282,7 @@ - Public TM_CalDate
  referenceDate + Public JulianDate
  julianReference @@ -331,7 +331,7 @@ Notes: - The date of the reference event expressed as a date in this calendar.  <br/> + The Julian date that corresponds to the reference date.  <br/> @@ -340,7 +340,7 @@ - Public CharacterString
  referenceEvent + Public TM_Period
  epochOfUse @@ -389,7 +389,7 @@ Notes: - The name or description of the event that fixes the base scale of the calendar era.  <br/> + The period for which the calendar era was used as a basis for dating, where the temporal positions of period.begin and period.end are expressed as Julian day numbers.  <br/> diff --git a/approved/html/EARoot/EA1/EA3/EA9/EA2/EA1958.htm b/approved/html/EARoot/EA1/EA3/EA9/EA2/EA1958.htm index 2e0ed6e7e..466ec2745 100644 --- a/approved/html/EARoot/EA1/EA3/EA9/EA2/EA1958.htm +++ b/approved/html/EARoot/EA1/EA3/EA9/EA2/EA1958.htm @@ -110,7 +110,7 @@ - Public CharacterString
  interval + Public DateTime
  origin @@ -159,7 +159,7 @@ Notes: - The standard unit of time used as the standard interval for the scale.  <br/> + The origin of the interval scale.  <br/> @@ -168,7 +168,7 @@ - Public DateTime
  origin + Public CharacterString
  interval @@ -217,7 +217,7 @@ Notes: - The origin of the interval scale.  <br/> + The standard unit of time used as the standard interval for the scale.  <br/> diff --git a/approved/html/EARoot/EA1/EA3/EA9/EA2/EA1961.htm b/approved/html/EARoot/EA1/EA3/EA9/EA2/EA1961.htm index 4a3ff2213..65c821f28 100644 --- a/approved/html/EARoot/EA1/EA3/EA9/EA2/EA1961.htm +++ b/approved/html/EARoot/EA1/EA3/EA9/EA2/EA1961.htm @@ -111,7 +111,7 @@ - Public DateTime
  begin + Public CharacterString
  name @@ -137,7 +137,7 @@ Range: - Range:0 to 1 + Transient: @@ -160,7 +160,7 @@ Notes: - An optional attribute that provides the DateTime at which the TM_OrdinalEra began.  <br/> + A string which uniquely identifies the TM_OrdinalEra within this TM_OrdinalReferenceSystem.  <br/> @@ -169,7 +169,7 @@ - Public DateTime
  end + Public DateTime
  begin @@ -218,7 +218,7 @@ Notes: - An optional attribute that provides the DateTime at which the TM_OrdinalEra ended.  <br/> + An optional attribute that provides the DateTime at which the TM_OrdinalEra began.  <br/> @@ -227,7 +227,7 @@ - Public CharacterString
  name + Public DateTime
  end @@ -253,7 +253,7 @@ Range: - + Range:0 to 1 Transient: @@ -276,7 +276,7 @@ Notes: - A string which uniquely identifies the TM_OrdinalEra within this TM_OrdinalReferenceSystem.  <br/> + An optional attribute that provides the DateTime at which the TM_OrdinalEra ended.  <br/> diff --git a/approved/html/EARoot/EA1/EA3/EA9/EA2/EA1964.htm b/approved/html/EARoot/EA1/EA3/EA9/EA2/EA1964.htm index 4d42198ca..fadadf5c2 100644 --- a/approved/html/EARoot/EA1/EA3/EA9/EA2/EA1964.htm +++ b/approved/html/EARoot/EA1/EA3/EA9/EA2/EA1964.htm @@ -203,7 +203,7 @@ - Public DateTime
  dateTime8601 + Public Time
  time8601 @@ -251,7 +251,7 @@ - Public Time
  time8601 + Public DateTime
  dateTime8601 diff --git a/approved/html/EARoot/EA1/EA3/EA9/EA2/EA1965.htm b/approved/html/EARoot/EA1/EA3/EA9/EA2/EA1965.htm index 2d5b2a9ab..c0712a87e 100644 --- a/approved/html/EARoot/EA1/EA3/EA9/EA2/EA1965.htm +++ b/approved/html/EARoot/EA1/EA3/EA9/EA2/EA1965.htm @@ -110,7 +110,7 @@ - Public EX_Extent
  domainOfValidity + Public RS_Identifier
  name @@ -136,7 +136,7 @@ Range: - Range:0 to * + Transient: @@ -158,7 +158,7 @@ - Public RS_Identifier
  name + Public EX_Extent
  domainOfValidity @@ -184,7 +184,7 @@ Range: - + Range:0 to * Transient: diff --git a/approved/html/EARoot/EA1/EA4/EA1/EA1/EA7092.png b/approved/html/EARoot/EA1/EA4/EA1/EA1/EA7092.png index c0333ac50..cbd7a6afb 100644 Binary files a/approved/html/EARoot/EA1/EA4/EA1/EA1/EA7092.png and b/approved/html/EARoot/EA1/EA4/EA1/EA1/EA7092.png differ diff --git a/approved/html/EARoot/EA1/EA4/EA1/EA1/EA7094.htm b/approved/html/EARoot/EA1/EA4/EA1/EA1/EA7094.htm index 1337eff6d..385b7621c 100644 --- a/approved/html/EARoot/EA1/EA4/EA1/EA1/EA7094.htm +++ b/approved/html/EARoot/EA1/EA4/EA1/EA1/EA7094.htm @@ -109,7 +109,7 @@ - Public ByteEncoding
  byteEncoding + Public Integer
  byteLength @@ -135,7 +135,7 @@ Range: - + Range:0 to 1 Transient: @@ -151,14 +151,14 @@ - asXMLAttribute=true
isMetadata=false
sequenceNumber=2
+ asXMLAttribute=true
isMetadata=false
sequenceNumber=1
Notes: - Byte encoding method used to encode the binary data (raw or base 64)<br/><br/> + Total length in bytes of the binary stream (if known in advance)<br/><br/>
@@ -167,7 +167,7 @@ - Public Integer
  byteLength + Public ByteEncoding
  byteEncoding @@ -193,7 +193,7 @@ Range: - Range:0 to 1 + Transient: @@ -209,14 +209,14 @@ - asXMLAttribute=true
isMetadata=false
sequenceNumber=1
+ asXMLAttribute=true
isMetadata=false
sequenceNumber=2
Notes: - Total length in bytes of the binary stream (if known in advance)<br/><br/> + Byte encoding method used to encode the binary data (raw or base 64)<br/><br/>
diff --git a/approved/html/EARoot/EA1/EA4/EA1/EA1/EA7095.htm b/approved/html/EARoot/EA1/EA4/EA1/EA1/EA7095.htm index b26be7a40..cbf51ab87 100644 --- a/approved/html/EARoot/EA1/EA4/EA1/EA1/EA7095.htm +++ b/approved/html/EARoot/EA1/EA4/EA1/EA1/EA7095.htm @@ -109,7 +109,7 @@ - Public Integer
  byteLength + Public CharacterString
  ref @@ -135,7 +135,7 @@ Range: - Range:0 to 1 + Transient: @@ -151,14 +151,14 @@ - asXMLAttribute=true
isMetadata=false
sequenceNumber=2
+ asXMLAttribute=true
isMetadata=false
sequenceNumber=1
Notes: - Length in byte of this binary block (if known in advance)<br/><br/> + Reference to the aggregate data component that this binary block encoding settings apply to<br/><br/>
@@ -167,7 +167,7 @@ - Public ScopedName
  compression + Public Integer
  byteLength @@ -209,14 +209,14 @@ - asXMLAttribute=true
isMetadata=false
sequenceNumber=6
+ asXMLAttribute=true
isMetadata=false
sequenceNumber=2
Notes: - Name of the compression method used to encrypt the block of values described by the referenced data component<br/><br/> + Length in byte of this binary block (if known in advance)<br/><br/>
@@ -225,7 +225,7 @@ - Public ScopedName
  encryption + Public Integer
  paddingBytes-before @@ -267,14 +267,14 @@ - asXMLAttribute=true
isMetadata=false
sequenceNumber=5
+ asXMLAttribute=true
isMetadata=false
sequenceNumber=3
Notes: - Name of the encryption method used to encrypt the block of values described by the referenced data component<br/><br/> + Number of padding bytes present in the stream before this binary block<br/><br/>
@@ -341,7 +341,7 @@ - Public Integer
  paddingBytes-before + Public ScopedName
  encryption @@ -383,14 +383,14 @@ - asXMLAttribute=true
isMetadata=false
sequenceNumber=3
+ asXMLAttribute=true
isMetadata=false
sequenceNumber=5
Notes: - Number of padding bytes present in the stream before this binary block<br/><br/> + Name of the encryption method used to encrypt the block of values described by the referenced data component<br/><br/>
@@ -399,7 +399,7 @@ - Public CharacterString
  ref + Public ScopedName
  compression @@ -425,7 +425,7 @@ Range: - + Range:0 to 1 Transient: @@ -441,14 +441,14 @@ - asXMLAttribute=true
isMetadata=false
sequenceNumber=1
+ asXMLAttribute=true
isMetadata=false
sequenceNumber=6
Notes: - Reference to the aggregate data component that this binary block encoding settings apply to<br/><br/> + Name of the compression method used to encrypt the block of values described by the referenced data component<br/><br/>
diff --git a/approved/html/EARoot/EA1/EA4/EA1/EA1/EA7098.htm b/approved/html/EARoot/EA1/EA4/EA1/EA1/EA7098.htm index 8dddce61c..1cc1dc580 100644 --- a/approved/html/EARoot/EA1/EA4/EA1/EA1/EA7098.htm +++ b/approved/html/EARoot/EA1/EA4/EA1/EA1/EA7098.htm @@ -109,7 +109,7 @@ - Public Integer
  bitLength + Public CharacterString
  ref @@ -135,7 +135,7 @@ Range: - Range:0 to 1 + Transient: @@ -151,13 +151,23 @@ - asXMLAttribute=true
isMetadata=false
sequenceNumber=4
-   + asXMLAttribute=true
isMetadata=false
sequenceNumber=1
+
+ + + + +
+ Notes: + + Reference to the data component that these binary encoding settings apply to<br/><br/> +
+ - Public Integer
  byteLength + Public ScopedName
  dataType @@ -183,7 +193,7 @@ Range: - Range:0 to 1 + Transient: @@ -199,14 +209,14 @@ - asXMLAttribute=true
isMetadata=false
sequenceNumber=3
+ asXMLAttribute=true
isMetadata=false
sequenceNumber=2
Notes: - Byte length of this field when a custom data type is used<br/><br/> + Binary data type used to encode the value(s) of the referenced data component<br/><br/>
@@ -215,7 +225,7 @@ - Public ScopedName
  dataType + Public Integer
  byteLength @@ -241,7 +251,7 @@ Range: - + Range:0 to 1 Transient: @@ -257,14 +267,14 @@ - asXMLAttribute=true
isMetadata=false
sequenceNumber=2
+ asXMLAttribute=true
isMetadata=false
sequenceNumber=3
Notes: - Binary data type used to encode the value(s) of the referenced data component<br/><br/> + Byte length of this field when a custom data type is used<br/><br/>
@@ -273,7 +283,7 @@ - Public ScopedName
  encryption + Public Integer
  bitLength @@ -315,23 +325,13 @@ - asXMLAttribute=true
isMetadata=false
sequenceNumber=8
-
- - - - -
- Notes: - - Name of the encryption method used to encrypt the value of this field<br/><br/> -
- + asXMLAttribute=true
isMetadata=false
sequenceNumber=4
+   - Public CharacterString
  ref + Public Integer
  significantBits @@ -357,7 +357,7 @@ Range: - + Range:0 to 1 Transient: @@ -373,14 +373,14 @@ - asXMLAttribute=true
isMetadata=false
sequenceNumber=1
+ asXMLAttribute=true
isMetadata=false
sequenceNumber=5
Notes: - Reference to the data component that these binary encoding settings apply to<br/><br/> + Number of significant bits actually used for a binary encoded numerical value (all remaining bits shall be set to 0)<br/><br/>
@@ -389,7 +389,7 @@ - Public Integer
  significantBits + Public ScopedName
  encryption @@ -431,14 +431,14 @@ - asXMLAttribute=true
isMetadata=false
sequenceNumber=5
+ asXMLAttribute=true
isMetadata=false
sequenceNumber=8
Notes: - Number of significant bits actually used for a binary encoded numerical value (all remaining bits shall be set to 0)<br/><br/> + Name of the encryption method used to encrypt the value of this field<br/><br/>
diff --git a/approved/html/EARoot/EA1/EA4/EA1/EA1/EA7099.htm b/approved/html/EARoot/EA1/EA4/EA1/EA1/EA7099.htm index 7f32b5b8a..482823352 100644 --- a/approved/html/EARoot/EA1/EA4/EA1/EA1/EA7099.htm +++ b/approved/html/EARoot/EA1/EA4/EA1/EA1/EA7099.htm @@ -108,7 +108,7 @@ - Public Block
  byBlock + Public Component
  byComponent @@ -150,13 +150,13 @@ - isMetadata=false
sequenceNumber=2
+ isMetadata=false
sequenceNumber=1
  - Public Component
  byComponent + Public Block
  byBlock @@ -198,7 +198,7 @@ - isMetadata=false
sequenceNumber=1
+ isMetadata=false
sequenceNumber=2
  diff --git a/approved/html/EARoot/EA1/EA4/EA1/EA2/EA7101.png b/approved/html/EARoot/EA1/EA4/EA1/EA2/EA7101.png index 00c4ee1ec..a1001f801 100644 Binary files a/approved/html/EARoot/EA1/EA4/EA1/EA2/EA7101.png and b/approved/html/EARoot/EA1/EA4/EA1/EA2/EA7101.png differ diff --git a/approved/html/EARoot/EA1/EA4/EA1/EA2/EA7108.htm b/approved/html/EARoot/EA1/EA4/EA1/EA2/EA7108.htm index 18737a832..ff898e276 100644 --- a/approved/html/EARoot/EA1/EA4/EA1/EA2/EA7108.htm +++ b/approved/html/EARoot/EA1/EA4/EA1/EA2/EA7108.htm @@ -109,7 +109,7 @@ - Public CharacterString
  description + Public ScopedName
  identifier @@ -151,14 +151,14 @@ - inlineOrByReference=inlineOrByReference
isMetadata=false
sequenceNumber=3
+ inlineOrByReference=inlineOrByReference
isMetadata=false
sequenceNumber=1
Notes: - Textual description (i.e. human readable) of the data component usually used to clarify its nature<br/><br/> + Unique identifier of the data component. It can be used to globally identify a particular component of the dataset, a process input/output or a universal constant<br/><br/>
@@ -167,7 +167,7 @@ - Public ScopedName
  identifier + Public CharacterString
  label @@ -209,14 +209,14 @@ - inlineOrByReference=inlineOrByReference
isMetadata=false
sequenceNumber=1
+ inlineOrByReference=inlineOrByReference
isMetadata=false
sequenceNumber=2
Notes: - Unique identifier of the data component. It can be used to globally identify a particular component of the dataset, a process input/output or a universal constant<br/><br/> + Textual label for the data component . This is often used for displaying a human readable name for a dataset field or a process input/output<br/><br/>
@@ -225,7 +225,7 @@ - Public CharacterString
  label + Public CharacterString
  description @@ -267,14 +267,14 @@ - inlineOrByReference=inlineOrByReference
isMetadata=false
sequenceNumber=2
+ inlineOrByReference=inlineOrByReference
isMetadata=false
sequenceNumber=3
Notes: - Textual label for the data component . This is often used for displaying a human readable name for a dataset field or a process input/output<br/><br/> + Textual description (i.e. human readable) of the data component usually used to clarify its nature<br/><br/>
diff --git a/approved/html/EARoot/EA1/EA4/EA1/EA2/EA7113.htm b/approved/html/EARoot/EA1/EA4/EA1/EA2/EA7113.htm index 914369c93..9581801fb 100644 --- a/approved/html/EARoot/EA1/EA4/EA1/EA2/EA7113.htm +++ b/approved/html/EARoot/EA1/EA4/EA1/EA2/EA7113.htm @@ -156,7 +156,7 @@ - Public DateTime
  byDateTime + Public Time
  byTime @@ -198,13 +198,13 @@ - isMetadata=false
sequenceNumber=3
+ isMetadata=false
sequenceNumber=2
  - Public TM_IndeterminateValue
  byIndeterminateValue + Public DateTime
  byDateTime @@ -246,13 +246,13 @@ - isMetadata=false
sequenceNumber=4
+ isMetadata=false
sequenceNumber=3
  - Public Time
  byTime + Public TM_IndeterminateValue
  byIndeterminateValue @@ -294,7 +294,7 @@ - isMetadata=false
sequenceNumber=2
+ isMetadata=false
sequenceNumber=4
  diff --git a/approved/html/EARoot/EA1/EA4/EA1/EA3/EA7119.png b/approved/html/EARoot/EA1/EA4/EA1/EA3/EA7119.png index ed439cde0..e1313f8bb 100644 Binary files a/approved/html/EARoot/EA1/EA4/EA1/EA3/EA7119.png and b/approved/html/EARoot/EA1/EA4/EA1/EA3/EA7119.png differ diff --git a/approved/html/EARoot/EA1/EA4/EA1/EA3/EA7121.png b/approved/html/EARoot/EA1/EA4/EA1/EA3/EA7121.png index beca07793..b6c363541 100644 Binary files a/approved/html/EARoot/EA1/EA4/EA1/EA3/EA7121.png and b/approved/html/EARoot/EA1/EA4/EA1/EA3/EA7121.png differ diff --git a/approved/html/EARoot/EA1/EA4/EA1/EA3/EA7125.htm b/approved/html/EARoot/EA1/EA4/EA1/EA3/EA7125.htm index 480e0bd64..c9de03e29 100644 --- a/approved/html/EARoot/EA1/EA4/EA1/EA3/EA7125.htm +++ b/approved/html/EARoot/EA1/EA4/EA1/EA3/EA7125.htm @@ -109,7 +109,7 @@ - Public SC_CRS
  localFrame + Public SC_CRS
  referenceFrame @@ -158,7 +158,7 @@ Notes: - Frame of reference whose origin is located by the transformation defined by this matrix<br/><br/> + Frame of reference (usually spatial) with respect to which the coordinates of this matrix are expressed<br/>                    <br/><br/> @@ -167,7 +167,7 @@ - Public SC_CRS
  referenceFrame + Public SC_CRS
  localFrame @@ -216,7 +216,7 @@ Notes: - Frame of reference (usually spatial) with respect to which the coordinates of this matrix are expressed<br/>                    <br/><br/> + Frame of reference whose origin is located by the transformation defined by this matrix<br/><br/> diff --git a/approved/html/EARoot/EA1/EA4/EA1/EA5/EA7131.png b/approved/html/EARoot/EA1/EA4/EA1/EA5/EA7131.png index a461db871..590097efc 100644 Binary files a/approved/html/EARoot/EA1/EA4/EA1/EA5/EA7131.png and b/approved/html/EARoot/EA1/EA4/EA1/EA5/EA7131.png differ diff --git a/approved/html/EARoot/EA1/EA4/EA1/EA5/EA7133.png b/approved/html/EARoot/EA1/EA4/EA1/EA5/EA7133.png index fdd661e6c..c712560a0 100644 Binary files a/approved/html/EARoot/EA1/EA4/EA1/EA5/EA7133.png and b/approved/html/EARoot/EA1/EA4/EA1/EA5/EA7133.png differ diff --git a/approved/html/EARoot/EA1/EA4/EA1/EA5/EA7136.htm b/approved/html/EARoot/EA1/EA4/EA1/EA5/EA7136.htm index 1c586ba1b..681a6b4ef 100644 --- a/approved/html/EARoot/EA1/EA4/EA1/EA5/EA7136.htm +++ b/approved/html/EARoot/EA1/EA4/EA1/EA5/EA7136.htm @@ -109,7 +109,7 @@ - Public AnyNumerical
  coordinate + Public SC_CRS
  referenceFrame @@ -151,14 +151,14 @@ - sequenceNumber=1
soft-typed=true
+ asXMLAttribute=true
inlineOrByReference=inlineOrByReference
isMetadata=false
Notes: - Definition of the coordinate provided as a data component with a numerical representation<br/><br/> + Frame of reference (usually spatial) with respect to which the coordinates of this vector are expressed. A reference frame anchors a vector value to a real world datum.<br/><br/>
@@ -225,7 +225,7 @@ - Public SC_CRS
  referenceFrame + Public AnyNumerical
  coordinate @@ -267,14 +267,14 @@ - asXMLAttribute=true
inlineOrByReference=inlineOrByReference
isMetadata=false
+ sequenceNumber=1
soft-typed=true
Notes: - Frame of reference (usually spatial) with respect to which the coordinates of this vector are expressed. A reference frame anchors a vector value to a real world datum.<br/><br/> + Definition of the coordinate provided as a data component with a numerical representation<br/><br/>
diff --git a/approved/html/EARoot/EA1/EA4/EA1/EA6/EA7138.png b/approved/html/EARoot/EA1/EA4/EA1/EA6/EA7138.png index 4aeec8566..cc897fe4b 100644 Binary files a/approved/html/EARoot/EA1/EA4/EA1/EA6/EA7138.png and b/approved/html/EARoot/EA1/EA4/EA1/EA6/EA7138.png differ diff --git a/approved/html/EARoot/EA1/EA4/EA1/EA6/EA7140.png b/approved/html/EARoot/EA1/EA4/EA1/EA6/EA7140.png index 4a9916816..6e1e3deb5 100644 Binary files a/approved/html/EARoot/EA1/EA4/EA1/EA6/EA7140.png and b/approved/html/EARoot/EA1/EA4/EA1/EA6/EA7140.png differ diff --git a/approved/html/EARoot/EA1/EA4/EA1/EA6/EA7144.png b/approved/html/EARoot/EA1/EA4/EA1/EA6/EA7144.png index b67904b3f..96c96af59 100644 Binary files a/approved/html/EARoot/EA1/EA4/EA1/EA6/EA7144.png and b/approved/html/EARoot/EA1/EA4/EA1/EA6/EA7144.png differ diff --git a/approved/html/EARoot/EA1/EA4/EA1/EA6/EA7146.png b/approved/html/EARoot/EA1/EA4/EA1/EA6/EA7146.png index d0d30dfe6..80b1a6849 100644 Binary files a/approved/html/EARoot/EA1/EA4/EA1/EA6/EA7146.png and b/approved/html/EARoot/EA1/EA4/EA1/EA6/EA7146.png differ diff --git a/approved/html/EARoot/EA1/EA4/EA1/EA6/EA7148.png b/approved/html/EARoot/EA1/EA4/EA1/EA6/EA7148.png index 8ad398e9a..4ef334c20 100644 Binary files a/approved/html/EARoot/EA1/EA4/EA1/EA6/EA7148.png and b/approved/html/EARoot/EA1/EA4/EA1/EA6/EA7148.png differ diff --git a/approved/html/EARoot/EA1/EA4/EA1/EA6/EA7150.png b/approved/html/EARoot/EA1/EA4/EA1/EA6/EA7150.png index f5a8daf7f..aada6bb1a 100644 Binary files a/approved/html/EARoot/EA1/EA4/EA1/EA6/EA7150.png and b/approved/html/EARoot/EA1/EA4/EA1/EA6/EA7150.png differ diff --git a/approved/html/EARoot/EA1/EA4/EA1/EA6/EA7153.htm b/approved/html/EARoot/EA1/EA4/EA1/EA6/EA7153.htm index 9d6e073db..fc9f9b13b 100644 --- a/approved/html/EARoot/EA1/EA4/EA1/EA6/EA7153.htm +++ b/approved/html/EARoot/EA1/EA4/EA1/EA6/EA7153.htm @@ -108,7 +108,7 @@ - Public CharacterString
  axisID + Public SC_CRS
  referenceFrame @@ -157,7 +157,7 @@ Notes: - Specifies the reference axis (refer to gml:axisID). The reference frame URI should also be specified unless it is inherited from parent Vector<br/><br/> + Frame of reference (usually temporal or spatial) with respect to which the value of the component is expressed. A reference frame anchors a value to a real world datum.<br/><br/> @@ -166,7 +166,7 @@ - Public NilValues
  nilValues + Public CharacterString
  axisID @@ -208,8 +208,18 @@ - isMetadata=false
sequenceNumber=2
-   + asXMLAttribute=true
inlineOrByReference=inlineOrByReference
isMetadata=false
+
+ + + + +
+ Notes: + + Specifies the reference axis (refer to gml:axisID). The reference frame URI should also be specified unless it is inherited from parent Vector<br/><br/> +
+ @@ -262,7 +272,7 @@ - Public SC_CRS
  referenceFrame + Public NilValues
  nilValues @@ -304,18 +314,8 @@ - asXMLAttribute=true
inlineOrByReference=inlineOrByReference
isMetadata=false
-
- - - - -
- Notes: - - Frame of reference (usually temporal or spatial) with respect to which the value of the component is expressed. A reference frame anchors a value to a real world datum.<br/><br/> -
- + isMetadata=false
sequenceNumber=2
+   diff --git a/approved/html/EARoot/EA1/EA4/EA1/EA6/EA7154.htm b/approved/html/EARoot/EA1/EA4/EA1/EA6/EA7154.htm index 90b1cc681..6f1f1ee98 100644 --- a/approved/html/EARoot/EA1/EA4/EA1/EA6/EA7154.htm +++ b/approved/html/EARoot/EA1/EA4/EA1/EA6/EA7154.htm @@ -108,7 +108,7 @@ - Public TimePair
  interval + Public TM_Position
  value @@ -150,13 +150,13 @@ - isMetadata=false
sequenceNumber=2
+ isMetadata=false
sequenceNumber=1
  - Public Integer
  significantFigures + Public TimePair
  interval @@ -182,7 +182,7 @@ Range: - Range:0 to 1 + Range:0 to * Transient: @@ -198,13 +198,13 @@ - isMetadata=false
sequenceNumber=3
+ isMetadata=false
sequenceNumber=2
  - Public TM_Position
  value + Public Integer
  significantFigures @@ -230,7 +230,7 @@ Range: - Range:0 to * + Range:0 to 1 Transient: @@ -246,7 +246,7 @@ - isMetadata=false
sequenceNumber=1
+ isMetadata=false
sequenceNumber=3
  diff --git a/approved/html/EARoot/EA1/EA4/EA1/EA6/EA7155.htm b/approved/html/EARoot/EA1/EA4/EA1/EA6/EA7155.htm index 59991fa18..4e59237b8 100644 --- a/approved/html/EARoot/EA1/EA4/EA1/EA6/EA7155.htm +++ b/approved/html/EARoot/EA1/EA4/EA1/EA6/EA7155.htm @@ -108,7 +108,7 @@ - Public CharacterString
  pattern + Public CharacterString
  value @@ -134,7 +134,7 @@ Range: - Range:0 to 1 + Range:0 to * Transient: @@ -150,13 +150,13 @@ - isMetadata=false
sequenceNumber=2
+ isMetadata=false
sequenceNumber=1
  - Public CharacterString
  value + Public CharacterString
  pattern @@ -182,7 +182,7 @@ Range: - Range:0 to * + Range:0 to 1 Transient: @@ -198,7 +198,7 @@ - isMetadata=false
sequenceNumber=1
+ isMetadata=false
sequenceNumber=2
  diff --git a/approved/html/EARoot/EA1/EA4/EA1/EA6/EA7156.htm b/approved/html/EARoot/EA1/EA4/EA1/EA6/EA7156.htm index 4b60b74b7..08a1f2b77 100644 --- a/approved/html/EARoot/EA1/EA4/EA1/EA6/EA7156.htm +++ b/approved/html/EARoot/EA1/EA4/EA1/EA6/EA7156.htm @@ -108,7 +108,7 @@ - Public RealPair
  interval + Public Real
  value @@ -126,7 +126,7 @@ Stereotype: - <<Property>> + <<property>> Ordered: @@ -150,13 +150,13 @@ - isMetadata=false
sequenceNumber=2
+ isMetadata=false
sequenceNumber=1
  - Public Integer
  significantFigures + Public RealPair
  interval @@ -174,7 +174,7 @@ Stereotype: - <<property>> + <<Property>> Ordered: @@ -182,7 +182,7 @@ Range: - Range:0 to 1 + Range:0 to * Transient: @@ -198,13 +198,13 @@ - isMetadata=false
sequenceNumber=3
+ isMetadata=false
sequenceNumber=2
  - Public Real
  value + Public Integer
  significantFigures @@ -230,7 +230,7 @@ Range: - Range:0 to * + Range:0 to 1 Transient: @@ -246,7 +246,7 @@ - isMetadata=false
sequenceNumber=1
+ isMetadata=false
sequenceNumber=3
  diff --git a/approved/html/EARoot/EA1/EA4/EA1/EA6/EA7158.htm b/approved/html/EARoot/EA1/EA4/EA1/EA6/EA7158.htm index 099b88f70..b6ad3692e 100644 --- a/approved/html/EARoot/EA1/EA4/EA1/EA6/EA7158.htm +++ b/approved/html/EARoot/EA1/EA4/EA1/EA6/EA7158.htm @@ -108,7 +108,7 @@ - Public CategoryRange
  byCategoryRange + Public QuantityRange
  byQuantityRange @@ -126,7 +126,7 @@ Stereotype: - <<property>> + <<Property>> Ordered: @@ -150,13 +150,13 @@ - inlineOrByReference=inlineOrByReference
isMetadata=false
sequenceNumber=4
+ isMetadata=false
sequenceNumber=1
  - Public CountRange
  byCountRange + Public TimeRange
  byTimeRange @@ -198,13 +198,13 @@ - isMetadata=false
sequenceNumber=3
+ isMetadata=false
sequenceNumber=2
  - Public QuantityRange
  byQuantityRange + Public CountRange
  byCountRange @@ -246,13 +246,13 @@ - isMetadata=false
sequenceNumber=1
+ isMetadata=false
sequenceNumber=3
  - Public TimeRange
  byTimeRange + Public CategoryRange
  byCategoryRange @@ -270,7 +270,7 @@ Stereotype: - <<Property>> + <<property>> Ordered: @@ -294,7 +294,7 @@ - isMetadata=false
sequenceNumber=2
+ inlineOrByReference=inlineOrByReference
isMetadata=false
sequenceNumber=4
  diff --git a/approved/html/EARoot/EA1/EA4/EA1/EA6/EA7159.htm b/approved/html/EARoot/EA1/EA4/EA1/EA6/EA7159.htm index a339c4ebd..048f82df1 100644 --- a/approved/html/EARoot/EA1/EA4/EA1/EA6/EA7159.htm +++ b/approved/html/EARoot/EA1/EA4/EA1/EA6/EA7159.htm @@ -156,7 +156,7 @@ - Public Category
  byCategory + Public Count
  byCount @@ -174,7 +174,7 @@ Stereotype: - <<property>> + <<Property>> Ordered: @@ -198,13 +198,13 @@ - inlineOrByReference=inlineOrByReference
isMetadata=false
sequenceNumber=5
+ isMetadata=false
sequenceNumber=2
  - Public Count
  byCount + Public Quantity
  byQuantity @@ -246,13 +246,13 @@ - isMetadata=false
sequenceNumber=2
+ isMetadata=false
sequenceNumber=3
  - Public Quantity
  byQuantity + Public Time
  byTime @@ -270,7 +270,7 @@ Stereotype: - <<Property>> + <<property>> Ordered: @@ -294,13 +294,13 @@ - isMetadata=false
sequenceNumber=3
+ isMetadata=false
sequenceNumber=4
  - Public Text
  byText + Public Category
  byCategory @@ -318,7 +318,7 @@ Stereotype: - <<Property>> + <<property>> Ordered: @@ -342,13 +342,13 @@ - isMetadata=false
sequenceNumber=6
+ inlineOrByReference=inlineOrByReference
isMetadata=false
sequenceNumber=5
  - Public Time
  byTime + Public Text
  byText @@ -366,7 +366,7 @@ Stereotype: - <<property>> + <<Property>> Ordered: @@ -390,7 +390,7 @@ - isMetadata=false
sequenceNumber=4
+ isMetadata=false
sequenceNumber=6
  diff --git a/approved/html/EARoot/EA1/EA4/EA1/EA6/EA7166.htm b/approved/html/EARoot/EA1/EA4/EA1/EA6/EA7166.htm index 36770dfc0..399d9956a 100644 --- a/approved/html/EARoot/EA1/EA4/EA1/EA6/EA7166.htm +++ b/approved/html/EARoot/EA1/EA4/EA1/EA6/EA7166.htm @@ -108,7 +108,7 @@ - Public Category
  byCategory + Public Quantity
  byQuantity @@ -150,13 +150,13 @@ - inlineOrByReference=inlineOrByReference
isMetadata=false
sequenceNumber=3
+ isMetadata=false
sequenceNumber=1
  - Public Quantity
  byQuantity + Public QuantityRange
  byQuantityRange @@ -198,13 +198,13 @@ - isMetadata=false
sequenceNumber=1
+ isMetadata=false
sequenceNumber=2
  - Public QuantityRange
  byQuantityRange + Public Category
  byCategory @@ -246,7 +246,7 @@ - isMetadata=false
sequenceNumber=2
+ inlineOrByReference=inlineOrByReference
isMetadata=false
sequenceNumber=3
  diff --git a/approved/html/EARoot/EA1/EA4/EA1/EA6/EA7167.htm b/approved/html/EARoot/EA1/EA4/EA1/EA6/EA7167.htm index 86d6e0274..d6a4895bb 100644 --- a/approved/html/EARoot/EA1/EA4/EA1/EA6/EA7167.htm +++ b/approved/html/EARoot/EA1/EA4/EA1/EA6/EA7167.htm @@ -109,7 +109,7 @@ - Public AllowedValues
  constraint + Public UnitOfMeasure
  uom @@ -135,7 +135,7 @@ Range: - Range:0 to 1 + Transient: @@ -151,13 +151,23 @@ - isMetadata=false
sequenceNumber=2
-   + inlineOrByReference=inlineOrByReference
isMetadata=false
sequenceNumber=1
+
+ + + + +
+ Notes: + + Unit of measure used to express the value of this data component<br/><br/> +
+ - Public UnitOfMeasure
  uom + Public AllowedValues
  constraint @@ -183,7 +193,7 @@ Range: - + Range:0 to 1 Transient: @@ -199,18 +209,8 @@ - inlineOrByReference=inlineOrByReference
isMetadata=false
sequenceNumber=1
-
- - - - -
- Notes: - - Unit of measure used to express the value of this data component<br/><br/> -
- + isMetadata=false
sequenceNumber=2
+   diff --git a/approved/html/EARoot/EA1/EA4/EA1/EA6/EA7168.htm b/approved/html/EARoot/EA1/EA4/EA1/EA6/EA7168.htm index 0dfa1690a..e8e31effb 100644 --- a/approved/html/EARoot/EA1/EA4/EA1/EA6/EA7168.htm +++ b/approved/html/EARoot/EA1/EA4/EA1/EA6/EA7168.htm @@ -109,7 +109,7 @@ - Public AllowedValues
  constraint + Public UnitOfMeasure
  uom @@ -135,7 +135,7 @@ Range: - Range:0 to 1 + Transient: @@ -151,13 +151,23 @@ - inlineOrByReference=inlineOrByReference
isMetadata=false
sequenceNumber=2
-   + inlineOrByReference=inlineOrByReference
isMetadata=false
sequenceNumber=1
+
+ + + + +
+ Notes: + + Unit of measure used to express the value of this data component<br/><br/> +
+ - Public UnitOfMeasure
  uom + Public AllowedValues
  constraint @@ -183,7 +193,7 @@ Range: - + Range:0 to 1 Transient: @@ -199,18 +209,8 @@ - inlineOrByReference=inlineOrByReference
isMetadata=false
sequenceNumber=1
-
- - - - -
- Notes: - - Unit of measure used to express the value of this data component<br/><br/> -
- + inlineOrByReference=inlineOrByReference
isMetadata=false
sequenceNumber=2
+   diff --git a/approved/html/EARoot/EA1/EA4/EA1/EA6/EA7170.htm b/approved/html/EARoot/EA1/EA4/EA1/EA6/EA7170.htm index 9bb1a7eab..b0519454d 100644 --- a/approved/html/EARoot/EA1/EA4/EA1/EA6/EA7170.htm +++ b/approved/html/EARoot/EA1/EA4/EA1/EA6/EA7170.htm @@ -109,7 +109,7 @@ - Public AllowedTimes
  constraint + Public DateTime
  referenceTime @@ -151,8 +151,18 @@ - isMetadata=false
sequenceNumber=2
-   + asXMLAttribute=True
inlineOrByReference=inlineOrByReference
isMetadata=false
+
+ + + + +
+ Notes: + + Specifies the origin of the temporal reference frame as an ISO8601 date (used to specify time after an epoch that is to say in a custom frame)<br/><br/> +
+ @@ -215,7 +225,7 @@ - Public DateTime
  referenceTime + Public UomTime
  uom @@ -241,7 +251,7 @@ Range: - Range:0 to 1 + Transient: @@ -257,14 +267,14 @@ - asXMLAttribute=True
inlineOrByReference=inlineOrByReference
isMetadata=false
+ inlineOrByReference=inlineOrByReference
isMetadata=false
sequenceNumber=1
Notes: - Specifies the origin of the temporal reference frame as an ISO8601 date (used to specify time after an epoch that is to say in a custom frame)<br/><br/> + Temporal unit of measure used to express the value of this data component<br/><br/>
@@ -273,7 +283,7 @@ - Public UomTime
  uom + Public AllowedTimes
  constraint @@ -299,7 +309,7 @@ Range: - + Range:0 to 1 Transient: @@ -315,18 +325,8 @@ - inlineOrByReference=inlineOrByReference
isMetadata=false
sequenceNumber=1
-
- - - - -
- Notes: - - Temporal unit of measure used to express the value of this data component<br/><br/> -
- + isMetadata=false
sequenceNumber=2
+   diff --git a/approved/html/EARoot/EA1/EA4/EA1/EA6/EA7171.htm b/approved/html/EARoot/EA1/EA4/EA1/EA6/EA7171.htm index ebe61dc7a..e5b8a0ea0 100644 --- a/approved/html/EARoot/EA1/EA4/EA1/EA6/EA7171.htm +++ b/approved/html/EARoot/EA1/EA4/EA1/EA6/EA7171.htm @@ -109,7 +109,7 @@ - Public AllowedTimes
  constraint + Public DateTime
  referenceTime @@ -151,8 +151,18 @@ - inlineOrByReference=inlineOrByReference
isMetadata=false
sequenceNumber=2
-   + asXMLAttribute=true
inlineOrByReference=inlineOrByReference
isMetadata=false
+
+ + + + +
+ Notes: + + Specifies the origin of the temporal reference frame as an ISO8601 date (used to specify time after an epoch that is to say in a custom frame)<br/><br/> +
+ @@ -215,7 +225,7 @@ - Public DateTime
  referenceTime + Public UomTime
  uom @@ -241,7 +251,7 @@ Range: - Range:0 to 1 + Transient: @@ -257,14 +267,14 @@ - asXMLAttribute=true
inlineOrByReference=inlineOrByReference
isMetadata=false
+ inlineOrByReference=inlineOrByReference
isMetadata=false
sequenceNumber=1
Notes: - Specifies the origin of the temporal reference frame as an ISO8601 date (used to specify time after an epoch that is to say in a custom frame)<br/><br/> + Temporal unit of measure used to express the value of this data component<br/><br/>
@@ -273,7 +283,7 @@ - Public UomTime
  uom + Public AllowedTimes
  constraint @@ -299,7 +309,7 @@ Range: - + Range:0 to 1 Transient: @@ -315,18 +325,8 @@ - inlineOrByReference=inlineOrByReference
isMetadata=false
sequenceNumber=1
-
- - - - -
- Notes: - - Temporal unit of measure used to express the value of this data component<br/><br/> -
- + inlineOrByReference=inlineOrByReference
isMetadata=false
sequenceNumber=2
+   diff --git a/approved/html/EARoot/EA1/EA4/EA1/EA7/EA7173.png b/approved/html/EARoot/EA1/EA4/EA1/EA7/EA7173.png index f1c8cb482..7c78e9336 100644 Binary files a/approved/html/EARoot/EA1/EA4/EA1/EA7/EA7173.png and b/approved/html/EARoot/EA1/EA4/EA1/EA7/EA7173.png differ diff --git a/approved/html/EARoot/EA1/EA4/EA1/EA7/EA7175.png b/approved/html/EARoot/EA1/EA4/EA1/EA7/EA7175.png index 4ada5646b..e71983c03 100644 Binary files a/approved/html/EARoot/EA1/EA4/EA1/EA7/EA7175.png and b/approved/html/EARoot/EA1/EA4/EA1/EA7/EA7175.png differ diff --git a/approved/html/EARoot/EA1/EA4/EA1/EA7/EA7178.htm b/approved/html/EARoot/EA1/EA4/EA1/EA7/EA7178.htm index 20981be40..b84075c77 100644 --- a/approved/html/EARoot/EA1/EA4/EA1/EA7/EA7178.htm +++ b/approved/html/EARoot/EA1/EA4/EA1/EA7/EA7178.htm @@ -109,7 +109,7 @@ - Public CharacterString
  blockSeparator + Public CharacterString
  tokenSeparator @@ -158,7 +158,7 @@ Notes: - Character sequence used as the block separator (i.e. between two successive blocks in the data set. The end of a block is reached once all values from the data tree have been encoded once)<br/><br/> + Character sequence used as the token separator (i.e. between two successive values)<br/><br/> @@ -167,7 +167,7 @@ - Public Boolean
  collapseWhiteSpaces + Public CharacterString
  blockSeparator @@ -181,7 +181,7 @@ Initial: - true + Stereotype: @@ -193,7 +193,7 @@ Range: - Range:0 to 1 + Transient: @@ -216,7 +216,7 @@ Notes: - Indicates whether white spaces (i.e. space, tab, CR, LF) should be collapsed with separators when parsing the data stream<br/><br/> + Character sequence used as the block separator (i.e. between two successive blocks in the data set. The end of a block is reached once all values from the data tree have been encoded once)<br/><br/> @@ -283,7 +283,7 @@ - Public CharacterString
  tokenSeparator + Public Boolean
  collapseWhiteSpaces @@ -297,7 +297,7 @@ Initial: - + true Stereotype: @@ -309,7 +309,7 @@ Range: - + Range:0 to 1 Transient: @@ -332,7 +332,7 @@ Notes: - Character sequence used as the token separator (i.e. between two successive values)<br/><br/> + Indicates whether white spaces (i.e. space, tab, CR, LF) should be collapsed with separators when parsing the data stream<br/><br/> diff --git a/approved/html/EARoot/EA1/EA4/EA2/EA1/EA7212.png b/approved/html/EARoot/EA1/EA4/EA2/EA1/EA7212.png index 8251c9fca..1c44cf3f1 100644 Binary files a/approved/html/EARoot/EA1/EA4/EA2/EA1/EA7212.png and b/approved/html/EARoot/EA1/EA4/EA2/EA1/EA7212.png differ diff --git a/approved/html/EARoot/EA1/EA4/EA2/EA10/EA7257.png b/approved/html/EARoot/EA1/EA4/EA2/EA10/EA7257.png index 3f7c1085d..0c513cef0 100644 Binary files a/approved/html/EARoot/EA1/EA4/EA2/EA10/EA7257.png and b/approved/html/EARoot/EA1/EA4/EA2/EA10/EA7257.png differ diff --git a/approved/html/EARoot/EA1/EA4/EA2/EA10/EA7259.png b/approved/html/EARoot/EA1/EA4/EA2/EA10/EA7259.png index de8e446d4..05212f3c1 100644 Binary files a/approved/html/EARoot/EA1/EA4/EA2/EA10/EA7259.png and b/approved/html/EARoot/EA1/EA4/EA2/EA10/EA7259.png differ diff --git a/approved/html/EARoot/EA1/EA4/EA2/EA10/EA7261.png b/approved/html/EARoot/EA1/EA4/EA2/EA10/EA7261.png index 669aae717..a7dd22894 100644 Binary files a/approved/html/EARoot/EA1/EA4/EA2/EA10/EA7261.png and b/approved/html/EARoot/EA1/EA4/EA2/EA10/EA7261.png differ diff --git a/approved/html/EARoot/EA1/EA4/EA2/EA10/EA7263.png b/approved/html/EARoot/EA1/EA4/EA2/EA10/EA7263.png index e88cee358..04bc79f99 100644 Binary files a/approved/html/EARoot/EA1/EA4/EA2/EA10/EA7263.png and b/approved/html/EARoot/EA1/EA4/EA2/EA10/EA7263.png differ diff --git a/approved/html/EARoot/EA1/EA4/EA2/EA10/EA7270.htm b/approved/html/EARoot/EA1/EA4/EA2/EA10/EA7270.htm index 8f3a902e8..7b07bbd13 100644 --- a/approved/html/EARoot/EA1/EA4/EA2/EA10/EA7270.htm +++ b/approved/html/EARoot/EA1/EA4/EA2/EA10/EA7270.htm @@ -108,7 +108,7 @@ - Public TM_Position
  endAnchorPoint + Public TM_Position
  startAnchorPoint @@ -150,13 +150,13 @@ - sequenceNumber=60
+ sequenceNumber=50
  - Public TM_Position
  startAnchorPoint + Public TM_Position
  endAnchorPoint @@ -198,7 +198,7 @@ - sequenceNumber=50
+ sequenceNumber=60
  diff --git a/approved/html/EARoot/EA1/EA4/EA2/EA10/EA7271.htm b/approved/html/EARoot/EA1/EA4/EA2/EA10/EA7271.htm index 6a78645f6..6b998d91a 100644 --- a/approved/html/EARoot/EA1/EA4/EA2/EA10/EA7271.htm +++ b/approved/html/EARoot/EA1/EA4/EA2/EA10/EA7271.htm @@ -107,7 +107,7 @@ - Public
  Estimate + Public
  Good @@ -155,7 +155,7 @@ - Public
  Good + Public
  Suspect @@ -203,7 +203,7 @@ - Public
  Missing + Public
  Estimate @@ -299,7 +299,7 @@ - Public
  Suspect + Public
  Unchecked @@ -347,7 +347,7 @@ - Public
  Unchecked + Public
  Missing diff --git a/approved/html/EARoot/EA1/EA4/EA2/EA10/EA7272.htm b/approved/html/EARoot/EA1/EA4/EA2/EA10/EA7272.htm index 8968deaad..d4adb3dea 100644 --- a/approved/html/EARoot/EA1/EA4/EA2/EA10/EA7272.htm +++ b/approved/html/EARoot/EA1/EA4/EA2/EA10/EA7272.htm @@ -107,7 +107,7 @@ - Public
  AveragePrec + Public
  Continuous @@ -155,7 +155,7 @@ - Public
  AverageSucc + Public
  Discontinuous @@ -203,7 +203,7 @@ - Public
  ConstPrec + Public
  InstantTotal @@ -251,7 +251,7 @@ - Public
  ConstSucc + Public
  AveragePrec @@ -299,7 +299,7 @@ - Public
  Continuous + Public
  MaxPrec @@ -347,7 +347,7 @@ - Public
  Discontinuous + Public
  MinPrec @@ -395,7 +395,7 @@ - Public
  InstantTotal + Public
  PrecTotal @@ -443,7 +443,7 @@ - Public
  MaxPrec + Public
  AverageSucc @@ -491,7 +491,7 @@ - Public
  MaxSucc + Public
  TotalSucc @@ -539,7 +539,7 @@ - Public
  MinPrec + Public
  MinSucc @@ -587,7 +587,7 @@ - Public
  MinSucc + Public
  MaxSucc @@ -635,7 +635,7 @@ - Public
  PrecTotal + Public
  ConstPrec @@ -683,7 +683,7 @@ - Public
  TotalSucc + Public
  ConstSucc diff --git a/approved/html/EARoot/EA1/EA4/EA2/EA10/EA7273.htm b/approved/html/EARoot/EA1/EA4/EA2/EA10/EA7273.htm index cb54aa642..a5e65e213 100644 --- a/approved/html/EARoot/EA1/EA4/EA2/EA10/EA7273.htm +++ b/approved/html/EARoot/EA1/EA4/EA2/EA10/EA7273.htm @@ -108,7 +108,7 @@ - Public TM_PeriodDuration
  aggregationDuration + Public DataQualityCode
  quality @@ -151,22 +151,12 @@ -
- - - - -
- Notes: - - Specifies the time period over which the values have been aggregated. E.g. 15 minutely. <br/> -
- +   - Public CharacterString
  comment + Public NilReason
  nilReason @@ -214,7 +204,7 @@ - Public NilReason
  nilReason + Public CharacterString
  comment @@ -262,7 +252,7 @@ - Public ProcessingCode
  processing + Public OM_Observation
  relatedObservation @@ -311,7 +301,7 @@ Notes: - A code item indicating the processing that has occurred to the point. <br/> + A reference to a related OM_Observation.<br/> @@ -378,7 +368,7 @@ - Public DataQualityCode
  quality + Public ProcessingCode
  processing @@ -421,12 +411,22 @@ -   +
+ + + + +
+ Notes: + + A code item indicating the processing that has occurred to the point. <br/> +
+ - Public OM_Observation
  relatedObservation + Public MD_DataIdentification
  source @@ -475,7 +475,7 @@ Notes: - A reference to a related OM_Observation.<br/> + A code item indicating the processing that has occurred to the point. By reference only.<br/> @@ -484,7 +484,7 @@ - Public MD_DataIdentification
  source + Public TM_PeriodDuration
  aggregationDuration @@ -533,7 +533,7 @@ Notes: - A code item indicating the processing that has occurred to the point. By reference only.<br/> + Specifies the time period over which the values have been aggregated. E.g. 15 minutely. <br/> diff --git a/approved/html/EARoot/EA1/EA4/EA2/EA10/EA7275.htm b/approved/html/EARoot/EA1/EA4/EA2/EA10/EA7275.htm index 1c4ca7868..476fa1ed1 100644 --- a/approved/html/EARoot/EA1/EA4/EA2/EA10/EA7275.htm +++ b/approved/html/EARoot/EA1/EA4/EA2/EA10/EA7275.htm @@ -107,7 +107,7 @@ - Public CharacterString
  comment + Public GenericName
  sharedQualityCode @@ -149,13 +149,13 @@ - sequenceNumber=40
+ sequenceNumber=10
  - Public GenericName
  qualifier + Public GenericName
  quality @@ -181,7 +181,7 @@ Range: - Range:0 to * + Range:0 to 2 Transient: @@ -197,13 +197,13 @@ - sequenceNumber=30
+ sequenceNumber=20
  - Public GenericName
  quality + Public GenericName
  qualifier @@ -229,7 +229,7 @@ Range: - Range:0 to 2 + Range:0 to * Transient: @@ -245,13 +245,13 @@ - sequenceNumber=20
+ sequenceNumber=30
  - Public GenericName
  sharedQualityCode + Public CharacterString
  comment @@ -293,7 +293,7 @@ - sequenceNumber=10
+ sequenceNumber=40
  diff --git a/approved/html/EARoot/EA1/EA4/EA2/EA10/EA7278.htm b/approved/html/EARoot/EA1/EA4/EA2/EA10/EA7278.htm index 6855a3104..fd52c5aca 100644 --- a/approved/html/EARoot/EA1/EA4/EA2/EA10/EA7278.htm +++ b/approved/html/EARoot/EA1/EA4/EA2/EA10/EA7278.htm @@ -157,7 +157,7 @@ - Public TM_Period
  domainExtent + Public TM_PeriodDuration
  spacing @@ -205,7 +205,7 @@ - Public NamedValue
  extension + Public TM_Period
  domainExtent @@ -231,7 +231,7 @@ Range: - Range:0 to * + Range:0 to 1 Transient: @@ -253,7 +253,7 @@ - Public TM_PeriodDuration
  spacing + Public NamedValue
  extension @@ -279,7 +279,7 @@ Range: - Range:0 to 1 + Range:0 to * Transient: diff --git a/approved/html/EARoot/EA1/EA4/EA2/EA11/EA7283.png b/approved/html/EARoot/EA1/EA4/EA2/EA11/EA7283.png index 47bf24432..8b47b11a4 100644 Binary files a/approved/html/EARoot/EA1/EA4/EA2/EA11/EA7283.png and b/approved/html/EARoot/EA1/EA4/EA2/EA11/EA7283.png differ diff --git a/approved/html/EARoot/EA1/EA4/EA2/EA13/EA7303.png b/approved/html/EARoot/EA1/EA4/EA2/EA13/EA7303.png index e995ce24e..8d26d1c1f 100644 Binary files a/approved/html/EARoot/EA1/EA4/EA2/EA13/EA7303.png and b/approved/html/EARoot/EA1/EA4/EA2/EA13/EA7303.png differ diff --git a/approved/html/EARoot/EA1/EA4/EA2/EA14/EA7308.png b/approved/html/EARoot/EA1/EA4/EA2/EA14/EA7308.png index 083b866cd..0399fe21f 100644 Binary files a/approved/html/EARoot/EA1/EA4/EA2/EA14/EA7308.png and b/approved/html/EARoot/EA1/EA4/EA2/EA14/EA7308.png differ diff --git a/approved/html/EARoot/EA1/EA4/EA2/EA14/EA7310.htm b/approved/html/EARoot/EA1/EA4/EA2/EA14/EA7310.htm index 4dfe116fa..887ecbd23 100644 --- a/approved/html/EARoot/EA1/EA4/EA2/EA14/EA7310.htm +++ b/approved/html/EARoot/EA1/EA4/EA2/EA14/EA7310.htm @@ -109,7 +109,7 @@ - Public Quantity
  accuracy + Public CensoredReasonCode
  censoredReason @@ -152,12 +152,22 @@ -   +
+ + + + +
+ Notes: + + Used to indicate the reason the value has been censored (e.g. below a threshold). <br/> +
+ - Public TM_PeriodDuration
  aggregationDuration + Public Quantity
  accuracy @@ -200,22 +210,12 @@ -
- - - - -
- Notes: - - Describes the temporal aggregation that has occurred to the value. <br/> -
- +   - Public CensoredReasonCode
  censoredReason + Public InterpolationCode
  interpolationCode @@ -241,7 +241,7 @@ Range: - Range:0 to 1 + Transient: @@ -258,22 +258,12 @@ -
- - - - -
- Notes: - - Used to indicate the reason the value has been censored (e.g. below a threshold). <br/> -
- +   - Public InterpolationCode
  interpolationCode + Public TM_PeriodDuration
  aggregationDuration @@ -299,7 +289,7 @@ Range: - + Range:0 to 1 Transient: @@ -316,7 +306,17 @@ -   +
+ + + + +
+ Notes: + + Describes the temporal aggregation that has occurred to the value. <br/> +
+ diff --git a/approved/html/EARoot/EA1/EA4/EA2/EA14/EA7311.htm b/approved/html/EARoot/EA1/EA4/EA2/EA14/EA7311.htm index 2ee17abb7..6bd2c82d3 100644 --- a/approved/html/EARoot/EA1/EA4/EA2/EA14/EA7311.htm +++ b/approved/html/EARoot/EA1/EA4/EA2/EA14/EA7311.htm @@ -109,7 +109,7 @@ - Public TM_Period
  accumulationAnchorTime + Public Boolean
  cumulative @@ -135,7 +135,7 @@ Range: - Range:0 to 1 + Transient: @@ -151,7 +151,7 @@ - sequenceNumber=40
+ sequenceNumber=1
  @@ -205,7 +205,7 @@ - Public Boolean
  cumulative + Public TM_Period
  accumulationAnchorTime @@ -231,7 +231,7 @@ Range: - + Range:0 to 1 Transient: @@ -247,13 +247,13 @@ - sequenceNumber=1
+ sequenceNumber=40
  - Public TM_Position
  endAnchorPoint + Public TM_Position
  startAnchorPoint @@ -301,7 +301,7 @@ - Public TM_PeriodDuration
  maxGapPeriod + Public TM_Position
  endAnchorPoint @@ -349,7 +349,7 @@ - Public TM_Position
  startAnchorPoint + Public TM_PeriodDuration
  maxGapPeriod diff --git a/approved/html/EARoot/EA1/EA4/EA2/EA16/EA7320.png b/approved/html/EARoot/EA1/EA4/EA2/EA16/EA7320.png index 9c77b9150..e1382033d 100644 Binary files a/approved/html/EARoot/EA1/EA4/EA2/EA16/EA7320.png and b/approved/html/EARoot/EA1/EA4/EA2/EA16/EA7320.png differ diff --git a/approved/html/EARoot/EA1/EA4/EA2/EA16/EA7322.png b/approved/html/EARoot/EA1/EA4/EA2/EA16/EA7322.png index d8e878a34..c045ef474 100644 Binary files a/approved/html/EARoot/EA1/EA4/EA2/EA16/EA7322.png and b/approved/html/EARoot/EA1/EA4/EA2/EA16/EA7322.png differ diff --git a/approved/html/EARoot/EA1/EA4/EA2/EA17/EA7327.png b/approved/html/EARoot/EA1/EA4/EA2/EA17/EA7327.png index e703e8bfe..ce08a9f24 100644 Binary files a/approved/html/EARoot/EA1/EA4/EA2/EA17/EA7327.png and b/approved/html/EARoot/EA1/EA4/EA2/EA17/EA7327.png differ diff --git a/approved/html/EARoot/EA1/EA4/EA2/EA17/EA7329.htm b/approved/html/EARoot/EA1/EA4/EA2/EA17/EA7329.htm index 9528ec80a..2db551c6a 100644 --- a/approved/html/EARoot/EA1/EA4/EA2/EA17/EA7329.htm +++ b/approved/html/EARoot/EA1/EA4/EA2/EA17/EA7329.htm @@ -169,7 +169,7 @@ - Public CharacterString
  comment + Public CD_VerticalDatum
  verticalDatum @@ -195,7 +195,7 @@ Range: - Range:0 to * + Range:0 to 1 Transient: @@ -211,14 +211,14 @@ - sequenceNumber=15
+ sequenceNumber=10
Notes: - Comments specific to the process from the operator. <br/> + Specifies the datum that is used as the zero point for level measurements. This can be process-specific as opposed the gauge at the actual monitoring point. <br/>
@@ -285,7 +285,7 @@ - Public NamedValue
  parameter + Public CharacterString
  comment @@ -327,14 +327,14 @@ - sequenceNumber=60
+ sequenceNumber=15
Notes: - A defintion of the type of process used in the observation. This may be a Sensor, ManualMethod, Algorithm or Simulation (including models). <br/><br/> + Comments specific to the process from the operator. <br/>
@@ -343,7 +343,7 @@ - Public GenericName
  processReference + Public NamedValue
  parameter @@ -369,7 +369,7 @@ Range: - Range:0 to 1 + Range:0 to * Transient: @@ -385,14 +385,14 @@ - sequenceNumber=19
+ sequenceNumber=60
Notes: - Reference to an external process definition. <br/><br/> + A defintion of the type of process used in the observation. This may be a Sensor, ManualMethod, Algorithm or Simulation (including models). <br/><br/>
@@ -401,7 +401,7 @@ - Public ProcessTypeCode
  processType + Public GenericName
  processReference @@ -427,7 +427,7 @@ Range: - + Range:0 to 1 Transient: @@ -443,14 +443,14 @@ - sequenceNumber=1
+ sequenceNumber=19
Notes: - A defintion of the type of process used in the observation. This may be a Sensor, ManualMethod, Algorithm or Simulation (including models). <br/> + Reference to an external process definition. <br/><br/>
@@ -459,7 +459,7 @@ - Public CD_VerticalDatum
  verticalDatum + Public ProcessTypeCode
  processType @@ -485,7 +485,7 @@ Range: - Range:0 to 1 + Transient: @@ -501,14 +501,14 @@ - sequenceNumber=10
+ sequenceNumber=1
Notes: - Specifies the datum that is used as the zero point for level measurements. This can be process-specific as opposed the gauge at the actual monitoring point. <br/> + A defintion of the type of process used in the observation. This may be a Sensor, ManualMethod, Algorithm or Simulation (including models). <br/>
diff --git a/approved/html/EARoot/EA1/EA4/EA2/EA18/EA7332.png b/approved/html/EARoot/EA1/EA4/EA2/EA18/EA7332.png index 0ef5d616a..79a59c92c 100644 Binary files a/approved/html/EARoot/EA1/EA4/EA2/EA18/EA7332.png and b/approved/html/EARoot/EA1/EA4/EA2/EA18/EA7332.png differ diff --git a/approved/html/EARoot/EA1/EA4/EA2/EA18/EA7339.htm b/approved/html/EARoot/EA1/EA4/EA2/EA18/EA7339.htm index 105c69d6a..166937a40 100644 --- a/approved/html/EARoot/EA1/EA4/EA2/EA18/EA7339.htm +++ b/approved/html/EARoot/EA1/EA4/EA2/EA18/EA7339.htm @@ -107,7 +107,7 @@ - Public
  monitoringPoint-valid + Public
  shape-point (O&M) @@ -155,7 +155,7 @@ - Public
  shape-point (O&M) + Public
  monitoringPoint-valid diff --git a/approved/html/EARoot/EA1/EA4/EA2/EA18/EA7353.htm b/approved/html/EARoot/EA1/EA4/EA2/EA18/EA7353.htm index 422d474b1..0ce6fc9d5 100644 --- a/approved/html/EARoot/EA1/EA4/EA2/EA18/EA7353.htm +++ b/approved/html/EARoot/EA1/EA4/EA2/EA18/EA7353.htm @@ -107,7 +107,7 @@ - Public
  coverage-type + Public
  domain-object @@ -155,7 +155,7 @@ - Public
  domain-object + Public
  time-increasing @@ -203,7 +203,7 @@ - Public
  interpolation-type + Public
  record-homogenous @@ -251,7 +251,7 @@ - Public
  quality + Public
  coverage-type @@ -299,7 +299,7 @@ - Public
  record-homogenous + Public
  quality @@ -347,7 +347,7 @@ - Public
  time-increasing + Public
  interpolation-type diff --git a/approved/html/EARoot/EA1/EA4/EA2/EA18/EA7358.htm b/approved/html/EARoot/EA1/EA4/EA2/EA18/EA7358.htm index fdbc24175..ce2f632c9 100644 --- a/approved/html/EARoot/EA1/EA4/EA2/EA18/EA7358.htm +++ b/approved/html/EARoot/EA1/EA4/EA2/EA18/EA7358.htm @@ -107,7 +107,7 @@ - Public
  featureOfInterest + Public
  result @@ -155,7 +155,7 @@ - Public
  metadata + Public
  featureOfInterest @@ -203,7 +203,7 @@ - Public
  phenomenonTime + Public
  procedure @@ -251,7 +251,7 @@ - Public
  procedure + Public
  metadata @@ -299,7 +299,7 @@ - Public
  result + Public
  phenomenonTime diff --git a/approved/html/EARoot/EA1/EA4/EA2/EA2/EA7215.png b/approved/html/EARoot/EA1/EA4/EA2/EA2/EA7215.png index a09f5863b..fa69a1244 100644 Binary files a/approved/html/EARoot/EA1/EA4/EA2/EA2/EA7215.png and b/approved/html/EARoot/EA1/EA4/EA2/EA2/EA7215.png differ diff --git a/approved/html/EARoot/EA1/EA4/EA2/EA2/EA7217.htm b/approved/html/EARoot/EA1/EA4/EA2/EA2/EA7217.htm index e9e1561db..b67d2d098 100644 --- a/approved/html/EARoot/EA1/EA4/EA2/EA2/EA7217.htm +++ b/approved/html/EARoot/EA1/EA4/EA2/EA2/EA7217.htm @@ -253,7 +253,7 @@ - Public NamedValue
  parameter + Public TM_Period
  temporalExtent @@ -295,14 +295,14 @@ - inlineOrByReference=inline
sequenceNumber=6
+ inlineOrByReference=inline
sequenceNumber=5
Notes: - A soft typed parameter for extra metadata properties. <br/><br/> + Describes the temporal extent of the all the time series contained within the collection (if they exist). <br/><br/>
@@ -311,7 +311,7 @@ - Public TM_Period
  temporalExtent + Public NamedValue
  parameter @@ -353,14 +353,14 @@ - inlineOrByReference=inline
sequenceNumber=5
+ inlineOrByReference=inline
sequenceNumber=6
Notes: - Describes the temporal extent of the all the time series contained within the collection (if they exist). <br/><br/> + A soft typed parameter for extra metadata properties. <br/><br/>
diff --git a/approved/html/EARoot/EA1/EA4/EA2/EA2/EA7219.htm b/approved/html/EARoot/EA1/EA4/EA2/EA2/EA7219.htm index 41bda1f9f..0ffab841d 100644 --- a/approved/html/EARoot/EA1/EA4/EA2/EA2/EA7219.htm +++ b/approved/html/EARoot/EA1/EA4/EA2/EA2/EA7219.htm @@ -158,7 +158,7 @@ - Public CharacterString
  generationSystem + Public GenericName
  version @@ -200,13 +200,23 @@ - sequenceNumber=30
-   + sequenceNumber=20
+
+ + + + +
+ Notes: + + This version property is distinct from the version of the WaterML2 schema. It is a version of the whole standards package: schema, vocbaularies, used profiles etc. I.e.  a version to allow specific versions associated with usage of a schema version with other components. <br/> +
+ - Public GenericName
  version + Public CharacterString
  generationSystem @@ -248,18 +258,8 @@ - sequenceNumber=20
-
- - - - -
- Notes: - - This version property is distinct from the version of the WaterML2 schema. It is a version of the whole standards package: schema, vocbaularies, used profiles etc. I.e.  a version to allow specific versions associated with usage of a schema version with other components. <br/> -
- + sequenceNumber=30
+   diff --git a/approved/html/EARoot/EA1/EA4/EA2/EA2/EA7220.htm b/approved/html/EARoot/EA1/EA4/EA2/EA2/EA7220.htm index 154543b54..1cb4bb65c 100644 --- a/approved/html/EARoot/EA1/EA4/EA2/EA2/EA7220.htm +++ b/approved/html/EARoot/EA1/EA4/EA2/EA2/EA7220.htm @@ -109,7 +109,7 @@ - Public SF_SpatialSamplingFeature
  byFeature + Public SF_SamplingFeatureCollection
  byGroup @@ -157,7 +157,7 @@ - Public SF_SamplingFeatureCollection
  byGroup + Public SF_SpatialSamplingFeature
  byFeature diff --git a/approved/html/EARoot/EA1/EA4/EA2/EA3/EA7222.png b/approved/html/EARoot/EA1/EA4/EA2/EA3/EA7222.png index a5cadadf3..32373098b 100644 Binary files a/approved/html/EARoot/EA1/EA4/EA2/EA3/EA7222.png and b/approved/html/EARoot/EA1/EA4/EA2/EA3/EA7222.png differ diff --git a/approved/html/EARoot/EA1/EA4/EA2/EA3/EA7224.png b/approved/html/EARoot/EA1/EA4/EA2/EA3/EA7224.png index 802f6fb32..e5ed973da 100644 Binary files a/approved/html/EARoot/EA1/EA4/EA2/EA3/EA7224.png and b/approved/html/EARoot/EA1/EA4/EA2/EA3/EA7224.png differ diff --git a/approved/html/EARoot/EA1/EA4/EA2/EA3/EA7228.htm b/approved/html/EARoot/EA1/EA4/EA2/EA3/EA7228.htm index 29e92fb00..260bdcba8 100644 --- a/approved/html/EARoot/EA1/EA4/EA2/EA3/EA7228.htm +++ b/approved/html/EARoot/EA1/EA4/EA2/EA3/EA7228.htm @@ -168,7 +168,7 @@ - Public TM_PeriodDuration
  maximumGap + Public StatusCode
  status @@ -210,13 +210,23 @@ - sequenceNumber=50
-   + sequenceNumber=20
+
+ + + + +
+ Notes: + + Indicates the statues of the observation. E.g. unreleased, verified etc.  <br/> +
+ - Public NamedValue
  parameter + Public SampledMediumCode
  sampledMedium @@ -242,7 +252,7 @@ Range: - Range:0 to * + Range:0 to 1 Transient: @@ -258,14 +268,14 @@ - sequenceNumber=60
+ sequenceNumber=40
Notes: - A soft-typed parameter to allow extension through name-value pairs. <br/><br/> + Indicates the medium that was sampled. E.g. water, air, etc. <br/>
@@ -274,7 +284,7 @@ - Public SampledMediumCode
  sampledMedium + Public TM_PeriodDuration
  maximumGap @@ -316,23 +326,13 @@ - sequenceNumber=40
-
- - - - -
- Notes: - - Indicates the medium that was sampled. E.g. water, air, etc. <br/> -
- + sequenceNumber=50
+   - Public StatusCode
  status + Public NamedValue
  parameter @@ -358,7 +358,7 @@ Range: - Range:0 to 1 + Range:0 to * Transient: @@ -374,14 +374,14 @@ - sequenceNumber=20
+ sequenceNumber=60
Notes: - Indicates the statues of the observation. E.g. unreleased, verified etc.  <br/> + A soft-typed parameter to allow extension through name-value pairs. <br/><br/>
diff --git a/approved/html/EARoot/EA2/EA1/EA1/EA1/EA7379.png b/approved/html/EARoot/EA2/EA1/EA1/EA1/EA7379.png index 39415bf43..3321496eb 100644 Binary files a/approved/html/EARoot/EA2/EA1/EA1/EA1/EA7379.png and b/approved/html/EARoot/EA2/EA1/EA1/EA1/EA7379.png differ diff --git a/approved/html/EARoot/EA2/EA1/EA1/EA1/EA7381.png b/approved/html/EARoot/EA2/EA1/EA1/EA1/EA7381.png index 8d90c9ad0..6aa54be9e 100644 Binary files a/approved/html/EARoot/EA2/EA1/EA1/EA1/EA7381.png and b/approved/html/EARoot/EA2/EA1/EA1/EA1/EA7381.png differ diff --git a/approved/html/EARoot/EA2/EA1/EA1/EA1/EA7383.png b/approved/html/EARoot/EA2/EA1/EA1/EA1/EA7383.png index bece8237e..1595309be 100644 Binary files a/approved/html/EARoot/EA2/EA1/EA1/EA1/EA7383.png and b/approved/html/EARoot/EA2/EA1/EA1/EA1/EA7383.png differ diff --git a/approved/html/EARoot/EA2/EA1/EA1/EA1/EA7385.png b/approved/html/EARoot/EA2/EA1/EA1/EA1/EA7385.png index 3d935a823..de61c7e6f 100644 Binary files a/approved/html/EARoot/EA2/EA1/EA1/EA1/EA7385.png and b/approved/html/EARoot/EA2/EA1/EA1/EA1/EA7385.png differ diff --git a/approved/html/EARoot/EA2/EA1/EA1/EA1/EA7387.png b/approved/html/EARoot/EA2/EA1/EA1/EA1/EA7387.png index a8e9adcd0..3af4712f8 100644 Binary files a/approved/html/EARoot/EA2/EA1/EA1/EA1/EA7387.png and b/approved/html/EARoot/EA2/EA1/EA1/EA1/EA7387.png differ diff --git a/approved/html/EARoot/EA2/EA1/EA1/EA1/EA7389.png b/approved/html/EARoot/EA2/EA1/EA1/EA1/EA7389.png index af991ab68..28dcff714 100644 Binary files a/approved/html/EARoot/EA2/EA1/EA1/EA1/EA7389.png and b/approved/html/EARoot/EA2/EA1/EA1/EA1/EA7389.png differ diff --git a/approved/html/EARoot/EA2/EA1/EA1/EA1/EA7391.htm b/approved/html/EARoot/EA2/EA1/EA1/EA1/EA7391.htm index 9b1369f3b..ffd36adf9 100644 --- a/approved/html/EARoot/EA2/EA1/EA1/EA1/EA7391.htm +++ b/approved/html/EARoot/EA2/EA1/EA1/EA1/EA7391.htm @@ -112,7 +112,7 @@ - Public CharacterString
  alternativeIdentifier + Public Identifier
  inspireId @@ -130,7 +130,7 @@ Stereotype: - <<voidable>> + Ordered: @@ -138,7 +138,7 @@ Range: - Range:0 to 1 + Transient: @@ -161,7 +161,7 @@ Notes: - -- Definition --<br/>External, thematic identifier of the address spatial object, which enables interoperability with existing legacy systems or applications. <br/><br/>-- Description --<br/>NOTE 1 Compared with the proper identifier of the address, the alternative identifier is not necessarily persistent in the lifetime of the address spatial object. Likewise it is usually not globally unique and in general does not include information on the version of the address spatial object. <br/><br/>NOTE 2 Often alternative address identifiers are composed by a set of codes that, e.g., identify the region and the municipality, the thoroughfare name and the address number. These alternative identifiers will not remain persistent e.g. in the case of the merging of two municipalities. <br/><br/>EXAMPLE In Denmark many legacy systems (e.g. in the Statistics Denmark or the Central Business Register) uses as address identification the three digit municipality code plus the four character street name code plus the address number.<br/> + -- Definition --<br/>External object identifier of the address.<br/><br/>-- Description --<br/>NOTE 1 An external object identifier is a unique object identifier published by the responsible body, which may be used by external applications to reference the spatial object. The identifier is an identifier of the spatial object, not an identifier of the addressable object. <br/><br/>NOTE 2 The primary purpose of this identifier is to enable links between various sources and the address components.<br/><br/>EXAMPLE An address spatial object from Denmark could carry this identifier: <br/>Namespace: DK_ADR<br/>Local identifier: 0A3F507B2AB032B8E0440003BA298018<br/>Version identifier: 12-02-2008T10:05:01+01:00<br/> @@ -170,7 +170,7 @@ - Public DateTime
  beginLifespanVersion + Public CharacterString
  alternativeIdentifier @@ -196,7 +196,7 @@ Range: - + Range:0 to 1 Transient: @@ -219,7 +219,7 @@ Notes: - -- Definition --<br/>Date and time at which this version of the spatial object was inserted or changed in the spatial data set.<br/><br/>-- Description --<br/>NOTE This date is recorded to enable the generation of change only update files.<br/> + -- Definition --<br/>External, thematic identifier of the address spatial object, which enables interoperability with existing legacy systems or applications. <br/><br/>-- Description --<br/>NOTE 1 Compared with the proper identifier of the address, the alternative identifier is not necessarily persistent in the lifetime of the address spatial object. Likewise it is usually not globally unique and in general does not include information on the version of the address spatial object. <br/><br/>NOTE 2 Often alternative address identifiers are composed by a set of codes that, e.g., identify the region and the municipality, the thoroughfare name and the address number. These alternative identifiers will not remain persistent e.g. in the case of the merging of two municipalities. <br/><br/>EXAMPLE In Denmark many legacy systems (e.g. in the Statistics Denmark or the Central Business Register) uses as address identification the three digit municipality code plus the four character street name code plus the address number.<br/> @@ -228,7 +228,7 @@ - Public DateTime
  endLifespanVersion + Public GeographicPosition
  position @@ -246,7 +246,7 @@ Stereotype: - <<voidable>> + Ordered: @@ -254,7 +254,7 @@ Range: - Range:0 to 1 + Transient: @@ -277,7 +277,7 @@ Notes: - -- Definition --<br/>Date and time at which this version of the spatial object was superseded or retired in the spatial data set.<br/><br/>-- Description --<br/>NOTE This date is recorded primarily for those systems which "close" an entry in the spatial data set in the event of an attribute change.<br/> + -- Definition --<br/>Position of a characteristic point which represents the location of the address according to a certain specification, including information on the origin of the position.<br/> @@ -286,7 +286,7 @@ - Public Identifier
  inspireId + Public StatusValue
  status @@ -304,7 +304,7 @@ Stereotype: - + <<voidable>> Ordered: @@ -312,7 +312,7 @@ Range: - + Range:0 to 1 Transient: @@ -335,7 +335,7 @@ Notes: - -- Definition --<br/>External object identifier of the address.<br/><br/>-- Description --<br/>NOTE 1 An external object identifier is a unique object identifier published by the responsible body, which may be used by external applications to reference the spatial object. The identifier is an identifier of the spatial object, not an identifier of the addressable object. <br/><br/>NOTE 2 The primary purpose of this identifier is to enable links between various sources and the address components.<br/><br/>EXAMPLE An address spatial object from Denmark could carry this identifier: <br/>Namespace: DK_ADR<br/>Local identifier: 0A3F507B2AB032B8E0440003BA298018<br/>Version identifier: 12-02-2008T10:05:01+01:00<br/> + -- Definition --<br/>Validity of the address within the life-cycle (version) of the address spatial object. <br/><br/>-- Description --<br/>NOTE This status relates to the address and is not a property of the object to which the address is assigned (the addressable object).<br/> @@ -402,7 +402,7 @@ - Public GeographicPosition
  position + Public DateTime
  validFrom @@ -420,7 +420,7 @@ Stereotype: - + <<voidable>> Ordered: @@ -451,7 +451,7 @@ Notes: - -- Definition --<br/>Position of a characteristic point which represents the location of the address according to a certain specification, including information on the origin of the position.<br/> + -- Definition --<br/>Date and time of which this version of the address was or will be valid in the real world. <br/><br/>-- Description --<br/>NOTE This date and time can be set in the future for situations where an address or a version of an address has been decided by the appropriate authority to take effect for a future date.<br/> @@ -460,7 +460,7 @@ - Public StatusValue
  status + Public DateTime
  validTo @@ -509,7 +509,7 @@ Notes: - -- Definition --<br/>Validity of the address within the life-cycle (version) of the address spatial object. <br/><br/>-- Description --<br/>NOTE This status relates to the address and is not a property of the object to which the address is assigned (the addressable object).<br/> + -- Definition --<br/>Date and time at which this version of the address ceased or will cease to exist in the real world.<br/> @@ -518,7 +518,7 @@ - Public DateTime
  validFrom + Public DateTime
  beginLifespanVersion @@ -567,7 +567,7 @@ Notes: - -- Definition --<br/>Date and time of which this version of the address was or will be valid in the real world. <br/><br/>-- Description --<br/>NOTE This date and time can be set in the future for situations where an address or a version of an address has been decided by the appropriate authority to take effect for a future date.<br/> + -- Definition --<br/>Date and time at which this version of the spatial object was inserted or changed in the spatial data set.<br/><br/>-- Description --<br/>NOTE This date is recorded to enable the generation of change only update files.<br/> @@ -576,7 +576,7 @@ - Public DateTime
  validTo + Public DateTime
  endLifespanVersion @@ -625,7 +625,7 @@ Notes: - -- Definition --<br/>Date and time at which this version of the address ceased or will cease to exist in the real world.<br/> + -- Definition --<br/>Date and time at which this version of the spatial object was superseded or retired in the spatial data set.<br/><br/>-- Description --<br/>NOTE This date is recorded primarily for those systems which "close" an entry in the spatial data set in the event of an attribute change.<br/> diff --git a/approved/html/EARoot/EA2/EA1/EA1/EA1/EA7393.htm b/approved/html/EARoot/EA2/EA1/EA1/EA1/EA7393.htm index df7fcbe7e..552d9547e 100644 --- a/approved/html/EARoot/EA2/EA1/EA1/EA1/EA7393.htm +++ b/approved/html/EARoot/EA2/EA1/EA1/EA1/EA7393.htm @@ -112,7 +112,7 @@ - Public CharacterString
  alternativeIdentifier + Public Identifier
  inspireId @@ -130,7 +130,7 @@ Stereotype: - <<voidable>> + Ordered: @@ -161,7 +161,7 @@ Notes: - -- Definition --<br/>External, thematic identifier of the address component spatial object, which enables interoperability with existing legacy systems or applications. <br/><br/>-- Description --<br/>NOTE Compared with a proper identifier of the address component, the alternative identifier is not necessarily persistent in the lifetime of the component spatial object. Likewise it is usually not globally unique and in general does include information on the version of the spatial object. <br/><br/>EXAMPLE 1 National or regional sector-specific identifiers (like e.g. a number- or letter code) for administrative units, address areas (localities, villages, sub-divisions) or thoroughfare names, which are used by a number of existing legacy systems. <br/><br/>EXAMPLE 2 In Denmark the four character municipal "road name code" (0001-9899) is only unique within the present municipality, thus if two municipalities merge, it is necessary to assign new road name codes.<br/> + -- Definition --<br/>External object identifier of the address component.<br/><br/>-- Description --<br/>NOTE 1 An external object identifier is a unique object identifier published by the responsible body, which may be used by external applications to reference the spatial object. The identifier is an identifier of the spatial object, not an identifier of the real-world phenomenon. <br/><br/>NOTE 2 The primary purpose of this identifier is to enable links between various sources and the address components.<br/><br/>EXAMPLE An address component spatial object from Denmark could carry this identifier: <br/>Namespace: DK_ADR<br/>Local identifier: 0A3F507B2AB032B8E0440003BA298018<br/>Version identifier: 12-02-2008T10:05:01+01:00<br/> @@ -170,7 +170,7 @@ - Public DateTime
  beginLifespanVersion + Public CharacterString
  alternativeIdentifier @@ -196,7 +196,7 @@ Range: - + Range:0 to 1 Transient: @@ -219,7 +219,7 @@ Notes: - -- Definition --<br/>Date and time at which this version of the spatial object was inserted or changed in the spatial data set. <br/><br/>-- Description --<br/>NOTE This date is recorded to enable the generation of change only update files. <br/> + -- Definition --<br/>External, thematic identifier of the address component spatial object, which enables interoperability with existing legacy systems or applications. <br/><br/>-- Description --<br/>NOTE Compared with a proper identifier of the address component, the alternative identifier is not necessarily persistent in the lifetime of the component spatial object. Likewise it is usually not globally unique and in general does include information on the version of the spatial object. <br/><br/>EXAMPLE 1 National or regional sector-specific identifiers (like e.g. a number- or letter code) for administrative units, address areas (localities, villages, sub-divisions) or thoroughfare names, which are used by a number of existing legacy systems. <br/><br/>EXAMPLE 2 In Denmark the four character municipal "road name code" (0001-9899) is only unique within the present municipality, thus if two municipalities merge, it is necessary to assign new road name codes.<br/> @@ -228,7 +228,7 @@ - Public DateTime
  endLifespanVersion + Public DateTime
  beginLifespanVersion @@ -254,7 +254,7 @@ Range: - Range:0 to 1 + Transient: @@ -277,7 +277,7 @@ Notes: - -- Definition --<br/>Date and time at which this version of the spatial object was superseded or retired in the spatial data set.<br/><br/>-- Description --<br/>NOTE This date is recorded primarily for those systems which "close" an entry in the spatial data set in the event of an attribute change.<br/> + -- Definition --<br/>Date and time at which this version of the spatial object was inserted or changed in the spatial data set. <br/><br/>-- Description --<br/>NOTE This date is recorded to enable the generation of change only update files. <br/> @@ -286,7 +286,7 @@ - Public Identifier
  inspireId + Public DateTime
  endLifespanVersion @@ -304,7 +304,7 @@ Stereotype: - + <<voidable>> Ordered: @@ -335,7 +335,7 @@ Notes: - -- Definition --<br/>External object identifier of the address component.<br/><br/>-- Description --<br/>NOTE 1 An external object identifier is a unique object identifier published by the responsible body, which may be used by external applications to reference the spatial object. The identifier is an identifier of the spatial object, not an identifier of the real-world phenomenon. <br/><br/>NOTE 2 The primary purpose of this identifier is to enable links between various sources and the address components.<br/><br/>EXAMPLE An address component spatial object from Denmark could carry this identifier: <br/>Namespace: DK_ADR<br/>Local identifier: 0A3F507B2AB032B8E0440003BA298018<br/>Version identifier: 12-02-2008T10:05:01+01:00<br/> + -- Definition --<br/>Date and time at which this version of the spatial object was superseded or retired in the spatial data set.<br/><br/>-- Description --<br/>NOTE This date is recorded primarily for those systems which "close" an entry in the spatial data set in the event of an attribute change.<br/> diff --git a/approved/html/EARoot/EA2/EA1/EA1/EA1/EA7394.htm b/approved/html/EARoot/EA2/EA1/EA1/EA1/EA7394.htm index 0425a784e..146efa96c 100644 --- a/approved/html/EARoot/EA2/EA1/EA1/EA1/EA7394.htm +++ b/approved/html/EARoot/EA2/EA1/EA1/EA1/EA7394.htm @@ -168,7 +168,7 @@ - Public LocatorLevelValue
  level + Public LocatorName
  name @@ -190,11 +190,11 @@ Ordered: - + Ordered
Range: - + Range:0 to * Transient: @@ -217,7 +217,7 @@ Notes: - -- Definition --<br/>The level to which the locator refers.<br/> + -- Definition --<br/>A geographic name or descriptive text associated to a property identified by the locator.<br/><br/>-- Description --<br/>NOTE 1 The locator name could be the name of the property or complex (e.g. an estate, hospital or a shopping mall), of the building or part of the building (e.g. a wing), or it could be the name of a room inside the building.<br/><br/>NOTE 2 As locator name it is also possible to use a description that allows a user to identify the property in question. <br/><br/>NOTE 3 The locator name could be an alternative addition to the locator designator (e.g. the address number) or it could be an independent identifier. <br/><br/>EXAMPLE In the address "Calle Santiago, 15, Elizondo-Baztán, Navarra, Spain" the building name "Urtekoetxea" is an alternative to the building identifier "3".<br/> @@ -226,7 +226,7 @@ - Public LocatorName
  name + Public LocatorLevelValue
  level @@ -248,11 +248,11 @@ Ordered: - Ordered
+ Range: - Range:0 to * + Transient: @@ -275,7 +275,7 @@ Notes: - -- Definition --<br/>A geographic name or descriptive text associated to a property identified by the locator.<br/><br/>-- Description --<br/>NOTE 1 The locator name could be the name of the property or complex (e.g. an estate, hospital or a shopping mall), of the building or part of the building (e.g. a wing), or it could be the name of a room inside the building.<br/><br/>NOTE 2 As locator name it is also possible to use a description that allows a user to identify the property in question. <br/><br/>NOTE 3 The locator name could be an alternative addition to the locator designator (e.g. the address number) or it could be an independent identifier. <br/><br/>EXAMPLE In the address "Calle Santiago, 15, Elizondo-Baztán, Navarra, Spain" the building name "Urtekoetxea" is an alternative to the building identifier "3".<br/> + -- Definition --<br/>The level to which the locator refers.<br/> diff --git a/approved/html/EARoot/EA2/EA1/EA1/EA1/EA7395.htm b/approved/html/EARoot/EA2/EA1/EA1/EA1/EA7395.htm index 5a4f34902..2557c1d4d 100644 --- a/approved/html/EARoot/EA2/EA1/EA1/EA1/EA7395.htm +++ b/approved/html/EARoot/EA2/EA1/EA1/EA1/EA7395.htm @@ -109,7 +109,7 @@ - Public GeographicalName
  addressArea + Public GeographicalName
  adminUnit @@ -127,7 +127,7 @@ Stereotype: - <<voidable>> + Ordered: @@ -135,7 +135,7 @@ Range: - Range:0 to * + Transient: @@ -158,7 +158,7 @@ Notes: - -- Definition --<br/>The name or names of a geographic area or locality that groups a number of addressable objects for addressing purposes, without being an administrative unit.<br/> + -- Definition --<br/>The name or names of a unit of administration where a Member State has and/or exercises jurisdictional rights, for local, regional and national governance.<br/> @@ -167,7 +167,7 @@ - Public GeographicalName
  adminUnit + Public CharacterString
  locatorDesignator @@ -193,7 +193,7 @@ Range: - + Range:0 to * Transient: @@ -216,7 +216,7 @@ Notes: - -- Definition --<br/>The name or names of a unit of administration where a Member State has and/or exercises jurisdictional rights, for local, regional and national governance.<br/> + -- Definition --<br/>A number or a sequence of characters which allows a user or an application to interpret, parse and format the locator within the relevant scope. A locator may include more locator designators.<br/> @@ -225,7 +225,7 @@ - Public CharacterString
  locatorDesignator + Public GeographicalName
  locatorName @@ -274,7 +274,7 @@ Notes: - -- Definition --<br/>A number or a sequence of characters which allows a user or an application to interpret, parse and format the locator within the relevant scope. A locator may include more locator designators.<br/> + -- Definition --<br/>Proper noun(s) applied to the real world entity identified by the locator.<br/> @@ -283,7 +283,7 @@ - Public GeographicalName
  locatorName + Public GeographicalName
  addressArea @@ -301,7 +301,7 @@ Stereotype: - + <<voidable>> Ordered: @@ -332,7 +332,7 @@ Notes: - -- Definition --<br/>Proper noun(s) applied to the real world entity identified by the locator.<br/> + -- Definition --<br/>The name or names of a geographic area or locality that groups a number of addressable objects for addressing purposes, without being an administrative unit.<br/> @@ -341,7 +341,7 @@ - Public CharacterString
  postCode + Public GeographicalName
  postName @@ -363,11 +363,11 @@ Ordered: - + Ordered
Range: - Range:0 to 1 + Range:0 to * Transient: @@ -390,7 +390,7 @@ Notes: - -- Definition --<br/>A code created and maintained for postal purposes to identify a subdivision of addresses and postal delivery points. <br/> + -- Definition --<br/>One or more names created and maintained for postal purposes to identify a subdivision of addresses and postal delivery points. <br/> @@ -399,7 +399,7 @@ - Public GeographicalName
  postName + Public CharacterString
  postCode @@ -421,11 +421,11 @@ Ordered: - Ordered
+ Range: - Range:0 to * + Range:0 to 1 Transient: @@ -448,7 +448,7 @@ Notes: - -- Definition --<br/>One or more names created and maintained for postal purposes to identify a subdivision of addresses and postal delivery points. <br/> + -- Definition --<br/>A code created and maintained for postal purposes to identify a subdivision of addresses and postal delivery points. <br/> diff --git a/approved/html/EARoot/EA2/EA1/EA1/EA1/EA7396.htm b/approved/html/EARoot/EA2/EA1/EA1/EA1/EA7396.htm index 8d0ff4455..9da06f446 100644 --- a/approved/html/EARoot/EA2/EA1/EA1/EA1/EA7396.htm +++ b/approved/html/EARoot/EA2/EA1/EA1/EA1/EA7396.htm @@ -110,7 +110,7 @@ - Public AdministrativeHierarchyLevel
  level + Public GeographicalName
  name @@ -159,7 +159,7 @@ Notes: - -- Definition --<br/>The level of administration in the national administrative hierarchy.<br/> + -- Definition --<br/>Official, geographical name of the administrative unit, given in different languages where required.<br/><br/>-- Description --<br/>NOTE The data type allows names in different languages and scripts as well as inclusion of alternative name, alternative spellings, historical name and exonyms.<br/> @@ -168,7 +168,7 @@ - Public GeographicalName
  name + Public AdministrativeHierarchyLevel
  level @@ -217,7 +217,7 @@ Notes: - -- Definition --<br/>Official, geographical name of the administrative unit, given in different languages where required.<br/><br/>-- Description --<br/>NOTE The data type allows names in different languages and scripts as well as inclusion of alternative name, alternative spellings, historical name and exonyms.<br/> + -- Definition --<br/>The level of administration in the national administrative hierarchy.<br/> diff --git a/approved/html/EARoot/EA2/EA1/EA1/EA1/EA7398.htm b/approved/html/EARoot/EA2/EA1/EA1/EA1/EA7398.htm index 047b8b64d..b90826ce8 100644 --- a/approved/html/EARoot/EA2/EA1/EA1/EA1/EA7398.htm +++ b/approved/html/EARoot/EA2/EA1/EA1/EA1/EA7398.htm @@ -108,7 +108,7 @@ - Public Boolean
  default + Public GM_Point
  geometry @@ -157,7 +157,7 @@ Notes: - -- Definition --<br/>Specifies whether or not this position should be considered as the default.<br/><br/>-- Description --<br/>NOTE As a member state may provide several positions of an address, there is a need to identify the commonly used (main) position. Preferrably, the default position should be the one with best accuracy.<br/> + -- Definition --<br/>The position of the point expressed in coordinates in the chosen spatial reference system.<br/> @@ -166,7 +166,7 @@ - Public GM_Point
  geometry + Public GeometrySpecificationValue
  specification @@ -184,7 +184,7 @@ Stereotype: - + <<voidable>> Ordered: @@ -215,7 +215,7 @@ Notes: - -- Definition --<br/>The position of the point expressed in coordinates in the chosen spatial reference system.<br/> + -- Definition --<br/>Information defining the specification used to create or derive this geographic position of the address.<br/> @@ -282,7 +282,7 @@ - Public GeometrySpecificationValue
  specification + Public Boolean
  default @@ -300,7 +300,7 @@ Stereotype: - <<voidable>> + Ordered: @@ -331,7 +331,7 @@ Notes: - -- Definition --<br/>Information defining the specification used to create or derive this geographic position of the address.<br/> + -- Definition --<br/>Specifies whether or not this position should be considered as the default.<br/><br/>-- Description --<br/>NOTE As a member state may provide several positions of an address, there is a need to identify the commonly used (main) position. Preferrably, the default position should be the one with best accuracy.<br/> diff --git a/approved/html/EARoot/EA2/EA1/EA1/EA1/EA7399.htm b/approved/html/EARoot/EA2/EA1/EA1/EA1/EA7399.htm index 49843656e..4d452926b 100644 --- a/approved/html/EARoot/EA2/EA1/EA1/EA1/EA7399.htm +++ b/approved/html/EARoot/EA2/EA1/EA1/EA1/EA7399.htm @@ -108,7 +108,7 @@ - Public
  byAdministrator + Public
  fromFeature @@ -157,7 +157,7 @@ Notes: - -- Definition --<br/>Decided and recorded manually by the official body responsible for address allocation or by the dataset custodian.<br/> + -- Definition --<br/>Derived automatically from another INSPIRE spatial object which is related to the address or address component.<br/><br/>-- Description --<br/>NOTE This method implies that the position is calculated automatically e.g. as a centre point of the polygon or linestring that describes the feature in question.<br/><br/>EXAMPLE Geometries can be derived from a building, cadastral parcel, thoroughfare link, address area (named place) or administrative unit.<br/> @@ -166,7 +166,7 @@ - Public
  byOtherParty + Public
  byAdministrator @@ -215,7 +215,7 @@ Notes: - -- Definition --<br/>Decided and recorded manually by other party.<br/> + -- Definition --<br/>Decided and recorded manually by the official body responsible for address allocation or by the dataset custodian.<br/> @@ -224,7 +224,7 @@ - Public
  fromFeature + Public
  byOtherParty @@ -273,7 +273,7 @@ Notes: - -- Definition --<br/>Derived automatically from another INSPIRE spatial object which is related to the address or address component.<br/><br/>-- Description --<br/>NOTE This method implies that the position is calculated automatically e.g. as a centre point of the polygon or linestring that describes the feature in question.<br/><br/>EXAMPLE Geometries can be derived from a building, cadastral parcel, thoroughfare link, address area (named place) or administrative unit.<br/> + -- Definition --<br/>Decided and recorded manually by other party.<br/> diff --git a/approved/html/EARoot/EA2/EA1/EA1/EA1/EA7400.htm b/approved/html/EARoot/EA2/EA1/EA1/EA1/EA7400.htm index 1966bd03a..3c0cb21fc 100644 --- a/approved/html/EARoot/EA2/EA1/EA1/EA1/EA7400.htm +++ b/approved/html/EARoot/EA2/EA1/EA1/EA1/EA7400.htm @@ -108,7 +108,7 @@ - Public
  addressArea + Public
  postalDelivery @@ -157,7 +157,7 @@ Notes: - -- Definition --<br/>Position derived from the related address area.<br/> + -- Definition --<br/>Position aims at identifying a postal delivery point.<br/> @@ -166,7 +166,7 @@ - Public
  adminUnit1stOrder + Public
  utilityService @@ -215,7 +215,7 @@ Notes: - -- Definition --<br/>Position derived from the related administrative unit of 1st order.<br/> + -- Definition --<br/>Position aims at identifying a point of utility service.<br/> @@ -224,7 +224,7 @@ - Public
  adminUnit2ndOrder + Public
  thoroughfareAccess @@ -273,7 +273,7 @@ Notes: - -- Definition --<br/>Position derived from the related administrative unit of 2nd order.<br/> + -- Definition --<br/>Position aims at identifying the access point from the thoroughfare.<br/> @@ -282,7 +282,7 @@ - Public
  adminUnit3rdOrder + Public
  entrance @@ -331,7 +331,7 @@ Notes: - -- Definition --<br/>Position derived from the related administrative unit of 3rd order.<br/> + -- Definition --<br/>Position aims at identifying the entrance door or gate.<br/> @@ -340,7 +340,7 @@ - Public
  adminUnit4thOrder + Public
  building @@ -389,7 +389,7 @@ Notes: - -- Definition --<br/>Position derived from the related administrative unit of 4th order.<br/> + -- Definition --<br/>Position aims at identifying the related building.<br/> @@ -398,7 +398,7 @@ - Public
  adminUnit5thOrder + Public
  parcel @@ -447,7 +447,7 @@ Notes: - -- Definition --<br/>Position derived from the related administrative unit of 5th order.<br/> + -- Definition --<br/>Position aims at identifying the related land parcel.<br/> @@ -456,7 +456,7 @@ - Public
  adminUnit6thOrder + Public
  segment @@ -505,7 +505,7 @@ Notes: - -- Definition --<br/>Position derived from the related administrative unit of 6th order.<br/> + -- Definition --<br/>Position derived from the related segment of a thoroughfare.<br/> @@ -514,7 +514,7 @@ - Public
  building + Public
  postalDescriptor @@ -563,7 +563,7 @@ Notes: - -- Definition --<br/>Position aims at identifying the related building.<br/> + -- Definition --<br/>Position derived from the related postcode area.<br/> @@ -572,7 +572,7 @@ - Public
  entrance + Public
  addressArea @@ -621,7 +621,7 @@ Notes: - -- Definition --<br/>Position aims at identifying the entrance door or gate.<br/> + -- Definition --<br/>Position derived from the related address area.<br/> @@ -630,7 +630,7 @@ - Public
  parcel + Public
  adminUnit1stOrder @@ -679,7 +679,7 @@ Notes: - -- Definition --<br/>Position aims at identifying the related land parcel.<br/> + -- Definition --<br/>Position derived from the related administrative unit of 1st order.<br/> @@ -688,7 +688,7 @@ - Public
  postalDelivery + Public
  adminUnit2ndOrder @@ -737,7 +737,7 @@ Notes: - -- Definition --<br/>Position aims at identifying a postal delivery point.<br/> + -- Definition --<br/>Position derived from the related administrative unit of 2nd order.<br/> @@ -746,7 +746,7 @@ - Public
  postalDescriptor + Public
  adminUnit3rdOrder @@ -795,7 +795,7 @@ Notes: - -- Definition --<br/>Position derived from the related postcode area.<br/> + -- Definition --<br/>Position derived from the related administrative unit of 3rd order.<br/> @@ -804,7 +804,7 @@ - Public
  segment + Public
  adminUnit4thOrder @@ -853,7 +853,7 @@ Notes: - -- Definition --<br/>Position derived from the related segment of a thoroughfare.<br/> + -- Definition --<br/>Position derived from the related administrative unit of 4th order.<br/> @@ -862,7 +862,7 @@ - Public
  thoroughfareAccess + Public
  adminUnit5thOrder @@ -911,7 +911,7 @@ Notes: - -- Definition --<br/>Position aims at identifying the access point from the thoroughfare.<br/> + -- Definition --<br/>Position derived from the related administrative unit of 5th order.<br/> @@ -920,7 +920,7 @@ - Public
  utilityService + Public
  adminUnit6thOrder @@ -969,7 +969,7 @@ Notes: - -- Definition --<br/>Position aims at identifying a point of utility service.<br/> + -- Definition --<br/>Position derived from the related administrative unit of 6th order.<br/> diff --git a/approved/html/EARoot/EA2/EA1/EA1/EA1/EA7402.htm b/approved/html/EARoot/EA2/EA1/EA1/EA1/EA7402.htm index e189f2d15..9289377de 100644 --- a/approved/html/EARoot/EA2/EA1/EA1/EA1/EA7402.htm +++ b/approved/html/EARoot/EA2/EA1/EA1/EA1/EA7402.htm @@ -224,7 +224,7 @@ - Public
  addressNumber2ndExtension + Public
  addressNumberExtension @@ -273,7 +273,7 @@ Notes: - -- Definition --<br/>Second extension to the address number.<br/> + -- Definition --<br/>Extension to the address number.<br/><br/>-- Description --<br/>EXAMPLE E.g., in the Czech Republic a new address situated between two old addresses with numbers "2" and "3" receives a number "2" with an extension "a" so the full address number becomes "2a".<br/> @@ -282,7 +282,7 @@ - Public
  addressNumberExtension + Public
  addressNumber2ndExtension @@ -331,7 +331,7 @@ Notes: - -- Definition --<br/>Extension to the address number.<br/><br/>-- Description --<br/>EXAMPLE E.g., in the Czech Republic a new address situated between two old addresses with numbers "2" and "3" receives a number "2" with an extension "a" so the full address number becomes "2a".<br/> + -- Definition --<br/>Second extension to the address number.<br/> @@ -456,7 +456,7 @@ - Public
  cornerAddress1stIdentifier + Public
  entranceDoorIdentifier @@ -505,7 +505,7 @@ Notes: - -- Definition --<br/>Address identifier related to the primary thoroughfare name in a corner address.<br/><br/>-- Description --<br/>NOTE The concept of corner addresses with a primary and secondary thoroughfare name, each with an address identifier. Is used, e.g. in Lithuania and Estonia.<br/> + -- Definition --<br/>Identifier for an entrance door, gate, or port. <br/> @@ -514,7 +514,7 @@ - Public
  cornerAddress2ndIdentifier + Public
  staircaseIdentifier @@ -563,7 +563,7 @@ Notes: - -- Definition --<br/>Address identifier related to the secondary thoroughfare name in a corner address.<br/><br/>-- Description --<br/>NOTE The concept of corner addresses with a primary and secondary thoroughfare name, each with an address identifier. Is used, e.g. in Lithuania and Estonia.<br/> + -- Definition --<br/>Identifier for a staircase, normally inside a building.<br/> @@ -572,7 +572,7 @@ - Public
  entranceDoorIdentifier + Public
  floorIdentifier @@ -621,7 +621,7 @@ Notes: - -- Definition --<br/>Identifier for an entrance door, gate, or port. <br/> + -- Definition --<br/>Identifier of a floor or level inside a building.<br/> @@ -630,7 +630,7 @@ - Public
  floorIdentifier + Public
  unitIdentifier @@ -679,7 +679,7 @@ Notes: - -- Definition --<br/>Identifier of a floor or level inside a building.<br/> + -- Definition --<br/>Identifier of a door, dwelling, suite or room inside a building.<br/> @@ -688,7 +688,7 @@ - Public
  kilometrePoint + Public
  postalDeliveryIdentifier @@ -737,7 +737,7 @@ Notes: - -- Definition --<br/>A mark on a road whose number identifies the existing distance between the origin point of the road and that mark, measured along the road.<br/> + -- Definition --<br/>Identifier of a postal delivery point.<br/><br/>-- Description --<br/>EXAMPLE A Post office box (P.O. box).<br/> @@ -746,7 +746,7 @@ - Public
  postalDeliveryIdentifier + Public
  kilometrePoint @@ -795,7 +795,7 @@ Notes: - -- Definition --<br/>Identifier of a postal delivery point.<br/><br/>-- Description --<br/>EXAMPLE A Post office box (P.O. box).<br/> + -- Definition --<br/>A mark on a road whose number identifies the existing distance between the origin point of the road and that mark, measured along the road.<br/> @@ -804,7 +804,7 @@ - Public
  staircaseIdentifier + Public
  cornerAddress1stIdentifier @@ -853,7 +853,7 @@ Notes: - -- Definition --<br/>Identifier for a staircase, normally inside a building.<br/> + -- Definition --<br/>Address identifier related to the primary thoroughfare name in a corner address.<br/><br/>-- Description --<br/>NOTE The concept of corner addresses with a primary and secondary thoroughfare name, each with an address identifier. Is used, e.g. in Lithuania and Estonia.<br/> @@ -862,7 +862,7 @@ - Public
  unitIdentifier + Public
  cornerAddress2ndIdentifier @@ -911,7 +911,7 @@ Notes: - -- Definition --<br/>Identifier of a door, dwelling, suite or room inside a building.<br/> + -- Definition --<br/>Address identifier related to the secondary thoroughfare name in a corner address.<br/><br/>-- Description --<br/>NOTE The concept of corner addresses with a primary and secondary thoroughfare name, each with an address identifier. Is used, e.g. in Lithuania and Estonia.<br/> diff --git a/approved/html/EARoot/EA2/EA1/EA1/EA1/EA7403.htm b/approved/html/EARoot/EA2/EA1/EA1/EA1/EA7403.htm index 39fd97ab5..400bf8f58 100644 --- a/approved/html/EARoot/EA2/EA1/EA1/EA1/EA7403.htm +++ b/approved/html/EARoot/EA2/EA1/EA1/EA1/EA7403.htm @@ -108,7 +108,7 @@ - Public
  accessLevel + Public
  siteLevel @@ -157,7 +157,7 @@ Notes: - -- Definition --<br/>The locator identifies a specific access to a plot of land, building or similar by use of an entrance number or similar identifier.<br/> + -- Definition --<br/>The locator identifies a specific plot of land, building or similar property by use of an address number, building number, building or property name.<br/> @@ -166,7 +166,7 @@ - Public
  postalDeliveryPoint + Public
  accessLevel @@ -215,7 +215,7 @@ Notes: - -- Definition --<br/>The locator identifies a postal delivery point.<br/><br/>-- Description --<br/>EXAMPLE Postal delivery point can be, e.g., a P.O. box, a private bag, a business reply mail or a large volume receiver.<br/> + -- Definition --<br/>The locator identifies a specific access to a plot of land, building or similar by use of an entrance number or similar identifier.<br/> @@ -224,7 +224,7 @@ - Public
  siteLevel + Public
  unitLevel @@ -273,7 +273,7 @@ Notes: - -- Definition --<br/>The locator identifies a specific plot of land, building or similar property by use of an address number, building number, building or property name.<br/> + -- Definition --<br/>The locator identifies a specific part of a building.<br/><br/>-- Description --<br/>EXAMPLE The unit level can be, e.g., a dwelling, flat, apartment, room or household, inside a building by use of for example staircase identifier, floor identifier and/or unit number, name.<br/> @@ -282,7 +282,7 @@ - Public
  unitLevel + Public
  postalDeliveryPoint @@ -331,7 +331,7 @@ Notes: - -- Definition --<br/>The locator identifies a specific part of a building.<br/><br/>-- Description --<br/>EXAMPLE The unit level can be, e.g., a dwelling, flat, apartment, room or household, inside a building by use of for example staircase identifier, floor identifier and/or unit number, name.<br/> + -- Definition --<br/>The locator identifies a postal delivery point.<br/><br/>-- Description --<br/>EXAMPLE Postal delivery point can be, e.g., a P.O. box, a private bag, a business reply mail or a large volume receiver.<br/> diff --git a/approved/html/EARoot/EA2/EA1/EA1/EA1/EA7405.htm b/approved/html/EARoot/EA2/EA1/EA1/EA1/EA7405.htm index c71ae464c..8611a54ef 100644 --- a/approved/html/EARoot/EA2/EA1/EA1/EA1/EA7405.htm +++ b/approved/html/EARoot/EA2/EA1/EA1/EA1/EA7405.htm @@ -108,7 +108,7 @@ - Public
  buildingName + Public
  siteName @@ -157,7 +157,7 @@ Notes: - -- Definition --<br/>Name of building or part of building.<br/><br/>-- Description --<br/>EXAMPLE "East Wing".<br/> + -- Definition --<br/>Name of real estate, building complex or site.<br/><br/>-- Description --<br/>EXAMPLE The name of a manor, shopping mall or university campus.<br/> @@ -166,7 +166,7 @@ - Public
  descriptiveLocator + Public
  buildingName @@ -215,7 +215,7 @@ Notes: - -- Definition --<br/>Narrative, textual description of the location or addressable object.<br/> + -- Definition --<br/>Name of building or part of building.<br/><br/>-- Description --<br/>EXAMPLE "East Wing".<br/> @@ -282,7 +282,7 @@ - Public
  siteName + Public
  descriptiveLocator @@ -331,7 +331,7 @@ Notes: - -- Definition --<br/>Name of real estate, building complex or site.<br/><br/>-- Description --<br/>EXAMPLE The name of a manor, shopping mall or university campus.<br/> + -- Definition --<br/>Narrative, textual description of the location or addressable object.<br/> diff --git a/approved/html/EARoot/EA2/EA1/EA1/EA1/EA7407.htm b/approved/html/EARoot/EA2/EA1/EA1/EA1/EA7407.htm index c9a307d8d..e4449b3f5 100644 --- a/approved/html/EARoot/EA2/EA1/EA1/EA1/EA7407.htm +++ b/approved/html/EARoot/EA2/EA1/EA1/EA1/EA7407.htm @@ -224,7 +224,7 @@ - Public
  qualifier + Public
  type @@ -273,7 +273,7 @@ Notes: - -- Definition --<br/>The part of name qualifies the thoroughfare name.<br/><br/>-- Description --<br/>EXAMPLE "Unterer" in Unterer Quai (German name in Biel/Bienne, Switzerland), "Bas" in Quai Bas (French name for same street) and "Little" in Little Strand Street (Dublin, Ireland).<br/> + -- Definition --<br/>The part of name indicates the category or type of thoroughfare.<br/><br/>-- Description --<br/>EXAMPLE "Rua" in Rua da Abelheira (Caçém, Portugal), "Place" in Place de la Madeleine (Paris, France), "Calle" in Calle del Christo Canneregio (Venezia, Italy) and "Street" in Little Strand Street (Dublin, Ireland).<br/> @@ -282,7 +282,7 @@ - Public
  type + Public
  qualifier @@ -331,7 +331,7 @@ Notes: - -- Definition --<br/>The part of name indicates the category or type of thoroughfare.<br/><br/>-- Description --<br/>EXAMPLE "Rua" in Rua da Abelheira (Caçém, Portugal), "Place" in Place de la Madeleine (Paris, France), "Calle" in Calle del Christo Canneregio (Venezia, Italy) and "Street" in Little Strand Street (Dublin, Ireland).<br/> + -- Definition --<br/>The part of name qualifies the thoroughfare name.<br/><br/>-- Description --<br/>EXAMPLE "Unterer" in Unterer Quai (German name in Biel/Bienne, Switzerland), "Bas" in Quai Bas (French name for same street) and "Little" in Little Strand Street (Dublin, Ireland).<br/> diff --git a/approved/html/EARoot/EA2/EA1/EA1/EA1/EA7408.htm b/approved/html/EARoot/EA2/EA1/EA1/EA1/EA7408.htm index 578c68e54..6b2f6f7e4 100644 --- a/approved/html/EARoot/EA2/EA1/EA1/EA1/EA7408.htm +++ b/approved/html/EARoot/EA2/EA1/EA1/EA1/EA7408.htm @@ -110,7 +110,7 @@ - Public CharacterString
  postCode + Public GeographicalName
  postName @@ -136,7 +136,7 @@ Range: - Range:0 to 1 + Range:0 to * Transient: @@ -159,7 +159,7 @@ Notes: - -- Definition --<br/>A code created and maintained for postal purposes to identify a subdivision of addresses and postal delivery points. <br/><br/>-- Description --<br/>NOTE 1 The structure, schema and formats of post codes are different in different countries. Often the components of the post code are hierarchical, e.g. when the first character(s) identifies the region covered by the post code and the next characters define the subdivision. <br/><br/>NOTE 2 In some countries, e.g., The Republic of Ireland, no post codes exists therefore the postal descriptor is only represented by the post name (e.g. town name).<br/><br/>EXAMPLE In the UK postcodes starting with W covers the Western (W1) and Paddington (W2-14) districts of the London postal district. In Sweden all postcodes starting with "80" is related to the postal name "Gävle".<br/> + -- Definition --<br/>One or more names created and maintained for postal purposes to identify a subdivision of addresses and postal delivery points. <br/><br/>-- Description --<br/>NOTE 1 Often the post name (or names) is a supplementary identification of the post office to which the associated post code belongs. For example it may be the name of the town in which the office is situated. In other situations the post name could be an independent descriptor without any post code or it could be a postal subdivision connected to a parent postal descriptor (post code and post name). <br/><br/>NOTE 2 In some countries like e.g. Spain and The Netherlands, no post names exit therefore the postal descriptor is only represented by the post code. <br/><br/>NOTE 3 Even though the post name is the same as the name of an administrative unit or an address area, the area covered are not necessarilythe same.<br/> @@ -168,7 +168,7 @@ - Public GeographicalName
  postName + Public CharacterString
  postCode @@ -194,7 +194,7 @@ Range: - Range:0 to * + Range:0 to 1 Transient: @@ -217,7 +217,7 @@ Notes: - -- Definition --<br/>One or more names created and maintained for postal purposes to identify a subdivision of addresses and postal delivery points. <br/><br/>-- Description --<br/>NOTE 1 Often the post name (or names) is a supplementary identification of the post office to which the associated post code belongs. For example it may be the name of the town in which the office is situated. In other situations the post name could be an independent descriptor without any post code or it could be a postal subdivision connected to a parent postal descriptor (post code and post name). <br/><br/>NOTE 2 In some countries like e.g. Spain and The Netherlands, no post names exit therefore the postal descriptor is only represented by the post code. <br/><br/>NOTE 3 Even though the post name is the same as the name of an administrative unit or an address area, the area covered are not necessarilythe same.<br/> + -- Definition --<br/>A code created and maintained for postal purposes to identify a subdivision of addresses and postal delivery points. <br/><br/>-- Description --<br/>NOTE 1 The structure, schema and formats of post codes are different in different countries. Often the components of the post code are hierarchical, e.g. when the first character(s) identifies the region covered by the post code and the next characters define the subdivision. <br/><br/>NOTE 2 In some countries, e.g., The Republic of Ireland, no post codes exists therefore the postal descriptor is only represented by the post name (e.g. town name).<br/><br/>EXAMPLE In the UK postcodes starting with W covers the Western (W1) and Paddington (W2-14) districts of the London postal district. In Sweden all postcodes starting with "80" is related to the postal name "Gävle".<br/> diff --git a/approved/html/EARoot/EA2/EA1/EA1/EA1/EA7409.htm b/approved/html/EARoot/EA2/EA1/EA1/EA1/EA7409.htm index 44c0d32d9..09246c760 100644 --- a/approved/html/EARoot/EA2/EA1/EA1/EA1/EA7409.htm +++ b/approved/html/EARoot/EA2/EA1/EA1/EA1/EA7409.htm @@ -108,7 +108,7 @@ - Public
  alternative + Public
  current @@ -157,7 +157,7 @@ Notes: - -- Definition --<br/>An address in common use but different from the master address as determined by the official body responsible for address allocation or by the dataset custodian.<br/> + -- Definition --<br/>Current and valid address according to official body responsible for address allocation or deemed, by the dataset custodian, to be the most appropriate, commonly used address.<br/> @@ -166,7 +166,7 @@ - Public
  current + Public
  retired @@ -215,7 +215,7 @@ Notes: - -- Definition --<br/>Current and valid address according to official body responsible for address allocation or deemed, by the dataset custodian, to be the most appropriate, commonly used address.<br/> + -- Definition --<br/>An address no longer in every day use or abolished by the official body responsible for address allocation or by the dataset custodian.<br/> @@ -340,7 +340,7 @@ - Public
  retired + Public
  alternative @@ -389,7 +389,7 @@ Notes: - -- Definition --<br/>An address no longer in every day use or abolished by the official body responsible for address allocation or by the dataset custodian.<br/> + -- Definition --<br/>An address in common use but different from the master address as determined by the official body responsible for address allocation or by the dataset custodian.<br/> diff --git a/approved/html/EARoot/EA2/EA1/EA2/EA1/EA7427.png b/approved/html/EARoot/EA2/EA1/EA2/EA1/EA7427.png index 9d20ec839..dbd5b9034 100644 Binary files a/approved/html/EARoot/EA2/EA1/EA2/EA1/EA7427.png and b/approved/html/EARoot/EA2/EA1/EA2/EA1/EA7427.png differ diff --git a/approved/html/EARoot/EA2/EA1/EA2/EA1/EA7435.png b/approved/html/EARoot/EA2/EA1/EA2/EA1/EA7435.png index c073dd5f6..173abb065 100644 Binary files a/approved/html/EARoot/EA2/EA1/EA2/EA1/EA7435.png and b/approved/html/EARoot/EA2/EA1/EA2/EA1/EA7435.png differ diff --git a/approved/html/EARoot/EA2/EA1/EA2/EA1/EA7437.png b/approved/html/EARoot/EA2/EA1/EA2/EA1/EA7437.png index 37cfed9b2..c59e3c533 100644 Binary files a/approved/html/EARoot/EA2/EA1/EA2/EA1/EA7437.png and b/approved/html/EARoot/EA2/EA1/EA2/EA1/EA7437.png differ diff --git a/approved/html/EARoot/EA2/EA1/EA2/EA1/EA7450.htm b/approved/html/EARoot/EA2/EA1/EA2/EA1/EA7450.htm index 68d01aa87..84c31e976 100644 --- a/approved/html/EARoot/EA2/EA1/EA2/EA1/EA7450.htm +++ b/approved/html/EARoot/EA2/EA1/EA2/EA1/EA7450.htm @@ -108,7 +108,7 @@ - Public GM_Point
  geometry + Public GeographicalName
  name @@ -126,7 +126,7 @@ Stereotype: - <<voidable>> + Ordered: @@ -157,7 +157,7 @@ Notes: - -- Definition --<br/>Position of the residence of authority.<br/><br/> + -- Definition --<br/>Name of the residence of authority.<br/><br/> @@ -166,7 +166,7 @@ - Public GeographicalName
  name + Public GM_Point
  geometry @@ -184,7 +184,7 @@ Stereotype: - + <<voidable>> Ordered: @@ -215,7 +215,7 @@ Notes: - -- Definition --<br/>Name of the residence of authority.<br/><br/> + -- Definition --<br/>Position of the residence of authority.<br/><br/> diff --git a/approved/html/EARoot/EA2/EA1/EA2/EA2/EA7463.png b/approved/html/EARoot/EA2/EA1/EA2/EA2/EA7463.png index c073dd5f6..173abb065 100644 Binary files a/approved/html/EARoot/EA2/EA1/EA2/EA2/EA7463.png and b/approved/html/EARoot/EA2/EA1/EA2/EA2/EA7463.png differ diff --git a/approved/html/EARoot/EA2/EA1/EA3/EA1/EA7535.png b/approved/html/EARoot/EA2/EA1/EA3/EA1/EA7535.png index f2e18b9aa..0353ab1e1 100644 Binary files a/approved/html/EARoot/EA2/EA1/EA3/EA1/EA7535.png and b/approved/html/EARoot/EA2/EA1/EA3/EA1/EA7535.png differ diff --git a/approved/html/EARoot/EA2/EA1/EA3/EA1/EA7537.htm b/approved/html/EARoot/EA2/EA1/EA3/EA1/EA7537.htm index d08fadaa4..f55a1ff9f 100644 --- a/approved/html/EARoot/EA2/EA1/EA3/EA1/EA7537.htm +++ b/approved/html/EARoot/EA2/EA1/EA3/EA1/EA7537.htm @@ -111,7 +111,7 @@ - Public Area
  areaValue + Public Identifier
  inspireId @@ -129,7 +129,7 @@ Stereotype: - <<voidable>> + Ordered: @@ -137,7 +137,7 @@ Range: - Range:0 to 1 + Transient: @@ -160,7 +160,7 @@ Notes: - -- Definition --<br/>Registered area value giving quantification of the area projected on the horizontal plane of the cadastral parcels composing the basic property unit.<br/> + -- Definition --<br/>External object identifier of the spatial object.<br/><br/>-- Description --<br/>NOTE An external object identifier is a unique object identifier published by the responsible body, which may be used by external applications to reference the spatial object. The identifier is an identifier of the spatial object, not an identifier of the real-world phenomenon.<br/><br/> @@ -169,7 +169,7 @@ - Public DateTime
  beginLifespanVersion + Public CharacterString
  nationalCadastralReference @@ -187,7 +187,7 @@ Stereotype: - <<lifeCycleInfo>> + Ordered: @@ -218,7 +218,7 @@ Notes: - -- Definition --<br/>Date and time at which this version of the spatial object was inserted or changed in the spatial data set.<br/><br/> + -- Definition --<br/>Thematic identifier at national level, generally the full national code of the basic property unit. Must ensure the link to the national cadastral register or equivalent.<br/><br/>-- Description --<br/>The national cadastral reference can be used also in further queries in national services.<br/> @@ -227,7 +227,7 @@ - Public DateTime
  endLifespanVersion + Public Area
  areaValue @@ -245,7 +245,7 @@ Stereotype: - <<lifeCycleInfo>> + <<voidable>> Ordered: @@ -276,7 +276,7 @@ Notes: - -- Definition --<br/>Date and time at which this version of the spatial object was superseded or retired in the spatial data set.<br/><br/> + -- Definition --<br/>Registered area value giving quantification of the area projected on the horizontal plane of the cadastral parcels composing the basic property unit.<br/> @@ -285,7 +285,7 @@ - Public Identifier
  inspireId + Public DateTime
  validFrom @@ -303,7 +303,7 @@ Stereotype: - + <<voidable>> Ordered: @@ -334,7 +334,7 @@ Notes: - -- Definition --<br/>External object identifier of the spatial object.<br/><br/>-- Description --<br/>NOTE An external object identifier is a unique object identifier published by the responsible body, which may be used by external applications to reference the spatial object. The identifier is an identifier of the spatial object, not an identifier of the real-world phenomenon.<br/><br/> + -- Definition --<br/>Official date and time the basic property unit was/will be legally established.<br/><br/>-- Description --<br/>NOTE This is the date and time the national cadastral reference can be used in legal acts.<br/><br/> @@ -343,7 +343,7 @@ - Public CharacterString
  nationalCadastralReference + Public DateTime
  validTo @@ -361,7 +361,7 @@ Stereotype: - + <<voidable>> Ordered: @@ -369,7 +369,7 @@ Range: - + Range:0 to 1 Transient: @@ -392,7 +392,7 @@ Notes: - -- Definition --<br/>Thematic identifier at national level, generally the full national code of the basic property unit. Must ensure the link to the national cadastral register or equivalent.<br/><br/>-- Description --<br/>The national cadastral reference can be used also in further queries in national services.<br/> + -- Definition --<br/>Date and time at which the basic property unit legally ceased/will cease to be used.<br/><br/>-- Description --<br/>NOTE This is the date and time the national cadastral reference can no longer be used in legal acts.<br/><br/> @@ -401,7 +401,7 @@ - Public DateTime
  validFrom + Public DateTime
  beginLifespanVersion @@ -419,7 +419,7 @@ Stereotype: - <<voidable>> + <<lifeCycleInfo>> Ordered: @@ -450,7 +450,7 @@ Notes: - -- Definition --<br/>Official date and time the basic property unit was/will be legally established.<br/><br/>-- Description --<br/>NOTE This is the date and time the national cadastral reference can be used in legal acts.<br/><br/> + -- Definition --<br/>Date and time at which this version of the spatial object was inserted or changed in the spatial data set.<br/><br/> @@ -459,7 +459,7 @@ - Public DateTime
  validTo + Public DateTime
  endLifespanVersion @@ -477,7 +477,7 @@ Stereotype: - <<voidable>> + <<lifeCycleInfo>> Ordered: @@ -508,7 +508,7 @@ Notes: - -- Definition --<br/>Date and time at which the basic property unit legally ceased/will cease to be used.<br/><br/>-- Description --<br/>NOTE This is the date and time the national cadastral reference can no longer be used in legal acts.<br/><br/> + -- Definition --<br/>Date and time at which this version of the spatial object was superseded or retired in the spatial data set.<br/><br/> diff --git a/approved/html/EARoot/EA2/EA1/EA3/EA1/EA7541.htm b/approved/html/EARoot/EA2/EA1/EA3/EA1/EA7541.htm index c6fc84a31..5e5e28ce9 100644 --- a/approved/html/EARoot/EA2/EA1/EA3/EA1/EA7541.htm +++ b/approved/html/EARoot/EA2/EA1/EA3/EA1/EA7541.htm @@ -749,7 +749,7 @@ - Public GM_Point
  referencePoint + Public DateTime
  validFrom @@ -798,7 +798,7 @@ Notes: - -- Definition --<br/>A point within the cadastral zoning.<br/><br/>-- Description --<br/>EXAMPLE The centroid of the cadastral parcel geometry.<br/> + -- Definition --<br/>Official date and time the cadastral zoning was/will be legally established.<br/><br/> @@ -807,7 +807,7 @@ - Public DateTime
  validFrom + Public GM_Point
  referencePoint @@ -856,7 +856,7 @@ Notes: - -- Definition --<br/>Official date and time the cadastral zoning was/will be legally established.<br/><br/> + -- Definition --<br/>A point within the cadastral zoning.<br/><br/>-- Description --<br/>EXAMPLE The centroid of the cadastral parcel geometry.<br/> diff --git a/approved/html/EARoot/EA2/EA1/EA3/EA4/EA7549.png b/approved/html/EARoot/EA2/EA1/EA3/EA4/EA7549.png index df85892ae..92c08171a 100644 Binary files a/approved/html/EARoot/EA2/EA1/EA3/EA4/EA7549.png and b/approved/html/EARoot/EA2/EA1/EA3/EA4/EA7549.png differ diff --git a/approved/html/EARoot/EA2/EA1/EA3/EA4/EA7551.png b/approved/html/EARoot/EA2/EA1/EA3/EA4/EA7551.png index 492b85bcb..77846c630 100644 Binary files a/approved/html/EARoot/EA2/EA1/EA3/EA4/EA7551.png and b/approved/html/EARoot/EA2/EA1/EA3/EA4/EA7551.png differ diff --git a/approved/html/EARoot/EA2/EA1/EA3/EA5/EA7554.png b/approved/html/EARoot/EA2/EA1/EA3/EA5/EA7554.png index b21d720c7..e970311b3 100644 Binary files a/approved/html/EARoot/EA2/EA1/EA3/EA5/EA7554.png and b/approved/html/EARoot/EA2/EA1/EA3/EA5/EA7554.png differ diff --git a/approved/html/EARoot/EA2/EA1/EA6/EA1/EA7567.png b/approved/html/EARoot/EA2/EA1/EA6/EA1/EA7567.png index a07622757..ec7725649 100644 Binary files a/approved/html/EARoot/EA2/EA1/EA6/EA1/EA7567.png and b/approved/html/EARoot/EA2/EA1/EA6/EA1/EA7567.png differ diff --git a/approved/html/EARoot/EA2/EA1/EA6/EA1/EA7569.png b/approved/html/EARoot/EA2/EA1/EA6/EA1/EA7569.png index 2669a2663..7384457e6 100644 Binary files a/approved/html/EARoot/EA2/EA1/EA6/EA1/EA7569.png and b/approved/html/EARoot/EA2/EA1/EA6/EA1/EA7569.png differ diff --git a/approved/html/EARoot/EA2/EA1/EA6/EA1/EA7571.png b/approved/html/EARoot/EA2/EA1/EA6/EA1/EA7571.png index 63dfe6627..5b478c75f 100644 Binary files a/approved/html/EARoot/EA2/EA1/EA6/EA1/EA7571.png and b/approved/html/EARoot/EA2/EA1/EA6/EA1/EA7571.png differ diff --git a/approved/html/EARoot/EA2/EA1/EA6/EA1/EA7573.htm b/approved/html/EARoot/EA2/EA1/EA6/EA1/EA7573.htm index e69d70f7e..427b98ffc 100644 --- a/approved/html/EARoot/EA2/EA1/EA6/EA1/EA7573.htm +++ b/approved/html/EARoot/EA2/EA1/EA6/EA1/EA7573.htm @@ -106,7 +106,7 @@ - Public GeographicalName
  name + Public <undefined>
  specificAttributes @@ -132,7 +132,7 @@ Range: - Range:0 to * + Transient: @@ -154,7 +154,7 @@ - Public <undefined>
  specificAttributes + Public GeographicalName
  name @@ -180,7 +180,7 @@ Range: - + Range:0 to * Transient: diff --git a/approved/html/EARoot/EA2/EA1/EA6/EA2/EA7575.png b/approved/html/EARoot/EA2/EA1/EA6/EA2/EA7575.png index ff5bc4739..d3c26b1c9 100644 Binary files a/approved/html/EARoot/EA2/EA1/EA6/EA2/EA7575.png and b/approved/html/EARoot/EA2/EA1/EA6/EA2/EA7575.png differ diff --git a/approved/html/EARoot/EA2/EA1/EA6/EA2/EA7577.png b/approved/html/EARoot/EA2/EA1/EA6/EA2/EA7577.png index 9d55809e6..b5934ebe9 100644 Binary files a/approved/html/EARoot/EA2/EA1/EA6/EA2/EA7577.png and b/approved/html/EARoot/EA2/EA1/EA6/EA2/EA7577.png differ diff --git a/approved/html/EARoot/EA2/EA1/EA6/EA2/EA7581.png b/approved/html/EARoot/EA2/EA1/EA6/EA2/EA7581.png index 49e90aabc..051ebdc68 100644 Binary files a/approved/html/EARoot/EA2/EA1/EA6/EA2/EA7581.png and b/approved/html/EARoot/EA2/EA1/EA6/EA2/EA7581.png differ diff --git a/approved/html/EARoot/EA2/EA1/EA6/EA2/EA7587.htm b/approved/html/EARoot/EA2/EA1/EA6/EA2/EA7587.htm index 58d9f9932..7dbd62e73 100644 --- a/approved/html/EARoot/EA2/EA1/EA6/EA2/EA7587.htm +++ b/approved/html/EARoot/EA2/EA1/EA6/EA2/EA7587.htm @@ -108,7 +108,7 @@ - Public GrammaticalGenderValue
  grammaticalGender + Public CharacterString
  language @@ -134,7 +134,7 @@ Range: - Range:0 to 1 + Transient: @@ -157,7 +157,7 @@ Notes: - -- Definition --<br/>Class of nouns reflected in the behaviour of associated words.<br/><br/>-- Description --<br/>NOTE the attribute has cardinality [0..1] and is voidable, which means that:<br/><ul>
<li>in case the concept of grammatical gender has no sense for a given name (i.e. the attribute is not applicable), the attribute should not be provided.</li><li>in case the concept of grammatical gender has some sense for the name but is unknown, the attribute should be provided but <i>void</i>.  </li></ul>
<br/><br/> + -- Definition --<br/>Language of the name, given as a three letters code, in accordance with either ISO 639-3 or ISO 639-5.<br/><br/>-- Description --<br/>NOTE 1More precisely, this definition refers to the language used by the community that uses the name.<br/><br/>NOTE 2 The code "mul" for "multilingual" should not be used in general. However it can be used in rare cases like official names composed of two names in different languages. For example, "Vitoria-Gasteiz" is such a multilingual official name in Spain.<br/><br/>NOTE 3 Even if this attribute is "voidable" for pragmatic reasons, it is of first importance in several use cases in the multi-language context of Europe.<br/><br/> @@ -166,7 +166,7 @@ - Public GrammaticalNumberValue
  grammaticalNumber + Public NativenessValue
  nativeness @@ -192,7 +192,7 @@ Range: - Range:0 to 1 + Transient: @@ -215,7 +215,7 @@ Notes: - -- Definition --<br/>Grammatical category of nouns that expresses count distinctions.<br/><br/>-- Description --<br/>NOTE the attribute has cardinality [0..1] and is voidable, which means that:<br/><ul>
<li>in case the concept of grammatical number has no sense for a given name (i.e. the attribute is not applicable), the attribute should not be provided.</li><li>in case the concept of grammatical number has some sense for the name but is unknown, the attribute should be provided but <i>void</i>.</li></ul>
<br/><br/> + -- Definition --<br/>Information enabling to acknowledge if the name is the one that is/was used in the area where the spatial object is situated at the instant when the name is/was in use.<br/><br/> @@ -224,7 +224,7 @@ - Public CharacterString
  language + Public NameStatusValue
  nameStatus @@ -273,7 +273,7 @@ Notes: - -- Definition --<br/>Language of the name, given as a three letters code, in accordance with either ISO 639-3 or ISO 639-5.<br/><br/>-- Description --<br/>NOTE 1More precisely, this definition refers to the language used by the community that uses the name.<br/><br/>NOTE 2 The code "mul" for "multilingual" should not be used in general. However it can be used in rare cases like official names composed of two names in different languages. For example, "Vitoria-Gasteiz" is such a multilingual official name in Spain.<br/><br/>NOTE 3 Even if this attribute is "voidable" for pragmatic reasons, it is of first importance in several use cases in the multi-language context of Europe.<br/><br/> + -- Definition --<br/>Qualitative information enabling to discern which credit should be given to the name with respect to its standardisation and/or its topicality.<br/><br/>-- Description --<br/>NOTE The Geographical Names application schema does not explicitly make a preference between different names (e.g. official endonyms) of a specific real world entity. The necessary information for making the preference (e.g. the linguistic status of the administrative or geographic area in question), for a certain use case, must be obtained from other data or information sources. For example, the status of the language of the name may be known through queries on the geometries of named places against the geometry of administrative units recorded in a certain source with the language statuses information. <br/> @@ -282,7 +282,7 @@ - Public NameStatusValue
  nameStatus + Public CharacterString
  sourceOfName @@ -331,7 +331,7 @@ Notes: - -- Definition --<br/>Qualitative information enabling to discern which credit should be given to the name with respect to its standardisation and/or its topicality.<br/><br/>-- Description --<br/>NOTE The Geographical Names application schema does not explicitly make a preference between different names (e.g. official endonyms) of a specific real world entity. The necessary information for making the preference (e.g. the linguistic status of the administrative or geographic area in question), for a certain use case, must be obtained from other data or information sources. For example, the status of the language of the name may be known through queries on the geometries of named places against the geometry of administrative units recorded in a certain source with the language statuses information. <br/> + -- Definition --<br/>Original data source from which the geographical name is taken from and integrated in the data set providing/publishing it. For some named spatial objects it might refer again to the publishing data set if no other information is available.<br/><br/>-- Description --<br/>EXAMPLES Gazetteer, geographical names data set.<br/><br/> @@ -340,7 +340,7 @@ - Public NativenessValue
  nativeness + Public PronunciationOfName
  pronunciation @@ -389,7 +389,7 @@ Notes: - -- Definition --<br/>Information enabling to acknowledge if the name is the one that is/was used in the area where the spatial object is situated at the instant when the name is/was in use.<br/><br/> + -- Definition --<br/>Proper, correct or standard (standard within the linguistic community concerned) pronunciation of the geographical name.<br/><br/>-- Description --<br/>SOURCE Adapted from [UNGEGN Manual 2006].<br/><br/> @@ -398,7 +398,7 @@ - Public PronunciationOfName
  pronunciation + Public SpellingOfName
  spelling @@ -416,7 +416,7 @@ Stereotype: - <<voidable>> + Ordered: @@ -447,7 +447,7 @@ Notes: - -- Definition --<br/>Proper, correct or standard (standard within the linguistic community concerned) pronunciation of the geographical name.<br/><br/>-- Description --<br/>SOURCE Adapted from [UNGEGN Manual 2006].<br/><br/> + -- Definition --<br/>A proper way of writing the geographical name.<br/><br/>-- Description --<br/>NOTE 1 Different spellings should only be used for names rendered in different scripts. .<br/><br/>NOTE 2 While a particular GeographicalName should only have one spelling in a given script, providing different spellings in the same script should be done through the provision of different geographical names associated with the same named place.<br/><br/> @@ -456,7 +456,7 @@ - Public CharacterString
  sourceOfName + Public GrammaticalGenderValue
  grammaticalGender @@ -482,7 +482,7 @@ Range: - + Range:0 to 1 Transient: @@ -505,7 +505,7 @@ Notes: - -- Definition --<br/>Original data source from which the geographical name is taken from and integrated in the data set providing/publishing it. For some named spatial objects it might refer again to the publishing data set if no other information is available.<br/><br/>-- Description --<br/>EXAMPLES Gazetteer, geographical names data set.<br/><br/> + -- Definition --<br/>Class of nouns reflected in the behaviour of associated words.<br/><br/>-- Description --<br/>NOTE the attribute has cardinality [0..1] and is voidable, which means that:<br/><ul>
<li>in case the concept of grammatical gender has no sense for a given name (i.e. the attribute is not applicable), the attribute should not be provided.</li><li>in case the concept of grammatical gender has some sense for the name but is unknown, the attribute should be provided but <i>void</i>.  </li></ul>
<br/><br/> @@ -514,7 +514,7 @@ - Public SpellingOfName
  spelling + Public GrammaticalNumberValue
  grammaticalNumber @@ -532,7 +532,7 @@ Stereotype: - + <<voidable>> Ordered: @@ -540,7 +540,7 @@ Range: - + Range:0 to 1 Transient: @@ -563,7 +563,7 @@ Notes: - -- Definition --<br/>A proper way of writing the geographical name.<br/><br/>-- Description --<br/>NOTE 1 Different spellings should only be used for names rendered in different scripts. .<br/><br/>NOTE 2 While a particular GeographicalName should only have one spelling in a given script, providing different spellings in the same script should be done through the provision of different geographical names associated with the same named place.<br/><br/> + -- Definition --<br/>Grammatical category of nouns that expresses count distinctions.<br/><br/>-- Description --<br/>NOTE the attribute has cardinality [0..1] and is voidable, which means that:<br/><ul>
<li>in case the concept of grammatical number has no sense for a given name (i.e. the attribute is not applicable), the attribute should not be provided.</li><li>in case the concept of grammatical number has some sense for the name but is unknown, the attribute should be provided but <i>void</i>.</li></ul>
<br/><br/> diff --git a/approved/html/EARoot/EA2/EA1/EA6/EA2/EA7588.htm b/approved/html/EARoot/EA2/EA1/EA6/EA2/EA7588.htm index 2736f8168..4747cef89 100644 --- a/approved/html/EARoot/EA2/EA1/EA6/EA2/EA7588.htm +++ b/approved/html/EARoot/EA2/EA1/EA6/EA2/EA7588.htm @@ -108,7 +108,7 @@ - Public
  common + Public
  masculine @@ -157,7 +157,7 @@ Notes: - -- Definition --<br/>'Common' grammatical gender (the merging of 'masculine' and 'feminine'). <br/><br/> + -- Definition --<br/>Masculine grammatical gender.<br/><br/>-- Description --<br/>EXAMPLES Sena (Spanish), Schwarzwald (German).<br/><br/> @@ -224,7 +224,7 @@ - Public
  masculine + Public
  neuter @@ -273,7 +273,7 @@ Notes: - -- Definition --<br/>Masculine grammatical gender.<br/><br/>-- Description --<br/>EXAMPLES Sena (Spanish), Schwarzwald (German).<br/><br/> + -- Definition --<br/>Neuter grammatical gender.<br/><br/>-- Description --<br/>EXAMPLES Zwarte Woud (Dutch), Rheinland (German).<br/><br/> @@ -282,7 +282,7 @@ - Public
  neuter + Public
  common @@ -331,7 +331,7 @@ Notes: - -- Definition --<br/>Neuter grammatical gender.<br/><br/>-- Description --<br/>EXAMPLES Zwarte Woud (Dutch), Rheinland (German).<br/><br/> + -- Definition --<br/>'Common' grammatical gender (the merging of 'masculine' and 'feminine'). <br/><br/> diff --git a/approved/html/EARoot/EA2/EA1/EA6/EA2/EA7589.htm b/approved/html/EARoot/EA2/EA1/EA6/EA2/EA7589.htm index 9cb3bd2b2..f391e9cd3 100644 --- a/approved/html/EARoot/EA2/EA1/EA6/EA2/EA7589.htm +++ b/approved/html/EARoot/EA2/EA1/EA6/EA2/EA7589.htm @@ -108,7 +108,7 @@ - Public
  dual + Public
  singular @@ -157,7 +157,7 @@ Notes: - -- Definition --<br/>Dual grammatical number. <br/> + -- Definition --<br/>Singular grammatical number.<br/><br/>-- Description --<br/>EXAMPLES Danube (English), Lac du Bourget (French), Praha (Czech), Nederland (Dutch).<br/><br/> @@ -224,7 +224,7 @@ - Public
  singular + Public
  dual @@ -273,7 +273,7 @@ Notes: - -- Definition --<br/>Singular grammatical number.<br/><br/>-- Description --<br/>EXAMPLES Danube (English), Lac du Bourget (French), Praha (Czech), Nederland (Dutch).<br/><br/> + -- Definition --<br/>Dual grammatical number. <br/> diff --git a/approved/html/EARoot/EA2/EA1/EA6/EA2/EA7591.htm b/approved/html/EARoot/EA2/EA1/EA6/EA2/EA7591.htm index ed838d319..49add4639 100644 --- a/approved/html/EARoot/EA2/EA1/EA6/EA2/EA7591.htm +++ b/approved/html/EARoot/EA2/EA1/EA6/EA2/EA7591.htm @@ -398,7 +398,7 @@ - Public
  other + Public
  populatedPlace @@ -447,7 +447,7 @@ Notes: - -- Definition --<br/>A spatial object not included in the other types of the code list.<br/><br/> + -- Definition --<br/>A place inhabited by people.<br/><br/>-- Description --<br/>EXAMPLES<br/><ul>
<li>City, town, town district, village;</li><li>Hamlet, isolated house.</li></ul>
<br/><br/> @@ -456,7 +456,7 @@ - Public
  populatedPlace + Public
  protectedSite @@ -505,7 +505,7 @@ Notes: - -- Definition --<br/>A place inhabited by people.<br/><br/>-- Description --<br/>EXAMPLES<br/><ul>
<li>City, town, town district, village;</li><li>Hamlet, isolated house.</li></ul>
<br/><br/> + -- Definition --<br/>Area designated or managed within a framework of international, Community and Member States' legislation to achieve specific conservation objectives.<br/><br/>-- Description --<br/>SOURCE Definition of Annex I theme, INSPIRE Directive [Regulation 1205/2008/EC].<br/><br/>EXAMPLES National park, nature reserve.<br/><br/><br/> @@ -514,7 +514,7 @@ - Public
  protectedSite + Public
  transportNetwork @@ -563,7 +563,7 @@ Notes: - -- Definition --<br/>Area designated or managed within a framework of international, Community and Member States' legislation to achieve specific conservation objectives.<br/><br/>-- Description --<br/>SOURCE Definition of Annex I theme, INSPIRE Directive [Regulation 1205/2008/EC].<br/><br/>EXAMPLES National park, nature reserve.<br/><br/><br/> + -- Definition --<br/>Road, rail, air and water transport networks and related infrastructure. Includes links between different networks. <br/><br/>-- Description --<br/>SOURCE Definition of Annex I theme, INSPIRE Directive [Regulation 1205/2008/EC].<br/><br/>EXAMPLES<br/><ul>
<li>Air transport structures and facilities such as airport, heliport;</li><li>Water transport structures and facilities such as harbour, dock, pier, ferry line;</li><li>Rail transport structures and facilities such as railway station, railway bridge, railway tunnel;</li><li>Road transport structures and facilities such as bus station, highway, road, street, road bridge, road tunnel.</li></ul>
<br/><br/> @@ -572,7 +572,7 @@ - Public
  transportNetwork + Public
  other @@ -621,7 +621,7 @@ Notes: - -- Definition --<br/>Road, rail, air and water transport networks and related infrastructure. Includes links between different networks. <br/><br/>-- Description --<br/>SOURCE Definition of Annex I theme, INSPIRE Directive [Regulation 1205/2008/EC].<br/><br/>EXAMPLES<br/><ul>
<li>Air transport structures and facilities such as airport, heliport;</li><li>Water transport structures and facilities such as harbour, dock, pier, ferry line;</li><li>Rail transport structures and facilities such as railway station, railway bridge, railway tunnel;</li><li>Road transport structures and facilities such as bus station, highway, road, street, road bridge, road tunnel.</li></ul>
<br/><br/> + -- Definition --<br/>A spatial object not included in the other types of the code list.<br/><br/> diff --git a/approved/html/EARoot/EA2/EA1/EA6/EA2/EA7592.htm b/approved/html/EARoot/EA2/EA1/EA6/EA2/EA7592.htm index 29a6440d1..d0512a496 100644 --- a/approved/html/EARoot/EA2/EA1/EA6/EA2/EA7592.htm +++ b/approved/html/EARoot/EA2/EA1/EA6/EA2/EA7592.htm @@ -108,7 +108,7 @@ - Public
  historical + Public
  official @@ -157,7 +157,7 @@ Notes: - -- Definition --<br/>Historical name not in current use.<br/> + -- Definition --<br/>Name in current use and officially approved or established by legislation.<br/> @@ -166,7 +166,7 @@ - Public
  official + Public
  standardised @@ -215,7 +215,7 @@ Notes: - -- Definition --<br/>Name in current use and officially approved or established by legislation.<br/> + -- Definition --<br/>Name in current use and accepted or recommended by a body assigned advisory function and/or power of decision in matters of toponymy.<br/> @@ -224,7 +224,7 @@ - Public
  other + Public
  historical @@ -273,7 +273,7 @@ Notes: - -- Definition --<br/>Current, but not official, nor approved name.<br/> + -- Definition --<br/>Historical name not in current use.<br/> @@ -282,7 +282,7 @@ - Public
  standardised + Public
  other @@ -331,7 +331,7 @@ Notes: - -- Definition --<br/>Name in current use and accepted or recommended by a body assigned advisory function and/or power of decision in matters of toponymy.<br/> + -- Definition --<br/>Current, but not official, nor approved name.<br/> diff --git a/approved/html/EARoot/EA2/EA1/EA6/EA2/EA7594.htm b/approved/html/EARoot/EA2/EA1/EA6/EA2/EA7594.htm index 91f2064df..5fcf84857 100644 --- a/approved/html/EARoot/EA2/EA1/EA6/EA2/EA7594.htm +++ b/approved/html/EARoot/EA2/EA1/EA6/EA2/EA7594.htm @@ -109,7 +109,7 @@ - Public CharacterString
  pronunciationIPA + Public URI
  pronunciationSoundLink @@ -158,7 +158,7 @@ Notes: - -- Definition --<br/>Proper, correct or standard (standard within the linguistic community concerned) pronunciation of a name, expressed in International Phonetic Alphabet (IPA).<br/><br/>-- Description --<br/>SOURCE Adapted from [UNGEGN Manual 2006].<br/><br/> + -- Definition --<br/>Proper, correct or standard (standard within the linguistic community concerned) pronunciation of a name, expressed by a link to any sound file.<br/><br/>-- Description --<br/>SOURCE Adapted from [UNGEGN Manual 2006].<br/><br/> @@ -167,7 +167,7 @@ - Public URI
  pronunciationSoundLink + Public CharacterString
  pronunciationIPA @@ -216,7 +216,7 @@ Notes: - -- Definition --<br/>Proper, correct or standard (standard within the linguistic community concerned) pronunciation of a name, expressed by a link to any sound file.<br/><br/>-- Description --<br/>SOURCE Adapted from [UNGEGN Manual 2006].<br/><br/> + -- Definition --<br/>Proper, correct or standard (standard within the linguistic community concerned) pronunciation of a name, expressed in International Phonetic Alphabet (IPA).<br/><br/>-- Description --<br/>SOURCE Adapted from [UNGEGN Manual 2006].<br/><br/> diff --git a/approved/html/EARoot/EA2/EA1/EA6/EA2/EA7595.htm b/approved/html/EARoot/EA2/EA1/EA6/EA2/EA7595.htm index 58aa0f1b4..1dc35eb0b 100644 --- a/approved/html/EARoot/EA2/EA1/EA6/EA2/EA7595.htm +++ b/approved/html/EARoot/EA2/EA1/EA6/EA2/EA7595.htm @@ -108,7 +108,7 @@ - Public CharacterString
  script + Public CharacterString
  text @@ -126,7 +126,7 @@ Stereotype: - <<voidable>> + Ordered: @@ -157,7 +157,7 @@ Notes: - -- Definition --<br/>Set of graphic symbols (for example an alphabet) employed in writing the name, expressed using the four letters codes defined in ISO 15924, where applicable.<br/><br/>-- Description --<br/>SOURCE Adapted from [UNGEGN Glossary 2007].<br/><br/>EXAMPLES Cyrillic, Greek, Roman/Latin scripts.<br/><br/>NOTE 1The four letter codes for Latin (Roman), Cyrillic and Greek script are "Latn", "Cyrl" and "Grek", respectively.<br/><br/>NOTE 2 In rare cases other codes could be used (for other scripts than Latin, Greek and Cyrillic). However, this should mainly apply for historical names in historical scripts.<br/><br/>NOTE 3 This attribute is of first importance in the multi-scriptual context of Europe.<br/><br/> + -- Definition --<br/>Way the name is written.<br/> @@ -166,7 +166,7 @@ - Public CharacterString
  text + Public CharacterString
  script @@ -184,7 +184,7 @@ Stereotype: - + <<voidable>> Ordered: @@ -215,7 +215,7 @@ Notes: - -- Definition --<br/>Way the name is written.<br/> + -- Definition --<br/>Set of graphic symbols (for example an alphabet) employed in writing the name, expressed using the four letters codes defined in ISO 15924, where applicable.<br/><br/>-- Description --<br/>SOURCE Adapted from [UNGEGN Glossary 2007].<br/><br/>EXAMPLES Cyrillic, Greek, Roman/Latin scripts.<br/><br/>NOTE 1The four letter codes for Latin (Roman), Cyrillic and Greek script are "Latn", "Cyrl" and "Grek", respectively.<br/><br/>NOTE 2 In rare cases other codes could be used (for other scripts than Latin, Greek and Cyrillic). However, this should mainly apply for historical names in historical scripts.<br/><br/>NOTE 3 This attribute is of first importance in the multi-scriptual context of Europe.<br/><br/> diff --git a/approved/html/EARoot/EA2/EA1/EA7/EA1/EA7610.png b/approved/html/EARoot/EA2/EA1/EA7/EA1/EA7610.png index 3eb552fb1..49c802bdc 100644 Binary files a/approved/html/EARoot/EA2/EA1/EA7/EA1/EA7610.png and b/approved/html/EARoot/EA2/EA1/EA7/EA1/EA7610.png differ diff --git a/approved/html/EARoot/EA2/EA1/EA7/EA2/EA7621.png b/approved/html/EARoot/EA2/EA1/EA7/EA2/EA7621.png index 47c5f0acd..b181979ab 100644 Binary files a/approved/html/EARoot/EA2/EA1/EA7/EA2/EA7621.png and b/approved/html/EARoot/EA2/EA1/EA7/EA2/EA7621.png differ diff --git a/approved/html/EARoot/EA2/EA1/EA7/EA3/EA7637.png b/approved/html/EARoot/EA2/EA1/EA7/EA3/EA7637.png index dbe569a9f..98ceee1a4 100644 Binary files a/approved/html/EARoot/EA2/EA1/EA7/EA3/EA7637.png and b/approved/html/EARoot/EA2/EA1/EA7/EA3/EA7637.png differ diff --git a/approved/html/EARoot/EA2/EA1/EA7/EA3/EA7639.png b/approved/html/EARoot/EA2/EA1/EA7/EA3/EA7639.png index be1c2e46f..cb89c293a 100644 Binary files a/approved/html/EARoot/EA2/EA1/EA7/EA3/EA7639.png and b/approved/html/EARoot/EA2/EA1/EA7/EA3/EA7639.png differ diff --git a/approved/html/EARoot/EA2/EA1/EA7/EA3/EA7664.htm b/approved/html/EARoot/EA2/EA1/EA7/EA3/EA7664.htm index 65de1f17d..aafb8e6e7 100644 --- a/approved/html/EARoot/EA2/EA1/EA7/EA3/EA7664.htm +++ b/approved/html/EARoot/EA2/EA1/EA7/EA3/EA7664.htm @@ -110,7 +110,7 @@ - Public DateTime
  beginLifespanVersion + Public Identifier
  inspireId @@ -128,7 +128,7 @@ Stereotype: - <<voidable>> + Ordered: @@ -159,7 +159,7 @@ Notes: - -- Definition --<br/>Date and time at which this version of the spatial object was inserted or changed in the spatial data set.<br/><br/> + -- Definition --<br/>External object identifier of the spatial object.<br/><br/>-- Description --<br/>NOTE An external object identifier is a unique object identifier published by the responsible body, which may be used by external applications to reference the spatial object. The identifier is an identifier of the spatial object, not an identifier of the real-world phenomenon.<br/><br/> @@ -168,7 +168,7 @@ - Public ShoreTypeValue
  composition + Public GM_MultiSurface
  geometry @@ -186,7 +186,7 @@ Stereotype: - <<voidable>> + Ordered: @@ -217,7 +217,7 @@ Notes: - -- Definition --<br/><font color="#1a1a1a">The primary type(s) of material composing a spatial object, exclusive of the surface.</font><br/><br/>-- Description --<br/><font color="#1a1a1a">SOURCE  [Based on DFDD].</font><br/><br/><font color="#1a1a1a">NOTE The basis for 'primary' may be, for example, compositional dominance or structural organization.</font><br/> + -- Definition --<br/>The geometry of the shore.<br/> @@ -226,7 +226,7 @@ - Public Boolean
  delineationKnown + Public ShoreTypeValue
  composition @@ -275,7 +275,7 @@ Notes: - -- Definition --<br/>An indication that the delineation (for example: limits and information) of a spatial object is known.<br/><br/>-- Description --<br/>SOURCE [Based on DFDD].<br/> + -- Definition --<br/><font color="#1a1a1a">The primary type(s) of material composing a spatial object, exclusive of the surface.</font><br/><br/>-- Description --<br/><font color="#1a1a1a">SOURCE  [Based on DFDD].</font><br/><br/><font color="#1a1a1a">NOTE The basis for 'primary' may be, for example, compositional dominance or structural organization.</font><br/> @@ -284,7 +284,7 @@ - Public DateTime
  endLifespanVersion + Public Boolean
  delineationKnown @@ -310,7 +310,7 @@ Range: - Range:0 to 1 + Transient: @@ -333,7 +333,7 @@ Notes: - -- Definition --<br/>Date and time at which this version of the spatial object was superseded or retired in the spatial data set.<br/><br/> + -- Definition --<br/>An indication that the delineation (for example: limits and information) of a spatial object is known.<br/><br/>-- Description --<br/>SOURCE [Based on DFDD].<br/> @@ -342,7 +342,7 @@ - Public GM_MultiSurface
  geometry + Public DateTime
  beginLifespanVersion @@ -360,7 +360,7 @@ Stereotype: - + <<voidable>> Ordered: @@ -391,7 +391,7 @@ Notes: - -- Definition --<br/>The geometry of the shore.<br/> + -- Definition --<br/>Date and time at which this version of the spatial object was inserted or changed in the spatial data set.<br/><br/> @@ -400,7 +400,7 @@ - Public Identifier
  inspireId + Public DateTime
  endLifespanVersion @@ -418,7 +418,7 @@ Stereotype: - + <<voidable>> Ordered: @@ -426,7 +426,7 @@ Range: - + Range:0 to 1 Transient: @@ -449,7 +449,7 @@ Notes: - -- Definition --<br/>External object identifier of the spatial object.<br/><br/>-- Description --<br/>NOTE An external object identifier is a unique object identifier published by the responsible body, which may be used by external applications to reference the spatial object. The identifier is an identifier of the spatial object, not an identifier of the real-world phenomenon.<br/><br/> + -- Definition --<br/>Date and time at which this version of the spatial object was superseded or retired in the spatial data set.<br/><br/> diff --git a/approved/html/EARoot/EA2/EA1/EA7/EA3/EA7672.htm b/approved/html/EARoot/EA2/EA1/EA7/EA3/EA7672.htm index a13fec988..73028ebf7 100644 --- a/approved/html/EARoot/EA2/EA1/EA7/EA3/EA7672.htm +++ b/approved/html/EARoot/EA2/EA1/EA7/EA3/EA7672.htm @@ -109,7 +109,7 @@ - Public DateTime
  beginLifespanVersion + Public Identifier
  inspireId @@ -127,7 +127,7 @@ Stereotype: - <<voidable>> + Ordered: @@ -158,7 +158,7 @@ Notes: - -- Definition --<br/>Date and time at which this version of the spatial object was inserted or changed in the spatial data set.<br/><br/> + -- Definition --<br/>External object identifier of the spatial object.<br/><br/>-- Description --<br/>NOTE An external object identifier is a unique object identifier published by the responsible body, which may be used by external applications to reference the spatial object. The identifier is an identifier of the spatial object, not an identifier of the real-world phenomenon.<br/><br/> @@ -167,7 +167,7 @@ - Public DateTime
  endLifespanVersion + Public GM_Surface
  geometry @@ -185,7 +185,7 @@ Stereotype: - <<voidable>> + Ordered: @@ -193,7 +193,7 @@ Range: - Range:0 to 1 + Transient: @@ -216,7 +216,7 @@ Notes: - -- Definition --<br/>Date and time at which this version of the spatial object was superseded or retired in the spatial data set.<br/><br/> + -- Definition --<br/>The geometry of the wetland, as a surface.<br/> @@ -225,7 +225,7 @@ - Public GM_Surface
  geometry + Public LocalisedCharacterString
  localType @@ -243,7 +243,7 @@ Stereotype: - + <<voidable>> Ordered: @@ -251,7 +251,7 @@ Range: - + Range:0 to 1 Transient: @@ -274,7 +274,7 @@ Notes: - -- Definition --<br/>The geometry of the wetland, as a surface.<br/> + -- Definition --<br/>Provides 'local' name for the type of wetland.<br/><br/>-- Description --<br/>EXAMPLE Bog, swamp.<br/> @@ -283,7 +283,7 @@ - Public Identifier
  inspireId + Public Boolean
  tidal @@ -301,7 +301,7 @@ Stereotype: - + <<voidable>> Ordered: @@ -332,7 +332,7 @@ Notes: - -- Definition --<br/>External object identifier of the spatial object.<br/><br/>-- Description --<br/>NOTE An external object identifier is a unique object identifier published by the responsible body, which may be used by external applications to reference the spatial object. The identifier is an identifier of the spatial object, not an identifier of the real-world phenomenon.<br/><br/> + -- Definition --<br/>Identifies whether the wetland is affected by tidal water.<br/> @@ -341,7 +341,7 @@ - Public LocalisedCharacterString
  localType + Public DateTime
  beginLifespanVersion @@ -367,7 +367,7 @@ Range: - Range:0 to 1 + Transient: @@ -390,7 +390,7 @@ Notes: - -- Definition --<br/>Provides 'local' name for the type of wetland.<br/><br/>-- Description --<br/>EXAMPLE Bog, swamp.<br/> + -- Definition --<br/>Date and time at which this version of the spatial object was inserted or changed in the spatial data set.<br/><br/> @@ -399,7 +399,7 @@ - Public Boolean
  tidal + Public DateTime
  endLifespanVersion @@ -425,7 +425,7 @@ Range: - + Range:0 to 1 Transient: @@ -448,7 +448,7 @@ Notes: - -- Definition --<br/>Identifies whether the wetland is affected by tidal water.<br/> + -- Definition --<br/>Date and time at which this version of the spatial object was superseded or retired in the spatial data set.<br/><br/> diff --git a/approved/html/EARoot/EA2/EA1/EA8/EA1/EA7687.png b/approved/html/EARoot/EA2/EA1/EA8/EA1/EA7687.png index 196bd7c3c..63363927d 100644 Binary files a/approved/html/EARoot/EA2/EA1/EA8/EA1/EA7687.png and b/approved/html/EARoot/EA2/EA1/EA8/EA1/EA7687.png differ diff --git a/approved/html/EARoot/EA2/EA1/EA8/EA1/EA7690.htm b/approved/html/EARoot/EA2/EA1/EA8/EA1/EA7690.htm index 24fe8ed55..cc566de0f 100644 --- a/approved/html/EARoot/EA2/EA1/EA8/EA1/EA7690.htm +++ b/approved/html/EARoot/EA2/EA1/EA8/EA1/EA7690.htm @@ -108,7 +108,7 @@ - Public
  emeraldNetwork + Public
  natura2000 @@ -157,7 +157,7 @@ Notes: - -- Definition --<br/>The Protected Site has a designation under the Emerald Network.<br/><br/>-- Description --<br/>The Emerald Network is an ecological network to conserve wild flora and fauna and their natural habitats in Europe.<br/> + -- Definition --<br/>The Protected Site has a designation under either the Habitat Directive (92/43/EEC) or the Birds Directive (79/409/EEC).<br/> @@ -166,7 +166,7 @@ - Public
  IUCN + Public
  emeraldNetwork @@ -215,7 +215,7 @@ Notes: - -- Definition --<br/>The Protected Site has a classification using the International Union for Conservation of Nature classification scheme.<br/> + -- Definition --<br/>The Protected Site has a designation under the Emerald Network.<br/><br/>-- Description --<br/>The Emerald Network is an ecological network to conserve wild flora and fauna and their natural habitats in Europe.<br/> @@ -224,7 +224,7 @@ - Public
  nationalMonumentsRecord + Public
  ramsar @@ -273,7 +273,7 @@ Notes: - -- Definition --<br/>The Protected Site has a classification using the National Monuments Record classification scheme.<br/> + -- Definition --<br/>The Protected Site has a designation under the Ramsar Convention.<br/><br/>-- Description --<br/>The Ramsar Convention provides the framework for national action and international cooperation for the conservation and wise use of wetlands and their resources.<br/> @@ -282,7 +282,7 @@ - Public
  natura2000 + Public
  UNESCOWorldHeritage @@ -331,7 +331,7 @@ Notes: - -- Definition --<br/>The Protected Site has a designation under either the Habitat Directive (92/43/EEC) or the Birds Directive (79/409/EEC).<br/> + -- Definition --<br/>The Protected Site has a designation under UNESCO World Heritage Convention.<br/> @@ -340,7 +340,7 @@ - Public
  ramsar + Public
  IUCN @@ -389,7 +389,7 @@ Notes: - -- Definition --<br/>The Protected Site has a designation under the Ramsar Convention.<br/><br/>-- Description --<br/>The Ramsar Convention provides the framework for national action and international cooperation for the conservation and wise use of wetlands and their resources.<br/> + -- Definition --<br/>The Protected Site has a classification using the International Union for Conservation of Nature classification scheme.<br/> @@ -456,7 +456,7 @@ - Public
  UNESCOWorldHeritage + Public
  nationalMonumentsRecord @@ -505,7 +505,7 @@ Notes: - -- Definition --<br/>The Protected Site has a designation under UNESCO World Heritage Convention.<br/> + -- Definition --<br/>The Protected Site has a classification using the National Monuments Record classification scheme.<br/> diff --git a/approved/html/EARoot/EA2/EA1/EA8/EA1/EA7691.htm b/approved/html/EARoot/EA2/EA1/EA8/EA1/EA7691.htm index 5dbe2f78e..20f49dec1 100644 --- a/approved/html/EARoot/EA2/EA1/EA8/EA1/EA7691.htm +++ b/approved/html/EARoot/EA2/EA1/EA8/EA1/EA7691.htm @@ -109,7 +109,7 @@ - Public DesignationValue
  designation + Public DesignationSchemeValue
  designationScheme @@ -158,7 +158,7 @@ Notes: - -- Definition --<br/>The actual Site designation.<br/> + -- Definition --<br/>The scheme from which the designation code comes.<br/> @@ -167,7 +167,7 @@ - Public DesignationSchemeValue
  designationScheme + Public DesignationValue
  designation @@ -216,7 +216,7 @@ Notes: - -- Definition --<br/>The scheme from which the designation code comes.<br/> + -- Definition --<br/>The actual Site designation.<br/> diff --git a/approved/html/EARoot/EA2/EA1/EA8/EA1/EA7693.htm b/approved/html/EARoot/EA2/EA1/EA8/EA1/EA7693.htm index 40c8d4041..e367bbe72 100644 --- a/approved/html/EARoot/EA2/EA1/EA8/EA1/EA7693.htm +++ b/approved/html/EARoot/EA2/EA1/EA8/EA1/EA7693.htm @@ -109,7 +109,7 @@ - Public
  habitatSpeciesManagementArea + Public
  strictNatureReserve @@ -158,7 +158,7 @@ Notes: - -- Definition --<br/>The Protected Site is classified as a habitat species management area under the IUCN classification scheme.<br/> + -- Definition --<br/>The Protected Site is classified as a strict nature reserve under the IUCN classification scheme.<br/> @@ -167,7 +167,7 @@ - Public
  managedResourceProtectedArea + Public
  wildernessArea @@ -216,7 +216,7 @@ Notes: - -- Definition --<br/>The Protected Site is classified as a managed resource protected area under the IUCN classification scheme.<br/> + -- Definition --<br/>The Protected Site is classified as a wilderness area under the IUCN classification scheme.<br/> @@ -283,7 +283,7 @@ - Public
  naturalMonument + Public
  habitatSpeciesManagementArea @@ -332,7 +332,7 @@ Notes: - -- Definition --<br/>The Protected Site is classified as a natural monument under the IUCN classification scheme.<br/> + -- Definition --<br/>The Protected Site is classified as a habitat species management area under the IUCN classification scheme.<br/> @@ -341,7 +341,7 @@ - Public
  protectedLandscapeOrSeascape + Public
  naturalMonument @@ -390,7 +390,7 @@ Notes: - -- Definition --<br/>The Protected Site is classified as a protected landscape or seascape under the IUCN classification scheme.<br/><br/> + -- Definition --<br/>The Protected Site is classified as a natural monument under the IUCN classification scheme.<br/> @@ -399,7 +399,7 @@ - Public
  strictNatureReserve + Public
  managedResourceProtectedArea @@ -448,7 +448,7 @@ Notes: - -- Definition --<br/>The Protected Site is classified as a strict nature reserve under the IUCN classification scheme.<br/> + -- Definition --<br/>The Protected Site is classified as a managed resource protected area under the IUCN classification scheme.<br/> @@ -457,7 +457,7 @@ - Public
  wildernessArea + Public
  protectedLandscapeOrSeascape @@ -506,7 +506,7 @@ Notes: - -- Definition --<br/>The Protected Site is classified as a wilderness area under the IUCN classification scheme.<br/> + -- Definition --<br/>The Protected Site is classified as a protected landscape or seascape under the IUCN classification scheme.<br/><br/> diff --git a/approved/html/EARoot/EA2/EA1/EA8/EA1/EA7695.htm b/approved/html/EARoot/EA2/EA1/EA8/EA1/EA7695.htm index dee48bde5..d1be1522a 100644 --- a/approved/html/EARoot/EA2/EA1/EA8/EA1/EA7695.htm +++ b/approved/html/EARoot/EA2/EA1/EA8/EA1/EA7695.htm @@ -109,7 +109,7 @@ - Public
  proposedSiteOfCommunityImportance + Public
  specialAreaOfConservation @@ -158,7 +158,7 @@ Notes: - -- Definition --<br/>The Protected Site is proposed as a Site of Community Interest (SCI) under Natura2000.<br/> + -- Definition --<br/>The Protected Site is designated as a Special Area of Conservation (SAC) under Natura2000.<br/> @@ -167,7 +167,7 @@ - Public
  proposedSpecialProtectionArea + Public
  specialProtectionArea @@ -216,7 +216,7 @@ Notes: - -- Definition --<br/>The Protected Site is proposed as a Special Protection Area (SPA) under Natura2000.<br/> + -- Definition --<br/>The Protected Site is designated as a Special Protection Area (SPA) under Natura2000.<br/> @@ -283,7 +283,7 @@ - Public
  specialAreaOfConservation + Public
  proposedSiteOfCommunityImportance @@ -332,7 +332,7 @@ Notes: - -- Definition --<br/>The Protected Site is designated as a Special Area of Conservation (SAC) under Natura2000.<br/> + -- Definition --<br/>The Protected Site is proposed as a Site of Community Interest (SCI) under Natura2000.<br/> @@ -341,7 +341,7 @@ - Public
  specialProtectionArea + Public
  proposedSpecialProtectionArea @@ -390,7 +390,7 @@ Notes: - -- Definition --<br/>The Protected Site is designated as a Special Protection Area (SPA) under Natura2000.<br/> + -- Definition --<br/>The Protected Site is proposed as a Special Protection Area (SPA) under Natura2000.<br/> diff --git a/approved/html/EARoot/EA2/EA1/EA8/EA1/EA7703.htm b/approved/html/EARoot/EA2/EA1/EA8/EA1/EA7703.htm index 8efbb44f9..f40428017 100644 --- a/approved/html/EARoot/EA2/EA1/EA8/EA1/EA7703.htm +++ b/approved/html/EARoot/EA2/EA1/EA8/EA1/EA7703.htm @@ -109,7 +109,7 @@ - Public
  cultural + Public
  natural @@ -158,7 +158,7 @@ Notes: - -- Definition --<br/>The Protected Site is designated as a cultural World Heritage site.<br/> + -- Definition --<br/>The Protected Site is designated as a natural World Heritage site.<br/> @@ -167,7 +167,7 @@ - Public
  mixed + Public
  cultural @@ -216,7 +216,7 @@ Notes: - -- Definition --<br/>The Protected Site is designated as a mixed World Heritage site.<br/> + -- Definition --<br/>The Protected Site is designated as a cultural World Heritage site.<br/> @@ -225,7 +225,7 @@ - Public
  natural + Public
  mixed @@ -274,7 +274,7 @@ Notes: - -- Definition --<br/>The Protected Site is designated as a natural World Heritage site.<br/> + -- Definition --<br/>The Protected Site is designated as a mixed World Heritage site.<br/> diff --git a/approved/html/EARoot/EA2/EA1/EA9/EA3/EA7761.png b/approved/html/EARoot/EA2/EA1/EA9/EA3/EA7761.png index 4e24cbe83..cb176265f 100644 Binary files a/approved/html/EARoot/EA2/EA1/EA9/EA3/EA7761.png and b/approved/html/EARoot/EA2/EA1/EA9/EA3/EA7761.png differ diff --git a/approved/html/EARoot/EA2/EA1/EA9/EA3/EA7765.png b/approved/html/EARoot/EA2/EA1/EA9/EA3/EA7765.png index aa9e71ec5..e9a967c14 100644 Binary files a/approved/html/EARoot/EA2/EA1/EA9/EA3/EA7765.png and b/approved/html/EARoot/EA2/EA1/EA9/EA3/EA7765.png differ diff --git a/approved/html/EARoot/EA2/EA1/EA9/EA3/EA7769.png b/approved/html/EARoot/EA2/EA1/EA9/EA3/EA7769.png index 43103b523..c61d67384 100644 Binary files a/approved/html/EARoot/EA2/EA1/EA9/EA3/EA7769.png and b/approved/html/EARoot/EA2/EA1/EA9/EA3/EA7769.png differ diff --git a/approved/html/EARoot/EA2/EA1/EA9/EA3/EA7799.htm b/approved/html/EARoot/EA2/EA1/EA9/EA3/EA7799.htm index 280d00951..3896d0741 100644 --- a/approved/html/EARoot/EA2/EA1/EA9/EA3/EA7799.htm +++ b/approved/html/EARoot/EA2/EA1/EA9/EA3/EA7799.htm @@ -109,7 +109,7 @@ - Public CharacterString
  designator + Public NavaidTypeValue
  navaidType @@ -158,7 +158,7 @@ Notes: - -- Definition --<br/>The coded identifier given to the navaid system.<br/><br/>-- Description --<br/>SOURCE [AIXM5.0].<br/> + -- Definition --<br/>Type of the navaid service.<br/><br/>-- Description --<br/>SOURCE [AIXM5.0].<br/><br/>EXAMPLES ILS, MLS, VORTAC, VOR/DME.<br/><br/> @@ -167,7 +167,7 @@ - Public NavaidTypeValue
  navaidType + Public CharacterString
  designator @@ -216,7 +216,7 @@ Notes: - -- Definition --<br/>Type of the navaid service.<br/><br/>-- Description --<br/>SOURCE [AIXM5.0].<br/><br/>EXAMPLES ILS, MLS, VORTAC, VOR/DME.<br/><br/> + -- Definition --<br/>The coded identifier given to the navaid system.<br/><br/>-- Description --<br/>SOURCE [AIXM5.0].<br/> diff --git a/approved/html/EARoot/EA2/EA1/EA9/EA3/EA7800.htm b/approved/html/EARoot/EA2/EA1/EA9/EA3/EA7800.htm index 6bed1d033..02488ca79 100644 --- a/approved/html/EARoot/EA2/EA1/EA9/EA3/EA7800.htm +++ b/approved/html/EARoot/EA2/EA1/EA9/EA3/EA7800.htm @@ -688,7 +688,7 @@ - Public
  NDB-MKR + Public
  TACAN @@ -737,7 +737,7 @@ Notes: - -- Definition --<br/>Non-Directional Radio Beacon and Marker Beacon.<br/><br/>-- Description --<br/>SOURCE [AIXM5.0].<br/> + -- Definition --<br/>Tactical Air Navigation Beacon.<br/><br/>-- Description --<br/>SOURCE [AIXM5.0].<br/> @@ -746,7 +746,7 @@ - Public
  TACAN + Public
  TLS @@ -795,7 +795,7 @@ Notes: - -- Definition --<br/>Tactical Air Navigation Beacon.<br/><br/>-- Description --<br/>SOURCE [AIXM5.0].<br/> + -- Definition --<br/>Transponder Landing System.<br/><br/>-- Description --<br/>SOURCE [AIXM5.0].<br/> @@ -804,7 +804,7 @@ - Public
  TLS + Public
  VOR @@ -853,7 +853,7 @@ Notes: - -- Definition --<br/>Transponder Landing System.<br/><br/>-- Description --<br/>SOURCE [AIXM5.0].<br/> + -- Definition --<br/>VHF Omnidirectional Radio Range.<br/><br/>-- Description --<br/>SOURCE [AIXM5.0].<br/> @@ -862,7 +862,7 @@ - Public
  VOR + Public
  VOR-DME @@ -911,7 +911,7 @@ Notes: - -- Definition --<br/>VHF Omnidirectional Radio Range.<br/><br/>-- Description --<br/>SOURCE [AIXM5.0].<br/> + -- Definition --<br/>VOR and DME collocated.<br/><br/>-- Description --<br/>SOURCE [AIXM5.0].<br/> @@ -920,7 +920,7 @@ - Public
  VOR-DME + Public
  VORTAC @@ -969,7 +969,7 @@ Notes: - -- Definition --<br/>VOR and DME collocated.<br/><br/>-- Description --<br/>SOURCE [AIXM5.0].<br/> + -- Definition --<br/>VOR and TACAN collocated.<br/><br/>-- Description --<br/>SOURCE [AIXM5.0].<br/> @@ -978,7 +978,7 @@ - Public
  VORTAC + Public
  NDB-MKR @@ -1027,7 +1027,7 @@ Notes: - -- Definition --<br/>VOR and TACAN collocated.<br/><br/>-- Description --<br/>SOURCE [AIXM5.0].<br/> + -- Definition --<br/>Non-Directional Radio Beacon and Marker Beacon.<br/><br/>-- Description --<br/>SOURCE [AIXM5.0].<br/> diff --git a/approved/html/EARoot/EA2/EA1/EA9/EA3/EA7805.htm b/approved/html/EARoot/EA2/EA1/EA9/EA3/EA7805.htm index e138d1201..06b06922d 100644 --- a/approved/html/EARoot/EA2/EA1/EA9/EA3/EA7805.htm +++ b/approved/html/EARoot/EA2/EA1/EA9/EA3/EA7805.htm @@ -108,7 +108,7 @@ - Public
  FATO + Public
  runway @@ -157,7 +157,7 @@ Notes: - -- Definition --<br/>Final Approach and Take Off Area for helicopters.<br/><br/>-- Description --<br/>SOURCE [AIXM5.0].<br/> + -- Definition --<br/>Runway for airplanes.<br/><br/>-- Description --<br/>SOURCE [AIXM5.0].<br/> @@ -166,7 +166,7 @@ - Public
  runway + Public
  FATO @@ -215,7 +215,7 @@ Notes: - -- Definition --<br/>Runway for airplanes.<br/><br/>-- Description --<br/>SOURCE [AIXM5.0].<br/> + -- Definition --<br/>Final Approach and Take Off Area for helicopters.<br/><br/>-- Description --<br/>SOURCE [AIXM5.0].<br/> diff --git a/approved/html/EARoot/EA2/EA1/EA9/EA5/EA7851.png b/approved/html/EARoot/EA2/EA1/EA9/EA5/EA7851.png index 990f34bf9..2f5d84e30 100644 Binary files a/approved/html/EARoot/EA2/EA1/EA9/EA5/EA7851.png and b/approved/html/EARoot/EA2/EA1/EA9/EA5/EA7851.png differ diff --git a/approved/html/EARoot/EA2/EA1/EA9/EA5/EA7855.png b/approved/html/EARoot/EA2/EA1/EA9/EA5/EA7855.png index f350a3948..be5e948f9 100644 Binary files a/approved/html/EARoot/EA2/EA1/EA9/EA5/EA7855.png and b/approved/html/EARoot/EA2/EA1/EA9/EA5/EA7855.png differ diff --git a/approved/html/EARoot/EA2/EA1/EA9/EA5/EA7876.htm b/approved/html/EARoot/EA2/EA1/EA9/EA5/EA7876.htm index 8e8c5fdd8..c2a73d206 100644 --- a/approved/html/EARoot/EA2/EA1/EA9/EA5/EA7876.htm +++ b/approved/html/EARoot/EA2/EA1/EA9/EA5/EA7876.htm @@ -282,7 +282,7 @@ - Public
  shipLift + Public
  terminal @@ -331,7 +331,7 @@ Notes: - -- Definition --<br/>A machine for transporting boats between water bodies at two different elevations, which is used as an alternative to the canal locks..<br/><br/>-- Description --<br/>NOTE Synonyms: boat lift, lift lock.<br/><br/> + -- Definition --<br/>The location where goods are transhipped. <br/><br/>-- Description --<br/>SOURCE [COMPRIS].<br/><br/>NOTE A terminal forms a link between the various transport modes, of which shipping is one. A terminal therefore has waterside loading and unloading places [COMPRIS].<br/><br/> @@ -340,7 +340,7 @@ - Public
  terminal + Public
  turningBasin @@ -389,7 +389,7 @@ Notes: - -- Definition --<br/>The location where goods are transhipped. <br/><br/>-- Description --<br/>SOURCE [COMPRIS].<br/><br/>NOTE A terminal forms a link between the various transport modes, of which shipping is one. A terminal therefore has waterside loading and unloading places [COMPRIS].<br/><br/> + -- Definition --<br/>A place where a canal or narrow waterway is widened to allow boats to turn around.<br/> @@ -398,7 +398,7 @@ - Public
  turningBasin + Public
  shipLift @@ -447,7 +447,7 @@ Notes: - -- Definition --<br/>A place where a canal or narrow waterway is widened to allow boats to turn around.<br/> + -- Definition --<br/>A machine for transporting boats between water bodies at two different elevations, which is used as an alternative to the canal locks..<br/><br/>-- Description --<br/>NOTE Synonyms: boat lift, lift lock.<br/><br/> diff --git a/approved/html/EARoot/EA2/EA1/EA9/EA6/EA7897.png b/approved/html/EARoot/EA2/EA1/EA9/EA6/EA7897.png index 7dfc51754..f61e40aea 100644 Binary files a/approved/html/EARoot/EA2/EA1/EA9/EA6/EA7897.png and b/approved/html/EARoot/EA2/EA1/EA9/EA6/EA7897.png differ diff --git a/approved/html/EARoot/EA2/EA1/EA9/EA6/EA7899.png b/approved/html/EARoot/EA2/EA1/EA9/EA6/EA7899.png index 495f74a7e..398fa8263 100644 Binary files a/approved/html/EARoot/EA2/EA1/EA9/EA6/EA7899.png and b/approved/html/EARoot/EA2/EA1/EA9/EA6/EA7899.png differ diff --git a/approved/html/EARoot/EA2/EA1/EA9/EA6/EA7903.png b/approved/html/EARoot/EA2/EA1/EA9/EA6/EA7903.png index 2ad43023b..98ced7c46 100644 Binary files a/approved/html/EARoot/EA2/EA1/EA9/EA6/EA7903.png and b/approved/html/EARoot/EA2/EA1/EA9/EA6/EA7903.png differ diff --git a/approved/html/EARoot/EA2/EA1/EA9/EA6/EA7907.png b/approved/html/EARoot/EA2/EA1/EA9/EA6/EA7907.png index 7ee981204..b532f76cf 100644 Binary files a/approved/html/EARoot/EA2/EA1/EA9/EA6/EA7907.png and b/approved/html/EARoot/EA2/EA1/EA9/EA6/EA7907.png differ diff --git a/approved/html/EARoot/EA2/EA1/EA9/EA6/EA7909.png b/approved/html/EARoot/EA2/EA1/EA9/EA6/EA7909.png index 7fec3f76c..d24304fa5 100644 Binary files a/approved/html/EARoot/EA2/EA1/EA9/EA6/EA7909.png and b/approved/html/EARoot/EA2/EA1/EA9/EA6/EA7909.png differ diff --git a/approved/html/EARoot/EA2/EA1/EA9/EA7/EA7939.png b/approved/html/EARoot/EA2/EA1/EA9/EA7/EA7939.png index c3a7e143b..2a0d14d6c 100644 Binary files a/approved/html/EARoot/EA2/EA1/EA9/EA7/EA7939.png and b/approved/html/EARoot/EA2/EA1/EA9/EA7/EA7939.png differ diff --git a/approved/html/EARoot/EA2/EA1/EA9/EA7/EA7943.png b/approved/html/EARoot/EA2/EA1/EA9/EA7/EA7943.png index c791ad5d2..ec37f8701 100644 Binary files a/approved/html/EARoot/EA2/EA1/EA9/EA7/EA7943.png and b/approved/html/EARoot/EA2/EA1/EA9/EA7/EA7943.png differ diff --git a/approved/html/EARoot/EA2/EA1/EA9/EA7/EA7971.htm b/approved/html/EARoot/EA2/EA1/EA9/EA7/EA7971.htm index 983c4ebbf..553877d42 100644 --- a/approved/html/EARoot/EA2/EA1/EA9/EA7/EA7971.htm +++ b/approved/html/EARoot/EA2/EA1/EA9/EA7/EA7971.htm @@ -398,7 +398,7 @@ - Public
  roadServiceArea + Public
  roundabout @@ -447,7 +447,7 @@ Notes: - -- Definition --<br/>Surface annexed to a road and devoted to offer particular services for it.<br/><br/>-- Description --<br/>EXAMPLES Gas station, rest area, toll area.<br/><br/> + -- Definition --<br/>The road node represents or is a part of a roundabout.<br/> @@ -456,7 +456,7 @@ - Public
  roundabout + Public
  trafficSquare @@ -505,7 +505,7 @@ Notes: - -- Definition --<br/>The road node represents or is a part of a roundabout.<br/> + -- Definition --<br/>The road node is situated inside and/or represents a traffic square.<br/>A traffic square is an area (partly) enclosed by roads which is used for non-traffic purposes and which is not a roundabout. <br/><br/>-- Description --<br/>SOURCE [GDF, Euroroads].<br/><br/> @@ -514,7 +514,7 @@ - Public
  trafficSquare + Public
  roadServiceArea @@ -563,7 +563,7 @@ Notes: - -- Definition --<br/>The road node is situated inside and/or represents a traffic square.<br/>A traffic square is an area (partly) enclosed by roads which is used for non-traffic purposes and which is not a roundabout. <br/><br/>-- Description --<br/>SOURCE [GDF, Euroroads].<br/><br/> + -- Definition --<br/>Surface annexed to a road and devoted to offer particular services for it.<br/><br/>-- Description --<br/>EXAMPLES Gas station, rest area, toll area.<br/><br/> diff --git a/approved/html/EARoot/EA2/EA2/EA1/EA2/EA7998.png b/approved/html/EARoot/EA2/EA2/EA1/EA2/EA7998.png index b1312bc94..e5878a9c7 100644 Binary files a/approved/html/EARoot/EA2/EA2/EA1/EA2/EA7998.png and b/approved/html/EARoot/EA2/EA2/EA1/EA2/EA7998.png differ diff --git a/approved/html/EARoot/EA2/EA2/EA1/EA2/EA8000.png b/approved/html/EARoot/EA2/EA2/EA1/EA2/EA8000.png index 4e202c522..08dd0699f 100644 Binary files a/approved/html/EARoot/EA2/EA2/EA1/EA2/EA8000.png and b/approved/html/EARoot/EA2/EA2/EA1/EA2/EA8000.png differ diff --git a/approved/html/EARoot/EA2/EA2/EA1/EA4/EA8031.png b/approved/html/EARoot/EA2/EA2/EA1/EA4/EA8031.png index 19351d993..7a451a9aa 100644 Binary files a/approved/html/EARoot/EA2/EA2/EA1/EA4/EA8031.png and b/approved/html/EARoot/EA2/EA2/EA1/EA4/EA8031.png differ diff --git a/approved/html/EARoot/EA2/EA2/EA1/EA4/EA8035.png b/approved/html/EARoot/EA2/EA2/EA1/EA4/EA8035.png index c05408fe3..e9bfc5894 100644 Binary files a/approved/html/EARoot/EA2/EA2/EA1/EA4/EA8035.png and b/approved/html/EARoot/EA2/EA2/EA1/EA4/EA8035.png differ diff --git a/approved/html/EARoot/EA2/EA2/EA2/EA1/EA8046.png b/approved/html/EARoot/EA2/EA2/EA2/EA1/EA8046.png index c2238a663..5a38da6b8 100644 Binary files a/approved/html/EARoot/EA2/EA2/EA2/EA1/EA8046.png and b/approved/html/EARoot/EA2/EA2/EA2/EA1/EA8046.png differ diff --git a/approved/html/EARoot/EA2/EA2/EA2/EA1/EA8050.png b/approved/html/EARoot/EA2/EA2/EA2/EA1/EA8050.png index b4bc540b7..85c2e6716 100644 Binary files a/approved/html/EARoot/EA2/EA2/EA2/EA1/EA8050.png and b/approved/html/EARoot/EA2/EA2/EA2/EA1/EA8050.png differ diff --git a/approved/html/EARoot/EA2/EA2/EA2/EA1/EA8052.png b/approved/html/EARoot/EA2/EA2/EA2/EA1/EA8052.png index e2df0366e..f6d2d9aab 100644 Binary files a/approved/html/EARoot/EA2/EA2/EA2/EA1/EA8052.png and b/approved/html/EARoot/EA2/EA2/EA2/EA1/EA8052.png differ diff --git a/approved/html/EARoot/EA2/EA2/EA2/EA1/EA8054.png b/approved/html/EARoot/EA2/EA2/EA2/EA1/EA8054.png index 3ef05f335..08eeac8f9 100644 Binary files a/approved/html/EARoot/EA2/EA2/EA2/EA1/EA8054.png and b/approved/html/EARoot/EA2/EA2/EA2/EA1/EA8054.png differ diff --git a/approved/html/EARoot/EA2/EA2/EA2/EA1/EA8056.png b/approved/html/EARoot/EA2/EA2/EA2/EA1/EA8056.png index ed71cc07b..1bce222eb 100644 Binary files a/approved/html/EARoot/EA2/EA2/EA2/EA1/EA8056.png and b/approved/html/EARoot/EA2/EA2/EA2/EA1/EA8056.png differ diff --git a/approved/html/EARoot/EA2/EA2/EA2/EA1/EA8058.png b/approved/html/EARoot/EA2/EA2/EA2/EA1/EA8058.png index 54908feca..f399a4e52 100644 Binary files a/approved/html/EARoot/EA2/EA2/EA2/EA1/EA8058.png and b/approved/html/EARoot/EA2/EA2/EA2/EA1/EA8058.png differ diff --git a/approved/html/EARoot/EA2/EA2/EA2/EA1/EA8060.png b/approved/html/EARoot/EA2/EA2/EA2/EA1/EA8060.png index 538aa1fed..a73da0156 100644 Binary files a/approved/html/EARoot/EA2/EA2/EA2/EA1/EA8060.png and b/approved/html/EARoot/EA2/EA2/EA2/EA1/EA8060.png differ diff --git a/approved/html/EARoot/EA2/EA2/EA2/EA1/EA8064.htm b/approved/html/EARoot/EA2/EA2/EA2/EA1/EA8064.htm index 94e4a0b1a..404ec8275 100644 --- a/approved/html/EARoot/EA2/EA2/EA2/EA1/EA8064.htm +++ b/approved/html/EARoot/EA2/EA2/EA2/EA1/EA8064.htm @@ -111,7 +111,7 @@ - Public Quantity
  boreholeLength + Public Identifier
  inspireId @@ -129,7 +129,7 @@ Stereotype: - <<voidable>> + Ordered: @@ -160,7 +160,7 @@ Notes: - -- Definition --<br/>The distance along a borehole.<br/><br/>-- Description --<br/>This will be determined by the data provider (ie, "length" can have different sources, like drillers measurement, loggers measurement, survey).<br/><br/> + -- Definition --<br/>External object identifier of the spatial object.<br/><br/> @@ -227,7 +227,7 @@ - Public DirectPosition
  elevation + Public Quantity
  boreholeLength @@ -276,7 +276,7 @@ Notes: - -- Definition --<br/>The vertical height above datum of the borehole collar.<br/><br/>-- Description --<br/>This is a compromise approach to supply elevation explictly for location; this is to allow for software that cannot process 3-D GM_Point. Use null if elevation is unknown. Direct position shall have a dimension of 1, and CRS will be a "vertical" CRS (e.g. EPSG CRSs in the range 5600-5799). <br/><br/> + -- Definition --<br/>The distance along a borehole.<br/><br/>-- Description --<br/>This will be determined by the data provider (ie, "length" can have different sources, like drillers measurement, loggers measurement, survey).<br/><br/> @@ -285,7 +285,7 @@ - Public Identifier
  inspireId + Public DirectPosition
  elevation @@ -303,7 +303,7 @@ Stereotype: - + <<voidable>> Ordered: @@ -334,7 +334,7 @@ Notes: - -- Definition --<br/>External object identifier of the spatial object.<br/><br/> + -- Definition --<br/>The vertical height above datum of the borehole collar.<br/><br/>-- Description --<br/>This is a compromise approach to supply elevation explictly for location; this is to allow for software that cannot process 3-D GM_Point. Use null if elevation is unknown. Direct position shall have a dimension of 1, and CRS will be a "vertical" CRS (e.g. EPSG CRSs in the range 5600-5799). <br/><br/> diff --git a/approved/html/EARoot/EA2/EA2/EA2/EA1/EA8075.htm b/approved/html/EARoot/EA2/EA2/EA2/EA1/EA8075.htm index febd0a800..07fca7194 100644 --- a/approved/html/EARoot/EA2/EA2/EA2/EA1/EA8075.htm +++ b/approved/html/EARoot/EA2/EA2/EA2/EA1/EA8075.htm @@ -110,7 +110,7 @@ - Public DateTime
  beginLifespanVersion + Public Identifier
  inspireId @@ -128,7 +128,7 @@ Stereotype: - <<voidable>> + Ordered: @@ -159,7 +159,7 @@ Notes: - -- Definition --<br/>Date and time at which this version of the spatial object was inserted or changed in the spatial data set.<br/><br/> + -- Definition --<br/>External object identifier of the spatial object.<br/><br/> @@ -168,7 +168,7 @@ - Public CollectionTypeValue
  collectionType + Public CharacterString
  name @@ -210,14 +210,14 @@ - obligation=implementingRule
+
Notes: - -- Definition --<br/>The type of the collection.<br/><br/>-- Description --<br/>Refers to a vocabulary of types.<br/>EXAMPLE: geological map, thematic map etc. <br/><br/> + -- Definition --<br/>The name of the collection.<br/><br/>
@@ -226,7 +226,7 @@ - Public DateTime
  endLifespanVersion + Public CollectionTypeValue
  collectionType @@ -244,7 +244,7 @@ Stereotype: - <<voidable>> + Ordered: @@ -252,7 +252,7 @@ Range: - Range:0 to 1 + Transient: @@ -268,14 +268,14 @@ - + obligation=implementingRule
Notes: - -- Definition --<br/>Date and time at which this version of the spatial object was superseded or retired in the spatial data set.<br/><br/> + -- Definition --<br/>The type of the collection.<br/><br/>-- Description --<br/>Refers to a vocabulary of types.<br/>EXAMPLE: geological map, thematic map etc. <br/><br/>
@@ -284,7 +284,7 @@ - Public Identifier
  inspireId + Public DocumentCitation
  reference @@ -302,7 +302,7 @@ Stereotype: - + <<voidable>> Ordered: @@ -333,7 +333,7 @@ Notes: - -- Definition --<br/>External object identifier of the spatial object.<br/><br/> + -- Definition --<br/>A reference for the collection.<br/><br/> @@ -342,7 +342,7 @@ - Public CharacterString
  name + Public DateTime
  beginLifespanVersion @@ -360,7 +360,7 @@ Stereotype: - + <<voidable>> Ordered: @@ -391,7 +391,7 @@ Notes: - -- Definition --<br/>The name of the collection.<br/><br/> + -- Definition --<br/>Date and time at which this version of the spatial object was inserted or changed in the spatial data set.<br/><br/> @@ -400,7 +400,7 @@ - Public DocumentCitation
  reference + Public DateTime
  endLifespanVersion @@ -426,7 +426,7 @@ Range: - + Range:0 to 1 Transient: @@ -449,7 +449,7 @@ Notes: - -- Definition --<br/>A reference for the collection.<br/><br/> + -- Definition --<br/>Date and time at which this version of the spatial object was superseded or retired in the spatial data set.<br/><br/> diff --git a/approved/html/EARoot/EA2/EA2/EA2/EA1/EA8076.htm b/approved/html/EARoot/EA2/EA2/EA2/EA1/EA8076.htm index b3933ecff..9fbbb95f0 100644 --- a/approved/html/EARoot/EA2/EA2/EA2/EA1/EA8076.htm +++ b/approved/html/EARoot/EA2/EA2/EA2/EA1/EA8076.htm @@ -109,7 +109,7 @@ - Public EventEnvironmentValue
  eventEnvironment + Public CharacterString
  name @@ -151,14 +151,14 @@ - obligation=implementingRule
+
Notes: - -- Definition --<br/>The physical setting within which the geologic event takes place.  <br/><br/>-- Description --<br/>GeologicEnvironment is construed broadly to include physical settings on the Earth surface specified by climate, tectonics, physiography or geography, and settings in the Earth’s interior specified by pressure, temperature, chemical environment, or tectonics. <br/><br/> + -- Definition --<br/>The name of the Geologic Event.<br/><br/>-- Description --<br/><br/>Only major Geologic Events, such as orogenies, are likely to have names.<br/><br/>
@@ -167,7 +167,7 @@ - Public EventProcessValue
  eventProcess + Public EventEnvironmentValue
  eventEnvironment @@ -216,7 +216,7 @@ Notes: - -- Definition --<br/>The process or processes that occurred during the geologic event. <br/><br/>-- Description --<br/>EXAMPLE: deposition, extrusion, intrusion, cooling.<br/><br/> + -- Definition --<br/>The physical setting within which the geologic event takes place.  <br/><br/>-- Description --<br/>GeologicEnvironment is construed broadly to include physical settings on the Earth surface specified by climate, tectonics, physiography or geography, and settings in the Earth’s interior specified by pressure, temperature, chemical environment, or tectonics. <br/><br/> @@ -225,7 +225,7 @@ - Public CharacterString
  name + Public EventProcessValue
  eventProcess @@ -267,14 +267,14 @@ - + obligation=implementingRule
Notes: - -- Definition --<br/>The name of the Geologic Event.<br/><br/>-- Description --<br/><br/>Only major Geologic Events, such as orogenies, are likely to have names.<br/><br/> + -- Definition --<br/>The process or processes that occurred during the geologic event. <br/><br/>-- Description --<br/>EXAMPLE: deposition, extrusion, intrusion, cooling.<br/><br/>
diff --git a/approved/html/EARoot/EA2/EA2/EA2/EA1/EA8084.htm b/approved/html/EARoot/EA2/EA2/EA2/EA1/EA8084.htm index 9a3e95ac4..2be382120 100644 --- a/approved/html/EARoot/EA2/EA2/EA2/EA1/EA8084.htm +++ b/approved/html/EARoot/EA2/EA2/EA2/EA1/EA8084.htm @@ -111,7 +111,7 @@ - Public MappingFrameValue
  mappingFrame + Public GM_Object
  shape @@ -153,14 +153,14 @@ - obligation=implementingRule
+
Notes: - -- Definition --<br/>The surface on which the mapped feature is projected.<br/><br/>-- Description --<br/>EXAMPLE: Topographic surface, Bedrock surface, Base of Permian<br/><br/><br/> + -- Definition --<br/>The geometry of the mapped feature.<br/><br/>
@@ -169,7 +169,7 @@ - Public GM_Object
  shape + Public MappingFrameValue
  mappingFrame @@ -211,14 +211,14 @@ - + obligation=implementingRule
Notes: - -- Definition --<br/>The geometry of the mapped feature.<br/><br/> + -- Definition --<br/>The surface on which the mapped feature is projected.<br/><br/>-- Description --<br/>EXAMPLE: Topographic surface, Bedrock surface, Base of Permian<br/><br/><br/>
diff --git a/approved/html/EARoot/EA2/EA2/EA2/EA1/EA8087.htm b/approved/html/EARoot/EA2/EA2/EA2/EA1/EA8087.htm index 7bf931ebb..f65251d5f 100644 --- a/approved/html/EARoot/EA2/EA2/EA2/EA1/EA8087.htm +++ b/approved/html/EARoot/EA2/EA2/EA2/EA1/EA8087.htm @@ -109,7 +109,7 @@ - Public GeomorphologicActivityValue
  activity + Public NaturalGeomorphologicFeatureTypeValue
  naturalGeomorphologicFeatureType @@ -127,7 +127,7 @@ Stereotype: - <<voidable>> + Ordered: @@ -135,7 +135,7 @@ Range: - Range:0 to 1 + Transient: @@ -158,7 +158,7 @@ Notes: - -- Definition --<br/>The level of activity of the natural geomorphologic feature.<br/><br/> + -- Definition --<br/>The type of the natural geomorphologic feature.<br/><br/> @@ -167,7 +167,7 @@ - Public NaturalGeomorphologicFeatureTypeValue
  naturalGeomorphologicFeatureType + Public GeomorphologicActivityValue
  activity @@ -185,7 +185,7 @@ Stereotype: - + <<voidable>> Ordered: @@ -193,7 +193,7 @@ Range: - + Range:0 to 1 Transient: @@ -216,7 +216,7 @@ Notes: - -- Definition --<br/>The type of the natural geomorphologic feature.<br/><br/> + -- Definition --<br/>The level of activity of the natural geomorphologic feature.<br/><br/> diff --git a/approved/html/EARoot/EA2/EA2/EA2/EA1/EA8090.htm b/approved/html/EARoot/EA2/EA2/EA2/EA1/EA8090.htm index f1e2e7b08..60cf5a843 100644 --- a/approved/html/EARoot/EA2/EA2/EA2/EA1/EA8090.htm +++ b/approved/html/EARoot/EA2/EA2/EA2/EA1/EA8090.htm @@ -108,7 +108,7 @@ - Public ThematicClassValue
  themeClass + Public ThematicClassificationValue
  themeClassification @@ -157,7 +157,7 @@ Notes: - -- Definition --<br/>The value of the thematic class.<br/><br/>-- Description --<br/>The thematic class value should be constrained by a codelist of defined terms, but these will commonly be specific to a particular thematic map.<br/><br/> + -- Definition --<br/>The used classification.<br/><br/> @@ -166,7 +166,7 @@ - Public ThematicClassificationValue
  themeClassification + Public ThematicClassValue
  themeClass @@ -215,7 +215,7 @@ Notes: - -- Definition --<br/>The used classification.<br/><br/> + -- Definition --<br/>The value of the thematic class.<br/><br/>-- Description --<br/>The thematic class value should be constrained by a codelist of defined terms, but these will commonly be specific to a particular thematic map.<br/><br/> diff --git a/approved/html/EARoot/EA2/EA2/EA2/EA2/EA8096.png b/approved/html/EARoot/EA2/EA2/EA2/EA2/EA8096.png index 165a4aa4f..072035b66 100644 Binary files a/approved/html/EARoot/EA2/EA2/EA2/EA2/EA8096.png and b/approved/html/EARoot/EA2/EA2/EA2/EA2/EA8096.png differ diff --git a/approved/html/EARoot/EA2/EA2/EA2/EA2/EA8098.png b/approved/html/EARoot/EA2/EA2/EA2/EA2/EA8098.png index f4c671de2..b428250c4 100644 Binary files a/approved/html/EARoot/EA2/EA2/EA2/EA2/EA8098.png and b/approved/html/EARoot/EA2/EA2/EA2/EA2/EA8098.png differ diff --git a/approved/html/EARoot/EA2/EA2/EA2/EA2/EA8100.png b/approved/html/EARoot/EA2/EA2/EA2/EA2/EA8100.png index b2537e1fb..32b5eb08f 100644 Binary files a/approved/html/EARoot/EA2/EA2/EA2/EA2/EA8100.png and b/approved/html/EARoot/EA2/EA2/EA2/EA2/EA8100.png differ diff --git a/approved/html/EARoot/EA2/EA2/EA2/EA2/EA8105.htm b/approved/html/EARoot/EA2/EA2/EA2/EA2/EA8105.htm index f4ae4c3a8..028ed8dcf 100644 --- a/approved/html/EARoot/EA2/EA2/EA2/EA2/EA8105.htm +++ b/approved/html/EARoot/EA2/EA2/EA2/EA2/EA8105.htm @@ -169,7 +169,7 @@ - Public HydroGeochemicalRockTypeValue
  hydroGeochemicalRockType + Public AquiferMediaTypeValue
  mediaType @@ -187,7 +187,7 @@ Stereotype: - <<voidable>> + Ordered: @@ -218,7 +218,7 @@ Notes: - -- Name --<br/>Hydrogeochemical Type of Rock<br/>-- Definition --<br/>The rock type with respect to the soluble rock components and their hydrogeochemical influence of groundwater.<br/><br/>-- Description --<br/>Defines the prevailing geochemical character of natural groundwater within the Aquifer. <br/><br/> + -- Name --<br/>Type of Media<br/>-- Definition --<br/>The classification of the medium in which the groundwater flow occurs.<br/><br/> @@ -343,7 +343,7 @@ - Public AquiferMediaTypeValue
  mediaType + Public QuantityValue
  vulnerabilityToPollution @@ -361,7 +361,7 @@ Stereotype: - + <<voidable>> Ordered: @@ -385,14 +385,14 @@ - obligation=implementingRule
+
Notes: - -- Name --<br/>Type of Media<br/>-- Definition --<br/>The classification of the medium in which the groundwater flow occurs.<br/><br/> + -- Name --<br/>Vulnerability To Pollution<br/>-- Definition --<br/>An index value or interval of values determining the potential degree of aquifer risk arising from the geological structure, hydrogeological conditions and the existence of real or potential source of contamination.<br/><br/>-- Description --<br/>A single value should be used if it is determined directly from the DRASTIC method. If attribute data comes from another data source which is expressed by categorized items, for example: low, moderate or high, interval should be used expressed by lowest and highest value of category. EXAMPLE: ‘Moderate’ means interval from 101 to 140. <br/><br/>
@@ -517,7 +517,7 @@ - Public QuantityValue
  vulnerabilityToPollution + Public HydroGeochemicalRockTypeValue
  hydroGeochemicalRockType @@ -559,14 +559,14 @@ - + obligation=implementingRule
Notes: - -- Name --<br/>Vulnerability To Pollution<br/>-- Definition --<br/>An index value or interval of values determining the potential degree of aquifer risk arising from the geological structure, hydrogeological conditions and the existence of real or potential source of contamination.<br/><br/>-- Description --<br/>A single value should be used if it is determined directly from the DRASTIC method. If attribute data comes from another data source which is expressed by categorized items, for example: low, moderate or high, interval should be used expressed by lowest and highest value of category. EXAMPLE: ‘Moderate’ means interval from 101 to 140. <br/><br/> + -- Name --<br/>Hydrogeochemical Type of Rock<br/>-- Definition --<br/>The rock type with respect to the soluble rock components and their hydrogeochemical influence of groundwater.<br/><br/>-- Description --<br/>Defines the prevailing geochemical character of natural groundwater within the Aquifer. <br/><br/>
diff --git a/approved/html/EARoot/EA2/EA2/EA2/EA2/EA8111.htm b/approved/html/EARoot/EA2/EA2/EA2/EA2/EA8111.htm index c97c000ec..3e83b5181 100644 --- a/approved/html/EARoot/EA2/EA2/EA2/EA2/EA8111.htm +++ b/approved/html/EARoot/EA2/EA2/EA2/EA2/EA8111.htm @@ -110,7 +110,7 @@ - Public GM_Surface
  approximateHorizontalExtend + Public Identifier
  inspireId @@ -128,7 +128,7 @@ Stereotype: - <<voidable>> + Ordered: @@ -159,7 +159,7 @@ Notes: - -- Name --<br/>Approximate Horizontal Extend<br/>-- Definition --<br/>The geometry defining the boundary of the GroundWaterBody.<br/> + -- Name --<br/>INSPIRE Identifier<br/>-- Definition --<br/>External object identifier of the spatial object.<br/><br/>-- Description --<br/>NOTE: An external object identifier is a unique object identifier published by the responsible body, which may be used by external applications to reference the spatial object. The identifier is an identifier of the spatial object, not an identifier of the real-world phenomenon.<br/><br/> @@ -168,7 +168,7 @@ - Public DateTime
  beginLifespanVersion + Public GM_Surface
  approximateHorizontalExtend @@ -217,7 +217,7 @@ Notes: - -- Name --<br/>Begin Life Span Version<br/>-- Definition --<br/>Date and time at which this version of the spatial object was inserted or changed in the spatial data set.<br/> + -- Name --<br/>Approximate Horizontal Extend<br/>-- Definition --<br/>The geometry defining the boundary of the GroundWaterBody.<br/> @@ -284,7 +284,7 @@ - Public DateTime
  endLifespanVersion + Public WaterSalinityValue
  mineralization @@ -310,7 +310,7 @@ Range: - Range:0 to 1 + Transient: @@ -326,14 +326,14 @@ - + obligation=implementingRule
Notes: - -- Name --<br/>End Life Span Version<br/>-- Definition --<br/>Date and time at which this version of the spatial object was superseded or retired in the spatial data set.<br/> + -- Name --<br/>Water Type<br/>-- Definition --<br/>One of the main chemical characteristics of water. A value is a sum of all water chemical concentration components.<br/>
@@ -342,7 +342,7 @@ - Public Identifier
  inspireId + Public PiezometricState
  piezometricState @@ -360,7 +360,7 @@ Stereotype: - + <<voidable>> Ordered: @@ -391,7 +391,7 @@ Notes: - -- Name --<br/>INSPIRE Identifier<br/>-- Definition --<br/>External object identifier of the spatial object.<br/><br/>-- Description --<br/>NOTE: An external object identifier is a unique object identifier published by the responsible body, which may be used by external applications to reference the spatial object. The identifier is an identifier of the spatial object, not an identifier of the real-world phenomenon.<br/><br/> + -- Name --<br/>Piezometric State<br/>-- Definition --<br/>Specifies the piezometric state of the GroundwaterBody water table<br/><br/> @@ -400,7 +400,7 @@ - Public WaterSalinityValue
  mineralization + Public DateTime
  beginLifespanVersion @@ -442,14 +442,14 @@ - obligation=implementingRule
+
Notes: - -- Name --<br/>Water Type<br/>-- Definition --<br/>One of the main chemical characteristics of water. A value is a sum of all water chemical concentration components.<br/> + -- Name --<br/>Begin Life Span Version<br/>-- Definition --<br/>Date and time at which this version of the spatial object was inserted or changed in the spatial data set.<br/>
@@ -458,7 +458,7 @@ - Public PiezometricState
  piezometricState + Public DateTime
  endLifespanVersion @@ -484,7 +484,7 @@ Range: - + Range:0 to 1 Transient: @@ -507,7 +507,7 @@ Notes: - -- Name --<br/>Piezometric State<br/>-- Definition --<br/>Specifies the piezometric state of the GroundwaterBody water table<br/><br/> + -- Name --<br/>End Life Span Version<br/>-- Definition --<br/>Date and time at which this version of the spatial object was superseded or retired in the spatial data set.<br/> diff --git a/approved/html/EARoot/EA2/EA2/EA2/EA2/EA8113.htm b/approved/html/EARoot/EA2/EA2/EA2/EA2/EA8113.htm index 487428018..c7bf14b93 100644 --- a/approved/html/EARoot/EA2/EA2/EA2/EA2/EA8113.htm +++ b/approved/html/EARoot/EA2/EA2/EA2/EA2/EA8113.htm @@ -111,7 +111,7 @@ - Public DateTime
  beginLifespanVersion + Public Identifier
  inspireId @@ -129,7 +129,7 @@ Stereotype: - <<voidable>> + Ordered: @@ -137,7 +137,7 @@ Range: - + Range:0 to 1 Transient: @@ -160,7 +160,7 @@ Notes: - -- Name --<br/>Begin Life Span Version<br/>-- Definition --<br/>Date and time at which this version of the spatial object was inserted or changed in the spatial data set.<br/> + -- Name --<br/>INSPIRE Identifier<br/>-- Definition --<br/>External object identifier of the spatial object.<br/><br/>-- Description --<br/>NOTE An external object identifier is a unique object identifier published by the responsible body, which may be used by external applications to reference the spatial object. The identifier is an identifier of the spatial object, not an identifier of the real-world phenomenon.<br/> @@ -169,7 +169,7 @@ - Public PT_FreeText
  description + Public GM_Primitive
  geometry @@ -187,7 +187,7 @@ Stereotype: - <<voidable>> + Ordered: @@ -218,7 +218,7 @@ Notes: - -- Name --<br/>Description<br/>-- Definition --<br/>The description of the HydrogeologicalObject.<br/><br/> + -- Name --<br/>Geometry<br/>-- Definition --<br/>The geometry defining the spatial location of the HydrogeologicalObject.<br/><br/> @@ -227,7 +227,7 @@ - Public DateTime
  endLifespanVersion + Public PT_FreeText
  name @@ -253,7 +253,7 @@ Range: - Range:0 to 1 + Transient: @@ -276,7 +276,7 @@ Notes: - -- Name --<br/>End Life Span Version<br/>-- Definition --<br/>Date and time at which this version of the spatial object was superseded or retired in the spatial data set.<br/> + -- Name --<br/>Name<br/>-- Definition --<br/>The name or code of the HydrogeologicalObject.<br/><br/> @@ -285,7 +285,7 @@ - Public GM_Primitive
  geometry + Public PT_FreeText
  description @@ -303,7 +303,7 @@ Stereotype: - + <<voidable>> Ordered: @@ -334,7 +334,7 @@ Notes: - -- Name --<br/>Geometry<br/>-- Definition --<br/>The geometry defining the spatial location of the HydrogeologicalObject.<br/><br/> + -- Name --<br/>Description<br/>-- Definition --<br/>The description of the HydrogeologicalObject.<br/><br/> @@ -343,7 +343,7 @@ - Public Identifier
  inspireId + Public DateTime
  beginLifespanVersion @@ -361,7 +361,7 @@ Stereotype: - + <<voidable>> Ordered: @@ -369,7 +369,7 @@ Range: - Range:0 to 1 + Transient: @@ -392,7 +392,7 @@ Notes: - -- Name --<br/>INSPIRE Identifier<br/>-- Definition --<br/>External object identifier of the spatial object.<br/><br/>-- Description --<br/>NOTE An external object identifier is a unique object identifier published by the responsible body, which may be used by external applications to reference the spatial object. The identifier is an identifier of the spatial object, not an identifier of the real-world phenomenon.<br/> + -- Name --<br/>Begin Life Span Version<br/>-- Definition --<br/>Date and time at which this version of the spatial object was inserted or changed in the spatial data set.<br/> @@ -401,7 +401,7 @@ - Public PT_FreeText
  name + Public DateTime
  endLifespanVersion @@ -427,7 +427,7 @@ Range: - + Range:0 to 1 Transient: @@ -450,7 +450,7 @@ Notes: - -- Name --<br/>Name<br/>-- Definition --<br/>The name or code of the HydrogeologicalObject.<br/><br/> + -- Name --<br/>End Life Span Version<br/>-- Definition --<br/>Date and time at which this version of the spatial object was superseded or retired in the spatial data set.<br/> diff --git a/approved/html/EARoot/EA2/EA2/EA2/EA2/EA8114.htm b/approved/html/EARoot/EA2/EA2/EA2/EA2/EA8114.htm index 9682802f1..e8d90ee79 100644 --- a/approved/html/EARoot/EA2/EA2/EA2/EA2/EA8114.htm +++ b/approved/html/EARoot/EA2/EA2/EA2/EA2/EA8114.htm @@ -109,7 +109,7 @@ - Public StatusCodeTypeValue
  statusCode + Public DateTime
  validFrom @@ -151,14 +151,14 @@ - obligation=implementingRule
+
Notes: - -- Name --<br/>Status Code<br/>-- Definition --<br/>A code defining the formal status of a man-made hydrogeological object.<br/><br/> + -- Name --<br/>Valid From<br/>-- Definition --<br/>Official date and time the hydrogeological object was/will be legally established.<br/><br/>-- Description --<br/>NOTE This is the date and time the register reference can be used in legal acts.<br/>
@@ -167,7 +167,7 @@ - Public DateTime
  validFrom + Public DateTime
  validTo @@ -193,7 +193,7 @@ Range: - + Range:0 to 1 Transient: @@ -216,7 +216,7 @@ Notes: - -- Name --<br/>Valid From<br/>-- Definition --<br/>Official date and time the hydrogeological object was/will be legally established.<br/><br/>-- Description --<br/>NOTE This is the date and time the register reference can be used in legal acts.<br/> + -- Name --<br/>Valid To<br/>-- Definition --<br/>Date and time at which the hydrogeological object legally ceased/will cease to be used.<br/><br/>-- Description --<br/>NOTE This is the date and time the register reference can no longer be used in legal acts.<br/> @@ -225,7 +225,7 @@ - Public DateTime
  validTo + Public StatusCodeTypeValue
  statusCode @@ -251,7 +251,7 @@ Range: - Range:0 to 1 + Transient: @@ -267,14 +267,14 @@ - + obligation=implementingRule
Notes: - -- Name --<br/>Valid To<br/>-- Definition --<br/>Date and time at which the hydrogeological object legally ceased/will cease to be used.<br/><br/>-- Description --<br/>NOTE This is the date and time the register reference can no longer be used in legal acts.<br/> + -- Name --<br/>Status Code<br/>-- Definition --<br/>A code defining the formal status of a man-made hydrogeological object.<br/><br/>
diff --git a/approved/html/EARoot/EA2/EA2/EA2/EA2/EA8115.htm b/approved/html/EARoot/EA2/EA2/EA2/EA2/EA8115.htm index d520db621..de99f5ff9 100644 --- a/approved/html/EARoot/EA2/EA2/EA2/EA2/EA8115.htm +++ b/approved/html/EARoot/EA2/EA2/EA2/EA2/EA8115.htm @@ -111,7 +111,7 @@ - Public QuantityValue
  approximateQuantityOfFlow + Public NaturalObjectTypeValue
  naturalObjectType @@ -129,7 +129,7 @@ Stereotype: - <<voidable>> + Ordered: @@ -153,14 +153,14 @@ - + obligation=implementingRule
Notes: - -- Name --<br/>Approximate Quantity of Flow<br/>-- Definition --<br/>An approximate value defining the water yield in a natural hydrogeological object.<br/><br/>-- Description --<br/>The discharge of water flow for a certain cross-section per time unit. <br/><br/> + -- Name --<br/>Natural Object Type<br/>-- Definition --<br/>The type of natural hydrogeological object.<br/><br/>
@@ -169,7 +169,7 @@ - Public NaturalObjectTypeValue
  naturalObjectType + Public WaterPersistenceValue
  waterPersistence @@ -187,7 +187,7 @@ Stereotype: - + <<voidable>> Ordered: @@ -218,7 +218,7 @@ Notes: - -- Name --<br/>Natural Object Type<br/>-- Definition --<br/>The type of natural hydrogeological object.<br/><br/> + -- Name --<br/>Water Persistence<br/>-- Definition --<br/>The degree of persistence of water flow.<br/><br/> @@ -227,7 +227,7 @@ - Public WaterPersistenceValue
  waterPersistence + Public QuantityValue
  approximateQuantityOfFlow @@ -269,14 +269,14 @@ - obligation=implementingRule
+
Notes: - -- Name --<br/>Water Persistence<br/>-- Definition --<br/>The degree of persistence of water flow.<br/><br/> + -- Name --<br/>Approximate Quantity of Flow<br/>-- Definition --<br/>An approximate value defining the water yield in a natural hydrogeological object.<br/><br/>-- Description --<br/>The discharge of water flow for a certain cross-section per time unit. <br/><br/>
diff --git a/approved/html/EARoot/EA2/EA2/EA2/EA2/EA8116.htm b/approved/html/EARoot/EA2/EA2/EA2/EA2/EA8116.htm index a160f5b6c..16c4b3f05 100644 --- a/approved/html/EARoot/EA2/EA2/EA2/EA2/EA8116.htm +++ b/approved/html/EARoot/EA2/EA2/EA2/EA2/EA8116.htm @@ -107,7 +107,7 @@ - Public PointObservationCollection
  surfacePointCollection + Public RectifiedGridCoverage
  surfaceRectifiedGrid @@ -156,7 +156,7 @@ Notes: - -- Name --<br/>Surface Point Collection<br/>-- Definition --<br/>Hydrogeological surface represented by collection of observations in points.<br/><br/> + -- Name --<br/>Surface as Rectified Grid<br/>-- Definition --<br/>A surface whose domain is a rectified grid.<br/><br/>-- Description --<br/>A rectified grid is a grid for which there is an affine transformation between the grid coordinates and the coordinates of a coordinate system. It can be used for both discrete and continuous coverages. <br/><br/> @@ -165,7 +165,7 @@ - Public RectifiedGridCoverage
  surfaceRectifiedGrid + Public ReferenceableGridCoverage
  surfaceReferencableGrid @@ -214,7 +214,7 @@ Notes: - -- Name --<br/>Surface as Rectified Grid<br/>-- Definition --<br/>A surface whose domain is a rectified grid.<br/><br/>-- Description --<br/>A rectified grid is a grid for which there is an affine transformation between the grid coordinates and the coordinates of a coordinate system. It can be used for both discrete and continuous coverages. <br/><br/> + -- Name --<br/>Surface as Referenceable Grid.<br/>-- Definition --<br/>Surface whose domain consists of a referenceable grid.<br/>-- Description --<br/>A referenceable grid is a grid associated with a transformation that can be used to convert grid coordinate values to values of coordinates referenced to a coordinate reference system. It can be used for both discrete and continuous coverages. <br/><br/> @@ -223,7 +223,7 @@ - Public ReferenceableGridCoverage
  surfaceReferencableGrid + Public PointObservationCollection
  surfacePointCollection @@ -272,7 +272,7 @@ Notes: - -- Name --<br/>Surface as Referenceable Grid.<br/>-- Definition --<br/>Surface whose domain consists of a referenceable grid.<br/>-- Description --<br/>A referenceable grid is a grid associated with a transformation that can be used to convert grid coordinate values to values of coordinates referenced to a coordinate reference system. It can be used for both discrete and continuous coverages. <br/><br/> + -- Name --<br/>Surface Point Collection<br/>-- Definition --<br/>Hydrogeological surface represented by collection of observations in points.<br/><br/> diff --git a/approved/html/EARoot/EA2/EA2/EA2/EA2/EA8117.htm b/approved/html/EARoot/EA2/EA2/EA2/EA2/EA8117.htm index dfb23cd97..9cd53dfff 100644 --- a/approved/html/EARoot/EA2/EA2/EA2/EA2/EA8117.htm +++ b/approved/html/EARoot/EA2/EA2/EA2/EA2/EA8117.htm @@ -110,7 +110,7 @@ - Public QuantityValue
  approximateDepth + Public PT_FreeText
  description @@ -159,7 +159,7 @@ Notes: - -- Name --<br/>Approximate Depth<br/>-- Definition --<br/>The approximate depth of the HydrogeologicalUnit occurrence.<br/><br/> + -- Name --<br/>Description<br/>-- Definition --<br/>The description of the HydrogeologicalUnit<br/><br/> @@ -168,7 +168,7 @@ - Public QuantityValue
  approximateThickness + Public QuantityValue
  approximateDepth @@ -217,7 +217,7 @@ Notes: - -- Name --<br/>Approximate Thickness<br/>-- Definition --<br/>The approximate thickness of the HydrogeologicalUnit.<br/><br/> + -- Name --<br/>Approximate Depth<br/>-- Definition --<br/>The approximate depth of the HydrogeologicalUnit occurrence.<br/><br/> @@ -226,7 +226,7 @@ - Public DateTime
  beginLifespanVersion + Public QuantityValue
  approximateThickness @@ -275,7 +275,7 @@ Notes: - -- Name --<br/>Begin Life Span Version<br/>-- Definition --<br/>Date and time at which this version of the spatial object was inserted or changed in the spatial data set.<br/> + -- Name --<br/>Approximate Thickness<br/>-- Definition --<br/>The approximate thickness of the HydrogeologicalUnit.<br/><br/> @@ -284,7 +284,7 @@ - Public PT_FreeText
  description + Public DateTime
  beginLifespanVersion @@ -333,7 +333,7 @@ Notes: - -- Name --<br/>Description<br/>-- Definition --<br/>The description of the HydrogeologicalUnit<br/><br/> + -- Name --<br/>Begin Life Span Version<br/>-- Definition --<br/>Date and time at which this version of the spatial object was inserted or changed in the spatial data set.<br/> diff --git a/approved/html/EARoot/EA2/EA2/EA2/EA2/EA8120.htm b/approved/html/EARoot/EA2/EA2/EA2/EA2/EA8120.htm index d48c172a8..48fd4bbad 100644 --- a/approved/html/EARoot/EA2/EA2/EA2/EA2/EA8120.htm +++ b/approved/html/EARoot/EA2/EA2/EA2/EA2/EA8120.htm @@ -107,7 +107,7 @@ - Public QuantityRange
  quantityInterval + Public Quantity
  singleQuantity @@ -156,7 +156,7 @@ Notes: - -- Name --<br/>Quantity Interval<br/>-- Definition --<br/>Decimal pair for specifying a quantity range with a unit of measure.<br/><br/><br/> + -- Name --<br/>Single Quantity<br/>-- Definition --<br/>Scalar component with decimal representation and a unit of measure used to store value of a continuous quantity.<br/><br/><br/> @@ -165,7 +165,7 @@ - Public Quantity
  singleQuantity + Public QuantityRange
  quantityInterval @@ -214,7 +214,7 @@ Notes: - -- Name --<br/>Single Quantity<br/>-- Definition --<br/>Scalar component with decimal representation and a unit of measure used to store value of a continuous quantity.<br/><br/><br/> + -- Name --<br/>Quantity Interval<br/>-- Definition --<br/>Decimal pair for specifying a quantity range with a unit of measure.<br/><br/><br/> diff --git a/approved/html/EARoot/EA2/EA2/EA2/EA3/EA8127.png b/approved/html/EARoot/EA2/EA2/EA2/EA3/EA8127.png index da005a0ab..101c8c707 100644 Binary files a/approved/html/EARoot/EA2/EA2/EA2/EA3/EA8127.png and b/approved/html/EARoot/EA2/EA2/EA2/EA3/EA8127.png differ diff --git a/approved/html/EARoot/EA2/EA2/EA2/EA3/EA8129.png b/approved/html/EARoot/EA2/EA2/EA2/EA3/EA8129.png index bde81690d..f2fbbed88 100644 Binary files a/approved/html/EARoot/EA2/EA2/EA2/EA3/EA8129.png and b/approved/html/EARoot/EA2/EA2/EA2/EA3/EA8129.png differ diff --git a/approved/html/EARoot/EA2/EA2/EA2/EA3/EA8131.htm b/approved/html/EARoot/EA2/EA2/EA2/EA3/EA8131.htm index 8578a07db..db90c8975 100644 --- a/approved/html/EARoot/EA2/EA2/EA2/EA3/EA8131.htm +++ b/approved/html/EARoot/EA2/EA2/EA2/EA3/EA8131.htm @@ -168,7 +168,7 @@ - Public RelatedParty
  client + Public SurveyTypeValue
  surveyType @@ -186,7 +186,7 @@ Stereotype: - <<voidable>> + Ordered: @@ -210,23 +210,33 @@ - + obligation=implementingRule
Notes: - -- Definition --<br/>Party for which data was created.<br/><br/> + -- Definition --<br/>Type of geophysical survey<br/><br/>-- Description --<br/>The geophysical method is specified by this attribute. Value shall be one of the items defined in codelist SurveyTypeValue.<br/><br/><br/>
- + Constraints:
Invariant shape.area>=1000000 + + + + + +
+ + + ::Area is larger than 1 km2 +
- Public RelatedParty
  contractor + Public RelatedParty
  client @@ -275,7 +285,7 @@ Notes: - -- Definition --<br/>Party by which data was created<br/><br/>-- Description --<br/>Party responsible for creating the data related to the campaign<br/><br/> + -- Definition --<br/>Party for which data was created.<br/><br/> @@ -284,7 +294,7 @@ - Public SurveyTypeValue
  surveyType + Public RelatedParty
  contractor @@ -302,7 +312,7 @@ Stereotype: - + <<voidable>> Ordered: @@ -326,29 +336,19 @@ - obligation=implementingRule
+
Notes: - -- Definition --<br/>Type of geophysical survey<br/><br/>-- Description --<br/>The geophysical method is specified by this attribute. Value shall be one of the items defined in codelist SurveyTypeValue.<br/><br/><br/> + -- Definition --<br/>Party by which data was created<br/><br/>-- Description --<br/>Party responsible for creating the data related to the campaign<br/><br/>
- Constraints:
Invariant shape.area>=1000000 - - - - - -
- - - ::Area is larger than 1 km2 -
+ diff --git a/approved/html/EARoot/EA2/EA2/EA2/EA3/EA8133.htm b/approved/html/EARoot/EA2/EA2/EA2/EA3/EA8133.htm index 864fb3256..a795ed247 100644 --- a/approved/html/EARoot/EA2/EA2/EA2/EA3/EA8133.htm +++ b/approved/html/EARoot/EA2/EA2/EA2/EA3/EA8133.htm @@ -109,7 +109,7 @@ - Public PlatformTypeValue
  platformType + Public Identifier
  relatedModel @@ -127,7 +127,7 @@ Stereotype: - + <<voidable>> Ordered: @@ -151,14 +151,14 @@ - obligation=implementingRule
+
Notes: - -- Definition --<br/>Platform from which the measurement was carried out<br/><br/>-- Description --<br/>Values to be used are defined in codelist  PlatformTypeValue.<br/><br/><br/> + -- Definition --<br/>Identifier of the geophysical model that was created from the measurement<br/><br/>-- Description --<br/>Results of the measurement can be referenced by these identifiers.<br/><br/>
@@ -167,7 +167,7 @@ - Public Identifier
  relatedModel + Public PlatformTypeValue
  platformType @@ -185,7 +185,7 @@ Stereotype: - <<voidable>> + Ordered: @@ -209,14 +209,14 @@ - + obligation=implementingRule
Notes: - -- Definition --<br/>Identifier of the geophysical model that was created from the measurement<br/><br/>-- Description --<br/>Results of the measurement can be referenced by these identifiers.<br/><br/> + -- Definition --<br/>Platform from which the measurement was carried out<br/><br/>-- Description --<br/>Values to be used are defined in codelist  PlatformTypeValue.<br/><br/><br/>
diff --git a/approved/html/EARoot/EA2/EA2/EA2/EA3/EA8134.htm b/approved/html/EARoot/EA2/EA2/EA2/EA3/EA8134.htm index 5351a94f6..8f4634173 100644 --- a/approved/html/EARoot/EA2/EA2/EA2/EA3/EA8134.htm +++ b/approved/html/EARoot/EA2/EA2/EA2/EA3/EA8134.htm @@ -111,7 +111,7 @@ - Public DocumentCitation
  citation + Public Identifier
  inspireId @@ -160,7 +160,7 @@ Notes: - -- Definition --<br/>Citation of geophysical documentation<br/><br/>-- Description --<br/>Used for title,  date of related documentation and URL for  online access. At the minimum a short name (title) shall be given.<br/><br/> + -- Definition --<br/>External object identifier of the measurement.<br/><br/>-- Description --<br/>NOTE An external object identifier is a unique object identifier published by the responsible body, which may be used by external applications to reference the spatial object. The identifier is an identifier of the spatial object, not an identifier of the real-world phenomenon.<br/><br/> @@ -169,7 +169,7 @@ - Public MD_Distributor
  distributionInfo + Public DocumentCitation
  citation @@ -187,7 +187,7 @@ Stereotype: - <<voidable>> + Ordered: @@ -218,7 +218,7 @@ Notes: - -- Definition --<br/>Distribution metadata<br/><br/>-- Description --<br/>Data providers may use external services to provide information on a geophysical measurement. Links to the access points, description of ordering procedures or external services can be added in distributionInfo, that is an ISO MD_Distributor record. <br/><br/><br/> + -- Definition --<br/>Citation of geophysical documentation<br/><br/>-- Description --<br/>Used for title,  date of related documentation and URL for  online access. At the minimum a short name (title) shall be given.<br/><br/> @@ -227,7 +227,7 @@ - Public Identifier
  inspireId + Public GM_Object
  projectedGeometry @@ -276,7 +276,7 @@ Notes: - -- Definition --<br/>External object identifier of the measurement.<br/><br/>-- Description --<br/>NOTE An external object identifier is a unique object identifier published by the responsible body, which may be used by external applications to reference the spatial object. The identifier is an identifier of the spatial object, not an identifier of the real-world phenomenon.<br/><br/> + -- Definition --<br/>2D projection of the feature to the ground surface (as a representative point, curve or bounding polygon) to be used by an INSPIRE view service to display the spatial object location on a map. <br/><br/>-- Description --<br/>When measurement setup is 3 dimensional, it is necessary to define a 2D geometry for displaying purposes. It shall be the 2D projection of the spatial object on the ground surface. Allowed types: point, track and outline. Examples: projected geometry of a borehole logging measurement is a point coincident with the borehole collar location. Projected geometry of a 3D multielectrode DC measurement is a polygon<br/><br/> @@ -285,7 +285,7 @@ - Public Identifier
  largerWork + Public EX_VerticalExtent
  verticalExtent @@ -334,7 +334,7 @@ Notes: - -- Definition --<br/>Identifier of a larger work dataset, typically a campaign or project<br/><br/>-- Description --<br/>Measurements are usually made in campaigns. The largerWork identifier points to the parent Campaign or Project <br/><br/> + -- Definition --<br/>Vertical extent of the range of interest. <br/><br/>-- Description --<br/>This parameter serves discovery purposes. It may refer both to the vertical extent of the measurement setup (p.e. borehole logging) or the extent of the range where processed data is spatially referenced to (Vertical Electric Sounding). The aim is to give an idea to the user about the estimated depth of investigation.<br/><br/> @@ -343,7 +343,7 @@ - Public GM_Object
  projectedGeometry + Public MD_Distributor
  distributionInfo @@ -361,7 +361,7 @@ Stereotype: - + <<voidable>> Ordered: @@ -392,7 +392,7 @@ Notes: - -- Definition --<br/>2D projection of the feature to the ground surface (as a representative point, curve or bounding polygon) to be used by an INSPIRE view service to display the spatial object location on a map. <br/><br/>-- Description --<br/>When measurement setup is 3 dimensional, it is necessary to define a 2D geometry for displaying purposes. It shall be the 2D projection of the spatial object on the ground surface. Allowed types: point, track and outline. Examples: projected geometry of a borehole logging measurement is a point coincident with the borehole collar location. Projected geometry of a 3D multielectrode DC measurement is a polygon<br/><br/> + -- Definition --<br/>Distribution metadata<br/><br/>-- Description --<br/>Data providers may use external services to provide information on a geophysical measurement. Links to the access points, description of ordering procedures or external services can be added in distributionInfo, that is an ISO MD_Distributor record. <br/><br/><br/> @@ -401,7 +401,7 @@ - Public EX_VerticalExtent
  verticalExtent + Public Identifier
  largerWork @@ -450,7 +450,7 @@ Notes: - -- Definition --<br/>Vertical extent of the range of interest. <br/><br/>-- Description --<br/>This parameter serves discovery purposes. It may refer both to the vertical extent of the measurement setup (p.e. borehole logging) or the extent of the range where processed data is spatially referenced to (Vertical Electric Sounding). The aim is to give an idea to the user about the estimated depth of investigation.<br/><br/> + -- Definition --<br/>Identifier of a larger work dataset, typically a campaign or project<br/><br/>-- Description --<br/>Measurements are usually made in campaigns. The largerWork identifier points to the parent Campaign or Project <br/><br/> diff --git a/approved/html/EARoot/EA2/EA2/EA2/EA3/EA8135.htm b/approved/html/EARoot/EA2/EA2/EA2/EA3/EA8135.htm index 83fb70d2c..215436e9e 100644 --- a/approved/html/EARoot/EA2/EA2/EA2/EA3/EA8135.htm +++ b/approved/html/EARoot/EA2/EA2/EA2/EA3/EA8135.htm @@ -111,7 +111,7 @@ - Public DocumentCitation
  citation + Public Identifier
  inspireId @@ -160,7 +160,7 @@ Notes: - -- Definition --<br/>Citation of geophysical documentation<br/><br/>-- Description --<br/>Used for title,  date of related documentation and URL for  online access. At the minimum a short name (title) shall be given.<br/><br/><br/> + -- Definition --<br/>External object identifier of the spatial object.<br/><br/>-- Description --<br/>NOTE An external object identifier is a unique object identifier published by the responsible body, which may be used by external applications to reference the spatial object. The identifier is an identifier of the spatial object, not an identifier of the real-world phenomenon.<br/><br/> @@ -169,7 +169,7 @@ - Public MD_Distributor
  distributionInfo + Public DocumentCitation
  citation @@ -187,7 +187,7 @@ Stereotype: - <<voidable>> + Ordered: @@ -218,7 +218,7 @@ Notes: - -- Definition --<br/>Distribution metadata<br/><br/>-- Description --<br/>Data providers may use external services to provide access to data or information on a survey. Links to the access points, description of ordering procedures, fees can be added in distributionInfo that is an ISO MD_Distributor record.<br/><br/> + -- Definition --<br/>Citation of geophysical documentation<br/><br/>-- Description --<br/>Used for title,  date of related documentation and URL for  online access. At the minimum a short name (title) shall be given.<br/><br/><br/> @@ -227,7 +227,7 @@ - Public Identifier
  inspireId + Public EX_VerticalExtent
  verticalExtent @@ -245,7 +245,7 @@ Stereotype: - + <<voidable>> Ordered: @@ -276,7 +276,7 @@ Notes: - -- Definition --<br/>External object identifier of the spatial object.<br/><br/>-- Description --<br/>NOTE An external object identifier is a unique object identifier published by the responsible body, which may be used by external applications to reference the spatial object. The identifier is an identifier of the spatial object, not an identifier of the real-world phenomenon.<br/><br/> + -- Definition --<br/>Vertical extent of the range of interest. <br/><br/>-- Description --<br/>This parameter serves discovery purposes. It may refer both to the vertical extent of the setup of measurements within the survey, or the extent of the range where processed data is spatially referenced to (estimated depth of investigation). The aim is to give an idea to the user about the estimated depth of investigation.<br/><br/> @@ -285,7 +285,7 @@ - Public Identifier
  largerWork + Public MD_Distributor
  distributionInfo @@ -334,7 +334,7 @@ Notes: - -- Definition --<br/>Identifier of a larger work dataset<br/><br/>-- Description --<br/>The largerWork identifier points to the parent Campaign or Project <br/><br/> + -- Definition --<br/>Distribution metadata<br/><br/>-- Description --<br/>Data providers may use external services to provide access to data or information on a survey. Links to the access points, description of ordering procedures, fees can be added in distributionInfo that is an ISO MD_Distributor record.<br/><br/> @@ -401,7 +401,7 @@ - Public EX_VerticalExtent
  verticalExtent + Public Identifier
  largerWork @@ -450,7 +450,7 @@ Notes: - -- Definition --<br/>Vertical extent of the range of interest. <br/><br/>-- Description --<br/>This parameter serves discovery purposes. It may refer both to the vertical extent of the setup of measurements within the survey, or the extent of the range where processed data is spatially referenced to (estimated depth of investigation). The aim is to give an idea to the user about the estimated depth of investigation.<br/><br/> + -- Definition --<br/>Identifier of a larger work dataset<br/><br/>-- Description --<br/>The largerWork identifier points to the parent Campaign or Project <br/><br/> diff --git a/approved/html/EARoot/EA2/EA2/EA2/EA3/EA8145.htm b/approved/html/EARoot/EA2/EA2/EA2/EA3/EA8145.htm index c1ac2c46b..a3d6ef9ab 100644 --- a/approved/html/EARoot/EA2/EA2/EA2/EA3/EA8145.htm +++ b/approved/html/EARoot/EA2/EA2/EA2/EA3/EA8145.htm @@ -110,7 +110,7 @@ - Public StationRankValue
  stationRank + Public StationTypeValue
  stationType @@ -128,7 +128,7 @@ Stereotype: - <<voidable>> + Ordered: @@ -159,7 +159,7 @@ Notes: - -- Definition --<br/>Geophysical stations may be part of a hierarchical system. Rank is proportional to the importance of a station <br/><br/>-- Description --<br/>Significance of stations can be very different even for the same geophysical method. Rank maz take the following values: 1stOrderBase, 2ndOrderBase, secularStation, observatory. Base stations are used to tie local measurements to higher level networks. Secular stations are visited from time to time to detect long term temporal changes of physical parameters. Observatories are important facilities that collect data continuously, or on a regular basis. <br/><br/><br/> + -- Definition --<br/>Type of geophysical station<br/><br/> @@ -168,7 +168,7 @@ - Public StationTypeValue
  stationType + Public StationRankValue
  stationRank @@ -186,7 +186,7 @@ Stereotype: - + <<voidable>> Ordered: @@ -217,7 +217,7 @@ Notes: - -- Definition --<br/>Type of geophysical station<br/><br/> + -- Definition --<br/>Geophysical stations may be part of a hierarchical system. Rank is proportional to the importance of a station <br/><br/>-- Description --<br/>Significance of stations can be very different even for the same geophysical method. Rank maz take the following values: 1stOrderBase, 2ndOrderBase, secularStation, observatory. Base stations are used to tie local measurements to higher level networks. Secular stations are visited from time to time to detect long term temporal changes of physical parameters. Observatories are important facilities that collect data continuously, or on a regular basis. <br/><br/><br/> diff --git a/approved/html/EARoot/EA2/EA2/EA3/EA1/EA8155.htm b/approved/html/EARoot/EA2/EA2/EA3/EA1/EA8155.htm index 0c4100dcc..15c08a1f8 100644 --- a/approved/html/EARoot/EA2/EA2/EA3/EA1/EA8155.htm +++ b/approved/html/EARoot/EA2/EA2/EA3/EA1/EA8155.htm @@ -177,7 +177,7 @@ - Public DocumentCitation
  externalDescription + Public Identifier
  inspireId @@ -195,7 +195,7 @@ Stereotype: - <<voidable>> + Ordered: @@ -203,7 +203,7 @@ Range: - Range:0 to * + Transient: @@ -226,7 +226,7 @@ Notes: - -- Name --<br/>externalDescription<br/><br/>-- Definition --<br/>Document describing the nomenclature used in this data set.<br/><br/> + -- Name --<br/>inspireId<br/><br/>-- Definition --<br/>External object identifier of the spatial object.<br/><br/>-- Description --<br/>NOTE An external object identifier is a unique object identifier published by the responsible body, which may be used by external applications to reference the spatial object. The identifier is an identifier of the spatial object, not an identifier of the real-world phenomenon.<br/><br/> @@ -235,7 +235,7 @@ - Public Identifier
  inspireId + Public URI
  nomenclatureCodeList @@ -284,7 +284,7 @@ Notes: - -- Name --<br/>inspireId<br/><br/>-- Definition --<br/>External object identifier of the spatial object.<br/><br/>-- Description --<br/>NOTE An external object identifier is a unique object identifier published by the responsible body, which may be used by external applications to reference the spatial object. The identifier is an identifier of the spatial object, not an identifier of the real-world phenomenon.<br/><br/> + -- Name --<br/>nomenclatureCodeList<br/><br/>-- Definition --<br/>An http URI pointing to the code list attached to the nomenclature used.<br/><br/> @@ -293,7 +293,7 @@ - Public URI
  nomenclatureCodeList + Public DocumentCitation
  externalDescription @@ -311,7 +311,7 @@ Stereotype: - + <<voidable>> Ordered: @@ -319,7 +319,7 @@ Range: - + Range:0 to * Transient: @@ -342,7 +342,7 @@ Notes: - -- Name --<br/>nomenclatureCodeList<br/><br/>-- Definition --<br/>An http URI pointing to the code list attached to the nomenclature used.<br/><br/> + -- Name --<br/>externalDescription<br/><br/>-- Definition --<br/>Document describing the nomenclature used in this data set.<br/><br/> diff --git a/approved/html/EARoot/EA2/EA2/EA3/EA2/EA8157.png b/approved/html/EARoot/EA2/EA2/EA3/EA2/EA8157.png index ec519eefe..b3687c2a9 100644 Binary files a/approved/html/EARoot/EA2/EA2/EA3/EA2/EA8157.png and b/approved/html/EARoot/EA2/EA2/EA3/EA2/EA8157.png differ diff --git a/approved/html/EARoot/EA2/EA2/EA3/EA2/EA8160.htm b/approved/html/EARoot/EA2/EA2/EA3/EA2/EA8160.htm index ce006d31f..c0d9007d5 100644 --- a/approved/html/EARoot/EA2/EA2/EA3/EA2/EA8160.htm +++ b/approved/html/EARoot/EA2/EA2/EA3/EA2/EA8160.htm @@ -110,7 +110,7 @@ - Public DateTime
  beginLifespanVersion + Public Identifier
  inspireId @@ -128,7 +128,7 @@ Stereotype: - <<voidable>> + Ordered: @@ -159,7 +159,7 @@ Notes: - -- Name --<br/>beginLifespanVersion<br/><br/>-- Definition --<br/>Date and time at which this version of the spatial object was inserted or changed in the spatial data set.<br/><br/> + -- Name --<br/>inspireId<br/><br/>-- Definition --<br/>External object identifier of the spatial object.<br/><br/>-- Description --<br/>NOTE An external object identifier is a unique object identifier published by the responsible body, which may be used by external applications to reference the spatial object. The identifier is an identifier of the spatial object, not an identifier of the real-world phenomenon.<br/><br/> @@ -168,7 +168,7 @@ - Public DateTime
  endLifespanVersion + Public DateTime
  beginLifespanVersion @@ -194,7 +194,7 @@ Range: - Range:0 to 1 + Transient: @@ -217,7 +217,7 @@ Notes: - -- Name --<br/>endLifespanVersion<br/><br/>-- Definition --<br/>Date and time at which this version of the spatial object was superseded or retired in the spatial data set.<br/><br/> + -- Name --<br/>beginLifespanVersion<br/><br/>-- Definition --<br/>Date and time at which this version of the spatial object was inserted or changed in the spatial data set.<br/><br/> @@ -226,7 +226,7 @@ - Public EX_Extent
  extent + Public DateTime
  endLifespanVersion @@ -244,7 +244,7 @@ Stereotype: - + <<voidable>> Ordered: @@ -252,7 +252,7 @@ Range: - + Range:0 to 1 Transient: @@ -275,7 +275,7 @@ Notes: - -- Name --<br/>extent<br/><br/>-- Definition --<br/>Contains the extent of the data set.<br/><br/>-- Description --<br/>NOTE Extents may be specified in space, time or space-time.<br/><br/> + -- Name --<br/>endLifespanVersion<br/><br/>-- Definition --<br/>Date and time at which this version of the spatial object was superseded or retired in the spatial data set.<br/><br/> @@ -284,7 +284,7 @@ - Public Identifier
  inspireId + Public EX_Extent
  extent @@ -333,7 +333,7 @@ Notes: - -- Name --<br/>inspireId<br/><br/>-- Definition --<br/>External object identifier of the spatial object.<br/><br/>-- Description --<br/>NOTE An external object identifier is a unique object identifier published by the responsible body, which may be used by external applications to reference the spatial object. The identifier is an identifier of the spatial object, not an identifier of the real-world phenomenon.<br/><br/> + -- Name --<br/>extent<br/><br/>-- Definition --<br/>Contains the extent of the data set.<br/><br/>-- Description --<br/>NOTE Extents may be specified in space, time or space-time.<br/><br/> diff --git a/approved/html/EARoot/EA2/EA2/EA3/EA3/EA8162.png b/approved/html/EARoot/EA2/EA2/EA3/EA3/EA8162.png index 6282b5d9a..03337e60b 100644 Binary files a/approved/html/EARoot/EA2/EA2/EA3/EA3/EA8162.png and b/approved/html/EARoot/EA2/EA2/EA3/EA3/EA8162.png differ diff --git a/approved/html/EARoot/EA2/EA2/EA3/EA3/EA8166.htm b/approved/html/EARoot/EA2/EA2/EA3/EA3/EA8166.htm index 7d342b86a..6062b5f8e 100644 --- a/approved/html/EARoot/EA2/EA2/EA3/EA3/EA8166.htm +++ b/approved/html/EARoot/EA2/EA2/EA3/EA3/EA8166.htm @@ -110,7 +110,7 @@ - Public DateTime
  beginLifespanVersion + Public Identifier
  inspireId @@ -128,7 +128,7 @@ Stereotype: - <<voidable>> + Ordered: @@ -159,7 +159,7 @@ Notes: - -- Name --<br/>beginLifespanVersion<br/><br/>-- Definition --<br/>Date and time at which this version of the spatial object was inserted or changed in the spatial data set.<br/><br/> + -- Name --<br/>inspireId<br/><br/>-- Definition --<br/>External object identifier of the spatial object.<br/><br/>-- Description --<br/>NOTE An external object identifier is a unique object identifier published by the responsible body, which may be used by external applications to reference the spatial object. The identifier is an identifier of the spatial object, not an identifier of the real-world phenomenon.<br/><br/> @@ -168,7 +168,7 @@ - Public DateTime
  endLifespanVersion + Public DateTime
  beginLifespanVersion @@ -194,7 +194,7 @@ Range: - Range:0 to 1 + Transient: @@ -217,7 +217,7 @@ Notes: - -- Name --<br/>endLifespanVersion<br/><br/>-- Definition --<br/>Date and time at which this version of the spatial object was superseded or retired in the spatial data set.<br/><br/> + -- Name --<br/>beginLifespanVersion<br/><br/>-- Definition --<br/>Date and time at which this version of the spatial object was inserted or changed in the spatial data set.<br/><br/> @@ -226,7 +226,7 @@ - Public EX_Extent
  extent + Public DateTime
  endLifespanVersion @@ -244,7 +244,7 @@ Stereotype: - + <<voidable>> Ordered: @@ -252,7 +252,7 @@ Range: - + Range:0 to 1 Transient: @@ -275,7 +275,7 @@ Notes: - -- Name --<br/>extent<br/><br/>-- Definition --<br/>Contains the extent of the data set.<br/><br/>-- Description --<br/>NOTE Extents may be specified in space, time or space-time.<br/><br/> + -- Name --<br/>endLifespanVersion<br/><br/>-- Definition --<br/>Date and time at which this version of the spatial object was superseded or retired in the spatial data set.<br/><br/> @@ -284,7 +284,7 @@ - Public Identifier
  inspireId + Public EX_Extent
  extent @@ -333,7 +333,7 @@ Notes: - -- Name --<br/>inspireId<br/><br/>-- Definition --<br/>External object identifier of the spatial object.<br/><br/>-- Description --<br/>NOTE An external object identifier is a unique object identifier published by the responsible body, which may be used by external applications to reference the spatial object. The identifier is an identifier of the spatial object, not an identifier of the real-world phenomenon.<br/><br/> + -- Name --<br/>extent<br/><br/>-- Definition --<br/>Contains the extent of the data set.<br/><br/>-- Description --<br/>NOTE Extents may be specified in space, time or space-time.<br/><br/> diff --git a/approved/html/EARoot/EA2/EA2/EA3/EA3/EA8168.htm b/approved/html/EARoot/EA2/EA2/EA3/EA3/EA8168.htm index 76f61a2a7..aaccd1136 100644 --- a/approved/html/EARoot/EA2/EA2/EA3/EA3/EA8168.htm +++ b/approved/html/EARoot/EA2/EA2/EA3/EA3/EA8168.htm @@ -111,7 +111,7 @@ - Public DateTime
  beginLifespanVersion + Public Identifier
  inspireId @@ -129,7 +129,7 @@ Stereotype: - <<voidable>> + Ordered: @@ -160,7 +160,7 @@ Notes: - -- Name --<br/>beginLifespanVersion<br/><br/>-- Definition --<br/>Date and time at which this version of the spatial object was inserted or changed in the spatial data set.<br/><br/> + -- Name --<br/>inspireId<br/><br/>-- Definition --<br/>External object identifier of the spatial object.<br/><br/>-- Description --<br/>NOTE An external object identifier is a unique object identifier published by the responsible body, which may be used by external applications to reference the spatial object. The identifier is an identifier of the spatial object, not an identifier of the real-world phenomenon.<br/><br/> @@ -169,7 +169,7 @@ - Public DateTime
  endLifespanVersion + Public DateTime
  beginLifespanVersion @@ -195,7 +195,7 @@ Range: - Range:0 to 1 + Transient: @@ -218,7 +218,7 @@ Notes: - -- Name --<br/>endLifespanVersion<br/><br/>-- Definition --<br/>Date and time at which this version of the spatial object was superseded or retired in the spatial data set.<br/><br/> + -- Name --<br/>beginLifespanVersion<br/><br/>-- Definition --<br/>Date and time at which this version of the spatial object was inserted or changed in the spatial data set.<br/><br/> @@ -227,7 +227,7 @@ - Public GM_Object
  geometry + Public DateTime
  endLifespanVersion @@ -245,7 +245,7 @@ Stereotype: - + <<voidable>> Ordered: @@ -253,7 +253,7 @@ Range: - + Range:0 to 1 Transient: @@ -276,7 +276,7 @@ Notes: - -- Name --<br/>geometry<br/><br/>-- Definition --<br/>Spatial representation of the Land Cover unit.<br/><br/>-- Description --<br/>NOTE Restricted to point or surface.<br/><br/> + -- Name --<br/>endLifespanVersion<br/><br/>-- Definition --<br/>Date and time at which this version of the spatial object was superseded or retired in the spatial data set.<br/><br/> @@ -285,7 +285,7 @@ - Public Identifier
  inspireId + Public GM_Object
  geometry @@ -334,7 +334,7 @@ Notes: - -- Name --<br/>inspireId<br/><br/>-- Definition --<br/>External object identifier of the spatial object.<br/><br/>-- Description --<br/>NOTE An external object identifier is a unique object identifier published by the responsible body, which may be used by external applications to reference the spatial object. The identifier is an identifier of the spatial object, not an identifier of the real-world phenomenon.<br/><br/> + -- Name --<br/>geometry<br/><br/>-- Definition --<br/>Spatial representation of the Land Cover unit.<br/><br/>-- Description --<br/>NOTE Restricted to point or surface.<br/><br/> diff --git a/approved/html/EARoot/EA2/EA2/EA4/EA1/EA1/EA8177.png b/approved/html/EARoot/EA2/EA2/EA4/EA1/EA1/EA8177.png index fd90fa591..c85903b7b 100644 Binary files a/approved/html/EARoot/EA2/EA2/EA4/EA1/EA1/EA8177.png and b/approved/html/EARoot/EA2/EA2/EA4/EA1/EA1/EA8177.png differ diff --git a/approved/html/EARoot/EA2/EA2/EA4/EA1/EA1/EA8183.htm b/approved/html/EARoot/EA2/EA2/EA4/EA1/EA1/EA8183.htm index a6ac0274f..ccd725270 100644 --- a/approved/html/EARoot/EA2/EA2/EA4/EA1/EA1/EA8183.htm +++ b/approved/html/EARoot/EA2/EA2/EA4/EA1/EA1/EA8183.htm @@ -110,7 +110,7 @@ - Public GM_MultiSurface
  geometry + Public Identifier
  inspireId @@ -136,7 +136,7 @@ Range: - + Range:0 to 1 Transient: @@ -159,7 +159,7 @@ Notes: - -- Name --<br/>geometry<br/><br/>-- Definition --<br/>Geometric representation spatially delineating the date and time of acquisition of the several input images that contribute to the final mosaic.<br/><br/>-- Description --<br/>NOTE The boundaries of the geometries are commonly based on the seamlines used for the mosaicking process.<br/><br/> + -- Name --<br/>inspire identifier<br/><br/>-- Definition --<br/>External object identifier of the spatial object.<br/><br/>-- Description --<br/>NOTE 1 An external object identifier is a unique object identifier published by the responsible body, which may be used by external applications to reference the spatial object. The identifier is an identifier of the spatial object, not an identifier of the real-world phenomenon.<br/><br/>NOTE 2 This property should be used to reference indirect MosaicElement instances from Orthoimage instances unambiguously.<br/><br/> @@ -168,7 +168,7 @@ - Public Identifier
  inspireId + Public GM_MultiSurface
  geometry @@ -194,7 +194,7 @@ Range: - Range:0 to 1 + Transient: @@ -217,7 +217,7 @@ Notes: - -- Name --<br/>inspire identifier<br/><br/>-- Definition --<br/>External object identifier of the spatial object.<br/><br/>-- Description --<br/>NOTE 1 An external object identifier is a unique object identifier published by the responsible body, which may be used by external applications to reference the spatial object. The identifier is an identifier of the spatial object, not an identifier of the real-world phenomenon.<br/><br/>NOTE 2 This property should be used to reference indirect MosaicElement instances from Orthoimage instances unambiguously.<br/><br/> + -- Name --<br/>geometry<br/><br/>-- Definition --<br/>Geometric representation spatially delineating the date and time of acquisition of the several input images that contribute to the final mosaic.<br/><br/>-- Description --<br/>NOTE The boundaries of the geometries are commonly based on the seamlines used for the mosaicking process.<br/><br/> diff --git a/approved/html/EARoot/EA2/EA2/EA4/EA1/EA1/EA8185.htm b/approved/html/EARoot/EA2/EA2/EA4/EA1/EA1/EA8185.htm index ce08ff4ae..9823ee63a 100644 --- a/approved/html/EARoot/EA2/EA2/EA4/EA1/EA1/EA8185.htm +++ b/approved/html/EARoot/EA2/EA2/EA4/EA1/EA1/EA8185.htm @@ -112,7 +112,7 @@ - Public TM_Position
  beginLifespanVersion + Public Identifier
  inspireId @@ -130,7 +130,7 @@ Stereotype: - <<voidable>> + Ordered: @@ -161,7 +161,7 @@ Notes: - -- Name --<br/>begin lifespan version<br/><br/>-- Definition --<br/>Temporal position at which this version of the spatial object was inserted or changed in the spatial data set.<br/><br/>-- Description --<br/>NOTE Since this information is not always automatically recorded by a system, but can be captured manually, the provision of the time is not required here. That is the reason why TM_Position was chosen as value type instead of DateTime, which is, however, commonly used in other INSPIRE data specifications.<br/><br/> + -- Name --<br/>inspire identifier<br/><br/>-- Definition --<br/>External object identifier of the spatial object.<br/><br/>-- Description --<br/>NOTE An external object identifier is a unique object identifier published by the responsible body, which may be used by external applications to reference the spatial object. The identifier is an identifier of the spatial object, not an identifier of the real-world phenomenon.<br/><br/> @@ -228,7 +228,7 @@ - Public TM_Position
  endLifespanVersion + Public GM_MultiSurface
  footprint @@ -254,7 +254,7 @@ Range: - Range:0 to 1 + Transient: @@ -277,7 +277,7 @@ Notes: - -- Name --<br/>end lifespan version<br/><br/>-- Definition --<br/>Temporal position at which this version of the spatial object was superseded or retired from the spatial data set.<br/><br/>-- Description --<br/>NOTE Since this information is not always automatically recorded by a system, but can be captured manually, the provision of the time is not required here. That is the reason why TM_Position was chosen as value type instead of DateTime, which is, however, commonly used in other INSPIRE data specifications.<br/><br/> + -- Name --<br/>footprint<br/><br/>-- Definition --<br/>Geographic area enclosing valid data of the orthoimage coverage.<br/><br/>-- Description --<br/>NOTE 1 The footprint shall be enclosed in the geographic domain extent that it refines.<br/><br/>NOTE 2 This property is mandatory if the OrthoimageCoverage instance is an aggregation of other OrthoimageCoverage instances or if mosaic elements are provided.<br/><br/> @@ -286,7 +286,7 @@ - Public GM_MultiSurface
  footprint + Public InterpolationMethodValue
  interpolationType @@ -300,11 +300,11 @@ Initial: - + nearestneighbor Stereotype: - <<voidable>> + Ordered: @@ -328,14 +328,14 @@ - + obligation=implementingRule
Notes: - -- Name --<br/>footprint<br/><br/>-- Definition --<br/>Geographic area enclosing valid data of the orthoimage coverage.<br/><br/>-- Description --<br/>NOTE 1 The footprint shall be enclosed in the geographic domain extent that it refines.<br/><br/>NOTE 2 This property is mandatory if the OrthoimageCoverage instance is an aggregation of other OrthoimageCoverage instances or if mosaic elements are provided.<br/><br/> + -- Name --<br/>interpolation type<br/><br/>-- Definition --<br/>Mathematical method which shall be used to evaluate a continuous coverage, i.e. determine the values of the coverage at any direct position within the domain of the coverage.<br/><br/>-- Description --<br/>NOTE 1 Nearestneighbor is set as a default value in case where this information is omitted by data producers.<br/><br/>NOTE 2 A continuous grid coverage that uses nearest neighbour interpolation acts as a discrete surface coverage.<br/><br/>
@@ -344,7 +344,7 @@ - Public Identifier
  inspireId + Public CharacterString
  name @@ -362,7 +362,7 @@ Stereotype: - + <<voidable>> Ordered: @@ -370,7 +370,7 @@ Range: - + Range:0 to 1 Transient: @@ -393,7 +393,7 @@ Notes: - -- Name --<br/>inspire identifier<br/><br/>-- Definition --<br/>External object identifier of the spatial object.<br/><br/>-- Description --<br/>NOTE An external object identifier is a unique object identifier published by the responsible body, which may be used by external applications to reference the spatial object. The identifier is an identifier of the spatial object, not an identifier of the real-world phenomenon.<br/><br/> + -- Name --<br/>name<br/><br/>-- Definition --<br/>Free text name of the orthoimage coverage.<br/><br/>-- Description --<br/>NOTE This field is intended to hold a name that a data provider may use in addition to the inspire identifier<br/><br/>EXAMPLE 1 "Orthofoto's, middenschalig, kleur, provincie Limburg, opname 2011" is the name used by the Flemish Geographic Information Agency (AGIV) to indicate the OrthoImageCoverage Instance holding the orthophotomosaic covering the administrative unit 'provincie Limburg' at a resolution of 25 cm 'middenschalig' acquired in the year 2011 'opname 2011'<br/><br/>EXAMPLE 2  "BDOrtho coverage on Savoie at 50 cm - 2011" could be the name of an OrthoimageCoverage instance corresponding to a subset of the BDOrtho product of IGN France, the orthophoto of the "department" Savoie (an administrative unit) at a resolution of 50 cm.<br/><br/> @@ -402,7 +402,7 @@ - Public InterpolationMethodValue
  interpolationType + Public TM_Period
  phenomenonTime @@ -416,11 +416,11 @@ Initial: - nearestneighbor + Stereotype: - + <<voidable>> Ordered: @@ -428,7 +428,7 @@ Range: - + Range:0 to 1 Transient: @@ -444,14 +444,14 @@ - obligation=implementingRule
+
Notes: - -- Name --<br/>interpolation type<br/><br/>-- Definition --<br/>Mathematical method which shall be used to evaluate a continuous coverage, i.e. determine the values of the coverage at any direct position within the domain of the coverage.<br/><br/>-- Description --<br/>NOTE 1 Nearestneighbor is set as a default value in case where this information is omitted by data producers.<br/><br/>NOTE 2 A continuous grid coverage that uses nearest neighbour interpolation acts as a discrete surface coverage.<br/><br/> + -- Name --<br/>phenomenon time<br/><br/>-- Definition --<br/>Description of the observation/acquisition extent in time.<br/><br/>-- Description --<br/>NOTE 1 This temporal extent refers to the range in time in which the image(s) contributing to the orthoImage coverage has/have been acquired.<br/><br/>NOTE 2 When the acquisition is considered as instantaneous, despite the exposure time, the end date and time can be identical to the begin date and time.<br/><br/>EXAMPLE 1 begin: 2011-10-30 end: 2011-10-30<br/><br/>EXAMPLE 2 begin: 2011-06-07T14:31:02Z end: 2011-06-07T16:10:54Z.<br/><br/>
@@ -460,7 +460,7 @@ - Public CharacterString
  name + Public TM_Position
  beginLifespanVersion @@ -486,7 +486,7 @@ Range: - Range:0 to 1 + Transient: @@ -509,7 +509,7 @@ Notes: - -- Name --<br/>name<br/><br/>-- Definition --<br/>Free text name of the orthoimage coverage.<br/><br/>-- Description --<br/>NOTE This field is intended to hold a name that a data provider may use in addition to the inspire identifier<br/><br/>EXAMPLE 1 "Orthofoto's, middenschalig, kleur, provincie Limburg, opname 2011" is the name used by the Flemish Geographic Information Agency (AGIV) to indicate the OrthoImageCoverage Instance holding the orthophotomosaic covering the administrative unit 'provincie Limburg' at a resolution of 25 cm 'middenschalig' acquired in the year 2011 'opname 2011'<br/><br/>EXAMPLE 2  "BDOrtho coverage on Savoie at 50 cm - 2011" could be the name of an OrthoimageCoverage instance corresponding to a subset of the BDOrtho product of IGN France, the orthophoto of the "department" Savoie (an administrative unit) at a resolution of 50 cm.<br/><br/> + -- Name --<br/>begin lifespan version<br/><br/>-- Definition --<br/>Temporal position at which this version of the spatial object was inserted or changed in the spatial data set.<br/><br/>-- Description --<br/>NOTE Since this information is not always automatically recorded by a system, but can be captured manually, the provision of the time is not required here. That is the reason why TM_Position was chosen as value type instead of DateTime, which is, however, commonly used in other INSPIRE data specifications.<br/><br/> @@ -518,7 +518,7 @@ - Public TM_Period
  phenomenonTime + Public TM_Position
  endLifespanVersion @@ -567,7 +567,7 @@ Notes: - -- Name --<br/>phenomenon time<br/><br/>-- Definition --<br/>Description of the observation/acquisition extent in time.<br/><br/>-- Description --<br/>NOTE 1 This temporal extent refers to the range in time in which the image(s) contributing to the orthoImage coverage has/have been acquired.<br/><br/>NOTE 2 When the acquisition is considered as instantaneous, despite the exposure time, the end date and time can be identical to the begin date and time.<br/><br/>EXAMPLE 1 begin: 2011-10-30 end: 2011-10-30<br/><br/>EXAMPLE 2 begin: 2011-06-07T14:31:02Z end: 2011-06-07T16:10:54Z.<br/><br/> + -- Name --<br/>end lifespan version<br/><br/>-- Definition --<br/>Temporal position at which this version of the spatial object was superseded or retired from the spatial data set.<br/><br/>-- Description --<br/>NOTE Since this information is not always automatically recorded by a system, but can be captured manually, the provision of the time is not required here. That is the reason why TM_Position was chosen as value type instead of DateTime, which is, however, commonly used in other INSPIRE data specifications.<br/><br/> diff --git a/approved/html/EARoot/EA2/EA3/EA1/EA1/EA8213.png b/approved/html/EARoot/EA2/EA3/EA1/EA1/EA8213.png index 08873deab..ad5fae487 100644 Binary files a/approved/html/EARoot/EA2/EA3/EA1/EA1/EA8213.png and b/approved/html/EARoot/EA2/EA3/EA1/EA1/EA8213.png differ diff --git a/approved/html/EARoot/EA2/EA3/EA1/EA1/EA8215.png b/approved/html/EARoot/EA2/EA3/EA1/EA1/EA8215.png index 8ec3d2346..14ed04b9c 100644 Binary files a/approved/html/EARoot/EA2/EA3/EA1/EA1/EA8215.png and b/approved/html/EARoot/EA2/EA3/EA1/EA1/EA8215.png differ diff --git a/approved/html/EARoot/EA2/EA3/EA10/EA1/EA1/EA8784.png b/approved/html/EARoot/EA2/EA3/EA10/EA1/EA1/EA8784.png index 2c51b5eb0..2df59f8d1 100644 Binary files a/approved/html/EARoot/EA2/EA3/EA10/EA1/EA1/EA8784.png and b/approved/html/EARoot/EA2/EA3/EA10/EA1/EA1/EA8784.png differ diff --git a/approved/html/EARoot/EA2/EA3/EA10/EA1/EA1/EA8786.htm b/approved/html/EARoot/EA2/EA3/EA10/EA1/EA1/EA8786.htm index 0591dbbe8..b4b99897d 100644 --- a/approved/html/EARoot/EA2/EA3/EA10/EA1/EA1/EA8786.htm +++ b/approved/html/EARoot/EA2/EA3/EA10/EA1/EA1/EA8786.htm @@ -109,7 +109,7 @@ - Public DateTime
  beginLifespanVersion + Public Identifier
  inspireId @@ -127,7 +127,7 @@ Stereotype: - <<lifeCycleInfo>> + Ordered: @@ -158,7 +158,7 @@ Notes: - -- Definition --<br/>Date and time at which this version of the existing land use data set was inserted or changed in the provided set of data.<br/> + -- Definition --<br/>External object identifier of the existing land use dataset.<br/>-- Description --<br/>NOTE An external object identifier is a unique object identifier published by the responsible body, which may be used by external applications to reference the spatial object. The identifier is an identifier of the spatial object, not an identifier of the real-world phenomenon.<br/> @@ -167,7 +167,7 @@ - Public DateTime
  endLifespanVersion + Public GM_MultiSurface
  extent @@ -185,7 +185,7 @@ Stereotype: - <<lifeCycleInfo>> + Ordered: @@ -193,7 +193,7 @@ Range: - Range:0 to 1 + Transient: @@ -216,7 +216,7 @@ Notes: - -- Definition --<br/>Date and time at which this version of the existing land use data set was superseded or retired in the provided set of data.<br/> + -- Name --<br/>existing land use data set<br/>-- Definition --<br/>Boundary of the geometrical union of all the instances of the spatial object type ExistingLandUseObject.<br/> @@ -225,7 +225,7 @@ - Public GM_MultiSurface
  extent + Public DateTime
  beginLifespanVersion @@ -243,7 +243,7 @@ Stereotype: - + <<lifeCycleInfo>> Ordered: @@ -274,7 +274,7 @@ Notes: - -- Name --<br/>existing land use data set<br/>-- Definition --<br/>Boundary of the geometrical union of all the instances of the spatial object type ExistingLandUseObject.<br/> + -- Definition --<br/>Date and time at which this version of the existing land use data set was inserted or changed in the provided set of data.<br/> @@ -283,7 +283,7 @@ - Public Identifier
  inspireId + Public DateTime
  endLifespanVersion @@ -301,7 +301,7 @@ Stereotype: - + <<lifeCycleInfo>> Ordered: @@ -309,7 +309,7 @@ Range: - + Range:0 to 1 Transient: @@ -332,7 +332,7 @@ Notes: - -- Definition --<br/>External object identifier of the existing land use dataset.<br/>-- Description --<br/>NOTE An external object identifier is a unique object identifier published by the responsible body, which may be used by external applications to reference the spatial object. The identifier is an identifier of the spatial object, not an identifier of the real-world phenomenon.<br/> + -- Definition --<br/>Date and time at which this version of the existing land use data set was superseded or retired in the provided set of data.<br/> diff --git a/approved/html/EARoot/EA2/EA3/EA10/EA1/EA1/EA8787.htm b/approved/html/EARoot/EA2/EA3/EA10/EA1/EA1/EA8787.htm index 4781ee6a2..fa65350b6 100644 --- a/approved/html/EARoot/EA2/EA3/EA10/EA1/EA1/EA8787.htm +++ b/approved/html/EARoot/EA2/EA3/EA10/EA1/EA1/EA8787.htm @@ -109,7 +109,7 @@ - Public DateTime
  beginLifespanVersion + Public Identifier
  inspireId @@ -127,7 +127,7 @@ Stereotype: - <<lifeCycleInfo>> + Ordered: @@ -158,7 +158,7 @@ Notes: - -- Definition --<br/>Date and time at which this version of the spatial object was inserted or changed in the spatial data set.<br/><br/> + -- Definition --<br/>External object identifier of the existing land use object.<br/>-- Description --<br/>An external object identifier is a unique object identifier published by the responsible body, which may be used by external applications to reference the spatial object. The identifier is an identifier of the spatial object, not an identifier of the real-world phenomenon.<br/> @@ -167,7 +167,7 @@ - Public DateTime
  endLifespanVersion + Public DateTime
  beginLifespanVersion @@ -193,7 +193,7 @@ Range: - Range:0 to 1 + Transient: @@ -216,7 +216,7 @@ Notes: - -- Definition --<br/>Date and time at which this version of the spatial object was superseded or retired in the spatial data set.<br/><br/> + -- Definition --<br/>Date and time at which this version of the spatial object was inserted or changed in the spatial data set.<br/><br/> @@ -225,7 +225,7 @@ - Public GM_MultiSurface
  geometry + Public DateTime
  endLifespanVersion @@ -243,7 +243,7 @@ Stereotype: - + <<lifeCycleInfo>> Ordered: @@ -251,7 +251,7 @@ Range: - + Range:0 to 1 Transient: @@ -274,7 +274,7 @@ Notes: - -- Definition --<br/>Geometric representation of spatial area covered by this spatial object.<br/><br/> + -- Definition --<br/>Date and time at which this version of the spatial object was superseded or retired in the spatial data set.<br/><br/> @@ -283,7 +283,7 @@ - Public HILUCSValue
  hilucsLandUse + Public GM_MultiSurface
  geometry @@ -332,7 +332,7 @@ Notes: - -- Definition --<br/>Land use HILUCS classes that are present in this existing land use object.<br/>-- Description --<br/>NOTE The Existing Land Use model enables the provision of information on land uses inside one land use object. The ExistingLandUseObject may be associated with 1 to many HILUCSLandUse that represents the Land Uses for the polygon from the economical point of view. It makes possible the assignment of more than one HILUCSLandUse existences when they cannot be managed by HILUCSPresences.<br/> + -- Definition --<br/>Geometric representation of spatial area covered by this spatial object.<br/><br/> @@ -341,7 +341,7 @@ - Public HILUCSPresence
  hilucsPresence + Public HILUCSValue
  hilucsLandUse @@ -359,7 +359,7 @@ Stereotype: - <<voidable>> + Ordered: @@ -383,14 +383,14 @@ - obligation=implementingRule
+
Notes: - -- Name --<br/>land use presence<br/>-- Definition --<br/>Actual presence of a land use category according to HILUCS within the object.<br/> + -- Definition --<br/>Land use HILUCS classes that are present in this existing land use object.<br/>-- Description --<br/>NOTE The Existing Land Use model enables the provision of information on land uses inside one land use object. The ExistingLandUseObject may be associated with 1 to many HILUCSLandUse that represents the Land Uses for the polygon from the economical point of view. It makes possible the assignment of more than one HILUCSLandUse existences when they cannot be managed by HILUCSPresences.<br/>
@@ -399,7 +399,7 @@ - Public Identifier
  inspireId + Public HILUCSPresence
  hilucsPresence @@ -417,7 +417,7 @@ Stereotype: - + <<voidable>> Ordered: @@ -441,14 +441,14 @@ - + obligation=implementingRule
Notes: - -- Definition --<br/>External object identifier of the existing land use object.<br/>-- Description --<br/>An external object identifier is a unique object identifier published by the responsible body, which may be used by external applications to reference the spatial object. The identifier is an identifier of the spatial object, not an identifier of the real-world phenomenon.<br/> + -- Name --<br/>land use presence<br/>-- Definition --<br/>Actual presence of a land use category according to HILUCS within the object.<br/>
@@ -457,7 +457,7 @@ - Public Date
  observationDate + Public LandUseClassificationValue
  specificLandUse @@ -499,14 +499,14 @@ - + obligation=implementingRule
Notes: - -- Name --<br/>Observation Date.<br/>-- Definition --<br/>The observation date associated to a description.<br/>-- Description --<br/>Defines the observation date of the description. It could be the date of an aerial/satellite acquisition or a field survey. The observation date allows the user to have accurate date of when the description was made in the real word. In a database, not all objects are necessarily captured at the same time.<br/> + -- Definition --<br/>Land Use Category according to the nomenclature specific to this data set.<br/>-- Description --<br/>Reference to an entry in the classfication that is part of the SpecificLandUseClassification.<br/>
@@ -515,7 +515,7 @@ - Public LandUseClassificationValue
  specificLandUse + Public SpecificPresence
  specificPresence @@ -564,7 +564,7 @@ Notes: - -- Definition --<br/>Land Use Category according to the nomenclature specific to this data set.<br/>-- Description --<br/>Reference to an entry in the classfication that is part of the SpecificLandUseClassification.<br/> + -- Name --<br/>land use presence<br/>-- Definition --<br/>Actual presence of a land use category within the object.<br/> @@ -573,7 +573,7 @@ - Public SpecificPresence
  specificPresence + Public Date
  observationDate @@ -615,14 +615,14 @@ - obligation=implementingRule
+
Notes: - -- Name --<br/>land use presence<br/>-- Definition --<br/>Actual presence of a land use category within the object.<br/> + -- Name --<br/>Observation Date.<br/>-- Definition --<br/>The observation date associated to a description.<br/>-- Description --<br/>Defines the observation date of the description. It could be the date of an aerial/satellite acquisition or a field survey. The observation date allows the user to have accurate date of when the description was made in the real word. In a database, not all objects are necessarily captured at the same time.<br/>
diff --git a/approved/html/EARoot/EA2/EA3/EA10/EA1/EA2/EA8789.png b/approved/html/EARoot/EA2/EA3/EA10/EA1/EA2/EA8789.png index 00780b477..2be32a4be 100644 Binary files a/approved/html/EARoot/EA2/EA3/EA10/EA1/EA2/EA8789.png and b/approved/html/EARoot/EA2/EA3/EA10/EA1/EA2/EA8789.png differ diff --git a/approved/html/EARoot/EA2/EA3/EA10/EA1/EA2/EA8792.htm b/approved/html/EARoot/EA2/EA3/EA10/EA1/EA2/EA8792.htm index 6d77f9ff7..184f569ab 100644 --- a/approved/html/EARoot/EA2/EA3/EA10/EA1/EA2/EA8792.htm +++ b/approved/html/EARoot/EA2/EA3/EA10/EA1/EA2/EA8792.htm @@ -110,7 +110,7 @@ - Public DateTime
  beginLifespanVersion + Public CharacterString
  name @@ -128,7 +128,7 @@ Stereotype: - <<lifeCycleInfo>> + Ordered: @@ -159,7 +159,7 @@ Notes: - -- Definition --<br/>Date and time at which this version of the spatial object was inserted or changed in the spatial data set.<br/> + -- Definition --<br/>Human readable name of the data set.<br/> @@ -168,7 +168,7 @@ - Public DateTime
  endLifespanVersion + Public Identifier
  inspireId @@ -186,7 +186,7 @@ Stereotype: - <<lifeCycleInfo>> + Ordered: @@ -194,7 +194,7 @@ Range: - Range:0 to 1 + Transient: @@ -217,7 +217,7 @@ Notes: - -- Definition --<br/>Date and time at which this version of the spatial object was superseded or retired in the spatial data set.<br/> + -- Definition --<br/>External object identifier of the sampled land use data grid.<br/>-- Description --<br/>NOTE An external object identifier is a unique object identifier published by the responsible body, which may be used by external applications to reference the spatial object. The identifier is an identifier of the spatial object, not an identifier of the real-world phenomenon.<br/> @@ -284,7 +284,7 @@ - Public Identifier
  inspireId + Public DateTime
  beginLifespanVersion @@ -302,7 +302,7 @@ Stereotype: - + <<lifeCycleInfo>> Ordered: @@ -333,7 +333,7 @@ Notes: - -- Definition --<br/>External object identifier of the sampled land use data grid.<br/>-- Description --<br/>NOTE An external object identifier is a unique object identifier published by the responsible body, which may be used by external applications to reference the spatial object. The identifier is an identifier of the spatial object, not an identifier of the real-world phenomenon.<br/> + -- Definition --<br/>Date and time at which this version of the spatial object was inserted or changed in the spatial data set.<br/> @@ -342,7 +342,7 @@ - Public CharacterString
  name + Public DateTime
  endLifespanVersion @@ -360,7 +360,7 @@ Stereotype: - + <<lifeCycleInfo>> Ordered: @@ -368,7 +368,7 @@ Range: - + Range:0 to 1 Transient: @@ -391,7 +391,7 @@ Notes: - -- Definition --<br/>Human readable name of the data set.<br/> + -- Definition --<br/>Date and time at which this version of the spatial object was superseded or retired in the spatial data set.<br/> diff --git a/approved/html/EARoot/EA2/EA3/EA10/EA1/EA3/EA8794.png b/approved/html/EARoot/EA2/EA3/EA10/EA1/EA3/EA8794.png index 42caec7eb..98f74ca88 100644 Binary files a/approved/html/EARoot/EA2/EA3/EA10/EA1/EA3/EA8794.png and b/approved/html/EARoot/EA2/EA3/EA10/EA1/EA3/EA8794.png differ diff --git a/approved/html/EARoot/EA2/EA3/EA10/EA1/EA3/EA8802.htm b/approved/html/EARoot/EA2/EA3/EA10/EA1/EA3/EA8802.htm index b17e9822e..eaa44ed8b 100644 --- a/approved/html/EARoot/EA2/EA3/EA10/EA1/EA3/EA8802.htm +++ b/approved/html/EARoot/EA2/EA3/EA10/EA1/EA3/EA8802.htm @@ -108,7 +108,7 @@ - Public Integer
  percentage + Public LandUseClassificationValue
  specificValue @@ -150,14 +150,14 @@ - + obligation=implementingRule
Notes: - -- Definition --<br/>Percentage of land use object that is covered by a specific presence.<br/>-- Description --<br/>NOTE The percentage is according to the socio-economic importance of the use. In section 5.2.1.1.2. examples of the use of percentages are given.<br/><br/> + -- Definition --<br/>specific value category for this specific percentage.<br/>
@@ -166,7 +166,7 @@ - Public LandUseClassificationValue
  specificValue + Public Integer
  percentage @@ -208,14 +208,14 @@ - obligation=implementingRule
+
Notes: - -- Definition --<br/>specific value category for this specific percentage.<br/> + -- Definition --<br/>Percentage of land use object that is covered by a specific presence.<br/>-- Description --<br/>NOTE The percentage is according to the socio-economic importance of the use. In section 5.2.1.1.2. examples of the use of percentages are given.<br/><br/>
diff --git a/approved/html/EARoot/EA2/EA3/EA10/EA1/EA4/EA8805.png b/approved/html/EARoot/EA2/EA3/EA10/EA1/EA4/EA8805.png index 7f2bf0fc1..89a2aed67 100644 Binary files a/approved/html/EARoot/EA2/EA3/EA10/EA1/EA4/EA8805.png and b/approved/html/EARoot/EA2/EA3/EA10/EA1/EA4/EA8805.png differ diff --git a/approved/html/EARoot/EA2/EA3/EA10/EA1/EA4/EA8809.png b/approved/html/EARoot/EA2/EA3/EA10/EA1/EA4/EA8809.png index 94ed7990b..ffd848360 100644 Binary files a/approved/html/EARoot/EA2/EA3/EA10/EA1/EA4/EA8809.png and b/approved/html/EARoot/EA2/EA3/EA10/EA1/EA4/EA8809.png differ diff --git a/approved/html/EARoot/EA2/EA3/EA10/EA1/EA4/EA8817.htm b/approved/html/EARoot/EA2/EA3/EA10/EA1/EA4/EA8817.htm index 143408239..ca9ba57e7 100644 --- a/approved/html/EARoot/EA2/EA3/EA10/EA1/EA4/EA8817.htm +++ b/approved/html/EARoot/EA2/EA3/EA10/EA1/EA4/EA8817.htm @@ -108,7 +108,7 @@ - Public URI
  backgroudMapURI + Public DateTime
  backgroundMapDate @@ -126,7 +126,7 @@ Stereotype: - <<voidable>> + Ordered: @@ -157,7 +157,7 @@ Notes: - -- Name --<br/>background map URI<br/>-- Definition --<br/>URI referring to service that provides background map.<br/> + -- Name --<br/>background map date<br/>-- Definition --<br/>Date of the background map used.<br/> @@ -166,7 +166,7 @@ - Public DateTime
  backgroundMapDate + Public CharacterString
  backgroundMapReference @@ -215,7 +215,7 @@ Notes: - -- Name --<br/>background map date<br/>-- Definition --<br/>Date of the background map used.<br/> + -- Definition --<br/>Reference to the background map that has been used.<br/> @@ -224,7 +224,7 @@ - Public CharacterString
  backgroundMapReference + Public URI
  backgroudMapURI @@ -242,7 +242,7 @@ Stereotype: - + <<voidable>> Ordered: @@ -273,7 +273,7 @@ Notes: - -- Definition --<br/>Reference to the background map that has been used.<br/> + -- Name --<br/>background map URI<br/>-- Definition --<br/>URI referring to service that provides background map.<br/> diff --git a/approved/html/EARoot/EA2/EA3/EA10/EA1/EA4/EA8824.htm b/approved/html/EARoot/EA2/EA3/EA10/EA1/EA4/EA8824.htm index 52dd0f0f9..a199ae9fc 100644 --- a/approved/html/EARoot/EA2/EA3/EA10/EA1/EA4/EA8824.htm +++ b/approved/html/EARoot/EA2/EA3/EA10/EA1/EA4/EA8824.htm @@ -227,7 +227,7 @@ - Public DocumentCitation
  planDocument + Public CharacterString
  regulationText @@ -276,7 +276,7 @@ Notes: - -- Definition --<br/>Citation of scanned plans and structural drawings which may sometimes be geo-referenced or not,. E.g. raster images, vector drawings or scanned text.<br/> + -- Definition --<br/>Text of the regulation.<br/> @@ -285,7 +285,7 @@ - Public CharacterString
  regulationText + Public DocumentCitation
  planDocument @@ -334,7 +334,7 @@ Notes: - -- Definition --<br/>Text of the regulation.<br/> + -- Definition --<br/>Citation of scanned plans and structural drawings which may sometimes be geo-referenced or not,. E.g. raster images, vector drawings or scanned text.<br/> diff --git a/approved/html/EARoot/EA2/EA3/EA10/EA1/EA4/EA8829.htm b/approved/html/EARoot/EA2/EA3/EA10/EA1/EA4/EA8829.htm index 9acfed38e..658af2a58 100644 --- a/approved/html/EARoot/EA2/EA3/EA10/EA1/EA4/EA8829.htm +++ b/approved/html/EARoot/EA2/EA3/EA10/EA1/EA4/EA8829.htm @@ -110,7 +110,7 @@ - Public CharacterString
  alternativeTitle + Public Identifier
  inspireId @@ -128,7 +128,7 @@ Stereotype: - <<voidable>> + Ordered: @@ -159,7 +159,7 @@ Notes: - -- Definition --<br/>Alternative (unofficial) title of the spatial plan. <br/> + -- Definition --<br/>External object identifier of the spatial plan.<br/>-- Description --<br/>NOTE An external object identifier is a unique object identifier published by the responsible body, which may be used by external applications to reference the spatial object. The identifier is an identifier of the spatial object, not an identifier of the real-world phenomenon.<br/> @@ -168,7 +168,7 @@ - Public BackgroundMapValue
  backgroundMap + Public GM_MultiSurface
  extent @@ -186,7 +186,7 @@ Stereotype: - <<voidable>> + Ordered: @@ -217,7 +217,7 @@ Notes: - -- Name --<br/>background map<br/>-- Definition --<br/>Identification of the background map that has been used for constructing this Plan.<br/> + -- Definition --<br/>Geometrical union of all the instances of the spatial objects ZoningElement and SupplementaryRegulation. When a SpatialPlan is only composed of a document, the attribute extent is the border of the cartographic image that contains the land use information (i.e. the land use map extent).<br/> @@ -284,7 +284,7 @@ - Public DateTime
  endLifespanVersion + Public CharacterString
  officialTitle @@ -302,7 +302,7 @@ Stereotype: - <<lifeCycleInfo>> + Ordered: @@ -310,7 +310,7 @@ Range: - Range:0 to 1 + Transient: @@ -333,7 +333,7 @@ Notes: - -- Definition --<br/>Date and time at which this version of the spatial object was superseded or retired in the spatial data set.<br/> + -- Definition --<br/>Official title of the spatial plan.<br/> @@ -342,7 +342,7 @@ - Public GM_MultiSurface
  extent + Public LevelOfSpatialPlanValue
  levelOfSpatialPlan @@ -391,7 +391,7 @@ Notes: - -- Definition --<br/>Geometrical union of all the instances of the spatial objects ZoningElement and SupplementaryRegulation. When a SpatialPlan is only composed of a document, the attribute extent is the border of the cartographic image that contains the land use information (i.e. the land use map extent).<br/> + -- Name --<br/>level of spatial plan<br/>-- Definition --<br/>Level of the administrative units covered by the plan.<br/>-- Description --<br/>Member states should make a mapping to this enumeration.<br/> @@ -400,7 +400,7 @@ - Public Identifier
  inspireId + Public DateTime
  endLifespanVersion @@ -418,7 +418,7 @@ Stereotype: - + <<lifeCycleInfo>> Ordered: @@ -426,7 +426,7 @@ Range: - + Range:0 to 1 Transient: @@ -449,7 +449,7 @@ Notes: - -- Definition --<br/>External object identifier of the spatial plan.<br/>-- Description --<br/>NOTE An external object identifier is a unique object identifier published by the responsible body, which may be used by external applications to reference the spatial object. The identifier is an identifier of the spatial object, not an identifier of the real-world phenomenon.<br/> + -- Definition --<br/>Date and time at which this version of the spatial object was superseded or retired in the spatial data set.<br/> @@ -458,7 +458,7 @@ - Public LevelOfSpatialPlanValue
  levelOfSpatialPlan + Public Date
  validFrom @@ -476,7 +476,7 @@ Stereotype: - + <<voidable>> Ordered: @@ -484,7 +484,7 @@ Range: - + Range:0 to 1 Transient: @@ -507,7 +507,7 @@ Notes: - -- Name --<br/>level of spatial plan<br/>-- Definition --<br/>Level of the administrative units covered by the plan.<br/>-- Description --<br/>Member states should make a mapping to this enumeration.<br/> + -- Definition --<br/>First date at which this spatial plan is valid in reality.<br/> @@ -516,7 +516,7 @@ - Public CharacterString
  officialTitle + Public Date
  validTo @@ -534,7 +534,7 @@ Stereotype: - + <<voidable>> Ordered: @@ -542,7 +542,7 @@ Range: - + Range:0 to 1 Transient: @@ -565,7 +565,7 @@ Notes: - -- Definition --<br/>Official title of the spatial plan.<br/> + -- Definition --<br/>The time from which the spatial plan no longer exists in the real world.<br/> @@ -574,7 +574,7 @@ - Public OrdinanceValue
  ordinance + Public CharacterString
  alternativeTitle @@ -623,7 +623,7 @@ Notes: - -- Definition --<br/>Reference to relevant administrative ordinance.<br/>-- Description --<br/>NOTE This attribute is multiple because, independently from the current legal status of the plan, there can be references to more than one ordinance, in relation to the different steps that the planning process has already undergone (e.g. ordinance for the preparation of a new plan, ordinance of adoption, ordinance of approval, etc.).<br/> + -- Definition --<br/>Alternative (unofficial) title of the spatial plan. <br/> @@ -748,7 +748,7 @@ - Public Date
  validFrom + Public BackgroundMapValue
  backgroundMap @@ -774,7 +774,7 @@ Range: - Range:0 to 1 + Transient: @@ -797,7 +797,7 @@ Notes: - -- Definition --<br/>First date at which this spatial plan is valid in reality.<br/> + -- Name --<br/>background map<br/>-- Definition --<br/>Identification of the background map that has been used for constructing this Plan.<br/> @@ -806,7 +806,7 @@ - Public Date
  validTo + Public OrdinanceValue
  ordinance @@ -832,7 +832,7 @@ Range: - Range:0 to 1 + Transient: @@ -855,7 +855,7 @@ Notes: - -- Definition --<br/>The time from which the spatial plan no longer exists in the real world.<br/> + -- Definition --<br/>Reference to relevant administrative ordinance.<br/>-- Description --<br/>NOTE This attribute is multiple because, independently from the current legal status of the plan, there can be references to more than one ordinance, in relation to the different steps that the planning process has already undergone (e.g. ordinance for the preparation of a new plan, ordinance of adoption, ordinance of approval, etc.).<br/> diff --git a/approved/html/EARoot/EA2/EA3/EA10/EA1/EA4/EA8831.htm b/approved/html/EARoot/EA2/EA3/EA10/EA1/EA4/EA8831.htm index b3249183b..6c17831f4 100644 --- a/approved/html/EARoot/EA2/EA3/EA10/EA1/EA4/EA8831.htm +++ b/approved/html/EARoot/EA2/EA3/EA10/EA1/EA4/EA8831.htm @@ -110,7 +110,7 @@ - Public BackgroundMapValue
  backgroundMap + Public Date
  validFrom @@ -136,7 +136,7 @@ Range: - + Range:0 to 1 Transient: @@ -159,7 +159,7 @@ Notes: - -- Name --<br/>background map<br/>-- Definition --<br/>Identification of the background map that has been used for constructing the supplementary regulation.<br/> + -- Definition --<br/>First date at which this version of this supplementary regulation is valid in reality.<br/> @@ -168,7 +168,7 @@ - Public DateTime
  beginLifespanVersion + Public Date
  validTo @@ -186,7 +186,7 @@ Stereotype: - <<lifeCycleInfo>> + <<voidable>> Ordered: @@ -194,7 +194,7 @@ Range: - + Range:0 to 1 Transient: @@ -217,7 +217,7 @@ Notes: - -- Definition --<br/>Date and time at which this version of the spatial object was inserted or changed in the spatial data set.<br/><br/> + -- Definition --<br/>The time from which the supplementary regulation is no longer valid.<br/> @@ -226,7 +226,7 @@ - Public DimensioningIndicationValue
  dimensioningIndication + Public SpecificSupplementaryRegulationValue
  specificSupplementaryRegulation @@ -252,7 +252,7 @@ Range: - Range:0 to * + Transient: @@ -268,14 +268,14 @@ - + obligation=implementingRule
Notes: - -- Definition --<br/>Specifications about the dimensioning that are added to the dimensioning of the zoning elements that overlap the geometry of the supplementary regulation.<br/> + -- Definition --<br/>Reference to a category of supplementary regulation provided in a specific nomenclature of supplementary regulations provided by the data provider.<br/>
@@ -284,7 +284,7 @@ - Public DateTime
  endLifespanVersion + Public ProcessStepGeneralValue
  processStepGeneral @@ -302,7 +302,7 @@ Stereotype: - <<lifeCycleInfo>> + <<voidable>> Ordered: @@ -310,7 +310,7 @@ Range: - Range:0 to 1 + Transient: @@ -333,7 +333,7 @@ Notes: - -- Definition --<br/>Date and time at which this version of the spatial object was superseded or retired in the spatial data set.<br/><br/> + -- Definition --<br/>General indication of the step of the planning process that the supplementary regulation is undergoing.<br/>-- Description --<br/>NOTE This enumeration contains values that are common to most planning systems.<br/> @@ -342,7 +342,7 @@ - Public GM_Object
  geometry + Public BackgroundMapValue
  backgroundMap @@ -360,7 +360,7 @@ Stereotype: - + <<voidable>> Ordered: @@ -391,7 +391,7 @@ Notes: - -- Definition --<br/>Geometry of the piece of land on which the supplementary regulation applies.<br/> + -- Name --<br/>background map<br/>-- Definition --<br/>Identification of the background map that has been used for constructing the supplementary regulation.<br/> @@ -400,7 +400,7 @@ - Public Boolean
  inheritedFromOtherPlans + Public DateTime
  beginLifespanVersion @@ -418,7 +418,7 @@ Stereotype: - <<voidable>> + <<lifeCycleInfo>> Ordered: @@ -449,7 +449,7 @@ Notes: - -- Name --<br/>inherited from other plans<br/>-- Definition --<br/>Indication whether the supplementary regulation is inherited from another spatial plan.<br/> + -- Definition --<br/>Date and time at which this version of the spatial object was inserted or changed in the spatial data set.<br/><br/> @@ -458,7 +458,7 @@ - Public Identifier
  inspireId + Public DimensioningIndicationValue
  dimensioningIndication @@ -476,7 +476,7 @@ Stereotype: - + <<voidable>> Ordered: @@ -484,7 +484,7 @@ Range: - + Range:0 to * Transient: @@ -507,7 +507,7 @@ Notes: - -- Definition --<br/>External object identifier of the spatial object.<br/>-- Description --<br/>NOTE An external object identifier is a unique object identifier published by the responsible body, which may be used by external applications to reference the spatial object. The identifier is an identifier of the spatial object, not an identifier of the real-world phenomenon.<br/> + -- Definition --<br/>Specifications about the dimensioning that are added to the dimensioning of the zoning elements that overlap the geometry of the supplementary regulation.<br/> @@ -516,7 +516,7 @@ - Public CharacterString
  name + Public Identifier
  inspireId @@ -534,7 +534,7 @@ Stereotype: - <<voidable>> + Ordered: @@ -542,7 +542,7 @@ Range: - Range:0 to * + Transient: @@ -565,7 +565,7 @@ Notes: - -- Definition --<br/>Official name of the supplementary regulation<br/> + -- Definition --<br/>External object identifier of the spatial object.<br/>-- Description --<br/>NOTE An external object identifier is a unique object identifier published by the responsible body, which may be used by external applications to reference the spatial object. The identifier is an identifier of the spatial object, not an identifier of the real-world phenomenon.<br/> @@ -574,7 +574,7 @@ - Public ProcessStepGeneralValue
  processStepGeneral + Public DateTime
  endLifespanVersion @@ -592,7 +592,7 @@ Stereotype: - <<voidable>> + <<lifeCycleInfo>> Ordered: @@ -600,7 +600,7 @@ Range: - + Range:0 to 1 Transient: @@ -623,7 +623,7 @@ Notes: - -- Definition --<br/>General indication of the step of the planning process that the supplementary regulation is undergoing.<br/>-- Description --<br/>NOTE This enumeration contains values that are common to most planning systems.<br/> + -- Definition --<br/>Date and time at which this version of the spatial object was superseded or retired in the spatial data set.<br/><br/> @@ -632,7 +632,7 @@ - Public RegulationNatureValue
  regulationNature + Public GM_Object
  geometry @@ -681,7 +681,7 @@ Notes: - -- Definition --<br/>Legal nature of the land use regulation.<br/>-- Description --<br/>NOTE Indicates whether the land use regulation is legally binding or not.<br/> + -- Definition --<br/>Geometry of the piece of land on which the supplementary regulation applies.<br/> @@ -690,7 +690,7 @@ - Public CharacterString
  specificRegulationNature + Public Boolean
  inheritedFromOtherPlans @@ -739,7 +739,7 @@ Notes: - -- Name --<br/>specific regulation nature<br/>-- Definition --<br/>Legal nature of the land use regulation from a national perspective.<br/>-- Description --<br/>On member state level the legal classification for plan regulations may be complex. A supplementary regulation may be principally "bindingOnlyForAuthorities" but according to national law this regulation have to be more specified to explain the specific degree of binding. (e.g. on state or regional planning level in Germany: principles of spatial planning, other spatial planning requirements or goals of spatial planning).<br/><br/>NOTE This attribute complements the information provided by the attribute regulationNature.<br/> + -- Name --<br/>inherited from other plans<br/>-- Definition --<br/>Indication whether the supplementary regulation is inherited from another spatial plan.<br/> @@ -748,7 +748,7 @@ - Public SpecificSupplementaryRegulationValue
  specificSupplementaryRegulation + Public CharacterString
  specificRegulationNature @@ -790,14 +790,14 @@ - obligation=implementingRule
+
Notes: - -- Definition --<br/>Reference to a category of supplementary regulation provided in a specific nomenclature of supplementary regulations provided by the data provider.<br/> + -- Name --<br/>specific regulation nature<br/>-- Definition --<br/>Legal nature of the land use regulation from a national perspective.<br/>-- Description --<br/>On member state level the legal classification for plan regulations may be complex. A supplementary regulation may be principally "bindingOnlyForAuthorities" but according to national law this regulation have to be more specified to explain the specific degree of binding. (e.g. on state or regional planning level in Germany: principles of spatial planning, other spatial planning requirements or goals of spatial planning).<br/><br/>NOTE This attribute complements the information provided by the attribute regulationNature.<br/>
@@ -806,7 +806,7 @@ - Public SupplementaryRegulationValue
  supplementaryRegulation + Public CharacterString
  name @@ -824,7 +824,7 @@ Stereotype: - + <<voidable>> Ordered: @@ -832,7 +832,7 @@ Range: - + Range:0 to * Transient: @@ -855,7 +855,7 @@ Notes: - -- Definition --<br/>Code of the supplementary regulation from the hierarchical supplementary regulation code list agreed at the European level.<br/> + -- Definition --<br/>Official name of the supplementary regulation<br/> @@ -864,7 +864,7 @@ - Public Date
  validFrom + Public RegulationNatureValue
  regulationNature @@ -882,7 +882,7 @@ Stereotype: - <<voidable>> + Ordered: @@ -890,7 +890,7 @@ Range: - Range:0 to 1 + Transient: @@ -913,7 +913,7 @@ Notes: - -- Definition --<br/>First date at which this version of this supplementary regulation is valid in reality.<br/> + -- Definition --<br/>Legal nature of the land use regulation.<br/>-- Description --<br/>NOTE Indicates whether the land use regulation is legally binding or not.<br/> @@ -922,7 +922,7 @@ - Public Date
  validTo + Public SupplementaryRegulationValue
  supplementaryRegulation @@ -940,7 +940,7 @@ Stereotype: - <<voidable>> + Ordered: @@ -948,7 +948,7 @@ Range: - Range:0 to 1 + Transient: @@ -971,7 +971,7 @@ Notes: - -- Definition --<br/>The time from which the supplementary regulation is no longer valid.<br/> + -- Definition --<br/>Code of the supplementary regulation from the hierarchical supplementary regulation code list agreed at the European level.<br/> diff --git a/approved/html/EARoot/EA2/EA3/EA10/EA1/EA4/EA8833.htm b/approved/html/EARoot/EA2/EA3/EA10/EA1/EA4/EA8833.htm index 2a74e1cd5..ff62b6e77 100644 --- a/approved/html/EARoot/EA2/EA3/EA10/EA1/EA4/EA8833.htm +++ b/approved/html/EARoot/EA2/EA3/EA10/EA1/EA4/EA8833.htm @@ -109,7 +109,7 @@ - Public BackgroundMapValue
  backgroundMap + Public Identifier
  inspireId @@ -127,7 +127,7 @@ Stereotype: - <<voidable>> + Ordered: @@ -158,7 +158,7 @@ Notes: - -- Name --<br/>background map<br/>-- Definition --<br/>Identification of the background map that has been used for constructing this zoning element.<br/> + -- Definition --<br/>External object identifier of the spatial object.<br/>-- Description --<br/>An external object identifier is a unique object identifier published by the responsible body, which may be used by external applications to reference the spatial object. The identifier is an identifier of the spatial object, not an identifier of the real-world phenomenon.<br/><br/> @@ -167,7 +167,7 @@ - Public DateTime
  beginLifespanVersion + Public GM_MultiSurface
  geometry @@ -185,7 +185,7 @@ Stereotype: - <<lifeCycleInfo>> + Ordered: @@ -216,7 +216,7 @@ Notes: - -- Definition --<br/>Date and time at which this version of the spatial object was inserted or changed in the spatial data set.<br/><br/> + -- Definition --<br/>Geometry of this zoning element<br/> @@ -225,7 +225,7 @@ - Public DimensioningIndicationValue
  dimensioningIndication + Public Date
  validFrom @@ -251,7 +251,7 @@ Range: - Range:0 to * + Range:0 to 1 Transient: @@ -274,7 +274,7 @@ Notes: - -- Definition --<br/>Specifications about the dimensioning of the urban developments.<br/> + -- Definition --<br/>The date when the phenomenon started to exist in the real world.<br/> @@ -283,7 +283,7 @@ - Public DateTime
  endLifespanVersion + Public Date
  validTo @@ -301,7 +301,7 @@ Stereotype: - <<lifeCycleInfo>> + <<voidable>> Ordered: @@ -332,7 +332,7 @@ Notes: - -- Definition --<br/>Date and time at which this version of the spatial object was superseded or retired in the spatial data set.<br/><br/> + -- Definition --<br/>The time from which the phenomenon no longer exists in the real world.<br/> @@ -341,7 +341,7 @@ - Public GM_MultiSurface
  geometry + Public HILUCSValue
  hilucsLandUse @@ -383,14 +383,14 @@ - + obligation=implementingRule
Notes: - -- Definition --<br/>Geometry of this zoning element<br/> + -- Definition --<br/>Land use HILUCS class that is dominant in this land use object.<br/><br/>
@@ -399,7 +399,7 @@ - Public HILUCSValue
  hilucsLandUse + Public DateTime
  beginLifespanVersion @@ -417,7 +417,7 @@ Stereotype: - + <<lifeCycleInfo>> Ordered: @@ -441,14 +441,14 @@ - obligation=implementingRule
+
Notes: - -- Definition --<br/>Land use HILUCS class that is dominant in this land use object.<br/><br/> + -- Definition --<br/>Date and time at which this version of the spatial object was inserted or changed in the spatial data set.<br/><br/>
@@ -515,7 +515,7 @@ - Public Identifier
  inspireId + Public LandUseClassificationValue
  specificLandUse @@ -533,7 +533,7 @@ Stereotype: - + <<voidable>> Ordered: @@ -564,7 +564,7 @@ Notes: - -- Definition --<br/>External object identifier of the spatial object.<br/>-- Description --<br/>An external object identifier is a unique object identifier published by the responsible body, which may be used by external applications to reference the spatial object. The identifier is an identifier of the spatial object, not an identifier of the real-world phenomenon.<br/><br/> + -- Definition --<br/>Land Use Category according to the nomenclature specific to this data set.<br/>-- Description --<br/>Reference to an entry in the classfication that is part of the SpecificLandUseClassification.<br/> @@ -573,7 +573,7 @@ - Public ProcessStepGeneralValue
  processStepGeneral + Public SpecificPresence
  specificPresence @@ -622,7 +622,7 @@ Notes: - -- Definition --<br/>General indication of the step of the planning process that the zoning element is undergoing.<br/>-- Description --<br/>NOTE This enumeration contains values that are common to most planning systems.<br/> + -- Name --<br/>land use presence<br/>-- Definition --<br/>Actual presence of a land use category wihtin the object.<br/> @@ -689,7 +689,7 @@ - Public LandUseClassificationValue
  specificLandUse + Public DateTime
  endLifespanVersion @@ -707,7 +707,7 @@ Stereotype: - <<voidable>> + <<lifeCycleInfo>> Ordered: @@ -715,7 +715,7 @@ Range: - + Range:0 to 1 Transient: @@ -738,7 +738,7 @@ Notes: - -- Definition --<br/>Land Use Category according to the nomenclature specific to this data set.<br/>-- Description --<br/>Reference to an entry in the classfication that is part of the SpecificLandUseClassification.<br/> + -- Definition --<br/>Date and time at which this version of the spatial object was superseded or retired in the spatial data set.<br/><br/> @@ -747,7 +747,7 @@ - Public SpecificPresence
  specificPresence + Public ProcessStepGeneralValue
  processStepGeneral @@ -796,7 +796,7 @@ Notes: - -- Name --<br/>land use presence<br/>-- Definition --<br/>Actual presence of a land use category wihtin the object.<br/> + -- Definition --<br/>General indication of the step of the planning process that the zoning element is undergoing.<br/>-- Description --<br/>NOTE This enumeration contains values that are common to most planning systems.<br/> @@ -805,7 +805,7 @@ - Public Date
  validFrom + Public BackgroundMapValue
  backgroundMap @@ -831,7 +831,7 @@ Range: - Range:0 to 1 + Transient: @@ -854,7 +854,7 @@ Notes: - -- Definition --<br/>The date when the phenomenon started to exist in the real world.<br/> + -- Name --<br/>background map<br/>-- Definition --<br/>Identification of the background map that has been used for constructing this zoning element.<br/> @@ -863,7 +863,7 @@ - Public Date
  validTo + Public DimensioningIndicationValue
  dimensioningIndication @@ -889,7 +889,7 @@ Range: - Range:0 to 1 + Range:0 to * Transient: @@ -912,7 +912,7 @@ Notes: - -- Definition --<br/>The time from which the phenomenon no longer exists in the real world.<br/> + -- Definition --<br/>Specifications about the dimensioning of the urban developments.<br/> diff --git a/approved/html/EARoot/EA2/EA3/EA10/EA1/EA5/EA8835.png b/approved/html/EARoot/EA2/EA3/EA10/EA1/EA5/EA8835.png index 31f5b30ce..cbb9556b4 100644 Binary files a/approved/html/EARoot/EA2/EA3/EA10/EA1/EA5/EA8835.png and b/approved/html/EARoot/EA2/EA3/EA10/EA1/EA5/EA8835.png differ diff --git a/approved/html/EARoot/EA2/EA3/EA10/EA1/EA5/EA8837.htm b/approved/html/EARoot/EA2/EA3/EA10/EA1/EA5/EA8837.htm index e64826289..57c0c22db 100644 --- a/approved/html/EARoot/EA2/EA3/EA10/EA1/EA5/EA8837.htm +++ b/approved/html/EARoot/EA2/EA3/EA10/EA1/EA5/EA8837.htm @@ -109,7 +109,7 @@ - Public DateTime
  beginLifespanVersion + Public Identifier
  inspireId @@ -127,7 +127,7 @@ Stereotype: - <<lifeCycleInfo>> + Ordered: @@ -158,7 +158,7 @@ Notes: - -- Definition --<br/>Date and time at which this version of the spatial object was inserted or changed in the spatial data set.<br/><br/> + -- Definition --<br/>External object identifier of the land use sample.<br/>-- Description --<br/>An external object identifier is a unique object identifier published by the responsible body, which may be used by external applications to reference the spatial object. The identifier is an identifier of the spatial object, not an identifier of the real-world phenomenon.<br/> @@ -167,7 +167,7 @@ - Public DateTime
  endLifespanVersion + Public GM_Point
  location @@ -185,7 +185,7 @@ Stereotype: - <<lifeCycleInfo>> + Ordered: @@ -193,7 +193,7 @@ Range: - Range:0 to 1 + Transient: @@ -216,7 +216,7 @@ Notes: - -- Definition --<br/>Date and time at which this version of the spatial object was superseded or retired in the spatial data set.<br/><br/> + -- Definition --<br/>Location where the land use sample is taken.<br/> @@ -225,7 +225,7 @@ - Public HILUCSValue
  hilucsLandUse + Public DateTime
  beginLifespanVersion @@ -243,7 +243,7 @@ Stereotype: - + <<lifeCycleInfo>> Ordered: @@ -274,7 +274,7 @@ Notes: - -- Definition --<br/>Land use HILUCS classes that are present in this existing land use sample.<br/>-- Description --<br/>NOTE The Sampled Existing Land Use model enables the provision of information on land uses inside one land use object. The ExistingLandUseObject may be associated with 1 to many HILUCSLandUse that represents the Land Uses for the polygon from the economical point of view. It makes possible the assignment of more than one HILUCSLandUse existences when they cannot be managed by HILUCSPresences.<br/> + -- Definition --<br/>Date and time at which this version of the spatial object was inserted or changed in the spatial data set.<br/><br/> @@ -283,7 +283,7 @@ - Public HILUCSPresence
  hilucsPresence + Public HILUCSValue
  hilucsLandUse @@ -301,7 +301,7 @@ Stereotype: - <<voidable>> + Ordered: @@ -332,7 +332,7 @@ Notes: - -- Name --<br/>land use presence<br/>-- Definition --<br/>Actual presence of a land use category according to HILUCS within the object.<br/> + -- Definition --<br/>Land use HILUCS classes that are present in this existing land use sample.<br/>-- Description --<br/>NOTE The Sampled Existing Land Use model enables the provision of information on land uses inside one land use object. The ExistingLandUseObject may be associated with 1 to many HILUCSLandUse that represents the Land Uses for the polygon from the economical point of view. It makes possible the assignment of more than one HILUCSLandUse existences when they cannot be managed by HILUCSPresences.<br/> @@ -341,7 +341,7 @@ - Public Identifier
  inspireId + Public HILUCSPresence
  hilucsPresence @@ -359,7 +359,7 @@ Stereotype: - + <<voidable>> Ordered: @@ -390,7 +390,7 @@ Notes: - -- Definition --<br/>External object identifier of the land use sample.<br/>-- Description --<br/>An external object identifier is a unique object identifier published by the responsible body, which may be used by external applications to reference the spatial object. The identifier is an identifier of the spatial object, not an identifier of the real-world phenomenon.<br/> + -- Name --<br/>land use presence<br/>-- Definition --<br/>Actual presence of a land use category according to HILUCS within the object.<br/> @@ -399,7 +399,7 @@ - Public GM_Point
  location + Public LandUseClassificationValue
  specificLandUse @@ -417,7 +417,7 @@ Stereotype: - + <<voidable>> Ordered: @@ -448,7 +448,7 @@ Notes: - -- Definition --<br/>Location where the land use sample is taken.<br/> + -- Definition --<br/>Land Use Category according to the nomenclature specific to this data set.<br/>-- Description --<br/>Reference to an entry in the classfication that is part of the SpecificLandUseClassification provided by the data producer.<br/> @@ -515,7 +515,7 @@ - Public LandUseClassificationValue
  specificLandUse + Public SpecificPresence
  specificPresence @@ -564,7 +564,7 @@ Notes: - -- Definition --<br/>Land Use Category according to the nomenclature specific to this data set.<br/>-- Description --<br/>Reference to an entry in the classfication that is part of the SpecificLandUseClassification provided by the data producer.<br/> + -- Definition --<br/>Actual presence of a land use category within the object.<br/> @@ -573,7 +573,7 @@ - Public SpecificPresence
  specificPresence + Public DateTime
  endLifespanVersion @@ -591,7 +591,7 @@ Stereotype: - <<voidable>> + <<lifeCycleInfo>> Ordered: @@ -599,7 +599,7 @@ Range: - + Range:0 to 1 Transient: @@ -622,7 +622,7 @@ Notes: - -- Definition --<br/>Actual presence of a land use category within the object.<br/> + -- Definition --<br/>Date and time at which this version of the spatial object was superseded or retired in the spatial data set.<br/><br/> diff --git a/approved/html/EARoot/EA2/EA3/EA10/EA1/EA5/EA8838.htm b/approved/html/EARoot/EA2/EA3/EA10/EA1/EA5/EA8838.htm index 83bfdeef2..938eb257d 100644 --- a/approved/html/EARoot/EA2/EA3/EA10/EA1/EA5/EA8838.htm +++ b/approved/html/EARoot/EA2/EA3/EA10/EA1/EA5/EA8838.htm @@ -109,7 +109,7 @@ - Public DateTime
  beginLifespanVersion + Public Identifier
  inspireId @@ -127,7 +127,7 @@ Stereotype: - <<lifeCycleInfo>> + Ordered: @@ -158,7 +158,7 @@ Notes: - -- Definition --<br/>Date and time at which this version of the spatial object was inserted or changed in the spatial data set.<br/> + -- Definition --<br/>External object identifier of the sampled land use data set.<br/>-- Description --<br/>NOTE An external object identifier is a unique object identifier published by the responsible body, which may be used by external applications to reference the spatial object. The identifier is an identifier of the spatial object, not an identifier of the real-world phenomenon.<br/> @@ -167,7 +167,7 @@ - Public DateTime
  endLifespanVersion + Public GM_MultiSurface
  extent @@ -185,7 +185,7 @@ Stereotype: - <<lifeCycleInfo>> + Ordered: @@ -193,7 +193,7 @@ Range: - Range:0 to 1 + Transient: @@ -216,7 +216,7 @@ Notes: - -- Definition --<br/>Date and time at which this version of the spatial object was superseded or retired in the spatial data set.<br/> + -- Definition --<br/>The convex hull of all the instances of the spatial object type ExistingLandUseSample.<br/> @@ -225,7 +225,7 @@ - Public GM_MultiSurface
  extent + Public CharacterString
  name @@ -274,7 +274,7 @@ Notes: - -- Definition --<br/>The convex hull of all the instances of the spatial object type ExistingLandUseSample.<br/> + -- Definition --<br/>Human readable name of the data set.<br/> @@ -283,7 +283,7 @@ - Public Identifier
  inspireId + Public DateTime
  beginLifespanVersion @@ -301,7 +301,7 @@ Stereotype: - + <<lifeCycleInfo>> Ordered: @@ -332,7 +332,7 @@ Notes: - -- Definition --<br/>External object identifier of the sampled land use data set.<br/>-- Description --<br/>NOTE An external object identifier is a unique object identifier published by the responsible body, which may be used by external applications to reference the spatial object. The identifier is an identifier of the spatial object, not an identifier of the real-world phenomenon.<br/> + -- Definition --<br/>Date and time at which this version of the spatial object was inserted or changed in the spatial data set.<br/> @@ -341,7 +341,7 @@ - Public CharacterString
  name + Public DateTime
  endLifespanVersion @@ -359,7 +359,7 @@ Stereotype: - + <<lifeCycleInfo>> Ordered: @@ -367,7 +367,7 @@ Range: - + Range:0 to 1 Transient: @@ -390,7 +390,7 @@ Notes: - -- Definition --<br/>Human readable name of the data set.<br/> + -- Definition --<br/>Date and time at which this version of the spatial object was superseded or retired in the spatial data set.<br/> diff --git a/approved/html/EARoot/EA2/EA3/EA11/EA1/EA8877.png b/approved/html/EARoot/EA2/EA3/EA11/EA1/EA8877.png index f7d6927d8..c70b3759b 100644 Binary files a/approved/html/EARoot/EA2/EA3/EA11/EA1/EA8877.png and b/approved/html/EARoot/EA2/EA3/EA11/EA1/EA8877.png differ diff --git a/approved/html/EARoot/EA2/EA3/EA11/EA1/EA8879.png b/approved/html/EARoot/EA2/EA3/EA11/EA1/EA8879.png index 05511d1b9..c477ee318 100644 Binary files a/approved/html/EARoot/EA2/EA3/EA11/EA1/EA8879.png and b/approved/html/EARoot/EA2/EA3/EA11/EA1/EA8879.png differ diff --git a/approved/html/EARoot/EA2/EA3/EA11/EA1/EA8881.png b/approved/html/EARoot/EA2/EA3/EA11/EA1/EA8881.png index 20938a6cb..1e533ca67 100644 Binary files a/approved/html/EARoot/EA2/EA3/EA11/EA1/EA8881.png and b/approved/html/EARoot/EA2/EA3/EA11/EA1/EA8881.png differ diff --git a/approved/html/EARoot/EA2/EA3/EA11/EA1/EA8883.png b/approved/html/EARoot/EA2/EA3/EA11/EA1/EA8883.png index 85ff52453..90571ea2c 100644 Binary files a/approved/html/EARoot/EA2/EA3/EA11/EA1/EA8883.png and b/approved/html/EARoot/EA2/EA3/EA11/EA1/EA8883.png differ diff --git a/approved/html/EARoot/EA2/EA3/EA11/EA1/EA8886.htm b/approved/html/EARoot/EA2/EA3/EA11/EA1/EA8886.htm index a764fec88..2b7f1cd43 100644 --- a/approved/html/EARoot/EA2/EA3/EA11/EA1/EA8886.htm +++ b/approved/html/EARoot/EA2/EA3/EA11/EA1/EA8886.htm @@ -110,7 +110,7 @@ - Public CommodityCodeValue
  commodity + Public ImportanceValue
  commodityImportance @@ -128,7 +128,7 @@ Stereotype: - + <<voidable>> Ordered: @@ -152,14 +152,14 @@ - inlineOrByReference=byReference
obligation=implementingRule
sequenceNumber=3
+ obligation=implementingRule
sequenceNumber=4
Notes: - -- Definition --<br/>The earth resource commodity.<br/><br/>-- Description --<br/>EXAMPLE: Cu, Au, Dimension Stone etc.<br/><br/> + -- Definition --<br/>The importance of the deposit for the commodity.<br/><br/>-- Description --<br/>Several commodities may be of interest inside a deposit. A deposit may be a very large deposit for one commodity (this commodity is the main one) and only a medium-sized deposit for some other commodities. Such a ranking is based on a statistical study of a large set of deposits throughout the world to ensure that it is valid. It is made using histograms allowing for each commodity to define class boundaries and what is a super large, a large, a medium-sized etc deposit for this commodity. This classification is based on the potential or endowment: reserves + resources.<br/><br/>
@@ -168,7 +168,7 @@ - Public ImportanceValue
  commodityImportance + Public CommodityCodeValue
  commodity @@ -186,7 +186,7 @@ Stereotype: - <<voidable>> + Ordered: @@ -210,14 +210,14 @@ - obligation=implementingRule
sequenceNumber=4
+ inlineOrByReference=byReference
obligation=implementingRule
sequenceNumber=3
Notes: - -- Definition --<br/>The importance of the deposit for the commodity.<br/><br/>-- Description --<br/>Several commodities may be of interest inside a deposit. A deposit may be a very large deposit for one commodity (this commodity is the main one) and only a medium-sized deposit for some other commodities. Such a ranking is based on a statistical study of a large set of deposits throughout the world to ensure that it is valid. It is made using histograms allowing for each commodity to define class boundaries and what is a super large, a large, a medium-sized etc deposit for this commodity. This classification is based on the potential or endowment: reserves + resources.<br/><br/> + -- Definition --<br/>The earth resource commodity.<br/><br/>-- Description --<br/>EXAMPLE: Cu, Au, Dimension Stone etc.<br/><br/>
diff --git a/approved/html/EARoot/EA2/EA3/EA11/EA1/EA8889.htm b/approved/html/EARoot/EA2/EA3/EA11/EA1/EA8889.htm index 6c9392863..b64e02a53 100644 --- a/approved/html/EARoot/EA2/EA3/EA11/EA1/EA8889.htm +++ b/approved/html/EARoot/EA2/EA3/EA11/EA1/EA8889.htm @@ -111,7 +111,7 @@ - Public DateTime
  beginLifespanVersion + Public EarthResourceDimension
  dimension @@ -153,14 +153,14 @@ - + sequenceNumber=3
Notes: - -- Definition --<br/>Date and time at which this version of the spatial object was inserted or changed in the spatial data set.<br/><br/> + -- Definition --<br/>The size/volume of the earth resource.<br/><br/>
@@ -169,7 +169,7 @@ - Public EarthResourceDimension
  dimension + Public Category
  expression @@ -211,14 +211,14 @@ - sequenceNumber=3
+ sequenceNumber=4
Notes: - -- Definition --<br/>The size/volume of the earth resource.<br/><br/> + -- Definition --<br/>An indicator of whether an EarthResource appears on the surface or has been detected under cover rocks. <br/><br/>
@@ -227,7 +227,7 @@ - Public DateTime
  endLifespanversion + Public Category
  form @@ -253,7 +253,7 @@ Range: - Range:0 to 1 + Transient: @@ -269,14 +269,14 @@ - + sequenceNumber=5
Notes: - -- Definition --<br/>Date and time at which this version of the spatial object was superseded or retired in the spatial data set.<br/><br/> + -- Definition --<br/>The orebody's typical physical and structural relationship to wallrocks and associated rocks.<br/><br/>-- Description --<br/>EXAMPLE: stratiform, stratabound, cross-cutting, vein, intrusive contact etc.<br/><br/>
@@ -285,7 +285,7 @@ - Public Category
  expression + Public CGI_LinearOrientation
  linearOrientation @@ -327,14 +327,14 @@ - sequenceNumber=4
+ sequenceNumber=6
Notes: - -- Definition --<br/>An indicator of whether an EarthResource appears on the surface or has been detected under cover rocks. <br/><br/> + -- Definition --<br/>The linear orientation of the Earth Resource.<br/><br/>-- Description --<br/>EXAMPLE: Plunge etc.<br/><br/>
@@ -343,7 +343,7 @@ - Public Category
  form + Public CGI_PlanarOrientation
  planarOrientation @@ -385,14 +385,14 @@ - sequenceNumber=5
+ sequenceNumber=7
Notes: - -- Definition --<br/>The orebody's typical physical and structural relationship to wallrocks and associated rocks.<br/><br/>-- Description --<br/>EXAMPLE: stratiform, stratabound, cross-cutting, vein, intrusive contact etc.<br/><br/> + -- Definition --<br/>The planar orientation of the Earth Resource.<br/><br/>-- Description --<br/>EXAMPLE: Dip/Dip Direction etc.<br/><br/>
@@ -401,7 +401,7 @@ - Public CGI_LinearOrientation
  linearOrientation + Public Category
  shape @@ -443,14 +443,14 @@ - sequenceNumber=6
+ sequenceNumber=8
Notes: - -- Definition --<br/>The linear orientation of the Earth Resource.<br/><br/>-- Description --<br/>EXAMPLE: Plunge etc.<br/><br/> + -- Definition --<br/>The typical geometrical shape of the Earth Resource.<br/><br/>-- Description --<br/>EXAMPLE: lenticular, pipelike, irregular etc.<br/><br/>
@@ -459,7 +459,7 @@ - Public CGI_PlanarOrientation
  planarOrientation + Public DocumentCitation
  sourceReference @@ -501,14 +501,14 @@ - sequenceNumber=7
+ inlineOrByReference=byReference
sequenceNumber=2
Notes: - -- Definition --<br/>The planar orientation of the Earth Resource.<br/><br/>-- Description --<br/>EXAMPLE: Dip/Dip Direction etc.<br/><br/> + -- Definition --<br/>The source or reference for the Earth Resource. <br/><br/>
@@ -517,7 +517,7 @@ - Public Category
  shape + Public DateTime
  beginLifespanVersion @@ -559,14 +559,14 @@ - sequenceNumber=8
+
Notes: - -- Definition --<br/>The typical geometrical shape of the Earth Resource.<br/><br/>-- Description --<br/>EXAMPLE: lenticular, pipelike, irregular etc.<br/><br/> + -- Definition --<br/>Date and time at which this version of the spatial object was inserted or changed in the spatial data set.<br/><br/>
@@ -575,7 +575,7 @@ - Public DocumentCitation
  sourceReference + Public DateTime
  endLifespanversion @@ -601,7 +601,7 @@ Range: - + Range:0 to 1 Transient: @@ -617,14 +617,14 @@ - inlineOrByReference=byReference
sequenceNumber=2
+
Notes: - -- Definition --<br/>The source or reference for the Earth Resource. <br/><br/> + -- Definition --<br/>Date and time at which this version of the spatial object was superseded or retired in the spatial data set.<br/><br/>
diff --git a/approved/html/EARoot/EA2/EA3/EA11/EA1/EA8897.htm b/approved/html/EARoot/EA2/EA3/EA11/EA1/EA8897.htm index 40e3dc24d..13b53bf2f 100644 --- a/approved/html/EARoot/EA2/EA3/EA11/EA1/EA8897.htm +++ b/approved/html/EARoot/EA2/EA3/EA11/EA1/EA8897.htm @@ -111,7 +111,7 @@ - Public DateTime
  beginLifespanVersion + Public MineName
  mineName @@ -129,7 +129,7 @@ Stereotype: - <<voidable>> + Ordered: @@ -153,14 +153,14 @@ - + sequenceNumber=4
Notes: - -- Definition --<br/>Date and time at which this version of the spatial object was inserted or changed in the spatial data set.<br/><br/> + -- Definition --<br/>Data type indicating the Mine Name and whether it is the preferred name.<br/><br/>
@@ -169,7 +169,7 @@ - Public TM_Instant
  endDate + Public MineStatusValue
  status @@ -187,7 +187,7 @@ Stereotype: - <<voidable>> + Ordered: @@ -195,7 +195,7 @@ Range: - Range:0 to 1 + Transient: @@ -211,14 +211,14 @@ - + obligation=implementingRule
sequenceNumber=6
Notes: - -- Definition --<br/>Date on which the mine ceased operation.<br/><br/><br/> + -- Definition --<br/>Operational status value of the mine.<br/><br/>-- Description --<br/>EXAMPLE: Care & Maintenance; Pending Approval; Operating continually.<br/><br/>
@@ -227,7 +227,7 @@ - Public DateTime
  endLifespanVersion + Public DocumentCitation
  sourceReference @@ -253,7 +253,7 @@ Range: - Range:0 to 1 + Range:0 to * Transient: @@ -269,14 +269,14 @@ - + inlineOrByReference=byReference
sequenceNumber=5
Notes: - -- Definition --<br/>Date and time at which this version of the spatial object was superseded or retired in the spatial data set.<br/><br/> + -- Definition --<br/>The source reference for the mine.<br/><br/>-- Description --<br/>Allows citing mine plans etc.<br/><br/>
@@ -285,7 +285,7 @@ - Public MineName
  mineName + Public TM_Instant
  startDate @@ -303,7 +303,7 @@ Stereotype: - + <<voidable>> Ordered: @@ -327,14 +327,14 @@ - sequenceNumber=4
+ sequenceNumber=2
Notes: - -- Definition --<br/>Data type indicating the Mine Name and whether it is the preferred name.<br/><br/> + -- Definition --<br/>Date on which the mine commenced operation.<br/><br/>
@@ -343,7 +343,7 @@ - Public DocumentCitation
  sourceReference + Public TM_Instant
  endDate @@ -369,7 +369,7 @@ Range: - Range:0 to * + Range:0 to 1 Transient: @@ -385,14 +385,14 @@ - inlineOrByReference=byReference
sequenceNumber=5
+
Notes: - -- Definition --<br/>The source reference for the mine.<br/><br/>-- Description --<br/>Allows citing mine plans etc.<br/><br/> + -- Definition --<br/>Date on which the mine ceased operation.<br/><br/><br/>
@@ -401,7 +401,7 @@ - Public TM_Instant
  startDate + Public DateTime
  beginLifespanVersion @@ -443,14 +443,14 @@ - sequenceNumber=2
+
Notes: - -- Definition --<br/>Date on which the mine commenced operation.<br/><br/> + -- Definition --<br/>Date and time at which this version of the spatial object was inserted or changed in the spatial data set.<br/><br/>
@@ -459,7 +459,7 @@ - Public MineStatusValue
  status + Public DateTime
  endLifespanVersion @@ -477,7 +477,7 @@ Stereotype: - + <<voidable>> Ordered: @@ -485,7 +485,7 @@ Range: - + Range:0 to 1 Transient: @@ -501,14 +501,14 @@ - obligation=implementingRule
sequenceNumber=6
+
Notes: - -- Definition --<br/>Operational status value of the mine.<br/><br/>-- Description --<br/>EXAMPLE: Care & Maintenance; Pending Approval; Operating continually.<br/><br/> + -- Definition --<br/>Date and time at which this version of the spatial object was superseded or retired in the spatial data set.<br/><br/>
diff --git a/approved/html/EARoot/EA2/EA3/EA11/EA1/EA8902.htm b/approved/html/EARoot/EA2/EA3/EA11/EA1/EA8902.htm index b31309c0c..b0f4a3dc1 100644 --- a/approved/html/EARoot/EA2/EA3/EA11/EA1/EA8902.htm +++ b/approved/html/EARoot/EA2/EA3/EA11/EA1/EA8902.htm @@ -109,7 +109,7 @@ - Public EndusePotentialValue
  endusePotential + Public MineralOccurrenceTypeValue
  type @@ -127,7 +127,7 @@ Stereotype: - <<voidable>> + Ordered: @@ -151,14 +151,14 @@ - obligation=implementingRule
+ obligation=implementingRule
sequenceNumber=2
Notes: - -- Definition --<br/>The end-use potential of the mineral.<br/><br/>-- Description --<br/>EXAMPLE: for energy, fertilizer, building raw material.<br/><br/> + -- Definition --<br/>The type of mineral occurrence. <br/><br/>-- Description --<br/>EXAMPLE: prospect, occurrence, mineral deposit, ore deposit.<br/><br/>
@@ -167,7 +167,7 @@ - Public MineralOccurrenceTypeValue
  type + Public EndusePotentialValue
  endusePotential @@ -185,7 +185,7 @@ Stereotype: - + <<voidable>> Ordered: @@ -209,14 +209,14 @@ - obligation=implementingRule
sequenceNumber=2
+ obligation=implementingRule
Notes: - -- Definition --<br/>The type of mineral occurrence. <br/><br/>-- Description --<br/>EXAMPLE: prospect, occurrence, mineral deposit, ore deposit.<br/><br/> + -- Definition --<br/>The end-use potential of the mineral.<br/><br/>-- Description --<br/>EXAMPLE: for energy, fertilizer, building raw material.<br/><br/>
diff --git a/approved/html/EARoot/EA2/EA3/EA12/EA1/EA8922.png b/approved/html/EARoot/EA2/EA3/EA12/EA1/EA8922.png index c50c8ab2e..b8f5c57d2 100644 Binary files a/approved/html/EARoot/EA2/EA3/EA12/EA1/EA8922.png and b/approved/html/EARoot/EA2/EA3/EA12/EA1/EA8922.png differ diff --git a/approved/html/EARoot/EA2/EA3/EA12/EA1/EA8932.htm b/approved/html/EARoot/EA2/EA3/EA12/EA1/EA8932.htm index 5c9e5e828..44f94e0e5 100644 --- a/approved/html/EARoot/EA2/EA3/EA12/EA1/EA8932.htm +++ b/approved/html/EARoot/EA2/EA3/EA12/EA1/EA8932.htm @@ -111,7 +111,7 @@ - Public DateTime
  beginLifeSpanVersion + Public Identifier
  inspireId @@ -129,7 +129,7 @@ Stereotype: - <<voidable>> + Ordered: @@ -160,7 +160,7 @@ Notes: - -- Definition --<br/>Date and time at which this version of the spatial object was inserted or changed in the spatial data set.<br/><br/> + -- Definition --<br/>External object identifier of the exposed element.<br/><br/> @@ -169,7 +169,7 @@ - Public DateTime
  endLifeSpanVersion + Public DateTime
  beginLifeSpanVersion @@ -195,7 +195,7 @@ Range: - Range:0 to 1 + Transient: @@ -218,7 +218,7 @@ Notes: - -- Definition --<br/>Date and time at which this version of the spatial object was superseded or retired in the spatial data set.<br/><br/> + -- Definition --<br/>Date and time at which this version of the spatial object was inserted or changed in the spatial data set.<br/><br/> @@ -227,7 +227,7 @@ - Public Identifier
  inspireId + Public DateTime
  endLifeSpanVersion @@ -245,7 +245,7 @@ Stereotype: - + <<voidable>> Ordered: @@ -253,7 +253,7 @@ Range: - + Range:0 to 1 Transient: @@ -276,7 +276,7 @@ Notes: - -- Definition --<br/>External object identifier of the exposed element.<br/><br/> + -- Definition --<br/>Date and time at which this version of the spatial object was superseded or retired in the spatial data set.<br/><br/> diff --git a/approved/html/EARoot/EA2/EA3/EA12/EA1/EA8945.htm b/approved/html/EARoot/EA2/EA3/EA12/EA1/EA8945.htm index d7c141ac5..1350f3bde 100644 --- a/approved/html/EARoot/EA2/EA3/EA12/EA1/EA8945.htm +++ b/approved/html/EARoot/EA2/EA3/EA12/EA1/EA8945.htm @@ -109,7 +109,7 @@ - Public VulnerabilityAssessment
  assessmentOfVulnerability + Public GM_Object
  geometry @@ -127,7 +127,7 @@ Stereotype: - <<voidable>> + Ordered: @@ -135,7 +135,7 @@ Range: - + Range:0 to 1 Transient: @@ -158,7 +158,7 @@ Notes: - -- Definition --<br/>Assessment of the vulnerability of the exposed element.<br/><br/> + -- Definition --<br/>Geometric representation of the exposed element.<br/><br/>-- Description --<br/>If the feature is linked to a spatially referenced INSPIRE feature, then it has no geometry. If not, then it has a geometry.<br/><br/> @@ -167,7 +167,7 @@ - Public GM_Object
  geometry + Public VulnerabilityAssessment
  assessmentOfVulnerability @@ -185,7 +185,7 @@ Stereotype: - + <<voidable>> Ordered: @@ -193,7 +193,7 @@ Range: - Range:0 to 1 + Transient: @@ -216,7 +216,7 @@ Notes: - -- Definition --<br/>Geometric representation of the exposed element.<br/><br/>-- Description --<br/>If the feature is linked to a spatially referenced INSPIRE feature, then it has no geometry. If not, then it has a geometry.<br/><br/> + -- Definition --<br/>Assessment of the vulnerability of the exposed element.<br/><br/> diff --git a/approved/html/EARoot/EA2/EA3/EA12/EA1/EA8946.htm b/approved/html/EARoot/EA2/EA3/EA12/EA1/EA8946.htm index 2a326d160..9cf40ed94 100644 --- a/approved/html/EARoot/EA2/EA3/EA12/EA1/EA8946.htm +++ b/approved/html/EARoot/EA2/EA3/EA12/EA1/EA8946.htm @@ -108,7 +108,7 @@ - Public LevelOrIntensity
  levelOfVulnerability + Public NaturalHazardClassification
  sourceOfVulnerability @@ -126,7 +126,7 @@ Stereotype: - <<voidable>> + Ordered: @@ -157,7 +157,7 @@ Notes: - -- Definition --<br/>Level of vulnerability.<br/><br/>-- Description --<br/>When assessed quantitatively, it is a percentage.<br/><br/> + -- Definition --<br/>The type of hazard for which the vulnerability is assessed.<br/><br/> @@ -166,7 +166,7 @@ - Public LevelOrIntensity
  magnitudeOrIntensityOfHazard + Public LevelOrIntensity
  levelOfVulnerability @@ -215,7 +215,7 @@ Notes: - -- Definition --<br/>An expression of the magnitude or the intensity of a phenomenon.<br/><br/>-- Description --<br/>It may address a value within the Richter scale, or a description of the european macro-seismic scale, or a flood flow, etc...<br/><br/> + -- Definition --<br/>Level of vulnerability.<br/><br/>-- Description --<br/>When assessed quantitatively, it is a percentage.<br/><br/> @@ -224,7 +224,7 @@ - Public NaturalHazardClassification
  sourceOfVulnerability + Public LevelOrIntensity
  magnitudeOrIntensityOfHazard @@ -242,7 +242,7 @@ Stereotype: - + <<voidable>> Ordered: @@ -273,7 +273,7 @@ Notes: - -- Definition --<br/>The type of hazard for which the vulnerability is assessed.<br/><br/> + -- Definition --<br/>An expression of the magnitude or the intensity of a phenomenon.<br/><br/>-- Description --<br/>It may address a value within the Richter scale, or a description of the european macro-seismic scale, or a flood flow, etc...<br/><br/> diff --git a/approved/html/EARoot/EA2/EA3/EA12/EA1/EA8949.htm b/approved/html/EARoot/EA2/EA3/EA12/EA1/EA8949.htm index f61c25347..bbbdc2a8a 100644 --- a/approved/html/EARoot/EA2/EA3/EA12/EA1/EA8949.htm +++ b/approved/html/EARoot/EA2/EA3/EA12/EA1/EA8949.htm @@ -109,7 +109,7 @@ - Public DocumentCitation
  assessmentMethod + Public CharacterString
  qualitativeValue @@ -158,7 +158,7 @@ Notes: - -- Definition --<br/>A citation to the method used to express the level or intensity.<br/><br/> + -- Definition --<br/>A qualitative assessment of the level or intensity.<br/><br/> @@ -167,7 +167,7 @@ - Public CharacterString
  qualitativeValue + Public Measure
  quantitativeValue @@ -216,7 +216,7 @@ Notes: - -- Definition --<br/>A qualitative assessment of the level or intensity.<br/><br/> + -- Definition --<br/>A quantitative assessment of the level or intensity.<br/><br/> @@ -225,7 +225,7 @@ - Public Measure
  quantitativeValue + Public DocumentCitation
  assessmentMethod @@ -274,7 +274,7 @@ Notes: - -- Definition --<br/>A quantitative assessment of the level or intensity.<br/><br/> + -- Definition --<br/>A citation to the method used to express the level or intensity.<br/><br/> diff --git a/approved/html/EARoot/EA2/EA3/EA12/EA1/EA8950.htm b/approved/html/EARoot/EA2/EA3/EA12/EA1/EA8950.htm index 24543cf01..a8b977884 100644 --- a/approved/html/EARoot/EA2/EA3/EA12/EA1/EA8950.htm +++ b/approved/html/EARoot/EA2/EA3/EA12/EA1/EA8950.htm @@ -109,7 +109,7 @@ - Public DocumentCitation
  assessmentMethod + Public CharacterString
  qualitativeLikelihood @@ -158,7 +158,7 @@ Notes: - -- Definition --<br/>A citation to the method used to express the likelihood.<br/><br/> + -- Definition --<br/>A qualitative assessment of the likelihood of occurrence of a hazard. <br/><br/>-- Description --<br/>Sometimes, this is known as susceptibility.<br/><br/> @@ -167,7 +167,7 @@ - Public CharacterString
  qualitativeLikelihood + Public QuantitativeLikelihood
  quantitativeLikelihood @@ -216,7 +216,7 @@ Notes: - -- Definition --<br/>A qualitative assessment of the likelihood of occurrence of a hazard. <br/><br/>-- Description --<br/>Sometimes, this is known as susceptibility.<br/><br/> + -- Definition --<br/>A frequency of occurence or return period of a hazard phenomenon. <br/><br/>-- Description --<br/>Sometimes, this is known as susceptibility.<br/><br/> @@ -225,7 +225,7 @@ - Public QuantitativeLikelihood
  quantitativeLikelihood + Public DocumentCitation
  assessmentMethod @@ -274,7 +274,7 @@ Notes: - -- Definition --<br/>A frequency of occurence or return period of a hazard phenomenon. <br/><br/>-- Description --<br/>Sometimes, this is known as susceptibility.<br/><br/> + -- Definition --<br/>A citation to the method used to express the likelihood.<br/><br/> diff --git a/approved/html/EARoot/EA2/EA3/EA14/EA1/EA8976.png b/approved/html/EARoot/EA2/EA3/EA14/EA1/EA8976.png index 9d1ed73c9..fcc39a4dd 100644 Binary files a/approved/html/EARoot/EA2/EA3/EA14/EA1/EA8976.png and b/approved/html/EARoot/EA2/EA3/EA14/EA1/EA8976.png differ diff --git a/approved/html/EARoot/EA2/EA3/EA14/EA1/EA9005.htm b/approved/html/EARoot/EA2/EA3/EA14/EA1/EA9005.htm index cc06272fe..415d47d79 100644 --- a/approved/html/EARoot/EA2/EA3/EA14/EA1/EA9005.htm +++ b/approved/html/EARoot/EA2/EA3/EA14/EA1/EA9005.htm @@ -111,7 +111,7 @@ - Public GM_Surface
  areaOfDissemination + Public Identifier
  inspireId @@ -137,7 +137,7 @@ Range: - + Range:0 to 1 Transient: @@ -160,7 +160,7 @@ Notes: - -- Name --<br/>Area of dissemination<br/><br/>-- Definition --<br/>The part of the 2D world the StatisticalDataDistribution describes.<br/><br/> + -- Name --<br/>INSPIRE identifier<br/><br/>-- Definition --<br/>External object identifier of the spatial object.<br/><br/>-- Description --<br/>An external object identifier is a unique object identifier published by the responsible body, which may be used by external applications to reference the spatial object. The identifier is an identifier of the spatial object, not an identifier of the real-world phenomenon.<br/><br/><br/> @@ -169,7 +169,7 @@ - Public DateTime
  beginLifeSpanVersion + Public GM_Surface
  areaOfDissemination @@ -187,7 +187,7 @@ Stereotype: - <<voidable>> + Ordered: @@ -218,7 +218,7 @@ Notes: - -- Name --<br/>Begin life span version<br/><br/>-- Definition --<br/>Date and time at which this version of the spatial object was inserted or changed in the spatial data set.<br/><br/> + -- Name --<br/>Area of dissemination<br/><br/>-- Definition --<br/>The part of the 2D world the StatisticalDataDistribution describes.<br/><br/> @@ -227,7 +227,7 @@ - Public PT_FreeText
  domain + Public PT_FreeText
  universe @@ -253,7 +253,7 @@ Range: - + Range:0 to 1 Transient: @@ -276,7 +276,7 @@ Notes: - -- Name --<br/>Domain<br/><br/>-- Definition --<br/>The part of statistical knowledge the data refers to.<br/><br/>-- Description --<br/>EXAMPLES: Demography, activity, etc.<br/><br/> + -- Name --<br/>Universe<br/><br/>-- Definition --<br/>When distribution is related to a subset of the population and not the population in its whole, the literal description of the way this subset was defined.<br/><br/>EXAMPLE : A dataset can give the population distribution of the unemployed persons under 25. The variable will be “unemployedPopulation”, the measure a “count “ and the measurementUnit “person”. The only way to express that the distribution doesn’t cover the whole unemployed population would be to describe that situation in the Unviverse attribute.<br/><br/> @@ -285,7 +285,7 @@ - Public DateTime
  endLifeSpanVersion + Public PT_FreeText
  domain @@ -303,7 +303,7 @@ Stereotype: - <<voidable>> + Ordered: @@ -311,7 +311,7 @@ Range: - Range:0 to 1 + Transient: @@ -334,7 +334,7 @@ Notes: - -- Name --<br/>End life span version<br/><br/>-- Definition --<br/>Date and time at which this version of the spatial object was superseded or retired in the spatial data set.<br/><br/> + -- Name --<br/>Domain<br/><br/>-- Definition --<br/>The part of statistical knowledge the data refers to.<br/><br/>-- Description --<br/>EXAMPLES: Demography, activity, etc.<br/><br/> @@ -343,7 +343,7 @@ - Public StatisticalDataStatusValue
  generalStatus + Public VariableValue
  measure @@ -385,14 +385,14 @@ - obligation=implementingRule
+ obligation=technicalGuidance
Notes: - -- Name --<br/>general status<br/><br/>-- Definition --<br/>The status of the statistical data distribution.<br/><br/><br/> + -- Name --<br/>Measure<br/><br/>-- Definition --<br/>The measure concerned by the distribution.<br/><br/>-- Description --<br/>EXAMPLE: Population by age and gender, households by size, etc.<br/><br/>
@@ -401,7 +401,7 @@ - Public Identifier
  inspireId + Public StatisticsMeasurementMethodValue
  measurementMethod @@ -427,7 +427,7 @@ Range: - Range:0 to 1 + Transient: @@ -443,14 +443,14 @@ - + obligation=implementingRule
Notes: - -- Name --<br/>INSPIRE identifier<br/><br/>-- Definition --<br/>External object identifier of the spatial object.<br/><br/>-- Description --<br/>An external object identifier is a unique object identifier published by the responsible body, which may be used by external applications to reference the spatial object. The identifier is an identifier of the spatial object, not an identifier of the real-world phenomenon.<br/><br/><br/> + -- Name --<br/>Measurement method<br/><br/>-- Definition --<br/>The description of the statistic measurement method.<br/><br/>
@@ -459,7 +459,7 @@ - Public VariableValue
  measure + Public UnitOfMeasure
  measurementUnit @@ -501,14 +501,14 @@ - obligation=technicalGuidance
+
Notes: - -- Name --<br/>Measure<br/><br/>-- Definition --<br/>The measure concerned by the distribution.<br/><br/>-- Description --<br/>EXAMPLE: Population by age and gender, households by size, etc.<br/><br/> + -- Name --<br/>Measurement unit<br/><br/>-- Definition --<br/>The unit of the measurement.<br/><br/>
@@ -517,7 +517,7 @@ - Public StatisticsMeasurementMethodValue
  measurementMethod + Public Number
  notCountedProportion @@ -543,7 +543,7 @@ Range: - + Range:0 to 1 Transient: @@ -559,14 +559,14 @@ - obligation=implementingRule
+
Notes: - -- Name --<br/>Measurement method<br/><br/>-- Definition --<br/>The description of the statistic measurement method.<br/><br/> + -- Name --<br/>Not counted proportion<br/><br/>-- Definition --<br/>The proportion of population of the area of interest that is not counted in any of its spatial components.<br/><br/>-- Description --<br/>EXAMPLE: This situation can occur when the total population of the area of interest is collected by some process (e.g. administrative register) but population in the spatial components of the area of interest by another process (e.g. estimation).<br/><br/>
@@ -575,7 +575,7 @@ - Public UnitOfMeasure
  measurementUnit + Public TM_Period
  periodOfMeasurement @@ -624,7 +624,7 @@ Notes: - -- Name --<br/>Measurement unit<br/><br/>-- Definition --<br/>The unit of the measurement.<br/><br/> + -- Name --<br/>Period of measurement<br/><br/>-- Definition --<br/>The date or period the observation has been taken, the data was collected.<br/><br/> @@ -633,7 +633,7 @@ - Public Number
  notCountedProportion + Public TM_Period
  periodOfReference @@ -659,7 +659,7 @@ Range: - Range:0 to 1 + Transient: @@ -682,7 +682,7 @@ Notes: - -- Name --<br/>Not counted proportion<br/><br/>-- Definition --<br/>The proportion of population of the area of interest that is not counted in any of its spatial components.<br/><br/>-- Description --<br/>EXAMPLE: This situation can occur when the total population of the area of interest is collected by some process (e.g. administrative register) but population in the spatial components of the area of interest by another process (e.g. estimation).<br/><br/> + -- Name --<br/>Period of reference<br/><br/>-- Definition --<br/>The period when the data is supposed to give a picture of the area of interest.<br/><br/> @@ -691,7 +691,7 @@ - Public TM_Period
  periodOfMeasurement + Public TM_Period
  periodOfValidity @@ -717,7 +717,7 @@ Range: - + Range:0 to 1 Transient: @@ -740,7 +740,7 @@ Notes: - -- Name --<br/>Period of measurement<br/><br/>-- Definition --<br/>The date or period the observation has been taken, the data was collected.<br/><br/> + -- Name --<br/>Period of validity<br/><br/>-- Definition --<br/>The period in which the data remains relevant.<br/><br/>-- Description --<br/>Outside this period the data will not be used and must be replaced by new data. In most cases this is forever and the 2nd date is left empty.<br/><br/> @@ -749,7 +749,7 @@ - Public TM_Period
  periodOfReference + Public DateTime
  beginLifeSpanVersion @@ -767,7 +767,7 @@ Stereotype: - + <<voidable>> Ordered: @@ -798,7 +798,7 @@ Notes: - -- Name --<br/>Period of reference<br/><br/>-- Definition --<br/>The period when the data is supposed to give a picture of the area of interest.<br/><br/> + -- Name --<br/>Begin life span version<br/><br/>-- Definition --<br/>Date and time at which this version of the spatial object was inserted or changed in the spatial data set.<br/><br/> @@ -807,7 +807,7 @@ - Public TM_Period
  periodOfValidity + Public DateTime
  endLifeSpanVersion @@ -825,7 +825,7 @@ Stereotype: - + <<voidable>> Ordered: @@ -856,7 +856,7 @@ Notes: - -- Name --<br/>Period of validity<br/><br/>-- Definition --<br/>The period in which the data remains relevant.<br/><br/>-- Description --<br/>Outside this period the data will not be used and must be replaced by new data. In most cases this is forever and the 2nd date is left empty.<br/><br/> + -- Name --<br/>End life span version<br/><br/>-- Definition --<br/>Date and time at which this version of the spatial object was superseded or retired in the spatial data set.<br/><br/> @@ -865,7 +865,7 @@ - Public PT_FreeText
  universe + Public StatisticalDataStatusValue
  generalStatus @@ -891,7 +891,7 @@ Range: - Range:0 to 1 + Transient: @@ -907,14 +907,14 @@ - + obligation=implementingRule
Notes: - -- Name --<br/>Universe<br/><br/>-- Definition --<br/>When distribution is related to a subset of the population and not the population in its whole, the literal description of the way this subset was defined.<br/><br/>EXAMPLE : A dataset can give the population distribution of the unemployed persons under 25. The variable will be “unemployedPopulation”, the measure a “count “ and the measurementUnit “person”. The only way to express that the distribution doesn’t cover the whole unemployed population would be to describe that situation in the Unviverse attribute.<br/><br/> + -- Name --<br/>general status<br/><br/>-- Definition --<br/>The status of the statistical data distribution.<br/><br/><br/>
diff --git a/approved/html/EARoot/EA2/EA3/EA14/EA1/EA9006.htm b/approved/html/EARoot/EA2/EA3/EA14/EA1/EA9006.htm index 0fa121096..8febd2ec7 100644 --- a/approved/html/EARoot/EA2/EA3/EA14/EA1/EA9006.htm +++ b/approved/html/EARoot/EA2/EA3/EA14/EA1/EA9006.htm @@ -111,7 +111,7 @@ - Public Number
  approximatelyLocatedPopulationProportion + Public Number
  value @@ -160,7 +160,7 @@ Notes: - -- Name --<br/>Approximately located proportion<br/><br/>-- Definition --<br/>The proportion of population count that doesn’t follow the common rule for location. “Population” can be persons if persons are counted, dwellings if the StatisticalDatadistribution is about dwellings, etc.<br/><br/>EXAMPLE : A statistical distribution of the people is supposed to have been produced after the people were located in the cadastral parcel they live in. For some incorrectness in the registers used, the actual location of the cadastral parcel was not found fro some of them and an estimated location was computed. The number of people in this case must be reported in the attribute.<br/><br/> + -- Name --<br/>Value<br/><br/>-- Definition --<br/>The value for the piece of datum.<br/><br/><br/> @@ -169,7 +169,7 @@ - Public PT_FreeText
  comment + Public SpecialValue
  specialValue @@ -211,14 +211,14 @@ - + obligation=implementingRule
Notes: - -- Name --<br/>Comment<br/><br/>-- Definition --<br/>Free style comment about the value.<br/><br/> + -- Name --<br/>Special value<br/><br/>-- Definition --<br/>Some conventional string when value for the piece of datum cannot be provided: missing value, value hidden because of confidentiality.<br/><br/><br/>
@@ -285,7 +285,7 @@ - Public PT_FreeText
  flags + Public Number
  approximatelyLocatedPopulationProportion @@ -334,7 +334,7 @@ Notes: - -- Name --<br/>Flags<br/><br/>-- Definition --<br/>A set of one-character encoded comments about the data.<br/><br/> + -- Name --<br/>Approximately located proportion<br/><br/>-- Definition --<br/>The proportion of population count that doesn’t follow the common rule for location. “Population” can be persons if persons are counted, dwellings if the StatisticalDatadistribution is about dwellings, etc.<br/><br/>EXAMPLE : A statistical distribution of the people is supposed to have been produced after the people were located in the cadastral parcel they live in. For some incorrectness in the registers used, the actual location of the cadastral parcel was not found fro some of them and an estimated location was computed. The number of people in this case must be reported in the attribute.<br/><br/> @@ -343,7 +343,7 @@ - Public TM_Period
  periodOfMeasurement + Public PT_FreeText
  comment @@ -361,7 +361,7 @@ Stereotype: - <<voidable>> + Ordered: @@ -392,7 +392,7 @@ Notes: - -- Name --<br/>Period of measurement<br/><br/>-- Definition --<br/>The collection period of the statistical value. This period overrides the period specified in the associated statistical distribution.<br/><br/> + -- Name --<br/>Comment<br/><br/>-- Definition --<br/>Free style comment about the value.<br/><br/> @@ -401,7 +401,7 @@ - Public SpecialValue
  specialValue + Public PT_FreeText
  flags @@ -443,14 +443,14 @@ - obligation=implementingRule
+
Notes: - -- Name --<br/>Special value<br/><br/>-- Definition --<br/>Some conventional string when value for the piece of datum cannot be provided: missing value, value hidden because of confidentiality.<br/><br/><br/> + -- Name --<br/>Flags<br/><br/>-- Definition --<br/>A set of one-character encoded comments about the data.<br/><br/>
@@ -459,7 +459,7 @@ - Public StatisticalDataStatusValue
  status + Public TM_Period
  periodOfMeasurement @@ -477,7 +477,7 @@ Stereotype: - + <<voidable>> Ordered: @@ -485,7 +485,7 @@ Range: - + Range:0 to 1 Transient: @@ -501,14 +501,14 @@ - obligation=implementingRule
+
Notes: - -- Name --<br/>Status<br/><br/>-- Definition --<br/>The status of the statistical data.<br/><br/> + -- Name --<br/>Period of measurement<br/><br/>-- Definition --<br/>The collection period of the statistical value. This period overrides the period specified in the associated statistical distribution.<br/><br/>
@@ -517,7 +517,7 @@ - Public Number
  value + Public StatisticalDataStatusValue
  status @@ -543,7 +543,7 @@ Range: - Range:0 to 1 + Transient: @@ -559,14 +559,14 @@ - + obligation=implementingRule
Notes: - -- Name --<br/>Value<br/><br/>-- Definition --<br/>The value for the piece of datum.<br/><br/><br/> + -- Name --<br/>Status<br/><br/>-- Definition --<br/>The status of the statistical data.<br/><br/>
diff --git a/approved/html/EARoot/EA2/EA3/EA15/EA1/EA9014.png b/approved/html/EARoot/EA2/EA3/EA15/EA1/EA9014.png index 8596436ce..191a19035 100644 Binary files a/approved/html/EARoot/EA2/EA3/EA15/EA1/EA9014.png and b/approved/html/EARoot/EA2/EA3/EA15/EA1/EA9014.png differ diff --git a/approved/html/EARoot/EA2/EA3/EA15/EA1/EA9016.png b/approved/html/EARoot/EA2/EA3/EA15/EA1/EA9016.png index 40bd80025..1db60cb31 100644 Binary files a/approved/html/EARoot/EA2/EA3/EA15/EA1/EA9016.png and b/approved/html/EARoot/EA2/EA3/EA15/EA1/EA9016.png differ diff --git a/approved/html/EARoot/EA2/EA3/EA15/EA1/EA9022.png b/approved/html/EARoot/EA2/EA3/EA15/EA1/EA9022.png index d0d723fae..4d0523e83 100644 Binary files a/approved/html/EARoot/EA2/EA3/EA15/EA1/EA9022.png and b/approved/html/EARoot/EA2/EA3/EA15/EA1/EA9022.png differ diff --git a/approved/html/EARoot/EA2/EA3/EA15/EA1/EA9043.htm b/approved/html/EARoot/EA2/EA3/EA15/EA1/EA9043.htm index 651d51e9a..d5e7d449f 100644 --- a/approved/html/EARoot/EA2/EA3/EA15/EA1/EA9043.htm +++ b/approved/html/EARoot/EA2/EA3/EA15/EA1/EA9043.htm @@ -110,7 +110,7 @@ - Public GM_Object
  geometry + Public ThematicIdentifier
  thematicId @@ -128,7 +128,7 @@ Stereotype: - <<voidable>> + Ordered: @@ -153,12 +153,22 @@ -   +
+ + + + +
+ Notes: + + -- Definition --<br/>Thematic object identifier (e.g. ICAO location identifiers for airports or NUTS codes for administrative areas).<br/><br/>-- Description --<br/>It may be the identification code provided by the Member States to identify the object on their own databases.<br/><br/> +
+ - Public StatusType
  status + Public TypeOfProductionBuildingValue
  typeOfBuilding @@ -184,7 +194,7 @@ Range: - + Range:0 to * Transient: @@ -207,7 +217,7 @@ Notes: - -- Definition --<br/>The state or condition of the production and industrial building, with regard to the functional and operational order, in which it is arranged for a limited or extended time period.<br/> + -- Definition -- <br/>Descriptive classification about the production and industrial building.<br/><br/> @@ -216,7 +226,7 @@ - Public ThematicIdentifier
  thematicId + Public StatusType
  status @@ -234,7 +244,7 @@ Stereotype: - + <<voidable>> Ordered: @@ -242,7 +252,7 @@ Range: - Range:0 to 1 + Transient: @@ -265,7 +275,7 @@ Notes: - -- Definition --<br/>Thematic object identifier (e.g. ICAO location identifiers for airports or NUTS codes for administrative areas).<br/><br/>-- Description --<br/>It may be the identification code provided by the Member States to identify the object on their own databases.<br/><br/> + -- Definition --<br/>The state or condition of the production and industrial building, with regard to the functional and operational order, in which it is arranged for a limited or extended time period.<br/> @@ -274,7 +284,7 @@ - Public TypeOfProductionBuildingValue
  typeOfBuilding + Public GM_Object
  geometry @@ -300,7 +310,7 @@ Range: - Range:0 to * + Range:0 to 1 Transient: @@ -317,17 +327,7 @@ -
- - - - -
- Notes: - - -- Definition -- <br/>Descriptive classification about the production and industrial building.<br/><br/> -
- +   diff --git a/approved/html/EARoot/EA2/EA3/EA15/EA1/EA9044.htm b/approved/html/EARoot/EA2/EA3/EA15/EA1/EA9044.htm index d13076546..d506e0b4d 100644 --- a/approved/html/EARoot/EA2/EA3/EA15/EA1/EA9044.htm +++ b/approved/html/EARoot/EA2/EA3/EA15/EA1/EA9044.htm @@ -109,7 +109,7 @@ - Public RiverBasinDistrictValue
  riverBasinDistrict + Public GM_Surface
  surfaceGeometry @@ -127,7 +127,7 @@ Stereotype: - + <<voidable>> Ordered: @@ -158,7 +158,7 @@ Notes: - <br/>-- Definition -- <br/>Code identifier and/or name assigned to the basin district of a watercourse. <br/><br/>-- Description --<br/>NOTE  Information required (not registered in the Hydrography Theme) according to Article 3(1) of Directive 2000/60/EC of the European Parliament and of the Council of 23 October 2000 establishing<br/>a framework for Community action in the field of water policy (OJ L 327, 22.12.2000, p. 1). Directive as amended by Decision<br/>No 2455/2001/EC (OJ L 331, 15.12.2001, p. 1).<br/><br/> + -- Definition --<br/>Spatial property of the spatial object with a value that is a vector geometry type from ISO 19107.<br/><br/>-- Description --<br/>This is the secondary geometry property for the Production Facility and it is set as an optional property to identify the location area for the Facility. It is intended, if available, to furnish a more detailed spatial information in addition to the basic mandatory geometry.<br/><br/> @@ -167,7 +167,7 @@ - Public StatusType
  status + Public RiverBasinDistrictValue
  riverBasinDistrict @@ -185,7 +185,7 @@ Stereotype: - <<voidable>> + Ordered: @@ -193,7 +193,7 @@ Range: - + Range:0 to 1 Transient: @@ -216,7 +216,7 @@ Notes: - -- Definition --<br/>The state or condition of the facility, with regard to the functional and operational order, in which it is arranged for a limited or extended time period.<br/> + <br/>-- Definition -- <br/>Code identifier and/or name assigned to the basin district of a watercourse. <br/><br/>-- Description --<br/>NOTE  Information required (not registered in the Hydrography Theme) according to Article 3(1) of Directive 2000/60/EC of the European Parliament and of the Council of 23 October 2000 establishing<br/>a framework for Community action in the field of water policy (OJ L 327, 22.12.2000, p. 1). Directive as amended by Decision<br/>No 2455/2001/EC (OJ L 331, 15.12.2001, p. 1).<br/><br/> @@ -225,7 +225,7 @@ - Public GM_Surface
  surfaceGeometry + Public StatusType
  status @@ -251,7 +251,7 @@ Range: - Range:0 to 1 + Transient: @@ -274,7 +274,7 @@ Notes: - -- Definition --<br/>Spatial property of the spatial object with a value that is a vector geometry type from ISO 19107.<br/><br/>-- Description --<br/>This is the secondary geometry property for the Production Facility and it is set as an optional property to identify the location area for the Facility. It is intended, if available, to furnish a more detailed spatial information in addition to the basic mandatory geometry.<br/><br/> + -- Definition --<br/>The state or condition of the facility, with regard to the functional and operational order, in which it is arranged for a limited or extended time period.<br/> diff --git a/approved/html/EARoot/EA2/EA3/EA15/EA1/EA9045.htm b/approved/html/EARoot/EA2/EA3/EA15/EA1/EA9045.htm index 6b6e45fbd..eb29d61af 100644 --- a/approved/html/EARoot/EA2/EA3/EA15/EA1/EA9045.htm +++ b/approved/html/EARoot/EA2/EA3/EA15/EA1/EA9045.htm @@ -110,7 +110,7 @@ - Public CharacterString
  description + Public Identifier
  inspireId @@ -128,7 +128,7 @@ Stereotype: - <<voidable>> + Ordered: @@ -136,7 +136,7 @@ Range: - Range:0 to * + Transient: @@ -159,7 +159,7 @@ Notes: - -- Definition --<br/>Descriptive statement about the installation.<br/> + -- Definition --<br/>External object identifier of the spatial object.<br/><br/>-- Description --<br/>NOTE  An external object identifier is a unique object identifier published by the responsible body, which may be used by external applications to reference the spatial object. The identifier is an identifier of the spatial object, not an identifier of the real-world phenomenon.<br/> @@ -168,7 +168,7 @@ - Public Identifier
  inspireId + Public ThematicIdentifier
  thematicId @@ -194,7 +194,7 @@ Range: - + Range:0 to 1 Transient: @@ -217,7 +217,7 @@ Notes: - -- Definition --<br/>External object identifier of the spatial object.<br/><br/>-- Description --<br/>NOTE  An external object identifier is a unique object identifier published by the responsible body, which may be used by external applications to reference the spatial object. The identifier is an identifier of the spatial object, not an identifier of the real-world phenomenon.<br/> + -- Definition --<br/>Thematic object identifier (e.g. ICAO location identifiers for airports or NUTS codes for administrative areas).<br/><br/>-- Description --<br/>It may be the identification code provided by the Member States to identify the object on their own databases.<br/><br/> @@ -226,7 +226,7 @@ - Public CharacterString
  name + Public GM_Point
  pointGeometry @@ -244,7 +244,7 @@ Stereotype: - <<voidable>> + Ordered: @@ -252,7 +252,7 @@ Range: - Range:0 to * + Range:0 to 1 Transient: @@ -275,7 +275,7 @@ Notes: - -- Definition --<br/>Official denomination or proper or conventional name of the installation.<br/> + -- Definition --<br/>Spatial property of the spatial object with a value that is a vector geometry type from ISO 19107.<br/><br/>-- Description --<br/>This is the basic geometry property for the Production Installation and it is set as an optional property to identify the location point for the Installation. It is intended, if available, to furnish an additional spatial information beside the basic mandatory geometry fixed for the Production Facility.<br/><br/> @@ -284,7 +284,7 @@ - Public GM_Point
  pointGeometry + Public GM_Surface
  surfaceGeometry @@ -302,7 +302,7 @@ Stereotype: - + <<voidable>> Ordered: @@ -333,7 +333,7 @@ Notes: - -- Definition --<br/>Spatial property of the spatial object with a value that is a vector geometry type from ISO 19107.<br/><br/>-- Description --<br/>This is the basic geometry property for the Production Installation and it is set as an optional property to identify the location point for the Installation. It is intended, if available, to furnish an additional spatial information beside the basic mandatory geometry fixed for the Production Facility.<br/><br/> + -- Definition --<br/>Spatial property of the spatial object with a value that is a vector geometry type from ISO 19107.<br/><br/>-- Description --<br/>This is the secondary geometry property for the Production Installation and it is set as an optional property to identify the location area for the Installation. It is intended, if available, to furnish a detailed spatial information beside the basic mandatory geometry fixed for the Production Facility.<br/><br/> @@ -342,7 +342,7 @@ - Public StatusType
  status + Public CharacterString
  name @@ -368,7 +368,7 @@ Range: - + Range:0 to * Transient: @@ -391,7 +391,7 @@ Notes: - -- Definition --<br/>The state or condition of the installation, with regard to its functional and operational order, in which it is arranged for a limited or extended time period.<br/><br/> + -- Definition --<br/>Official denomination or proper or conventional name of the installation.<br/> @@ -400,7 +400,7 @@ - Public GM_Surface
  surfaceGeometry + Public CharacterString
  description @@ -426,7 +426,7 @@ Range: - Range:0 to 1 + Range:0 to * Transient: @@ -449,7 +449,7 @@ Notes: - -- Definition --<br/>Spatial property of the spatial object with a value that is a vector geometry type from ISO 19107.<br/><br/>-- Description --<br/>This is the secondary geometry property for the Production Installation and it is set as an optional property to identify the location area for the Installation. It is intended, if available, to furnish a detailed spatial information beside the basic mandatory geometry fixed for the Production Facility.<br/><br/> + -- Definition --<br/>Descriptive statement about the installation.<br/> @@ -458,7 +458,7 @@ - Public ThematicIdentifier
  thematicId + Public StatusType
  status @@ -476,7 +476,7 @@ Stereotype: - + <<voidable>> Ordered: @@ -484,7 +484,7 @@ Range: - Range:0 to 1 + Transient: @@ -507,7 +507,7 @@ Notes: - -- Definition --<br/>Thematic object identifier (e.g. ICAO location identifiers for airports or NUTS codes for administrative areas).<br/><br/>-- Description --<br/>It may be the identification code provided by the Member States to identify the object on their own databases.<br/><br/> + -- Definition --<br/>The state or condition of the installation, with regard to its functional and operational order, in which it is arranged for a limited or extended time period.<br/><br/> diff --git a/approved/html/EARoot/EA2/EA3/EA15/EA1/EA9046.htm b/approved/html/EARoot/EA2/EA3/EA15/EA1/EA9046.htm index 02c7237d7..36af8b4c1 100644 --- a/approved/html/EARoot/EA2/EA3/EA15/EA1/EA9046.htm +++ b/approved/html/EARoot/EA2/EA3/EA15/EA1/EA9046.htm @@ -109,7 +109,7 @@ - Public CharacterString
  description + Public Identifier
  inspireId @@ -127,7 +127,7 @@ Stereotype: - <<voidable>> + Ordered: @@ -135,7 +135,7 @@ Range: - Range:0 to * + Transient: @@ -158,7 +158,7 @@ Notes: - -- Definition --<br/>Descriptive statement about the installation part.<br/> + -- Definition --<br/>External object identifier of the spatial object.<br/><br/>-- Description --<br/>NOTE  An external object identifier is a unique object identifier published by the responsible body, which may be used by external applications to reference the spatial object. The identifier is an identifier of the spatial object, not an identifier of the real-world phenomenon.<br/> @@ -167,7 +167,7 @@ - Public Identifier
  inspireId + Public ThematicIdentifier
  thematicId @@ -193,7 +193,7 @@ Range: - + Range:0 to 1 Transient: @@ -216,7 +216,7 @@ Notes: - -- Definition --<br/>External object identifier of the spatial object.<br/><br/>-- Description --<br/>NOTE  An external object identifier is a unique object identifier published by the responsible body, which may be used by external applications to reference the spatial object. The identifier is an identifier of the spatial object, not an identifier of the real-world phenomenon.<br/> + -- Definition --<br/>Thematic object identifier (e.g. ICAO location identifiers for airports or NUTS codes for administrative areas).<br/><br/>-- Description --<br/>It may be the identification code provided by the Member States to identify the object on their own databases.<br/><br/> @@ -225,7 +225,7 @@ - Public CharacterString
  name + Public GM_Point
  pointGeometry @@ -243,7 +243,7 @@ Stereotype: - <<voidable>> + Ordered: @@ -251,7 +251,7 @@ Range: - Range:0 to * + Range:0 to 1 Transient: @@ -274,7 +274,7 @@ Notes: - -- Definition --<br/>Official denomination or proper or conventional name of the installation part.<br/> + -- Definition --<br/>Spatial property of the spatial object with a value that is a vector geometry type from ISO 19107.<br/><br/>-- Description --<br/>This is the basic geometry property for the Production Installation Part and it is set as an optional property to identify the location point for the Installation Part. It is intended, if available, to furnish an additional spatial information beside the basic mandatory geometry fixed for the Production Facility.<br/><br/> @@ -283,7 +283,7 @@ - Public GM_Point
  pointGeometry + Public GM_Surface
  surfaceGeometry @@ -301,7 +301,7 @@ Stereotype: - + <<voidable>> Ordered: @@ -332,7 +332,7 @@ Notes: - -- Definition --<br/>Spatial property of the spatial object with a value that is a vector geometry type from ISO 19107.<br/><br/>-- Description --<br/>This is the basic geometry property for the Production Installation Part and it is set as an optional property to identify the location point for the Installation Part. It is intended, if available, to furnish an additional spatial information beside the basic mandatory geometry fixed for the Production Facility.<br/><br/> + -- Definition --<br/>Spatial property of the spatial object with a value that is a vector geometry type from ISO 19107.<br/><br/>-- Description --<br/>This is the secondary geometry property for the Production Installation Part and it is set as an optional property to identify the location area for the Installation Part. It is intended, if available, to furnish a detailed spatial information beside the basic mandatory geometry fixed for the Production Facility.<br/><br/> @@ -341,7 +341,7 @@ - Public StatusType
  status + Public CharacterString
  name @@ -367,7 +367,7 @@ Range: - + Range:0 to * Transient: @@ -390,7 +390,7 @@ Notes: - -- Definition --<br/>The state or condition of the installation part, with regard to the functional and operational order, in which it is arranged for a limited or extended time period.<br/> + -- Definition --<br/>Official denomination or proper or conventional name of the installation part.<br/> @@ -399,7 +399,7 @@ - Public GM_Surface
  surfaceGeometry + Public CharacterString
  description @@ -425,7 +425,7 @@ Range: - Range:0 to 1 + Range:0 to * Transient: @@ -448,7 +448,7 @@ Notes: - -- Definition --<br/>Spatial property of the spatial object with a value that is a vector geometry type from ISO 19107.<br/><br/>-- Description --<br/>This is the secondary geometry property for the Production Installation Part and it is set as an optional property to identify the location area for the Installation Part. It is intended, if available, to furnish a detailed spatial information beside the basic mandatory geometry fixed for the Production Facility.<br/><br/> + -- Definition --<br/>Descriptive statement about the installation part.<br/> @@ -457,7 +457,7 @@ - Public PollutionAbatementTechniqueValue
  technique + Public StatusType
  status @@ -499,14 +499,14 @@ - obligation=IR
+
Notes: - -- Definition --<br/>Method to reduce pollutant concentration due to the emissions of a technical component, tipically a chimney.<br/><br/>-- Description --<br/>This information is referring to a list of predefined potential values.<br/>The reference values are holded in the PollutionAbatementTechnique code list.<br/> + -- Definition --<br/>The state or condition of the installation part, with regard to the functional and operational order, in which it is arranged for a limited or extended time period.<br/>
@@ -515,7 +515,7 @@ - Public ThematicIdentifier
  thematicId + Public InstallationPartTypeValue
  type @@ -533,7 +533,7 @@ Stereotype: - + <<voidable>> Ordered: @@ -541,7 +541,7 @@ Range: - Range:0 to 1 + Transient: @@ -564,7 +564,7 @@ Notes: - -- Definition --<br/>Thematic object identifier (e.g. ICAO location identifiers for airports or NUTS codes for administrative areas).<br/><br/>-- Description --<br/>It may be the identification code provided by the Member States to identify the object on their own databases.<br/><br/> + -- Definition --<br/>Special kind of an installation part, denoting the operative function which has to be performed.<br/><br/>-- Description --<br/>EXAMPLE  Chimney, pump.<br/><br/> @@ -573,7 +573,7 @@ - Public InstallationPartTypeValue
  type + Public PollutionAbatementTechniqueValue
  technique @@ -615,14 +615,14 @@ - + obligation=IR
Notes: - -- Definition --<br/>Special kind of an installation part, denoting the operative function which has to be performed.<br/><br/>-- Description --<br/>EXAMPLE  Chimney, pump.<br/><br/> + -- Definition --<br/>Method to reduce pollutant concentration due to the emissions of a technical component, tipically a chimney.<br/><br/>-- Description --<br/>This information is referring to a list of predefined potential values.<br/>The reference values are holded in the PollutionAbatementTechnique code list.<br/>
diff --git a/approved/html/EARoot/EA2/EA3/EA15/EA1/EA9047.htm b/approved/html/EARoot/EA2/EA3/EA15/EA1/EA9047.htm index 595b1e31e..84b7da6f8 100644 --- a/approved/html/EARoot/EA2/EA3/EA15/EA1/EA9047.htm +++ b/approved/html/EARoot/EA2/EA3/EA15/EA1/EA9047.htm @@ -109,7 +109,7 @@ - Public GM_Surface
  geometry + Public Identifier
  inspireId @@ -135,7 +135,7 @@ Range: - Range:0 to 1 + Transient: @@ -158,7 +158,7 @@ Notes: - -- Definition --<br/>Spatial property of the spatial object with a value that is a vector geometry type from ISO 19107.<br/><br/>-- Description --<br/>This is the geometry property for the Parcel and it is set as a optional property to identify the location area for the Parcel. It is intended, if available, to furnish a detailed spatial information beside the basic mandatory geometry fixed for the Production Facility.<br/> + -- Definition --<br/>External object identifier of the spatial object.<br/><br/>-- Description --<br/>NOTE  An external object identifier is a unique object identifier published by the responsible body, which may be used by external applications to reference the spatial object. The identifier is an identifier of the spatial object, not an identifier of the real-world phenomenon.<br/> @@ -167,7 +167,7 @@ - Public Identifier
  inspireId + Public ThematicIdentifier
  thematicId @@ -193,7 +193,7 @@ Range: - + Range:0 to 1 Transient: @@ -216,7 +216,7 @@ Notes: - -- Definition --<br/>External object identifier of the spatial object.<br/><br/>-- Description --<br/>NOTE  An external object identifier is a unique object identifier published by the responsible body, which may be used by external applications to reference the spatial object. The identifier is an identifier of the spatial object, not an identifier of the real-world phenomenon.<br/> + -- Definition --<br/>Thematic object identifier (e.g. ICAO location identifiers for airports or NUTS codes for administrative areas).<br/><br/>-- Description --<br/>It may be the identification code provided by the Member States to identify the object on their own databases.<br/><br/> @@ -225,7 +225,7 @@ - Public StatusType
  status + Public GM_Surface
  geometry @@ -243,7 +243,7 @@ Stereotype: - <<voidable>> + Ordered: @@ -251,7 +251,7 @@ Range: - + Range:0 to 1 Transient: @@ -274,7 +274,7 @@ Notes: - -- Definition --<br/>The state or condition of the plot, with regard to the functional and operational order, in which it is arranged for a limited or extended time period.<br/> + -- Definition --<br/>Spatial property of the spatial object with a value that is a vector geometry type from ISO 19107.<br/><br/>-- Description --<br/>This is the geometry property for the Parcel and it is set as a optional property to identify the location area for the Parcel. It is intended, if available, to furnish a detailed spatial information beside the basic mandatory geometry fixed for the Production Facility.<br/> @@ -283,7 +283,7 @@ - Public ThematicIdentifier
  thematicId + Public StatusType
  status @@ -301,7 +301,7 @@ Stereotype: - + <<voidable>> Ordered: @@ -309,7 +309,7 @@ Range: - Range:0 to 1 + Transient: @@ -332,7 +332,7 @@ Notes: - -- Definition --<br/>Thematic object identifier (e.g. ICAO location identifiers for airports or NUTS codes for administrative areas).<br/><br/>-- Description --<br/>It may be the identification code provided by the Member States to identify the object on their own databases.<br/><br/> + -- Definition --<br/>The state or condition of the plot, with regard to the functional and operational order, in which it is arranged for a limited or extended time period.<br/> diff --git a/approved/html/EARoot/EA2/EA3/EA15/EA1/EA9048.htm b/approved/html/EARoot/EA2/EA3/EA15/EA1/EA9048.htm index 4c687f7ed..54ba30eb1 100644 --- a/approved/html/EARoot/EA2/EA3/EA15/EA1/EA9048.htm +++ b/approved/html/EARoot/EA2/EA3/EA15/EA1/EA9048.htm @@ -108,7 +108,7 @@ - Public CharacterString
  description + Public Identifier
  inspireId @@ -126,7 +126,7 @@ Stereotype: - <<voidable>> + Ordered: @@ -134,7 +134,7 @@ Range: - Range:0 to * + Transient: @@ -157,7 +157,7 @@ Notes: - -- Definition --<br/>Descriptive statement about the site.<br/><br/> + -- Definition --<br/>External object identifier of the spatial object.<br/><br/>-- Description --<br/>NOTE  An external object identifier is a unique object identifier published by the responsible body, which may be used by external applications to reference the spatial object. The identifier is an identifier of the spatial object, not an identifier of the real-world phenomenon.<br/> @@ -166,7 +166,7 @@ - Public GM_MultiSurface
  geometry + Public ThematicIdentifier
  thematicId @@ -215,7 +215,7 @@ Notes: - -- Definition --<br/>Spatial property of the spatial object with a value that is a vector geometry type from ISO 19107.<br/><br/>-- Description --<br/>This is the geometry property for the Production Site and it is set as an optional property to identify the location area for the Site. It is intended, if available, to furnish a detailed spatial information beside the basic mandatory geometry fixed for the Production Facility.<br/> + -- Definition --<br/>Thematic object identifier (e.g. ICAO location identifiers for airports or NUTS codes for administrative areas).<br/><br/>-- Description --<br/>It may be the identification code provided by the Member States to identify the object on their own databases.<br/><br/> @@ -224,7 +224,7 @@ - Public Identifier
  inspireId + Public GM_MultiSurface
  geometry @@ -250,7 +250,7 @@ Range: - + Range:0 to 1 Transient: @@ -273,7 +273,7 @@ Notes: - -- Definition --<br/>External object identifier of the spatial object.<br/><br/>-- Description --<br/>NOTE  An external object identifier is a unique object identifier published by the responsible body, which may be used by external applications to reference the spatial object. The identifier is an identifier of the spatial object, not an identifier of the real-world phenomenon.<br/> + -- Definition --<br/>Spatial property of the spatial object with a value that is a vector geometry type from ISO 19107.<br/><br/>-- Description --<br/>This is the geometry property for the Production Site and it is set as an optional property to identify the location area for the Site. It is intended, if available, to furnish a detailed spatial information beside the basic mandatory geometry fixed for the Production Facility.<br/> @@ -282,7 +282,7 @@ - Public CharacterString
  name + Public DocumentCitation
  sitePlan @@ -331,7 +331,7 @@ Notes: - -- Definition --<br/>Official denomination or proper or conventional name of the site.<br/> + -- Definition --<br/>External reference to documentation concerning the configuration and organisation of the site ((Site Plans, technical descriptions, ...).<br/><br/> @@ -340,7 +340,7 @@ - Public DocumentCitation
  sitePlan + Public CharacterString
  name @@ -389,7 +389,7 @@ Notes: - -- Definition --<br/>External reference to documentation concerning the configuration and organisation of the site ((Site Plans, technical descriptions, ...).<br/><br/> + -- Definition --<br/>Official denomination or proper or conventional name of the site.<br/> @@ -398,7 +398,7 @@ - Public StatusType
  status + Public CharacterString
  description @@ -424,7 +424,7 @@ Range: - + Range:0 to * Transient: @@ -447,7 +447,7 @@ Notes: - -- Definition --<br/>The state or condition of the site, with regard to the functional and operational order, in which it is arranged for a limited or extended time period.<br/> + -- Definition --<br/>Descriptive statement about the site.<br/><br/> @@ -456,7 +456,7 @@ - Public ThematicIdentifier
  thematicId + Public StatusType
  status @@ -474,7 +474,7 @@ Stereotype: - + <<voidable>> Ordered: @@ -482,7 +482,7 @@ Range: - Range:0 to 1 + Transient: @@ -505,7 +505,7 @@ Notes: - -- Definition --<br/>Thematic object identifier (e.g. ICAO location identifiers for airports or NUTS codes for administrative areas).<br/><br/>-- Description --<br/>It may be the identification code provided by the Member States to identify the object on their own databases.<br/><br/> + -- Definition --<br/>The state or condition of the site, with regard to the functional and operational order, in which it is arranged for a limited or extended time period.<br/> diff --git a/approved/html/EARoot/EA2/EA3/EA15/EA1/EA9050.htm b/approved/html/EARoot/EA2/EA3/EA15/EA1/EA9050.htm index 788fd1753..8cb61209e 100644 --- a/approved/html/EARoot/EA2/EA3/EA15/EA1/EA9050.htm +++ b/approved/html/EARoot/EA2/EA3/EA15/EA1/EA9050.htm @@ -107,7 +107,7 @@ - Public CharacterString
  description + Public ConditionOfFacilityValue
  statusType @@ -125,7 +125,7 @@ Stereotype: - <<voidable>> + Ordered: @@ -133,7 +133,7 @@ Range: - Range:0 to 1 + Transient: @@ -149,14 +149,14 @@ - + obligation=IR
Notes: - -- Definition --<br/>Descriptive statement about the declared status.<br/><br/> + -- Definition --<br/>The state or condition of a technical component referring to a list of predefined potential values.<br/><br/>-- Description --<br/>The reference values are holded in the ConditionOfFacilityValue code list.<br/>
@@ -165,7 +165,7 @@ - Public ConditionOfFacilityValue
  statusType + Public CharacterString
  description @@ -183,7 +183,7 @@ Stereotype: - + <<voidable>> Ordered: @@ -191,7 +191,7 @@ Range: - + Range:0 to 1 Transient: @@ -207,14 +207,14 @@ - obligation=IR
+
Notes: - -- Definition --<br/>The state or condition of a technical component referring to a list of predefined potential values.<br/><br/>-- Description --<br/>The reference values are holded in the ConditionOfFacilityValue code list.<br/> + -- Definition --<br/>Descriptive statement about the declared status.<br/><br/>
diff --git a/approved/html/EARoot/EA2/EA3/EA16/EA1/EA9056.png b/approved/html/EARoot/EA2/EA3/EA16/EA1/EA9056.png index 932312e40..2854d2146 100644 Binary files a/approved/html/EARoot/EA2/EA3/EA16/EA1/EA9056.png and b/approved/html/EARoot/EA2/EA3/EA16/EA1/EA9056.png differ diff --git a/approved/html/EARoot/EA2/EA3/EA16/EA1/EA9058.htm b/approved/html/EARoot/EA2/EA3/EA16/EA1/EA9058.htm index 3f822b8bf..0f5f773e1 100644 --- a/approved/html/EARoot/EA2/EA3/EA16/EA1/EA9058.htm +++ b/approved/html/EARoot/EA2/EA3/EA16/EA1/EA9058.htm @@ -167,7 +167,7 @@ - Public
  area + Public
  colonies @@ -216,7 +216,7 @@ Notes: - -- Name --<br/>area<br/><br/>-- Definition --<br/>Area (km<sup>2</sup>).<br/><br/> + -- Name --<br/>colonies<br/><br/>-- Definition --<br/>Colonies.<br/><br/> @@ -225,7 +225,7 @@ - Public
  breedingFemales + Public
  individuals @@ -274,7 +274,7 @@ Notes: - -- Name --<br/>breeding females<br/><br/>-- Definition --<br/>Breeding females.<br/><br/> + -- Name --<br/>individuals<br/><br/>-- Definition --<br/>Individuals.<br/><br/> @@ -283,7 +283,7 @@ - Public
  callingMales + Public
  localities @@ -332,7 +332,7 @@ Notes: - -- Name --<br/>calling males<br/><br/>-- Definition --<br/>Calling males.<br/><br/> + -- Name --<br/>localities<br/><br/>-- Definition --<br/>Localities.<br/><br/> @@ -341,7 +341,7 @@ - Public
  colonies + Public
  males @@ -390,7 +390,7 @@ Notes: - -- Name --<br/>colonies<br/><br/>-- Definition --<br/>Colonies.<br/><br/> + -- Name --<br/>males<br/><br/>-- Definition --<br/>Males.<br/><br/> @@ -399,7 +399,7 @@ - Public
  floweringStems + Public
  pairs @@ -448,7 +448,7 @@ Notes: - -- Name --<br/>flowering stems<br/><br/>-- Definition --<br/>Flowering stems.<br/><br/> + -- Name --<br/>pairs<br/><br/>-- Definition --<br/>Pairs.<br/><br/> @@ -457,7 +457,7 @@ - Public
  individuals + Public
  breedingFemales @@ -506,7 +506,7 @@ Notes: - -- Name --<br/>individuals<br/><br/>-- Definition --<br/>Individuals.<br/><br/> + -- Name --<br/>breeding females<br/><br/>-- Definition --<br/>Breeding females.<br/><br/> @@ -515,7 +515,7 @@ - Public
  inhabitedLogs + Public
  callingMales @@ -564,7 +564,7 @@ Notes: - -- Name --<br/>inhabited logs<br/><br/>-- Definition --<br/>Inhabited logs.<br/><br/> + -- Name --<br/>calling males<br/><br/>-- Definition --<br/>Calling males.<br/><br/> @@ -573,7 +573,7 @@ - Public
  inhabitedStonesOrBoulders + Public
  floweringStems @@ -622,7 +622,7 @@ Notes: - -- Name --<br/>inhabited stones or boulders<br/><br/>-- Definition --<br/>Inhabited stones or boulders.<br/><br/> + -- Name --<br/>flowering stems<br/><br/>-- Definition --<br/>Flowering stems.<br/><br/> @@ -631,7 +631,7 @@ - Public
  inhabitedTrees + Public
  inhabitedLogs @@ -680,7 +680,7 @@ Notes: - -- Name --<br/>inhabited trees<br/><br/>-- Definition --<br/>Inhabited trees.<br/><br/> + -- Name --<br/>inhabited logs<br/><br/>-- Definition --<br/>Inhabited logs.<br/><br/> @@ -689,7 +689,7 @@ - Public
  length + Public
  inhabitedStonesOrBoulders @@ -738,7 +738,7 @@ Notes: - -- Name --<br/>length<br/><br/>-- Definition --<br/>Length (km).<br/><br/> + -- Name --<br/>inhabited stones or boulders<br/><br/>-- Definition --<br/>Inhabited stones or boulders.<br/><br/> @@ -747,7 +747,7 @@ - Public
  localities + Public
  inhabitedTrees @@ -796,7 +796,7 @@ Notes: - -- Name --<br/>localities<br/><br/>-- Definition --<br/>Localities.<br/><br/> + -- Name --<br/>inhabited trees<br/><br/>-- Definition --<br/>Inhabited trees.<br/><br/> @@ -805,7 +805,7 @@ - Public
  males + Public
  shoots @@ -854,7 +854,7 @@ Notes: - -- Name --<br/>males<br/><br/>-- Definition --<br/>Males.<br/><br/> + -- Name --<br/>shoots<br/><br/>-- Definition --<br/>Shoots are counted when it is not possible to distinguish individuals, e.g. due to clonal growth.<br/><br/> @@ -863,7 +863,7 @@ - Public
  pairs + Public
  tufts @@ -912,7 +912,7 @@ Notes: - -- Name --<br/>pairs<br/><br/>-- Definition --<br/>Pairs.<br/><br/> + -- Name --<br/>tufts<br/><br/>-- Definition --<br/>Tufts.<br/><br/> @@ -921,7 +921,7 @@ - Public
  shoots + Public
  length @@ -970,7 +970,7 @@ Notes: - -- Name --<br/>shoots<br/><br/>-- Definition --<br/>Shoots are counted when it is not possible to distinguish individuals, e.g. due to clonal growth.<br/><br/> + -- Name --<br/>length<br/><br/>-- Definition --<br/>Length (km).<br/><br/> @@ -979,7 +979,7 @@ - Public
  tufts + Public
  area @@ -1028,7 +1028,7 @@ Notes: - -- Name --<br/>tufts<br/><br/>-- Definition --<br/>Tufts.<br/><br/> + -- Name --<br/>area<br/><br/>-- Definition --<br/>Area (km<sup>2</sup>).<br/><br/> diff --git a/approved/html/EARoot/EA2/EA3/EA16/EA1/EA9059.htm b/approved/html/EARoot/EA2/EA3/EA16/EA1/EA9059.htm index 62a7368cf..efaff0651 100644 --- a/approved/html/EARoot/EA2/EA3/EA16/EA1/EA9059.htm +++ b/approved/html/EARoot/EA2/EA3/EA16/EA1/EA9059.htm @@ -108,7 +108,7 @@ - Public
  calculated + Public
  counted @@ -157,7 +157,7 @@ Notes: - -- Name --<br/>calculated<br/><br/>-- Definition --<br/>The units defined by the countUnitValues have been calculated by some modelling technique.<br/><br/> + -- Name --<br/>counted<br/><br/>-- Definition --<br/>The units defined by the countUnitValues have been counted.<br/><br/> @@ -166,7 +166,7 @@ - Public
  counted + Public
  estimated @@ -215,7 +215,7 @@ Notes: - -- Name --<br/>counted<br/><br/>-- Definition --<br/>The units defined by the countUnitValues have been counted.<br/><br/> + -- Name --<br/>estimated<br/><br/>-- Definition --<br/>The units defined by the countUnitValues have been estimated.<br/><br/> @@ -224,7 +224,7 @@ - Public
  estimated + Public
  calculated @@ -273,7 +273,7 @@ Notes: - -- Name --<br/>estimated<br/><br/>-- Definition --<br/>The units defined by the countUnitValues have been estimated.<br/><br/> + -- Name --<br/>calculated<br/><br/>-- Definition --<br/>The units defined by the countUnitValues have been calculated by some modelling technique.<br/><br/> diff --git a/approved/html/EARoot/EA2/EA3/EA16/EA1/EA9061.htm b/approved/html/EARoot/EA2/EA3/EA16/EA1/EA9061.htm index 395b335b4..12520af9e 100644 --- a/approved/html/EARoot/EA2/EA3/EA16/EA1/EA9061.htm +++ b/approved/html/EARoot/EA2/EA3/EA16/EA1/EA9061.htm @@ -108,7 +108,7 @@ - Public Date
  collectedFrom + Public OccurrenceCategoryValue
  occurrenceCategory @@ -126,7 +126,7 @@ Stereotype: - <<voidable>> + Ordered: @@ -150,14 +150,14 @@ - + obligation=implementingRule
Notes: - -- Name --<br/>collected from<br/><br/>-- Definition --<br/>The date when the collecting of the original species occurrence data started.<br/><br/>-- Description --<br/>The starting date for the collection/registration of the primary species occurrence data.<br/> + -- Name --<br/>occurrence category<br/><br/>-- Definition --<br/>The species population density in the species distribution unit.<br/><br/>-- Description --<br/>A species abundance (population density) in classes (common, rare, very rare, present or absent) in an individual species distribution unit.<br/>
@@ -166,7 +166,7 @@ - Public Date
  collectedTo + Public ResidencyStatusValue
  residencyStatus @@ -192,7 +192,7 @@ Range: - + Range:0 to 1 Transient: @@ -208,14 +208,14 @@ - + obligation=technicalGuidance
Notes: - -- Name --<br/>collected to<br/><br/>-- Definition --<br/>The date when the collecting of the original species occurrence data stopped.<br/><br/>-- Description --<br/>The last date for the collection/registration of the primary species occurrence data.<br/> + -- Name --<br/>residency status<br/><br/>-- Definition --<br/>Information on the status of residency of a species regarding nativeness versus introduction and permanency.<br/><br/>
@@ -224,7 +224,7 @@ - Public OccurrenceCategoryValue
  occurrenceCategory + Public PopulationSizeType
  populationSize @@ -242,7 +242,7 @@ Stereotype: - + <<voidable>> Ordered: @@ -250,7 +250,7 @@ Range: - + Range:0 to 1 Transient: @@ -266,14 +266,14 @@ - obligation=implementingRule
+
Notes: - -- Name --<br/>occurrence category<br/><br/>-- Definition --<br/>The species population density in the species distribution unit.<br/><br/>-- Description --<br/>A species abundance (population density) in classes (common, rare, very rare, present or absent) in an individual species distribution unit.<br/> + -- Name --<br/>population size<br/><br/>-- Definition --<br/>A range value indicating the counted, estimated or calculated occurrences or population sizes, using an upper and a lower limit.<br/><br/>-- Description --<br/>A range density (or abundance) value for species occurrence in the individual species distribution units either counted, estimated or calculated based on defined counting units, or using upper and lower bounds.<br/><br/>
@@ -282,7 +282,7 @@ - Public PopulationSizeType
  populationSize + Public Boolean
  sensitiveInfo @@ -331,7 +331,7 @@ Notes: - -- Name --<br/>population size<br/><br/>-- Definition --<br/>A range value indicating the counted, estimated or calculated occurrences or population sizes, using an upper and a lower limit.<br/><br/>-- Description --<br/>A range density (or abundance) value for species occurrence in the individual species distribution units either counted, estimated or calculated based on defined counting units, or using upper and lower bounds.<br/><br/> + -- Name --<br/>sensitive info<br/><br/>-- Definition --<br/>Boolean value that indicates whether the location of a specific species is sensitive. <br/><br/>-- Description --<br/>This can be used to filter out or generalize sensitive data. Generalized representation can be larger spatial objects e.g. grid cells.<br/><br/>NOTE A species location e.g. breeding location, of vulnerable, endangered or protected species may by law be excluded from distribution or spatially generalised from detailed locations to lower resolutions in more extensive grid cells to avoid environmental crime.<br/> @@ -398,7 +398,7 @@ - Public ResidencyStatusValue
  residencyStatus + Public Date
  collectedFrom @@ -424,7 +424,7 @@ Range: - Range:0 to 1 + Transient: @@ -440,14 +440,14 @@ - obligation=technicalGuidance
+
Notes: - -- Name --<br/>residency status<br/><br/>-- Definition --<br/>Information on the status of residency of a species regarding nativeness versus introduction and permanency.<br/><br/> + -- Name --<br/>collected from<br/><br/>-- Definition --<br/>The date when the collecting of the original species occurrence data started.<br/><br/>-- Description --<br/>The starting date for the collection/registration of the primary species occurrence data.<br/>
@@ -456,7 +456,7 @@ - Public Boolean
  sensitiveInfo + Public Date
  collectedTo @@ -482,7 +482,7 @@ Range: - Range:0 to 1 + Transient: @@ -505,7 +505,7 @@ Notes: - -- Name --<br/>sensitive info<br/><br/>-- Definition --<br/>Boolean value that indicates whether the location of a specific species is sensitive. <br/><br/>-- Description --<br/>This can be used to filter out or generalize sensitive data. Generalized representation can be larger spatial objects e.g. grid cells.<br/><br/>NOTE A species location e.g. breeding location, of vulnerable, endangered or protected species may by law be excluded from distribution or spatially generalised from detailed locations to lower resolutions in more extensive grid cells to avoid environmental crime.<br/> + -- Name --<br/>collected to<br/><br/>-- Definition --<br/>The date when the collecting of the original species occurrence data stopped.<br/><br/>-- Description --<br/>The last date for the collection/registration of the primary species occurrence data.<br/> diff --git a/approved/html/EARoot/EA2/EA3/EA16/EA1/EA9069.htm b/approved/html/EARoot/EA2/EA3/EA16/EA1/EA9069.htm index e384b4ec5..e40caf01f 100644 --- a/approved/html/EARoot/EA2/EA3/EA16/EA1/EA9069.htm +++ b/approved/html/EARoot/EA2/EA3/EA16/EA1/EA9069.htm @@ -108,7 +108,7 @@ - Public
  absent + Public
  common @@ -157,7 +157,7 @@ Notes: - -- Name --<br/>absent<br/><br/>-- Definition --<br/>The species has been looked for but not found in the species distribution unit.<br/> + -- Name --<br/>common<br/><br/>-- Definition --<br/>The species is common in the SpeciesDistributionUnit.<br/> @@ -166,7 +166,7 @@ - Public
  common + Public
  rare @@ -215,7 +215,7 @@ Notes: - -- Name --<br/>common<br/><br/>-- Definition --<br/>The species is common in the SpeciesDistributionUnit.<br/> + -- Name --<br/>rare<br/><br/>-- Definition --<br/>The species is rare in the SpeciesDistributionUnit.<br/> @@ -224,7 +224,7 @@ - Public
  present + Public
  veryRare @@ -273,7 +273,7 @@ Notes: - -- Name --<br/>present<br/><br/>-- Definition --<br/>The species is present in the SpeciesDistributionUnit.<br/> + -- Name --<br/>very rare<br/><br/>-- Definition --<br/>The species is very rare in the SpeciesDistributionUnit.<br/> @@ -282,7 +282,7 @@ - Public
  rare + Public
  present @@ -331,7 +331,7 @@ Notes: - -- Name --<br/>rare<br/><br/>-- Definition --<br/>The species is rare in the SpeciesDistributionUnit.<br/> + -- Name --<br/>present<br/><br/>-- Definition --<br/>The species is present in the SpeciesDistributionUnit.<br/> @@ -340,7 +340,7 @@ - Public
  veryRare + Public
  absent @@ -389,7 +389,7 @@ Notes: - -- Name --<br/>very rare<br/><br/>-- Definition --<br/>The species is very rare in the SpeciesDistributionUnit.<br/> + -- Name --<br/>absent<br/><br/>-- Definition --<br/>The species has been looked for but not found in the species distribution unit.<br/> diff --git a/approved/html/EARoot/EA2/EA3/EA16/EA1/EA9071.htm b/approved/html/EARoot/EA2/EA3/EA16/EA1/EA9071.htm index 72ba75509..47510bc9b 100644 --- a/approved/html/EARoot/EA2/EA3/EA16/EA1/EA9071.htm +++ b/approved/html/EARoot/EA2/EA3/EA16/EA1/EA9071.htm @@ -108,7 +108,7 @@ - Public
  concentration + Public
  wintering @@ -157,7 +157,7 @@ Notes: - -- Name --<br/>concentration<br/><br/>-- Definition --<br/>Site used for staging or roosting or migration stop/over or for moulting outside the breeding grounds and excluding wintering.<br/><br/> + -- Name --<br/>wintering<br/><br/>-- Definition --<br/>Uses the site during the winter.<br/><br/> @@ -166,7 +166,7 @@ - Public
  permanent + Public
  reproducing @@ -215,7 +215,7 @@ Notes: - -- Name --<br/>permanent<br/><br/>-- Definition --<br/>To be found throughout the year on the site (non-migratory species or plant, resident population of migratory species).<br/><br/> + -- Name --<br/>reproducing<br/><br/>-- Definition --<br/>Uses the site to raise young (e.g. breeding, nesting).<br/><br/> @@ -224,7 +224,7 @@ - Public
  reproducing + Public
  concentration @@ -273,7 +273,7 @@ Notes: - -- Name --<br/>reproducing<br/><br/>-- Definition --<br/>Uses the site to raise young (e.g. breeding, nesting).<br/><br/> + -- Name --<br/>concentration<br/><br/>-- Definition --<br/>Site used for staging or roosting or migration stop/over or for moulting outside the breeding grounds and excluding wintering.<br/><br/> @@ -282,7 +282,7 @@ - Public
  wintering + Public
  permanent @@ -331,7 +331,7 @@ Notes: - -- Name --<br/>wintering<br/><br/>-- Definition --<br/>Uses the site during the winter.<br/><br/> + -- Name --<br/>permanent<br/><br/>-- Definition --<br/>To be found throughout the year on the site (non-migratory species or plant, resident population of migratory species).<br/><br/> diff --git a/approved/html/EARoot/EA2/EA3/EA16/EA1/EA9072.htm b/approved/html/EARoot/EA2/EA3/EA16/EA1/EA9072.htm index 2899c8ebe..a46f098da 100644 --- a/approved/html/EARoot/EA2/EA3/EA16/EA1/EA9072.htm +++ b/approved/html/EARoot/EA2/EA3/EA16/EA1/EA9072.htm @@ -166,7 +166,7 @@ - Public
  excludes + Public
  includedIn @@ -215,7 +215,7 @@ Notes: - -- Name --<br/>excludes<br/><br/>-- Definition --<br/>The concepts exclude each other.<br/><br/> + -- Name --<br/>included in<br/><br/>-- Definition --<br/>The concept of the localSpeciesName is included in the concept of the referenceSpeciesName.<br/><br/> @@ -224,7 +224,7 @@ - Public
  includedIn + Public
  includes @@ -273,7 +273,7 @@ Notes: - -- Name --<br/>included in<br/><br/>-- Definition --<br/>The concept of the localSpeciesName is included in the concept of the referenceSpeciesName.<br/><br/> + -- Name --<br/>includes<br/><br/>-- Definition --<br/>The concept of the localSpeciesName is includes the concept of the referenceSpeciesName.<br/><br/> @@ -282,7 +282,7 @@ - Public
  includes + Public
  overlaps @@ -331,7 +331,7 @@ Notes: - -- Name --<br/>includes<br/><br/>-- Definition --<br/>The concept of the localSpeciesName is includes the concept of the referenceSpeciesName.<br/><br/> + -- Name --<br/>overlaps<br/><br/>-- Definition --<br/>The concepts overlap, but each one has a part that is not included in the other.<br/><br/> @@ -340,7 +340,7 @@ - Public
  overlaps + Public
  excludes @@ -389,7 +389,7 @@ Notes: - -- Name --<br/>overlaps<br/><br/>-- Definition --<br/>The concepts overlap, but each one has a part that is not included in the other.<br/><br/> + -- Name --<br/>excludes<br/><br/>-- Definition --<br/>The concepts exclude each other.<br/><br/> diff --git a/approved/html/EARoot/EA2/EA3/EA16/EA1/EA9073.htm b/approved/html/EARoot/EA2/EA3/EA16/EA1/EA9073.htm index 2aa7d38e6..28f484a8d 100644 --- a/approved/html/EARoot/EA2/EA3/EA16/EA1/EA9073.htm +++ b/approved/html/EARoot/EA2/EA3/EA16/EA1/EA9073.htm @@ -108,7 +108,7 @@ - Public Integer
  lowerBound + Public Integer
  upperBound @@ -157,7 +157,7 @@ Notes: - -- Name --<br/>lower bound<br/><br/>-- Definition --<br/>The lower limit of the range.  If the value of this attribute is null and upperBound is populated, this implies that the value is between the upperBound and zero.<br/><br/> + -- Name --<br/>upper bound<br/><br/>-- Definition --<br/>The upper limit of the range.  If the value of this attribute is null and lowerBound is populated, this implies that the value is between the lowerBound and infinity.<br/><br/> @@ -166,7 +166,7 @@ - Public Integer
  upperBound + Public Integer
  lowerBound @@ -215,7 +215,7 @@ Notes: - -- Name --<br/>upper bound<br/><br/>-- Definition --<br/>The upper limit of the range.  If the value of this attribute is null and lowerBound is populated, this implies that the value is between the lowerBound and infinity.<br/><br/> + -- Name --<br/>lower bound<br/><br/>-- Definition --<br/>The lower limit of the range.  If the value of this attribute is null and upperBound is populated, this implies that the value is between the upperBound and zero.<br/><br/> diff --git a/approved/html/EARoot/EA2/EA3/EA16/EA1/EA9075.htm b/approved/html/EARoot/EA2/EA3/EA16/EA1/EA9075.htm index 056d47352..7ce5bf0fb 100644 --- a/approved/html/EARoot/EA2/EA3/EA16/EA1/EA9075.htm +++ b/approved/html/EARoot/EA2/EA3/EA16/EA1/EA9075.htm @@ -108,7 +108,7 @@ - Public
  eunis + Public
  eunomen @@ -157,7 +157,7 @@ Notes: - -- Name --<br/>eunis<br/><br/>-- Definition --<br/>Names and taxonomic concepts as defined by the EUNIS Species list.<br/><br/> + -- Name --<br/>eunomen<br/><br/>-- Definition --<br/>Names and taxonomic concepts as defined by the Pan European Species Inventory, published by eunomen.eu/portal.<br/><br/> @@ -166,7 +166,7 @@ - Public
  eunomen + Public
  eunis @@ -215,7 +215,7 @@ Notes: - -- Name --<br/>eunomen<br/><br/>-- Definition --<br/>Names and taxonomic concepts as defined by the Pan European Species Inventory, published by eunomen.eu/portal.<br/><br/> + -- Name --<br/>eunis<br/><br/>-- Definition --<br/>Names and taxonomic concepts as defined by the EUNIS Species list.<br/><br/> diff --git a/approved/html/EARoot/EA2/EA3/EA16/EA1/EA9077.htm b/approved/html/EARoot/EA2/EA3/EA16/EA1/EA9077.htm index aad518981..76e7dcfa2 100644 --- a/approved/html/EARoot/EA2/EA3/EA16/EA1/EA9077.htm +++ b/approved/html/EARoot/EA2/EA3/EA16/EA1/EA9077.htm @@ -111,7 +111,7 @@ - Public DateTime
  beginLifespanVersion + Public Identifier
  inspireId @@ -129,7 +129,7 @@ Stereotype: - <<voidable>> + Ordered: @@ -137,7 +137,7 @@ Range: - + Range:0 to 1 Transient: @@ -160,7 +160,7 @@ Notes: - -- Name --<br/>begin lifespan version<br/><br/>-- Definition --<br/>Date and time at which this version of the spatial object was inserted or changed in the spatial data set.<br/><br/>-- Description --<br/>NOTE This date is recorded to enable the generation of change only update files.<br/> + -- Name --<br/>inspire id<br/><br/>-- Definition --<br/>External object identifier of the spatial object.<br/><br/>-- Description --<br/>An external object identifier is a unique object identifier published by the responsible body, which may be used by external applications to reference the spatial object. The identifier is an identifier of the spatial object, not an identifier of the real-world phenomenon.<br/><br/> @@ -169,7 +169,7 @@ - Public GM_MultiSurface
  domainExtent + Public CharacterString
  name @@ -218,7 +218,7 @@ Notes: - -- Name --<br/>domain extent<br/><br/>-- Definition --<br/>The geographic extent of the domain of the feature collection.<br/> + -- Name --<br/>name<br/><br/>-- Definition --<br/>Name of a specific data set provided for Species Distribution.<br/><br/>-- Description --<br/>A short descriptive identification name for a specific dataset provided by an institution.<br/>EXAMPLE 1 Redlisted_species_Norway<br/>EXAMPLE 2 Invasive_alien_species_ Ireland<br/>EXAMPLE 3 Articles17_report_Germany<br/> @@ -227,7 +227,7 @@ - Public DateTime
  endLifespanVersion + Public GM_MultiSurface
  domainExtent @@ -253,7 +253,7 @@ Range: - Range:0 to 1 + Transient: @@ -276,7 +276,7 @@ Notes: - -- Name --<br/>begin lifespan version<br/><br/>-- Definition --<br/>Date and time at which this version of the spatial object was superseded or retired in the spatial data set.<br/><br/>-- Description --<br/>NOTE This date is recorded to enable the generation of change only update files.<br/><br/> + -- Name --<br/>domain extent<br/><br/>-- Definition --<br/>The geographic extent of the domain of the feature collection.<br/> @@ -285,7 +285,7 @@ - Public Identifier
  inspireId + Public DateTime
  beginLifespanVersion @@ -303,7 +303,7 @@ Stereotype: - + <<voidable>> Ordered: @@ -311,7 +311,7 @@ Range: - Range:0 to 1 + Transient: @@ -334,7 +334,7 @@ Notes: - -- Name --<br/>inspire id<br/><br/>-- Definition --<br/>External object identifier of the spatial object.<br/><br/>-- Description --<br/>An external object identifier is a unique object identifier published by the responsible body, which may be used by external applications to reference the spatial object. The identifier is an identifier of the spatial object, not an identifier of the real-world phenomenon.<br/><br/> + -- Name --<br/>begin lifespan version<br/><br/>-- Definition --<br/>Date and time at which this version of the spatial object was inserted or changed in the spatial data set.<br/><br/>-- Description --<br/>NOTE This date is recorded to enable the generation of change only update files.<br/> @@ -343,7 +343,7 @@ - Public CharacterString
  name + Public DateTime
  endLifespanVersion @@ -369,7 +369,7 @@ Range: - + Range:0 to 1 Transient: @@ -392,7 +392,7 @@ Notes: - -- Name --<br/>name<br/><br/>-- Definition --<br/>Name of a specific data set provided for Species Distribution.<br/><br/>-- Description --<br/>A short descriptive identification name for a specific dataset provided by an institution.<br/>EXAMPLE 1 Redlisted_species_Norway<br/>EXAMPLE 2 Invasive_alien_species_ Ireland<br/>EXAMPLE 3 Articles17_report_Germany<br/> + -- Name --<br/>begin lifespan version<br/><br/>-- Definition --<br/>Date and time at which this version of the spatial object was superseded or retired in the spatial data set.<br/><br/>-- Description --<br/>NOTE This date is recorded to enable the generation of change only update files.<br/><br/> diff --git a/approved/html/EARoot/EA2/EA3/EA16/EA1/EA9078.htm b/approved/html/EARoot/EA2/EA3/EA16/EA1/EA9078.htm index b07c77afe..9c2d031b4 100644 --- a/approved/html/EARoot/EA2/EA3/EA16/EA1/EA9078.htm +++ b/approved/html/EARoot/EA2/EA3/EA16/EA1/EA9078.htm @@ -111,7 +111,7 @@ - Public DateTime
  beginLifespanVersion + Public Identifier
  inspireId @@ -129,7 +129,7 @@ Stereotype: - <<voidable>> + Ordered: @@ -137,7 +137,7 @@ Range: - + Range:0 to 1 Transient: @@ -160,7 +160,7 @@ Notes: - -- Name --<br/>begin lifespan version<br/><br/>-- Definition --<br/>Date and time at which this version of the spatial object was inserted or changed in the spatial data set.<br/><br/>-- Description --<br/>NOTE This date is recorded to enable the generation of change only update files.<br/> + -- Name --<br/>inspire id<br/><br/>-- Definition --<br/>External object identifier of the spatial object.<br/><br/>-- Description --<br/>An external object identifier is a unique object identifier published by the responsible body, which may be used by external applications to reference the spatial object. The identifier is an identifier of the spatial object, not an identifier of the real-world phenomenon.<br/><br/> @@ -169,7 +169,7 @@ - Public DistributionInfoType
  distributionInfo + Public GM_Object
  geometry @@ -187,7 +187,7 @@ Stereotype: - <<voidable>> + Ordered: @@ -195,7 +195,7 @@ Range: - Range:0 to * + Range:0 to 1 Transient: @@ -218,7 +218,7 @@ Notes: - -- Name --<br/>distribution info<br/><br/>-- Definition --<br/>The description of the subject of distribution (occurrences or population), the indication of the count of observations or population size of the particular species, species group or taxon rank and its distribution or isolation within the species distribution unit.<br/><br/> + -- Name --<br/>geometry<br/><br/>-- Definition --<br/>The geometry of each unit in a collection.<br/><br/>-- Description --<br/>The geometry (e.g. line or polygon) of each individual spatial objects in the collection<br/> @@ -227,7 +227,7 @@ - Public DateTime
  endLifespanVersion + Public SpeciesNameType
  speciesName @@ -245,7 +245,7 @@ Stereotype: - <<voidable>> + Ordered: @@ -253,7 +253,7 @@ Range: - Range:0 to 1 + Transient: @@ -276,7 +276,7 @@ Notes: - -- Name --<br/>begin lifespan version<br/><br/>-- Definition --<br/>Date and time at which this version of the spatial object was inserted or changed in the spatial data set.<br/><br/>-- Description --<br/>NOTE This date is recorded to enable the generation of change only update files.<br/> + -- Name --<br/>species name<br/><br/>-- Definition --<br/>Identifier and scientific name, including the author, taken from an international reference list, optionally completed by a locally used name and its taxonomic concept relationship to the reference name.<br/><br/>-- Description --<br/>The authorized ReferenceSpeciesScheme provides reference species list which defines the ReferenceSpeciesName with its scientific name plus author and ReferenceSpeciesId.  The LocalSpeciesName provides nomenclatural and taxonomical information about the locally used species name and the taxonomic concepts implied by the use of this name according to a given reference. If omitted the name and concept given by the referenceSpeciesId according to the referenceSpeciesScheme has been used locally.<br/><br/> @@ -285,7 +285,7 @@ - Public GM_Object
  geometry + Public DistributionInfoType
  distributionInfo @@ -303,7 +303,7 @@ Stereotype: - + <<voidable>> Ordered: @@ -311,7 +311,7 @@ Range: - Range:0 to 1 + Range:0 to * Transient: @@ -334,7 +334,7 @@ Notes: - -- Name --<br/>geometry<br/><br/>-- Definition --<br/>The geometry of each unit in a collection.<br/><br/>-- Description --<br/>The geometry (e.g. line or polygon) of each individual spatial objects in the collection<br/> + -- Name --<br/>distribution info<br/><br/>-- Definition --<br/>The description of the subject of distribution (occurrences or population), the indication of the count of observations or population size of the particular species, species group or taxon rank and its distribution or isolation within the species distribution unit.<br/><br/> @@ -343,7 +343,7 @@ - Public Identifier
  inspireId + Public DateTime
  beginLifespanVersion @@ -361,7 +361,7 @@ Stereotype: - + <<voidable>> Ordered: @@ -369,7 +369,7 @@ Range: - Range:0 to 1 + Transient: @@ -392,7 +392,7 @@ Notes: - -- Name --<br/>inspire id<br/><br/>-- Definition --<br/>External object identifier of the spatial object.<br/><br/>-- Description --<br/>An external object identifier is a unique object identifier published by the responsible body, which may be used by external applications to reference the spatial object. The identifier is an identifier of the spatial object, not an identifier of the real-world phenomenon.<br/><br/> + -- Name --<br/>begin lifespan version<br/><br/>-- Definition --<br/>Date and time at which this version of the spatial object was inserted or changed in the spatial data set.<br/><br/>-- Description --<br/>NOTE This date is recorded to enable the generation of change only update files.<br/> @@ -401,7 +401,7 @@ - Public SpeciesNameType
  speciesName + Public DateTime
  endLifespanVersion @@ -419,7 +419,7 @@ Stereotype: - + <<voidable>> Ordered: @@ -427,7 +427,7 @@ Range: - + Range:0 to 1 Transient: @@ -450,7 +450,7 @@ Notes: - -- Name --<br/>species name<br/><br/>-- Definition --<br/>Identifier and scientific name, including the author, taken from an international reference list, optionally completed by a locally used name and its taxonomic concept relationship to the reference name.<br/><br/>-- Description --<br/>The authorized ReferenceSpeciesScheme provides reference species list which defines the ReferenceSpeciesName with its scientific name plus author and ReferenceSpeciesId.  The LocalSpeciesName provides nomenclatural and taxonomical information about the locally used species name and the taxonomic concepts implied by the use of this name according to a given reference. If omitted the name and concept given by the referenceSpeciesId according to the referenceSpeciesScheme has been used locally.<br/><br/> + -- Name --<br/>begin lifespan version<br/><br/>-- Definition --<br/>Date and time at which this version of the spatial object was inserted or changed in the spatial data set.<br/><br/>-- Description --<br/>NOTE This date is recorded to enable the generation of change only update files.<br/> diff --git a/approved/html/EARoot/EA2/EA3/EA16/EA1/EA9079.htm b/approved/html/EARoot/EA2/EA3/EA16/EA1/EA9079.htm index 98ce2468b..3204947b3 100644 --- a/approved/html/EARoot/EA2/EA3/EA16/EA1/EA9079.htm +++ b/approved/html/EARoot/EA2/EA3/EA16/EA1/EA9079.htm @@ -108,7 +108,7 @@ - Public LocalSpeciesNameCodeValue
  localSpeciesId + Public ReferenceSpeciesCodeValue
  referenceSpeciesId @@ -126,7 +126,7 @@ Stereotype: - <<voidable>> + Ordered: @@ -134,7 +134,7 @@ Range: - Range:0 to 1 + Transient: @@ -150,14 +150,14 @@ - obligation=technicalGuidance
+ obligation=implementingRule
Notes: - -- Name --<br/>local species id<br/><br/>-- Definition --<br/>Identifier used in national nomenclature.<br/><br/>-- Description --<br/>The taxonID used in national nomenclature databases.<br/><br/> + -- Name --<br/>reference species id<br/><br/>-- Definition --<br/>Identifier of one of the reference lists given by the referenceSpeciesScheme.<br/><br/>-- Description --<br/>In the referenceSpeciesScheme the species IDs are linked to scientific names and corresponding authors using GUIDs<br/><br/>
@@ -166,7 +166,7 @@ - Public CharacterString
  localSpeciesName + Public ReferenceSpeciesSchemeValue
  referenceSpeciesScheme @@ -184,7 +184,7 @@ Stereotype: - <<voidable>> + Ordered: @@ -192,7 +192,7 @@ Range: - Range:0 to 1 + Transient: @@ -208,14 +208,14 @@ - + obligation=implementingRule
Notes: - -- Name --<br/>local species name<br/><br/>-- Definition --<br/>Scientific name, including the author, used in national nomenclature with its national taxonomic concept.<br/><br/>-- Description --<br/>The LocalSpeciesName provides nomenclatural and taxonomical information about the locally used species name and the taxonomic concepts implied by the use of this name according to a given reference. If omitted the name and concept given by the referenceSpeciesId according to the referenceSpeciesScheme has been used locally.<br/><br/> + -- Name --<br/>reference species scheme<br/><br/>-- Definition --<br/>Reference list defining a nomenclatural and taxonomical standard to which all local names and taxonomic concepts shall be mapped.<br/><br/>-- Description --<br/>Code list of accepted PAN-European taxonomical reference lists defining the nomenclature and taxonomical concept of a given species name. This must not be regarded as the ultimate taxonomic truth: this will always change. It serves as a definition of a taxonomic concept described by systematic and synonym relations where other names and there inherent taxonomic concepts can be mapped to. The code list comprises of Eu-Nomen, EUNIS and Natura2000. In these sources harmonized species GUIDs and names are maintained by institutions with an assignment outside INSPIRE and the species names are to be retrieved through webservices using GUIDs. Only one of these list must be used for one taxon. The priority is as follows: 1) EU-Nomen, 2) EUNIS, 3) Natura2000. This implies: if a taxon is listed in EU-Nomen, this reference must be used as first choice. If it is not listed in EU-Nomen, the second choice is EUNIS, if not in EUNIS, Natura2000 can be used.<br/><br/>
@@ -224,7 +224,7 @@ - Public CharacterString
  localSpeciesScheme + Public CharacterString
  referenceSpeciesName @@ -250,7 +250,7 @@ Range: - Range:0 to 1 + Transient: @@ -273,7 +273,7 @@ Notes: - -- Name --<br/>local species scheme<br/><br/>-- Definition --<br/>Name of local species classification scheme (bibliographic reference).<br/><br/> + -- Name --<br/>reference species name<br/><br/>-- Definition --<br/>The scientific name, including the author, used in the authorized ReferenceSpeciesScheme.<br/><br/>-- Description --<br/>The authorized ReferenceSpeciesScheme (EU-Nomen, Unis and Nature Directives) provides reference species lists which defines the ReferenceSpeciesName with its scientific name plus author and ReferenceSpeciesId.<br/><br/> @@ -282,7 +282,7 @@ - Public QualifierValue
  qualifier + Public LocalSpeciesNameCodeValue
  localSpeciesId @@ -324,14 +324,14 @@ - obligation=implementingRule
+ obligation=technicalGuidance
Notes: - -- Name --<br/>qualifier<br/><br/>-- Definition --<br/>Specifies the taxonomic concept relationship between local species identifier and the reference species identifier.<br/><br/>-- Description --<br/>Defines how the local species name conceptually is related to the referenceSpeciesID, either congruent, included in, includes,  overlaps or excludes<br/><br/> + -- Name --<br/>local species id<br/><br/>-- Definition --<br/>Identifier used in national nomenclature.<br/><br/>-- Description --<br/>The taxonID used in national nomenclature databases.<br/><br/>
@@ -340,7 +340,7 @@ - Public ReferenceSpeciesCodeValue
  referenceSpeciesId + Public CharacterString
  localSpeciesScheme @@ -358,7 +358,7 @@ Stereotype: - + <<voidable>> Ordered: @@ -366,7 +366,7 @@ Range: - + Range:0 to 1 Transient: @@ -382,14 +382,14 @@ - obligation=implementingRule
+
Notes: - -- Name --<br/>reference species id<br/><br/>-- Definition --<br/>Identifier of one of the reference lists given by the referenceSpeciesScheme.<br/><br/>-- Description --<br/>In the referenceSpeciesScheme the species IDs are linked to scientific names and corresponding authors using GUIDs<br/><br/> + -- Name --<br/>local species scheme<br/><br/>-- Definition --<br/>Name of local species classification scheme (bibliographic reference).<br/><br/>
@@ -398,7 +398,7 @@ - Public CharacterString
  referenceSpeciesName + Public CharacterString
  localSpeciesName @@ -424,7 +424,7 @@ Range: - + Range:0 to 1 Transient: @@ -447,7 +447,7 @@ Notes: - -- Name --<br/>reference species name<br/><br/>-- Definition --<br/>The scientific name, including the author, used in the authorized ReferenceSpeciesScheme.<br/><br/>-- Description --<br/>The authorized ReferenceSpeciesScheme (EU-Nomen, Unis and Nature Directives) provides reference species lists which defines the ReferenceSpeciesName with its scientific name plus author and ReferenceSpeciesId.<br/><br/> + -- Name --<br/>local species name<br/><br/>-- Definition --<br/>Scientific name, including the author, used in national nomenclature with its national taxonomic concept.<br/><br/>-- Description --<br/>The LocalSpeciesName provides nomenclatural and taxonomical information about the locally used species name and the taxonomic concepts implied by the use of this name according to a given reference. If omitted the name and concept given by the referenceSpeciesId according to the referenceSpeciesScheme has been used locally.<br/><br/> @@ -456,7 +456,7 @@ - Public ReferenceSpeciesSchemeValue
  referenceSpeciesScheme + Public QualifierValue
  qualifier @@ -474,7 +474,7 @@ Stereotype: - + <<voidable>> Ordered: @@ -482,7 +482,7 @@ Range: - + Range:0 to 1 Transient: @@ -505,7 +505,7 @@ Notes: - -- Name --<br/>reference species scheme<br/><br/>-- Definition --<br/>Reference list defining a nomenclatural and taxonomical standard to which all local names and taxonomic concepts shall be mapped.<br/><br/>-- Description --<br/>Code list of accepted PAN-European taxonomical reference lists defining the nomenclature and taxonomical concept of a given species name. This must not be regarded as the ultimate taxonomic truth: this will always change. It serves as a definition of a taxonomic concept described by systematic and synonym relations where other names and there inherent taxonomic concepts can be mapped to. The code list comprises of Eu-Nomen, EUNIS and Natura2000. In these sources harmonized species GUIDs and names are maintained by institutions with an assignment outside INSPIRE and the species names are to be retrieved through webservices using GUIDs. Only one of these list must be used for one taxon. The priority is as follows: 1) EU-Nomen, 2) EUNIS, 3) Natura2000. This implies: if a taxon is listed in EU-Nomen, this reference must be used as first choice. If it is not listed in EU-Nomen, the second choice is EUNIS, if not in EUNIS, Natura2000 can be used.<br/><br/> + -- Name --<br/>qualifier<br/><br/>-- Definition --<br/>Specifies the taxonomic concept relationship between local species identifier and the reference species identifier.<br/><br/>-- Description --<br/>Defines how the local species name conceptually is related to the referenceSpeciesID, either congruent, included in, includes,  overlaps or excludes<br/><br/> diff --git a/approved/html/EARoot/EA2/EA3/EA17/EA1/EA9083.png b/approved/html/EARoot/EA2/EA3/EA17/EA1/EA9083.png index 0616e6f79..0ff997094 100644 Binary files a/approved/html/EARoot/EA2/EA3/EA17/EA1/EA9083.png and b/approved/html/EARoot/EA2/EA3/EA17/EA1/EA9083.png differ diff --git a/approved/html/EARoot/EA2/EA3/EA17/EA1/EA9085.png b/approved/html/EARoot/EA2/EA3/EA17/EA1/EA9085.png index 53f8b29c2..8f2e54502 100644 Binary files a/approved/html/EARoot/EA2/EA3/EA17/EA1/EA9085.png and b/approved/html/EARoot/EA2/EA3/EA17/EA1/EA9085.png differ diff --git a/approved/html/EARoot/EA2/EA3/EA17/EA1/EA9086.htm b/approved/html/EARoot/EA2/EA3/EA17/EA1/EA9086.htm index 4e8447d4d..eed1a4032 100644 --- a/approved/html/EARoot/EA2/EA3/EA17/EA1/EA9086.htm +++ b/approved/html/EARoot/EA2/EA3/EA17/EA1/EA9086.htm @@ -36,25 +36,25 @@ - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + +
Soil: Overview : Class diagram
@@ -65,7 +65,7 @@ Modified: - 10/09/2012 13:34:40 + 20/07/2023 17:12:39 Project: diff --git a/approved/html/EARoot/EA2/EA3/EA17/EA1/EA9087.png b/approved/html/EARoot/EA2/EA3/EA17/EA1/EA9087.png index a7769c81b..44d92dcf8 100644 Binary files a/approved/html/EARoot/EA2/EA3/EA17/EA1/EA9087.png and b/approved/html/EARoot/EA2/EA3/EA17/EA1/EA9087.png differ diff --git a/approved/html/EARoot/EA2/EA3/EA17/EA1/EA9090.htm b/approved/html/EARoot/EA2/EA3/EA17/EA1/EA9090.htm index bc1c9af3e..8e60e5c8e 100644 --- a/approved/html/EARoot/EA2/EA3/EA17/EA1/EA9090.htm +++ b/approved/html/EARoot/EA2/EA3/EA17/EA1/EA9090.htm @@ -36,18 +36,18 @@ - - - - - - - - - - - - + + + + + + + + + + + +
Soil: Overview - Vector : Class diagram
@@ -58,7 +58,7 @@ Modified: - 10/09/2012 15:16:33 + 20/07/2023 17:11:35 Project: diff --git a/approved/html/EARoot/EA2/EA3/EA17/EA1/EA9091.png b/approved/html/EARoot/EA2/EA3/EA17/EA1/EA9091.png index e3ca0223d..f8d6c8d45 100644 Binary files a/approved/html/EARoot/EA2/EA3/EA17/EA1/EA9091.png and b/approved/html/EARoot/EA2/EA3/EA17/EA1/EA9091.png differ diff --git a/approved/html/EARoot/EA2/EA3/EA17/EA1/EA9121.htm b/approved/html/EARoot/EA2/EA3/EA17/EA1/EA9121.htm index 737f751b6..e836bbd48 100644 --- a/approved/html/EARoot/EA2/EA3/EA17/EA1/EA9121.htm +++ b/approved/html/EARoot/EA2/EA3/EA17/EA1/EA9121.htm @@ -224,7 +224,7 @@ - Public FAOHorizonSubordinateValue
  FAOHorizonSubordinate + Public FAOPrimeValue
  FAOPrime @@ -250,7 +250,7 @@ Range: - Range:0 to * + Transient: @@ -273,7 +273,7 @@ Notes: - -- Name --<br/>horizon subordinate<br/><br/>-- Definition --<br/>Designations of subordinate distinctions and features within the master horizons and layers are based on profile characteristics observable in the field and are applied during the description of the soil at the site.<br/><br/>-- Description --<br/>Lower case letters are used as suffixes to designate specific kinds of master horizons and layers, and other features.<br/><br/>SOURCE <i>Guidelines for soil description, 4th edition</i>, Food and Agriculture Organization of the United Nations, Rome, 2006. table 85<br/> + -- Name --<br/>FAO prime<br/><br/>-- Definition --<br/>A prime and double prime may be used to connotate master horizon symbol of the lower of two respectively three horizons having identical Arabic-numeral prefixes and letter combinations.<br/><br/>-- Description --<br/>Identical designations may be appropriate for two or more horizons or layers separated by at least one horizon or layer of a different kind in the same pedon. The sequence A-E-Bt-E-Btx-C is an example - the soil has two E horizons. To make communication easier, a prime is used with the master horizon symbol of the lower of two horizons having identical letter designations: A-E-Bt-E’-Btx-C.The prime is applied to the capital letter designation, and any lower case symbol follows it: B’t. The prime is not used unless all letters of the designations of two different layers are identical. Prime can be used for both minerals or organic soils.<br/><br/>SOURCE: <i>Guidelines for soil description, 4th edition</i>, Food and Agriculture Organization of the United Nations, Rome, 2006.<br/> @@ -282,7 +282,7 @@ - Public Integer
  FAOHorizonVertical + Public FAOHorizonSubordinateValue
  FAOHorizonSubordinate @@ -308,7 +308,7 @@ Range: - Range:0 to 1 + Range:0 to * Transient: @@ -324,14 +324,14 @@ - + obligation=implementingRule
Notes: - -- Name --<br/>horizon vertical<br/><br/>-- Definition --<br/>Order number of the vertical subdivision in the horizon notation.<br/><br/>-- Description --<br/>The number is used to designate the horizontal subdivision of a horizon identified by a single set of letter symbol on the basis of structure, texture, colour, etc. <br/>The number 1 is used to designate the upper part of the horizon. The number 2 the part of the horizon situated below, etc. If there is no horizontal subdivision made, no number is given.<br/><br/>NOTE the use of the word vertical is misleading in the <i>Guidelines for soil description, 4th edition</i>, Food and Agriculture Organization of the United Nations, Rome, 2006., because the horizons are separated in two or several horizontal subdomains. Vertical denotes the order in vertical direction.<br/> + -- Name --<br/>horizon subordinate<br/><br/>-- Definition --<br/>Designations of subordinate distinctions and features within the master horizons and layers are based on profile characteristics observable in the field and are applied during the description of the soil at the site.<br/><br/>-- Description --<br/>Lower case letters are used as suffixes to designate specific kinds of master horizons and layers, and other features.<br/><br/>SOURCE <i>Guidelines for soil description, 4th edition</i>, Food and Agriculture Organization of the United Nations, Rome, 2006. table 85<br/>
@@ -340,7 +340,7 @@ - Public FAOPrimeValue
  FAOPrime + Public Integer
  FAOHorizonVertical @@ -366,7 +366,7 @@ Range: - + Range:0 to 1 Transient: @@ -382,14 +382,14 @@ - obligation=implementingRule
+
Notes: - -- Name --<br/>FAO prime<br/><br/>-- Definition --<br/>A prime and double prime may be used to connotate master horizon symbol of the lower of two respectively three horizons having identical Arabic-numeral prefixes and letter combinations.<br/><br/>-- Description --<br/>Identical designations may be appropriate for two or more horizons or layers separated by at least one horizon or layer of a different kind in the same pedon. The sequence A-E-Bt-E-Btx-C is an example - the soil has two E horizons. To make communication easier, a prime is used with the master horizon symbol of the lower of two horizons having identical letter designations: A-E-Bt-E’-Btx-C.The prime is applied to the capital letter designation, and any lower case symbol follows it: B’t. The prime is not used unless all letters of the designations of two different layers are identical. Prime can be used for both minerals or organic soils.<br/><br/>SOURCE: <i>Guidelines for soil description, 4th edition</i>, Food and Agriculture Organization of the United Nations, Rome, 2006.<br/> + -- Name --<br/>horizon vertical<br/><br/>-- Definition --<br/>Order number of the vertical subdivision in the horizon notation.<br/><br/>-- Description --<br/>The number is used to designate the horizontal subdivision of a horizon identified by a single set of letter symbol on the basis of structure, texture, colour, etc. <br/>The number 1 is used to designate the upper part of the horizon. The number 2 the part of the horizon situated below, etc. If there is no horizontal subdivision made, no number is given.<br/><br/>NOTE the use of the word vertical is misleading in the <i>Guidelines for soil description, 4th edition</i>, Food and Agriculture Organization of the United Nations, Rome, 2006., because the horizons are separated in two or several horizontal subdomains. Vertical denotes the order in vertical direction.<br/>
diff --git a/approved/html/EARoot/EA2/EA3/EA17/EA1/EA9130.htm b/approved/html/EARoot/EA2/EA3/EA17/EA1/EA9130.htm index e08216a21..fa90b8f76 100644 --- a/approved/html/EARoot/EA2/EA3/EA17/EA1/EA9130.htm +++ b/approved/html/EARoot/EA2/EA3/EA17/EA1/EA9130.htm @@ -108,7 +108,7 @@ - Public Boolean
  isOriginalClassification + Public OtherSoilNameTypeValue
  soilName @@ -150,14 +150,14 @@ - + obligation=technicalGuidance
Notes: - -- Name --<br/>is original classification<br/><br/>-- Definition --<br/>Boolean value to indicate whether the specified classification scheme was the original classification scheme to describe the profile.<br/><br/>-- Description --<br/>This is to indicate whether the soil assignation has been determined in the field (or for - derived soil profiles during the original derivation process), or has been adapted, changed or re-assigned on the basis of the original soil description or assignation later. This might be relevant for data quality information.<br/><br/> + -- Name --<br/>soil name<br/><br/>-- Definition --<br/>name of the soil profile according to a specific classification scheme.<br/><br/>-- Description --<br/>EXAMPLE Fluventic Haploxerept, according to Soil Taxonomy (USDA 2006).<br/><br/>
@@ -166,7 +166,7 @@ - Public OtherSoilNameTypeValue
  soilName + Public Boolean
  isOriginalClassification @@ -208,14 +208,14 @@ - obligation=technicalGuidance
+
Notes: - -- Name --<br/>soil name<br/><br/>-- Definition --<br/>name of the soil profile according to a specific classification scheme.<br/><br/>-- Description --<br/>EXAMPLE Fluventic Haploxerept, according to Soil Taxonomy (USDA 2006).<br/><br/> + -- Name --<br/>is original classification<br/><br/>-- Definition --<br/>Boolean value to indicate whether the specified classification scheme was the original classification scheme to describe the profile.<br/><br/>-- Description --<br/>This is to indicate whether the soil assignation has been determined in the field (or for - derived soil profiles during the original derivation process), or has been adapted, changed or re-assigned on the basis of the original soil description or assignation later. This might be relevant for data quality information.<br/><br/>
diff --git a/approved/html/EARoot/EA2/EA3/EA17/EA1/EA9133.htm b/approved/html/EARoot/EA2/EA3/EA17/EA1/EA9133.htm index 9a2103214..255c962be 100644 --- a/approved/html/EARoot/EA2/EA3/EA17/EA1/EA9133.htm +++ b/approved/html/EARoot/EA2/EA3/EA17/EA1/EA9133.htm @@ -111,7 +111,7 @@ - Public DateTime
  beginLifespanVersion + Public Identifier
  inspireId @@ -129,7 +129,7 @@ Stereotype: - <<lifeCycleInfo>> + Ordered: @@ -137,7 +137,7 @@ Range: - + Range:0 to 1 Transient: @@ -160,7 +160,7 @@ Notes: - -- Name --<br/>begin lifespan version<br/><br/>-- Definition --<br/>Date and time at which this version of the spatial object was inserted or changed in the spatial data set.<br/><br/> + -- Name --<br/>inspire Id<br/><br/>-- Definition --<br/>External object identifier of the profile element.<br/><br/>-- Description --<br/>NOTE An external object identifier is a unique object identifier published by the responsible body, which may be used by external applications to reference the spatial object. The identifier is an identifier of the spatial object, not an identifier of the real-world phenomenon.<br/><br/> @@ -169,7 +169,7 @@ - Public DateTime
  endLifespanVersion + Public ParticleSizeFractionType
  particleSizeFraction @@ -187,7 +187,7 @@ Stereotype: - <<lifeCycleInfo>> + <<voidable>> Ordered: @@ -195,7 +195,7 @@ Range: - Range:0 to 1 + Transient: @@ -218,7 +218,7 @@ Notes: - -- Name --<br/>end lifespan version<br/><br/>-- Definition --<br/>Date and time at which this version of the spatial object was superseded or retired in the spatial data set.<br/><br/> + -- Name --<br/>particle size fraction<br/><br/>-- Definition --<br/>Mineral part of the soil, fractioned on the basis of size (diameter), limits of the particles. It indicates how much of the mineral soil material is composed of soil particles of the specified size range.<br/>-- Description --<br/><br/>SOURCE NRCS Natural Resources Conservation Service, Soil survey laboratory information manual, Soil survey investigation report n.45 version 1.0 May 1995 pag. 11<br/> @@ -227,7 +227,7 @@ - Public Identifier
  inspireId + Public RangeType
  profileElementDepthRange @@ -253,7 +253,7 @@ Range: - Range:0 to 1 + Transient: @@ -276,7 +276,7 @@ Notes: - -- Name --<br/>inspire Id<br/><br/>-- Definition --<br/>External object identifier of the profile element.<br/><br/>-- Description --<br/>NOTE An external object identifier is a unique object identifier published by the responsible body, which may be used by external applications to reference the spatial object. The identifier is an identifier of the spatial object, not an identifier of the real-world phenomenon.<br/><br/> + -- Name --<br/>profile element depth range<br/><br/>-- Definition --<br/>Upper and lower depth of the profile element (layer or horizon) measured from the surface (0 cm) of a soil profile (in cm).<br/><br/>-- Description --<br/>Depth range consists of the average upper and lower depth of appearance of the profile element from the surface.<br/><br/>NOTE Most soil boundaries are zones of transition rather than sharp lines of division. The average depth of the upper boundaries and the average depth of the lower boundaries of each profile element are given in centimetres, measured from the surface (including organic and mineral covers) of the soil downwards, i.e. all depth values are positive numbers. <br/>EXAMPLE H horizon 0-5 cm, A horizon 5-30 cm, B horizon 30-80 cm<br/><br/>NOTE Following rules should be taken into account<br/><br/><ul>
<li>lowerValue and upperValue: should be positive values, </li><li>upperValue is the depth from the top of the element (e.g. 20)</li><li>lowerValue is the depth of the bottom of the element (e.g. 40)</li><li>if only upperValue is indicated: it is assumed that the lowerValue is unknown; this is only possible for the deepest layer or horizon of a profile.</li><li>if only lowerValue is indicated: it is assumed that the upperValue equals 0, and thus the range is between 0 and the lowerValue value</li></ul><p/> @@ -285,7 +285,7 @@ - Public ParticleSizeFractionType
  particleSizeFraction + Public DateTime
  beginLifespanVersion @@ -303,7 +303,7 @@ Stereotype: - <<voidable>> + <<lifeCycleInfo>> Ordered: @@ -334,7 +334,7 @@ Notes: - -- Name --<br/>particle size fraction<br/><br/>-- Definition --<br/>Mineral part of the soil, fractioned on the basis of size (diameter), limits of the particles. It indicates how much of the mineral soil material is composed of soil particles of the specified size range.<br/>-- Description --<br/><br/>SOURCE NRCS Natural Resources Conservation Service, Soil survey laboratory information manual, Soil survey investigation report n.45 version 1.0 May 1995 pag. 11<br/> + -- Name --<br/>begin lifespan version<br/><br/>-- Definition --<br/>Date and time at which this version of the spatial object was inserted or changed in the spatial data set.<br/><br/> @@ -343,7 +343,7 @@ - Public RangeType
  profileElementDepthRange + Public DateTime
  endLifespanVersion @@ -361,7 +361,7 @@ Stereotype: - + <<lifeCycleInfo>> Ordered: @@ -369,7 +369,7 @@ Range: - + Range:0 to 1 Transient: @@ -392,7 +392,7 @@ Notes: - -- Name --<br/>profile element depth range<br/><br/>-- Definition --<br/>Upper and lower depth of the profile element (layer or horizon) measured from the surface (0 cm) of a soil profile (in cm).<br/><br/>-- Description --<br/>Depth range consists of the average upper and lower depth of appearance of the profile element from the surface.<br/><br/>NOTE Most soil boundaries are zones of transition rather than sharp lines of division. The average depth of the upper boundaries and the average depth of the lower boundaries of each profile element are given in centimetres, measured from the surface (including organic and mineral covers) of the soil downwards, i.e. all depth values are positive numbers. <br/>EXAMPLE H horizon 0-5 cm, A horizon 5-30 cm, B horizon 30-80 cm<br/><br/>NOTE Following rules should be taken into account<br/><br/><ul>
<li>lowerValue and upperValue: should be positive values, </li><li>upperValue is the depth from the top of the element (e.g. 20)</li><li>lowerValue is the depth of the bottom of the element (e.g. 40)</li><li>if only upperValue is indicated: it is assumed that the lowerValue is unknown; this is only possible for the deepest layer or horizon of a profile.</li><li>if only lowerValue is indicated: it is assumed that the upperValue equals 0, and thus the range is between 0 and the lowerValue value</li></ul><p/> + -- Name --<br/>end lifespan version<br/><br/>-- Definition --<br/>Date and time at which this version of the spatial object was superseded or retired in the spatial data set.<br/><br/> diff --git a/approved/html/EARoot/EA2/EA3/EA17/EA1/EA9135.htm b/approved/html/EARoot/EA2/EA3/EA17/EA1/EA9135.htm index 9ef0fab3c..aa0f11a2a 100644 --- a/approved/html/EARoot/EA2/EA3/EA17/EA1/EA9135.htm +++ b/approved/html/EARoot/EA2/EA3/EA17/EA1/EA9135.htm @@ -109,7 +109,7 @@ - Public Real
  lowerValue + Public Real
  upperValue @@ -158,7 +158,7 @@ Notes: - -- Name --<br/>lower value<br/><br/>-- Definition --<br/>value defining the lower limit of a specific property.<br/><br/> + -- Name --<br/>upper value<br/><br/>-- Definition --<br/>value defining the upper limit of a specific property.<br/><br/> @@ -167,7 +167,7 @@ - Public UnitOfMeasure
  uom + Public Real
  lowerValue @@ -216,7 +216,7 @@ Notes: - -- Name --<br/>unit of measure<br/><br/>-- Definition --<br/>The unit of measure that is used to express the values of the range.<br/> + -- Name --<br/>lower value<br/><br/>-- Definition --<br/>value defining the lower limit of a specific property.<br/><br/> @@ -225,7 +225,7 @@ - Public Real
  upperValue + Public UnitOfMeasure
  uom @@ -274,7 +274,7 @@ Notes: - -- Name --<br/>upper value<br/><br/>-- Definition --<br/>value defining the upper limit of a specific property.<br/><br/> + -- Name --<br/>unit of measure<br/><br/>-- Definition --<br/>The unit of measure that is used to express the values of the range.<br/> diff --git a/approved/html/EARoot/EA2/EA3/EA17/EA1/EA9136.htm b/approved/html/EARoot/EA2/EA3/EA17/EA1/EA9136.htm index 01bd79527..4655a9548 100644 --- a/approved/html/EARoot/EA2/EA3/EA17/EA1/EA9136.htm +++ b/approved/html/EARoot/EA2/EA3/EA17/EA1/EA9136.htm @@ -111,7 +111,7 @@ - Public DateTime
  beginLifespanVersion + Public Identifier
  inspireId @@ -129,7 +129,7 @@ Stereotype: - <<lifeCycleInfo>> + Ordered: @@ -137,7 +137,7 @@ Range: - + Range:0 to 1 Transient: @@ -160,7 +160,7 @@ Notes: - -- Name --<br/>begin lifespan version<br/><br/>-- Definition --<br/>Date and time at which this version of the spatial object was inserted or changed in the spatial data set.<br/><br/> + -- Name --<br/>inspire Id<br/><br/>-- Definition --<br/>External object identifier of the soil body.<br/><br/>-- Description --<br/>NOTE An external object identifier is a unique object identifier published by the responsible body, which may be used by external applications to reference the spatial object. The identifier is an identifier of the spatial object, not an identifier of the real-world phenomenon.<br/><br/> @@ -169,7 +169,7 @@ - Public DateTime
  endLifespanVersion + Public GM_MultiSurface
  geometry @@ -187,7 +187,7 @@ Stereotype: - <<lifeCycleInfo>> + Ordered: @@ -195,7 +195,7 @@ Range: - Range:0 to 1 + Transient: @@ -218,7 +218,7 @@ Notes: - -- Name --<br/>end lifespan version<br/><br/>-- Definition --<br/>Date and time at which this version of the spatial object was superseded or retired in the spatial data set.<br/><br/> + -- Name --<br/>geometry<br/><br/>-- Definition --<br/>The geometry defining the boundary of the Soil Body.<br/><br/> @@ -227,7 +227,7 @@ - Public GM_MultiSurface
  geometry + Public CharacterString
  soilBodyLabel @@ -245,7 +245,7 @@ Stereotype: - + <<voidable>> Ordered: @@ -276,7 +276,7 @@ Notes: - -- Name --<br/>geometry<br/><br/>-- Definition --<br/>The geometry defining the boundary of the Soil Body.<br/><br/> + -- Name --<br/>soil body label<br/><br/>-- Definition --<br/>Label to identify the soil body according to the specified reference framework (metadata).<br/><br/>-- Description --<br/>NOTE in traditional soil maps, this is the identifier for the explanatory text of the mapping unit of the legend.<br/><br/> @@ -285,7 +285,7 @@ - Public Identifier
  inspireId + Public DateTime
  beginLifespanVersion @@ -303,7 +303,7 @@ Stereotype: - + <<lifeCycleInfo>> Ordered: @@ -311,7 +311,7 @@ Range: - Range:0 to 1 + Transient: @@ -334,7 +334,7 @@ Notes: - -- Name --<br/>inspire Id<br/><br/>-- Definition --<br/>External object identifier of the soil body.<br/><br/>-- Description --<br/>NOTE An external object identifier is a unique object identifier published by the responsible body, which may be used by external applications to reference the spatial object. The identifier is an identifier of the spatial object, not an identifier of the real-world phenomenon.<br/><br/> + -- Name --<br/>begin lifespan version<br/><br/>-- Definition --<br/>Date and time at which this version of the spatial object was inserted or changed in the spatial data set.<br/><br/> @@ -343,7 +343,7 @@ - Public CharacterString
  soilBodyLabel + Public DateTime
  endLifespanVersion @@ -361,7 +361,7 @@ Stereotype: - <<voidable>> + <<lifeCycleInfo>> Ordered: @@ -369,7 +369,7 @@ Range: - + Range:0 to 1 Transient: @@ -392,7 +392,7 @@ Notes: - -- Name --<br/>soil body label<br/><br/>-- Definition --<br/>Label to identify the soil body according to the specified reference framework (metadata).<br/><br/>-- Description --<br/>NOTE in traditional soil maps, this is the identifier for the explanatory text of the mapping unit of the legend.<br/><br/> + -- Name --<br/>end lifespan version<br/><br/>-- Definition --<br/>Date and time at which this version of the spatial object was superseded or retired in the spatial data set.<br/><br/> diff --git a/approved/html/EARoot/EA2/EA3/EA17/EA1/EA9137.htm b/approved/html/EARoot/EA2/EA3/EA17/EA1/EA9137.htm index 9a95f1ef4..c116a3377 100644 --- a/approved/html/EARoot/EA2/EA3/EA17/EA1/EA9137.htm +++ b/approved/html/EARoot/EA2/EA3/EA17/EA1/EA9137.htm @@ -111,7 +111,7 @@ - Public GM_Object
  geometry + Public Identifier
  inspireId @@ -137,7 +137,7 @@ Range: - + Range:0 to 1 Transient: @@ -160,7 +160,7 @@ Notes: - -- Name --<br/>geometry<br/><br/>-- Definition --<br/>the geometry defining the soil derived object.<br/><br/>-- Description --<br/>A spatial representation of soil information becomes spatially explicit by delineating areas with similar values according to the soil (or other) property that is represented.<br/><br/> + -- Name --<br/>inspire Id<br/><br/>-- Definition --<br/>External object identifier of the SoilDerivedObject.<br/><br/>-- Description --<br/>NOTE An external object identifier is a unique object identifier published by the responsible body, which may be used by external applications to reference the spatial object. The identifier is an identifier of the spatial object, not an identifier of the real-world phenomenon.<br/><br/> @@ -169,7 +169,7 @@ - Public Identifier
  inspireId + Public GM_Object
  geometry @@ -195,7 +195,7 @@ Range: - Range:0 to 1 + Transient: @@ -218,7 +218,7 @@ Notes: - -- Name --<br/>inspire Id<br/><br/>-- Definition --<br/>External object identifier of the SoilDerivedObject.<br/><br/>-- Description --<br/>NOTE An external object identifier is a unique object identifier published by the responsible body, which may be used by external applications to reference the spatial object. The identifier is an identifier of the spatial object, not an identifier of the real-world phenomenon.<br/><br/> + -- Name --<br/>geometry<br/><br/>-- Definition --<br/>the geometry defining the soil derived object.<br/><br/>-- Description --<br/>A spatial representation of soil information becomes spatially explicit by delineating areas with similar values according to the soil (or other) property that is represented.<br/><br/> diff --git a/approved/html/EARoot/EA2/EA3/EA17/EA1/EA9141.htm b/approved/html/EARoot/EA2/EA3/EA17/EA1/EA9141.htm index 9e6dd5100..c878eda29 100644 --- a/approved/html/EARoot/EA2/EA3/EA17/EA1/EA9141.htm +++ b/approved/html/EARoot/EA2/EA3/EA17/EA1/EA9141.htm @@ -110,7 +110,7 @@ - Public EventEnvironmentTerm
  layerGenesisEnvironment + Public LayerTypeValue
  layerType @@ -128,7 +128,7 @@ Stereotype: - <<voidable>> + Ordered: @@ -136,7 +136,7 @@ Range: - Range:0 to 1 + Transient: @@ -159,16 +159,26 @@ Notes: - -- Name --<br/>layer genesis environment<br/><br/>-- Definition --<br/>setting in which the last non-pedogenic process (geologic or anthropogenic) that coined the material composition and internal structure of the layer took place.<br/><br/>-- Description --<br/>The material in which a soil develops is influenced by the environmental situation in which the processes of its formation took place, e.g. sedimentation from water results in quite differently structured layers when it has been deposited in running water than in a lake.<br/><br/> + -- Name --<br/>layer type<br/><br/>-- Definition --<br/>assignation of a layer according to the concept that fits its kind.<br/><br/>-- Description --<br/>EXAMPLE Topsoil: meaning the upper part of the natural mineral soil that is generally dark coloured and has a higher content of organic matter and nutrients when compared to the mineral horizons below.<br/><br/> - + Constraints:
  layer name constraint + + + + + +
+ + + ::/*one concept of layer naming in a profile is "topsoil - subsoil", other concepts are possible f.e. geological approach, two different concepts should not be mixed in one profile description*/ +
- Public EventProcessTerm
  layerGenesisProcess + Public LithologyTerm
  layerRockType @@ -194,7 +204,7 @@ Range: - Range:0 to 1 + Range:0 to * Transient: @@ -217,7 +227,7 @@ Notes: - -- Name --<br/>layer genesis process<br/><br/>-- Definition --<br/>last non-pedogenic process (geologic or anthropogenic) that coined the material composition and internal structure of the layer.<br/><br/> + -- Name --<br/>layer rock type<br/><font color="#ff0000"><br/></font>-- Definition --<br/>type of the material in which the layer developed.<br/><br/>-- Description --<br/>simplified list of  terms to “classify” geologic units<br/><br/> @@ -226,7 +236,7 @@ - Public LayerGenesisProcessStateValue
  layerGenesisProcessState + Public EventProcessTerm
  layerGenesisProcess @@ -268,14 +278,14 @@ - Obligation=implementingRule
+ obligation=implementingRule
Notes: - -- Name --<br/>layer genesis process state<br/><br/>-- Definition --<br/>indication whether the process specified in layerGenesisProcess is on-going or seized in the past.<br/><br/>-- Description --<br/>Process state gives an idea whether current non-pedogenic processes affect the soil or not. E.g. on current floodplains, input of sediments during seasonal flooding events is received, with comparatively young soil development in it, while in older fluvial sediments that are no longer under a regime of seasonal or irregular flooding, soil development might be more advanced.<br/><br/> + -- Name --<br/>layer genesis process<br/><br/>-- Definition --<br/>last non-pedogenic process (geologic or anthropogenic) that coined the material composition and internal structure of the layer.<br/><br/>
@@ -284,7 +294,7 @@ - Public LithologyTerm
  layerRockType + Public EventEnvironmentTerm
  layerGenesisEnvironment @@ -310,7 +320,7 @@ Range: - Range:0 to * + Range:0 to 1 Transient: @@ -333,7 +343,7 @@ Notes: - -- Name --<br/>layer rock type<br/><font color="#ff0000"><br/></font>-- Definition --<br/>type of the material in which the layer developed.<br/><br/>-- Description --<br/>simplified list of  terms to “classify” geologic units<br/><br/> + -- Name --<br/>layer genesis environment<br/><br/>-- Definition --<br/>setting in which the last non-pedogenic process (geologic or anthropogenic) that coined the material composition and internal structure of the layer took place.<br/><br/>-- Description --<br/>The material in which a soil develops is influenced by the environmental situation in which the processes of its formation took place, e.g. sedimentation from water results in quite differently structured layers when it has been deposited in running water than in a lake.<br/><br/> @@ -342,7 +352,7 @@ - Public LayerTypeValue
  layerType + Public LayerGenesisProcessStateValue
  layerGenesisProcessState @@ -360,7 +370,7 @@ Stereotype: - + <<voidable>> Ordered: @@ -368,7 +378,7 @@ Range: - + Range:0 to 1 Transient: @@ -384,29 +394,19 @@ - obligation=implementingRule
+ Obligation=implementingRule
Notes: - -- Name --<br/>layer type<br/><br/>-- Definition --<br/>assignation of a layer according to the concept that fits its kind.<br/><br/>-- Description --<br/>EXAMPLE Topsoil: meaning the upper part of the natural mineral soil that is generally dark coloured and has a higher content of organic matter and nutrients when compared to the mineral horizons below.<br/><br/> + -- Name --<br/>layer genesis process state<br/><br/>-- Definition --<br/>indication whether the process specified in layerGenesisProcess is on-going or seized in the past.<br/><br/>-- Description --<br/>Process state gives an idea whether current non-pedogenic processes affect the soil or not. E.g. on current floodplains, input of sediments during seasonal flooding events is received, with comparatively young soil development in it, while in older fluvial sediments that are no longer under a regime of seasonal or irregular flooding, soil development might be more advanced.<br/><br/>
- Constraints:
  layer name constraint - - - - - -
- - - ::/*one concept of layer naming in a profile is "topsoil - subsoil", other concepts are possible f.e. geological approach, two different concepts should not be mixed in one profile description*/ -
+ diff --git a/approved/html/EARoot/EA2/EA3/EA17/EA1/EA9142.htm b/approved/html/EARoot/EA2/EA3/EA17/EA1/EA9142.htm index 6c92b66bd..ed31dcca5 100644 --- a/approved/html/EARoot/EA2/EA3/EA17/EA1/EA9142.htm +++ b/approved/html/EARoot/EA2/EA3/EA17/EA1/EA9142.htm @@ -109,7 +109,7 @@ - Public DateTime
  beginLifespanVersion + Public Identifier
  inspireId @@ -127,7 +127,7 @@ Stereotype: - <<lifeCycleInfo>> + Ordered: @@ -135,7 +135,7 @@ Range: - + Range:0 to 1 Transient: @@ -158,7 +158,7 @@ Notes: - -- Name --<br/>begin lifespan version<br/><br/>-- Definition --<br/>Date and time at which this version of the spatial object was inserted or changed in the spatial data set.<br/><br/> + -- Name --<br/>inspire Id<br/><br/>-- Definition --<br/>External object identifier of the soil plot.<br/><br/>-- Description --<br/>NOTE An external object identifier is a unique object identifier published by the responsible body, which may be used by external applications to reference the spatial object. The identifier is an identifier of the spatial object, not an identifier of the real-world phenomenon.<br/><br/> @@ -167,7 +167,7 @@ - Public DateTime
  endLifespanVersion + Public Location
  soilPlotLocation @@ -185,7 +185,7 @@ Stereotype: - <<lifeCycleInfo>> + Ordered: @@ -193,7 +193,7 @@ Range: - Range:0 to 1 + Transient: @@ -216,7 +216,7 @@ Notes: - -- Name --<br/>end lifespan version<br/><br/>-- Definition --<br/>Date and time at which this version of the spatial object was superseded or retired in the spatial data set.<br/><br/> + -- Name --<br/>soil plot location<br/><br/>-- Definition --<br/>a reference to a location on the earth; it can be a point location identified by coordinates or a description of the location using text or an identifier.<br/><br/>-- Description --<br/>EXAMPLE reference to a place name, municipality or reference to an exact X,Y location<br/><br/> @@ -225,7 +225,7 @@ - Public Identifier
  inspireId + Public SoilPlotTypeValue
  soilPlotType @@ -251,7 +251,7 @@ Range: - Range:0 to 1 + Transient: @@ -267,14 +267,14 @@ - + obligation=implementingRule
Notes: - -- Name --<br/>inspire Id<br/><br/>-- Definition --<br/>External object identifier of the soil plot.<br/><br/>-- Description --<br/>NOTE An external object identifier is a unique object identifier published by the responsible body, which may be used by external applications to reference the spatial object. The identifier is an identifier of the spatial object, not an identifier of the real-world phenomenon.<br/><br/> + -- Name --<br/>soil plot type<br/><br/>-- Definition --<br/>gives information on what kind of plot the observation of the soil is made on.<br/><br/>-- Description --<br/>NOTE Trial pits, boreholes or samples can be seen as types of soil plots.<br/><br/>
@@ -283,7 +283,7 @@ - Public Location
  soilPlotLocation + Public DateTime
  beginLifespanVersion @@ -301,7 +301,7 @@ Stereotype: - + <<lifeCycleInfo>> Ordered: @@ -332,7 +332,7 @@ Notes: - -- Name --<br/>soil plot location<br/><br/>-- Definition --<br/>a reference to a location on the earth; it can be a point location identified by coordinates or a description of the location using text or an identifier.<br/><br/>-- Description --<br/>EXAMPLE reference to a place name, municipality or reference to an exact X,Y location<br/><br/> + -- Name --<br/>begin lifespan version<br/><br/>-- Definition --<br/>Date and time at which this version of the spatial object was inserted or changed in the spatial data set.<br/><br/> @@ -341,7 +341,7 @@ - Public SoilPlotTypeValue
  soilPlotType + Public DateTime
  endLifespanVersion @@ -359,7 +359,7 @@ Stereotype: - + <<lifeCycleInfo>> Ordered: @@ -367,7 +367,7 @@ Range: - + Range:0 to 1 Transient: @@ -383,14 +383,14 @@ - obligation=implementingRule
+
Notes: - -- Name --<br/>soil plot type<br/><br/>-- Definition --<br/>gives information on what kind of plot the observation of the soil is made on.<br/><br/>-- Description --<br/>NOTE Trial pits, boreholes or samples can be seen as types of soil plots.<br/><br/> + -- Name --<br/>end lifespan version<br/><br/>-- Definition --<br/>Date and time at which this version of the spatial object was superseded or retired in the spatial data set.<br/><br/>
diff --git a/approved/html/EARoot/EA2/EA3/EA17/EA1/EA9144.htm b/approved/html/EARoot/EA2/EA3/EA17/EA1/EA9144.htm index 9910fad1a..15161d24a 100644 --- a/approved/html/EARoot/EA2/EA3/EA17/EA1/EA9144.htm +++ b/approved/html/EARoot/EA2/EA3/EA17/EA1/EA9144.htm @@ -112,7 +112,7 @@ - Public DateTime
  beginLifespanVersion + Public Identifier
  inspireId @@ -130,7 +130,7 @@ Stereotype: - <<lifeCycleInfo>> + Ordered: @@ -138,7 +138,7 @@ Range: - + Range:0 to 1 Transient: @@ -161,7 +161,7 @@ Notes: - -- Name --<br/>begin lifespan version<br/><br/>-- Definition --<br/>Date and time at which this version of the spatial object was inserted or changed in the spatial data set.<br/><br/> + -- Name --<br/>inspire Id<br/><br/>-- Definition --<br/>External object identifier of the soil profile.<br/><br/>-- Description --<br/>NOTE An external object identifier is a unique object identifier published by the responsible body, which may be used by external applications to reference the spatial object. The identifier is an identifier of the spatial object, not an identifier of the real-world phenomenon.<br/><br/> @@ -170,7 +170,7 @@ - Public DateTime
  endLifespanVersion + Public CharacterString
  localIdentifier @@ -188,7 +188,7 @@ Stereotype: - <<lifeCycleInfo>> + <<voidable>> Ordered: @@ -219,7 +219,7 @@ Notes: - -- Name --<br/>end lifespan version<br/><br/>-- Definition --<br/>Date and time at which this version of the spatial object was superseded or retired in the spatial data set.<br/><br/> + -- Name --<br/>local identifier<br/><br/>-- Definition --<br/>unique identifier of the soil profile given by the data provider of the dataset.<br/><br/> @@ -228,7 +228,7 @@ - Public Identifier
  inspireId + Public WRBSoilNameType
  WRBSoilName @@ -246,7 +246,7 @@ Stereotype: - + <<voidable>> Ordered: @@ -254,7 +254,7 @@ Range: - Range:0 to 1 + Transient: @@ -277,7 +277,7 @@ Notes: - -- Name --<br/>inspire Id<br/><br/>-- Definition --<br/>External object identifier of the soil profile.<br/><br/>-- Description --<br/>NOTE An external object identifier is a unique object identifier published by the responsible body, which may be used by external applications to reference the spatial object. The identifier is an identifier of the spatial object, not an identifier of the real-world phenomenon.<br/><br/> + -- Name --<br/>WRB soil name<br/><br/>-- Definition --<br/>identification of the soil profile.<br/>-- Description --<br/>NOTE The structure of the WRBSoilNameType was based on the World reference base for soil resources 2006, first update 2007. World Soil Resources Reports no 103. Food and Agriculture Organization of the United Nations, Rome 2007.<br/>EXAMPLE Lixic Vertic Ferralsol (Ferric, Rhodic); WRB version 2006 (update 2007) or 2010.<br/> @@ -286,7 +286,7 @@ - Public CharacterString
  localIdentifier + Public OtherSoilNameType
  otherSoilName @@ -312,7 +312,7 @@ Range: - Range:0 to 1 + Range:0 to * Transient: @@ -335,7 +335,7 @@ Notes: - -- Name --<br/>local identifier<br/><br/>-- Definition --<br/>unique identifier of the soil profile given by the data provider of the dataset.<br/><br/> + -- Name --<br/>other soil name<br/><br/>-- Definition --<br/>Identification of the soil profile according to a specific classification scheme.<br/><br/> @@ -344,7 +344,7 @@ - Public OtherSoilNameType
  otherSoilName + Public DateTime
  validFrom @@ -370,7 +370,7 @@ Range: - Range:0 to * + Transient: @@ -393,7 +393,7 @@ Notes: - -- Name --<br/>other soil name<br/><br/>-- Definition --<br/>Identification of the soil profile according to a specific classification scheme.<br/><br/> + -- Name --<br/>valid from<br/><br/>-- Definition --<br/>The time when the phenomenon started to exist in the real world.<br/><br/> @@ -402,7 +402,7 @@ - Public DateTime
  validFrom + Public DateTime
  validTo @@ -428,7 +428,7 @@ Range: - + Range:0 to 1 Transient: @@ -451,7 +451,7 @@ Notes: - -- Name --<br/>valid from<br/><br/>-- Definition --<br/>The time when the phenomenon started to exist in the real world.<br/><br/> + -- Name --<br/>valid to<br/><br/>-- Definition --<br/>The time from which the phenomenon no longer exists in the real world.<br/><br/> @@ -460,7 +460,7 @@ - Public DateTime
  validTo + Public DateTime
  beginLifespanVersion @@ -478,7 +478,7 @@ Stereotype: - <<voidable>> + <<lifeCycleInfo>> Ordered: @@ -486,7 +486,7 @@ Range: - Range:0 to 1 + Transient: @@ -509,7 +509,7 @@ Notes: - -- Name --<br/>valid to<br/><br/>-- Definition --<br/>The time from which the phenomenon no longer exists in the real world.<br/><br/> + -- Name --<br/>begin lifespan version<br/><br/>-- Definition --<br/>Date and time at which this version of the spatial object was inserted or changed in the spatial data set.<br/><br/> @@ -518,7 +518,7 @@ - Public WRBSoilNameType
  WRBSoilName + Public DateTime
  endLifespanVersion @@ -536,7 +536,7 @@ Stereotype: - <<voidable>> + <<lifeCycleInfo>> Ordered: @@ -544,7 +544,7 @@ Range: - + Range:0 to 1 Transient: @@ -567,7 +567,7 @@ Notes: - -- Name --<br/>WRB soil name<br/><br/>-- Definition --<br/>identification of the soil profile.<br/>-- Description --<br/>NOTE The structure of the WRBSoilNameType was based on the World reference base for soil resources 2006, first update 2007. World Soil Resources Reports no 103. Food and Agriculture Organization of the United Nations, Rome 2007.<br/>EXAMPLE Lixic Vertic Ferralsol (Ferric, Rhodic); WRB version 2006 (update 2007) or 2010.<br/> + -- Name --<br/>end lifespan version<br/><br/>-- Definition --<br/>Date and time at which this version of the spatial object was superseded or retired in the spatial data set.<br/><br/> diff --git a/approved/html/EARoot/EA2/EA3/EA17/EA1/EA9146.htm b/approved/html/EARoot/EA2/EA3/EA17/EA1/EA9146.htm index ad16dcde5..8b998534f 100644 --- a/approved/html/EARoot/EA2/EA3/EA17/EA1/EA9146.htm +++ b/approved/html/EARoot/EA2/EA3/EA17/EA1/EA9146.htm @@ -110,7 +110,7 @@ - Public DateTime
  beginLifespanVersion + Public Identifier
  inspireId @@ -128,7 +128,7 @@ Stereotype: - <<lifeCycleInfo>> + Ordered: @@ -136,7 +136,7 @@ Range: - + Range:0 to 1 Transient: @@ -159,7 +159,7 @@ Notes: - -- Name --<br/>begin lifespan version<br/><br/>-- Definition --<br/>Date and time at which this version of the spatial object was inserted or changed in the spatial data set.<br/><br/> + -- Name --<br/>inspire Id<br/><br/>-- Definition --<br/>External object identifier of the soil site.<br/><br/>-- Description --<br/>NOTE An external object identifier is a unique object identifier published by the responsible body, which may be used by external applications to reference the spatial object. The identifier is an identifier of the spatial object, not an identifier of the real-world phenomenon.<br/><br/> @@ -168,7 +168,7 @@ - Public DateTime
  endLifespanVersion + Public GM_Object
  geometry @@ -186,7 +186,7 @@ Stereotype: - <<lifeCycleInfo>> + Ordered: @@ -194,7 +194,7 @@ Range: - Range:0 to 1 + Transient: @@ -217,7 +217,7 @@ Notes: - -- Name --<br/>end lifespan version<br/><br/>-- Definition --<br/>Date and time at which this version of the spatial object was superseded or retired in the spatial data set.<br/><br/> + -- Name --<br/>geometry<br/><br/>-- Definition --<br/>The geometry defining the soil site.<br/><br/>-- Description --<br/>This can be a polygon defining an area in which the survey was conducted, but it can also be a point location which is used as reference point according to which the soil plots are determined.<br/><br/> @@ -226,7 +226,7 @@ - Public GM_Object
  geometry + Public SoilInvestigationPurposeValue
  soilInvestigationPurpose @@ -268,14 +268,14 @@ - + obligation=implementingRule
Notes: - -- Name --<br/>geometry<br/><br/>-- Definition --<br/>The geometry defining the soil site.<br/><br/>-- Description --<br/>This can be a polygon defining an area in which the survey was conducted, but it can also be a point location which is used as reference point according to which the soil plots are determined.<br/><br/> + -- Name --<br/>soil investigation purpose<br/><br/>-- Definition --<br/>indication why a survey was conducted.<br/><br/>-- Description --<br/>For soil two main purposes are identified to carry out soil surveys. One is to classify the soil as a result of soil forming processes (generalSurvey) and the other one is to investigate soil for a specific reason (specificSurvey) like a possible contamination as a result of contaminating activities. This information gives the data user an idea about possible bias in the selection of the site and therefore representativeness of the data that were obtained for a special purpose.<br/><br/>
@@ -284,7 +284,7 @@ - Public Identifier
  inspireId + Public DateTime
  validFrom @@ -302,7 +302,7 @@ Stereotype: - + <<voidable>> Ordered: @@ -310,7 +310,7 @@ Range: - Range:0 to 1 + Transient: @@ -333,7 +333,7 @@ Notes: - -- Name --<br/>inspire Id<br/><br/>-- Definition --<br/>External object identifier of the soil site.<br/><br/>-- Description --<br/>NOTE An external object identifier is a unique object identifier published by the responsible body, which may be used by external applications to reference the spatial object. The identifier is an identifier of the spatial object, not an identifier of the real-world phenomenon.<br/><br/> + -- Name --<br/>valid from<br/><br/>-- Definition --<br/>The time when the phenomenon started to exist in the real world.<br/><br/> @@ -342,7 +342,7 @@ - Public SoilInvestigationPurposeValue
  soilInvestigationPurpose + Public DateTime
  validTo @@ -360,7 +360,7 @@ Stereotype: - + <<voidable>> Ordered: @@ -368,7 +368,7 @@ Range: - + Range:0 to 1 Transient: @@ -384,14 +384,14 @@ - obligation=implementingRule
+
Notes: - -- Name --<br/>soil investigation purpose<br/><br/>-- Definition --<br/>indication why a survey was conducted.<br/><br/>-- Description --<br/>For soil two main purposes are identified to carry out soil surveys. One is to classify the soil as a result of soil forming processes (generalSurvey) and the other one is to investigate soil for a specific reason (specificSurvey) like a possible contamination as a result of contaminating activities. This information gives the data user an idea about possible bias in the selection of the site and therefore representativeness of the data that were obtained for a special purpose.<br/><br/> + -- Name --<br/>valid to<br/><br/>-- Definition --<br/>The time from which the phenomenon no longer exists in the real world.<br/><br/>
@@ -400,7 +400,7 @@ - Public DateTime
  validFrom + Public DateTime
  beginLifespanVersion @@ -418,7 +418,7 @@ Stereotype: - <<voidable>> + <<lifeCycleInfo>> Ordered: @@ -449,7 +449,7 @@ Notes: - -- Name --<br/>valid from<br/><br/>-- Definition --<br/>The time when the phenomenon started to exist in the real world.<br/><br/> + -- Name --<br/>begin lifespan version<br/><br/>-- Definition --<br/>Date and time at which this version of the spatial object was inserted or changed in the spatial data set.<br/><br/> @@ -458,7 +458,7 @@ - Public DateTime
  validTo + Public DateTime
  endLifespanVersion @@ -476,7 +476,7 @@ Stereotype: - <<voidable>> + <<lifeCycleInfo>> Ordered: @@ -507,7 +507,7 @@ Notes: - -- Name --<br/>valid to<br/><br/>-- Definition --<br/>The time from which the phenomenon no longer exists in the real world.<br/><br/> + -- Name --<br/>end lifespan version<br/><br/>-- Definition --<br/>Date and time at which this version of the spatial object was superseded or retired in the spatial data set.<br/><br/> diff --git a/approved/html/EARoot/EA2/EA3/EA17/EA1/EA9148.htm b/approved/html/EARoot/EA2/EA3/EA17/EA1/EA9148.htm index 1450561bc..a278e35e4 100644 --- a/approved/html/EARoot/EA2/EA3/EA17/EA1/EA9148.htm +++ b/approved/html/EARoot/EA2/EA3/EA17/EA1/EA9148.htm @@ -169,7 +169,7 @@ - Public EX_Extent
  domainExtent + Public DateTime
  endLifespanVersion @@ -187,7 +187,7 @@ Stereotype: - + <<lifeCycleInfo>> Ordered: @@ -195,7 +195,7 @@ Range: - + Range:0 to 1 Transient: @@ -218,7 +218,7 @@ Notes: - -- Name --<br/>Domain extent.<br/><br/>-- Definition --<br/>The attribute domainExtent shall contain the extent of the spatiotemporal domain of the coverage.  The data type EX_Extent, is defined in ISO 19103.  Extents may be specified in both space and time. <br/><br/>-- Description --<br/>SOURCE Adapted from [ISO 19123:2005].<br/><br/><br/> + -- Name --<br/>end life span version<br/><br/>-- Definition --<br/>Date and time at which this version of the spatial object was superseded or retired in the spatial data set.<br/><br/> @@ -227,7 +227,7 @@ - Public DateTime
  endLifespanVersion + Public EX_Extent
  domainExtent @@ -245,7 +245,7 @@ Stereotype: - <<lifeCycleInfo>> + Ordered: @@ -253,7 +253,7 @@ Range: - Range:0 to 1 + Transient: @@ -276,7 +276,7 @@ Notes: - -- Name --<br/>end life span version<br/><br/>-- Definition --<br/>Date and time at which this version of the spatial object was superseded or retired in the spatial data set.<br/><br/> + -- Name --<br/>Domain extent.<br/><br/>-- Definition --<br/>The attribute domainExtent shall contain the extent of the spatiotemporal domain of the coverage.  The data type EX_Extent, is defined in ISO 19103.  Extents may be specified in both space and time. <br/><br/>-- Description --<br/>SOURCE Adapted from [ISO 19123:2005].<br/><br/><br/> @@ -285,7 +285,7 @@ - Public SoilThemeParameterType
  soilThemeParameter + Public Date
  validTimeFrom @@ -303,7 +303,7 @@ Stereotype: - + <<voidable>> Ordered: @@ -334,7 +334,7 @@ Notes: - -- Name --<br/>soil theme parameter<br/><br/>-- Definition --<br/>A soil-related property (soil theme) that is represented by this coverage.<br/><br/>-- Description --<br/>EXAMPLE Land irrigation suitability, pH in the topsoil, etc<br/><br/> + -- Name --<br/>valid time from<br/><br/>-- Definition --<br/>The ValidTime specifies the time window for which measurements have been captured to calculate the thematic soil property relevant for that period. The start time defines when the period began.<br/><br/><br/> @@ -343,7 +343,7 @@ - Public Date
  validTimeFrom + Public Date
  validTimeTo @@ -369,7 +369,7 @@ Range: - + Range:0 to 1 Transient: @@ -392,7 +392,7 @@ Notes: - -- Name --<br/>valid time from<br/><br/>-- Definition --<br/>The ValidTime specifies the time window for which measurements have been captured to calculate the thematic soil property relevant for that period. The start time defines when the period began.<br/><br/><br/> + -- Name --<br/>valid time to<br/><br/>-- Definition --<br/>The ValidTime specifies the time window for which measurements have been captured to calculate the thematic soil property relevant for that period. The end time defines when the period stopped.<br/><br/> @@ -401,7 +401,7 @@ - Public Date
  validTimeTo + Public SoilThemeParameterType
  soilThemeParameter @@ -419,7 +419,7 @@ Stereotype: - <<voidable>> + Ordered: @@ -427,7 +427,7 @@ Range: - Range:0 to 1 + Transient: @@ -450,7 +450,7 @@ Notes: - -- Name --<br/>valid time to<br/><br/>-- Definition --<br/>The ValidTime specifies the time window for which measurements have been captured to calculate the thematic soil property relevant for that period. The end time defines when the period stopped.<br/><br/> + -- Name --<br/>soil theme parameter<br/><br/>-- Definition --<br/>A soil-related property (soil theme) that is represented by this coverage.<br/><br/>-- Description --<br/>EXAMPLE Land irrigation suitability, pH in the topsoil, etc<br/><br/> diff --git a/approved/html/EARoot/EA2/EA3/EA17/EA1/EA9149.htm b/approved/html/EARoot/EA2/EA3/EA17/EA1/EA9149.htm index 69bb5336a..94489e26e 100644 --- a/approved/html/EARoot/EA2/EA3/EA17/EA1/EA9149.htm +++ b/approved/html/EARoot/EA2/EA3/EA17/EA1/EA9149.htm @@ -169,7 +169,7 @@ - Public EX_Extent
  domainExtent + Public DateTime
  endLifespanVersion @@ -187,7 +187,7 @@ Stereotype: - + <<lifeCycleInfo>> Ordered: @@ -195,7 +195,7 @@ Range: - + Range:0 to 1 Transient: @@ -218,7 +218,7 @@ Notes: - -- Name --<br/>Domain extent.<br/><br/>-- Definition --<br/>The attribute domainExtent shall contain the extent of the spatiotemporal domain of the coverage.  The data type EX_Extent, is defined in ISO 19103.  Extents may be specified in both space and time. <br/><br/>-- Description --<br/>SOURCE Adapted from [ISO 19123:2005].<br/><br/><br/> + -- Name --<br/>end life span version<br/><br/>-- Definition --<br/>Date and time at which this version of the spatial object was superseded or retired in the spatial data set.<br/><br/> @@ -227,7 +227,7 @@ - Public DateTime
  endLifespanVersion + Public EX_Extent
  domainExtent @@ -245,7 +245,7 @@ Stereotype: - <<lifeCycleInfo>> + Ordered: @@ -253,7 +253,7 @@ Range: - Range:0 to 1 + Transient: @@ -276,7 +276,7 @@ Notes: - -- Name --<br/>end life span version<br/><br/>-- Definition --<br/>Date and time at which this version of the spatial object was superseded or retired in the spatial data set.<br/><br/> + -- Name --<br/>Domain extent.<br/><br/>-- Definition --<br/>The attribute domainExtent shall contain the extent of the spatiotemporal domain of the coverage.  The data type EX_Extent, is defined in ISO 19103.  Extents may be specified in both space and time. <br/><br/>-- Description --<br/>SOURCE Adapted from [ISO 19123:2005].<br/><br/><br/> diff --git a/approved/html/EARoot/EA2/EA3/EA17/EA1/EA9157.htm b/approved/html/EARoot/EA2/EA3/EA17/EA1/EA9157.htm index 5dd31384e..6b6c8cc97 100644 --- a/approved/html/EARoot/EA2/EA3/EA17/EA1/EA9157.htm +++ b/approved/html/EARoot/EA2/EA3/EA17/EA1/EA9157.htm @@ -110,7 +110,7 @@ - Public Boolean
  isOriginalClassification + Public WRBQualifierGroupType
  WRBQualifierGroup @@ -136,7 +136,7 @@ Range: - + Range:0 to * Transient: @@ -159,7 +159,7 @@ Notes: - -- Name --<br/>is original classification<br/><br/>-- Definition --<br/>Boolean value to indicate whether the WRB classification system was the original classification system to describe the soil profile.<br/><br/>-- Description --<br/>This is to indicate whether the soil assignation according to WRB has been determined in the field (or for - derived - profiles during the original derivation process), or has been adapted, changed or re-assigned on the basis of the original soil description or assignation later. This might be relevant data quality information.<br/><br/> + -- Name --<br/>WRB qualifier group<br/><br/>-- Definition --<br/>data type to define the a group of a qualifier and its possible specifier(s), its place and position with regard to the WRBReferenceSoilGroup it belongs to.<br/><br/><br/> @@ -168,7 +168,7 @@ - Public WRBQualifierGroupType
  WRBQualifierGroup + Public WRBReferenceSoilGroupValue
  WRBReferenceSoilGroup @@ -194,7 +194,7 @@ Range: - Range:0 to * + Transient: @@ -210,14 +210,14 @@ - + obligation=implementingRule
Notes: - -- Name --<br/>WRB qualifier group<br/><br/>-- Definition --<br/>data type to define the a group of a qualifier and its possible specifier(s), its place and position with regard to the WRBReferenceSoilGroup it belongs to.<br/><br/><br/> + -- Name --<br/>WRB reference soilgroup (RSG)<br/><br/>-- Definition --<br/>first level of classification of the World Reference Base for Soil Resources.<br/><br/>-- Description --<br/><i>Reference Soil Groups</i> are distinguished by the presence (or absence) of specific <i>diagnostic horizons, properties </i>and/or<i> materials.</i><br/>NOTE The WRB soil classification system comprises 32 different RSGs.<br/>SOURCE <i>World reference base for soil resources 2006</i>, <i>first update 2007</i>, World Soil Resources Reports No. 103, Food and Agriculture Organization of the United Nations, Rome, 2007.<br/>
@@ -226,7 +226,7 @@ - Public WRBReferenceSoilGroupValue
  WRBReferenceSoilGroup + Public Boolean
  isOriginalClassification @@ -268,14 +268,14 @@ - obligation=implementingRule
+
Notes: - -- Name --<br/>WRB reference soilgroup (RSG)<br/><br/>-- Definition --<br/>first level of classification of the World Reference Base for Soil Resources.<br/><br/>-- Description --<br/><i>Reference Soil Groups</i> are distinguished by the presence (or absence) of specific <i>diagnostic horizons, properties </i>and/or<i> materials.</i><br/>NOTE The WRB soil classification system comprises 32 different RSGs.<br/>SOURCE <i>World reference base for soil resources 2006</i>, <i>first update 2007</i>, World Soil Resources Reports No. 103, Food and Agriculture Organization of the United Nations, Rome, 2007.<br/> + -- Name --<br/>is original classification<br/><br/>-- Definition --<br/>Boolean value to indicate whether the WRB classification system was the original classification system to describe the soil profile.<br/><br/>-- Description --<br/>This is to indicate whether the soil assignation according to WRB has been determined in the field (or for - derived - profiles during the original derivation process), or has been adapted, changed or re-assigned on the basis of the original soil description or assignation later. This might be relevant data quality information.<br/><br/>
diff --git a/approved/html/EARoot/EA2/EA3/EA18/EA1/EA9162.png b/approved/html/EARoot/EA2/EA3/EA18/EA1/EA9162.png index 41c3b389c..a9891d81c 100644 Binary files a/approved/html/EARoot/EA2/EA3/EA18/EA1/EA9162.png and b/approved/html/EARoot/EA2/EA3/EA18/EA1/EA9162.png differ diff --git a/approved/html/EARoot/EA2/EA3/EA18/EA1/EA9174.htm b/approved/html/EARoot/EA2/EA3/EA18/EA1/EA9174.htm index d5d8f148b..8aa47561a 100644 --- a/approved/html/EARoot/EA2/EA3/EA18/EA1/EA9174.htm +++ b/approved/html/EARoot/EA2/EA3/EA18/EA1/EA9174.htm @@ -109,7 +109,7 @@ - Public MarineExtent
  extent + Public ZoneTypeValue
  zoneType @@ -151,14 +151,14 @@ - + obligation=technicalGuidance
Notes: - <br/>-- Name --<br/>extent<br/><br/>-- Definition --<br/>The extent of the Marine Circulation Zone at a particular tidal state<br/><br/>Extent of the Marine Circulation Zone.<br/><br/>-- Description --<br/> + -- Name --<br/>Zone Type<br/><br/>-- Definition --<br/>The type of the Marine Circulation Zone, e.g. sedimentCell.<br/><br/>-- Description --<br/>
@@ -167,7 +167,7 @@ - Public ZoneTypeValue
  zoneType + Public MarineExtent
  extent @@ -209,14 +209,14 @@ - obligation=technicalGuidance
+
Notes: - -- Name --<br/>Zone Type<br/><br/>-- Definition --<br/>The type of the Marine Circulation Zone, e.g. sedimentCell.<br/><br/>-- Description --<br/> + <br/>-- Name --<br/>extent<br/><br/>-- Definition --<br/>The extent of the Marine Circulation Zone at a particular tidal state<br/><br/>Extent of the Marine Circulation Zone.<br/><br/>-- Description --<br/>
diff --git a/approved/html/EARoot/EA2/EA3/EA18/EA1/EA9180.htm b/approved/html/EARoot/EA2/EA3/EA18/EA1/EA9180.htm index 0b3c68106..4eceeb432 100644 --- a/approved/html/EARoot/EA2/EA3/EA18/EA1/EA9180.htm +++ b/approved/html/EARoot/EA2/EA3/EA18/EA1/EA9180.htm @@ -165,7 +165,7 @@ - Public TM_Object
  validTime + Public Measure
  value @@ -183,7 +183,7 @@ Stereotype: - <<voidable>> + Ordered: @@ -214,7 +214,7 @@ Notes: - -- Name --<br/>valid time<br/><br/>-- Definition --<br/>The time for which the attributed value is valid. This may be a time instant or a duration. <br/> + -- Name --<br/>value<br/>-- Definition --<br/>the value of the observed parameter, e.g. 12 degrees Celsius. <br/> @@ -223,7 +223,7 @@ - Public Measure
  value + Public TM_Object
  validTime @@ -241,7 +241,7 @@ Stereotype: - + <<voidable>> Ordered: @@ -272,7 +272,7 @@ Notes: - -- Name --<br/>value<br/>-- Definition --<br/>the value of the observed parameter, e.g. 12 degrees Celsius. <br/> + -- Name --<br/>valid time<br/><br/>-- Definition --<br/>The time for which the attributed value is valid. This may be a time instant or a duration. <br/> diff --git a/approved/html/EARoot/EA2/EA3/EA18/EA1/EA9182.htm b/approved/html/EARoot/EA2/EA3/EA18/EA1/EA9182.htm index bb0ebc47c..17472c9cc 100644 --- a/approved/html/EARoot/EA2/EA3/EA18/EA1/EA9182.htm +++ b/approved/html/EARoot/EA2/EA3/EA18/EA1/EA9182.htm @@ -111,7 +111,7 @@ - Public DateTime
  beginLifespanVersion + Public Identifier
  inspireId @@ -129,7 +129,7 @@ Stereotype: - <<voidable>> + Ordered: @@ -160,7 +160,7 @@ Notes: - -- Name --<br/>Begin lifespan version<br/><br/>-- Definition --<br/>Date and time at which this version of the spatial object was inserted or changed in the spatial data set.<br/> + -- Name --<br/>inspire ID<br/><br/>-- Definition --<br/>"External object identifier of the spatial object.".<br/>-- Description --<br/>"An external object identifier is a unique object identifier published by the responsible body, which may be used by external applications to reference the spatial object. The identifier is an identifier of the spatial object, not an identifier of the real-world phenomenon.".<br/> @@ -169,7 +169,7 @@ - Public DateTime
  endLifespanVersion + Public SeaAreaTypeClassificationValue
  seaAreaType @@ -187,7 +187,7 @@ Stereotype: - <<voidable>> + Ordered: @@ -211,14 +211,14 @@ - + obligation=TG
Notes: - -- Name --<br/>End lifespan version<br/><br/>-- Definition --<br/>Date and time at which this version of the spatial object was superseded or retired in the spatial data set.<br/> + -- Name --<br/>Sea Area Type<br/><br/>-- Definition --<br/>Type of the sea area according to the classifications in the SeaAreaTypeClassificationValue codelist. e.g. Estuary<br/>
@@ -285,7 +285,7 @@ - Public Identifier
  inspireId + Public ParameterValuePair
  parameterValue @@ -311,7 +311,7 @@ Range: - + Range:0 to * Transient: @@ -327,14 +327,14 @@ - + obligation=TG
Notes: - -- Name --<br/>inspire ID<br/><br/>-- Definition --<br/>"External object identifier of the spatial object.".<br/>-- Description --<br/>"An external object identifier is a unique object identifier published by the responsible body, which may be used by external applications to reference the spatial object. The identifier is an identifier of the spatial object, not an identifier of the real-world phenomenon.".<br/> + -- Name --<br/>parameter value<br/>-- Definition --<br/>A value of some parameter assigned to the SeaArea. E.g. Annual Mean Sea Surface Temperature = 12 degrees Celsius<br/>-- Description --<br/>A SeaArea may be attributed with any number of values that are relevant for the sea area polygon as a whole. More detailed observations, such as grids and point data are the subject of the Oceanographic Geographical Features specification.<br/>
@@ -343,7 +343,7 @@ - Public ParameterValuePair
  parameterValue + Public DateTime
  beginLifespanVersion @@ -361,7 +361,7 @@ Stereotype: - + <<voidable>> Ordered: @@ -369,7 +369,7 @@ Range: - Range:0 to * + Transient: @@ -385,14 +385,14 @@ - obligation=TG
+
Notes: - -- Name --<br/>parameter value<br/>-- Definition --<br/>A value of some parameter assigned to the SeaArea. E.g. Annual Mean Sea Surface Temperature = 12 degrees Celsius<br/>-- Description --<br/>A SeaArea may be attributed with any number of values that are relevant for the sea area polygon as a whole. More detailed observations, such as grids and point data are the subject of the Oceanographic Geographical Features specification.<br/> + -- Name --<br/>Begin lifespan version<br/><br/>-- Definition --<br/>Date and time at which this version of the spatial object was inserted or changed in the spatial data set.<br/>
@@ -401,7 +401,7 @@ - Public SeaAreaTypeClassificationValue
  seaAreaType + Public DateTime
  endLifespanVersion @@ -419,7 +419,7 @@ Stereotype: - + <<voidable>> Ordered: @@ -443,14 +443,14 @@ - obligation=TG
+
Notes: - -- Name --<br/>Sea Area Type<br/><br/>-- Definition --<br/>Type of the sea area according to the classifications in the SeaAreaTypeClassificationValue codelist. e.g. Estuary<br/> + -- Name --<br/>End lifespan version<br/><br/>-- Definition --<br/>Date and time at which this version of the spatial object was superseded or retired in the spatial data set.<br/>
diff --git a/approved/html/EARoot/EA2/EA3/EA19/EA2/EA9205.png b/approved/html/EARoot/EA2/EA3/EA19/EA2/EA9205.png index 1c851ac5f..cbdd2210f 100644 Binary files a/approved/html/EARoot/EA2/EA3/EA19/EA2/EA9205.png and b/approved/html/EARoot/EA2/EA3/EA19/EA2/EA9205.png differ diff --git a/approved/html/EARoot/EA2/EA3/EA19/EA2/EA9208.htm b/approved/html/EARoot/EA2/EA3/EA19/EA2/EA9208.htm index d563e9546..7a61916db 100644 --- a/approved/html/EARoot/EA2/EA3/EA19/EA2/EA9208.htm +++ b/approved/html/EARoot/EA2/EA3/EA19/EA2/EA9208.htm @@ -112,7 +112,7 @@ - Public Integer
  EPSGCode + Public Identifier
  inspireId @@ -138,7 +138,7 @@ Range: - Range:0 to 1 + Transient: @@ -161,7 +161,7 @@ Notes: - -- Name --<br/>EPSGCode<br/><br/>-- Definition --<br/>The EPSG code to identify the grid Coordinate Referencing System.<br/><br/>-- Description --<br/>This information is relevant only if all cells of the grid have the same CRS.<br/><br/> + -- Name --<br/>INSPIRE identifier<br/><br/>-- Definition --<br/>External object identifier of the spatial object.<br/><br/>-- Description --<br/>An external object identifier is a unique object identifier published by the responsible body, which may be used by external applications to reference the spatial object. The identifier is an identifier of the spatial object, not an identifier of the real-world phenomenon.<br/><br/> @@ -170,7 +170,7 @@ - Public Integer
  height + Public Integer
  EPSGCode @@ -219,7 +219,7 @@ Notes: - -- Name --<br/>Height<br/><br/>-- Definition --<br/>The grid height, in cell number (if defined).<br/><br/> + -- Name --<br/>EPSGCode<br/><br/>-- Definition --<br/>The EPSG code to identify the grid Coordinate Referencing System.<br/><br/>-- Description --<br/>This information is relevant only if all cells of the grid have the same CRS.<br/><br/> @@ -228,7 +228,7 @@ - Public Identifier
  inspireId + Public StatisticalGridResolution
  resolution @@ -254,7 +254,7 @@ Range: - + Range:0 to 1 Transient: @@ -277,7 +277,7 @@ Notes: - -- Name --<br/>INSPIRE identifier<br/><br/>-- Definition --<br/>External object identifier of the spatial object.<br/><br/>-- Description --<br/>An external object identifier is a unique object identifier published by the responsible body, which may be used by external applications to reference the spatial object. The identifier is an identifier of the spatial object, not an identifier of the real-world phenomenon.<br/><br/> + -- Name --<br/>Resolution<br/><br/>-- Definition --<br/>The grid resolution.<br/><br/>-- Description --<br/>This information is relevant only if all cells of the grid have the same resolution.<br/><br/> @@ -344,7 +344,7 @@ - Public StatisticalGridResolution
  resolution + Public Integer
  width @@ -393,7 +393,7 @@ Notes: - -- Name --<br/>Resolution<br/><br/>-- Definition --<br/>The grid resolution.<br/><br/>-- Description --<br/>This information is relevant only if all cells of the grid have the same resolution.<br/><br/> + -- Name --<br/>Width<br/><br/>-- Definition --<br/>The grid width, in cell number (if defined).<br/><br/> @@ -402,7 +402,7 @@ - Public Integer
  width + Public Integer
  height @@ -451,7 +451,7 @@ Notes: - -- Name --<br/>Width<br/><br/>-- Definition --<br/>The grid width, in cell number (if defined).<br/><br/> + -- Name --<br/>Height<br/><br/>-- Definition --<br/>The grid height, in cell number (if defined).<br/><br/> diff --git a/approved/html/EARoot/EA2/EA3/EA19/EA2/EA9209.htm b/approved/html/EARoot/EA2/EA3/EA19/EA2/EA9209.htm index eb5b94670..e66d0541c 100644 --- a/approved/html/EARoot/EA2/EA3/EA19/EA2/EA9209.htm +++ b/approved/html/EARoot/EA2/EA3/EA19/EA2/EA9209.htm @@ -228,7 +228,7 @@ - Public GM_Polygon
  geometry + Public GridPosition
  gridPosition @@ -254,7 +254,7 @@ Range: - + Range:0 to 1 Transient: @@ -277,7 +277,7 @@ Notes: - -- Name --<br/>Geometry<br/><br/>-- Definition --<br/>The grid cell geometry.<br/><br/> + -- Name --<br/>Grid position<br/><br/>-- Definition --<br/>The grid cell position within the grid based on the grid coordinates.<br/><br/> @@ -286,7 +286,7 @@ - Public GridPosition
  gridPosition + Public GM_Polygon
  geometry @@ -312,7 +312,7 @@ Range: - Range:0 to 1 + Transient: @@ -335,7 +335,7 @@ Notes: - -- Name --<br/>Grid position<br/><br/>-- Definition --<br/>The grid cell position within the grid based on the grid coordinates.<br/><br/> + -- Name --<br/>Geometry<br/><br/>-- Definition --<br/>The grid cell geometry.<br/><br/> diff --git a/approved/html/EARoot/EA2/EA3/EA19/EA2/EA9210.htm b/approved/html/EARoot/EA2/EA3/EA19/EA2/EA9210.htm index 9299e7df6..dd542557a 100644 --- a/approved/html/EARoot/EA2/EA3/EA19/EA2/EA9210.htm +++ b/approved/html/EARoot/EA2/EA3/EA19/EA2/EA9210.htm @@ -107,7 +107,7 @@ - Public Angle
  angleResolution + Public Length
  lengthResolution @@ -156,7 +156,7 @@ Notes: - -- Name --<br/>Angle resolution<br/><br/>-- Definition --<br/>An angle resolution.<br/><br/> + -- Name --<br/>Length resolution<br/><br/>-- Definition --<br/>A distance resolution.<br/><br/> @@ -165,7 +165,7 @@ - Public Length
  lengthResolution + Public Angle
  angleResolution @@ -214,7 +214,7 @@ Notes: - -- Name --<br/>Length resolution<br/><br/>-- Definition --<br/>A distance resolution.<br/><br/> + -- Name --<br/>Angle resolution<br/><br/>-- Definition --<br/>An angle resolution.<br/><br/> diff --git a/approved/html/EARoot/EA2/EA3/EA19/EA3/EA9214.png b/approved/html/EARoot/EA2/EA3/EA19/EA3/EA9214.png index ae51c40e3..1602dda18 100644 Binary files a/approved/html/EARoot/EA2/EA3/EA19/EA3/EA9214.png and b/approved/html/EARoot/EA2/EA3/EA19/EA3/EA9214.png differ diff --git a/approved/html/EARoot/EA2/EA3/EA19/EA3/EA9215.htm b/approved/html/EARoot/EA2/EA3/EA19/EA3/EA9215.htm index 2168b98aa..75151c01a 100644 --- a/approved/html/EARoot/EA2/EA3/EA19/EA3/EA9215.htm +++ b/approved/html/EARoot/EA2/EA3/EA19/EA3/EA9215.htm @@ -37,13 +37,13 @@ - - + + - - - + + + @@ -55,7 +55,7 @@ Modified: - 23/10/2012 14:41:03 + 31/07/2023 13:12:57 Project: diff --git a/approved/html/EARoot/EA2/EA3/EA19/EA3/EA9216.png b/approved/html/EARoot/EA2/EA3/EA19/EA3/EA9216.png index b6bde0f48..a3d86d4e9 100644 Binary files a/approved/html/EARoot/EA2/EA3/EA19/EA3/EA9216.png and b/approved/html/EARoot/EA2/EA3/EA19/EA3/EA9216.png differ diff --git a/approved/html/EARoot/EA2/EA3/EA19/EA3/EA9220.htm b/approved/html/EARoot/EA2/EA3/EA19/EA3/EA9220.htm index 24ad6b6e0..997926af2 100644 --- a/approved/html/EARoot/EA2/EA3/EA19/EA3/EA9220.htm +++ b/approved/html/EARoot/EA2/EA3/EA19/EA3/EA9220.htm @@ -42,7 +42,7 @@ Modified: - 11/01/2012 17:01:29 + 31/07/2023 13:09:59 @@ -102,6 +102,7 @@
  • Associations To
  • Associations From
  • Tagged Values
  • +
  • Constraints
  • Other Links
  • @@ -546,7 +547,32 @@ -
    +
    + + + + + + + + + + + + + + + +
    ConstraintTypeStatus
    AreaStatisticalUnitsGeometryConstraintInvariantApproved
    +
    Details: +
    +
    /* The reference geometry of an area statistical units should be a <i>GM_MultiSurface</i>. */<br/>
    + +
    +
    +
    +
    +
    diff --git a/approved/html/EARoot/EA2/EA3/EA19/EA3/EA9221.htm b/approved/html/EARoot/EA2/EA3/EA19/EA3/EA9221.htm index 5a2b3ace5..22db0e370 100644 --- a/approved/html/EARoot/EA2/EA3/EA19/EA3/EA9221.htm +++ b/approved/html/EARoot/EA2/EA3/EA19/EA3/EA9221.htm @@ -110,43 +110,43 @@ @@ -370,7 +312,7 @@ - + @@ -393,7 +335,7 @@ Notes:
    Object
    - Public Area
      areaVariation + Public DateTime
      date
    - Details: + Details: - + - + - + - + - + - + - + - + - + @@ -159,7 +159,7 @@ Notes:
    - -- Name --<br/>Area variation<br/><br/>-- Definition --<br/>The area variation during the evolution. This attribute has to be populated only if the type is "change".<br/><br/><br/> + -- Name --<br/>Date<br/><br/>-- Definition --<br/>The date when the change occured.<br/><br/>
    @@ -168,56 +168,56 @@
    - Public DateTime
      date + Public EvolutionTypeValue
      evolutionType
    - Details: + Details: - + - + - + - + - + - + - + - +
    - + obligation=technicalGuidance
    Notes: - -- Name --<br/>Date<br/><br/>-- Definition --<br/>The date when the change occured.<br/><br/> + -- Name --<br/>Evolution type<br/><br/>-- Definition --<br/>The type of evolution.<br/><br/>
    @@ -226,56 +226,56 @@
    - Public EvolutionTypeValue
      evolutionType + Public Area
      areaVariation
    - Details: + Details: - + - + - + - + - + - + - + - + - +
    - obligation=technicalGuidance
    +
    Notes: - -- Name --<br/>Evolution type<br/><br/>-- Definition --<br/>The type of evolution.<br/><br/> + -- Name --<br/>Area variation<br/><br/>-- Definition --<br/>The area variation during the evolution. This attribute has to be populated only if the type is "change".<br/><br/><br/>
    @@ -289,38 +289,38 @@
    - Details: + Details: - + - + - + - + - + - + - + - + @@ -367,8 +367,8 @@ @@ -312,7 +254,7 @@ - + @@ -328,14 +270,14 @@
    -
    Details: -
    +
    Details: +
     
    @@ -391,8 +391,8 @@
    -
    Details: -
    +
    Details: +
     
    @@ -416,8 +416,8 @@
    -
    Details: -
    +
    Details: +
    -- Definition --<br/>Association between a statistical unit and all the changes that occured on it.<br/><br/>
    @@ -439,8 +439,8 @@
    -
    Details: -
    +
    Details: +
    Values: false
    Default: false
    Description: Create a property type that requires that the instance is encoded inline (applies to ISO 19136:2007 encoding rule). Always set to false in INSPIRE.
    @@ -452,8 +452,8 @@
    -
    Details: -
    +
    Details: +
    Values: true | false
    Default: false
    Description: Identifies the feature type as a mixin type that will not be encoded as a separate element/type in the GML encoding.
    @@ -465,8 +465,8 @@
    -
    Details: -
    +
    Details: +
    Default: FIXME
    Description: URN reference to the feature concept in the INSPIRE Feature Concept Dictionary Register
    @@ -478,8 +478,8 @@
    -
    Details: -
    +
    Details: +
    Values: true | false
    Default: false
    Description: Identifies the feature type as a feature collection.
    @@ -491,8 +491,8 @@
    -
    Details: -
    +
    Details: +
    Values: false
    Default: false
    Description: Surpress creation of a standard property type that supports inline or by-reference encoding (applies to ISO 19136:2007 encoding rule). Always set to false in INSPIRE.
    @@ -504,8 +504,8 @@
    -
    Details: -
    +
    Details: +
    Values: iso19136_2007 | iso19139_2007 | iso19136_2007_INSPIRE_Extensions
    Default: iso19136_2007_INSPIRE_Extensions
    Description: XML Schema encoding rule to apply
    @@ -527,8 +527,8 @@
    -
    Details: -
    +
    Details: +
    /* Evolution representations shall be consistent with the versions of the concerned objects. */<br/><br/>
    @@ -542,8 +542,8 @@
    -
    Details: -
    +
    Details: +
    /* An evolution with a typeValue "creation" shall not have any initial unit versions and only one final one. */<br/><br/>
    @@ -557,8 +557,8 @@
    -
    Details: -
    +
    Details: +
    /* An evolution with a typeValue "change" shall have one initial unit version and one final one. */<br/><br/>
    @@ -572,8 +572,8 @@
    -
    Details: -
    +
    Details: +
    /* An evolution with a typeValue "deletion" shall have one initial unit version and no final one. */<br/><br/>
    @@ -587,8 +587,8 @@
    -
    Details: -
    +
    Details: +
    /* An evolution with a typeValue "aggregation" shall have at least two initial unit versions (the units to be aggregated) and a single final one (the resulting aggregation). */<br/><br/>
    @@ -602,8 +602,8 @@
    -
    Details: -
    +
    Details: +
    /* An evolution with a typeValue "splitting" shall have a single initial unit version (the unit to split), and at least two final ones (the units resulting from the splitting). */<br/><br/>
    diff --git a/approved/html/EARoot/EA2/EA3/EA19/EA3/EA9222.htm b/approved/html/EARoot/EA2/EA3/EA19/EA3/EA9222.htm index 2fd4c8a19..b936956ca 100644 --- a/approved/html/EARoot/EA2/EA3/EA19/EA3/EA9222.htm +++ b/approved/html/EARoot/EA2/EA3/EA19/EA3/EA9222.htm @@ -112,8 +112,8 @@
    -
    Details: -
    +
    Details: +
     
    @@ -124,8 +124,8 @@
    -
    Details: -
    +
    Details: +
     
    @@ -136,8 +136,8 @@
    -
    Details: -
    +
    Details: +
     
    diff --git a/approved/html/EARoot/EA2/EA3/EA19/EA3/EA9224.htm b/approved/html/EARoot/EA2/EA3/EA19/EA3/EA9224.htm index 808a7b3a5..fc00fe74e 100644 --- a/approved/html/EARoot/EA2/EA3/EA19/EA3/EA9224.htm +++ b/approved/html/EARoot/EA2/EA3/EA19/EA3/EA9224.htm @@ -113,38 +113,38 @@
    - Details: + Details: - + - + - + - + - + - + - + - + @@ -166,43 +166,43 @@ @@ -246,7 +188,7 @@ - + @@ -254,7 +196,7 @@ - + @@ -277,7 +219,7 @@ Notes:
    - Public Integer
      leastDetailedScale + Public Integer
      mostDetailedScale
    - Details: + Details: - + - + - + - + - + - + - + - + @@ -215,7 +215,7 @@ Notes:
    - -- Name --<br/>Least detailed scale<br/><br/>-- Definition --<br/>The least detailed scale the generalised geometry is supposed to be suitable for (expressed as the inverse of an indicative scale).<br/><br/> + -- Name --<br/>Most detailed scale<br/><br/>-- Definition --<br/>The most detailed scale the generalised geometry is supposed to be suitable for (expressed as the inverse of an indicative scale).<br/><br/>
    @@ -224,43 +224,43 @@
    - Public Integer
      mostDetailedScale + Public Integer
      leastDetailedScale
    - Details: + Details: - + - + - + - + - + - + - + - + @@ -273,7 +273,7 @@ Notes:
    - -- Name --<br/>Most detailed scale<br/><br/>-- Definition --<br/>The most detailed scale the generalised geometry is supposed to be suitable for (expressed as the inverse of an indicative scale).<br/><br/> + -- Name --<br/>Least detailed scale<br/><br/>-- Definition --<br/>The least detailed scale the generalised geometry is supposed to be suitable for (expressed as the inverse of an indicative scale).<br/><br/>
    @@ -297,8 +297,8 @@
    -
    Details: -
    +
    Details: +
    /* The <i>mostDetailedScale </i>and <i>leastDetailedScale </i>fields shall be provided only for geometry descriptors with a type <i>generalisedGeometry</i> */<br/><br/>
    @@ -312,8 +312,8 @@
    -
    Details: -
    +
    Details: +
    /* If provided, <i>mostDetailedScale </i>shall be smaller than <i>leastDetailedScale </i>*/<br/><br/>
    diff --git a/approved/html/EARoot/EA2/EA3/EA19/EA3/EA9225.htm b/approved/html/EARoot/EA2/EA3/EA19/EA3/EA9225.htm index 7ea911ce7..3cad19015 100644 --- a/approved/html/EARoot/EA2/EA3/EA19/EA3/EA9225.htm +++ b/approved/html/EARoot/EA2/EA3/EA19/EA3/EA9225.htm @@ -112,8 +112,8 @@
    -
    Details: -
    +
    Details: +
     
    @@ -124,8 +124,8 @@
    -
    Details: -
    +
    Details: +
     
    @@ -136,8 +136,8 @@
    -
    Details: -
    +
    Details: +
     
    diff --git a/approved/html/EARoot/EA2/EA3/EA19/EA3/EA9226.htm b/approved/html/EARoot/EA2/EA3/EA19/EA3/EA9226.htm index 723fd2316..29a14e41f 100644 --- a/approved/html/EARoot/EA2/EA3/EA19/EA3/EA9226.htm +++ b/approved/html/EARoot/EA2/EA3/EA19/EA3/EA9226.htm @@ -116,38 +116,38 @@
    - Details: + Details: - + - + - + - + - + - + - + - + @@ -195,8 +195,8 @@ - - - - - @@ -212,14 +154,14 @@
    -
    Details: -
    +
    Details: +
    -- Definition --<br/>The hierarchical relation between statistical tesselations.<br/><br/>
    @@ -231,8 +231,8 @@
    -
    Details: -
    +
    Details: +
    -- Definition --<br/>The hierarchical relation between statistical tesselations.<br/><br/>
    @@ -257,8 +257,8 @@
    -
    Details: -
    +
    Details: +
    -- Definition --<br/>The composition between a statistical tesselation and its composing area statistical units.<br/><br/>
    @@ -280,8 +280,8 @@
    -
    Details: -
    +
    Details: +
    Values: false
    Default: false
    Description: Create a property type that requires that the instance is encoded inline (applies to ISO 19136:2007 encoding rule). Always set to false in INSPIRE.
    @@ -293,8 +293,8 @@
    -
    Details: -
    +
    Details: +
    Values: true | false
    Default: false
    Description: Identifies the feature type as a mixin type that will not be encoded as a separate element/type in the GML encoding.
    @@ -306,8 +306,8 @@
    -
    Details: -
    +
    Details: +
    Default: FIXME
    Description: URN reference to the feature concept in the INSPIRE Feature Concept Dictionary Register
    @@ -319,8 +319,8 @@
    -
    Details: -
    +
    Details: +
    Values: true | false
    Default: false
    Description: Identifies the feature type as a feature collection.
    @@ -332,8 +332,8 @@
    -
    Details: -
    +
    Details: +
    Values: false
    Default: false
    Description: Surpress creation of a standard property type that supports inline or by-reference encoding (applies to ISO 19136:2007 encoding rule). Always set to false in INSPIRE.
    @@ -345,8 +345,8 @@
    -
    Details: -
    +
    Details: +
    Values: iso19136_2007 | iso19139_2007 | iso19136_2007_INSPIRE_Extensions
    Default: iso19136_2007_INSPIRE_Extensions
    Description: XML Schema encoding rule to apply
    diff --git a/approved/html/EARoot/EA2/EA3/EA19/EA3/EA9228.htm b/approved/html/EARoot/EA2/EA3/EA19/EA3/EA9228.htm index 610fd9247..50455922b 100644 --- a/approved/html/EARoot/EA2/EA3/EA19/EA3/EA9228.htm +++ b/approved/html/EARoot/EA2/EA3/EA19/EA3/EA9228.htm @@ -112,65 +112,7 @@
    - Public DateTime
      beginLifespanVersion -
    - Details: - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    - - -
    - - - - -
    - Notes: - - -- Name --<br/>Begin lifespan version<br/><br/>-- Definition --<br/>Date and time at which this version of the spatial object was inserted or changed in the spatial data set.<br/><br/><br/> -
    - - -
    - Public CountryCode
      country + Public Identifier
      inspireId
    - obligation=technicalGuidance
    +
    Notes: - -- Name --<br/>Country<br/><br/>-- Definition --<br/>The code of the country the object belongs to.<br/><br/><br/> + -- Name --<br/>INSPIRE identifier<br/><br/>-- Definition --<br/>External object identifier of the spatial object.<br/><br/>-- Description --<br/>An external object identifier is a unique object identifier published by the responsible body, which may be used by external applications to reference the spatial object. The identifier is an identifier of the spatial object, not an identifier of the real-world phenomenon.<br/><br/>
    @@ -228,7 +170,7 @@
    - Public DateTime
      endLifespanVersion + Public ThematicIdentifier
      thematicId
    @@ -286,7 +228,7 @@
    - Public GeographicalName
      geographicalName + Public CountryCode
      country
    - + obligation=technicalGuidance
    Notes: - -- Name --<br/>Geographical name<br/><br/>-- Definition --<br/>Possible geographical names of the object.<br/><br/> + -- Name --<br/>Country<br/><br/>-- Definition --<br/>The code of the country the object belongs to.<br/><br/><br/>
    @@ -344,7 +286,7 @@
    - Public Identifier
      inspireId + Public GeographicalName
      geographicalName
    @@ -402,7 +344,7 @@ - Public TM_Period
      referencePeriod + Public DateTime
      beginLifespanVersion @@ -420,7 +362,7 @@ Stereotype: - + <<voidable>> Ordered: @@ -451,7 +393,7 @@ Notes: - -- Name --<br/>Reference period<br/><br/>-- Definition --<br/>The period when the data is supposed to give a picture of the territorial division in statistical units.<br/><br/> + -- Name --<br/>Begin lifespan version<br/><br/>-- Definition --<br/>Date and time at which this version of the spatial object was inserted or changed in the spatial data set.<br/><br/><br/> @@ -460,7 +402,7 @@ - Public ThematicIdentifier
      thematicId + Public DateTime
      endLifespanVersion @@ -478,7 +420,7 @@ Stereotype: - + <<voidable>> Ordered: @@ -486,7 +428,7 @@ Range: - Range:0 to * + Range:0 to 1 Transient: @@ -509,7 +451,7 @@ Notes: - -- Name --<br/>Thematic identifier<br/><br/>-- Definition --<br/>Descriptive unique object identifier applied to spatial objects in a defined information theme. <br/><br/>-- Description --<br/>Some statistical units may be assigned multiple thematic identifiers.<br/><br/>EXAMPLE: NUTS codes are thematic identifiers.<br/><br/> + -- Name --<br/>End lifespan version<br/><br/>-- Definition --<br/>Date and time at which this version of the spatial object was superseded or retired in the spatial data set.<br/><br/> @@ -573,6 +515,64 @@ + + + + Public TM_Period
      referencePeriod + + + + + Details: + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + +
    + + + + +
    + Notes: + + -- Name --<br/>Reference period<br/><br/>-- Definition --<br/>The period when the data is supposed to give a picture of the territorial division in statistical units.<br/><br/> +
    + + @@ -604,8 +604,8 @@ -
    Details: -
    +
    Details: +
     
    @@ -638,8 +638,8 @@ -
    Details: -
    +
    Details: +
     
    @@ -662,8 +662,8 @@ -
    Details: -
    +
    Details: +
     
    @@ -687,8 +687,8 @@ -
    Details: -
    +
    Details: +
    -- Definition --<br/>Association between a statistical unit and all the changes that occured on it.<br/><br/>
    @@ -710,8 +710,8 @@ -
    Details: -
    +
    Details: +
    Values: false
    Default: false
    Description: Create a property type that requires that the instance is encoded inline (applies to ISO 19136:2007 encoding rule). Always set to false in INSPIRE.
    @@ -723,8 +723,8 @@ -
    Details: -
    +
    Details: +
    Values: true | false
    Default: false
    Description: Identifies the feature type as a mixin type that will not be encoded as a separate element/type in the GML encoding.
    @@ -736,8 +736,8 @@ -
    Details: -
    +
    Details: +
    Default: FIXME
    Description: URN reference to the feature concept in the INSPIRE Feature Concept Dictionary Register
    @@ -749,8 +749,8 @@ -
    Details: -
    +
    Details: +
    Values: true | false
    Default: false
    Description: Identifies the feature type as a feature collection.
    @@ -762,8 +762,8 @@ -
    Details: -
    +
    Details: +
    Values: false
    Default: false
    Description: Surpress creation of a standard property type that supports inline or by-reference encoding (applies to ISO 19136:2007 encoding rule). Always set to false in INSPIRE.
    @@ -775,8 +775,8 @@ -
    Details: -
    +
    Details: +
    Values: iso19136_2007 | iso19139_2007 | iso19136_2007_INSPIRE_Extensions
    Default: iso19136_2007_INSPIRE_Extensions
    Description: XML Schema encoding rule to apply
    @@ -798,8 +798,8 @@ -
    Details: -
    +
    Details: +
    /* Vector statistical units with a reference geometry instance of <i>GM_MultiSurface</i> must be instances of the specialised class <i>AreaStatisticalUnit.</i> */<br/><br/>
    diff --git a/approved/html/EARoot/EA2/EA3/EA19/EA3/EA9229.htm b/approved/html/EARoot/EA2/EA3/EA19/EA3/EA9229.htm index b097f8263..80fb39402 100644 --- a/approved/html/EARoot/EA2/EA3/EA19/EA3/EA9229.htm +++ b/approved/html/EARoot/EA2/EA3/EA19/EA3/EA9229.htm @@ -113,38 +113,38 @@ - Details: + Details: - + - + - + - + - + - + - + - + @@ -171,38 +171,38 @@ @@ -332,7 +332,7 @@ Notes:
    - Details: + Details: - + - + - + - + - + - + - + - + @@ -252,8 +252,8 @@ @@ -274,7 +274,7 @@ Notes:
    -
    Details: -
    +
    Details: +
     
    diff --git a/approved/html/EARoot/EA2/EA3/EA2/EA1/EA8230.png b/approved/html/EARoot/EA2/EA3/EA2/EA1/EA8230.png index 1cfda6f59..89b18d0ad 100644 Binary files a/approved/html/EARoot/EA2/EA3/EA2/EA1/EA8230.png and b/approved/html/EARoot/EA2/EA3/EA2/EA1/EA8230.png differ diff --git a/approved/html/EARoot/EA2/EA3/EA2/EA1/EA8247.htm b/approved/html/EARoot/EA2/EA3/EA2/EA1/EA8247.htm index df68cb176..bcb71568d 100644 --- a/approved/html/EARoot/EA2/EA3/EA2/EA1/EA8247.htm +++ b/approved/html/EARoot/EA2/EA3/EA2/EA1/EA8247.htm @@ -225,7 +225,7 @@
    - Public Integer
      numberOfBuildingUnits + Public Integer
      numberOfDwellings
    - -- Name --<br/>Number of building units<br/><br/>-- Definition --<br/>Number of building units in the building. A BuildingUnit is a subdivision of Building with its own lockable access from the outside or from a common area (i.e. not from another BuildingUnit), which is atomic, functionally independent, and may be separately sold, rented out, inherited, etc.<br/>-- Description --<br/>Building units are spatial objects aimed at subdividing buildings and/or building parts into smaller parts that are treated as seperate entities in daily life. A building unit is homogeneous, regarding management aspects.<br/>EXAMPLES: It may be e.g. an apartment in a condominium, a terraced house, or a shop inside a shopping arcade.<br/>NOTE 1: According to national regulations, a building unit may be a flat, a cellar, a garage or set of a flat, a cellar and a garage.<br/>NOTE 2: According to national regulation, a building that is one entity for daily life (typically, a single family house) may be considered as a Building composed of one BuildingUnit or as a Building composed of zero BuildingUnit.<br/><br/> + -- Name --<br/>Number of dwellings<br/><br/>-- Definition --<br/>Number of dwellings.<br/><br/>-- Description --<br/>A dwelling is a residential unit which may consist of one or several rooms designed for the occupation of households.<br/>NOTE: In the data sets including building units, a dwelling is a residential building unit or, only when that building has no building units, a residential building<i>.</i><br/>EXAMPLES: a single building dwelling could be a detached or semi-detached house.  A block of flats will contain multiple dwellings determined by the number of individual flats.<br/><br/>
    @@ -283,7 +283,7 @@
    - Public Integer
      numberOfDwellings + Public Integer
      numberOfBuildingUnits
    - -- Name --<br/>Number of dwellings<br/><br/>-- Definition --<br/>Number of dwellings.<br/><br/>-- Description --<br/>A dwelling is a residential unit which may consist of one or several rooms designed for the occupation of households.<br/>NOTE: In the data sets including building units, a dwelling is a residential building unit or, only when that building has no building units, a residential building<i>.</i><br/>EXAMPLES: a single building dwelling could be a detached or semi-detached house.  A block of flats will contain multiple dwellings determined by the number of individual flats.<br/><br/> + -- Name --<br/>Number of building units<br/><br/>-- Definition --<br/>Number of building units in the building. A BuildingUnit is a subdivision of Building with its own lockable access from the outside or from a common area (i.e. not from another BuildingUnit), which is atomic, functionally independent, and may be separately sold, rented out, inherited, etc.<br/>-- Description --<br/>Building units are spatial objects aimed at subdividing buildings and/or building parts into smaller parts that are treated as seperate entities in daily life. A building unit is homogeneous, regarding management aspects.<br/>EXAMPLES: It may be e.g. an apartment in a condominium, a terraced house, or a shop inside a shopping arcade.<br/>NOTE 1: According to national regulations, a building unit may be a flat, a cellar, a garage or set of a flat, a cellar and a garage.<br/>NOTE 2: According to national regulation, a building that is one entity for daily life (typically, a single family house) may be considered as a Building composed of one BuildingUnit or as a Building composed of zero BuildingUnit.<br/><br/>
    diff --git a/approved/html/EARoot/EA2/EA3/EA2/EA1/EA8251.htm b/approved/html/EARoot/EA2/EA3/EA2/EA1/EA8251.htm index fba0a9dd7..42c9d68ca 100644 --- a/approved/html/EARoot/EA2/EA3/EA2/EA1/EA8251.htm +++ b/approved/html/EARoot/EA2/EA3/EA2/EA1/EA8251.htm @@ -166,7 +166,7 @@ - Public Length
      horizontalGeometryEstimatedAccuracy + Public Boolean
      referenceGeometry @@ -184,7 +184,7 @@ Stereotype: - <<voidable>> + Ordered: @@ -215,7 +215,7 @@ Notes: - -- Name --<br/>Horizontal geometry estimated accuracy<br/><br/>-- Definition --<br/>The estimated absolute positional accuracy of the (X,Y) coordinates of the building geometry, in the INSPIRE official Coordinate Reference System. Absolute positional accuracy is defined as the mean value of the positional uncertainties for a set of positions where the positional uncertainties are defined as the distance between a measured position and what is considered as the corresponding true position.<br/>-- Description --<br/>NOTE: This mean value may come from quality measures on a homogeneous population of buildings or from an estimation based on the knowledge of the production processes and of their accuracy.<br/><br/> + -- Name --<br/>Reference geometry<br/><br/>-- Definition --<br/>The geometry to be taken into account by view services, for portrayal.<br/><br/>-- Description --<br/>NOTE 1: In case of multiple representation by point and by surface, it is generally recommended to provide the surface as reference geometry.<br/>NOTE 2: The geometric representation whose referenceGeometry is true may also be used preferably for spatial queries by download services (WFS) or by Geographical Information System (GIS).<br/><br/>
    @@ -282,7 +282,7 @@ - Public Boolean
      referenceGeometry + Public ElevationReferenceValue
      verticalGeometryReference @@ -308,7 +308,7 @@ Range: - + Range:0 to 1 Transient: @@ -324,23 +324,53 @@ - + obligation=implementingRule
    Notes: - -- Name --<br/>Reference geometry<br/><br/>-- Definition --<br/>The geometry to be taken into account by view services, for portrayal.<br/><br/>-- Description --<br/>NOTE 1: In case of multiple representation by point and by surface, it is generally recommended to provide the surface as reference geometry.<br/>NOTE 2: The geometric representation whose referenceGeometry is true may also be used preferably for spatial queries by download services (WFS) or by Geographical Information System (GIS).<br/><br/> + -- Name --<br/>Vertical geometry reference<br/><br/>-- Definition --<br/>Element of the building that was captured by vertical coordinates.<br/><br/>
    - + Constraints:
    OCL horizontalGeometryeEstimatedAccuracyUoM + + + + + +
    + + + ::inv: self.horizontalGeometryEstimatedAccuracy.uom.uomSymbol='m'
    /*Value of horizontalGeometryEstimatedAccuracy has to be given in meters.*/

    +
    OCL verticalGeometryeEstimatedAccuracyUoM + + + + + +
    + + + ::inv: self.verticalGeometryEstimatedAccuracy.uom.uomSymbol='m'
    /*Value of verticalGeometryEstimatedAccuracy has to be given in meters.*/ +
    OCL geometryType + + + + + +
    + + + ::geometry.oclIsKindOf(GM_Point) OR geometry.oclIsKindOf(GM_Surface)
    /*Type of geometry has to be GM_Point or GM_Surface*/ +
    - Public Length
      verticalGeometryEstimatedAccuracy + Public Length
      horizontalGeometryEstimatedAccuracy @@ -366,7 +396,7 @@ Range: - Range:0 to 1 + Transient: @@ -389,7 +419,7 @@ Notes: - -- Name --<br/>Vertical geometry estimated accuracy<br/><br/>-- Definition --<br/>The estimated absolute positional accuracy of the Z coordinates of the  building geometry, in the INSPIRE official Coordinate Reference System. Absolute positional accuracy is defined as the mean value of the positional uncertainties for a set of positions where the positional uncertainties are defined as the distance between a measured position and what is considered as the corresponding true position.<br/>-- Description --<br/>NOTE: This mean value may come from quality measures on a homogeneous population of buildings or from an estimation based on the knowledge of the production processes and of their accuracy.<br/><br/> + -- Name --<br/>Horizontal geometry estimated accuracy<br/><br/>-- Definition --<br/>The estimated absolute positional accuracy of the (X,Y) coordinates of the building geometry, in the INSPIRE official Coordinate Reference System. Absolute positional accuracy is defined as the mean value of the positional uncertainties for a set of positions where the positional uncertainties are defined as the distance between a measured position and what is considered as the corresponding true position.<br/>-- Description --<br/>NOTE: This mean value may come from quality measures on a homogeneous population of buildings or from an estimation based on the knowledge of the production processes and of their accuracy.<br/><br/>
    @@ -398,7 +428,7 @@ - Public ElevationReferenceValue
      verticalGeometryReference + Public Length
      verticalGeometryEstimatedAccuracy @@ -416,7 +446,7 @@ Stereotype: - + <<voidable>> Ordered: @@ -440,49 +470,19 @@ - obligation=implementingRule
    +
    Notes: - -- Name --<br/>Vertical geometry reference<br/><br/>-- Definition --<br/>Element of the building that was captured by vertical coordinates.<br/><br/> + -- Name --<br/>Vertical geometry estimated accuracy<br/><br/>-- Definition --<br/>The estimated absolute positional accuracy of the Z coordinates of the  building geometry, in the INSPIRE official Coordinate Reference System. Absolute positional accuracy is defined as the mean value of the positional uncertainties for a set of positions where the positional uncertainties are defined as the distance between a measured position and what is considered as the corresponding true position.<br/>-- Description --<br/>NOTE: This mean value may come from quality measures on a homogeneous population of buildings or from an estimation based on the knowledge of the production processes and of their accuracy.<br/><br/>
    - Constraints:
    OCL horizontalGeometryeEstimatedAccuracyUoM - - - - - -
    - - - ::inv: self.horizontalGeometryEstimatedAccuracy.uom.uomSymbol='m'
    /*Value of horizontalGeometryEstimatedAccuracy has to be given in meters.*/

    -
    OCL verticalGeometryeEstimatedAccuracyUoM - - - - - -
    - - - ::inv: self.verticalGeometryEstimatedAccuracy.uom.uomSymbol='m'
    /*Value of verticalGeometryEstimatedAccuracy has to be given in meters.*/ -
    OCL geometryType - - - - - -
    - - - ::geometry.oclIsKindOf(GM_Point) OR geometry.oclIsKindOf(GM_Surface)
    /*Type of geometry has to be GM_Point or GM_Surface*/ -
    + diff --git a/approved/html/EARoot/EA2/EA3/EA2/EA2/EA8259.png b/approved/html/EARoot/EA2/EA3/EA2/EA2/EA8259.png index 58b4756cc..3873808d2 100644 Binary files a/approved/html/EARoot/EA2/EA3/EA2/EA2/EA8259.png and b/approved/html/EARoot/EA2/EA3/EA2/EA2/EA8259.png differ diff --git a/approved/html/EARoot/EA2/EA3/EA2/EA3/EA8265.png b/approved/html/EARoot/EA2/EA3/EA2/EA3/EA8265.png index c08dcf8ad..d0b299320 100644 Binary files a/approved/html/EARoot/EA2/EA3/EA2/EA3/EA8265.png and b/approved/html/EARoot/EA2/EA3/EA2/EA3/EA8265.png differ diff --git a/approved/html/EARoot/EA2/EA3/EA2/EA3/EA8268.htm b/approved/html/EARoot/EA2/EA3/EA2/EA3/EA8268.htm index 06f07686c..90005a287 100644 --- a/approved/html/EARoot/EA2/EA3/EA2/EA3/EA8268.htm +++ b/approved/html/EARoot/EA2/EA3/EA2/EA3/EA8268.htm @@ -225,7 +225,7 @@ - Public Length
      horizontalGeometryEstimatedAccuracy + Public GM_MultiCurve
      terrainIntersection @@ -274,7 +274,7 @@ Notes: - -- Name --<br/>Horizontal geometry estimated accuracy<br/><br/>-- Definition --<br/>The estimated absolute positional accuracy of the (X,Y) coordinates of the geometry, in the INSPIRE official Coordinate Reference System. Absolute positional accuracy is defined as the mean value of the positional uncertainties for a set of positions where the positional uncertainties are defined as the distance between a measured position and what is considered as the corresponding true position.<br/><br/>-- Description --<br/>NOTE: this mean value may come from quality measures on a homogeneous population of buildings or from an estimation based on the knowledge of the production processes and of their accuracy.<br/><br/> + -- Name --<br/>Terrain intersection<br/><br/>-- Definition --<br/>Line or multi-line where the spatial object  (Building, BuildingPart, ...) touches the terrain representation.<br/><br/>
    @@ -283,7 +283,7 @@ - Public GM_MultiCurve
      terrainIntersection + Public ElevationReferenceValue
      verticalGeometryReference3DBottom @@ -325,14 +325,14 @@ - + obligation=implementingRule
    Notes: - -- Name --<br/>Terrain intersection<br/><br/>-- Definition --<br/>Line or multi-line where the spatial object  (Building, BuildingPart, ...) touches the terrain representation.<br/><br/> + -- Name --<br/>Vertical geometry reference 3D bottom<br/><br/>-- Definition --<br/>Height level to which the lower height of the model (Z-value of the lower horizontal polygon) refers to. <br/>-- Description --<br/>EXAMPLE: generalGround, bottomOfConstruction.<br/><br/>
    @@ -341,7 +341,7 @@ - Public Length
      verticalGeometryEstimatedAccuracy + Public Length
      horizontalGeometryEstimatedAccuracy @@ -390,7 +390,7 @@ Notes: - -- Name --<br/>Vertical geometry estimated accuracy<br/><br/>-- Definition --<br/>The estimated absolute positional accuracy of the Z- coordinate of the geometry, in the INSPIRE official Coordinate Reference System. Absolute positional accuracy is defined as the mean value of the positional uncertainties for a set of positions where the positional uncertainties are defined as the distance between a measured position and what is considered as the corresponding true position.<br/><br/>-- Description --<br/>NOTE: this mean value may come from quality measures on a homogeneous population of buildings or from an estimation based on the knowledge of the production processes and of their accuracy.<br/><br/> + -- Name --<br/>Horizontal geometry estimated accuracy<br/><br/>-- Definition --<br/>The estimated absolute positional accuracy of the (X,Y) coordinates of the geometry, in the INSPIRE official Coordinate Reference System. Absolute positional accuracy is defined as the mean value of the positional uncertainties for a set of positions where the positional uncertainties are defined as the distance between a measured position and what is considered as the corresponding true position.<br/><br/>-- Description --<br/>NOTE: this mean value may come from quality measures on a homogeneous population of buildings or from an estimation based on the knowledge of the production processes and of their accuracy.<br/><br/>
    @@ -399,7 +399,7 @@ - Public ElevationReferenceValue
      verticalGeometryReference3DBottom + Public Length
      verticalGeometryEstimatedAccuracy @@ -441,14 +441,14 @@ - obligation=implementingRule
    +
    Notes: - -- Name --<br/>Vertical geometry reference 3D bottom<br/><br/>-- Definition --<br/>Height level to which the lower height of the model (Z-value of the lower horizontal polygon) refers to. <br/>-- Description --<br/>EXAMPLE: generalGround, bottomOfConstruction.<br/><br/> + -- Name --<br/>Vertical geometry estimated accuracy<br/><br/>-- Definition --<br/>The estimated absolute positional accuracy of the Z- coordinate of the geometry, in the INSPIRE official Coordinate Reference System. Absolute positional accuracy is defined as the mean value of the positional uncertainties for a set of positions where the positional uncertainties are defined as the distance between a measured position and what is considered as the corresponding true position.<br/><br/>-- Description --<br/>NOTE: this mean value may come from quality measures on a homogeneous population of buildings or from an estimation based on the knowledge of the production processes and of their accuracy.<br/><br/>
    diff --git a/approved/html/EARoot/EA2/EA3/EA20/EA1/EA9235.png b/approved/html/EARoot/EA2/EA3/EA20/EA1/EA9235.png index 25c53c908..8bf20208f 100644 Binary files a/approved/html/EARoot/EA2/EA3/EA20/EA1/EA9235.png and b/approved/html/EARoot/EA2/EA3/EA20/EA1/EA9235.png differ diff --git a/approved/html/EARoot/EA2/EA3/EA20/EA1/EA9236.htm b/approved/html/EARoot/EA2/EA3/EA20/EA1/EA9236.htm index dafbf5118..cfc65bdd8 100644 --- a/approved/html/EARoot/EA2/EA3/EA20/EA1/EA9236.htm +++ b/approved/html/EARoot/EA2/EA3/EA20/EA1/EA9236.htm @@ -111,8 +111,8 @@ -
    Details: -
    +
    Details: +
    Default: FIXME
    Description: Target XML namespace of the application schema
    @@ -124,8 +124,8 @@ -
    Details: -
    +
    Details: +
    Default: FIXME
    Description: Current version of the application schema
    @@ -137,8 +137,8 @@ -
    Details: -
    +
    Details: +
    Default: FIXME
    Description: Namespace prefix to be used as short form of the target namespace
    @@ -150,8 +150,8 @@ -
    Details: -
    +
    Details: +
    Default: FIXME
    Description: Name of an XML Schema document to create representing the content of this package
    @@ -163,8 +163,8 @@ -
    Details: -
    +
    Details: +
    Values: iso19136_2007 | iso19139_2007 | iso19136_2007_INSPIRE_Extensions
    Default: iso19136_2007_INSPIRE_Extensions
    Description: XML Schema encoding rule to apply
    diff --git a/approved/html/EARoot/EA2/EA3/EA20/EA1/EA9238.htm b/approved/html/EARoot/EA2/EA3/EA20/EA1/EA9238.htm index 158d225f7..535798c2d 100644 --- a/approved/html/EARoot/EA2/EA3/EA20/EA1/EA9238.htm +++ b/approved/html/EARoot/EA2/EA3/EA20/EA1/EA9238.htm @@ -114,38 +114,38 @@ - Details: + Details: - + - + - + - + - + - + - + - + @@ -172,38 +172,38 @@ @@ -332,7 +274,7 @@ Notes:
    - Details: + Details: - + - + - + - + - + - + - + - + @@ -230,38 +230,38 @@ @@ -274,7 +216,7 @@ Notes:
    - Details: + Details: - + - + - + - + - + - + - + - + @@ -288,38 +288,38 @@ + + + + + @@ -554,8 +554,8 @@ + + + + + @@ -2233,8 +2233,8 @@ - - - - -
    - Details: + Details: - + - + - + - + - + - + - + - + @@ -346,38 +346,38 @@ + + + + + @@ -1706,8 +1706,8 @@ - - - - - @@ -205,7 +157,7 @@ @@ -253,7 +205,7 @@ @@ -301,7 +253,7 @@ @@ -349,7 +301,7 @@ @@ -397,7 +349,7 @@ @@ -445,7 +397,7 @@ @@ -493,7 +445,7 @@ @@ -536,6 +488,54 @@
    - Details: + Details: - + - + - + - + - + - + - + - + @@ -404,38 +404,38 @@ @@ -1678,17 +1640,55 @@
    - Details: + Details: - + - + - + - + - + - + - + - + @@ -462,38 +462,38 @@ @@ -1620,22 +1592,12 @@
    - Details: + Details: - + - + - + - + - + - + - + - + @@ -528,8 +528,8 @@ @@ -1562,22 +1544,12 @@
    -
    Details: -
    +
    Details: +
    Values: false
    Default: false
    Description: Create a property type that requires that the instance is encoded inline (applies to ISO 19136:2007 encoding rule). Always set to false in INSPIRE.
    @@ -541,8 +541,8 @@
    -
    Details: -
    +
    Details: +
    Values: true | false
    Default: false
    Description: Identifies the feature type as a mixin type that will not be encoded as a separate element/type in the GML encoding.
    @@ -554,8 +554,8 @@
    -
    Details: -
    +
    Details: +
    Default: FIXME
    Description: URN reference to the feature concept in the INSPIRE Feature Concept Dictionary Register
    @@ -567,8 +567,8 @@
    -
    Details: -
    +
    Details: +
    Values: true | false
    Default: false
    Description: Identifies the feature type as a feature collection.
    @@ -580,8 +580,8 @@
    -
    Details: -
    +
    Details: +
    Values: false
    Default: false
    Description: Surpress creation of a standard property type that supports inline or by-reference encoding (applies to ISO 19136:2007 encoding rule). Always set to false in INSPIRE.
    @@ -593,8 +593,8 @@
    -
    Details: -
    +
    Details: +
    Values: iso19136_2007 | iso19139_2007 | iso19136_2007_INSPIRE_Extensions
    Default: iso19136_2007_INSPIRE_Extensions
    Description: XML Schema encoding rule to apply
    @@ -616,8 +616,8 @@
    -
    Details: -
    +
    Details: +
    /* If set, the date endLifespanVersion shall be later than beginLifespanVersion. */<br/>inv: self.endLifespanVersion .isAfter(self.beginLifespanVersion)<br/><br/>
    diff --git a/approved/html/EARoot/EA2/EA3/EA20/EA1/EA9239.htm b/approved/html/EARoot/EA2/EA3/EA20/EA1/EA9239.htm index 0f2528550..b10b27c48 100644 --- a/approved/html/EARoot/EA2/EA3/EA20/EA1/EA9239.htm +++ b/approved/html/EARoot/EA2/EA3/EA20/EA1/EA9239.htm @@ -113,38 +113,38 @@
    - Details: + Details: - + - + - + - + - + - + - + - + @@ -171,38 +171,38 @@ + + + + + @@ -1510,7 +1492,7 @@ Notes:
    - Details: + Details: - + - + - + - + - + - + - + - + @@ -229,38 +229,38 @@ @@ -443,14 +385,72 @@
    - Details: + Details: - + - + - + - + - + - + - + - + @@ -287,38 +287,38 @@ @@ -369,7 +311,7 @@ - + @@ -385,14 +327,14 @@
    - Details: + Details: - + - + - + - + - + - + - + - + @@ -353,8 +353,8 @@ @@ -334,7 +276,7 @@ Notes:
    -
    Details: -
    +
    Details: +
    Values: false
    Default: false
    Description: Surpress creation of a standard property type that supports inline encoding (applies to ISO 19136:2007 encoding rule). Always set to false in INSPIRE.
    @@ -366,8 +366,8 @@
    -
    Details: -
    +
    Details: +
    Values: iso19136_2007 | iso19139_2007 | iso19136_2007_INSPIRE_Extensions
    Default: iso19136_2007_INSPIRE_Extensions
    Description: XML Schema encoding rule to apply
    diff --git a/approved/html/EARoot/EA2/EA3/EA20/EA1/EA9240.htm b/approved/html/EARoot/EA2/EA3/EA20/EA1/EA9240.htm index cc3637254..9f3ca3707 100644 --- a/approved/html/EARoot/EA2/EA3/EA20/EA1/EA9240.htm +++ b/approved/html/EARoot/EA2/EA3/EA20/EA1/EA9240.htm @@ -108,43 +108,43 @@
    - Public ActivityComplex
      serviceLocationByActivityComplex + Public Address
      serviceLocationByAddress
    - Details: + Details: - + - + - + - + - + - + - + - + @@ -157,7 +157,7 @@ Notes:
    - -- Name --<br/>service location by activity complex<br/><br/>-- Definition --<br/>Location of the service by referring to an activity complex.<br/><br/> + -- Name --<br/>service location by address<br/><br/>-- Definition --<br/>Location of the service by referring to an address.<br/><br/>
    @@ -166,43 +166,43 @@
    - Public Address
      serviceLocationByAddress + Public Building
      serviceLocationByBuilding
    - Details: + Details: - + - + - + - + - + - + - + - + @@ -215,7 +215,7 @@ Notes:
    - -- Name --<br/>service location by address<br/><br/>-- Definition --<br/>Location of the service by referring to an address.<br/><br/> + -- Name --<br/>service location by building<br/><br/>-- Definition --<br/>Location of the service by referring to a building.<br/><br/>
    @@ -224,43 +224,43 @@
    - Public Building
      serviceLocationByBuilding + Public ActivityComplex
      serviceLocationByActivityComplex
    - Details: + Details: - + - + - + - + - + - + - + - + @@ -273,7 +273,7 @@ Notes:
    - -- Name --<br/>service location by building<br/><br/>-- Definition --<br/>Location of the service by referring to a building.<br/><br/> + -- Name --<br/>service location by activity complex<br/><br/>-- Definition --<br/>Location of the service by referring to an activity complex.<br/><br/>
    @@ -287,38 +287,38 @@
    - Details: + Details: - + - + - + - + - + - + - + - + @@ -345,38 +345,38 @@ @@ -253,7 +195,7 @@ - + @@ -276,7 +218,7 @@ Notes:
    - Details: + Details: - + - + - + - + - + - + - + - + @@ -411,8 +411,8 @@ - - - - - @@ -211,14 +153,14 @@
    -
    Details: -
    +
    Details: +
    Values: false
    Default: false
    Description: Surpress creation of a standard property type that supports inline encoding (applies to ISO 19136:2007 encoding rule). Always set to false in INSPIRE.
    @@ -424,8 +424,8 @@
    -
    Details: -
    +
    Details: +
    Values: iso19136_2007 | iso19139_2007 | iso19136_2007_INSPIRE_Extensions
    Default: iso19136_2007_INSPIRE_Extensions
    Description: XML Schema encoding rule to apply
    diff --git a/approved/html/EARoot/EA2/EA3/EA20/EA1/EA9241.htm b/approved/html/EARoot/EA2/EA3/EA20/EA1/EA9241.htm index 31616bebb..63cbdf0b0 100644 --- a/approved/html/EARoot/EA2/EA3/EA20/EA1/EA9241.htm +++ b/approved/html/EARoot/EA2/EA3/EA20/EA1/EA9241.htm @@ -113,8 +113,8 @@
    -
    Details: -
    +
    Details: +
    Values: true
    Default: true
    Description: Encode code list as externally managed dictionary (applies to ISO 19136:2007 encoding rule). Always true in INSPIRE.
    @@ -126,8 +126,8 @@
    -
    Details: -
    +
    Details: +
    Values: none | narrower | any
    Default: any
    Description: This refers to extensions by a third party, not to extensions by the owner of the vocabulary; the owner will always be able to revise the vocabulary. I.e., if the value is 'none', the referenced vocabulary may not be extended by third parties; if the value is 'narrower', the vocabulary may be extended by narrower terms that have an existing term as a parent; if the value is 'any', the vocabulary may be extended by additional terms on any level. This value must be 'all', empty or missing, if the value 'vocabulary' is empty or missing; in this case any vocabulary may be used.
    @@ -139,8 +139,8 @@
    -
    Details: -
    +
    Details: +
    Description: URI of the vocabulary/code list in the INSPIRE code list registry or in some external registry. The value has to be provided, if an online version of the vocabulary exists.
    @@ -152,8 +152,8 @@
    -
    Details: -
    +
    Details: +
    Values: iso19136_2007 | iso19139_2007 | iso19136_2007_INSPIRE_Extensions
    Default: iso19136_2007_INSPIRE_Extensions
    Description: XML Schema encoding rule to apply
    @@ -173,8 +173,8 @@
    -
    Details: -
    +
    Details: +

    File Size: 98 k
    Time Stamp:
    diff --git a/approved/html/EARoot/EA2/EA3/EA20/EA2/EA9243.png b/approved/html/EARoot/EA2/EA3/EA20/EA2/EA9243.png index ba749fe44..bf8a22aab 100644 Binary files a/approved/html/EARoot/EA2/EA3/EA20/EA2/EA9243.png and b/approved/html/EARoot/EA2/EA3/EA20/EA2/EA9243.png differ diff --git a/approved/html/EARoot/EA2/EA3/EA20/EA2/EA9245.png b/approved/html/EARoot/EA2/EA3/EA20/EA2/EA9245.png index d6e70861f..de71528b9 100644 Binary files a/approved/html/EARoot/EA2/EA3/EA20/EA2/EA9245.png and b/approved/html/EARoot/EA2/EA3/EA20/EA2/EA9245.png differ diff --git a/approved/html/EARoot/EA2/EA3/EA20/EA2/EA9248.htm b/approved/html/EARoot/EA2/EA3/EA20/EA2/EA9248.htm index 54de04311..3439a0735 100644 --- a/approved/html/EARoot/EA2/EA3/EA20/EA2/EA9248.htm +++ b/approved/html/EARoot/EA2/EA3/EA20/EA2/EA9248.htm @@ -111,8 +111,8 @@
    -
    Details: -
    +
    Details: +
    Default: FIXME
    Description: Target XML namespace of the application schema
    @@ -124,8 +124,8 @@
    -
    Details: -
    +
    Details: +
    Default: FIXME
    Description: Current version of the application schema
    @@ -137,8 +137,8 @@
    -
    Details: -
    +
    Details: +
    Default: FIXME
    Description: Namespace prefix to be used as short form of the target namespace
    @@ -150,8 +150,8 @@
    -
    Details: -
    +
    Details: +
    Default: FIXME
    Description: Name of an XML Schema document to create representing the content of this package
    @@ -163,8 +163,8 @@
    -
    Details: -
    +
    Details: +
    Values: iso19136_2007 | iso19139_2007 | iso19136_2007_INSPIRE_Extensions
    Default: iso19136_2007_INSPIRE_Extensions
    Description: XML Schema encoding rule to apply
    diff --git a/approved/html/EARoot/EA2/EA3/EA20/EA2/EA9253.htm b/approved/html/EARoot/EA2/EA3/EA20/EA2/EA9253.htm index 78de5a854..c1449b15b 100644 --- a/approved/html/EARoot/EA2/EA3/EA20/EA2/EA9253.htm +++ b/approved/html/EARoot/EA2/EA3/EA20/EA2/EA9253.htm @@ -111,65 +111,7 @@
    - Public ActivityComplexDescription
      facilityDescription -
    - Details: - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    - - -
    - - - - -
    - Notes: - - -- Name --<br/>facility description<br/><br/>-- Definition --<br/>Additional information on an Environmental Management Facilities, including its address, a contact details, related parties and a free text description.<br/><br/> -
    - - -
    - Public Permission
      permission + Public EnvironmentalManagementFacilityTypeValue
      type
    - + extensibility=narrower
    obligation=technicalGuidance
    vocabulary=http://inspire.ec.europa.eu/codeList/EnvironmentalFacilityType
    Notes: - -- Name --<br/>permission<br/><br/>-- Definition --<br/>Official Decision (formal consent) granting authorization to operate all or part of an Environmental Management Facility , subject to certain conditions which guarantee that the installation or parts of installations on the same site operated by the same operator complies with the requirements fixed by the law or standards. A permit may cover one or more functions and fix parameters of capacity;<br/><br/>The term may be extended to other kind of certificates or documents of special relevance depending of the scope (e.g. ISO, EMAS, National Quality Standards, etc).<br/><br/>-- Description --<br/>NOTE This terms is referred in several legislative acts as “permit” , “authorization”, “development consent” or “exploration permit” among others.<br/><br/>EXAMPLE 1 “…a [written] decision by which the competent authority grants permission to operate all or part of an installation” ;<br/>EXAMPLE 2 “.. the decision of the competent authority or authorities which entitles the developer <br/><br/> + -- Name --<br/>type<br/><br/>-- Definition --<br/>The type of facility, such as installation or site.<br/><br/>
    @@ -227,7 +169,7 @@
    - Public Capacity
      physicalCapacity + Public PT_FreeText
      serviceHours
    @@ -285,7 +227,7 @@
    - Public PT_FreeText
      serviceHours + Public ActivityComplexDescription
      facilityDescription
    - -- Name --<br/>service hours<br/><br/>-- Definition --<br/>Service hours of the facility.<br/> + -- Name --<br/>facility description<br/><br/>-- Definition --<br/>Additional information on an Environmental Management Facilities, including its address, a contact details, related parties and a free text description.<br/><br/>
    @@ -343,7 +285,7 @@
    - Public ConditionOfFacilityValue
      status + Public Capacity
      physicalCapacity
    - obligation=IR
    +
    Notes: - -- Name --<br/>status<br/><br/>-- Definition --<br/>The status of the Environmental Management Facility, such as operational or decommissioned.<br/><br/> + -- Name --<br/>physical capacity<br/><br/>-- Definition --<br/>A quantification of an actual or potential ability to perform an activity, that typically does not change, does not change often, or does not change to a significant degree.<br/><br/>-- Description --<br/>NOTE  Capacity could refer depending of the thematic scope to different concepts included on the legislation as “emission limits”, “capacity incineration”, “nominal capacity”, “objective estimation data”, “rate of desulphurization” or “recycling rate”.<br/><br/>
    @@ -401,7 +343,7 @@
    - Public EnvironmentalManagementFacilityTypeValue
      type + Public Permission
      permission
    - extensibility=narrower
    obligation=technicalGuidance
    vocabulary=http://inspire.ec.europa.eu/codeList/EnvironmentalFacilityType
    +
    + +
    Notes: - -- Name --<br/>type<br/><br/>-- Definition --<br/>The type of facility, such as installation or site.<br/><br/> + -- Name --<br/>permission<br/><br/>-- Definition --<br/>Official Decision (formal consent) granting authorization to operate all or part of an Environmental Management Facility , subject to certain conditions which guarantee that the installation or parts of installations on the same site operated by the same operator complies with the requirements fixed by the law or standards. A permit may cover one or more functions and fix parameters of capacity;<br/><br/>The term may be extended to other kind of certificates or documents of special relevance depending of the scope (e.g. ISO, EMAS, National Quality Standards, etc).<br/><br/>-- Description --<br/>NOTE This terms is referred in several legislative acts as “permit” , “authorization”, “development consent” or “exploration permit” among others.<br/><br/>EXAMPLE 1 “…a [written] decision by which the competent authority grants permission to operate all or part of an installation” ;<br/>EXAMPLE 2 “.. the decision of the competent authority or authorities which entitles the developer <br/><br/> +
    + + +
    + Public ConditionOfFacilityValue
      status +
    + Details: + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + obligation=IR
    +
    + + +
    + Notes: + + -- Name --<br/>status<br/><br/>-- Definition --<br/>The status of the Environmental Management Facility, such as operational or decommissioned.<br/><br/>
    @@ -490,8 +490,8 @@
    -
    Details: -
    +
    Details: +
     
    @@ -530,8 +530,8 @@
    -
    Details: -
    +
    Details: +
     
    @@ -552,8 +552,8 @@
    -
    Details: -
    +
    Details: +
    Values: false
    Default: false
    Description: Create a property type that requires that the instance is encoded inline (applies to ISO 19136:2007 encoding rule). Always set to false in INSPIRE.
    @@ -565,8 +565,8 @@
    -
    Details: -
    +
    Details: +
    Values: true | false
    Default: false
    Description: Identifies the feature type as a mixin type that will not be encoded as a separate element/type in the GML encoding.
    @@ -578,8 +578,8 @@
    -
    Details: -
    +
    Details: +
    Default: FIXME
    Description: URN reference to the feature concept in the INSPIRE Feature Concept Dictionary Register
    @@ -591,8 +591,8 @@
    -
    Details: -
    +
    Details: +
    Values: true | false
    Default: false
    Description: Identifies the feature type as a feature collection.
    @@ -604,8 +604,8 @@
    -
    Details: -
    +
    Details: +
    Values: false
    Default: false
    Description: Surpress creation of a standard property type that supports inline or by-reference encoding (applies to ISO 19136:2007 encoding rule). Always set to false in INSPIRE.
    @@ -617,8 +617,8 @@
    -
    Details: -
    +
    Details: +
    Values: iso19136_2007 | iso19139_2007 | iso19136_2007_INSPIRE_Extensions
    Default: iso19136_2007_INSPIRE_Extensions
    Description: XML Schema encoding rule to apply
    diff --git a/approved/html/EARoot/EA2/EA3/EA20/EA2/EA9254.htm b/approved/html/EARoot/EA2/EA3/EA20/EA2/EA9254.htm index 9d45301fd..7326b0d24 100644 --- a/approved/html/EARoot/EA2/EA3/EA20/EA2/EA9254.htm +++ b/approved/html/EARoot/EA2/EA3/EA20/EA2/EA9254.htm @@ -112,8 +112,8 @@
    -
    Details: -
    +
    Details: +
    Values: true
    Default: true
    Description: Encode code list as externally managed dictionary (applies to ISO 19136:2007 encoding rule). Always true in INSPIRE.
    @@ -125,8 +125,8 @@
    -
    Details: -
    +
    Details: +
    Values: none | narrower | any
    Default: any
    Description: This refers to extensions by a third party, not to extensions by the owner of the vocabulary; the owner will always be able to revise the vocabulary. I.e., if the value is 'none', the referenced vocabulary may not be extended by third parties; if the value is 'narrower', the vocabulary may be extended by narrower terms that have an existing term as a parent; if the value is 'any', the vocabulary may be extended by additional terms on any level. This value must be 'all', empty or missing, if the value 'vocabulary' is empty or missing; in this case any vocabulary may be used.
    @@ -138,8 +138,8 @@
    -
    Details: -
    +
    Details: +
    Description: URI of the vocabulary/code list in the INSPIRE code list registry or in some external registry. The value has to be provided, if an online version of the vocabulary exists.
    @@ -151,8 +151,8 @@
    -
    Details: -
    +
    Details: +
    Values: iso19136_2007 | iso19139_2007 | iso19136_2007_INSPIRE_Extensions
    Default: iso19136_2007_INSPIRE_Extensions
    Description: XML Schema encoding rule to apply
    diff --git a/approved/html/EARoot/EA2/EA3/EA20/EA3/EA1/EA9273.png b/approved/html/EARoot/EA2/EA3/EA20/EA3/EA1/EA9273.png index afe42f536..33816c4cc 100644 Binary files a/approved/html/EARoot/EA2/EA3/EA20/EA3/EA1/EA9273.png and b/approved/html/EARoot/EA2/EA3/EA20/EA3/EA1/EA9273.png differ diff --git a/approved/html/EARoot/EA2/EA3/EA20/EA3/EA1/EA9275.png b/approved/html/EARoot/EA2/EA3/EA20/EA3/EA1/EA9275.png index 3675d149e..489897cc4 100644 Binary files a/approved/html/EARoot/EA2/EA3/EA20/EA3/EA1/EA9275.png and b/approved/html/EARoot/EA2/EA3/EA20/EA3/EA1/EA9275.png differ diff --git a/approved/html/EARoot/EA2/EA3/EA20/EA3/EA1/EA9276.htm b/approved/html/EARoot/EA2/EA3/EA20/EA3/EA1/EA9276.htm index ff60d8e7d..8ffd47af0 100644 --- a/approved/html/EARoot/EA2/EA3/EA20/EA3/EA1/EA9276.htm +++ b/approved/html/EARoot/EA2/EA3/EA20/EA3/EA1/EA9276.htm @@ -112,8 +112,8 @@
    -
    Details: -
    +
    Details: +
    Default: FIXME
    Description: Target XML namespace of the application schema
    @@ -125,8 +125,8 @@
    -
    Details: -
    +
    Details: +
    Default: FIXME
    Description: Current version of the application schema
    @@ -138,8 +138,8 @@
    -
    Details: -
    +
    Details: +
    Default: FIXME
    Description: Namespace prefix to be used as short form of the target namespace
    @@ -151,8 +151,8 @@
    -
    Details: -
    +
    Details: +
    Default: FIXME
    Description: Name of an XML Schema document to create representing the content of this package
    @@ -164,8 +164,8 @@
    -
    Details: -
    +
    Details: +
    Values: iso19136_2007 | iso19139_2007 | iso19136_2007_INSPIRE_Extensions
    Default: iso19136_2007_INSPIRE_Extensions
    Description: XML Schema encoding rule to apply
    diff --git a/approved/html/EARoot/EA2/EA3/EA20/EA3/EA1/EA9277.htm b/approved/html/EARoot/EA2/EA3/EA20/EA3/EA1/EA9277.htm index 8e95690bf..769876f60 100644 --- a/approved/html/EARoot/EA2/EA3/EA20/EA3/EA1/EA9277.htm +++ b/approved/html/EARoot/EA2/EA3/EA20/EA3/EA1/EA9277.htm @@ -115,38 +115,38 @@
    - Details: + Details: - + - + - + - + - + - + - + - + @@ -173,38 +173,38 @@ @@ -1452,7 +1434,7 @@ Notes:
    - Details: + Details: - + - + - + - + - + - + - + - + @@ -239,8 +239,8 @@ @@ -1394,7 +1376,7 @@ Notes:
    -
    Details: -
    +
    Details: +
    Values: false
    Default: false
    Description: Create a property type that requires that the instance is encoded inline (applies to ISO 19136:2007 encoding rule). Always set to false in INSPIRE.
    @@ -252,8 +252,8 @@
    -
    Details: -
    +
    Details: +
    Values: true | false
    Default: false
    Description: Identifies the feature type as a mixin type that will not be encoded as a separate element/type in the GML encoding.
    @@ -265,8 +265,8 @@
    -
    Details: -
    +
    Details: +
    Default: FIXME
    Description: URN reference to the feature concept in the INSPIRE Feature Concept Dictionary Register
    @@ -278,8 +278,8 @@
    -
    Details: -
    +
    Details: +
    Values: true | false
    Default: false
    Description: Identifies the feature type as a feature collection.
    @@ -291,8 +291,8 @@
    -
    Details: -
    +
    Details: +
    Values: false
    Default: false
    Description: Surpress creation of a standard property type that supports inline or by-reference encoding (applies to ISO 19136:2007 encoding rule). Always set to false in INSPIRE.
    @@ -304,8 +304,8 @@
    -
    Details: -
    +
    Details: +
    Values: iso19136_2007 | iso19139_2007 | iso19136_2007_INSPIRE_Extensions
    Default: iso19136_2007_INSPIRE_Extensions
    Description: XML Schema encoding rule to apply
    @@ -327,8 +327,8 @@
    -
    Details: -
    +
    Details: +
     
    diff --git a/approved/html/EARoot/EA2/EA3/EA20/EA3/EA1/EA9278.htm b/approved/html/EARoot/EA2/EA3/EA20/EA3/EA1/EA9278.htm index 3fae653f8..3d209aada 100644 --- a/approved/html/EARoot/EA2/EA3/EA20/EA3/EA1/EA9278.htm +++ b/approved/html/EARoot/EA2/EA3/EA20/EA3/EA1/EA9278.htm @@ -113,8 +113,8 @@
    -
    Details: -
    +
    Details: +
    Values: true
    Default: true
    Description: Encode code list as externally managed dictionary (applies to ISO 19136:2007 encoding rule). Always true in INSPIRE.
    @@ -126,8 +126,8 @@
    -
    Details: -
    +
    Details: +
    Values: none | narrower | any
    Default: any
    Description: This refers to extensions by a third party, not to extensions by the owner of the vocabulary; the owner will always be able to revise the vocabulary. I.e., if the value is 'none', the referenced vocabulary may not be extended by third parties; if the value is 'narrower', the vocabulary may be extended by narrower terms that have an existing term as a parent; if the value is 'any', the vocabulary may be extended by additional terms on any level. This value must be 'all', empty or missing, if the value 'vocabulary' is empty or missing; in this case any vocabulary may be used.
    @@ -139,8 +139,8 @@
    -
    Details: -
    +
    Details: +
    Description: URI of the vocabulary/code list in the INSPIRE code list registry or in some external registry. The value has to be provided, if an online version of the vocabulary exists.
    @@ -152,8 +152,8 @@
    -
    Details: -
    +
    Details: +
    Values: iso19136_2007 | iso19139_2007 | iso19136_2007_INSPIRE_Extensions
    Default: iso19136_2007_INSPIRE_Extensions
    Description: XML Schema encoding rule to apply
    diff --git a/approved/html/EARoot/EA2/EA3/EA20/EA3/EA1/EA9279.htm b/approved/html/EARoot/EA2/EA3/EA20/EA3/EA1/EA9279.htm index 770f8dbb1..879ecf867 100644 --- a/approved/html/EARoot/EA2/EA3/EA20/EA3/EA1/EA9279.htm +++ b/approved/html/EARoot/EA2/EA3/EA20/EA3/EA1/EA9279.htm @@ -113,8 +113,8 @@
    -
    Details: -
    +
    Details: +
    Values: false
    Default: false
    Description: Create a property type that requires that the instance is encoded inline (applies to ISO 19136:2007 encoding rule). Always set to false in INSPIRE.
    @@ -126,8 +126,8 @@
    -
    Details: -
    +
    Details: +
    Values: true | false
    Default: false
    Description: Identifies the feature type as a mixin type that will not be encoded as a separate element/type in the GML encoding.
    @@ -139,8 +139,8 @@
    -
    Details: -
    +
    Details: +
    Default: FIXME
    Description: URN reference to the feature concept in the INSPIRE Feature Concept Dictionary Register
    @@ -152,8 +152,8 @@
    -
    Details: -
    +
    Details: +
    Values: true | false
    Default: false
    Description: Identifies the feature type as a feature collection.
    @@ -165,8 +165,8 @@
    -
    Details: -
    +
    Details: +
    Values: false
    Default: false
    Description: Surpress creation of a standard property type that supports inline or by-reference encoding (applies to ISO 19136:2007 encoding rule). Always set to false in INSPIRE.
    @@ -178,8 +178,8 @@
    -
    Details: -
    +
    Details: +
    Values: iso19136_2007 | iso19139_2007 | iso19136_2007_INSPIRE_Extensions
    Default: iso19136_2007_INSPIRE_Extensions
    Description: XML Schema encoding rule to apply
    diff --git a/approved/html/EARoot/EA2/EA3/EA20/EA3/EA1/EA9280.htm b/approved/html/EARoot/EA2/EA3/EA20/EA3/EA1/EA9280.htm index e5b4e20f4..001662049 100644 --- a/approved/html/EARoot/EA2/EA3/EA20/EA3/EA1/EA9280.htm +++ b/approved/html/EARoot/EA2/EA3/EA20/EA3/EA1/EA9280.htm @@ -129,8 +129,8 @@
    -
    Details: -
    +
    Details: +
    -- Name --<br/>cables<br/><br/>-- Definition --<br/>Ducts (duct banks, or inner-ducts) may contain cables.<br/><br/>
    @@ -157,8 +157,8 @@
    -
    Details: -
    +
    Details: +
    -- Name --<br/>cables<br/><br/>-- Definition --<br/>A pipe may contain one or more cables.<br/><br/>
    @@ -180,8 +180,8 @@
    -
    Details: -
    +
    Details: +
    Values: false
    Default: false
    Description: Create a property type that requires that the instance is encoded inline (applies to ISO 19136:2007 encoding rule). Always set to false in INSPIRE.
    @@ -193,8 +193,8 @@
    -
    Details: -
    +
    Details: +
    Values: true | false
    Default: false
    Description: Identifies the feature type as a mixin type that will not be encoded as a separate element/type in the GML encoding.
    @@ -206,8 +206,8 @@
    -
    Details: -
    +
    Details: +
    Default: FIXME
    Description: URN reference to the feature concept in the INSPIRE Feature Concept Dictionary Register
    @@ -219,8 +219,8 @@
    -
    Details: -
    +
    Details: +
    Values: true | false
    Default: false
    Description: Identifies the feature type as a feature collection.
    @@ -232,8 +232,8 @@
    -
    Details: -
    +
    Details: +
    Values: false
    Default: false
    Description: Surpress creation of a standard property type that supports inline or by-reference encoding (applies to ISO 19136:2007 encoding rule). Always set to false in INSPIRE.
    @@ -245,8 +245,8 @@
    -
    Details: -
    +
    Details: +
    Values: iso19136_2007 | iso19139_2007 | iso19136_2007_INSPIRE_Extensions
    Default: iso19136_2007_INSPIRE_Extensions
    Description: XML Schema encoding rule to apply
    diff --git a/approved/html/EARoot/EA2/EA3/EA20/EA3/EA1/EA9281.htm b/approved/html/EARoot/EA2/EA3/EA20/EA3/EA1/EA9281.htm index 173f91c69..c7a3941ec 100644 --- a/approved/html/EARoot/EA2/EA3/EA20/EA3/EA1/EA9281.htm +++ b/approved/html/EARoot/EA2/EA3/EA20/EA3/EA1/EA9281.htm @@ -117,38 +117,38 @@
    - Details: + Details: - + - + - + - + - + - + - + - + @@ -198,8 +198,8 @@ @@ -1336,7 +1318,7 @@ Notes:
    -
    Details: -
    +
    Details: +
    -- Name --<br/>ducts<br/><br/>-- Definition --<br/>Ducts (duct banks) may contain inner-ducts.<br/><br/>
    @@ -237,8 +237,8 @@
    -
    Details: -
    +
    Details: +
    -- Name --<br/>pipes<br/><br/>-- Definition --<br/>Ducts (duct banks) consist of one or more pipes.<br/><br/>
    @@ -265,8 +265,8 @@
    -
    Details: -
    +
    Details: +
    -- Name --<br/>ducts<br/><br/>-- Definition --<br/>Ducts (duct banks) may contain inner-ducts.<br/><br/>
    @@ -293,8 +293,8 @@
    -
    Details: -
    +
    Details: +
    -- Name --<br/>cables<br/><br/>-- Definition --<br/>Ducts (duct banks, or inner-ducts) may contain cables.<br/><br/>
    @@ -316,8 +316,8 @@
    -
    Details: -
    +
    Details: +
    Values: false
    Default: false
    Description: Create a property type that requires that the instance is encoded inline (applies to ISO 19136:2007 encoding rule). Always set to false in INSPIRE.
    @@ -329,8 +329,8 @@
    -
    Details: -
    +
    Details: +
    Values: true | false
    Default: false
    Description: Identifies the feature type as a mixin type that will not be encoded as a separate element/type in the GML encoding.
    @@ -342,8 +342,8 @@
    -
    Details: -
    +
    Details: +
    Default: FIXME
    Description: URN reference to the feature concept in the INSPIRE Feature Concept Dictionary Register
    @@ -355,8 +355,8 @@
    -
    Details: -
    +
    Details: +
    Values: true | false
    Default: false
    Description: Identifies the feature type as a feature collection.
    @@ -368,8 +368,8 @@
    -
    Details: -
    +
    Details: +
    Values: false
    Default: false
    Description: Surpress creation of a standard property type that supports inline or by-reference encoding (applies to ISO 19136:2007 encoding rule). Always set to false in INSPIRE.
    @@ -381,8 +381,8 @@
    -
    Details: -
    +
    Details: +
    Values: iso19136_2007 | iso19139_2007 | iso19136_2007_INSPIRE_Extensions
    Default: iso19136_2007_INSPIRE_Extensions
    Description: XML Schema encoding rule to apply
    @@ -404,8 +404,8 @@
    -
    Details: -
    +
    Details: +
    /*The multiplicity of "utilityDeliveryType" shall be 0*/<br/>inv: utilityDeliveryType-#gt;size()=0<br/><br/>
    diff --git a/approved/html/EARoot/EA2/EA3/EA20/EA3/EA1/EA9283.htm b/approved/html/EARoot/EA2/EA3/EA20/EA3/EA1/EA9283.htm index 36a454537..2c01a569d 100644 --- a/approved/html/EARoot/EA2/EA3/EA20/EA3/EA1/EA9283.htm +++ b/approved/html/EARoot/EA2/EA3/EA20/EA3/EA1/EA9283.htm @@ -113,8 +113,8 @@
    -
    Details: -
    +
    Details: +
    Values: false
    Default: false
    Description: Create a property type that requires that the instance is encoded inline (applies to ISO 19136:2007 encoding rule). Always set to false in INSPIRE.
    @@ -126,8 +126,8 @@
    -
    Details: -
    +
    Details: +
    Values: true | false
    Default: false
    Description: Identifies the feature type as a mixin type that will not be encoded as a separate element/type in the GML encoding.
    @@ -139,8 +139,8 @@
    -
    Details: -
    +
    Details: +
    Default: FIXME
    Description: URN reference to the feature concept in the INSPIRE Feature Concept Dictionary Register
    @@ -152,8 +152,8 @@
    -
    Details: -
    +
    Details: +
    Values: true | false
    Default: false
    Description: Identifies the feature type as a feature collection.
    @@ -165,8 +165,8 @@
    -
    Details: -
    +
    Details: +
    Values: false
    Default: false
    Description: Surpress creation of a standard property type that supports inline or by-reference encoding (applies to ISO 19136:2007 encoding rule). Always set to false in INSPIRE.
    @@ -178,8 +178,8 @@
    -
    Details: -
    +
    Details: +
    Values: iso19136_2007 | iso19139_2007 | iso19136_2007_INSPIRE_Extensions
    Default: iso19136_2007_INSPIRE_Extensions
    Description: XML Schema encoding rule to apply
    diff --git a/approved/html/EARoot/EA2/EA3/EA20/EA3/EA1/EA9284.htm b/approved/html/EARoot/EA2/EA3/EA20/EA3/EA1/EA9284.htm index eafaee325..b91ed31a8 100644 --- a/approved/html/EARoot/EA2/EA3/EA20/EA3/EA1/EA9284.htm +++ b/approved/html/EARoot/EA2/EA3/EA20/EA3/EA1/EA9284.htm @@ -116,38 +116,38 @@
    - Details: + Details: - + - + - + - + - + - + - + - + @@ -174,38 +174,38 @@ @@ -1278,7 +1260,7 @@ Notes:
    - Details: + Details: - + - + - + - + - + - + - + - + @@ -256,8 +256,8 @@ @@ -1220,7 +1202,7 @@ Notes:
    -
    Details: -
    +
    Details: +
    -- Name --<br/>pipes<br/><br/>-- Definition --<br/>Ducts (duct banks) consist of one or more pipes.<br/><br/>
    @@ -284,8 +284,8 @@
    -
    Details: -
    +
    Details: +
    -- Name --<br/>pipes<br/><br/>-- Definition --<br/>A pipe may contain one or more pipes.<br/><br/>
    @@ -322,8 +322,8 @@
    -
    Details: -
    +
    Details: +
    -- Name --<br/>pipes<br/><br/>-- Definition --<br/>A pipe may contain one or more pipes.<br/><br/>
    @@ -350,8 +350,8 @@
    -
    Details: -
    +
    Details: +
    -- Name --<br/>cables<br/><br/>-- Definition --<br/>A pipe may contain one or more cables.<br/><br/>
    @@ -373,8 +373,8 @@
    -
    Details: -
    +
    Details: +
    Values: false
    Default: false
    Description: Create a property type that requires that the instance is encoded inline (applies to ISO 19136:2007 encoding rule). Always set to false in INSPIRE.
    @@ -386,8 +386,8 @@
    -
    Details: -
    +
    Details: +
    Values: true | false
    Default: false
    Description: Identifies the feature type as a mixin type that will not be encoded as a separate element/type in the GML encoding.
    @@ -399,8 +399,8 @@
    -
    Details: -
    +
    Details: +
    Default: FIXME
    Description: URN reference to the feature concept in the INSPIRE Feature Concept Dictionary Register
    @@ -412,8 +412,8 @@
    -
    Details: -
    +
    Details: +
    Values: true | false
    Default: false
    Description: Identifies the feature type as a feature collection.
    @@ -425,8 +425,8 @@
    -
    Details: -
    +
    Details: +
    Values: false
    Default: false
    Description: Surpress creation of a standard property type that supports inline or by-reference encoding (applies to ISO 19136:2007 encoding rule). Always set to false in INSPIRE.
    @@ -438,8 +438,8 @@
    -
    Details: -
    +
    Details: +
    Values: iso19136_2007 | iso19139_2007 | iso19136_2007_INSPIRE_Extensions
    Default: iso19136_2007_INSPIRE_Extensions
    Description: XML Schema encoding rule to apply
    diff --git a/approved/html/EARoot/EA2/EA3/EA20/EA3/EA1/EA9285.htm b/approved/html/EARoot/EA2/EA3/EA20/EA3/EA1/EA9285.htm index 4f5acad73..cc3fb8ebc 100644 --- a/approved/html/EARoot/EA2/EA3/EA20/EA3/EA1/EA9285.htm +++ b/approved/html/EARoot/EA2/EA3/EA20/EA3/EA1/EA9285.htm @@ -114,38 +114,38 @@
    - Details: + Details: - + - + - + - + - + - + - + - + @@ -180,8 +180,8 @@ @@ -1162,7 +1144,7 @@ Notes:
    -
    Details: -
    +
    Details: +
    Values: false
    Default: false
    Description: Create a property type that requires that the instance is encoded inline (applies to ISO 19136:2007 encoding rule). Always set to false in INSPIRE.
    @@ -193,8 +193,8 @@
    -
    Details: -
    +
    Details: +
    Values: true | false
    Default: false
    Description: Identifies the feature type as a mixin type that will not be encoded as a separate element/type in the GML encoding.
    @@ -206,8 +206,8 @@
    -
    Details: -
    +
    Details: +
    Default: FIXME
    Description: URN reference to the feature concept in the INSPIRE Feature Concept Dictionary Register
    @@ -219,8 +219,8 @@
    -
    Details: -
    +
    Details: +
    Values: true | false
    Default: false
    Description: Identifies the feature type as a feature collection.
    @@ -232,8 +232,8 @@
    -
    Details: -
    +
    Details: +
    Values: false
    Default: false
    Description: Surpress creation of a standard property type that supports inline or by-reference encoding (applies to ISO 19136:2007 encoding rule). Always set to false in INSPIRE.
    @@ -245,8 +245,8 @@
    -
    Details: -
    +
    Details: +
    Values: iso19136_2007 | iso19139_2007 | iso19136_2007_INSPIRE_Extensions
    Default: iso19136_2007_INSPIRE_Extensions
    Description: XML Schema encoding rule to apply
    diff --git a/approved/html/EARoot/EA2/EA3/EA20/EA3/EA1/EA9286.htm b/approved/html/EARoot/EA2/EA3/EA20/EA3/EA1/EA9286.htm index df265e799..79a55af49 100644 --- a/approved/html/EARoot/EA2/EA3/EA20/EA3/EA1/EA9286.htm +++ b/approved/html/EARoot/EA2/EA3/EA20/EA3/EA1/EA9286.htm @@ -112,8 +112,8 @@
    -
    Details: -
    +
    Details: +
    Values: true
    Default: true
    Description: Encode code list as externally managed dictionary (applies to ISO 19136:2007 encoding rule). Always true in INSPIRE.
    @@ -125,8 +125,8 @@
    -
    Details: -
    +
    Details: +
    Values: none | narrower | open | any
    Default: any
    Description: This refers to extensions by a third party, not to extensions by the owner of the vocabulary; the owner will always be able to revise the vocabulary. I.e., if the value is 'none', the referenced vocabulary may not be extended by third parties; if the value is 'narrower', the vocabulary may be extended by narrower terms that have an existing term as a parent; if the value is 'any', the vocabulary may be extended by additional terms on any level. This value must be 'all', empty or missing, if the value 'vocabulary' is empty or missing; in this case any vocabulary may be used.
    @@ -138,8 +138,8 @@
    -
    Details: -
    +
    Details: +
    Description: URI of the vocabulary/code list in the INSPIRE code list registry or in some external registry. The value has to be provided, if an online version of the vocabulary exists.
    @@ -151,8 +151,8 @@
    -
    Details: -
    +
    Details: +
    Values: iso19136_2007 | iso19139_2007 | iso19136_2007_INSPIRE_Extensions
    Default: iso19136_2007_INSPIRE_Extensions
    Description: XML Schema encoding rule to apply
    diff --git a/approved/html/EARoot/EA2/EA3/EA20/EA3/EA1/EA9287.htm b/approved/html/EARoot/EA2/EA3/EA20/EA3/EA1/EA9287.htm index 0830a4925..978079c4d 100644 --- a/approved/html/EARoot/EA2/EA3/EA20/EA3/EA1/EA9287.htm +++ b/approved/html/EARoot/EA2/EA3/EA20/EA3/EA1/EA9287.htm @@ -114,38 +114,38 @@
    - Details: + Details: - + - + - + - + - + - + - + - + @@ -180,8 +180,8 @@ @@ -1104,7 +1086,7 @@ Notes:
    -
    Details: -
    +
    Details: +
    Values: false
    Default: false
    Description: Create a property type that requires that the instance is encoded inline (applies to ISO 19136:2007 encoding rule). Always set to false in INSPIRE.
    @@ -193,8 +193,8 @@
    -
    Details: -
    +
    Details: +
    Values: true | false
    Default: false
    Description: Identifies the feature type as a mixin type that will not be encoded as a separate element/type in the GML encoding.
    @@ -206,8 +206,8 @@
    -
    Details: -
    +
    Details: +
    Default: FIXME
    Description: URN reference to the feature concept in the INSPIRE Feature Concept Dictionary Register
    @@ -219,8 +219,8 @@
    -
    Details: -
    +
    Details: +
    Values: true | false
    Default: false
    Description: Identifies the feature type as a feature collection.
    @@ -232,8 +232,8 @@
    -
    Details: -
    +
    Details: +
    Values: false
    Default: false
    Description: Surpress creation of a standard property type that supports inline or by-reference encoding (applies to ISO 19136:2007 encoding rule). Always set to false in INSPIRE.
    @@ -245,8 +245,8 @@
    -
    Details: -
    +
    Details: +
    Values: iso19136_2007 | iso19139_2007 | iso19136_2007_INSPIRE_Extensions
    Default: iso19136_2007_INSPIRE_Extensions
    Description: XML Schema encoding rule to apply
    diff --git a/approved/html/EARoot/EA2/EA3/EA20/EA3/EA1/EA9288.htm b/approved/html/EARoot/EA2/EA3/EA20/EA3/EA1/EA9288.htm index 181d40893..b92c79c2f 100644 --- a/approved/html/EARoot/EA2/EA3/EA20/EA3/EA1/EA9288.htm +++ b/approved/html/EARoot/EA2/EA3/EA20/EA3/EA1/EA9288.htm @@ -113,38 +113,38 @@
    - Details: + Details: - + - + - + - + - + - + - + - + @@ -171,38 +171,38 @@ @@ -1046,7 +1028,7 @@ Notes:
    - Details: + Details: - + - + - + - + - + - + - + - + @@ -229,38 +229,38 @@ @@ -992,12 +964,22 @@
    - Details: + Details: - + - + - + - + - + - + - + - + @@ -287,38 +287,38 @@ @@ -940,7 +912,7 @@ Notes:
    - Details: + Details: - + - + - + - + - + - + - + - + @@ -353,8 +353,8 @@ @@ -882,7 +854,7 @@ Notes:
    -
    Details: -
    +
    Details: +
    Values: true
    Default: true
    Description: Encode code list as externally managed dictionary (applies to ISO 19136:2007 encoding rule). Always true in INSPIRE.
    @@ -366,8 +366,8 @@
    -
    Details: -
    +
    Details: +
    Values: none | narrower | any
    Default: any
    Description: This refers to extensions by a third party, not to extensions by the owner of the vocabulary; the owner will always be able to revise the vocabulary. I.e., if the value is 'none', the referenced vocabulary may not be extended by third parties; if the value is 'narrower', the vocabulary may be extended by narrower terms that have an existing term as a parent; if the value is 'any', the vocabulary may be extended by additional terms on any level. This value must be 'all', empty or missing, if the value 'vocabulary' is empty or missing; in this case any vocabulary may be used.
    @@ -379,8 +379,8 @@
    -
    Details: -
    +
    Details: +
    Description: URI of the vocabulary/code list in the INSPIRE code list registry or in some external registry. The value has to be provided, if an online version of the vocabulary exists.
    @@ -392,8 +392,8 @@
    -
    Details: -
    +
    Details: +
    Values: iso19136_2007 | iso19139_2007 | iso19136_2007_INSPIRE_Extensions
    Default: iso19136_2007_INSPIRE_Extensions
    Description: XML Schema encoding rule to apply
    diff --git a/approved/html/EARoot/EA2/EA3/EA20/EA3/EA1/EA9289.htm b/approved/html/EARoot/EA2/EA3/EA20/EA3/EA1/EA9289.htm index f0fe6193b..596c76656 100644 --- a/approved/html/EARoot/EA2/EA3/EA20/EA3/EA1/EA9289.htm +++ b/approved/html/EARoot/EA2/EA3/EA20/EA3/EA1/EA9289.htm @@ -113,8 +113,8 @@
    -
    Details: -
    +
    Details: +
    Values: false
    Default: false
    Description: Create a property type that requires that the instance is encoded inline (applies to ISO 19136:2007 encoding rule). Always set to false in INSPIRE.
    @@ -126,8 +126,8 @@
    -
    Details: -
    +
    Details: +
    Values: true | false
    Default: false
    Description: Identifies the feature type as a mixin type that will not be encoded as a separate element/type in the GML encoding.
    @@ -139,8 +139,8 @@
    -
    Details: -
    +
    Details: +
    Default: FIXME
    Description: URN reference to the feature concept in the INSPIRE Feature Concept Dictionary Register
    @@ -152,8 +152,8 @@
    -
    Details: -
    +
    Details: +
    Values: true | false
    Default: false
    Description: Identifies the feature type as a feature collection.
    @@ -165,8 +165,8 @@
    -
    Details: -
    +
    Details: +
    Values: false
    Default: false
    Description: Surpress creation of a standard property type that supports inline or by-reference encoding (applies to ISO 19136:2007 encoding rule). Always set to false in INSPIRE.
    @@ -178,8 +178,8 @@
    -
    Details: -
    +
    Details: +
    Values: iso19136_2007 | iso19139_2007 | iso19136_2007_INSPIRE_Extensions
    Default: iso19136_2007_INSPIRE_Extensions
    Description: XML Schema encoding rule to apply
    diff --git a/approved/html/EARoot/EA2/EA3/EA20/EA3/EA1/EA9290.htm b/approved/html/EARoot/EA2/EA3/EA20/EA3/EA1/EA9290.htm index 211edcfaf..14e4d5f6d 100644 --- a/approved/html/EARoot/EA2/EA3/EA20/EA3/EA1/EA9290.htm +++ b/approved/html/EARoot/EA2/EA3/EA20/EA3/EA1/EA9290.htm @@ -113,8 +113,8 @@
    -
    Details: -
    +
    Details: +
    Values: false
    Default: false
    Description: Create a property type that requires that the instance is encoded inline (applies to ISO 19136:2007 encoding rule). Always set to false in INSPIRE.
    @@ -126,8 +126,8 @@
    -
    Details: -
    +
    Details: +
    Values: true | false
    Default: false
    Description: Identifies the feature type as a mixin type that will not be encoded as a separate element/type in the GML encoding.
    @@ -139,8 +139,8 @@
    -
    Details: -
    +
    Details: +
    Default: FIXME
    Description: URN reference to the feature concept in the INSPIRE Feature Concept Dictionary Register
    @@ -152,8 +152,8 @@
    -
    Details: -
    +
    Details: +
    Values: true | false
    Default: false
    Description: Identifies the feature type as a feature collection.
    @@ -165,8 +165,8 @@
    -
    Details: -
    +
    Details: +
    Values: false
    Default: false
    Description: Surpress creation of a standard property type that supports inline or by-reference encoding (applies to ISO 19136:2007 encoding rule). Always set to false in INSPIRE.
    @@ -178,8 +178,8 @@
    -
    Details: -
    +
    Details: +
    Values: iso19136_2007 | iso19139_2007 | iso19136_2007_INSPIRE_Extensions
    Default: iso19136_2007_INSPIRE_Extensions
    Description: XML Schema encoding rule to apply
    diff --git a/approved/html/EARoot/EA2/EA3/EA20/EA3/EA1/EA9291.htm b/approved/html/EARoot/EA2/EA3/EA20/EA3/EA1/EA9291.htm index b3f68b3e7..108300fef 100644 --- a/approved/html/EARoot/EA2/EA3/EA20/EA3/EA1/EA9291.htm +++ b/approved/html/EARoot/EA2/EA3/EA20/EA3/EA1/EA9291.htm @@ -115,38 +115,38 @@
    - Details: + Details: - + - + - + - + - + - + - + - + @@ -173,38 +173,38 @@ @@ -824,7 +796,7 @@ Notes:
    - Details: + Details: - + - + - + - + - + - + - + - + @@ -239,8 +239,8 @@ @@ -770,12 +732,22 @@
    -
    Details: -
    +
    Details: +
    Values: false
    Default: false
    Description: Create a property type that requires that the instance is encoded inline (applies to ISO 19136:2007 encoding rule). Always set to false in INSPIRE.
    @@ -252,8 +252,8 @@
    -
    Details: -
    +
    Details: +
    Values: true | false
    Default: false
    Description: Identifies the feature type as a mixin type that will not be encoded as a separate element/type in the GML encoding.
    @@ -265,8 +265,8 @@
    -
    Details: -
    +
    Details: +
    Default: FIXME
    Description: URN reference to the feature concept in the INSPIRE Feature Concept Dictionary Register
    @@ -278,8 +278,8 @@
    -
    Details: -
    +
    Details: +
    Values: true | false
    Default: false
    Description: Identifies the feature type as a feature collection.
    @@ -291,8 +291,8 @@
    -
    Details: -
    +
    Details: +
    Values: false
    Default: false
    Description: Surpress creation of a standard property type that supports inline or by-reference encoding (applies to ISO 19136:2007 encoding rule). Always set to false in INSPIRE.
    @@ -304,8 +304,8 @@
    -
    Details: -
    +
    Details: +
    Values: iso19136_2007 | iso19139_2007 | iso19136_2007_INSPIRE_Extensions
    Default: iso19136_2007_INSPIRE_Extensions
    Description: XML Schema encoding rule to apply
    @@ -327,8 +327,8 @@
    -
    Details: -
    +
    Details: +
    /* All utility link objects have an external object identifier. */<br/>inv:inspireId-#gt;notEmpty()<br/><br/>
    diff --git a/approved/html/EARoot/EA2/EA3/EA20/EA3/EA1/EA9292.htm b/approved/html/EARoot/EA2/EA3/EA20/EA3/EA1/EA9292.htm index 4be962f8a..a5c388ddb 100644 --- a/approved/html/EARoot/EA2/EA3/EA20/EA3/EA1/EA9292.htm +++ b/approved/html/EARoot/EA2/EA3/EA20/EA3/EA1/EA9292.htm @@ -112,56 +112,56 @@
    - Public RelatedParty
      authorityRole + Public UtilityNetworkTypeValue
      utilityNetworkType
    - Details: + Details: - + - + - + - + - + - + - + - +
    - inlineOrByReference=byReference
    + obligation=implementingRule
    Notes: - -- Name --<br/>authority role<br/><br/>-- Definition --<br/>Parties authorized to manage a utility network, such as maintainers, operators or owners.<br/><br/> + -- Name --<br/>utility network type<br/><br/>-- Definition --<br/>The type of utility network or the utilily network theme.<br/><br/>-- Description --<br/>Uses the codelist "UtilityNetworkTypeValue" to describe the possible utility networks. This also contains the "crossTheme" value to be used for utility networks that can contain cables or pipes from various themes, typically used by utility network providers that provide ducts.<br/><br/>
    @@ -170,56 +170,56 @@
    - Public PT_FreeText
      disclaimer + Public RelatedParty
      authorityRole
    - Details: + Details: - + - + - + - + - + - + - + - + - + - +
    - + inlineOrByReference=byReference
    Notes: - -- Name --<br/>disclaimer<br/><br/>-- Definition --<br/>Legal text describing confidentiality clauses applying to the utility network information.<br/><br/> + -- Name --<br/>authority role<br/><br/>-- Definition --<br/>Parties authorized to manage a utility network, such as maintainers, operators or owners.<br/><br/>
    @@ -233,38 +233,38 @@
    - Details: + Details: - + - + - + - + - + - + - + - + @@ -286,56 +286,56 @@ + + + + + @@ -409,8 +409,8 @@ @@ -718,7 +680,7 @@ Notes:
    - Public UtilityNetworkTypeValue
      utilityNetworkType + Public PT_FreeText
      disclaimer
    - Details: + Details: - + - + - + - + - + - + - + - + - + - +
    - obligation=implementingRule
    +
    Notes: - -- Name --<br/>utility network type<br/><br/>-- Definition --<br/>The type of utility network or the utilily network theme.<br/><br/>-- Description --<br/>Uses the codelist "UtilityNetworkTypeValue" to describe the possible utility networks. This also contains the "crossTheme" value to be used for utility networks that can contain cables or pipes from various themes, typically used by utility network providers that provide ducts.<br/><br/> + -- Name --<br/>disclaimer<br/><br/>-- Definition --<br/>Legal text describing confidentiality clauses applying to the utility network information.<br/><br/>
    @@ -372,8 +372,8 @@
    -
    Details: -
    +
    Details: +
    -- Name --<br/>networks<br/><br/>-- Definition --<br/>Utility networks may contain sub-networks.<br/><br/>
    @@ -410,8 +410,8 @@
    -
    Details: -
    +
    Details: +
    -- Name --<br/>networks<br/><br/>-- Definition --<br/>Utility networks may contain sub-networks.<br/><br/>
    @@ -433,8 +433,8 @@
    -
    Details: -
    +
    Details: +
    Values: false
    Default: false
    Description: Create a property type that requires that the instance is encoded inline (applies to ISO 19136:2007 encoding rule). Always set to false in INSPIRE.
    @@ -446,8 +446,8 @@
    -
    Details: -
    +
    Details: +
    Values: true | false
    Default: false
    Description: Identifies the feature type as a mixin type that will not be encoded as a separate element/type in the GML encoding.
    @@ -459,8 +459,8 @@
    -
    Details: -
    +
    Details: +
    Default: FIXME
    Description: URN reference to the feature concept in the INSPIRE Feature Concept Dictionary Register
    @@ -472,8 +472,8 @@
    -
    Details: -
    +
    Details: +
    Values: true | false
    Default: false
    Description: Identifies the feature type as a feature collection.
    @@ -485,8 +485,8 @@
    -
    Details: -
    +
    Details: +
    Values: false
    Default: false
    Description: Surpress creation of a standard property type that supports inline or by-reference encoding (applies to ISO 19136:2007 encoding rule). Always set to false in INSPIRE.
    @@ -498,8 +498,8 @@
    -
    Details: -
    +
    Details: +
    Values: iso19136_2007 | iso19139_2007 | iso19136_2007_INSPIRE_Extensions
    Default: iso19136_2007_INSPIRE_Extensions
    Description: XML Schema encoding rule to apply
    @@ -521,8 +521,8 @@
    -
    Details: -
    +
    Details: +
    /* All utility network objects have an external object identifier. */<br/>inv:inspireId-#gt;notEmpty()<br/><br/>
    @@ -536,8 +536,8 @@
    -
    Details: -
    +
    Details: +
    /*The multiplicity of "telecommunications" shall be 0*/<br/>inv: telecommunications-#gt;size()=0<br/><br/>
    diff --git a/approved/html/EARoot/EA2/EA3/EA20/EA3/EA1/EA9293.htm b/approved/html/EARoot/EA2/EA3/EA20/EA3/EA1/EA9293.htm index 1375e7e1d..445cabaf0 100644 --- a/approved/html/EARoot/EA2/EA3/EA20/EA3/EA1/EA9293.htm +++ b/approved/html/EARoot/EA2/EA3/EA20/EA3/EA1/EA9293.htm @@ -114,38 +114,38 @@
    - Details: + Details: - + - + - + - + - + - + - + - + @@ -167,56 +167,56 @@ - - - - - @@ -252,7 +204,7 @@ @@ -278,7 +230,7 @@ - + @@ -300,7 +252,7 @@ @@ -348,7 +300,7 @@ @@ -391,6 +343,54 @@
    - Public GovernmentalService
      governmentalServiceReference + Public DateTime
      validFrom
    - Details: + Details: - + - + - + - + - + - + - + - + - +
    - inlineOrByReference=byReference
    +
    Notes: - -- Name --<br/>governmental service reference<br/><br/>-- Definition --<br/>Reference to a governmental service object that is linked (related) to this utility network element.<br/><br/>-- Description --<br/>This reference can be used to link a governmental service object to a utility network element.<br/><br/> + -- Name --<br/>valid from<br/><br/>-- Definition --<br/>The time when the utility network element started to exist in the real world.<br/><br/>
    @@ -225,56 +225,56 @@
    - Public ActivityComplex
      utilityFacilityReference + Public DateTime
      validTo
    - Details: + Details: - + - + - + - + - + - + - + - +
    - inlineOrByReference=byReference
    +
    Notes: - -- Name --<br/>utility facility reference<br/><br/>-- Definition --<br/>Reference to a facility activity complex that is linked (related) to this utility network element.<br/><br/>-- Description --<br/>This reference can be used to link a utility facility - having a more complex geometry - to a utility network element.<br/><br/> + -- Name --<br/>valid to<br/><br/>-- Definition --<br/>The time from which the utility network element no longer exists in the real world.<br/><br/>
    @@ -283,56 +283,56 @@
    - Public DateTime
      validFrom + Public VerticalPositionValue
      verticalPosition
    - Details: + Details: - + - + - + - + - + - + - + - +
    - + obligation=implementingRule
    Notes: - -- Name --<br/>valid from<br/><br/>-- Definition --<br/>The time when the utility network element started to exist in the real world.<br/><br/> + -- Name --<br/>vertical position<br/><br/>-- Definition --<br/>Vertical position of the utility object relative to ground.<br/><br/>
    @@ -341,56 +341,56 @@
    - Public DateTime
      validTo + Public ActivityComplex
      utilityFacilityReference
    - Details: + Details: - + - + - + - + - + - + - + - +
    - + inlineOrByReference=byReference
    Notes: - -- Name --<br/>valid to<br/><br/>-- Definition --<br/>The time from which the utility network element no longer exists in the real world.<br/><br/> + -- Name --<br/>utility facility reference<br/><br/>-- Definition --<br/>Reference to a facility activity complex that is linked (related) to this utility network element.<br/><br/>-- Description --<br/>This reference can be used to link a utility facility - having a more complex geometry - to a utility network element.<br/><br/>
    @@ -399,56 +399,56 @@
    - Public VerticalPositionValue
      verticalPosition + Public GovernmentalService
      governmentalServiceReference
    - Details: + Details: - + - + - + - + - + - + - + - + - +
    - obligation=implementingRule
    + inlineOrByReference=byReference
    Notes: - -- Name --<br/>vertical position<br/><br/>-- Definition --<br/>Vertical position of the utility object relative to ground.<br/><br/> + -- Name --<br/>governmental service reference<br/><br/>-- Definition --<br/>Reference to a governmental service object that is linked (related) to this utility network element.<br/><br/>-- Description --<br/>This reference can be used to link a governmental service object to a utility network element.<br/><br/>
    @@ -470,8 +470,8 @@
    -
    Details: -
    +
    Details: +
    Values: false
    Default: false
    Description: Create a property type that requires that the instance is encoded inline (applies to ISO 19136:2007 encoding rule). Always set to false in INSPIRE.
    @@ -483,8 +483,8 @@
    -
    Details: -
    +
    Details: +
    Values: true | false
    Default: false
    Description: Identifies the feature type as a mixin type that will not be encoded as a separate element/type in the GML encoding.
    @@ -496,8 +496,8 @@
    -
    Details: -
    +
    Details: +
    Default: FIXME
    Description: URN reference to the feature concept in the INSPIRE Feature Concept Dictionary Register
    @@ -509,8 +509,8 @@
    -
    Details: -
    +
    Details: +
    Values: true | false
    Default: false
    Description: Identifies the feature type as a feature collection.
    @@ -522,8 +522,8 @@
    -
    Details: -
    +
    Details: +
    Values: false
    Default: false
    Description: Surpress creation of a standard property type that supports inline or by-reference encoding (applies to ISO 19136:2007 encoding rule). Always set to false in INSPIRE.
    @@ -535,8 +535,8 @@
    -
    Details: -
    +
    Details: +
    Values: iso19136_2007 | iso19139_2007 | iso19136_2007_INSPIRE_Extensions
    Default: iso19136_2007_INSPIRE_Extensions
    Description: XML Schema encoding rule to apply
    diff --git a/approved/html/EARoot/EA2/EA3/EA20/EA3/EA1/EA9294.htm b/approved/html/EARoot/EA2/EA3/EA20/EA3/EA1/EA9294.htm index addcfff73..f96ff5965 100644 --- a/approved/html/EARoot/EA2/EA3/EA20/EA3/EA1/EA9294.htm +++ b/approved/html/EARoot/EA2/EA3/EA20/EA3/EA1/EA9294.htm @@ -111,54 +111,6 @@ Public
      electricity
    - Details: - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    - - -   - -
    - Public
      oilGasChemicals -
    Details: @@ -204,7 +156,7 @@
    - Public
      sewer + Public
      oilGasChemicals
    - Public
      telecommunications + Public
      sewer
    - Public
      thermal + Public
      water
    - Public
      water + Public
      thermal
    +   + +
    + Public
      telecommunications +
    + Details: + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + +  
    -
    Details: -
    +
    Details: +
    Values: true
    Default: true
    Description: Encode code list as externally managed dictionary (applies to ISO 19136:2007 encoding rule). Always true in INSPIRE.
    @@ -422,8 +422,8 @@
    -
    Details: -
    +
    Details: +
    Values: none | narrower | any
    Default: any
    Description: This refers to extensions by a third party, not to extensions by the owner of the vocabulary; the owner will always be able to revise the vocabulary. I.e., if the value is 'none', the referenced vocabulary may not be extended by third parties; if the value is 'narrower', the vocabulary may be extended by narrower terms that have an existing term as a parent; if the value is 'any', the vocabulary may be extended by additional terms on any level. This value must be 'all', empty or missing, if the value 'vocabulary' is empty or missing; in this case any vocabulary may be used.
    @@ -435,8 +435,8 @@
    -
    Details: -
    +
    Details: +
    Description: URI of the vocabulary/code list in the INSPIRE code list registry or in some external registry. The value has to be provided, if an online version of the vocabulary exists.
    @@ -448,8 +448,8 @@
    -
    Details: -
    +
    Details: +
    Values: iso19136_2007 | iso19139_2007 | iso19136_2007_INSPIRE_Extensions
    Default: iso19136_2007_INSPIRE_Extensions
    Description: XML Schema encoding rule to apply
    diff --git a/approved/html/EARoot/EA2/EA3/EA20/EA3/EA1/EA9295.htm b/approved/html/EARoot/EA2/EA3/EA20/EA3/EA1/EA9295.htm index b9c212d4b..833a433b6 100644 --- a/approved/html/EARoot/EA2/EA3/EA20/EA3/EA1/EA9295.htm +++ b/approved/html/EARoot/EA2/EA3/EA20/EA3/EA1/EA9295.htm @@ -131,8 +131,8 @@
    -
    Details: -
    +
    Details: +
    -- Name --<br/>nodes<br/><br/>-- Definition --<br/>Utility node container may contain other utility objects, e.g. manhole may contain other utility equipment.<br/><br/><br/>
    @@ -154,8 +154,8 @@
    -
    Details: -
    +
    Details: +
    Values: false
    Default: false
    Description: Create a property type that requires that the instance is encoded inline (applies to ISO 19136:2007 encoding rule). Always set to false in INSPIRE.
    @@ -167,8 +167,8 @@
    -
    Details: -
    +
    Details: +
    Values: true | false
    Default: false
    Description: Identifies the feature type as a mixin type that will not be encoded as a separate element/type in the GML encoding.
    @@ -180,8 +180,8 @@
    -
    Details: -
    +
    Details: +
    Default: FIXME
    Description: URN reference to the feature concept in the INSPIRE Feature Concept Dictionary Register
    @@ -193,8 +193,8 @@
    -
    Details: -
    +
    Details: +
    Values: true | false
    Default: false
    Description: Identifies the feature type as a feature collection.
    @@ -206,8 +206,8 @@
    -
    Details: -
    +
    Details: +
    Values: false
    Default: false
    Description: Surpress creation of a standard property type that supports inline or by-reference encoding (applies to ISO 19136:2007 encoding rule). Always set to false in INSPIRE.
    @@ -219,8 +219,8 @@
    -
    Details: -
    +
    Details: +
    Values: iso19136_2007 | iso19139_2007 | iso19136_2007_INSPIRE_Extensions
    Default: iso19136_2007_INSPIRE_Extensions
    Description: XML Schema encoding rule to apply
    @@ -242,8 +242,8 @@
    -
    Details: -
    +
    Details: +
    /* All utility node objects have an external object identifier. */<br/>inv:inspireId-#gt;notEmpty()<br/><br/>
    diff --git a/approved/html/EARoot/EA2/EA3/EA20/EA3/EA1/EA9296.htm b/approved/html/EARoot/EA2/EA3/EA20/EA3/EA1/EA9296.htm index 397708f39..aa4d437b9 100644 --- a/approved/html/EARoot/EA2/EA3/EA20/EA3/EA1/EA9296.htm +++ b/approved/html/EARoot/EA2/EA3/EA20/EA3/EA1/EA9296.htm @@ -115,38 +115,38 @@
    - Details: + Details: - + - + - + - + - + - + - + - + @@ -173,38 +173,38 @@ @@ -660,7 +622,7 @@ Notes:
    - Details: + Details: - + - + - + - + - + - + - + - + @@ -255,8 +255,8 @@ @@ -602,7 +564,7 @@ Notes:
    -
    Details: -
    +
    Details: +
    -- Name --<br/>nodes<br/><br/>-- Definition --<br/>Utility node container may contain other utility objects, e.g. manhole may contain other utility equipment.<br/><br/><br/>
    @@ -278,8 +278,8 @@
    -
    Details: -
    +
    Details: +
    Values: false
    Default: false
    Description: Create a property type that requires that the instance is encoded inline (applies to ISO 19136:2007 encoding rule). Always set to false in INSPIRE.
    @@ -291,8 +291,8 @@
    -
    Details: -
    +
    Details: +
    Values: true | false
    Default: false
    Description: Identifies the feature type as a mixin type that will not be encoded as a separate element/type in the GML encoding.
    @@ -304,8 +304,8 @@
    -
    Details: -
    +
    Details: +
    Default: FIXME
    Description: URN reference to the feature concept in the INSPIRE Feature Concept Dictionary Register
    @@ -317,8 +317,8 @@
    -
    Details: -
    +
    Details: +
    Values: true | false
    Default: false
    Description: Identifies the feature type as a feature collection.
    @@ -330,8 +330,8 @@
    -
    Details: -
    +
    Details: +
    Values: false
    Default: false
    Description: Surpress creation of a standard property type that supports inline or by-reference encoding (applies to ISO 19136:2007 encoding rule). Always set to false in INSPIRE.
    @@ -343,8 +343,8 @@
    -
    Details: -
    +
    Details: +
    Values: iso19136_2007 | iso19139_2007 | iso19136_2007_INSPIRE_Extensions
    Default: iso19136_2007_INSPIRE_Extensions
    Description: XML Schema encoding rule to apply
    diff --git a/approved/html/EARoot/EA2/EA3/EA20/EA3/EA1/EA9297.htm b/approved/html/EARoot/EA2/EA3/EA20/EA3/EA1/EA9297.htm index bbea64f00..124038818 100644 --- a/approved/html/EARoot/EA2/EA3/EA20/EA3/EA1/EA9297.htm +++ b/approved/html/EARoot/EA2/EA3/EA20/EA3/EA1/EA9297.htm @@ -108,43 +108,43 @@
    - Public
      concretePaving + Public
      net
    - Details: + Details: - + - + - + - + - + - + - + - + @@ -156,43 +156,43 @@ @@ -544,7 +506,7 @@ Notes:
    - Public
      net + Public
      tape
    - Details: + Details: - + - + - + - + - + - + - + - + @@ -204,43 +204,43 @@ @@ -486,7 +448,7 @@ Notes:
    - Public
      tape + Public
      concretePaving
    - Details: + Details: - + - + - + - + - + - + - + - + @@ -265,8 +265,8 @@ - - - - - @@ -389,7 +341,7 @@ @@ -432,12 +384,22 @@
    -
    Details: -
    +
    Details: +
    Values: true
    Default: true
    Description: Encode code list as externally managed dictionary (applies to ISO 19136:2007 encoding rule). Always true in INSPIRE.
    @@ -278,8 +278,8 @@
    -
    Details: -
    +
    Details: +
    Values: none | narrower | any
    Default: any
    Description: This refers to extensions by a third party, not to extensions by the owner of the vocabulary; the owner will always be able to revise the vocabulary. I.e., if the value is 'none', the referenced vocabulary may not be extended by third parties; if the value is 'narrower', the vocabulary may be extended by narrower terms that have an existing term as a parent; if the value is 'any', the vocabulary may be extended by additional terms on any level. This value must be 'all', empty or missing, if the value 'vocabulary' is empty or missing; in this case any vocabulary may be used.
    @@ -291,8 +291,8 @@
    -
    Details: -
    +
    Details: +
    Description: URI of the vocabulary/code list in the INSPIRE code list registry or in some external registry. The value has to be provided, if an online version of the vocabulary exists.
    @@ -304,8 +304,8 @@
    -
    Details: -
    +
    Details: +
    Values: iso19136_2007 | iso19139_2007 | iso19136_2007_INSPIRE_Extensions
    Default: iso19136_2007_INSPIRE_Extensions
    Description: XML Schema encoding rule to apply
    diff --git a/approved/html/EARoot/EA2/EA3/EA20/EA3/EA2/EA9299.png b/approved/html/EARoot/EA2/EA3/EA20/EA3/EA2/EA9299.png index a4a09af5f..532561633 100644 Binary files a/approved/html/EARoot/EA2/EA3/EA20/EA3/EA2/EA9299.png and b/approved/html/EARoot/EA2/EA3/EA20/EA3/EA2/EA9299.png differ diff --git a/approved/html/EARoot/EA2/EA3/EA20/EA3/EA2/EA9300.htm b/approved/html/EARoot/EA2/EA3/EA20/EA3/EA2/EA9300.htm index 8d412db72..c3ca11683 100644 --- a/approved/html/EARoot/EA2/EA3/EA20/EA3/EA2/EA9300.htm +++ b/approved/html/EARoot/EA2/EA3/EA20/EA3/EA2/EA9300.htm @@ -112,8 +112,8 @@
    -
    Details: -
    +
    Details: +
     
    @@ -124,8 +124,8 @@
    -
    Details: -
    +
    Details: +
    Default: FIXME
    Description: Current version of the application schema
    @@ -137,8 +137,8 @@
    -
    Details: -
    +
    Details: +
    Default: FIXME
    Description: Namespace prefix to be used as short form of the target namespace
    @@ -150,8 +150,8 @@
    -
    Details: -
    +
    Details: +
    Default: FIXME
    Description: Name of an XML Schema document to create representing the content of this package
    @@ -163,8 +163,8 @@
    -
    Details: -
    +
    Details: +
    Values: iso19136_2007 | iso19139_2007 | iso19136_2007_INSPIRE_Extensions
    Default: iso19136_2007_INSPIRE_Extensions
    Description: XML Schema encoding rule to apply
    diff --git a/approved/html/EARoot/EA2/EA3/EA20/EA3/EA2/EA9301.htm b/approved/html/EARoot/EA2/EA3/EA20/EA3/EA2/EA9301.htm index eabd2c32d..ba9f765d4 100644 --- a/approved/html/EARoot/EA2/EA3/EA20/EA3/EA2/EA9301.htm +++ b/approved/html/EARoot/EA2/EA3/EA20/EA3/EA2/EA9301.htm @@ -108,54 +108,6 @@
    Attribute
    - Public
      anode -
    - Details: - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    - - -   - -
    Public
      capacitorControl
    - Public
      detectionEquipment + Public
      dynamicProtectiveDevice
    -   +
    + + + + +
    + Notes: + + -- Definition --<br/>Dynamic protective device.<br/><br/>-- Description --<br/>In addition to opening when a fault is detected, <i>dynamic protective devices</i> also reclose to attempt to re-establish service. If the fault remains after a prescribed number of reclosings, the device may lock open the circuit. Reclosing is designed to reduce or eliminate the effects of temporary faults.<br/><br/>NOTE It may include following subtypes: Circuit Breakers,<br/>Fault Interrupter, Reclosers (Single Phase Hydraulic, etc.), and Sectionalizers.<br/><br/> +
    +
    - Public
      dynamicProtectiveDevice + Public
      fuse
    - -- Definition --<br/>Dynamic protective device.<br/><br/>-- Description --<br/>In addition to opening when a fault is detected, <i>dynamic protective devices</i> also reclose to attempt to re-establish service. If the fault remains after a prescribed number of reclosings, the device may lock open the circuit. Reclosing is designed to reduce or eliminate the effects of temporary faults.<br/><br/>NOTE It may include following subtypes: Circuit Breakers,<br/>Fault Interrupter, Reclosers (Single Phase Hydraulic, etc.), and Sectionalizers.<br/><br/> + -- Definition --<br/>Fuse.<br/><br/>-- Description --<br/><i>Fuses </i>are used to protect distribution devices from damaging currents. A fuse is an intentionally weakened spot in the electric circuit that opens the circuit at a predetermined current that is maintained for a predetermined amount of time. Fuses are not dynamic in that they remain open and do not reclose. By automatically interrupting the flow of electricity, a fuse prevents or limits damage caused by an overload or short circuit.<br/><br/>
    @@ -495,7 +457,7 @@
    - Public
      fuse + Public
      generator
    - -- Definition --<br/>Fuse.<br/><br/>-- Description --<br/><i>Fuses </i>are used to protect distribution devices from damaging currents. A fuse is an intentionally weakened spot in the electric circuit that opens the circuit at a predetermined current that is maintained for a predetermined amount of time. Fuses are not dynamic in that they remain open and do not reclose. By automatically interrupting the flow of electricity, a fuse prevents or limits damage caused by an overload or short circuit.<br/><br/> + -- Definition --<br/>Generator.<br/><br/>-- Description --<br/><i>Generator </i>is an alternative, third-party power source feeding into the electrical network.<br/><br/>
    @@ -553,7 +515,7 @@
    - Public
      generator + Public
      loadTapChanger
    - -- Definition --<br/>Generator.<br/><br/>-- Description --<br/><i>Generator </i>is an alternative, third-party power source feeding into the electrical network.<br/><br/> + -- Definition --<br/>Load tap changer.<br/><br/>-- Description --<br/><i>Load tap changer</i> represents power transformer controls that change the primary to-secondary turns ratio of a transformer winding while the transformer is under load to regulate the flow of current and minimize voltage drop. Automatic loadtap changers in the power transformer provides voltage control on the substation bus. Control systems of voltage regulators and tap changing equipment beyond the substation usually have a line-drop compensator to simulate voltage drop between the substation and points in the distribution system.<br/><br/>
    @@ -611,7 +573,7 @@
    - Public
      loadTapChanger + Public
      mainStation
    - -- Definition --<br/>Load tap changer.<br/><br/>-- Description --<br/><i>Load tap changer</i> represents power transformer controls that change the primary to-secondary turns ratio of a transformer winding while the transformer is under load to regulate the flow of current and minimize voltage drop. Automatic loadtap changers in the power transformer provides voltage control on the substation bus. Control systems of voltage regulators and tap changing equipment beyond the substation usually have a line-drop compensator to simulate voltage drop between the substation and points in the distribution system.<br/><br/> + -- Definition --<br/>Main station.<br/><br/>-- Description --<br/><i>Electric station</i> represents a building or fenced-in enclosure that houses the equipment that switches and modifies the characteristics of energy from a generation source. Distribution systems include primary feeders (circuits), transformer banks, and secondary circuits (overhead or underground) that serve a specified area.<br/><br/>
    @@ -669,7 +631,7 @@
    - Public
      mainStation + Public
      netStation
    - -- Definition --<br/>Main station.<br/><br/>-- Description --<br/><i>Electric station</i> represents a building or fenced-in enclosure that houses the equipment that switches and modifies the characteristics of energy from a generation source. Distribution systems include primary feeders (circuits), transformer banks, and secondary circuits (overhead or underground) that serve a specified area.<br/><br/> + -- Definition --<br/>Net station.<br/><br/>-- Description --<br/>Net station.<br/><br/>
    @@ -727,7 +689,7 @@
    - Public
      monitoringAndControlEquipment + Public
      networkProtector
    -   +
    + + + + +
    + Notes: + + -- Definition --<br/>Network protector.<br/><br/>-- Description --<br/>Network transformers connect to the secondary network through a <i>network</i><i> </i><i>protector</i>. Network protector components may be the circuit breaker, relays, backup fuses and controls required for automatically disconnecting a transformer from the secondary network in response to predetermined  conditions on primary feeder or transformer.<br/><br/> +
    +
    - Public
      netStation + Public
      openPoint
    - -- Definition --<br/>Net station.<br/><br/>-- Description --<br/>Net station.<br/><br/> + -- Definition --<br/>Open point.<br/><br/>-- Description --<br/><i>Open point</i> contains information about a variety of insulated and shielded devices that connect high-voltage cables to apparatus, including transformers. Separable, load-break insulated connectors are used with primary bushings of submersible distribution transformers for safety. This is known as a dead-front configuration.<br/><br/>
    @@ -833,7 +805,7 @@
    - Public
      networkProtector + Public
      primaryMeter
    - -- Definition --<br/>Network protector.<br/><br/>-- Description --<br/>Network transformers connect to the secondary network through a <i>network</i><i> </i><i>protector</i>. Network protector components may be the circuit breaker, relays, backup fuses and controls required for automatically disconnecting a transformer from the secondary network in response to predetermined  conditions on primary feeder or transformer.<br/><br/> + -- Definition --<br/>Primary meter.<br/><br/>-- Description --<br/><i>Primary meters </i>are installed if commercial customers elect to have power delivered at distribution voltages, such as 12.5 kV. Residential customers are generally billed for kilowatt hours (kWH) used. Commercial and industrial customers may additionally be billed for demand charges and power factor charges.<br/><br/>
    @@ -891,7 +863,7 @@
    - Public
      openPoint + Public
      recloserElectronicControl
    - -- Definition --<br/>Open point.<br/><br/>-- Description --<br/><i>Open point</i> contains information about a variety of insulated and shielded devices that connect high-voltage cables to apparatus, including transformers. Separable, load-break insulated connectors are used with primary bushings of submersible distribution transformers for safety. This is known as a dead-front configuration.<br/><br/> + -- Definition --<br/>Recloser electronic control.<br/><br/>-- Description --<br/><i>Reclosers </i>and sectionalizers isolate temporary and permanent faults in electric lines. Reclosers open circuits (trip) in case of a fault, and reclose after a predetermined time. The time-current characteristic, usually expressed in a curve, is based on temperature and fuse tolerances and is used to coordinate recloser operations. Reclosers allow (usually) four trip operations to clear temporary faults.<br/><br/>
    @@ -949,7 +921,7 @@
    - Public
      pointSettingMachine + Public
      recloserHydraulicControl
    -   +
    + + + + +
    + Notes: + + -- Definition --<br/>Recloser hydraulic control.<br/><br/>-- Description --<br/><i>Recloser h</i><i>ydraulic control </i>is an intregral part of single-phase reclosers. A trip coil in series with the line is used to sense overcurrent and trip open the recloser contacts. The contacts close after a preset interval.<br/><br/> +
    +
    - Public
      primaryMeter + Public
      regulatorControl
    - -- Definition --<br/>Primary meter.<br/><br/>-- Description --<br/><i>Primary meters </i>are installed if commercial customers elect to have power delivered at distribution voltages, such as 12.5 kV. Residential customers are generally billed for kilowatt hours (kWH) used. Commercial and industrial customers may additionally be billed for demand charges and power factor charges.<br/><br/> + -- Definition --<br/>Regulator control.<br/><br/>-- Description --<br/>Voltage provided by <i>regulators </i>is changed using a tap-changing switch to adjust the number of secondary windings. Line load can be regulated from 10 percent above to 10 percent below normal line voltage. Voltage regulators that control distribution system voltage are rated from 2.5 kV to 34.5 grd Y kV. Most feeder regulators have the 32-step design.<br/><br/>
    @@ -1055,7 +1037,7 @@
    - Public
      recloserElectronicControl + Public
      relayControl
    - -- Definition --<br/>Recloser electronic control.<br/><br/>-- Description --<br/><i>Reclosers </i>and sectionalizers isolate temporary and permanent faults in electric lines. Reclosers open circuits (trip) in case of a fault, and reclose after a predetermined time. The time-current characteristic, usually expressed in a curve, is based on temperature and fuse tolerances and is used to coordinate recloser operations. Reclosers allow (usually) four trip operations to clear temporary faults.<br/><br/> + -- Definition --<br/>Relay control.<br/><br/>-- Description --<br/><i>Protective relay systems</i> detect and isolate faults. Time-delayed phase and ground relays are coordinated with fuses and reclosers further out on the circuit. They are instantaneous units with inverse TCCs to coordinate with fuses and reclosers further downstream. Relays are usually set to trip feeder breakers and protect the fuse in the event of temporary faults beyond the fuse.<br/><br/>
    @@ -1113,7 +1095,7 @@
    - Public
      recloserHydraulicControl + Public
      sectionalizerElectronicControl
    - -- Definition --<br/>Recloser hydraulic control.<br/><br/>-- Description --<br/><i>Recloser h</i><i>ydraulic control </i>is an intregral part of single-phase reclosers. A trip coil in series with the line is used to sense overcurrent and trip open the recloser contacts. The contacts close after a preset interval.<br/><br/> + -- Definition --<br/>Sectionalizer electronic control.<br/><br/>-- Description --<br/><i>Sectionalizers </i>are automatic circuit opening devices that are installed on the load side of fault-interrupting devices and count its fault-trip operations. Sectionalizers can be set to open after one, two, or three counts have been detected<br/>with a predetermined time span. Sectionalizers are used in conjunction with fuses and reclosers and may have inrush current restraint features to prevent a false count when lines are re-energized.<br/><br/>
    @@ -1171,7 +1153,7 @@
    - Public
      regulatorControl + Public
      sectionalizerHydraulicControl
    - -- Definition --<br/>Regulator control.<br/><br/>-- Description --<br/>Voltage provided by <i>regulators </i>is changed using a tap-changing switch to adjust the number of secondary windings. Line load can be regulated from 10 percent above to 10 percent below normal line voltage. Voltage regulators that control distribution system voltage are rated from 2.5 kV to 34.5 grd Y kV. Most feeder regulators have the 32-step design.<br/><br/> + -- Definition --<br/>Sectionalizer hydraulic control.<br/><br/>-- Description --<br/><i>Sectionalizer controls</i> store a pulse counter when the minimum actuating current drops to zero because a fault is interrupted by the recloser (or other protective device). Sectionalizers operate in conjunction with breakers and reclosers to lock out fault current after a predetermined number (usually three) of recloser operations (trips).<br/><br/>
    @@ -1229,7 +1211,7 @@
    - Public
      relayControl + Public
      streetLight
    - -- Definition --<br/>Relay control.<br/><br/>-- Description --<br/><i>Protective relay systems</i> detect and isolate faults. Time-delayed phase and ground relays are coordinated with fuses and reclosers further out on the circuit. They are instantaneous units with inverse TCCs to coordinate with fuses and reclosers further downstream. Relays are usually set to trip feeder breakers and protect the fuse in the event of temporary faults beyond the fuse.<br/><br/> + -- Definition --<br/>Street light.<br/><br/>-- Description --<br/>A <i>street light</i> (or lamppost, street lamp, light standard, or lamp standard) is a raised source of light on the edge of a road, which is turned on or lit at a certain time every night.<br/><br/>
    @@ -1287,7 +1269,7 @@
    - Public
      sectionalizerElectronicControl + Public
      subStation
    - -- Definition --<br/>Sectionalizer electronic control.<br/><br/>-- Description --<br/><i>Sectionalizers </i>are automatic circuit opening devices that are installed on the load side of fault-interrupting devices and count its fault-trip operations. Sectionalizers can be set to open after one, two, or three counts have been detected<br/>with a predetermined time span. Sectionalizers are used in conjunction with fuses and reclosers and may have inrush current restraint features to prevent a false count when lines are re-energized.<br/><br/> + -- Definition --<br/>Sub station.<br/><br/>-- Description --<br/>An <i>electrical substation</i> is a subsidiary station of an electricity generation, transmission and distribution system where voltage is transformed from high to low or the reverse using transformers. Electric power may flow through several substations between generating plant and consumer, and may be changed in voltage in several steps. A substation that has a step-up transformer increases the voltage while decreasing the current, while a step-down transformer decreases the voltage while increasing the current for domestic and commercial distribution.<br/><br/>
    @@ -1345,7 +1327,7 @@
    - Public
      sectionalizerHydraulicControl + Public
      switch
    - -- Definition --<br/>Sectionalizer hydraulic control.<br/><br/>-- Description --<br/><i>Sectionalizer controls</i> store a pulse counter when the minimum actuating current drops to zero because a fault is interrupted by the recloser (or other protective device). Sectionalizers operate in conjunction with breakers and reclosers to lock out fault current after a predetermined number (usually three) of recloser operations (trips).<br/><br/> + -- Definition --<br/>Switch.<br/><br/>-- Description --<br/>A <i>switch </i>disconnects circuits within the distribution<br/>network and can be manually or power operated. Switches are either open or closed. Switches are critical to the electric distribution system to allow current interruption to allow system maintenance, redirecting current in case of emergency, or to isolate system failures. Switches may be automated and controlled remotely through SCADA operation.<br/><br/>
    @@ -1403,7 +1385,7 @@
    - Public
      streetLight + Public
      transformer
    - -- Definition --<br/>Street light.<br/><br/>-- Description --<br/>A <i>street light</i> (or lamppost, street lamp, light standard, or lamp standard) is a raised source of light on the edge of a road, which is turned on or lit at a certain time every night.<br/><br/> + -- Definition --<br/>Transformer.<br/><br/>-- Description --<br/><i>Transformers</i> transfer electrical energy from one circuit to another circuit usually with changed values of voltage and current in the process.<br/><br/>NOTE Subtypes include: Network, Single Phase Overhead, Single Phase Underground, Two Phase Overhead, Three Phase Overhead, Three Phase Underground, Step, and Power.<br/><br/>
    @@ -1461,7 +1443,7 @@
    - Public
      subStation + Public
      voltageRegulator
    - -- Definition --<br/>Sub station.<br/><br/>-- Description --<br/>An <i>electrical substation</i> is a subsidiary station of an electricity generation, transmission and distribution system where voltage is transformed from high to low or the reverse using transformers. Electric power may flow through several substations between generating plant and consumer, and may be changed in voltage in several steps. A substation that has a step-up transformer increases the voltage while decreasing the current, while a step-down transformer decreases the voltage while increasing the current for domestic and commercial distribution.<br/><br/> + -- Definition --<br/>Voltage regulator.<br/><br/>-- Description --<br/><i>Voltage regulators</i> vary the ac supply or source voltage to the customer to maintain the voltage within desired limits. Voltage provided by regulators is changed using a tap-changing switch to adjust the number of secondary windings. Bypass switches allow a regulator to be removed for normal service without interrupting the downstream load.<br/><br/>NOTE Subtypes include: Single Phase Overhead, Two Phase Overhead, Three Phase Overhead, Three Phase Pad-Mounted.<br/><br/>
    @@ -1519,7 +1501,7 @@
    - Public
      switch + Public
      detectionEquipment
    -
    - - - - -
    - Notes: - - -- Definition --<br/>Switch.<br/><br/>-- Description --<br/>A <i>switch </i>disconnects circuits within the distribution<br/>network and can be manually or power operated. Switches are either open or closed. Switches are critical to the electric distribution system to allow current interruption to allow system maintenance, redirecting current in case of emergency, or to isolate system failures. Switches may be automated and controlled remotely through SCADA operation.<br/><br/> -
    - +  
    - Public
      transformer + Public
      pointSettingMachine
    -
    - - - - -
    - Notes: - - -- Definition --<br/>Transformer.<br/><br/>-- Description --<br/><i>Transformers</i> transfer electrical energy from one circuit to another circuit usually with changed values of voltage and current in the process.<br/><br/>NOTE Subtypes include: Network, Single Phase Overhead, Single Phase Underground, Two Phase Overhead, Three Phase Overhead, Three Phase Underground, Step, and Power.<br/><br/> -
    - +  
    - Public
      voltageRegulator + Public
      monitoringAndControlEquipment
    -
    - - - - -
    - Notes: - - -- Definition --<br/>Voltage regulator.<br/><br/>-- Description --<br/><i>Voltage regulators</i> vary the ac supply or source voltage to the customer to maintain the voltage within desired limits. Voltage provided by regulators is changed using a tap-changing switch to adjust the number of secondary windings. Bypass switches allow a regulator to be removed for normal service without interrupting the downstream load.<br/><br/>NOTE Subtypes include: Single Phase Overhead, Two Phase Overhead, Three Phase Overhead, Three Phase Pad-Mounted.<br/><br/> -
    - +   + +
    + Public
      anode +
    + Details: + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + +  
    -
    Details: -
    +
    Details: +
    Values: true
    Default: true
    Description: Encode code list as externally managed dictionary (applies to ISO 19136:2007 encoding rule). Always true in INSPIRE.
    @@ -1719,8 +1719,8 @@
    -
    Details: -
    +
    Details: +
    Values: none | narrower | any
    Default: any
    Description: This refers to extensions by a third party, not to extensions by the owner of the vocabulary; the owner will always be able to revise the vocabulary. I.e., if the value is 'none', the referenced vocabulary may not be extended by third parties; if the value is 'narrower', the vocabulary may be extended by narrower terms that have an existing term as a parent; if the value is 'any', the vocabulary may be extended by additional terms on any level. This value must be 'all', empty or missing, if the value 'vocabulary' is empty or missing; in this case any vocabulary may be used.
    @@ -1732,8 +1732,8 @@
    -
    Details: -
    +
    Details: +
    Description: URI of the vocabulary/code list in the INSPIRE code list registry or in some external registry. The value has to be provided, if an online version of the vocabulary exists.
    @@ -1745,8 +1745,8 @@
    -
    Details: -
    +
    Details: +
    Values: iso19136_2007 | iso19139_2007 | iso19136_2007_INSPIRE_Extensions
    Default: iso19136_2007_INSPIRE_Extensions
    Description: XML Schema encoding rule to apply
    diff --git a/approved/html/EARoot/EA2/EA3/EA20/EA3/EA2/EA9302.htm b/approved/html/EARoot/EA2/EA3/EA20/EA3/EA2/EA9302.htm index 6b7c094b4..0af3fcb87 100644 --- a/approved/html/EARoot/EA2/EA3/EA20/EA3/EA2/EA9302.htm +++ b/approved/html/EARoot/EA2/EA3/EA20/EA3/EA2/EA9302.htm @@ -109,43 +109,43 @@
    - Public Measure
      nominalVoltage + Public Measure
      operatingVoltage
    - Details: + Details: - + - + - + - + - + - + - + - + @@ -158,7 +158,7 @@ Notes:
    - -- Name --<br/>nominal voltage<br/><br/>-- Definition --<br/>The nominal system voltage at the point of supply.<br/><br/> + -- Name --<br/>operating voltage<br/><br/>-- Definition --<br/>The utilization or operating voltage by the equipment using the electricity.<br/><br/>
    @@ -167,43 +167,43 @@
    - Public Measure
      operatingVoltage + Public Measure
      nominalVoltage
    - Details: + Details: - + - + - + - + - + - + - + - + @@ -216,7 +216,7 @@ Notes:
    - -- Name --<br/>operating voltage<br/><br/>-- Definition --<br/>The utilization or operating voltage by the equipment using the electricity.<br/><br/> + -- Name --<br/>nominal voltage<br/><br/>-- Definition --<br/>The nominal system voltage at the point of supply.<br/><br/>
    @@ -238,8 +238,8 @@
    -
    Details: -
    +
    Details: +
    Values: false
    Default: false
    Description: Create a property type that requires that the instance is encoded inline (applies to ISO 19136:2007 encoding rule). Always set to false in INSPIRE.
    @@ -251,8 +251,8 @@
    -
    Details: -
    +
    Details: +
    Values: true | false
    Default: false
    Description: Identifies the feature type as a mixin type that will not be encoded as a separate element/type in the GML encoding.
    @@ -264,8 +264,8 @@
    -
    Details: -
    +
    Details: +
    Default: FIXME
    Description: URN reference to the feature concept in the INSPIRE Feature Concept Dictionary Register
    @@ -277,8 +277,8 @@
    -
    Details: -
    +
    Details: +
    Values: true | false
    Default: false
    Description: Identifies the feature type as a feature collection.
    @@ -290,8 +290,8 @@
    -
    Details: -
    +
    Details: +
    Values: false
    Default: false
    Description: Surpress creation of a standard property type that supports inline or by-reference encoding (applies to ISO 19136:2007 encoding rule). Always set to false in INSPIRE.
    @@ -303,8 +303,8 @@
    -
    Details: -
    +
    Details: +
    Values: iso19136_2007 | iso19139_2007 | iso19136_2007_INSPIRE_Extensions
    Default: iso19136_2007_INSPIRE_Extensions
    Description: XML Schema encoding rule to apply
    diff --git a/approved/html/EARoot/EA2/EA3/EA20/EA3/EA3/EA9304.png b/approved/html/EARoot/EA2/EA3/EA20/EA3/EA3/EA9304.png index f3b19b524..5f2c3e455 100644 Binary files a/approved/html/EARoot/EA2/EA3/EA20/EA3/EA3/EA9304.png and b/approved/html/EARoot/EA2/EA3/EA20/EA3/EA3/EA9304.png differ diff --git a/approved/html/EARoot/EA2/EA3/EA20/EA3/EA3/EA9305.htm b/approved/html/EARoot/EA2/EA3/EA20/EA3/EA3/EA9305.htm index f461d7985..f39f4bc06 100644 --- a/approved/html/EARoot/EA2/EA3/EA20/EA3/EA3/EA9305.htm +++ b/approved/html/EARoot/EA2/EA3/EA20/EA3/EA3/EA9305.htm @@ -112,8 +112,8 @@
    -
    Details: -
    +
    Details: +
    Default: FIXME
    Description: Target XML namespace of the application schema
    @@ -125,8 +125,8 @@
    -
    Details: -
    +
    Details: +
    Default: FIXME
    Description: Current version of the application schema
    @@ -138,8 +138,8 @@
    -
    Details: -
    +
    Details: +
    Default: FIXME
    Description: Namespace prefix to be used as short form of the target namespace
    @@ -151,8 +151,8 @@
    -
    Details: -
    +
    Details: +
    Default: FIXME
    Description: Name of an XML Schema document to create representing the content of this package
    @@ -164,8 +164,8 @@
    -
    Details: -
    +
    Details: +
    Values: iso19136_2007 | iso19139_2007 | iso19136_2007_INSPIRE_Extensions
    Default: iso19136_2007_INSPIRE_Extensions
    Description: XML Schema encoding rule to apply
    diff --git a/approved/html/EARoot/EA2/EA3/EA20/EA3/EA3/EA9306.htm b/approved/html/EARoot/EA2/EA3/EA20/EA3/EA3/EA9306.htm index b14a2473a..44d1fef35 100644 --- a/approved/html/EARoot/EA2/EA3/EA20/EA3/EA3/EA9306.htm +++ b/approved/html/EARoot/EA2/EA3/EA20/EA3/EA3/EA9306.htm @@ -109,55 +109,7 @@
    - Public
      beacon -
    - Details: - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    - - -   - -
    - Public
      compression + Public
      pump
    - Public
      deliveryPoint + Public
      gasStation
    - Public
      frontier + Public
      node
    - Public
      gasStation + Public
      compression
    - Public
      marker + Public
      terminal
    - Public
      node + Public
      deliveryPoint
    - Public
      pump + Public
      frontier
    - Public
      terminal + Public
      marker
    +   + +
    + Public
      beacon +
    + Details: + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + +  
    -
    Details: -
    +
    Details: +
    Values: true
    Default: true
    Description: Encode code list as externally managed dictionary (applies to ISO 19136:2007 encoding rule). Always true in INSPIRE.
    @@ -567,8 +567,8 @@
    -
    Details: -
    +
    Details: +
    Values: none | narrower | any
    Default: any
    Description: This refers to extensions by a third party, not to extensions by the owner of the vocabulary; the owner will always be able to revise the vocabulary. I.e., if the value is 'none', the referenced vocabulary may not be extended by third parties; if the value is 'narrower', the vocabulary may be extended by narrower terms that have an existing term as a parent; if the value is 'any', the vocabulary may be extended by additional terms on any level. This value must be 'all', empty or missing, if the value 'vocabulary' is empty or missing; in this case any vocabulary may be used.
    @@ -580,8 +580,8 @@
    -
    Details: -
    +
    Details: +
    Description: URI of the vocabulary/code list in the INSPIRE code list registry or in some external registry. The value has to be provided, if an online version of the vocabulary exists.
    @@ -593,8 +593,8 @@
    -
    Details: -
    +
    Details: +
    Values: iso19136_2007 | iso19139_2007 | iso19136_2007_INSPIRE_Extensions
    Default: iso19136_2007_INSPIRE_Extensions
    Description: XML Schema encoding rule to apply
    diff --git a/approved/html/EARoot/EA2/EA3/EA20/EA3/EA3/EA9307.htm b/approved/html/EARoot/EA2/EA3/EA20/EA3/EA3/EA9307.htm index f2dda6a45..03990f8e9 100644 --- a/approved/html/EARoot/EA2/EA3/EA20/EA3/EA3/EA9307.htm +++ b/approved/html/EARoot/EA2/EA3/EA20/EA3/EA3/EA9307.htm @@ -114,38 +114,38 @@
    - Details: + Details: - + - + - + - + - + - + - + - + @@ -180,8 +180,8 @@ - - - - - @@ -204,7 +156,7 @@ @@ -252,7 +204,7 @@ @@ -300,7 +252,7 @@ @@ -348,7 +300,7 @@ @@ -396,7 +348,7 @@ @@ -444,7 +396,7 @@ @@ -492,7 +444,7 @@ @@ -540,7 +492,7 @@ @@ -588,7 +540,7 @@ @@ -636,7 +588,7 @@ @@ -684,7 +636,7 @@ @@ -732,7 +684,7 @@ @@ -780,7 +732,7 @@ @@ -828,7 +780,7 @@ @@ -876,7 +828,7 @@ @@ -924,7 +876,7 @@ @@ -972,7 +924,7 @@ @@ -1020,7 +972,7 @@ @@ -1068,7 +1020,7 @@ @@ -1116,7 +1068,7 @@ @@ -1164,7 +1116,7 @@ @@ -1212,7 +1164,7 @@ @@ -1260,7 +1212,7 @@ @@ -1308,7 +1260,7 @@ @@ -1356,7 +1308,7 @@ @@ -1404,7 +1356,7 @@ @@ -1452,7 +1404,7 @@ @@ -1500,7 +1452,7 @@ @@ -1548,7 +1500,7 @@ @@ -1596,7 +1548,7 @@ @@ -1644,7 +1596,7 @@ @@ -1692,7 +1644,7 @@ @@ -1740,7 +1692,7 @@ @@ -1788,7 +1740,7 @@ @@ -1836,7 +1788,7 @@ @@ -1884,7 +1836,7 @@ @@ -1932,7 +1884,7 @@ @@ -1980,7 +1932,7 @@ @@ -2215,6 +2167,54 @@
    -
    Details: -
    +
    Details: +
    Values: false
    Default: false
    Description: Create a property type that requires that the instance is encoded inline (applies to ISO 19136:2007 encoding rule). Always set to false in INSPIRE.
    @@ -193,8 +193,8 @@
    -
    Details: -
    +
    Details: +
    Values: true | false
    Default: false
    Description: Identifies the feature type as a mixin type that will not be encoded as a separate element/type in the GML encoding.
    @@ -206,8 +206,8 @@
    -
    Details: -
    +
    Details: +
    Default: FIXME
    Description: URN reference to the feature concept in the INSPIRE Feature Concept Dictionary Register
    @@ -219,8 +219,8 @@
    -
    Details: -
    +
    Details: +
    Values: true | false
    Default: false
    Description: Identifies the feature type as a feature collection.
    @@ -232,8 +232,8 @@
    -
    Details: -
    +
    Details: +
    Values: false
    Default: false
    Description: Surpress creation of a standard property type that supports inline or by-reference encoding (applies to ISO 19136:2007 encoding rule). Always set to false in INSPIRE.
    @@ -245,8 +245,8 @@
    -
    Details: -
    +
    Details: +
    Values: iso19136_2007 | iso19139_2007 | iso19136_2007_INSPIRE_Extensions
    Default: iso19136_2007_INSPIRE_Extensions
    Description: XML Schema encoding rule to apply
    diff --git a/approved/html/EARoot/EA2/EA3/EA20/EA3/EA3/EA9308.htm b/approved/html/EARoot/EA2/EA3/EA20/EA3/EA3/EA9308.htm index 09c103e49..b34cd8681 100644 --- a/approved/html/EARoot/EA2/EA3/EA20/EA3/EA3/EA9308.htm +++ b/approved/html/EARoot/EA2/EA3/EA20/EA3/EA3/EA9308.htm @@ -108,55 +108,7 @@
    - Public
      accetone -
    - Details: - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    - - -   - -
    - Public
      air + Public
      liquefiedNaturalGas
    - Public
      argon + Public
      methane
    - Public
      butadiene + Public
      naturalGas
    - Public
      butadiene1,3 + Public
      naturalGasAndTetrahydrothiophene
    - Public
      butane + Public
      nitrogenGas
    - Public
      c3 + Public
      residualGas
    - Public
      carbonMonoxide + Public
      accetone
    - Public
      chlorine + Public
      air
    - Public
      compressedAir + Public
      argon
    - Public
      crude + Public
      butadiene
    - Public
      dichloroethane + Public
      butadiene1,3
    - Public
      diesel + Public
      butane
    - Public
      empty + Public
      c3
    - Public
      ethylene + Public
      carbonMonoxide
    - Public
      gasFabricationOfCocs + Public
      chlorine
    - Public
      gasHFx + Public
      compressedAir
    - Public
      gasoil + Public
      crude
    - Public
      hydrogen + Public
      dichloroethane
    - Public
      isobutane + Public
      diesel
    - Public
      JET-A1 + Public
      ethylene
    - Public
      kerosene + Public
      gasFabricationOfCocs
    - Public
      liquefiedNaturalGas + Public
      gasHFx
    - Public
      liquidAmmonia + Public
      gasoil
    - Public
      liquidHydrocarbon + Public
      hydrogen
    - Public
      methane + Public
      isobutane
    - Public
      multiProduct + Public
      JET-A1
    - Public
      MVC + Public
      kerosene
    - Public
      naturalGas + Public
      liquidAmmonia
    - Public
      naturalGasAndTetrahydrothiophene + Public
      liquidHydrocarbon
    - Public
      nitrogen + Public
      multiProduct
    - Public
      nitrogenGas + Public
      MVC
    - Public
      oxygen + Public
      nitrogen
    - Public
      phenol + Public
      oxygen
    - Public
      propane + Public
      phenol
    - Public
      propyleen + Public
      propane
    - Public
      propylene + Public
      propyleen
    - Public
      raffinate + Public
      propylene
    - Public
      refineryProducts + Public
      raffinate
    - Public
      residualGas + Public
      refineryProducts
    +   + +
    + Public
      empty +
    + Details: + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + +  
    -
    Details: -
    +
    Details: +
    Values: true
    Default: true
    Description: Encode code list as externally managed dictionary (applies to ISO 19136:2007 encoding rule). Always true in INSPIRE.
    @@ -2246,8 +2246,8 @@
    -
    Details: -
    +
    Details: +
    Values: none | narrower | any
    Default: any
    Description: This refers to extensions by a third party, not to extensions by the owner of the vocabulary; the owner will always be able to revise the vocabulary. I.e., if the value is 'none', the referenced vocabulary may not be extended by third parties; if the value is 'narrower', the vocabulary may be extended by narrower terms that have an existing term as a parent; if the value is 'any', the vocabulary may be extended by additional terms on any level. This value must be 'all', empty or missing, if the value 'vocabulary' is empty or missing; in this case any vocabulary may be used.
    @@ -2259,8 +2259,8 @@
    -
    Details: -
    +
    Details: +
    Description: URI of the vocabulary/code list in the INSPIRE code list registry or in some external registry. The value has to be provided, if an online version of the vocabulary exists.
    @@ -2272,8 +2272,8 @@
    -
    Details: -
    +
    Details: +
    Values: iso19136_2007 | iso19139_2007 | iso19136_2007_INSPIRE_Extensions
    Default: iso19136_2007_INSPIRE_Extensions
    Description: XML Schema encoding rule to apply
    diff --git a/approved/html/EARoot/EA2/EA3/EA20/EA3/EA4/EA9310.png b/approved/html/EARoot/EA2/EA3/EA20/EA3/EA4/EA9310.png index 4191c3ca9..ec286702c 100644 Binary files a/approved/html/EARoot/EA2/EA3/EA20/EA3/EA4/EA9310.png and b/approved/html/EARoot/EA2/EA3/EA20/EA3/EA4/EA9310.png differ diff --git a/approved/html/EARoot/EA2/EA3/EA20/EA3/EA4/EA9311.htm b/approved/html/EARoot/EA2/EA3/EA20/EA3/EA4/EA9311.htm index 4a6b9a48a..e9aab2bbf 100644 --- a/approved/html/EARoot/EA2/EA3/EA20/EA3/EA4/EA9311.htm +++ b/approved/html/EARoot/EA2/EA3/EA20/EA3/EA4/EA9311.htm @@ -112,8 +112,8 @@
    -
    Details: -
    +
    Details: +
    Default: FIXME
    Description: Target XML namespace of the application schema
    @@ -125,8 +125,8 @@
    -
    Details: -
    +
    Details: +
    Default: FIXME
    Description: Current version of the application schema
    @@ -138,8 +138,8 @@
    -
    Details: -
    +
    Details: +
    Default: FIXME
    Description: Namespace prefix to be used as short form of the target namespace
    @@ -151,8 +151,8 @@
    -
    Details: -
    +
    Details: +
    Default: FIXME
    Description: Name of an XML Schema document to create representing the content of this package
    @@ -164,8 +164,8 @@
    -
    Details: -
    +
    Details: +
    Values: iso19136_2007 | iso19139_2007 | iso19136_2007_INSPIRE_Extensions
    Default: iso19136_2007_INSPIRE_Extensions
    Description: XML Schema encoding rule to apply
    diff --git a/approved/html/EARoot/EA2/EA3/EA20/EA3/EA4/EA9312.htm b/approved/html/EARoot/EA2/EA3/EA20/EA3/EA4/EA9312.htm index 02ae4eddc..6912b263e 100644 --- a/approved/html/EARoot/EA2/EA3/EA20/EA3/EA4/EA9312.htm +++ b/approved/html/EARoot/EA2/EA3/EA20/EA3/EA4/EA9312.htm @@ -112,64 +112,6 @@ Public
      anode
    - Details: - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    - - -
    - - - - -
    - Notes: - - -- Definition --<br/>Anode.<br/><br/>-- Description --<br/>An <i>anode </i>is a feature (specifically, an electrical mechanism) that’s applied to system components for the prevention of rust, pitting, and the corrosion of metal surfaces that are in contact with water or soil. A low-voltage current is applied to the water or soil in contact with the metal, such that the<br/>electromotive force renders the metal component cathodic. Corrosion is concentrated on the anodes instead of on the associated (and protected) water system components. This type of corrosion may occur in copper, steel, stainless steel, cast iron, and ductile iron pipes.<br/><br/> -
    - - -
    - Public
      barrel -
    Details: @@ -216,7 +158,7 @@ Notes: - -- Definition --<br/>Barrel.<br/><br/>-- Description --<br/>A <i>barrel </i>is the cylindrical part of a manhole between the cone and the shelf. Barrels are only found in wastewater and stormwater systems.<br/><br/> + -- Definition --<br/>Anode.<br/><br/>-- Description --<br/>An <i>anode </i>is a feature (specifically, an electrical mechanism) that’s applied to system components for the prevention of rust, pitting, and the corrosion of metal surfaces that are in contact with water or soil. A low-voltage current is applied to the water or soil in contact with the metal, such that the<br/>electromotive force renders the metal component cathodic. Corrosion is concentrated on the anodes instead of on the associated (and protected) water system components. This type of corrosion may occur in copper, steel, stainless steel, cast iron, and ductile iron pipes.<br/><br/>
    @@ -225,7 +167,7 @@
    - Public
      barScreen + Public
      barrel
    - -- Definition --<br/>Bar screen.<br/><br/>-- Description --<br/>A <i>bar screen </i>is a set of parallel bars, either vertical<br/>or inclined, that is placed in a sewer or other waterway to catch debris. Bar screens are only found in wastewater and stormwater systems.<br/><br/> + -- Definition --<br/>Barrel.<br/><br/>-- Description --<br/>A <i>barrel </i>is the cylindrical part of a manhole between the cone and the shelf. Barrels are only found in wastewater and stormwater systems.<br/><br/>
    @@ -283,7 +225,7 @@
    - Public
      catchBasin + Public
      barScreen
    - -- Definition --<br/>Catch basin.<br/><br/>-- Description --<br/>A <i>catch basin </i>is a chamber or well used with storm or combined sewers to receive runoff into the collection system. Catch basins are used as a means of removing debris and solids that could enter thecollection system. Catch basins may also be modeled as curb inlets or stormwater inlets.<br/><br/> + -- Definition --<br/>Bar screen.<br/><br/>-- Description --<br/>A <i>bar screen </i>is a set of parallel bars, either vertical<br/>or inclined, that is placed in a sewer or other waterway to catch debris. Bar screens are only found in wastewater and stormwater systems.<br/><br/>
    @@ -341,7 +283,7 @@ - Public
      cleanOut + Public
      catchBasin @@ -390,7 +332,7 @@ Notes: - -- Definition --<br/>Clean out.<br/><br/>-- Description --<br/>A <i>cleanout </i>is a sewer and stormwater-specific facility that is used as an opening in a collection system for inserting tools, rods, or snakes while cleaning a pipeline or clearing a stoppage. Cleanout types include two-way cleanouts, which are designed for working a snake into the pipe in either<br/>direction. Two-way cleanouts are commonly found in laterals or near a property line.<br/><br/> + -- Definition --<br/>Catch basin.<br/><br/>-- Description --<br/>A <i>catch basin </i>is a chamber or well used with storm or combined sewers to receive runoff into the collection system. Catch basins are used as a means of removing debris and solids that could enter thecollection system. Catch basins may also be modeled as curb inlets or stormwater inlets.<br/><br/>
    @@ -399,7 +341,7 @@ - Public
      connection + Public
      cleanOut @@ -442,7 +384,17 @@ -   +
    + + + + +
    + Notes: + + -- Definition --<br/>Clean out.<br/><br/>-- Description --<br/>A <i>cleanout </i>is a sewer and stormwater-specific facility that is used as an opening in a collection system for inserting tools, rods, or snakes while cleaning a pipeline or clearing a stoppage. Cleanout types include two-way cleanouts, which are designed for working a snake into the pipe in either<br/>direction. Two-way cleanouts are commonly found in laterals or near a property line.<br/><br/> +
    + @@ -505,7 +457,7 @@ - Public
      mechanicAndElectromechanicEquipment + Public
      meter @@ -548,12 +500,22 @@ -   +
    + + + + +
    + Notes: + + -- Definition --<br/>Meter.<br/><br/>-- Description --<br/>A <i>meter </i>is a facility that is used to measure wastewater volume. Being a facility, a meter plays the role of a junction on the active network. <br/><br/> +
    + - Public
      meter + Public
      pump @@ -602,7 +564,7 @@ Notes: - -- Definition --<br/>Meter.<br/><br/>-- Description --<br/>A <i>meter </i>is a facility that is used to measure wastewater volume. Being a facility, a meter plays the role of a junction on the active network. <br/><br/> + -- Definition --<br/>Pump.<br/><br/>-- Description --<br/>A <i>pump </i>is a piece of equipment that moves, compresses, or alters the pressure of a fluid, such as water or air, being conveyed through a natural or artificial channel. Pump types include AxialFlow, Centrifugal, Jet, Reciprocating, Rotary,<br/>Screw, and Turbine.<br/><br/>
    @@ -611,7 +573,7 @@ - Public
      node + Public
      regulator @@ -654,12 +616,22 @@ -   +
    + + + + +
    + Notes: + + -- Definition --<br/>Regulator.<br/><br/>-- Description --<br/>A <i>regulator </i>is a device that is used in combined sewer systems to control or regulate the diversion flow.<br/><br/> +
    + - Public
      other + Public
      scadaSensor @@ -702,12 +674,22 @@ -   +
    + + + + +
    + Notes: + + -- Definition --<br/>SCADA sensor.<br/><br/>-- Description --<br/>The <i>SCADA sensor </i>is a feature that’s used to remotely measure the status of network components as part of a supervisory control and data acquisition (SCADA) system. SCADA systems provide alarms, responses, data acquisition, and control for collection and distribution systems. Operators use the SCADA system to monitor and adjust processes and facilities.<br/><br/> +
    + - Public
      pump + Public
      thrustProtection @@ -756,7 +738,7 @@ Notes: - -- Definition --<br/>Pump.<br/><br/>-- Description --<br/>A <i>pump </i>is a piece of equipment that moves, compresses, or alters the pressure of a fluid, such as water or air, being conveyed through a natural or artificial channel. Pump types include AxialFlow, Centrifugal, Jet, Reciprocating, Rotary,<br/>Screw, and Turbine.<br/><br/> + -- Definition --<br/>Thrust protection.<br/><br/>-- Description --<br/>The <i>t</i><i>hrust</i><i> p</i><i>rotection </i>represents a type of line protector that’s used to prevent pipe movement. Thrust protection is commonly implemented as thrust blocks (masses of concrete material) that are placed at bends and around valve structures. The types of thrust protection include Anchor,<br/>Blocking, Deadman, and Kicker.<br/><br/>
    @@ -765,7 +747,7 @@ - Public
      rainwaterCollector + Public
      tideGate @@ -808,12 +790,22 @@ -   +
    + + + + +
    + Notes: + + -- Definition --<br/>Tide gate.<br/><br/>-- Description --<br/>A <i>tide gate </i>is a device used in sewer and stormwater systems that is suspended from a free-swinging horizontal hinge and is usually placed at the end of a conduit, discharging into a body of water with a fluctuating surface elevation. This piece of equipment is also termed a backwater gate, flap gate, or check gate.<br/><br/> +
    + - Public
      regulator + Public
      other @@ -856,22 +848,12 @@ -
    - - - - -
    - Notes: - - -- Definition --<br/>Regulator.<br/><br/>-- Description --<br/>A <i>regulator </i>is a device that is used in combined sewer systems to control or regulate the diversion flow.<br/><br/> -
    - +   - Public
      scadaSensor + Public
      node @@ -914,22 +896,12 @@ -
    - - - - -
    - Notes: - - -- Definition --<br/>SCADA sensor.<br/><br/>-- Description --<br/>The <i>SCADA sensor </i>is a feature that’s used to remotely measure the status of network components as part of a supervisory control and data acquisition (SCADA) system. SCADA systems provide alarms, responses, data acquisition, and control for collection and distribution systems. Operators use the SCADA system to monitor and adjust processes and facilities.<br/><br/> -
    - +   - Public
      specificStructure + Public
      connection @@ -977,7 +949,7 @@ - Public
      thrustProtection + Public
      specificStructure @@ -1020,22 +992,12 @@ -
    - - - - -
    - Notes: - - -- Definition --<br/>Thrust protection.<br/><br/>-- Description --<br/>The <i>t</i><i>hrust</i><i> p</i><i>rotection </i>represents a type of line protector that’s used to prevent pipe movement. Thrust protection is commonly implemented as thrust blocks (masses of concrete material) that are placed at bends and around valve structures. The types of thrust protection include Anchor,<br/>Blocking, Deadman, and Kicker.<br/><br/> -
    - +   - Public
      tideGate + Public
      mechanicAndElectromechanicEquipment @@ -1078,22 +1040,12 @@ -
    - - - - -
    - Notes: - - -- Definition --<br/>Tide gate.<br/><br/>-- Description --<br/>A <i>tide gate </i>is a device used in sewer and stormwater systems that is suspended from a free-swinging horizontal hinge and is usually placed at the end of a conduit, discharging into a body of water with a fluctuating surface elevation. This piece of equipment is also termed a backwater gate, flap gate, or check gate.<br/><br/> -
    - +   - Public
      watertankOrChamber + Public
      rainwaterCollector @@ -1136,6 +1088,54 @@ +   + + + + + Public
      watertankOrChamber + + + + + Details: + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + +   @@ -1154,8 +1154,8 @@ -
    Details: -
    +
    Details: +
    Values: true
    Default: true
    Description: Encode code list as externally managed dictionary (applies to ISO 19136:2007 encoding rule). Always true in INSPIRE.
    @@ -1167,8 +1167,8 @@ -
    Details: -
    +
    Details: +
    Values: none | narrower | any
    Default: any
    Description: This refers to extensions by a third party, not to extensions by the owner of the vocabulary; the owner will always be able to revise the vocabulary. I.e., if the value is 'none', the referenced vocabulary may not be extended by third parties; if the value is 'narrower', the vocabulary may be extended by narrower terms that have an existing term as a parent; if the value is 'any', the vocabulary may be extended by additional terms on any level. This value must be 'all', empty or missing, if the value 'vocabulary' is empty or missing; in this case any vocabulary may be used.
    @@ -1180,8 +1180,8 @@ -
    Details: -
    +
    Details: +
    Description: URI of the vocabulary/code list in the INSPIRE code list registry or in some external registry. The value has to be provided, if an online version of the vocabulary exists.
    @@ -1193,8 +1193,8 @@ -
    Details: -
    +
    Details: +
    Values: iso19136_2007 | iso19139_2007 | iso19136_2007_INSPIRE_Extensions
    Default: iso19136_2007_INSPIRE_Extensions
    Description: XML Schema encoding rule to apply
    diff --git a/approved/html/EARoot/EA2/EA3/EA20/EA3/EA4/EA9313.htm b/approved/html/EARoot/EA2/EA3/EA20/EA3/EA4/EA9313.htm index 1d059002e..436ebe882 100644 --- a/approved/html/EARoot/EA2/EA3/EA20/EA3/EA4/EA9313.htm +++ b/approved/html/EARoot/EA2/EA3/EA20/EA3/EA4/EA9313.htm @@ -114,38 +114,38 @@ - Details: + Details: - + - + - + - + - + - + - + - + @@ -180,8 +180,8 @@ @@ -448,7 +390,7 @@ Notes:
    -
    Details: -
    +
    Details: +
    Values: false
    Default: false
    Description: Create a property type that requires that the instance is encoded inline (applies to ISO 19136:2007 encoding rule). Always set to false in INSPIRE.
    @@ -193,8 +193,8 @@
    -
    Details: -
    +
    Details: +
    Values: true | false
    Default: false
    Description: Identifies the feature type as a mixin type that will not be encoded as a separate element/type in the GML encoding.
    @@ -206,8 +206,8 @@
    -
    Details: -
    +
    Details: +
    Default: FIXME
    Description: URN reference to the feature concept in the INSPIRE Feature Concept Dictionary Register
    @@ -219,8 +219,8 @@
    -
    Details: -
    +
    Details: +
    Values: true | false
    Default: false
    Description: Identifies the feature type as a feature collection.
    @@ -232,8 +232,8 @@
    -
    Details: -
    +
    Details: +
    Values: false
    Default: false
    Description: Surpress creation of a standard property type that supports inline or by-reference encoding (applies to ISO 19136:2007 encoding rule). Always set to false in INSPIRE.
    @@ -245,8 +245,8 @@
    -
    Details: -
    +
    Details: +
    Values: iso19136_2007 | iso19139_2007 | iso19136_2007_INSPIRE_Extensions
    Default: iso19136_2007_INSPIRE_Extensions
    Description: XML Schema encoding rule to apply
    diff --git a/approved/html/EARoot/EA2/EA3/EA20/EA3/EA4/EA9314.htm b/approved/html/EARoot/EA2/EA3/EA20/EA3/EA4/EA9314.htm index 1f8fe7d57..5cc03081d 100644 --- a/approved/html/EARoot/EA2/EA3/EA20/EA3/EA4/EA9314.htm +++ b/approved/html/EARoot/EA2/EA3/EA20/EA3/EA4/EA9314.htm @@ -113,38 +113,38 @@
    - Details: + Details: - + - + - + - + - + - + - + - + @@ -171,38 +171,38 @@ @@ -390,7 +332,7 @@ Notes:
    - Details: + Details: - + - + - + - + - + - + - + - + @@ -229,38 +229,38 @@ @@ -332,7 +274,7 @@ Notes:
    - Details: + Details: - + - + - + - + - + - + - + - + @@ -287,38 +287,38 @@ @@ -274,7 +216,7 @@ Notes:
    - Details: + Details: - + - + - + - + - + - + - + - + @@ -353,8 +353,8 @@ - - - - -
    -
    Details: -
    +
    Details: +
    Values: true
    Default: true
    Description: Encode code list as externally managed dictionary (applies to ISO 19136:2007 encoding rule). Always true in INSPIRE.
    @@ -366,8 +366,8 @@
    -
    Details: -
    +
    Details: +
    Values: none | narrower | any
    Default: any
    Description: This refers to extensions by a third party, not to extensions by the owner of the vocabulary; the owner will always be able to revise the vocabulary. I.e., if the value is 'none', the referenced vocabulary may not be extended by third parties; if the value is 'narrower', the vocabulary may be extended by narrower terms that have an existing term as a parent; if the value is 'any', the vocabulary may be extended by additional terms on any level. This value must be 'all', empty or missing, if the value 'vocabulary' is empty or missing; in this case any vocabulary may be used.
    @@ -379,8 +379,8 @@
    -
    Details: -
    +
    Details: +
    Description: URI of the vocabulary/code list in the INSPIRE code list registry or in some external registry. The value has to be provided, if an online version of the vocabulary exists.
    @@ -392,8 +392,8 @@
    -
    Details: -
    +
    Details: +
    Values: iso19136_2007 | iso19139_2007 | iso19136_2007_INSPIRE_Extensions
    Default: iso19136_2007_INSPIRE_Extensions
    Description: XML Schema encoding rule to apply
    diff --git a/approved/html/EARoot/EA2/EA3/EA20/EA3/EA5/EA9316.png b/approved/html/EARoot/EA2/EA3/EA20/EA3/EA5/EA9316.png index 48e93b8d8..c14ef016f 100644 Binary files a/approved/html/EARoot/EA2/EA3/EA20/EA3/EA5/EA9316.png and b/approved/html/EARoot/EA2/EA3/EA20/EA3/EA5/EA9316.png differ diff --git a/approved/html/EARoot/EA2/EA3/EA20/EA3/EA5/EA9317.htm b/approved/html/EARoot/EA2/EA3/EA20/EA3/EA5/EA9317.htm index f82f3049c..add65ef67 100644 --- a/approved/html/EARoot/EA2/EA3/EA20/EA3/EA5/EA9317.htm +++ b/approved/html/EARoot/EA2/EA3/EA20/EA3/EA5/EA9317.htm @@ -112,8 +112,8 @@
    -
    Details: -
    +
    Details: +
    Default: FIXME
    Description: Target XML namespace of the application schema
    @@ -125,8 +125,8 @@
    -
    Details: -
    +
    Details: +
    Default: FIXME
    Description: Current version of the application schema
    @@ -138,8 +138,8 @@
    -
    Details: -
    +
    Details: +
    Default: FIXME
    Description: Namespace prefix to be used as short form of the target namespace
    @@ -151,8 +151,8 @@
    -
    Details: -
    +
    Details: +
    Default: FIXME
    Description: Name of an XML Schema document to create representing the content of this package
    @@ -164,8 +164,8 @@
    -
    Details: -
    +
    Details: +
    Values: iso19136_2007 | iso19139_2007 | iso19136_2007_INSPIRE_Extensions
    Default: iso19136_2007_INSPIRE_Extensions
    Description: XML Schema encoding rule to apply
    diff --git a/approved/html/EARoot/EA2/EA3/EA20/EA3/EA5/EA9318.htm b/approved/html/EARoot/EA2/EA3/EA20/EA3/EA5/EA9318.htm index 9229d534e..5b4d978fb 100644 --- a/approved/html/EARoot/EA2/EA3/EA20/EA3/EA5/EA9318.htm +++ b/approved/html/EARoot/EA2/EA3/EA20/EA3/EA5/EA9318.htm @@ -112,64 +112,6 @@ Public
      antenna
    - Details: - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    - - -
    - - - - -
    - Notes: - - -- Definition --<br/>Antenna.<br/><br/>-- Description --<br/>An <i>antenna </i>(or aerial) is a transducer that transmits or receives electromagnetic waves. In other words, antennas convert electromagnetic radiation into electric current, or vice versa.<br/><br/> -
    - - -
    - Public
      copperMaintenanceLoop -
    Details: @@ -216,7 +158,7 @@ Notes: - -- Definition --<br/>Copper (twisted-pair) maintenance loop.<br/><br/>-- Description --<br/>A <i>m</i><i>aintenance </i><i>l</i><i>oop</i> is a coil of slack copper cable that is used to support future joining or other maintenance activities.<br/><br/> + -- Definition --<br/>Antenna.<br/><br/>-- Description --<br/>An <i>antenna </i>(or aerial) is a transducer that transmits or receives electromagnetic waves. In other words, antennas convert electromagnetic radiation into electric current, or vice versa.<br/><br/>
    @@ -225,7 +167,7 @@
    - Public
      copperRepeater + Public
      copperMaintenanceLoop
    - -- Definition --<br/>Copper repeater.<br/><br/>-- Description --<br/>A <i>c</i><i>opper </i><i>r</i><i>epeater </i>is copper line conditioning equipment that amplifies the analog or digital input signal. <br/><br/> + -- Definition --<br/>Copper (twisted-pair) maintenance loop.<br/><br/>-- Description --<br/>A <i>m</i><i>aintenance </i><i>l</i><i>oop</i> is a coil of slack copper cable that is used to support future joining or other maintenance activities.<br/><br/>
    @@ -283,7 +225,7 @@
    - Public
      digitalCrossConnect + Public
      copperRepeater
    - -- Definition --<br/>Digital cross connect (DXC).<br/><br/>-- Description --<br/>A <i>d</i><i>igital </i><i>c</i><i>ross </i><i>c</i><i>onnect</i> is a patch panel for copper cables that are used to provide digital service. Fibers in cables are connected to signal ports in this equipment.<br/><br/> + -- Definition --<br/>Copper repeater.<br/><br/>-- Description --<br/>A <i>c</i><i>opper </i><i>r</i><i>epeater </i>is copper line conditioning equipment that amplifies the analog or digital input signal. <br/><br/>
    @@ -341,7 +283,7 @@
    - Public
      digitalLoopCarrier + Public
      digitalCrossConnect
    - -- Definition --<br/>Digital loop carrier (DLC).<br/><br/>-- Description --<br/>A <i>d</i><i>igital </i><i>l</i><i>oop </i><i>c</i><i>arrier</i> is a device that multiplexes an optical signal in to multiple lower level digital signals. Fibers in cables are connected to signal ports in this equipment. <br/><br/> + -- Definition --<br/>Digital cross connect (DXC).<br/><br/>-- Description --<br/>A <i>d</i><i>igital </i><i>c</i><i>ross </i><i>c</i><i>onnect</i> is a patch panel for copper cables that are used to provide digital service. Fibers in cables are connected to signal ports in this equipment.<br/><br/>
    @@ -399,7 +341,7 @@
    - Public
      exchange + Public
      digitalLoopCarrier
    - -- Definition --<br/>Exchange (switch).<br/><br/>-- Description --<br/>The <i>exchange</i> (central office) is the physical building used to house the inside plant equipment (distribution frames, lasers, switches etc).<br/><br/> + -- Definition --<br/>Digital loop carrier (DLC).<br/><br/>-- Description --<br/>A <i>d</i><i>igital </i><i>l</i><i>oop </i><i>c</i><i>arrier</i> is a device that multiplexes an optical signal in to multiple lower level digital signals. Fibers in cables are connected to signal ports in this equipment. <br/><br/>
    @@ -457,7 +399,7 @@ - Public
      fiberInterconnect + Public
      exchange @@ -506,7 +448,7 @@ Notes: - -- Definition --<br/>Fiber interconnect (FIC).<br/><br/>-- Description --<br/>A <i>f</i><i>iber </i><i>i</i><i>nterconnect </i>terminates individual fibers or establishes a connection between two or more fiber cables. Fibers in cables are connected to signal ports in the equipment. <br/><br/> + -- Definition --<br/>Exchange (switch).<br/><br/>-- Description --<br/>The <i>exchange</i> (central office) is the physical building used to house the inside plant equipment (distribution frames, lasers, switches etc).<br/><br/>
    @@ -515,7 +457,7 @@ - Public
      jointClosure + Public
      fiberInterconnect @@ -564,7 +506,7 @@ Notes: - -- Definition --<br/>Joint closure (copper of fiber).<br/><br/>-- Description --<br/>A protective<i> joint closure</i> for either copper or fiber-optic cable joints. A cable joint consists of spliced conductors and a closure.<br/><br/> + -- Definition --<br/>Fiber interconnect (FIC).<br/><br/>-- Description --<br/>A <i>f</i><i>iber </i><i>i</i><i>nterconnect </i>terminates individual fibers or establishes a connection between two or more fiber cables. Fibers in cables are connected to signal ports in the equipment. <br/><br/>
    @@ -573,7 +515,7 @@ - Public
      loadCoil + Public
      jointClosure @@ -622,7 +564,7 @@ Notes: - -- Definition --<br/>Load coil.<br/><br/>-- Description --<br/>A <i>l</i><i>oad </i><i>c</i><i>oil</i> is a copper line conditioning equipment. Standard voice phone calls degrade noticeably when the copper portion of a phone line is greater than 18 kilofeet long. In order to restore call quality, load coils are inserted at specific intervals along the loop. <br/><br/> + -- Definition --<br/>Joint closure (copper of fiber).<br/><br/>-- Description --<br/>A protective<i> joint closure</i> for either copper or fiber-optic cable joints. A cable joint consists of spliced conductors and a closure.<br/><br/>
    @@ -631,7 +573,7 @@ - Public
      mainDistributionFrame + Public
      loadCoil @@ -680,7 +622,7 @@ Notes: - -- Definition --<br/>Main distribution frame (MDF).<br/><br/>-- Description --<br/>A <i>m</i><i>ain </i><i>d</i><i>istribution </i><i>f</i><i>rame</i> is often found at the local exchange (Central Office) and is used to terminate the copper cables running from the customer's site. The frame allows these cables to be cross connected using patch cords to other equipment such as a concentrator or switch.<br/><br/> + -- Definition --<br/>Load coil.<br/><br/>-- Description --<br/>A <i>l</i><i>oad </i><i>c</i><i>oil</i> is a copper line conditioning equipment. Standard voice phone calls degrade noticeably when the copper portion of a phone line is greater than 18 kilofeet long. In order to restore call quality, load coils are inserted at specific intervals along the loop. <br/><br/>
    @@ -689,7 +631,7 @@ - Public
      multiplexer + Public
      mainDistributionFrame @@ -738,7 +680,7 @@ Notes: - -- Definition --<br/>Multiplexer (MUX).<br/><br/>-- Description --<br/>A <i>m</i><i>ultiplexer</i> is a device that combines multiple inputs into an aggregate signal to be transported via a single transmission channel. Fibers in cables are connected to signal ports in this equipment.<br/><br/> + -- Definition --<br/>Main distribution frame (MDF).<br/><br/>-- Description --<br/>A <i>m</i><i>ain </i><i>d</i><i>istribution </i><i>f</i><i>rame</i> is often found at the local exchange (Central Office) and is used to terminate the copper cables running from the customer's site. The frame allows these cables to be cross connected using patch cords to other equipment such as a concentrator or switch.<br/><br/>
    @@ -747,7 +689,7 @@ - Public
      noticeBoard + Public
      multiplexer @@ -790,7 +732,17 @@ -   +
    + + + + +
    + Notes: + + -- Definition --<br/>Multiplexer (MUX).<br/><br/>-- Description --<br/>A <i>m</i><i>ultiplexer</i> is a device that combines multiple inputs into an aggregate signal to be transported via a single transmission channel. Fibers in cables are connected to signal ports in this equipment.<br/><br/> +
    + @@ -1198,6 +1150,54 @@
    + + + + Public
      noticeBoard + + + + + Details: + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + +   + @@ -1214,8 +1214,8 @@ -
    Details: -
    +
    Details: +
    Values: true
    Default: true
    Description: Encode code list as externally managed dictionary (applies to ISO 19136:2007 encoding rule). Always true in INSPIRE.
    @@ -1227,8 +1227,8 @@ -
    Details: -
    +
    Details: +
    Values: none | narrower | any
    Default: any
    Description: This refers to extensions by a third party, not to extensions by the owner of the vocabulary; the owner will always be able to revise the vocabulary. I.e., if the value is 'none', the referenced vocabulary may not be extended by third parties; if the value is 'narrower', the vocabulary may be extended by narrower terms that have an existing term as a parent; if the value is 'any', the vocabulary may be extended by additional terms on any level. This value must be 'all', empty or missing, if the value 'vocabulary' is empty or missing; in this case any vocabulary may be used.
    @@ -1240,8 +1240,8 @@ -
    Details: -
    +
    Details: +
    Description: URI of the vocabulary/code list in the INSPIRE code list registry or in some external registry. The value has to be provided, if an online version of the vocabulary exists.
    @@ -1253,8 +1253,8 @@ -
    Details: -
    +
    Details: +
    Values: iso19136_2007 | iso19139_2007 | iso19136_2007_INSPIRE_Extensions
    Default: iso19136_2007_INSPIRE_Extensions
    Description: XML Schema encoding rule to apply
    diff --git a/approved/html/EARoot/EA2/EA3/EA20/EA3/EA5/EA9319.htm b/approved/html/EARoot/EA2/EA3/EA20/EA3/EA5/EA9319.htm index e7e82ac6c..c56c4c2c0 100644 --- a/approved/html/EARoot/EA2/EA3/EA20/EA3/EA5/EA9319.htm +++ b/approved/html/EARoot/EA2/EA3/EA20/EA3/EA5/EA9319.htm @@ -115,38 +115,38 @@ - Details: + Details: - + - + - + - + - + - + - + - + @@ -181,8 +181,8 @@ @@ -428,7 +390,7 @@ Notes:
    -
    Details: -
    +
    Details: +
    Values: false
    Default: false
    Description: Create a property type that requires that the instance is encoded inline (applies to ISO 19136:2007 encoding rule). Always set to false in INSPIRE.
    @@ -194,8 +194,8 @@
    -
    Details: -
    +
    Details: +
    Values: true | false
    Default: false
    Description: Identifies the feature type as a mixin type that will not be encoded as a separate element/type in the GML encoding.
    @@ -207,8 +207,8 @@
    -
    Details: -
    +
    Details: +
    Default: FIXME
    Description: URN reference to the feature concept in the INSPIRE Feature Concept Dictionary Register
    @@ -220,8 +220,8 @@
    -
    Details: -
    +
    Details: +
    Values: true | false
    Default: false
    Description: Identifies the feature type as a feature collection.
    @@ -233,8 +233,8 @@
    -
    Details: -
    +
    Details: +
    Values: false
    Default: false
    Description: Surpress creation of a standard property type that supports inline or by-reference encoding (applies to ISO 19136:2007 encoding rule). Always set to false in INSPIRE.
    @@ -246,8 +246,8 @@
    -
    Details: -
    +
    Details: +
    Values: iso19136_2007 | iso19139_2007 | iso19136_2007_INSPIRE_Extensions
    Default: iso19136_2007_INSPIRE_Extensions
    Description: XML Schema encoding rule to apply
    @@ -269,8 +269,8 @@
    -
    Details: -
    +
    Details: +
     
    diff --git a/approved/html/EARoot/EA2/EA3/EA20/EA3/EA5/EA9320.htm b/approved/html/EARoot/EA2/EA3/EA20/EA3/EA5/EA9320.htm index 72d8adb55..6a1b9b3bc 100644 --- a/approved/html/EARoot/EA2/EA3/EA20/EA3/EA5/EA9320.htm +++ b/approved/html/EARoot/EA2/EA3/EA20/EA3/EA5/EA9320.htm @@ -113,38 +113,38 @@
    - Details: + Details: - + - + - + - + - + - + - + - + @@ -171,38 +171,38 @@ @@ -370,7 +332,7 @@ Notes:
    - Details: + Details: - + - + - + - + - + - + - + - + @@ -224,43 +224,43 @@ @@ -312,7 +274,7 @@ Notes:
    - Public
      other + Public
      twistedPair
    - Details: + Details: - + - + - + - + - + - + - + - + @@ -273,7 +273,7 @@ Notes:
    - -- Definition --<br/>Other.<br/><br/> + -- Definition --<br/>Twisted pair (copper) cable.<br/><br/>-- Description --<br/>A <i>c</i><i>opper </i><i>c</i><i>able</i> is a group of metallic conductors (copper wires) bundled together that are capable of carrying voice and data transmissions. The copper wires are bound together, usually with a protective sheath, a strength member, and insulation between individual conductors and the entire group.<br/><br/>
    @@ -282,43 +282,43 @@
    - Public
      twistedPair + Public
      other
    - Details: + Details: - + - + - + - + - + - + - + - + @@ -331,7 +331,7 @@ Notes:
    - -- Definition --<br/>Twisted pair (copper) cable.<br/><br/>-- Description --<br/>A <i>c</i><i>opper </i><i>c</i><i>able</i> is a group of metallic conductors (copper wires) bundled together that are capable of carrying voice and data transmissions. The copper wires are bound together, usually with a protective sheath, a strength member, and insulation between individual conductors and the entire group.<br/><br/> + -- Definition --<br/>Other.<br/><br/>
    @@ -353,8 +353,8 @@
    -
    Details: -
    +
    Details: +
    Values: true
    Default: true
    Description: Encode code list as externally managed dictionary (applies to ISO 19136:2007 encoding rule). Always true in INSPIRE.
    @@ -366,8 +366,8 @@
    -
    Details: -
    +
    Details: +
    Description: URI of the vocabulary/code list in the INSPIRE code list registry or in some external registry. The value has to be provided, if an online version of the vocabulary exists.
    @@ -379,8 +379,8 @@
    -
    Details: -
    +
    Details: +
    Values: iso19136_2007 | iso19139_2007 | iso19136_2007_INSPIRE_Extensions
    Default: iso19136_2007_INSPIRE_Extensions
    Description: XML Schema encoding rule to apply
    diff --git a/approved/html/EARoot/EA2/EA3/EA20/EA3/EA6/EA9322.png b/approved/html/EARoot/EA2/EA3/EA20/EA3/EA6/EA9322.png index 7f353f1ef..0ea129d1a 100644 Binary files a/approved/html/EARoot/EA2/EA3/EA20/EA3/EA6/EA9322.png and b/approved/html/EARoot/EA2/EA3/EA20/EA3/EA6/EA9322.png differ diff --git a/approved/html/EARoot/EA2/EA3/EA20/EA3/EA6/EA9323.htm b/approved/html/EARoot/EA2/EA3/EA20/EA3/EA6/EA9323.htm index 91241c016..ad477bc88 100644 --- a/approved/html/EARoot/EA2/EA3/EA20/EA3/EA6/EA9323.htm +++ b/approved/html/EARoot/EA2/EA3/EA20/EA3/EA6/EA9323.htm @@ -112,8 +112,8 @@
    -
    Details: -
    +
    Details: +
    Default: FIXME
    Description: Target XML namespace of the application schema
    @@ -125,8 +125,8 @@
    -
    Details: -
    +
    Details: +
    Default: FIXME
    Description: Current version of the application schema
    @@ -138,8 +138,8 @@
    -
    Details: -
    +
    Details: +
    Default: FIXME
    Description: Namespace prefix to be used as short form of the target namespace
    @@ -151,8 +151,8 @@
    -
    Details: -
    +
    Details: +
    Default: FIXME
    Description: Name of an XML Schema document to create representing the content of this package
    @@ -164,8 +164,8 @@
    -
    Details: -
    +
    Details: +
    Values: iso19136_2007 | iso19139_2007 | iso19136_2007_INSPIRE_Extensions
    Default: iso19136_2007_INSPIRE_Extensions
    Description: XML Schema encoding rule to apply
    diff --git a/approved/html/EARoot/EA2/EA3/EA20/EA3/EA6/EA9324.htm b/approved/html/EARoot/EA2/EA3/EA20/EA3/EA6/EA9324.htm index f5b3d8c1c..836bb46a8 100644 --- a/approved/html/EARoot/EA2/EA3/EA20/EA3/EA6/EA9324.htm +++ b/approved/html/EARoot/EA2/EA3/EA20/EA3/EA6/EA9324.htm @@ -113,8 +113,8 @@
    -
    Details: -
    +
    Details: +
    Values: true
    Default: true
    Description: Encode code list as externally managed dictionary (applies to ISO 19136:2007 encoding rule). Always true in INSPIRE.
    @@ -126,8 +126,8 @@
    -
    Details: -
    +
    Details: +
    Values: none | narrower | any
    Default: any
    Description: This refers to extensions by a third party, not to extensions by the owner of the vocabulary; the owner will always be able to revise the vocabulary. I.e., if the value is 'none', the referenced vocabulary may not be extended by third parties; if the value is 'narrower', the vocabulary may be extended by narrower terms that have an existing term as a parent; if the value is 'any', the vocabulary may be extended by additional terms on any level. This value must be 'all', empty or missing, if the value 'vocabulary' is empty or missing; in this case any vocabulary may be used.
    @@ -139,8 +139,8 @@
    -
    Details: -
    +
    Details: +
    Description: URI of the vocabulary/code list in the INSPIRE code list registry or in some external registry. The value has to be provided, if an online version of the vocabulary exists.
    @@ -152,8 +152,8 @@
    -
    Details: -
    +
    Details: +
    Values: iso19136_2007 | iso19139_2007 | iso19136_2007_INSPIRE_Extensions
    Default: iso19136_2007_INSPIRE_Extensions
    Description: XML Schema encoding rule to apply
    diff --git a/approved/html/EARoot/EA2/EA3/EA20/EA3/EA6/EA9325.htm b/approved/html/EARoot/EA2/EA3/EA20/EA3/EA6/EA9325.htm index 262ef2f7a..078fbf5a3 100644 --- a/approved/html/EARoot/EA2/EA3/EA20/EA3/EA6/EA9325.htm +++ b/approved/html/EARoot/EA2/EA3/EA20/EA3/EA6/EA9325.htm @@ -114,38 +114,38 @@
    - Details: + Details: - + - + - + - + - + - + - + - + @@ -180,8 +180,8 @@ - - - - - @@ -215,7 +167,7 @@ @@ -258,12 +210,22 @@
    -
    Details: -
    +
    Details: +
    Values: false
    Default: false
    Description: Create a property type that requires that the instance is encoded inline (applies to ISO 19136:2007 encoding rule). Always set to false in INSPIRE.
    @@ -193,8 +193,8 @@
    -
    Details: -
    +
    Details: +
    Values: true | false
    Default: false
    Description: Identifies the feature type as a mixin type that will not be encoded as a separate element/type in the GML encoding.
    @@ -206,8 +206,8 @@
    -
    Details: -
    +
    Details: +
    Default: FIXME
    Description: URN reference to the feature concept in the INSPIRE Feature Concept Dictionary Register
    @@ -219,8 +219,8 @@
    -
    Details: -
    +
    Details: +
    Values: true | false
    Default: false
    Description: Identifies the feature type as a feature collection.
    @@ -232,8 +232,8 @@
    -
    Details: -
    +
    Details: +
    Values: false
    Default: false
    Description: Surpress creation of a standard property type that supports inline or by-reference encoding (applies to ISO 19136:2007 encoding rule). Always set to false in INSPIRE.
    @@ -245,8 +245,8 @@
    -
    Details: -
    +
    Details: +
    Values: iso19136_2007 | iso19139_2007 | iso19136_2007_INSPIRE_Extensions
    Default: iso19136_2007_INSPIRE_Extensions
    Description: XML Schema encoding rule to apply
    diff --git a/approved/html/EARoot/EA2/EA3/EA20/EA3/EA7/EA9327.png b/approved/html/EARoot/EA2/EA3/EA20/EA3/EA7/EA9327.png index d674a23f1..82450854e 100644 Binary files a/approved/html/EARoot/EA2/EA3/EA20/EA3/EA7/EA9327.png and b/approved/html/EARoot/EA2/EA3/EA20/EA3/EA7/EA9327.png differ diff --git a/approved/html/EARoot/EA2/EA3/EA20/EA3/EA7/EA9328.htm b/approved/html/EARoot/EA2/EA3/EA20/EA3/EA7/EA9328.htm index 1b1de2d29..845be47bd 100644 --- a/approved/html/EARoot/EA2/EA3/EA20/EA3/EA7/EA9328.htm +++ b/approved/html/EARoot/EA2/EA3/EA20/EA3/EA7/EA9328.htm @@ -112,8 +112,8 @@
    -
    Details: -
    +
    Details: +
    Default: FIXME
    Description: Target XML namespace of the application schema
    @@ -125,8 +125,8 @@
    -
    Details: -
    +
    Details: +
    Default: FIXME
    Description: Current version of the application schema
    @@ -138,8 +138,8 @@
    -
    Details: -
    +
    Details: +
    Default: FIXME
    Description: Namespace prefix to be used as short form of the target namespace
    @@ -151,8 +151,8 @@
    -
    Details: -
    +
    Details: +
    Default: FIXME
    Description: Name of an XML Schema document to create representing the content of this package
    @@ -164,8 +164,8 @@
    -
    Details: -
    +
    Details: +
    Values: iso19136_2007 | iso19139_2007 | iso19136_2007_INSPIRE_Extensions
    Default: iso19136_2007_INSPIRE_Extensions
    Description: XML Schema encoding rule to apply
    diff --git a/approved/html/EARoot/EA2/EA3/EA20/EA3/EA7/EA9329.htm b/approved/html/EARoot/EA2/EA3/EA20/EA3/EA7/EA9329.htm index 225fd24ce..3b9d8c0d9 100644 --- a/approved/html/EARoot/EA2/EA3/EA20/EA3/EA7/EA9329.htm +++ b/approved/html/EARoot/EA2/EA3/EA20/EA3/EA7/EA9329.htm @@ -108,54 +108,6 @@
    Attribute
    - Public
      airRelieveValve -
    - Details: - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    - - -   - -
    Public
      anode
    - Public
      checkValve + Public
      clearWell
    -   +
    + + + + +
    + Notes: + + -- Definition --<br/>Clear well.<br/><br/>-- Description --<br/>A <i>clear well </i>is an enclosed tank that is associated with a treatment plant. Clear wells are used to store filtered water of sufficient capacity to prevent the need to vary the filtration rate with variations in demand. Clear wells are also used to provide chlorine contact time for disinfection. Pumps are<br/>used to move the water from the clear well to the treatment plant or to a distribution system.<br/><br/> +
    +
    - Public
      clearWell + Public
      controlValve
    - -- Definition --<br/>Clear well.<br/><br/>-- Description --<br/>A <i>clear well </i>is an enclosed tank that is associated with a treatment plant. Clear wells are used to store filtered water of sufficient capacity to prevent the need to vary the filtration rate with variations in demand. Clear wells are also used to provide chlorine contact time for disinfection. Pumps are<br/>used to move the water from the clear well to the treatment plant or to a distribution system.<br/><br/> + -- Definition --<br/>Control valve.<br/><br/>-- Description --<br/><i>Control valves </i>represent set of valves that operate in special ways. There are three fundamental types of control valves: backflow control, air control, and altitude.<br/><br/>
    @@ -321,7 +283,7 @@
    - Public
      controlValve + Public
      fitting
    - -- Definition --<br/>Control valve.<br/><br/>-- Description --<br/><i>Control valves </i>represent set of valves that operate in special ways. There are three fundamental types of control valves: backflow control, air control, and altitude.<br/><br/> + -- Definition --<br/>Fitting.<br/><br/>-- Description --<br/>The <i>fitting </i>represents the facility found at the joint between two lines where a transition of some sort must occur. The basic connecting devices between pipes; fittings are rarely used to control the flow of water through the network. <br/><br/>
    @@ -379,7 +341,7 @@
    - Public
      fitting + Public
      hydrant
    - -- Definition --<br/>Fitting.<br/><br/>-- Description --<br/>The <i>fitting </i>represents the facility found at the joint between two lines where a transition of some sort must occur. The basic connecting devices between pipes; fittings are rarely used to control the flow of water through the network. <br/><br/> + -- Definition --<br/>Hydrant.<br/><br/>-- Description --<br/>A <i>hydrant </i>enables fire fighters to attach fire hoses to the distribution network. Hydrants also have secondary uses that include flushing main lines and laterals, filling tank trucks, and providing a temporary water source for construction jobs.<br/><br/>
    @@ -437,7 +399,7 @@ - Public
      fountain + Public
      junction @@ -480,12 +442,22 @@ -   +
    + + + + +
    + Notes: + + -- Definition --<br/>Junction.<br/><br/>-- Description --<br/>The <i>junction </i>is a water network node where two or more pipes combine, or a point where water consumption is allocated and defined as demand.<br/><br/> +
    + - Public
      hydrant + Public
      lateralPoint @@ -534,7 +506,7 @@ Notes: - -- Definition --<br/>Hydrant.<br/><br/>-- Description --<br/>A <i>hydrant </i>enables fire fighters to attach fire hoses to the distribution network. Hydrants also have secondary uses that include flushing main lines and laterals, filling tank trucks, and providing a temporary water source for construction jobs.<br/><br/> + -- Definition --<br/>Lateral point.<br/><br/>-- Description --<br/>A <i>lateral point </i>represents the location of the connection between the customer and the distribution system.<br/><br/>
    @@ -543,7 +515,7 @@ - Public
      junction + Public
      meter @@ -592,7 +564,7 @@ Notes: - -- Definition --<br/>Junction.<br/><br/>-- Description --<br/>The <i>junction </i>is a water network node where two or more pipes combine, or a point where water consumption is allocated and defined as demand.<br/><br/> + -- Definition --<br/>Meter.<br/><br/>-- Description --<br/>A <i>meter </i>is a facility that is used to measure water consumption (volume). Being a facility, a meter plays the role of a junction on the active network. <br/><br/>NOTE Meters are also much like hydrants as they also have an associated warehouse object, namely, a WarehouseMeter.<br/><br/>
    @@ -601,7 +573,7 @@ - Public
      lateralPoint + Public
      pump @@ -650,7 +622,7 @@ Notes: - -- Definition --<br/>Lateral point.<br/><br/>-- Description --<br/>A <i>lateral point </i>represents the location of the connection between the customer and the distribution system.<br/><br/> + -- Definition --<br/>Pump.<br/><br/>-- Description --<br/>A <i>pump </i>is a piece of equipment that moves, compresses, or alters the pressure of a fluid, such as water or air, being conveyed through a natural or artificial channel. <br/><br/>NOTE Pump types include AxialFlow, Centrifugal, Jet, Reciprocating, Rotary,<br/>Screw, and Turbine.<br/><br/>
    @@ -659,7 +631,7 @@ - Public
      meter + Public
      pumpStation @@ -708,7 +680,7 @@ Notes: - -- Definition --<br/>Meter.<br/><br/>-- Description --<br/>A <i>meter </i>is a facility that is used to measure water consumption (volume). Being a facility, a meter plays the role of a junction on the active network. <br/><br/>NOTE Meters are also much like hydrants as they also have an associated warehouse object, namely, a WarehouseMeter.<br/><br/> + -- Definition --<br/>Pump station.<br/><br/>-- Description --<br/>A <i>pump station </i>is a facility for pumping water on the network to transport to another part of the network (lift pump). <br/><br/>
    @@ -717,7 +689,7 @@ - Public
      pressureController + Public
      samplingStation @@ -760,12 +732,22 @@ -   +
    + + + + +
    + Notes: + + -- Definition --<br/>Sampling station.<br/><br/>-- Description --<br/>A <i>sampling station </i>is a facility that is used for collecting water samples. Sampling stations may be dedicated sampling devices, or they may be other devices of the system where a sample may be obtained.<br/><br/> +
    + - Public
      pressureRelieveValve + Public
      scadaSensor @@ -808,12 +790,22 @@ -   +
    + + + + +
    + Notes: + + -- Definition --<br/>SCADA sensor.<br/><br/>-- Description --<br/>The <i>SCADA sensor </i>is a feature that’s used to remotely measure the status of network components as part of a supervisory control and data acquisition (SCADA) system. SCADA systems provide alarms, responses, data acquisition, and control for collection and distribution systems. Operators use the SCADA system to monitor and adjust processes and facilities.<br/><br/> +
    + - Public
      pump + Public
      storageBasin @@ -862,7 +854,7 @@ Notes: - -- Definition --<br/>Pump.<br/><br/>-- Description --<br/>A <i>pump </i>is a piece of equipment that moves, compresses, or alters the pressure of a fluid, such as water or air, being conveyed through a natural or artificial channel. <br/><br/>NOTE Pump types include AxialFlow, Centrifugal, Jet, Reciprocating, Rotary,<br/>Screw, and Turbine.<br/><br/> + -- Definition --<br/>Storage basin.<br/><br/>-- Description --<br/>A <i>storage basin</i> represents artificially enclosed area of a river or harbor designed so that the water level remains unaffected by tidal changes.<br/><br/>
    @@ -871,7 +863,7 @@ - Public
      pumpStation + Public
      storageFacility @@ -920,7 +912,7 @@ Notes: - -- Definition --<br/>Pump station.<br/><br/>-- Description --<br/>A <i>pump station </i>is a facility for pumping water on the network to transport to another part of the network (lift pump). <br/><br/> + -- Definition --<br/>Enclosed storage facility.<br/><br/>
    @@ -929,7 +921,7 @@ - Public
      recoilCheckValve + Public
      surgeReliefTank @@ -972,12 +964,22 @@ -   +
    + + + + +
    + Notes: + + -- Definition --<br/>Surge relief tank.<br/><br/>-- Description --<br/>A <i>surge relief tank </i>is a piece of equipment used to absorb pressure increases in the water system. Surge relief tanks provide a buffer against throttling within the system by accepting water into a tank through a pressure valve.<br/><br/> +
    + - Public
      samplingStation + Public
      systemValve @@ -1026,7 +1028,7 @@ Notes: - -- Definition --<br/>Sampling station.<br/><br/>-- Description --<br/>A <i>sampling station </i>is a facility that is used for collecting water samples. Sampling stations may be dedicated sampling devices, or they may be other devices of the system where a sample may be obtained.<br/><br/> + -- Definition --<br/>System valve.<br/><br/>-- Description --<br/>A <i>system valve </i>is a facility that is fitted to a pipeline or orifice in which the closure member is either rotated or moved transversely or longitudinally in the waterway so as to control or stop the flow. System valves are used to regulate pressure, isolate, throttle flow, prevent backflow, and relieve<br/>pressure.<br/><br/>NOTE System valve types include Gate, Plug, Ball, Cone, and Butterfly. These specific types may be classified as isolation valves.<br/><br/>
    @@ -1035,7 +1037,7 @@ - Public
      scadaSensor + Public
      thrustProtection @@ -1084,7 +1086,7 @@ Notes: - -- Definition --<br/>SCADA sensor.<br/><br/>-- Description --<br/>The <i>SCADA sensor </i>is a feature that’s used to remotely measure the status of network components as part of a supervisory control and data acquisition (SCADA) system. SCADA systems provide alarms, responses, data acquisition, and control for collection and distribution systems. Operators use the SCADA system to monitor and adjust processes and facilities.<br/><br/> + -- Definition --<br/>Thrust protection.<br/><br/>-- Description --<br/>The <i>thrust protection </i>represents a type of line protector that’s used to prevent pipe movement. Thrust protection is commonly implemented as thrust blocks (masses of concrete material) that are placed at bends and around valve structures. <br/><br/>NOTE The types of thrust protection include Anchor,<br/>Blocking, Deadman, and Kicker.<br/><br/>
    @@ -1093,7 +1095,7 @@ - Public
      storageBasin + Public
      treatmentPlant @@ -1142,7 +1144,7 @@ Notes: - -- Definition --<br/>Storage basin.<br/><br/>-- Description --<br/>A <i>storage basin</i> represents artificially enclosed area of a river or harbor designed so that the water level remains unaffected by tidal changes.<br/><br/> + -- Definition --<br/>Treatment plant.<br/><br/>
    @@ -1151,7 +1153,7 @@ - Public
      storageFacility + Public
      well @@ -1200,7 +1202,7 @@ Notes: - -- Definition --<br/>Enclosed storage facility.<br/><br/> + -- Definition --<br/>Production well.<br/><br/>
    @@ -1209,7 +1211,7 @@ - Public
      surgeReliefTank + Public
      pressureRelieveValve @@ -1252,22 +1254,12 @@ -
    - - - - -
    - Notes: - - -- Definition --<br/>Surge relief tank.<br/><br/>-- Description --<br/>A <i>surge relief tank </i>is a piece of equipment used to absorb pressure increases in the water system. Surge relief tanks provide a buffer against throttling within the system by accepting water into a tank through a pressure valve.<br/><br/> -
    - +   - Public
      systemValve + Public
      airRelieveValve @@ -1310,22 +1302,12 @@ -
    - - - - -
    - Notes: - - -- Definition --<br/>System valve.<br/><br/>-- Description --<br/>A <i>system valve </i>is a facility that is fitted to a pipeline or orifice in which the closure member is either rotated or moved transversely or longitudinally in the waterway so as to control or stop the flow. System valves are used to regulate pressure, isolate, throttle flow, prevent backflow, and relieve<br/>pressure.<br/><br/>NOTE System valve types include Gate, Plug, Ball, Cone, and Butterfly. These specific types may be classified as isolation valves.<br/><br/> -
    - +   - Public
      thrustProtection + Public
      checkValve @@ -1368,22 +1350,12 @@ -
    - - - - -
    - Notes: - - -- Definition --<br/>Thrust protection.<br/><br/>-- Description --<br/>The <i>thrust protection </i>represents a type of line protector that’s used to prevent pipe movement. Thrust protection is commonly implemented as thrust blocks (masses of concrete material) that are placed at bends and around valve structures. <br/><br/>NOTE The types of thrust protection include Anchor,<br/>Blocking, Deadman, and Kicker.<br/><br/> -
    - +   - Public
      treatmentPlant + Public
      waterExhaustPoint @@ -1426,22 +1398,12 @@ -
    - - - - -
    - Notes: - - -- Definition --<br/>Treatment plant.<br/><br/> -
    - +   - Public
      vent + Public
      waterServicePoint @@ -1489,7 +1451,7 @@ - Public
      waterDischargePoint + Public
      fountain @@ -1537,7 +1499,7 @@ - Public
      waterExhaustPoint + Public
      pressureController @@ -1585,7 +1547,7 @@ - Public
      waterServicePoint + Public
      vent @@ -1633,7 +1595,7 @@ - Public
      well + Public
      recoilCheckValve @@ -1676,17 +1638,55 @@ -
    - - - - -
    - Notes: - - -- Definition --<br/>Production well.<br/><br/> -
    - +   + + + + + Public
      waterDischargePoint + + + + + Details: + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + +   @@ -1704,8 +1704,8 @@ -
    Details: -
    +
    Details: +
    Values: true
    Default: true
    Description: Encode code list as externally managed dictionary (applies to ISO 19136:2007 encoding rule). Always true in INSPIRE.
    @@ -1717,8 +1717,8 @@ -
    Details: -
    +
    Details: +
    Values: none | narrower | any
    Default: any
    Description: This refers to extensions by a third party, not to extensions by the owner of the vocabulary; the owner will always be able to revise the vocabulary. I.e., if the value is 'none', the referenced vocabulary may not be extended by third parties; if the value is 'narrower', the vocabulary may be extended by narrower terms that have an existing term as a parent; if the value is 'any', the vocabulary may be extended by additional terms on any level. This value must be 'all', empty or missing, if the value 'vocabulary' is empty or missing; in this case any vocabulary may be used.
    @@ -1730,8 +1730,8 @@ -
    Details: -
    +
    Details: +
    Description: URI of the vocabulary/code list in the INSPIRE code list registry or in some external registry. The value has to be provided, if an online version of the vocabulary exists.
    @@ -1743,8 +1743,8 @@ -
    Details: -
    +
    Details: +
    Values: iso19136_2007 | iso19139_2007 | iso19136_2007_INSPIRE_Extensions
    Default: iso19136_2007_INSPIRE_Extensions
    Description: XML Schema encoding rule to apply
    diff --git a/approved/html/EARoot/EA2/EA3/EA20/EA3/EA7/EA9330.htm b/approved/html/EARoot/EA2/EA3/EA20/EA3/EA7/EA9330.htm index a86572466..64f6fb13a 100644 --- a/approved/html/EARoot/EA2/EA3/EA20/EA3/EA7/EA9330.htm +++ b/approved/html/EARoot/EA2/EA3/EA20/EA3/EA7/EA9330.htm @@ -114,38 +114,38 @@ - Details: + Details: - + - + - + - + - + - + - + - + @@ -180,8 +180,8 @@ @@ -204,7 +204,7 @@ @@ -252,7 +252,7 @@ @@ -300,7 +300,7 @@ @@ -348,7 +348,7 @@ @@ -396,7 +396,7 @@ @@ -444,7 +444,7 @@ @@ -492,7 +492,7 @@ @@ -540,7 +540,7 @@ @@ -588,7 +588,7 @@ diff --git a/approved/html/EARoot/EA2/EA3/EA4/EA1/EA8300.htm b/approved/html/EARoot/EA2/EA3/EA4/EA1/EA8300.htm index d52f8f795..5be003f3b 100644 --- a/approved/html/EARoot/EA2/EA3/EA4/EA1/EA8300.htm +++ b/approved/html/EARoot/EA2/EA3/EA4/EA1/EA8300.htm @@ -111,7 +111,7 @@ @@ -129,7 +129,7 @@ - + @@ -160,7 +160,7 @@ Notes:
    -
    Details: -
    +
    Details: +
    Values: false
    Default: false
    Description: Create a property type that requires that the instance is encoded inline (applies to ISO 19136:2007 encoding rule). Always set to false in INSPIRE.
    @@ -193,8 +193,8 @@
    -
    Details: -
    +
    Details: +
    Values: true | false
    Default: false
    Description: Identifies the feature type as a mixin type that will not be encoded as a separate element/type in the GML encoding.
    @@ -206,8 +206,8 @@
    -
    Details: -
    +
    Details: +
    Default: FIXME
    Description: URN reference to the feature concept in the INSPIRE Feature Concept Dictionary Register
    @@ -219,8 +219,8 @@
    -
    Details: -
    +
    Details: +
    Values: true | false
    Default: false
    Description: Identifies the feature type as a feature collection.
    @@ -232,8 +232,8 @@
    -
    Details: -
    +
    Details: +
    Values: false
    Default: false
    Description: Surpress creation of a standard property type that supports inline or by-reference encoding (applies to ISO 19136:2007 encoding rule). Always set to false in INSPIRE.
    @@ -245,8 +245,8 @@
    -
    Details: -
    +
    Details: +
    Values: iso19136_2007 | iso19139_2007 | iso19136_2007_INSPIRE_Extensions
    Default: iso19136_2007_INSPIRE_Extensions
    Description: XML Schema encoding rule to apply
    diff --git a/approved/html/EARoot/EA2/EA3/EA20/EA3/EA7/EA9331.htm b/approved/html/EARoot/EA2/EA3/EA20/EA3/EA7/EA9331.htm index dc1f6b47a..af4171dbf 100644 --- a/approved/html/EARoot/EA2/EA3/EA20/EA3/EA7/EA9331.htm +++ b/approved/html/EARoot/EA2/EA3/EA20/EA3/EA7/EA9331.htm @@ -113,38 +113,38 @@
    - Details: + Details: - + - + - + - + - + - + - + - + @@ -171,38 +171,38 @@ @@ -217,7 +217,7 @@ Notes:
    - Details: + Details: - + - + - + - + - + - + - + - + @@ -229,38 +229,38 @@ @@ -159,7 +159,7 @@ Notes:
    - Details: + Details: - + - + - + - + - + - + - + - + @@ -287,38 +287,38 @@ @@ -214,7 +214,7 @@ Notes:
    - Details: + Details: - + - + - + - + - + - + - + - + @@ -353,8 +353,8 @@ @@ -156,7 +156,7 @@ Notes:
    -
    Details: -
    +
    Details: +
    Values: true
    Default: true
    Description: Encode code list as externally managed dictionary (applies to ISO 19136:2007 encoding rule). Always true in INSPIRE.
    @@ -366,8 +366,8 @@
    -
    Details: -
    +
    Details: +
    Values: none | narrower | any
    Default: any
    Description: This refers to extensions by a third party, not to extensions by the owner of the vocabulary; the owner will always be able to revise the vocabulary. I.e., if the value is 'none', the referenced vocabulary may not be extended by third parties; if the value is 'narrower', the vocabulary may be extended by narrower terms that have an existing term as a parent; if the value is 'any', the vocabulary may be extended by additional terms on any level. This value must be 'all', empty or missing, if the value 'vocabulary' is empty or missing; in this case any vocabulary may be used.
    @@ -379,8 +379,8 @@
    -
    Details: -
    +
    Details: +
    Description: URI of the vocabulary/code list in the INSPIRE code list registry or in some external registry. The value has to be provided, if an online version of the vocabulary exists.
    @@ -392,8 +392,8 @@
    -
    Details: -
    +
    Details: +
    Values: iso19136_2007 | iso19139_2007 | iso19136_2007_INSPIRE_Extensions
    Default: iso19136_2007_INSPIRE_Extensions
    Description: XML Schema encoding rule to apply
    diff --git a/approved/html/EARoot/EA2/EA3/EA20/EA3/EA9257.png b/approved/html/EARoot/EA2/EA3/EA20/EA3/EA9257.png index 404e6531d..712dff0ef 100644 Binary files a/approved/html/EARoot/EA2/EA3/EA20/EA3/EA9257.png and b/approved/html/EARoot/EA2/EA3/EA20/EA3/EA9257.png differ diff --git a/approved/html/EARoot/EA2/EA3/EA20/EA3/EA9259.png b/approved/html/EARoot/EA2/EA3/EA20/EA3/EA9259.png index 418a267b1..8e06ba7e3 100644 Binary files a/approved/html/EARoot/EA2/EA3/EA20/EA3/EA9259.png and b/approved/html/EARoot/EA2/EA3/EA20/EA3/EA9259.png differ diff --git a/approved/html/EARoot/EA2/EA3/EA20/EA3/EA9261.png b/approved/html/EARoot/EA2/EA3/EA20/EA3/EA9261.png index 8873f53db..a5bd47279 100644 Binary files a/approved/html/EARoot/EA2/EA3/EA20/EA3/EA9261.png and b/approved/html/EARoot/EA2/EA3/EA20/EA3/EA9261.png differ diff --git a/approved/html/EARoot/EA2/EA3/EA20/EA3/EA9264.htm b/approved/html/EARoot/EA2/EA3/EA20/EA3/EA9264.htm index 4e8d40615..4e072d202 100644 --- a/approved/html/EARoot/EA2/EA3/EA20/EA3/EA9264.htm +++ b/approved/html/EARoot/EA2/EA3/EA20/EA3/EA9264.htm @@ -112,8 +112,8 @@
    -
    Details: -
    +
    Details: +
    Values: iso19136_2007 | iso19139_2007 | iso19136_2007_INSPIRE_Extensions
    Default: iso19136_2007_INSPIRE_Extensions
    Description: XML Schema encoding rule to apply
    diff --git a/approved/html/EARoot/EA2/EA3/EA20/EA3/EA9265.htm b/approved/html/EARoot/EA2/EA3/EA20/EA3/EA9265.htm index 5a6bc90bb..3ce0e9e0d 100644 --- a/approved/html/EARoot/EA2/EA3/EA20/EA3/EA9265.htm +++ b/approved/html/EARoot/EA2/EA3/EA20/EA3/EA9265.htm @@ -112,8 +112,8 @@
    -
    Details: -
    +
    Details: +
    Default: FIXME
    Description: Target XML namespace of the application schema
    @@ -125,8 +125,8 @@
    -
    Details: -
    +
    Details: +
    Default: FIXME
    Description: Current version of the application schema
    @@ -138,8 +138,8 @@
    -
    Details: -
    +
    Details: +
    Default: FIXME
    Description: Namespace prefix to be used as short form of the target namespace
    @@ -151,8 +151,8 @@
    -
    Details: -
    +
    Details: +
    Default: FIXME
    Description: Name of an XML Schema document to create representing the content of this package
    @@ -164,8 +164,8 @@
    -
    Details: -
    +
    Details: +
    Values: iso19136_2007 | iso19139_2007 | iso19136_2007_INSPIRE_Extensions
    Default: iso19136_2007_INSPIRE_Extensions
    Description: XML Schema encoding rule to apply
    diff --git a/approved/html/EARoot/EA2/EA3/EA20/EA3/EA9266.htm b/approved/html/EARoot/EA2/EA3/EA20/EA3/EA9266.htm index a978a6cac..b691cad9b 100644 --- a/approved/html/EARoot/EA2/EA3/EA20/EA3/EA9266.htm +++ b/approved/html/EARoot/EA2/EA3/EA20/EA3/EA9266.htm @@ -112,8 +112,8 @@
    -
    Details: -
    +
    Details: +
     
    @@ -124,8 +124,8 @@
    -
    Details: -
    +
    Details: +
    Default: FIXME
    Description: Current version of the application schema
    @@ -137,8 +137,8 @@
    -
    Details: -
    +
    Details: +
    Default: FIXME
    Description: Namespace prefix to be used as short form of the target namespace
    @@ -150,8 +150,8 @@
    -
    Details: -
    +
    Details: +
    Default: FIXME
    Description: Name of an XML Schema document to create representing the content of this package
    @@ -163,8 +163,8 @@
    -
    Details: -
    +
    Details: +
    Values: iso19136_2007 | iso19139_2007 | iso19136_2007_INSPIRE_Extensions
    Default: iso19136_2007_INSPIRE_Extensions
    Description: XML Schema encoding rule to apply
    diff --git a/approved/html/EARoot/EA2/EA3/EA20/EA3/EA9267.htm b/approved/html/EARoot/EA2/EA3/EA20/EA3/EA9267.htm index 6395fe28f..837173037 100644 --- a/approved/html/EARoot/EA2/EA3/EA20/EA3/EA9267.htm +++ b/approved/html/EARoot/EA2/EA3/EA20/EA3/EA9267.htm @@ -112,8 +112,8 @@
    -
    Details: -
    +
    Details: +
    Default: FIXME
    Description: Target XML namespace of the application schema
    @@ -125,8 +125,8 @@
    -
    Details: -
    +
    Details: +
    Default: FIXME
    Description: Current version of the application schema
    @@ -138,8 +138,8 @@
    -
    Details: -
    +
    Details: +
    Default: FIXME
    Description: Namespace prefix to be used as short form of the target namespace
    @@ -151,8 +151,8 @@
    -
    Details: -
    +
    Details: +
    Default: FIXME
    Description: Name of an XML Schema document to create representing the content of this package
    @@ -164,8 +164,8 @@
    -
    Details: -
    +
    Details: +
    Values: iso19136_2007 | iso19139_2007 | iso19136_2007_INSPIRE_Extensions
    Default: iso19136_2007_INSPIRE_Extensions
    Description: XML Schema encoding rule to apply
    diff --git a/approved/html/EARoot/EA2/EA3/EA20/EA3/EA9268.htm b/approved/html/EARoot/EA2/EA3/EA20/EA3/EA9268.htm index 20149e80c..94326e751 100644 --- a/approved/html/EARoot/EA2/EA3/EA20/EA3/EA9268.htm +++ b/approved/html/EARoot/EA2/EA3/EA20/EA3/EA9268.htm @@ -112,8 +112,8 @@
    -
    Details: -
    +
    Details: +
    Default: FIXME
    Description: Target XML namespace of the application schema
    @@ -125,8 +125,8 @@
    -
    Details: -
    +
    Details: +
    Default: FIXME
    Description: Current version of the application schema
    @@ -138,8 +138,8 @@
    -
    Details: -
    +
    Details: +
    Default: FIXME
    Description: Namespace prefix to be used as short form of the target namespace
    @@ -151,8 +151,8 @@
    -
    Details: -
    +
    Details: +
    Default: FIXME
    Description: Name of an XML Schema document to create representing the content of this package
    @@ -164,8 +164,8 @@
    -
    Details: -
    +
    Details: +
    Values: iso19136_2007 | iso19139_2007 | iso19136_2007_INSPIRE_Extensions
    Default: iso19136_2007_INSPIRE_Extensions
    Description: XML Schema encoding rule to apply
    diff --git a/approved/html/EARoot/EA2/EA3/EA20/EA3/EA9269.htm b/approved/html/EARoot/EA2/EA3/EA20/EA3/EA9269.htm index 6bb59e443..76a32e2f3 100644 --- a/approved/html/EARoot/EA2/EA3/EA20/EA3/EA9269.htm +++ b/approved/html/EARoot/EA2/EA3/EA20/EA3/EA9269.htm @@ -112,8 +112,8 @@
    -
    Details: -
    +
    Details: +
    Default: FIXME
    Description: Target XML namespace of the application schema
    @@ -125,8 +125,8 @@
    -
    Details: -
    +
    Details: +
    Default: FIXME
    Description: Current version of the application schema
    @@ -138,8 +138,8 @@
    -
    Details: -
    +
    Details: +
    Default: FIXME
    Description: Namespace prefix to be used as short form of the target namespace
    @@ -151,8 +151,8 @@
    -
    Details: -
    +
    Details: +
    Default: FIXME
    Description: Name of an XML Schema document to create representing the content of this package
    @@ -164,8 +164,8 @@
    -
    Details: -
    +
    Details: +
    Values: iso19136_2007 | iso19139_2007 | iso19136_2007_INSPIRE_Extensions
    Default: iso19136_2007_INSPIRE_Extensions
    Description: XML Schema encoding rule to apply
    diff --git a/approved/html/EARoot/EA2/EA3/EA20/EA3/EA9270.htm b/approved/html/EARoot/EA2/EA3/EA20/EA3/EA9270.htm index bde75cf9d..371d26951 100644 --- a/approved/html/EARoot/EA2/EA3/EA20/EA3/EA9270.htm +++ b/approved/html/EARoot/EA2/EA3/EA20/EA3/EA9270.htm @@ -112,8 +112,8 @@
    -
    Details: -
    +
    Details: +
    Default: FIXME
    Description: Target XML namespace of the application schema
    @@ -125,8 +125,8 @@
    -
    Details: -
    +
    Details: +
    Default: FIXME
    Description: Current version of the application schema
    @@ -138,8 +138,8 @@
    -
    Details: -
    +
    Details: +
    Default: FIXME
    Description: Namespace prefix to be used as short form of the target namespace
    @@ -151,8 +151,8 @@
    -
    Details: -
    +
    Details: +
    Default: FIXME
    Description: Name of an XML Schema document to create representing the content of this package
    @@ -164,8 +164,8 @@
    -
    Details: -
    +
    Details: +
    Values: iso19136_2007 | iso19139_2007 | iso19136_2007_INSPIRE_Extensions
    Default: iso19136_2007_INSPIRE_Extensions
    Description: XML Schema encoding rule to apply
    diff --git a/approved/html/EARoot/EA2/EA3/EA20/EA3/EA9271.htm b/approved/html/EARoot/EA2/EA3/EA20/EA3/EA9271.htm index 7ceadfe8d..20f74e7a6 100644 --- a/approved/html/EARoot/EA2/EA3/EA20/EA3/EA9271.htm +++ b/approved/html/EARoot/EA2/EA3/EA20/EA3/EA9271.htm @@ -112,8 +112,8 @@
    -
    Details: -
    +
    Details: +
    Default: FIXME
    Description: Target XML namespace of the application schema
    @@ -125,8 +125,8 @@
    -
    Details: -
    +
    Details: +
    Default: FIXME
    Description: Current version of the application schema
    @@ -138,8 +138,8 @@
    -
    Details: -
    +
    Details: +
    Default: FIXME
    Description: Namespace prefix to be used as short form of the target namespace
    @@ -151,8 +151,8 @@
    -
    Details: -
    +
    Details: +
    Default: FIXME
    Description: Name of an XML Schema document to create representing the content of this package
    @@ -164,8 +164,8 @@
    -
    Details: -
    +
    Details: +
    Values: iso19136_2007 | iso19139_2007 | iso19136_2007_INSPIRE_Extensions
    Default: iso19136_2007_INSPIRE_Extensions
    Description: XML Schema encoding rule to apply
    diff --git a/approved/html/EARoot/EA2/EA3/EA20/EA9231.htm b/approved/html/EARoot/EA2/EA3/EA20/EA9231.htm index 19031a3dd..544a1ac75 100644 --- a/approved/html/EARoot/EA2/EA3/EA20/EA9231.htm +++ b/approved/html/EARoot/EA2/EA3/EA20/EA9231.htm @@ -111,8 +111,8 @@
    -
    Details: -
    +
    Details: +
    Default: FIXME
    Description: Target XML namespace of the application schema
    @@ -124,8 +124,8 @@
    -
    Details: -
    +
    Details: +
    Default: FIXME
    Description: Current version of the application schema
    @@ -137,8 +137,8 @@
    -
    Details: -
    +
    Details: +
    Default: FIXME
    Description: Namespace prefix to be used as short form of the target namespace
    @@ -150,8 +150,8 @@
    -
    Details: -
    +
    Details: +
    Default: FIXME
    Description: Name of an XML Schema document to create representing the content of this package
    @@ -163,8 +163,8 @@
    -
    Details: -
    +
    Details: +
    Values: iso19136_2007 | iso19139_2007 | iso19136_2007_INSPIRE_Extensions
    Default: iso19136_2007_INSPIRE_Extensions
    Description: XML Schema encoding rule to apply
    diff --git a/approved/html/EARoot/EA2/EA3/EA20/EA9232.htm b/approved/html/EARoot/EA2/EA3/EA20/EA9232.htm index 039e91513..8585fb59e 100644 --- a/approved/html/EARoot/EA2/EA3/EA20/EA9232.htm +++ b/approved/html/EARoot/EA2/EA3/EA20/EA9232.htm @@ -111,8 +111,8 @@
    -
    Details: -
    +
    Details: +
    Default: FIXME
    Description: Target XML namespace of the application schema
    @@ -124,8 +124,8 @@
    -
    Details: -
    +
    Details: +
    Default: FIXME
    Description: Current version of the application schema
    @@ -137,8 +137,8 @@
    -
    Details: -
    +
    Details: +
    Default: FIXME
    Description: Namespace prefix to be used as short form of the target namespace
    @@ -150,8 +150,8 @@
    -
    Details: -
    +
    Details: +
    Default: FIXME
    Description: Name of an XML Schema document to create representing the content of this package
    @@ -163,8 +163,8 @@
    -
    Details: -
    +
    Details: +
    Values: iso19136_2007 | iso19139_2007 | iso19136_2007_INSPIRE_Extensions
    Default: iso19136_2007_INSPIRE_Extensions
    Description: XML Schema encoding rule to apply
    diff --git a/approved/html/EARoot/EA2/EA3/EA20/EA9233.htm b/approved/html/EARoot/EA2/EA3/EA20/EA9233.htm index 689926600..9c57ce25f 100644 --- a/approved/html/EARoot/EA2/EA3/EA20/EA9233.htm +++ b/approved/html/EARoot/EA2/EA3/EA20/EA9233.htm @@ -112,8 +112,8 @@
    -
    Details: -
    +
    Details: +
    Values: iso19136_2007 | iso19139_2007 | iso19136_2007_INSPIRE_Extensions
    Default: iso19136_2007_INSPIRE_Extensions
    Description: XML Schema encoding rule to apply
    diff --git a/approved/html/EARoot/EA2/EA3/EA3/EA1/EA8276.png b/approved/html/EARoot/EA2/EA3/EA3/EA1/EA8276.png index 1a50981e2..0089f0895 100644 Binary files a/approved/html/EARoot/EA2/EA3/EA3/EA1/EA8276.png and b/approved/html/EARoot/EA2/EA3/EA3/EA1/EA8276.png differ diff --git a/approved/html/EARoot/EA2/EA3/EA3/EA1/EA8283.htm b/approved/html/EARoot/EA2/EA3/EA3/EA1/EA8283.htm index 159d6e08c..94cb41102 100644 --- a/approved/html/EARoot/EA2/EA3/EA3/EA1/EA8283.htm +++ b/approved/html/EARoot/EA2/EA3/EA3/EA1/EA8283.htm @@ -107,7 +107,7 @@
    - Public AquacultureSpeciesValue
      aquaculture + Public LivestockSpeciesValue
      livestock
    - -- Name --<br/>aquaculture <br/><br/>-- Definition --<br/>Define the presence of aquaculture species in the site.<br/><br/>-- Description --<br/>Aquaculture species  are listed in aquacultureSpecies attribute.<br/>The allowed values for this code list comprise only the values specified in the February 2012 version of the ASFIS (Aquatic Sciences and Fisheries Information System) List of Species for Fishery Statistics Purposes maintained by FAO.<br/><br/> + -- Name --<br/>livestock <br/><br/>-- Definition --<br/>Define the presence of livestock species in the site.<br/><br/>-- Description --<br/>The terrestic species are coded specified  according to  regulation (EC) No 1165/2008.<br/><br/>
    @@ -165,7 +165,7 @@
    - Public LivestockSpeciesValue
      livestock + Public AquacultureSpeciesValue
      aquaculture
    - -- Name --<br/>livestock <br/><br/>-- Definition --<br/>Define the presence of livestock species in the site.<br/><br/>-- Description --<br/>The terrestic species are coded specified  according to  regulation (EC) No 1165/2008.<br/><br/> + -- Name --<br/>aquaculture <br/><br/>-- Definition --<br/>Define the presence of aquaculture species in the site.<br/><br/>-- Description --<br/>Aquaculture species  are listed in aquacultureSpecies attribute.<br/>The allowed values for this code list comprise only the values specified in the February 2012 version of the ASFIS (Aquatic Sciences and Fisheries Information System) List of Species for Fishery Statistics Purposes maintained by FAO.<br/><br/>
    diff --git a/approved/html/EARoot/EA2/EA3/EA3/EA1/EA8285.htm b/approved/html/EARoot/EA2/EA3/EA3/EA1/EA8285.htm index 55c605ea8..9746c64fa 100644 --- a/approved/html/EARoot/EA2/EA3/EA3/EA1/EA8285.htm +++ b/approved/html/EARoot/EA2/EA3/EA3/EA1/EA8285.htm @@ -110,7 +110,7 @@
    - Public EconomicActivityNACEValue
      activity + Public GM_Object
      geometry
    - -- Name --<br/>activity<br/>-- Definition --<br/>The classification of the economic activity of the site, according to the NACE rev. 2.0 coding.<br/><br/>-- Description --<br/>Accessible at Eurostat repository from URL <br/>http://ec.europa.eu/eurostat/ramon/nomenclatures/index.cfm?<br/>TargetUrl=LST_CLS_DLD&StrNom=NACE_REV2<br/>&StrLanguageCode=EN&StrLayoutCode=HIERARCHIC.<br/><br/><br/>The valid nace codes are <br/>first level<br/>01 and 03<br/>second level<br/>01.1 - 01.6  and 03.2<br/>third level <br/>01.11 -  01.64  and 03.21 - 03.22<br/><br/> + -- Name --<br/>geometry<br/>-- Definition --<br/>The geometry defining the extent or position of the site.<br/><br/>-- Description --<br/>The geometry must be a GM_surface, when it includes installations, plots or buildings with a polygon type geometry.<br/>In case the site only includes single object  with a point type geometry, the site can have a GM_point geometry.<br/><br/>
    @@ -168,7 +168,7 @@
    - Public GM_Object
      geometry + Public EconomicActivityNACEValue
      activity
    - -- Name --<br/>geometry<br/>-- Definition --<br/>The geometry defining the extent or position of the site.<br/><br/>-- Description --<br/>The geometry must be a GM_surface, when it includes installations, plots or buildings with a polygon type geometry.<br/>In case the site only includes single object  with a point type geometry, the site can have a GM_point geometry.<br/><br/> + -- Name --<br/>activity<br/>-- Definition --<br/>The classification of the economic activity of the site, according to the NACE rev. 2.0 coding.<br/><br/>-- Description --<br/>Accessible at Eurostat repository from URL <br/>http://ec.europa.eu/eurostat/ramon/nomenclatures/index.cfm?<br/>TargetUrl=LST_CLS_DLD&StrNom=NACE_REV2<br/>&StrLanguageCode=EN&StrLayoutCode=HIERARCHIC.<br/><br/><br/>The valid nace codes are <br/>first level<br/>01 and 03<br/>second level<br/>01.1 - 01.6  and 03.2<br/>third level <br/>01.11 -  01.64  and 03.21 - 03.22<br/><br/>
    diff --git a/approved/html/EARoot/EA2/EA3/EA4/EA1/EA8289.png b/approved/html/EARoot/EA2/EA3/EA4/EA1/EA8289.png index 864bfd4a9..c63f466a9 100644 Binary files a/approved/html/EARoot/EA2/EA3/EA4/EA1/EA8289.png and b/approved/html/EARoot/EA2/EA3/EA4/EA1/EA8289.png differ diff --git a/approved/html/EARoot/EA2/EA3/EA4/EA1/EA8298.htm b/approved/html/EARoot/EA2/EA3/EA4/EA1/EA8298.htm index bb9d1066a..00e6eab8d 100644 --- a/approved/html/EARoot/EA2/EA3/EA4/EA1/EA8298.htm +++ b/approved/html/EARoot/EA2/EA3/EA4/EA1/EA8298.htm @@ -156,7 +156,7 @@
    - Public
      climateAndClimateChange + Public
      water
    - Public
      healthProtection + Public
      waste
    - Public
      landUse + Public
      natureAndBiodiversity
    - Public
      naturalResources + Public
      sustainableDevelopment
    - Public
      natureAndBiodiversity + Public
      landUse
    - Public
      noise + Public
      soil
    - Public
      soil + Public
      noise
    - Public
      sustainableDevelopment + Public
      naturalResources
    - Public
      waste + Public
      climateAndClimateChange
    - Public
      water + Public
      healthProtection
    - Public DateTime
      beginLifespanVersion + Public Identifier
      inspireId
    @@ -169,7 +169,7 @@ - Public RelatedParty
      competentAuthority + Public ThematicIdentifier
      thematicId @@ -195,7 +195,7 @@ Range: - + Range:0 to * Transient: @@ -218,7 +218,7 @@ Notes: - -- Name --<br/>competent authority<br/><br/>-- Definition --<br/>Description of the organisation(s) responsible for managing, restricting or regulating measures or activities within the zone. <br/> + -- Name --<br/>thematic identifier<br/><br/>-- Definition --<br/>Descriptive unique object identifier applied to spatial objects in a defined information theme. <br/><br/>-- Description --<br/>Some management, restriction or regulation zones may be assigned multiple thematic identifiers. These may have been established to meet the reporting requirements of different legislative instruments at International, European or at Member State levels.  <br/><br/>Where multiple thematicIDs exist all should be provided. This shall allow any external dataset that uses thematicIDs to referencing to the zone to continue to be linked to the spatial object.<br/>
    @@ -227,7 +227,7 @@ - Public TM_Period
      designationPeriod + Public GeographicalName
      name @@ -253,7 +253,7 @@ Range: - + Range:0 to * Transient: @@ -276,7 +276,7 @@ Notes: - -- Name --<br/>designation period<br/><br/>-- Definition --<br/>Time period defining when the management, restriction or regulation zone was legally designated or became effective in the real world.<br/><br/>-- Description --<br/>NOTE: designationPeriod uses the ISO 19108 TM_Period which is comprised of two properties - gml:beginPosition and gml:endPosition. <br/>If the zone shall remain in force for an indeterminate period of time then the endPosition/indeterminatePosition="unknown" can be used to state that the zone is still effective.<br/> + -- Name --<br/>name<br/><br/>-- Definition --<br/>A geographical name that is used to identify the management, restriction or  regulation zone in the real world. It provides a 'key' for implicitly associating different representations of the object.<br/>
    @@ -285,7 +285,7 @@ - Public DateTime
      endLifespanVersion + Public GM_Object
      geometry @@ -303,7 +303,7 @@ Stereotype: - <<voidable>> + Ordered: @@ -311,7 +311,7 @@ Range: - Range:0 to 1 + Transient: @@ -334,7 +334,7 @@ Notes: - -- Name --<br/>end lifespan version<br/><br/>-- Definition --<br/>Date and time at which this version of the spatial object was superseded or retired in the spatial data set.<br/> + -- Name<br/>geometry<br/><br/>-- Definition --<br/>The geometry representing the spatial extent of the spatial object.<br/><br/>-- Description --<br/>The geometry of a Management Area, Restriction or Regulation Zone can be defined using any geometry representation. Typically this shall be either a GM_Surface or GM_MultiSurface. <br/><br/>NOTE: Where a zone forms as a polygon, this should be encoded as a GM_Surface or GM_MultiSurface not a GM_Curve.<br/>
    @@ -343,7 +343,7 @@ - Public EnvironmentalDomain
      environmentalDomain + Public ZoneTypeCode
      zoneType @@ -392,7 +392,7 @@ Notes: - -- Name --<br/>environmental domain<br/><br/>-- Definition --<br/>Classification of the environment domain(s) for which, through the establishment of the zone, certain environmental objectives shall be reached.<br/><br/>-- Description --<br/>A zone may be established within one environmental domain (e.g. water) or may to cover a wide range of environmental objectives that cross-cut several domains. For example, Marine Regions may relate to water,  land use, sustainable development.<br/> + -- Name --<br/>zone type<br/><br/>-- Definition --<br/>High level classification defining the type of management, restriction or regulation zone. <br/>
    @@ -401,7 +401,7 @@ - Public GM_Object
      geometry + Public SpecialisedZoneTypeCode
      specialisedZoneType @@ -419,7 +419,7 @@ Stereotype: - + <<voidable>> Ordered: @@ -427,7 +427,7 @@ Range: - + Range:0 to 1 Transient: @@ -443,14 +443,14 @@ - + obligation=technicalGuidance
    Notes: - -- Name<br/>geometry<br/><br/>-- Definition --<br/>The geometry representing the spatial extent of the spatial object.<br/><br/>-- Description --<br/>The geometry of a Management Area, Restriction or Regulation Zone can be defined using any geometry representation. Typically this shall be either a GM_Surface or GM_MultiSurface. <br/><br/>NOTE: Where a zone forms as a polygon, this should be encoded as a GM_Surface or GM_MultiSurface not a GM_Curve.<br/> + -- Name --<br/>specialised zone type<br/><br/>-- Definition --<br/>Additional classification value which further specialises the type of management, regulation or restriction zone relevant to the domain. <br/><br/>-- Description -- <br/>NOTE: This value should be derived from a relevant domain-specific controlled vocabulary, where available.<br/><br/>EXAMPLE 1: A ManagementRestrictionOrRegulationZone where the zoneType value = airQualityManagementZone could be further classified as either:<br/><ul>
    <li> specialisedZoneType = agglomeration or </li><li> specialisedZoneType =nonAgglomeration</li></ul>
    <br/>EXAMPLE 2: A ManagementRestrictionOrRegulationZone where the zoneType value = sensitiveArea could be further classified as either:<br/> specialisedZoneType = lessSensitiveArea<br/> specialisedZoneType = lessSensitiveNitrates<br/> specialisedZoneType = lessSensitiveEutrophic<br/> specialisedZoneType = lessSensitiveShellfish<br/>
    @@ -459,7 +459,7 @@ - Public Identifier
      inspireId + Public TM_Period
      designationPeriod @@ -477,7 +477,7 @@ Stereotype: - + <<voidable>> Ordered: @@ -508,7 +508,7 @@ Notes: - -- Name --<br/>inspireID<br/><br/>-- Definition --<br/>External object identifier of the spatial object.<br/><br/>-- Description -- <br/>An external object identifier is a unique object identifier published by the responsible body, which may be used by external application to reference the spatial object. The identifier is an identifier of the spatial object, not an identifier of the real-world phenomenon.<br/><br/>NOTE: ManagementRestrictionOrRegulationZone spatial objects commonly perform the role/function of <i>"Reporting Unit"</i> for non-spatial reported data. The reported data shall contain object references to ManagementRestrictionOrRegulationZones. Therefore, all spatial objects shall be assigned an inspireID. <br/> + -- Name --<br/>designation period<br/><br/>-- Definition --<br/>Time period defining when the management, restriction or regulation zone was legally designated or became effective in the real world.<br/><br/>-- Description --<br/>NOTE: designationPeriod uses the ISO 19108 TM_Period which is comprised of two properties - gml:beginPosition and gml:endPosition. <br/>If the zone shall remain in force for an indeterminate period of time then the endPosition/indeterminatePosition="unknown" can be used to state that the zone is still effective.<br/>
    @@ -517,7 +517,7 @@ - Public GeographicalName
      name + Public EnvironmentalDomain
      environmentalDomain @@ -535,7 +535,7 @@ Stereotype: - <<voidable>> + Ordered: @@ -543,7 +543,7 @@ Range: - Range:0 to * + Transient: @@ -559,14 +559,14 @@ - + obligation=implementingRule
    Notes: - -- Name --<br/>name<br/><br/>-- Definition --<br/>A geographical name that is used to identify the management, restriction or  regulation zone in the real world. It provides a 'key' for implicitly associating different representations of the object.<br/> + -- Name --<br/>environmental domain<br/><br/>-- Definition --<br/>Classification of the environment domain(s) for which, through the establishment of the zone, certain environmental objectives shall be reached.<br/><br/>-- Description --<br/>A zone may be established within one environmental domain (e.g. water) or may to cover a wide range of environmental objectives that cross-cut several domains. For example, Marine Regions may relate to water,  land use, sustainable development.<br/>
    @@ -575,7 +575,7 @@ - Public SpecialisedZoneTypeCode
      specialisedZoneType + Public RelatedParty
      competentAuthority @@ -601,7 +601,7 @@ Range: - Range:0 to 1 + Transient: @@ -617,14 +617,14 @@ - obligation=technicalGuidance
    +
    Notes: - -- Name --<br/>specialised zone type<br/><br/>-- Definition --<br/>Additional classification value which further specialises the type of management, regulation or restriction zone relevant to the domain. <br/><br/>-- Description -- <br/>NOTE: This value should be derived from a relevant domain-specific controlled vocabulary, where available.<br/><br/>EXAMPLE 1: A ManagementRestrictionOrRegulationZone where the zoneType value = airQualityManagementZone could be further classified as either:<br/><ul>
    <li> specialisedZoneType = agglomeration or </li><li> specialisedZoneType =nonAgglomeration</li></ul>
    <br/>EXAMPLE 2: A ManagementRestrictionOrRegulationZone where the zoneType value = sensitiveArea could be further classified as either:<br/> specialisedZoneType = lessSensitiveArea<br/> specialisedZoneType = lessSensitiveNitrates<br/> specialisedZoneType = lessSensitiveEutrophic<br/> specialisedZoneType = lessSensitiveShellfish<br/> + -- Name --<br/>competent authority<br/><br/>-- Definition --<br/>Description of the organisation(s) responsible for managing, restricting or regulating measures or activities within the zone. <br/>
    @@ -633,7 +633,7 @@ - Public ThematicIdentifier
      thematicId + Public DateTime
      beginLifespanVersion @@ -659,7 +659,7 @@ Range: - Range:0 to * + Transient: @@ -682,7 +682,7 @@ Notes: - -- Name --<br/>thematic identifier<br/><br/>-- Definition --<br/>Descriptive unique object identifier applied to spatial objects in a defined information theme. <br/><br/>-- Description --<br/>Some management, restriction or regulation zones may be assigned multiple thematic identifiers. These may have been established to meet the reporting requirements of different legislative instruments at International, European or at Member State levels.  <br/><br/>Where multiple thematicIDs exist all should be provided. This shall allow any external dataset that uses thematicIDs to referencing to the zone to continue to be linked to the spatial object.<br/> + -- Name --<br/>begin lifespan version<br/><br/>-- Definition --<br/>Date and time at which this version of the spatial object was inserted or changed in the spatial data set.<br/>
    @@ -691,7 +691,7 @@ - Public ZoneTypeCode
      zoneType + Public DateTime
      endLifespanVersion @@ -709,7 +709,7 @@ Stereotype: - + <<voidable>> Ordered: @@ -717,7 +717,7 @@ Range: - + Range:0 to 1 Transient: @@ -733,14 +733,14 @@ - obligation=implementingRule
    +
    Notes: - -- Name --<br/>zone type<br/><br/>-- Definition --<br/>High level classification defining the type of management, restriction or regulation zone. <br/> + -- Name --<br/>end lifespan version<br/><br/>-- Definition --<br/>Date and time at which this version of the spatial object was superseded or retired in the spatial data set.<br/>
    diff --git a/approved/html/EARoot/EA2/EA3/EA4/EA1/EA8302.htm b/approved/html/EARoot/EA2/EA3/EA4/EA1/EA8302.htm index 03ec90a3e..486041cfc 100644 --- a/approved/html/EARoot/EA2/EA3/EA4/EA1/EA8302.htm +++ b/approved/html/EARoot/EA2/EA3/EA4/EA1/EA8302.htm @@ -166,7 +166,7 @@ - Public
      animalHealthRestrictionZone + Public
      noiseRestrictionZone @@ -215,7 +215,7 @@ Notes: - -- Definition --<br/>Restriction zones established for the control and eradiation of notifiable animal diseases<br/><br/>-- Description --<br/>EXAMPLE: Bluetongue Restriction Zones (Council Directive 2000/75/EC).<br/><br/>EXAMPLE: Avian Influenze Restriction Zones (Council Directive 2005/94/EC).<br/><br/>EXAMPLE: African Horse Sickness (Council Directive 92/35/EEC).<br/><br/> + -- Definition --<br/>An area delimited by a competent authority to manage and mitigate noise pollution. <br/>This includes agglomerations and quiet areas (in agglomerations and open country) as defined in the Environmental Noise Directive (2002/49/EC).<br/><br/>-- Description --<br/>NOTE: Noise restriction zones may also be defined to manage noise exposure relating to transport (airports, roads, rail), entertainment venues, recreational activities, construction, etc. <br/>
    @@ -224,7 +224,7 @@ - Public
      areaForDumpingOfWaste + Public
      animalHealthRestrictionZone @@ -273,7 +273,7 @@ Notes: - -- Definition --<br/>Area affected by uncontrolled disposal of waste as defined in Waste Framework Directive (2006/12/EC) Art 4. <br/><br/> + -- Definition --<br/>Restriction zones established for the control and eradiation of notifiable animal diseases<br/><br/>-- Description --<br/>EXAMPLE: Bluetongue Restriction Zones (Council Directive 2000/75/EC).<br/><br/>EXAMPLE: Avian Influenze Restriction Zones (Council Directive 2005/94/EC).<br/><br/>EXAMPLE: African Horse Sickness (Council Directive 92/35/EEC).<br/><br/>
    @@ -282,7 +282,7 @@ - Public
      bathingWaters + Public
      prospectingAndMiningPermitArea @@ -331,7 +331,7 @@ Notes: - -- Definition --<br/>Coastal waters or inland waters (rivers, lakes) explicitly authorised, or not prohibited for recreational bathing by large numbers of people. <br/><br/>-- Description --<br/>NOTE: Bathing waters are set limits for physical, chemical and microbiological parameters to ensuring clean bathing waters to protect public health and the environment.<br/><br/> + -- Definition --<br/>The area on which the prospection or extraction of any mineral has been authorised and for which that right or permit is granted. <br/><br/>-- Description --<br/>EXAMPLE:  Directive 94/22/EC on conditions for granting and using authorisations for the prospection, exploration and production of hydrocarbons, stipulates that the limits of the geographical areas covered by an authorisation and the duration of that authorisation must be determined in proportion to what is justified in terms of the best possible exercise of the activities from an economic and technical point of view.<br/><br/>
    @@ -340,7 +340,7 @@ - Public
      coastalZoneManagementArea + Public
      regulatedFairwayAtSeaOrLargeInlandWater @@ -389,7 +389,7 @@ Notes: - -- Definition --<br/>Area in which "integrated coastal zone management" takes place.<br/><br/>-- Description --<br/>DEFINITION: "Integrated coastal zone management” is a dynamic process for the sustainable management and use of coastal zones, taking into account at the same time the fragility of coastal ecosystems and landscapes, the diversity of activities and uses, their interactions, the maritime orientation of certain activities and uses and their impact on both the marine and land parts.<br/><br/>SOURCE: Protocol on Integrated Coastal Zone Management in the Mediterranean - signed in Madrid on 20-21 January 2008.<br/><br/> + -- Definition --<br/>Regulated navigation areas port-to-port established in accordance with Decision 884/2004/EC of the European Parliament and Council of 29 April 2004 amending Decision No 1692/96/EC on Community guidelines for the development of the trans - European transport network to organise sailing traffic, prevent accident and pollution.<br/><br/><br/><br/>
    @@ -398,7 +398,7 @@ - Public
      designatedWaters + Public
      restrictedZonesAroundContaminatedSites @@ -447,7 +447,7 @@ Notes: - -- Definition --<br/>Marine, coastal or surface waters designated by Member States as needing protection or improvement in order to support fish life.<br/><br/>-- Description --<br/>Member States are required to define designated waters to protect freshwater fish and shellfish by the Fisheries Directive (2006/44/EC) and  Shellfish Waters Directive (2006/113/EEC).<br/><br/> + -- Definition --<br/>Zones established to protect human, plant and animal health and control movement and development within a contaminated site.<br/><br/>-- Description --<br/>EXAMPLE: Chernobyl Nuclear Power Plant Exclusion Zone which was established to evacuate the local population and to prevent people from entering the heavily contaminated territory.<br/><br/>EXAMPLE: Zone established around an area suffering from soil contamination to restrict development and protect human health.<br/><br/>
    @@ -456,7 +456,7 @@ - Public
      drinkingWaterProtectionArea + Public
      areaForDumpingOfWaste @@ -505,7 +505,7 @@ Notes: - -- Definition --<br/>Area in which waste water leakage, use of fertilizer or pesticides, or establishment of waste disposal sites are prohibited.<br/><br/>-- Description --<br/>EXAMPLE: From Directive 80/778, relating to the quality of water intended for human consumption.<br/>According to the article 8 providing that Member States shall take all the necessary measures to ensure that any substances used in the preparation of water for human consumption do not remain in concentrations higher than the maximum admissible.<br/><br/> + -- Definition --<br/>Area affected by uncontrolled disposal of waste as defined in Waste Framework Directive (2006/12/EC) Art 4. <br/><br/>
    @@ -514,7 +514,7 @@ - Public
      floodManagementUnit + Public
      coastalZoneManagementArea @@ -563,7 +563,7 @@ Notes: - -- Definition --<br/>Coastal areas or individual river basins assigned as the unit of management established for the assessment and management of flood risk.<br/><br/>-- Description --<br/>These are coastal areas or individual river basins assigned as a unit of management different from those assigned pursuant to Article 3(1) of Directive 2000/60/EC. <br/><br/>SOURCE: 2007/60/EC Art 3(2)b.<br/><br/><br/> + -- Definition --<br/>Area in which "integrated coastal zone management" takes place.<br/><br/>-- Description --<br/>DEFINITION: "Integrated coastal zone management” is a dynamic process for the sustainable management and use of coastal zones, taking into account at the same time the fragility of coastal ecosystems and landscapes, the diversity of activities and uses, their interactions, the maritime orientation of certain activities and uses and their impact on both the marine and land parts.<br/><br/>SOURCE: Protocol on Integrated Coastal Zone Management in the Mediterranean - signed in Madrid on 20-21 January 2008.<br/><br/>
    @@ -572,7 +572,7 @@ - Public
      forestManagementArea + Public
      drinkingWaterProtectionArea @@ -615,12 +615,22 @@ -   +
    + + + + +
    + Notes: + + -- Definition --<br/>Area in which waste water leakage, use of fertilizer or pesticides, or establishment of waste disposal sites are prohibited.<br/><br/>-- Description --<br/>EXAMPLE: From Directive 80/778, relating to the quality of water intended for human consumption.<br/>According to the article 8 providing that Member States shall take all the necessary measures to ensure that any substances used in the preparation of water for human consumption do not remain in concentrations higher than the maximum admissible.<br/><br/> +
    + - Public
      marineRegion + Public
      nitrateVulnerableZone @@ -669,7 +679,7 @@ Notes: - -- Definition --<br/>Marine regions and their subregions are sea regions designated for the purpose of assessment, management and regulation.<br/><br/>-- Description --<br/>For each Marine Region a marine strategy shall be developed and implemented to maintain and improve good environmental status.<br/><br/>SOURCE: Marine Strategy Framework Directive (2008/56/EC).<br/><br/> + -- Definition --<br/>Areas of land which drain into polluted or threatened waters and which contribute to nitrate pollution.<br/><br/>-- Description --<br/>SOURCE: Art 3 of Council Directive 91/676/EEC of 12 December 1991 concerning the protection of waters against pollution caused by nitrates from agricultural sources.<br/><br/><br/><br/>
    @@ -678,7 +688,7 @@ - Public
      nitrateVulnerableZone + Public
      marineRegion @@ -727,7 +737,7 @@ Notes: - -- Definition --<br/>Areas of land which drain into polluted or threatened waters and which contribute to nitrate pollution.<br/><br/>-- Description --<br/>SOURCE: Art 3 of Council Directive 91/676/EEC of 12 December 1991 concerning the protection of waters against pollution caused by nitrates from agricultural sources.<br/><br/><br/><br/> + -- Definition --<br/>Marine regions and their subregions are sea regions designated for the purpose of assessment, management and regulation.<br/><br/>-- Description --<br/>For each Marine Region a marine strategy shall be developed and implemented to maintain and improve good environmental status.<br/><br/>SOURCE: Marine Strategy Framework Directive (2008/56/EC).<br/><br/>
    @@ -736,7 +746,7 @@ - Public
      noiseRestrictionZone + Public
      riverBasinDistrict @@ -785,7 +795,7 @@ Notes: - -- Definition --<br/>An area delimited by a competent authority to manage and mitigate noise pollution. <br/>This includes agglomerations and quiet areas (in agglomerations and open country) as defined in the Environmental Noise Directive (2002/49/EC).<br/><br/>-- Description --<br/>NOTE: Noise restriction zones may also be defined to manage noise exposure relating to transport (airports, roads, rail), entertainment venues, recreational activities, construction, etc. <br/> + -- Definition --<br/>Area of land and sea, made up of one or more neighbouring river basins together with their associated groundwaters and coastal waters, identified under Article 3(1) as the main unit for management of river basins.<br/><br/>-- Description --<br/>SOURCE: Art 2 (15) of DIRECTIVE 2000/60/EC OF THE EUROPEAN PARLIAMENT AND OF THE COUNCIL of 23 October 2000 establishing a framework for Community action in the field of water policy.<br/><br/>NOTE: A river basin district can either be an international or national river basin district or a sub unit of management.<br/><br/>NOTE 2: The relatedZone role should be used to link river basin districts. For example, a national river basin district should include a relatedZone attribute linking it to the international river basin district.<br/><br/><br/>
    @@ -794,7 +804,7 @@ - Public
      plantHealthProtectionZone + Public
      bathingWaters @@ -843,7 +853,7 @@ Notes: - -- Definition --<br/>Protection zone within which protective measures are established against the introduction of organisms harmful to plants or plant products and against their spread.<br/><br/>-- Description --<br/>SOURCE: COMMISSION REGULATION (EC) No 690/2008.<br/><br/> + -- Definition --<br/>Coastal waters or inland waters (rivers, lakes) explicitly authorised, or not prohibited for recreational bathing by large numbers of people. <br/><br/>-- Description --<br/>NOTE: Bathing waters are set limits for physical, chemical and microbiological parameters to ensuring clean bathing waters to protect public health and the environment.<br/><br/>
    @@ -852,7 +862,7 @@ - Public
      prospectingAndMiningPermitArea + Public
      floodManagementUnit @@ -901,7 +911,7 @@ Notes: - -- Definition --<br/>The area on which the prospection or extraction of any mineral has been authorised and for which that right or permit is granted. <br/><br/>-- Description --<br/>EXAMPLE:  Directive 94/22/EC on conditions for granting and using authorisations for the prospection, exploration and production of hydrocarbons, stipulates that the limits of the geographical areas covered by an authorisation and the duration of that authorisation must be determined in proportion to what is justified in terms of the best possible exercise of the activities from an economic and technical point of view.<br/><br/> + -- Definition --<br/>Coastal areas or individual river basins assigned as the unit of management established for the assessment and management of flood risk.<br/><br/>-- Description --<br/>These are coastal areas or individual river basins assigned as a unit of management different from those assigned pursuant to Article 3(1) of Directive 2000/60/EC. <br/><br/>SOURCE: 2007/60/EC Art 3(2)b.<br/><br/><br/>
    @@ -910,7 +920,7 @@ - Public
      regulatedFairwayAtSeaOrLargeInlandWater + Public
      WFDWaterBody @@ -953,22 +963,12 @@ -
    - - - - -
    - Notes: - - -- Definition --<br/>Regulated navigation areas port-to-port established in accordance with Decision 884/2004/EC of the European Parliament and Council of 29 April 2004 amending Decision No 1692/96/EC on Community guidelines for the development of the trans - European transport network to organise sailing traffic, prevent accident and pollution.<br/><br/><br/><br/> -
    - +   - Public
      restrictedZonesAroundContaminatedSites + Public
      sensitiveArea @@ -1017,7 +1017,7 @@ Notes: - -- Definition --<br/>Zones established to protect human, plant and animal health and control movement and development within a contaminated site.<br/><br/>-- Description --<br/>EXAMPLE: Chernobyl Nuclear Power Plant Exclusion Zone which was established to evacuate the local population and to prevent people from entering the heavily contaminated territory.<br/><br/>EXAMPLE: Zone established around an area suffering from soil contamination to restrict development and protect human health.<br/><br/> + -- Definition --<br/>Sensitive areas are surface waters (freshwater, estuaries and coastal waters) that require protection against eutrophication.<br/><br/>-- Description --<br/>SOURCE: Urban Waste Water Treatment Directive (91/271/EEC).<br/><br/>
    @@ -1026,7 +1026,7 @@ - Public
      riverBasinDistrict + Public
      designatedWaters @@ -1075,7 +1075,7 @@ Notes: - -- Definition --<br/>Area of land and sea, made up of one or more neighbouring river basins together with their associated groundwaters and coastal waters, identified under Article 3(1) as the main unit for management of river basins.<br/><br/>-- Description --<br/>SOURCE: Art 2 (15) of DIRECTIVE 2000/60/EC OF THE EUROPEAN PARLIAMENT AND OF THE COUNCIL of 23 October 2000 establishing a framework for Community action in the field of water policy.<br/><br/>NOTE: A river basin district can either be an international or national river basin district or a sub unit of management.<br/><br/>NOTE 2: The relatedZone role should be used to link river basin districts. For example, a national river basin district should include a relatedZone attribute linking it to the international river basin district.<br/><br/><br/> + -- Definition --<br/>Marine, coastal or surface waters designated by Member States as needing protection or improvement in order to support fish life.<br/><br/>-- Description --<br/>Member States are required to define designated waters to protect freshwater fish and shellfish by the Fisheries Directive (2006/44/EC) and  Shellfish Waters Directive (2006/113/EEC).<br/><br/>
    @@ -1084,7 +1084,7 @@ - Public
      sensitiveArea + Public
      plantHealthProtectionZone @@ -1133,7 +1133,7 @@ Notes: - -- Definition --<br/>Sensitive areas are surface waters (freshwater, estuaries and coastal waters) that require protection against eutrophication.<br/><br/>-- Description --<br/>SOURCE: Urban Waste Water Treatment Directive (91/271/EEC).<br/><br/> + -- Definition --<br/>Protection zone within which protective measures are established against the introduction of organisms harmful to plants or plant products and against their spread.<br/><br/>-- Description --<br/>SOURCE: COMMISSION REGULATION (EC) No 690/2008.<br/><br/>
    @@ -1142,7 +1142,7 @@ - Public
      WFDWaterBody + Public
      forestManagementArea diff --git a/approved/html/EARoot/EA2/EA3/EA5/EA1/EA1/EA8309.png b/approved/html/EARoot/EA2/EA3/EA5/EA1/EA1/EA8309.png index bda99b272..861eb8a2a 100644 Binary files a/approved/html/EARoot/EA2/EA3/EA5/EA1/EA1/EA8309.png and b/approved/html/EARoot/EA2/EA3/EA5/EA1/EA1/EA8309.png differ diff --git a/approved/html/EARoot/EA2/EA3/EA5/EA1/EA1/EA8311.png b/approved/html/EARoot/EA2/EA3/EA5/EA1/EA1/EA8311.png index 3a6c3ed22..e23242ec9 100644 Binary files a/approved/html/EARoot/EA2/EA3/EA5/EA1/EA1/EA8311.png and b/approved/html/EARoot/EA2/EA3/EA5/EA1/EA1/EA8311.png differ diff --git a/approved/html/EARoot/EA2/EA3/EA5/EA1/EA1/EA8317.htm b/approved/html/EARoot/EA2/EA3/EA5/EA1/EA1/EA8317.htm index ea0cd4825..0f0d40912 100644 --- a/approved/html/EARoot/EA2/EA3/EA5/EA1/EA1/EA8317.htm +++ b/approved/html/EARoot/EA2/EA3/EA5/EA1/EA1/EA8317.htm @@ -108,7 +108,7 @@ - Public DateTime
      beginLifespanVersion + Public Identifier
      inspireId @@ -126,7 +126,7 @@ Stereotype: - <<voidable>> + Ordered: @@ -134,7 +134,7 @@ Range: - + Range:0 to 1 Transient: @@ -157,7 +157,7 @@ Notes: - -- Name --<br/>begin lifespan version<br/><br/>-- Definition --<br/>Date and time at which this version of the spatial object was inserted or changed in the spatial data set.<br/><br/> + -- Name --<br/>inspire id<br/><br/>-- Definition --<br/>External object identifier of the spatial object.<br/><br/>-- Description --<br/>An external object identifier is a unique object identifier published by the responsible body, which may be used by external applications to reference the spatial object. The identifier is an identifier of the spatial object, not an identifier of the real-world phenomenon.<br/><br/>
    @@ -166,7 +166,7 @@ - Public DateTime
      endLifespanVersion + Public GM_MultiSurface
      geometry @@ -184,7 +184,7 @@ Stereotype: - <<voidable>> + Ordered: @@ -192,7 +192,7 @@ Range: - Range:0 to 1 + Transient: @@ -215,7 +215,7 @@ Notes: - -- Name --<br/>end lifespan version<br/><br/>-- Definition --<br/>Date and time at which this version of the spatial object was superseded or retired in the spatial data set.<br/><br/> + -- Name --<br/>geometry<br/><br/>-- Definition --<br/>The geometry defining the ecological region.<br/>
    @@ -224,7 +224,7 @@ - Public GM_MultiSurface
      geometry + Public RegionClassificationValue
      regionClassification @@ -266,14 +266,14 @@ - + obligation=technicalGuidance
    Notes: - -- Name --<br/>geometry<br/><br/>-- Definition --<br/>The geometry defining the ecological region.<br/> + -- Name --<br/>region classification<br/><br/>-- Definition --<br/>Regionclass code, according to a classification scheme.<br/><br/>
    @@ -282,7 +282,7 @@ - Public Identifier
      inspireId + Public RegionClassificationSchemeValue
      regionClassificationScheme @@ -308,7 +308,7 @@ Range: - Range:0 to 1 + Transient: @@ -324,14 +324,14 @@ - + obligation=technicalGuidance
    Notes: - -- Name --<br/>inspire id<br/><br/>-- Definition --<br/>External object identifier of the spatial object.<br/><br/>-- Description --<br/>An external object identifier is a unique object identifier published by the responsible body, which may be used by external applications to reference the spatial object. The identifier is an identifier of the spatial object, not an identifier of the real-world phenomenon.<br/><br/> + -- Name --<br/>region classification scheme<br/><br/>-- Definition --<br/>Classification scheme used for classifying regions.<br/><br/>
    @@ -340,7 +340,7 @@ - Public RegionClassificationValue
      regionClassification + Public RegionClassificationLevelValue
      regionClassificationLevel @@ -358,7 +358,7 @@ Stereotype: - + <<voidable>> Ordered: @@ -382,14 +382,14 @@ - obligation=technicalGuidance
    + obligation=implementingRule
    Notes: - -- Name --<br/>region classification<br/><br/>-- Definition --<br/>Regionclass code, according to a classification scheme.<br/><br/> + -- Name --<br/>region classification level<br/><br/>-- Definition --<br/>The classification level of the region class.<br/><br/>
    @@ -398,7 +398,7 @@ - Public RegionClassificationLevelValue
      regionClassificationLevel + Public DateTime
      beginLifespanVersion @@ -440,14 +440,14 @@ - obligation=implementingRule
    +
    Notes: - -- Name --<br/>region classification level<br/><br/>-- Definition --<br/>The classification level of the region class.<br/><br/> + -- Name --<br/>begin lifespan version<br/><br/>-- Definition --<br/>Date and time at which this version of the spatial object was inserted or changed in the spatial data set.<br/><br/>
    @@ -456,7 +456,7 @@ - Public RegionClassificationSchemeValue
      regionClassificationScheme + Public DateTime
      endLifespanVersion @@ -474,7 +474,7 @@ Stereotype: - + <<voidable>> Ordered: @@ -482,7 +482,7 @@ Range: - + Range:0 to 1 Transient: @@ -498,14 +498,14 @@ - obligation=technicalGuidance
    +
    Notes: - -- Name --<br/>region classification scheme<br/><br/>-- Definition --<br/>Classification scheme used for classifying regions.<br/><br/> + -- Name --<br/>end lifespan version<br/><br/>-- Definition --<br/>Date and time at which this version of the spatial object was superseded or retired in the spatial data set.<br/><br/>
    diff --git a/approved/html/EARoot/EA2/EA3/EA5/EA1/EA1/EA8319.htm b/approved/html/EARoot/EA2/EA3/EA5/EA1/EA1/EA8319.htm index 6f1908f7a..fb1bde6d8 100644 --- a/approved/html/EARoot/EA2/EA3/EA5/EA1/EA1/EA8319.htm +++ b/approved/html/EARoot/EA2/EA3/EA5/EA1/EA1/EA8319.htm @@ -109,7 +109,7 @@ - Public
      adriaticSea + Public
      balitcSea @@ -158,7 +158,7 @@ Notes: - -- Name --<br/>adriatic sea<br/><br/>-- Definition --<br/>A sub region of the Mediterranean Sea covering waters of the Adriatic Sea.<br/> + -- Name --<br/>balticSea<br/><br/>-- Definition --<br/>The entire extent of marine waters covered by the sovereignty or jurisdiction of Estonia, Finland ,Latvia, Lithuania and Poland and the portions of these waters of Denmark, Germany and Sweden that that occur east of the Kattegat. For more information read the Marine Stategy Framework Directive, specifically Article 4.<br/>
    @@ -167,7 +167,7 @@ - Public
      ageanLevantineSea + Public
      northeastAtlanticOcean @@ -216,7 +216,7 @@ Notes: - -- Name --<br/>agean levantine sea<br/><br/>-- Definition --<br/>A sub region of the Mediterranean Sea consisitng of the Agean and Levantine Seas. <br/> + -- Name --<br/>northeast atlantic ocean<br/><br/>-- Definition --<br/>Marine waters coverd by the sovereignity or jurisdiction of Member States. It includesthe subregions of the Greater North Sea, including the Kattegat and the English Channel, The Celtic Sea, the Bay of Biscay and the Iberian coast and the waters surrounding the Azores, Maderia and Canary Islands. For more information read the Marine Stategy Framework Directive, specifically Article 4.<br/>
    @@ -225,7 +225,7 @@ - Public
      balitcSea + Public
      mediterraneanSea @@ -274,7 +274,7 @@ Notes: - -- Name --<br/>balticSea<br/><br/>-- Definition --<br/>The entire extent of marine waters covered by the sovereignty or jurisdiction of Estonia, Finland ,Latvia, Lithuania and Poland and the portions of these waters of Denmark, Germany and Sweden that that occur east of the Kattegat. For more information read the Marine Stategy Framework Directive, specifically Article 4.<br/> + -- Name --<br/>mediterranean sea<br/><br/>-- Definition --<br/>Marine waters coverd by the sovereignity or jurisdiction of Member States. It includes the subregions of the Western Mediterranean Sea, the Adriatic Sean Ionian Sea, Central Mediterranean Sea and the Aegean-Levantice Sea. For more information read the Marine Stategy Framework Directive, specifically Article 4.<br/>
    @@ -283,7 +283,7 @@ - Public
      bayOfBiscayAndTheIberianCoast + Public
      blackSea @@ -332,7 +332,7 @@ Notes: - -- Name --<br/>bay of biscay and the iberian coast<br/><br/>-- Definition --<br/>A sub region of the North-east Atlantic Ocean, consisting of the waters of the Bay of Biscay and off the (Atlantic) Iberian coast.<br/> + -- Name --<br/>black sea<br/><br/>-- Definition --<br/>The entire extent of marine waters covered by the sovereignty or jurisdiction of Bulgaria and Romania.<br/>
    @@ -341,7 +341,7 @@ - Public
      blackSea + Public
      greaterNorthSea @@ -390,7 +390,7 @@ Notes: - -- Name --<br/>black sea<br/><br/>-- Definition --<br/>The entire extent of marine waters covered by the sovereignty or jurisdiction of Bulgaria and Romania.<br/> + -- Name --<br/>greater north sea<br/><br/>-- Definition --<br/>A sub region of the North-east Atlantic Ocean, consisting of the waters of the greater North Sea area including the Kattegat and the English Channel.<br/>
    @@ -457,7 +457,7 @@ - Public
      greaterNorthSea + Public
      bayOfBiscayAndTheIberianCoast @@ -506,7 +506,7 @@ Notes: - -- Name --<br/>greater north sea<br/><br/>-- Definition --<br/>A sub region of the North-east Atlantic Ocean, consisting of the waters of the greater North Sea area including the Kattegat and the English Channel.<br/> + -- Name --<br/>bay of biscay and the iberian coast<br/><br/>-- Definition --<br/>A sub region of the North-east Atlantic Ocean, consisting of the waters of the Bay of Biscay and off the (Atlantic) Iberian coast.<br/>
    @@ -515,7 +515,7 @@ - Public
      ionianSeaAndCentralMediterraneanSea + Public
      macronesia @@ -564,7 +564,7 @@ Notes: - -- Name --<br/>ionian sea and central mediterranean sea<br/><br/>-- Definition --<br/>A sub region of the Mediterranean Sea covering the Ionian Sea and the Central Mediterranean Sea.<br/> + -- Name --<br/>macronesia<br/><br/>-- Definition --<br/>A sub region of the North-east Atlantic Ocean, consisting of the waters surrounding the Azores, Madeira and Canary Islands.<br/>
    @@ -573,7 +573,7 @@ - Public
      macronesia + Public
      westernMediterraneanSea @@ -622,7 +622,7 @@ Notes: - -- Name --<br/>macronesia<br/><br/>-- Definition --<br/>A sub region of the North-east Atlantic Ocean, consisting of the waters surrounding the Azores, Madeira and Canary Islands.<br/> + -- Name --<br/>western mediterranean sea<br/><br/>-- Definition --<br/>A sub region of the Mediterranean Sea covering the waters of the western Mediterranean.<br/>
    @@ -631,7 +631,7 @@ - Public
      mediterraneanSea + Public
      adriaticSea @@ -680,7 +680,7 @@ Notes: - -- Name --<br/>mediterranean sea<br/><br/>-- Definition --<br/>Marine waters coverd by the sovereignity or jurisdiction of Member States. It includes the subregions of the Western Mediterranean Sea, the Adriatic Sean Ionian Sea, Central Mediterranean Sea and the Aegean-Levantice Sea. For more information read the Marine Stategy Framework Directive, specifically Article 4.<br/> + -- Name --<br/>adriatic sea<br/><br/>-- Definition --<br/>A sub region of the Mediterranean Sea covering waters of the Adriatic Sea.<br/>
    @@ -689,7 +689,7 @@ - Public
      northeastAtlanticOcean + Public
      ionianSeaAndCentralMediterraneanSea @@ -738,7 +738,7 @@ Notes: - -- Name --<br/>northeast atlantic ocean<br/><br/>-- Definition --<br/>Marine waters coverd by the sovereignity or jurisdiction of Member States. It includesthe subregions of the Greater North Sea, including the Kattegat and the English Channel, The Celtic Sea, the Bay of Biscay and the Iberian coast and the waters surrounding the Azores, Maderia and Canary Islands. For more information read the Marine Stategy Framework Directive, specifically Article 4.<br/> + -- Name --<br/>ionian sea and central mediterranean sea<br/><br/>-- Definition --<br/>A sub region of the Mediterranean Sea covering the Ionian Sea and the Central Mediterranean Sea.<br/>
    @@ -747,7 +747,7 @@ - Public
      westernMediterraneanSea + Public
      ageanLevantineSea @@ -796,7 +796,7 @@ Notes: - -- Name --<br/>western mediterranean sea<br/><br/>-- Definition --<br/>A sub region of the Mediterranean Sea covering the waters of the western Mediterranean.<br/> + -- Name --<br/>agean levantine sea<br/><br/>-- Definition --<br/>A sub region of the Mediterranean Sea consisitng of the Agean and Levantine Seas. <br/>
    diff --git a/approved/html/EARoot/EA2/EA3/EA5/EA1/EA1/EA8320.htm b/approved/html/EARoot/EA2/EA3/EA5/EA1/EA1/EA8320.htm index a2b020358..a8ba6f7d1 100644 --- a/approved/html/EARoot/EA2/EA3/EA5/EA1/EA1/EA8320.htm +++ b/approved/html/EARoot/EA2/EA3/EA5/EA1/EA1/EA8320.htm @@ -167,7 +167,7 @@ - Public
      anatolian + Public
      atlantic @@ -216,7 +216,7 @@ Notes: - -- Name --<br/>anatolian<br/><br/>-- Definition --<br/>The region corresponds to the interior and eastern part of the Anatolian peninsula, having no contact with the Black Sea or the Mediterranean. The region extends over three different geographical areas: the central Anatolian Plateau, the east Anatolian mountain range and the northern Mesopotamia.<br/><br/> + -- Name --<br/>atlantic<br/><br/>-- Definition --<br/>The Atlantic region stretches from the Faroes and southwest Norway down to the northern shores of Spain and Portugal, encompassing all of the United Kingdom, Ireland, and the Netherlands and parts of Germany, Denmark, Belgium, France, Spain and Portugal.<br/>
    @@ -225,7 +225,7 @@ - Public
      arctic + Public
      boreal @@ -274,7 +274,7 @@ Notes: - -- Name --<br/>arctic<br/><br/>-- Definition --<br/>Arctic biogeographical region as defined by the European Commission and the Council of Europe for evaluation and reporting on nature conservation. It includes Iceland, northern Norway, the northern Kola Peninsula, the north-west Russian Federation and islands further north, such as Svalbard, Franz Joseph Land and Novaya Zemlya.<br/><br/> + -- Name --<br/>boreal<br/><br/>-- Definition --<br/>Comprises parts of the territory of Finland, and Sweden and the territory of Estonia, Latvia and Lithuania.The Boreal region in Europe is part of a large zone dominated by coniferous forests, which circles the northern hemisphere in Europe, Asia and North America.<br/>
    @@ -283,7 +283,7 @@ - Public
      atlantic + Public
      continental @@ -332,7 +332,7 @@ Notes: - -- Name --<br/>atlantic<br/><br/>-- Definition --<br/>The Atlantic region stretches from the Faroes and southwest Norway down to the northern shores of Spain and Portugal, encompassing all of the United Kingdom, Ireland, and the Netherlands and parts of Germany, Denmark, Belgium, France, Spain and Portugal.<br/> + -- Name --<br/>continental<br/><br/>-- Definition --<br/>The Continental region covers over a quarter of the European Union and extends in a broad band from west to east, starting in central France and continuing to the eastern edge of Poland. Outside the EU it stretches to the Ural mountains, on the border with Asia. In the south, the region is almost split in two by the high mountain ranges of the Alpine zone and the steppic plains of the Pannonian region. Parts of the Adriatic and Baltic coastlines are also included. Altogether 13 EU countries have all or part of their territory in the Continental region.<br/>
    @@ -341,7 +341,7 @@ - Public
      blackSea + Public
      macaronesian @@ -390,7 +390,7 @@ Notes: - -- Name --<br/>black sea<br/><br/>-- Definition --<br/>The Black Sea Region runs anticlockwise around the Black Sea from Romania and Bulgaria, through northern Turkey and onto Georgia. Within the European Union, the region is no more than a thin coastal strip some 20–60 km wide that runs down almost the entire length of Romania and Bulgaria.<br/><br/> + -- Name --<br/>macaronesian<br/><br/>-- Definition --<br/>The Macaronesian biogeographical region is comprised of volcanic islands in the Atlantic Ocean and includes the archipelagos of the Azores, Madeira and the Canary Islands.<br/><br/>
    @@ -399,7 +399,7 @@ - Public
      boreal + Public
      mediterranean @@ -448,7 +448,7 @@ Notes: - -- Name --<br/>boreal<br/><br/>-- Definition --<br/>Comprises parts of the territory of Finland, and Sweden and the territory of Estonia, Latvia and Lithuania.The Boreal region in Europe is part of a large zone dominated by coniferous forests, which circles the northern hemisphere in Europe, Asia and North America.<br/> + -- Name --<br/>mediterranean<br/><br/>-- Definition --<br/>The Mediterranean basin stretches c.3, 800 km east to west from the tip of Portugal to the shores of Lebanon and c.1, 000 km north to south from Italy to Morocco and Libya. Within the European Union, the Mediterranean Region encompasses seven Member States either partially (France, Portugal, Italy, Spain) or completely (Greece, Malta, Cyprus).<br/><br/>
    @@ -457,7 +457,7 @@ - Public
      continental + Public
      arctic @@ -506,7 +506,7 @@ Notes: - -- Name --<br/>continental<br/><br/>-- Definition --<br/>The Continental region covers over a quarter of the European Union and extends in a broad band from west to east, starting in central France and continuing to the eastern edge of Poland. Outside the EU it stretches to the Ural mountains, on the border with Asia. In the south, the region is almost split in two by the high mountain ranges of the Alpine zone and the steppic plains of the Pannonian region. Parts of the Adriatic and Baltic coastlines are also included. Altogether 13 EU countries have all or part of their territory in the Continental region.<br/> + -- Name --<br/>arctic<br/><br/>-- Definition --<br/>Arctic biogeographical region as defined by the European Commission and the Council of Europe for evaluation and reporting on nature conservation. It includes Iceland, northern Norway, the northern Kola Peninsula, the north-west Russian Federation and islands further north, such as Svalbard, Franz Joseph Land and Novaya Zemlya.<br/><br/>
    @@ -515,7 +515,7 @@ - Public
      macaronesian + Public
      pannonian @@ -564,7 +564,7 @@ Notes: - -- Name --<br/>macaronesian<br/><br/>-- Definition --<br/>The Macaronesian biogeographical region is comprised of volcanic islands in the Atlantic Ocean and includes the archipelagos of the Azores, Madeira and the Canary Islands.<br/><br/> + -- Name --<br/>pannonian<br/><br/>-- Definition --<br/>The Pannonian Region is dominated by a large flat alluvial basin that is transected from north to south by two major rivers – the Danube and Tisza. Once an ancient inland sea, the basin is almost completely enclosed on all sides by low-lying hills and mountains. To the north and east lie the Carpathians, to the west the Alps and, to the south, the Dinarics. All of Hungary is included in the Pannonian Region as are peripheral areas of Slovakia, the Czech Republic and Romania within the EU, and outside the EU Serbia and Ukraine.<br/>
    @@ -573,7 +573,7 @@ - Public
      marineAtlantic + Public
      steppic @@ -622,7 +622,7 @@ Notes: - -- Name --<br/>marine atlantic<br/><br/>-- Definition --<br/>The entire extent of marine waters covered by the sovereignty or jurisdiction of Ireland, the United Kingdom, the Netherlands, Belgium, and the portions of the waters of Denmark, Germany, and Sweden that occur west of the Kattegat, Portugal and Spain (excluding the waters around the Macaronesian bio-geographical region: that is the waters surrounding the Azores, Maderia (PT) and Canary Islands (ES)).<br/> + -- Name --<br/>steppic<br/><br/>-- Definition --<br/>Within the EU, the Steppic Region is found only in one Member State: Romania. Beyond the EU it develops into a vast band of vegetation that stretches out over southern Moldova, Ukraine, Russia and western Kazakhstan. It eventually continues all the way across Asia to the foothills to the Altai Mountains on the borders of Mongolia.<br/><br/>
    @@ -631,7 +631,7 @@ - Public
      marineBaltic + Public
      blackSea @@ -680,7 +680,7 @@ Notes: - -- Name --<br/>marine baltic<br/><br/>-- Definition --<br/>The entire extent of marine waters covered by the sovereignty or jurisdiction of Estonia, Finland ,Latvia, Lithuania and Poland and the portions of these waters of Denmark, Germany and Sweden that that occur east of the Kattegat.<br/> + -- Name --<br/>black sea<br/><br/>-- Definition --<br/>The Black Sea Region runs anticlockwise around the Black Sea from Romania and Bulgaria, through northern Turkey and onto Georgia. Within the European Union, the region is no more than a thin coastal strip some 20–60 km wide that runs down almost the entire length of Romania and Bulgaria.<br/><br/>
    @@ -689,7 +689,7 @@ - Public
      marineBlackSea + Public
      anatolian @@ -738,7 +738,7 @@ Notes: - -- Name --<br/>marine black sea<br/><br/>-- Definition --<br/>The entire extent of marine waters covered by the sovereignty or jurisdiction of Bulgaria and Romania.<br/><br/> + -- Name --<br/>anatolian<br/><br/>-- Definition --<br/>The region corresponds to the interior and eastern part of the Anatolian peninsula, having no contact with the Black Sea or the Mediterranean. The region extends over three different geographical areas: the central Anatolian Plateau, the east Anatolian mountain range and the northern Mesopotamia.<br/><br/>
    @@ -747,7 +747,7 @@ - Public
      marineMacaronesian + Public
      marineAtlantic @@ -796,7 +796,7 @@ Notes: - -- Name --<br/>marine macaronesian<br/><br/>-- Definition --<br/>The waters surrounding the Macaronesian biogeographical region: that is the waters surrounding the Azores, Maderia (PT) and Canary Islands (ES).<br/><br/> + -- Name --<br/>marine atlantic<br/><br/>-- Definition --<br/>The entire extent of marine waters covered by the sovereignty or jurisdiction of Ireland, the United Kingdom, the Netherlands, Belgium, and the portions of the waters of Denmark, Germany, and Sweden that occur west of the Kattegat, Portugal and Spain (excluding the waters around the Macaronesian bio-geographical region: that is the waters surrounding the Azores, Maderia (PT) and Canary Islands (ES)).<br/>
    @@ -805,7 +805,7 @@ - Public
      marineMediterranean + Public
      marineBaltic @@ -854,7 +854,7 @@ Notes: - -- Name --<br/>marine mediterranean<br/><br/>-- Definition --<br/>The entire extent of marine waters covered by the sovereignty or jurisdiction of Member States and the portions of these waters of France and Spainthat occur within the geographical entity that is the Mediterranean Sea.<br/><br/> + -- Name --<br/>marine baltic<br/><br/>-- Definition --<br/>The entire extent of marine waters covered by the sovereignty or jurisdiction of Estonia, Finland ,Latvia, Lithuania and Poland and the portions of these waters of Denmark, Germany and Sweden that that occur east of the Kattegat.<br/>
    @@ -863,7 +863,7 @@ - Public
      mediterranean + Public
      marineBlackSea @@ -912,7 +912,7 @@ Notes: - -- Name --<br/>mediterranean<br/><br/>-- Definition --<br/>The Mediterranean basin stretches c.3, 800 km east to west from the tip of Portugal to the shores of Lebanon and c.1, 000 km north to south from Italy to Morocco and Libya. Within the European Union, the Mediterranean Region encompasses seven Member States either partially (France, Portugal, Italy, Spain) or completely (Greece, Malta, Cyprus).<br/><br/> + -- Name --<br/>marine black sea<br/><br/>-- Definition --<br/>The entire extent of marine waters covered by the sovereignty or jurisdiction of Bulgaria and Romania.<br/><br/>
    @@ -921,7 +921,7 @@ - Public
      pannonian + Public
      marineMacaronesian @@ -970,7 +970,7 @@ Notes: - -- Name --<br/>pannonian<br/><br/>-- Definition --<br/>The Pannonian Region is dominated by a large flat alluvial basin that is transected from north to south by two major rivers – the Danube and Tisza. Once an ancient inland sea, the basin is almost completely enclosed on all sides by low-lying hills and mountains. To the north and east lie the Carpathians, to the west the Alps and, to the south, the Dinarics. All of Hungary is included in the Pannonian Region as are peripheral areas of Slovakia, the Czech Republic and Romania within the EU, and outside the EU Serbia and Ukraine.<br/> + -- Name --<br/>marine macaronesian<br/><br/>-- Definition --<br/>The waters surrounding the Macaronesian biogeographical region: that is the waters surrounding the Azores, Maderia (PT) and Canary Islands (ES).<br/><br/>
    @@ -979,7 +979,7 @@ - Public
      steppic + Public
      marineMediterranean @@ -1028,7 +1028,7 @@ Notes: - -- Name --<br/>steppic<br/><br/>-- Definition --<br/>Within the EU, the Steppic Region is found only in one Member State: Romania. Beyond the EU it develops into a vast band of vegetation that stretches out over southern Moldova, Ukraine, Russia and western Kazakhstan. It eventually continues all the way across Asia to the foothills to the Altai Mountains on the borders of Mongolia.<br/><br/> + -- Name --<br/>marine mediterranean<br/><br/>-- Definition --<br/>The entire extent of marine waters covered by the sovereignty or jurisdiction of Member States and the portions of these waters of France and Spainthat occur within the geographical entity that is the Mediterranean Sea.<br/><br/>
    diff --git a/approved/html/EARoot/EA2/EA3/EA5/EA1/EA1/EA8321.htm b/approved/html/EARoot/EA2/EA3/EA5/EA1/EA1/EA8321.htm index 5f2f28f06..57a9c5b5a 100644 --- a/approved/html/EARoot/EA2/EA3/EA5/EA1/EA1/EA8321.htm +++ b/approved/html/EARoot/EA2/EA3/EA5/EA1/EA1/EA8321.htm @@ -341,7 +341,7 @@ - Public
      forestSteppesMeadowSteppesAlternatingWithDeciduousBroadleavedForestsAndDryGrasslandsAlternatingWithXerophyticScrub + Public
      vegetationOfFloodplainsEstuariesAndFreshwaterPoldersAndOtherMoistOrWetSites @@ -390,7 +390,7 @@ Notes: - -- Name --<br/>forest steppes and dry grasslands alternating with xerophytic scrub<br/><br/>-- Definition --<br/>Forest steppes (meadow steppes alternating with deciduous broad-leaved forests) and dry grasslands alternating with xerophytic scrub.<br/> + -- Name --<br/>vegetation of flood-plains estuaries and fresh-water polders and other moist or wet sites<br/><br/>-- Definition --<br/>Vegetation of flood-plains, estuaries and fresh-water polders and other moist or wet sites.<br/>
    @@ -399,7 +399,7 @@ - Public
      hygrothermophilousMixedDeciduousBroadleavedForests + Public
      forestSteppesMeadowSteppesAlternatingWithDeciduousBroadleavedForestsAndDryGrasslandsAlternatingWithXerophyticScrub @@ -448,7 +448,7 @@ Notes: - -- Name --<br/>hygro-thermophilous mixed deciduous broad-leaved forests<br/><br/>-- Definition --<br/>Hygro-thermophilous mixed deciduous broad-leaved forests.<br/><br/><br/> + -- Name --<br/>forest steppes and dry grasslands alternating with xerophytic scrub<br/><br/>-- Definition --<br/>Forest steppes (meadow steppes alternating with deciduous broad-leaved forests) and dry grasslands alternating with xerophytic scrub.<br/>
    @@ -457,7 +457,7 @@ - Public
      mediterraneanSclerophyllousForestsAndScrub + Public
      hygrothermophilousMixedDeciduousBroadleavedForests @@ -506,7 +506,7 @@ Notes: - -- Name --<br/>mediterranean sclerophyllous forests and scrub<br/><br/>-- Definition --<br/>Mediterranean sclerophyllous forests and scrub.<br/> + -- Name --<br/>hygro-thermophilous mixed deciduous broad-leaved forests<br/><br/>-- Definition --<br/>Hygro-thermophilous mixed deciduous broad-leaved forests.<br/><br/><br/>
    @@ -515,7 +515,7 @@ - Public
      mesophyticAndHygromesophyticConiferousAndMixedBroadleavedConiferousForests + Public
      mediterraneanSclerophyllousForestsAndScrub @@ -564,7 +564,7 @@ Notes: - -- Name --<br/>mesophytic and hygromesophytic coniferous and mixed broad-leaved-coniferous forests<br/><br/>-- Definition --<br/>Mesophytic and hygromesophytic coniferous and mixed broad-leaved-coniferous forests.<br/> + -- Name --<br/>mediterranean sclerophyllous forests and scrub<br/><br/>-- Definition --<br/>Mediterranean sclerophyllous forests and scrub.<br/>
    @@ -573,7 +573,7 @@ - Public
      mesophyticDeciduousBroadleavedAndMixedConiferousBroadleavedForests + Public
      mesophyticAndHygromesophyticConiferousAndMixedBroadleavedConiferousForests @@ -622,7 +622,7 @@ Notes: - -- Name --<br/>mesophytic deciduous broad-leaved and mixed coniferous-broad-leaved forests<br/><br/>-- Definition --<br/>Mesophytic deciduous broad-leaved and mixed coniferous-broad-leaved forests.<br/> + -- Name --<br/>mesophytic and hygromesophytic coniferous and mixed broad-leaved-coniferous forests<br/><br/>-- Definition --<br/>Mesophytic and hygromesophytic coniferous and mixed broad-leaved-coniferous forests.<br/> @@ -631,7 +631,7 @@ - Public
      mires + Public
      mesophyticDeciduousBroadleavedAndMixedConiferousBroadleavedForests @@ -680,7 +680,7 @@ Notes: - -- Name --<br/>mires<br/><br/>-- Definition --<br/>Mires.<br/><br/> + -- Name --<br/>mesophytic deciduous broad-leaved and mixed coniferous-broad-leaved forests<br/><br/>-- Definition --<br/>Mesophytic deciduous broad-leaved and mixed coniferous-broad-leaved forests.<br/> @@ -689,7 +689,7 @@ - Public
      oroxerophyticVegetationThornushionCommunitiesTomillaresMountainSteppesPartlyScrub + Public
      mires @@ -738,7 +738,7 @@ Notes: - -- Name --<br/>oroxerophytic vegetation<br/><br/>-- Definition --<br/>Oroxerophytic vegetation (thorn-cushion communities, tomillares, mountain steppes, partly scrub).<br/> + -- Name --<br/>mires<br/><br/>-- Definition --<br/>Mires.<br/><br/> @@ -747,7 +747,7 @@ - Public
      polarDesertsAndSubnivalNivalVegetationOfHighMountains + Public
      oroxerophyticVegetationThornushionCommunitiesTomillaresMountainSteppesPartlyScrub @@ -796,7 +796,7 @@ Notes: - -- Name --<br/>polar deserts and subnival-nival vegetation of high mountains<br/><br/>-- Definition --<br/>Polar deserts and subnival-nival vegetation of high mountains.<br/> + -- Name --<br/>oroxerophytic vegetation<br/><br/>-- Definition --<br/>Oroxerophytic vegetation (thorn-cushion communities, tomillares, mountain steppes, partly scrub).<br/> @@ -805,7 +805,7 @@ - Public
      steppes + Public
      polarDesertsAndSubnivalNivalVegetationOfHighMountains @@ -854,7 +854,7 @@ Notes: - -- Name --<br/>steppes<br/><br/>-- Definition --<br/>Steppes.<br/> + -- Name --<br/>polar deserts and subnival-nival vegetation of high mountains<br/><br/>-- Definition --<br/>Polar deserts and subnival-nival vegetation of high mountains.<br/> @@ -863,7 +863,7 @@ - Public
      subarcticBorealAndNemoralMontaneOpenWoodlandsAsWellAsSubalpineAndOromediterraneanVegetation + Public
      tallReedVegetationAndTallSedgeSwampsAquaticVegetation @@ -912,7 +912,7 @@ Notes: - -- Name --<br/>subarctic boreal subalpine<br/><br/>-- Definition --<br/>Subarctic, boreal and nemoral-montane open woodlands as well as subalpine and oro-Mediterranean vegetation.<br/> + -- Name --<br/>tall reed vegetation and tall sedge swamps aquatic vegetation<br/><br/>-- Definition --<br/>Tall reed vegetation and tall sedge swamps, aquatic vegetation.<br/> @@ -921,7 +921,7 @@ - Public
      swampAndFenForests + Public
      steppes @@ -970,7 +970,7 @@ Notes: - -- Name --<br/>swamp and fen forests<br/><br/>-- Definition --<br/>Swamp and fen forests.<br/> + -- Name --<br/>steppes<br/><br/>-- Definition --<br/>Steppes.<br/> @@ -979,7 +979,7 @@ - Public
      tallReedVegetationAndTallSedgeSwampsAquaticVegetation + Public
      subarcticBorealAndNemoralMontaneOpenWoodlandsAsWellAsSubalpineAndOromediterraneanVegetation @@ -1028,7 +1028,7 @@ Notes: - -- Name --<br/>tall reed vegetation and tall sedge swamps aquatic vegetation<br/><br/>-- Definition --<br/>Tall reed vegetation and tall sedge swamps, aquatic vegetation.<br/> + -- Name --<br/>subarctic boreal subalpine<br/><br/>-- Definition --<br/>Subarctic, boreal and nemoral-montane open woodlands as well as subalpine and oro-Mediterranean vegetation.<br/> @@ -1037,7 +1037,7 @@ - Public
      thermophilousMixedDeciduousBroadleavedForests + Public
      swampAndFenForests @@ -1086,7 +1086,7 @@ Notes: - -- Name --<br/>thermophilous mixed deciduous broad-leaved forests<br/><br/>-- Definition --<br/>Thermophilous mixed deciduous broad-leaved forests.<br/> + -- Name --<br/>swamp and fen forests<br/><br/>-- Definition --<br/>Swamp and fen forests.<br/> @@ -1095,7 +1095,7 @@ - Public
      vegetationOfFloodplainsEstuariesAndFreshwaterPoldersAndOtherMoistOrWetSites + Public
      thermophilousMixedDeciduousBroadleavedForests @@ -1144,7 +1144,7 @@ Notes: - -- Name --<br/>vegetation of flood-plains estuaries and fresh-water polders and other moist or wet sites<br/><br/>-- Definition --<br/>Vegetation of flood-plains, estuaries and fresh-water polders and other moist or wet sites.<br/> + -- Name --<br/>thermophilous mixed deciduous broad-leaved forests<br/><br/>-- Definition --<br/>Thermophilous mixed deciduous broad-leaved forests.<br/> diff --git a/approved/html/EARoot/EA2/EA3/EA5/EA1/EA1/EA8322.htm b/approved/html/EARoot/EA2/EA3/EA5/EA1/EA1/EA8322.htm index 58f35ec47..4b04a9efd 100644 --- a/approved/html/EARoot/EA2/EA3/EA5/EA1/EA1/EA8322.htm +++ b/approved/html/EARoot/EA2/EA3/EA5/EA1/EA1/EA8322.htm @@ -166,7 +166,7 @@ - Public
      local + Public
      national @@ -215,7 +215,7 @@ Notes: - -- Name --<br/>local<br/><br/>-- Definition --<br/>This is a region classification on the local level.<br/><br/> + -- Name --<br/>national<br/><br/>-- Definition --<br/>This is a region classification on the national level.<br/><br/> @@ -224,7 +224,7 @@ - Public
      national + Public
      regional @@ -273,7 +273,7 @@ Notes: - -- Name --<br/>national<br/><br/>-- Definition --<br/>This is a region classification on the national level.<br/><br/> + -- Name --<br/>regional<br/><br/>-- Definition --<br/>This is a region classification on the regional level.<br/><br/> @@ -282,7 +282,7 @@ - Public
      regional + Public
      local @@ -331,7 +331,7 @@ Notes: - -- Name --<br/>regional<br/><br/>-- Definition --<br/>This is a region classification on the regional level.<br/><br/> + -- Name --<br/>local<br/><br/>-- Definition --<br/>This is a region classification on the local level.<br/><br/> diff --git a/approved/html/EARoot/EA2/EA3/EA5/EA1/EA1/EA8323.htm b/approved/html/EARoot/EA2/EA3/EA5/EA1/EA1/EA8323.htm index e13726bc7..29e847d05 100644 --- a/approved/html/EARoot/EA2/EA3/EA5/EA1/EA1/EA8323.htm +++ b/approved/html/EARoot/EA2/EA3/EA5/EA1/EA1/EA8323.htm @@ -108,7 +108,7 @@ - Public
      environmentalStratification + Public
      natura2000AndEmeraldBio-geographicalRegion @@ -157,7 +157,7 @@ Notes: - -- Name --<br/>environmental stratification<br/><br/>-- Definition --<br/>A set of code lists to be used to define the Environmental Stratification.<br/><br/> + -- Name --<br/>natura 2000 and emerald bio-geographical region<br/><br/>-- Definition --<br/>A set of code lists to be used to define the Natura 2000 and Emerald network Biogeographical regions.<br/><br/> @@ -166,7 +166,7 @@ - Public
      marineStrategyFrameworkDirective + Public
      environmentalStratification @@ -215,7 +215,7 @@ Notes: - -- Name --<br/>marine strategy framework directive<br/><br/>-- Definition --<br/>A set of codes to be used for the Marine Stategy Framework Diretive region classification.<br/><br/> + -- Name --<br/>environmental stratification<br/><br/>-- Definition --<br/>A set of code lists to be used to define the Environmental Stratification.<br/><br/> @@ -224,7 +224,7 @@ - Public
      natura2000AndEmeraldBio-geographicalRegion + Public
      naturalVegetation @@ -273,7 +273,7 @@ Notes: - -- Name --<br/>natura 2000 and emerald bio-geographical region<br/><br/>-- Definition --<br/>A set of code lists to be used to define the Natura 2000 and Emerald network Biogeographical regions.<br/><br/> + -- Name --<br/>natural vegetation<br/><br/>-- Definition --<br/>A set of code lists to be used to define the natural vegetation.<br/><br/> @@ -282,7 +282,7 @@ - Public
      naturalVegetation + Public
      marineStrategyFrameworkDirective @@ -331,7 +331,7 @@ Notes: - -- Name --<br/>natural vegetation<br/><br/>-- Definition --<br/>A set of code lists to be used to define the natural vegetation.<br/><br/> + -- Name --<br/>marine strategy framework directive<br/><br/>-- Definition --<br/>A set of codes to be used for the Marine Stategy Framework Diretive region classification.<br/><br/> diff --git a/approved/html/EARoot/EA2/EA3/EA5/EA1/EA2/EA8326.png b/approved/html/EARoot/EA2/EA3/EA5/EA1/EA2/EA8326.png index d48964b79..22327a905 100644 Binary files a/approved/html/EARoot/EA2/EA3/EA5/EA1/EA2/EA8326.png and b/approved/html/EARoot/EA2/EA3/EA5/EA1/EA2/EA8326.png differ diff --git a/approved/html/EARoot/EA2/EA3/EA5/EA1/EA2/EA8328.htm b/approved/html/EARoot/EA2/EA3/EA5/EA1/EA2/EA8328.htm index 8481ef541..1adfc2116 100644 --- a/approved/html/EARoot/EA2/EA3/EA5/EA1/EA2/EA8328.htm +++ b/approved/html/EARoot/EA2/EA3/EA5/EA1/EA2/EA8328.htm @@ -166,7 +166,7 @@ - Public
      balticProvince + Public
      iberic-MacaronesianRegion @@ -215,7 +215,7 @@ Notes: - -- Name --<br/><br/>-- Definition --<br/>The ecoregion is the Baltic provience<br/><br/>-- Description --<br/><br/><br/><br/> + -- Name --<br/><br/>-- Definition --<br/>The ecoregion is the Iberic-Macaronesian region<br/><br/>-- Description --<br/><br/><br/><br/> @@ -224,7 +224,7 @@ - Public
      borealicUplands + Public
      pyrenees @@ -273,7 +273,7 @@ Notes: - -- Name --<br/><br/>-- Definition --<br/>The ecoregion is the Borealic uploads<br/><br/>-- Description --<br/><br/><br/><br/> + -- Name --<br/><br/>-- Definition --<br/>The ecoregion is the Pyrenees<br/><br/>-- Description --<br/><br/><br/><br/> @@ -282,7 +282,7 @@ - Public
      carpathians + Public
      italyCorsicaMalta @@ -331,7 +331,7 @@ Notes: - -- Name --<br/><br/>-- Definition --<br/>The ecoregion is the Carpathians<br/><br/>-- Description --<br/><br/><br/><br/> + -- Name --<br/><br/>-- Definition --<br/>The ecoregion is Italy, Corsica and Malta<br/><br/>-- Description --<br/><br/><br/><br/> @@ -340,7 +340,7 @@ - Public
      caspicDepression + Public
      dinaricWesternBalkan @@ -389,7 +389,7 @@ Notes: - -- Name --<br/><br/>-- Definition --<br/>The ecoregion is the Caspic depression<br/><br/>-- Description --<br/><br/><br/><br/> + -- Name --<br/><br/>-- Definition --<br/>The ecoregion is the Dinaric Western Balkans<br/><br/>-- Description --<br/><br/><br/><br/> @@ -398,7 +398,7 @@ - Public
      caucasus + Public
      hellenicWesternBalkan @@ -447,7 +447,7 @@ Notes: - -- Name --<br/><br/>-- Definition --<br/>The ecoregion is the Caucasus<br/><br/>-- Description --<br/><br/><br/><br/> + -- Name --<br/><br/>-- Definition --<br/>The ecoregion is the Hellenic West Balkans<br/><br/>-- Description --<br/><br/><br/><br/> @@ -456,7 +456,7 @@ - Public
      centralHighlands + Public
      easternBalkan @@ -505,7 +505,7 @@ Notes: - -- Name --<br/><br/>-- Definition --<br/>The ecoregion is the Central Highlands<br/><br/>-- Description --<br/><br/><br/><br/> + -- Name --<br/><br/>-- Definition --<br/>The ecoregion is the Eastern Balkan<br/><br/>-- Description --<br/><br/><br/><br/> @@ -514,7 +514,7 @@ - Public
      centralPlains + Public
      westernHighlands @@ -563,7 +563,7 @@ Notes: - -- Name --<br/><br/>-- Definition --<br/>The ecoregion is the Central Plains<br/><br/>-- Description --<br/><br/><br/><br/> + -- Name --<br/><br/>-- Definition --<br/>The ecoregion is the Western Highlands<br/><br/>-- Description --<br/><br/><br/><br/> @@ -572,7 +572,7 @@ - Public
      dinaricWesternBalkan + Public
      centralHighlands @@ -621,7 +621,7 @@ Notes: - -- Name --<br/><br/>-- Definition --<br/>The ecoregion is the Dinaric Western Balkans<br/><br/>-- Description --<br/><br/><br/><br/> + -- Name --<br/><br/>-- Definition --<br/>The ecoregion is the Central Highlands<br/><br/>-- Description --<br/><br/><br/><br/> @@ -630,7 +630,7 @@ - Public
      easternBalkan + Public
      carpathians @@ -679,7 +679,7 @@ Notes: - -- Name --<br/><br/>-- Definition --<br/>The ecoregion is the Eastern Balkan<br/><br/>-- Description --<br/><br/><br/><br/> + -- Name --<br/><br/>-- Definition --<br/>The ecoregion is the Carpathians<br/><br/>-- Description --<br/><br/><br/><br/> @@ -688,7 +688,7 @@ - Public
      easternPlains + Public
      hungarianLowlands @@ -737,7 +737,7 @@ Notes: - -- Name --<br/><br/>-- Definition --<br/>The ecoregion is the Eastern Plains<br/> <br/>-- Description --<br/><br/><br/><br/> + -- Name --<br/><br/>-- Definition --<br/>The ecoregion is the Hungarian Lowlands<br/><br/>-- Description --<br/><br/><br/><br/> @@ -746,7 +746,7 @@ - Public
      fenno-ScandianShield + Public
      ponticProvince @@ -795,7 +795,7 @@ Notes: - -- Name --<br/><br/>-- Definition --<br/>The ecoregion is the Fenno-Scandian shield<br/><br/>-- Description --<br/><br/><br/><br/> + -- Name --<br/><br/>-- Definition --<br/>The ecoregion is the Pontic Provience<br/><br/>-- Description --<br/><br/><br/><br/> @@ -804,7 +804,7 @@ - Public
      greatBritain + Public
      westernPlains @@ -853,7 +853,7 @@ Notes: - -- Name --<br/><br/>-- Definition --<br/>The ecoregion is Great Britian<br/><br/>-- Description --<br/><br/><br/><br/> + -- Name --<br/><br/>-- Definition --<br/>The ecoregion is the Western Plains<br/><br/>-- Description --<br/><br/><br/><br/> @@ -862,7 +862,7 @@ - Public
      hellenicWesternBalkan + Public
      centralPlains @@ -911,7 +911,7 @@ Notes: - -- Name --<br/><br/>-- Definition --<br/>The ecoregion is the Hellenic West Balkans<br/><br/>-- Description --<br/><br/><br/><br/> + -- Name --<br/><br/>-- Definition --<br/>The ecoregion is the Central Plains<br/><br/>-- Description --<br/><br/><br/><br/> @@ -920,7 +920,7 @@ - Public
      hungarianLowlands + Public
      balticProvince @@ -969,7 +969,7 @@ Notes: - -- Name --<br/><br/>-- Definition --<br/>The ecoregion is the Hungarian Lowlands<br/><br/>-- Description --<br/><br/><br/><br/> + -- Name --<br/><br/>-- Definition --<br/>The ecoregion is the Baltic provience<br/><br/>-- Description --<br/><br/><br/><br/> @@ -978,7 +978,7 @@ - Public
      iberic-MacaronesianRegion + Public
      easternPlains @@ -1027,7 +1027,7 @@ Notes: - -- Name --<br/><br/>-- Definition --<br/>The ecoregion is the Iberic-Macaronesian region<br/><br/>-- Description --<br/><br/><br/><br/> + -- Name --<br/><br/>-- Definition --<br/>The ecoregion is the Eastern Plains<br/> <br/>-- Description --<br/><br/><br/><br/> @@ -1036,7 +1036,7 @@ - Public
      iceland + Public
      irelandAndNorthernIreland @@ -1085,7 +1085,7 @@ Notes: - -- Name --<br/><br/>-- Definition --<br/>The ecoregion is Iceland<br/><br/>-- Description --<br/><br/><br/><br/> + -- Name --<br/><br/>-- Definition --<br/>The ecoregion is Ireland and Northern Ireland<br/><br/>-- Description --<br/><br/><br/><br/> @@ -1094,7 +1094,7 @@ - Public
      irelandAndNorthernIreland + Public
      greatBritain @@ -1143,7 +1143,7 @@ Notes: - -- Name --<br/><br/>-- Definition --<br/>The ecoregion is Ireland and Northern Ireland<br/><br/>-- Description --<br/><br/><br/><br/> + -- Name --<br/><br/>-- Definition --<br/>The ecoregion is Great Britian<br/><br/>-- Description --<br/><br/><br/><br/> @@ -1152,7 +1152,7 @@ - Public
      italyCorsicaMalta + Public
      iceland @@ -1201,7 +1201,7 @@ Notes: - -- Name --<br/><br/>-- Definition --<br/>The ecoregion is Italy, Corsica and Malta<br/><br/>-- Description --<br/><br/><br/><br/> + -- Name --<br/><br/>-- Definition --<br/>The ecoregion is Iceland<br/><br/>-- Description --<br/><br/><br/><br/> @@ -1210,7 +1210,7 @@ - Public
      ponticProvince + Public
      borealicUplands @@ -1259,7 +1259,7 @@ Notes: - -- Name --<br/><br/>-- Definition --<br/>The ecoregion is the Pontic Provience<br/><br/>-- Description --<br/><br/><br/><br/> + -- Name --<br/><br/>-- Definition --<br/>The ecoregion is the Borealic uploads<br/><br/>-- Description --<br/><br/><br/><br/> @@ -1268,7 +1268,7 @@ - Public
      pyrenees + Public
      tundra @@ -1317,7 +1317,7 @@ Notes: - -- Name --<br/><br/>-- Definition --<br/>The ecoregion is the Pyrenees<br/><br/>-- Description --<br/><br/><br/><br/> + -- Name --<br/><br/>-- Definition --<br/>The ecoregion is the Tundra<br/><br/>-- Description --<br/><br/><br/><br/> @@ -1326,7 +1326,7 @@ - Public
      taiga + Public
      fenno-ScandianShield @@ -1375,7 +1375,7 @@ Notes: - -- Name --<br/><br/>-- Definition --<br/>The ecoregion is the Taiga<br/><br/>-- Description --<br/><br/><br/><br/> + -- Name --<br/><br/>-- Definition --<br/>The ecoregion is the Fenno-Scandian shield<br/><br/>-- Description --<br/><br/><br/><br/> @@ -1384,7 +1384,7 @@ - Public
      tundra + Public
      taiga @@ -1433,7 +1433,7 @@ Notes: - -- Name --<br/><br/>-- Definition --<br/>The ecoregion is the Tundra<br/><br/>-- Description --<br/><br/><br/><br/> + -- Name --<br/><br/>-- Definition --<br/>The ecoregion is the Taiga<br/><br/>-- Description --<br/><br/><br/><br/> @@ -1442,7 +1442,7 @@ - Public
      westernHighlands + Public
      caucasus @@ -1491,7 +1491,7 @@ Notes: - -- Name --<br/><br/>-- Definition --<br/>The ecoregion is the Western Highlands<br/><br/>-- Description --<br/><br/><br/><br/> + -- Name --<br/><br/>-- Definition --<br/>The ecoregion is the Caucasus<br/><br/>-- Description --<br/><br/><br/><br/> @@ -1500,7 +1500,7 @@ - Public
      westernPlains + Public
      caspicDepression @@ -1549,7 +1549,7 @@ Notes: - -- Name --<br/><br/>-- Definition --<br/>The ecoregion is the Western Plains<br/><br/>-- Description --<br/><br/><br/><br/> + -- Name --<br/><br/>-- Definition --<br/>The ecoregion is the Caspic depression<br/><br/>-- Description --<br/><br/><br/><br/> diff --git a/approved/html/EARoot/EA2/EA3/EA6/EA1/EA1/EA8338.png b/approved/html/EARoot/EA2/EA3/EA6/EA1/EA1/EA8338.png index 9c534accb..533b865a2 100644 Binary files a/approved/html/EARoot/EA2/EA3/EA6/EA1/EA1/EA8338.png and b/approved/html/EARoot/EA2/EA3/EA6/EA1/EA1/EA8338.png differ diff --git a/approved/html/EARoot/EA2/EA3/EA6/EA1/EA1/EA8340.png b/approved/html/EARoot/EA2/EA3/EA6/EA1/EA1/EA8340.png index 1e0cf1603..b10fb78e1 100644 Binary files a/approved/html/EARoot/EA2/EA3/EA6/EA1/EA1/EA8340.png and b/approved/html/EARoot/EA2/EA3/EA6/EA1/EA1/EA8340.png differ diff --git a/approved/html/EARoot/EA2/EA3/EA6/EA1/EA1/EA8342.png b/approved/html/EARoot/EA2/EA3/EA6/EA1/EA1/EA8342.png index decd38a67..d36612024 100644 Binary files a/approved/html/EARoot/EA2/EA3/EA6/EA1/EA1/EA8342.png and b/approved/html/EARoot/EA2/EA3/EA6/EA1/EA1/EA8342.png differ diff --git a/approved/html/EARoot/EA2/EA3/EA6/EA1/EA1/EA8344.png b/approved/html/EARoot/EA2/EA3/EA6/EA1/EA1/EA8344.png index f7d71b7f7..c57d0ecad 100644 Binary files a/approved/html/EARoot/EA2/EA3/EA6/EA1/EA1/EA8344.png and b/approved/html/EARoot/EA2/EA3/EA6/EA1/EA1/EA8344.png differ diff --git a/approved/html/EARoot/EA2/EA3/EA6/EA1/EA1/EA8346.png b/approved/html/EARoot/EA2/EA3/EA6/EA1/EA1/EA8346.png index 2fd719cc9..2cf170634 100644 Binary files a/approved/html/EARoot/EA2/EA3/EA6/EA1/EA1/EA8346.png and b/approved/html/EARoot/EA2/EA3/EA6/EA1/EA1/EA8346.png differ diff --git a/approved/html/EARoot/EA2/EA3/EA6/EA1/EA1/EA8348.png b/approved/html/EARoot/EA2/EA3/EA6/EA1/EA1/EA8348.png index ce743098a..c3e88d464 100644 Binary files a/approved/html/EARoot/EA2/EA3/EA6/EA1/EA1/EA8348.png and b/approved/html/EARoot/EA2/EA3/EA6/EA1/EA1/EA8348.png differ diff --git a/approved/html/EARoot/EA2/EA3/EA6/EA1/EA1/EA8350.png b/approved/html/EARoot/EA2/EA3/EA6/EA1/EA1/EA8350.png index bf8b84abd..a41d7718c 100644 Binary files a/approved/html/EARoot/EA2/EA3/EA6/EA1/EA1/EA8350.png and b/approved/html/EARoot/EA2/EA3/EA6/EA1/EA1/EA8350.png differ diff --git a/approved/html/EARoot/EA2/EA3/EA6/EA1/EA1/EA8374.htm b/approved/html/EARoot/EA2/EA3/EA6/EA1/EA1/EA8374.htm index 3887c45cb..2fa51d629 100644 --- a/approved/html/EARoot/EA2/EA3/EA6/EA1/EA1/EA8374.htm +++ b/approved/html/EARoot/EA2/EA3/EA6/EA1/EA1/EA8374.htm @@ -111,7 +111,7 @@ - Public CharacterString
      additionalDescription + Public Identifier
      inspireId @@ -129,7 +129,7 @@ Stereotype: - <<voidable>> + Ordered: @@ -137,7 +137,7 @@ Range: - Range:0 to 1 + Transient: @@ -160,7 +160,7 @@ Notes: - -- Definition --<br/>Plain text description of additional information not fitting in other attributes.<br/> + -- Definition --<br/>External object identifier.<br/><br/> @@ -169,7 +169,7 @@ - Public GM_Object
      geometry + Public CharacterString
      name @@ -187,7 +187,7 @@ Stereotype: - + <<voidable>> Ordered: @@ -195,7 +195,7 @@ Range: - Range:0 to 1 + Range:0 to * Transient: @@ -218,7 +218,7 @@ Notes: - -- Definition --<br/>Geometry associated to the AbstractMonitoringObject.<br/>For mobile facilities the geometry represents the area the facility is expected to measure in.<br/> + -- Definition --<br/>Plain text denotation of the AbstractMonitoringObject.<br/> @@ -227,7 +227,7 @@ - Public Identifier
      inspireId + Public CharacterString
      additionalDescription @@ -245,7 +245,7 @@ Stereotype: - + <<voidable>> Ordered: @@ -253,7 +253,7 @@ Range: - + Range:0 to 1 Transient: @@ -276,7 +276,7 @@ Notes: - -- Definition --<br/>External object identifier.<br/><br/> + -- Definition --<br/>Plain text description of additional information not fitting in other attributes.<br/> @@ -285,7 +285,7 @@ - Public LegislationCitation
      legalBackground + Public MediaValue
      mediaMonitored @@ -303,7 +303,7 @@ Stereotype: - <<voidable>> + Ordered: @@ -311,7 +311,7 @@ Range: - Range:0 to * + Transient: @@ -334,7 +334,7 @@ Notes: - -- Definition --<br/>The legal context, in which the management and regulation of the AbstractMonitoringObject is defined.<br/><br/> + -- Definition --<br/>Monitored environmental medium.<br/><br/> @@ -343,7 +343,7 @@ - Public MediaValue
      mediaMonitored + Public LegislationCitation
      legalBackground @@ -361,7 +361,7 @@ Stereotype: - + <<voidable>> Ordered: @@ -369,7 +369,7 @@ Range: - + Range:0 to * Transient: @@ -392,7 +392,7 @@ Notes: - -- Definition --<br/>Monitored environmental medium.<br/><br/> + -- Definition --<br/>The legal context, in which the management and regulation of the AbstractMonitoringObject is defined.<br/><br/> @@ -401,7 +401,7 @@ - Public CharacterString
      name + Public RelatedParty
      responsibleParty @@ -450,7 +450,7 @@ Notes: - -- Definition --<br/>Plain text denotation of the AbstractMonitoringObject.<br/> + -- Definition --<br/>Responsible party for the AbstractMonitoringObject.<br/> @@ -459,7 +459,7 @@ - Public URL
      onlineResource + Public GM_Object
      geometry @@ -477,7 +477,7 @@ Stereotype: - <<voidable>> + Ordered: @@ -485,7 +485,7 @@ Range: - Range:0 to * + Range:0 to 1 Transient: @@ -508,7 +508,7 @@ Notes: - -- Definition --<br/>A link to an external document providing further information on the AbstractMonitoringObject.<br/> + -- Definition --<br/>Geometry associated to the AbstractMonitoringObject.<br/>For mobile facilities the geometry represents the area the facility is expected to measure in.<br/> @@ -517,7 +517,7 @@ - Public PurposeOfCollectionValue
      purpose + Public URL
      onlineResource @@ -566,7 +566,7 @@ Notes: - -- Definition --<br/>Reason for which the AbstractMonitoringObject has been generated.<br/><br/> + -- Definition --<br/>A link to an external document providing further information on the AbstractMonitoringObject.<br/> @@ -575,7 +575,7 @@ - Public RelatedParty
      responsibleParty + Public PurposeOfCollectionValue
      purpose @@ -624,7 +624,7 @@ Notes: - -- Definition --<br/>Responsible party for the AbstractMonitoringObject.<br/> + -- Definition --<br/>Reason for which the AbstractMonitoringObject has been generated.<br/><br/> diff --git a/approved/html/EARoot/EA2/EA3/EA6/EA1/EA1/EA8376.htm b/approved/html/EARoot/EA2/EA3/EA6/EA1/EA1/EA8376.htm index 5f2d5eec0..925d6f4e5 100644 --- a/approved/html/EARoot/EA2/EA3/EA6/EA1/EA1/EA8376.htm +++ b/approved/html/EARoot/EA2/EA3/EA6/EA1/EA1/EA8376.htm @@ -109,7 +109,7 @@ - Public CharacterString
      activityConditions + Public TM_Object
      activityTime @@ -158,7 +158,7 @@ Notes: - -- Definition --<br/>Textual description of the EnvironmentalMonitoringActivity.<br/><br/> + -- Definition --<br/>Lifespan of the EnvironmentalMonitoringActivity.<br/><br/> @@ -167,7 +167,7 @@ - Public TM_Object
      activityTime + Public CharacterString
      activityConditions @@ -216,7 +216,7 @@ Notes: - -- Definition --<br/>Lifespan of the EnvironmentalMonitoringActivity.<br/><br/> + -- Definition --<br/>Textual description of the EnvironmentalMonitoringActivity.<br/><br/> @@ -283,7 +283,7 @@ - Public Identifier
      inspireId + Public RelatedParty
      responsibleParty @@ -301,7 +301,7 @@ Stereotype: - + <<voidable>> Ordered: @@ -332,7 +332,7 @@ Notes: - -- Definition --<br/>External object identifier.<br/><br/> + -- Definition --<br/>Responsible party for the EnvironmentalMonitoringActivity.<br/> @@ -341,7 +341,7 @@ - Public URL
      onlineResource + Public Identifier
      inspireId @@ -359,7 +359,7 @@ Stereotype: - <<voidable>> + Ordered: @@ -367,7 +367,7 @@ Range: - Range:0 to * + Transient: @@ -390,7 +390,7 @@ Notes: - -- Definition --<br/>A link to an external document providing further information on the EnvironmentalMonitoringActivity.<br/> + -- Definition --<br/>External object identifier.<br/><br/> @@ -399,7 +399,7 @@ - Public RelatedParty
      responsibleParty + Public URL
      onlineResource @@ -425,7 +425,7 @@ Range: - + Range:0 to * Transient: @@ -448,7 +448,7 @@ Notes: - -- Definition --<br/>Responsible party for the EnvironmentalMonitoringActivity.<br/> + -- Definition --<br/>A link to an external document providing further information on the EnvironmentalMonitoringActivity.<br/> diff --git a/approved/html/EARoot/EA2/EA3/EA6/EA1/EA1/EA8377.htm b/approved/html/EARoot/EA2/EA3/EA6/EA1/EA1/EA8377.htm index be6aa0448..20686ec1e 100644 --- a/approved/html/EARoot/EA2/EA3/EA6/EA1/EA1/EA8377.htm +++ b/approved/html/EARoot/EA2/EA3/EA6/EA1/EA1/EA8377.htm @@ -112,7 +112,7 @@ - Public MeasurementRegimeValue
      measurementRegime + Public GM_Point
      representativePoint @@ -138,7 +138,7 @@ Range: - + Range:0 to 1 Transient: @@ -161,7 +161,7 @@ Notes: - -- Definition --<br/>Regime of the measurement<br/><br/> + -- Definition --<br/>Representative location for the EnvironmentalMonitoringFacility.<br/><br/>-- Description --<br/> @@ -170,7 +170,7 @@ - Public Boolean
      mobile + Public MeasurementRegimeValue
      measurementRegime @@ -219,7 +219,7 @@ Notes: - -- Definition --<br/>Indicate whether the EnvironmentalMonitoringFacility is mobile (repositionable) during the acquisition of the observation.<br/><br/> + -- Definition --<br/>Regime of the measurement<br/><br/> @@ -228,7 +228,7 @@ - Public GM_Point
      representativePoint + Public Boolean
      mobile @@ -254,7 +254,7 @@ Range: - Range:0 to 1 + Transient: @@ -277,7 +277,7 @@ Notes: - -- Definition --<br/>Representative location for the EnvironmentalMonitoringFacility.<br/><br/>-- Description --<br/> + -- Definition --<br/>Indicate whether the EnvironmentalMonitoringFacility is mobile (repositionable) during the acquisition of the observation.<br/><br/> diff --git a/approved/html/EARoot/EA2/EA3/EA6/EA1/EA1/EA8384.htm b/approved/html/EARoot/EA2/EA3/EA6/EA1/EA1/EA8384.htm index 2f8f9c878..1835351e1 100644 --- a/approved/html/EARoot/EA2/EA3/EA6/EA1/EA1/EA8384.htm +++ b/approved/html/EARoot/EA2/EA3/EA6/EA1/EA1/EA8384.htm @@ -168,7 +168,7 @@ - Public URL
      onlineResource + Public ProcessTypeValue
      processType @@ -194,7 +194,7 @@ Range: - Range:0 to 1 + Transient: @@ -217,7 +217,7 @@ Notes: - -- Definition --<br/>A link to an external document providing further information about an ISO 19156 'Observations and Measurements' compliant data model used to store or exchange Observations and Measurements acquired. <br/> + -- Definition --<br/>The type of object used for describing the process.<br/><br/> @@ -226,7 +226,7 @@ - Public ProcessTypeValue
      processType + Public ResultNatureValue
      resultNature @@ -275,7 +275,7 @@ Notes: - -- Definition --<br/>The type of object used for describing the process.<br/><br/> + -- Definition --<br/>State of the provided result.<br/><br/> @@ -284,7 +284,7 @@ - Public ResultNatureValue
      resultNature + Public URL
      onlineResource @@ -310,7 +310,7 @@ Range: - + Range:0 to 1 Transient: @@ -333,7 +333,7 @@ Notes: - -- Definition --<br/>State of the provided result.<br/><br/> + -- Definition --<br/>A link to an external document providing further information about an ISO 19156 'Observations and Measurements' compliant data model used to store or exchange Observations and Measurements acquired. <br/> diff --git a/approved/html/EARoot/EA2/EA3/EA6/EA1/EA1/EA8388.htm b/approved/html/EARoot/EA2/EA3/EA6/EA1/EA1/EA8388.htm index 3d6d277b3..0813f406e 100644 --- a/approved/html/EARoot/EA2/EA3/EA6/EA1/EA1/EA8388.htm +++ b/approved/html/EARoot/EA2/EA3/EA6/EA1/EA1/EA8388.htm @@ -108,7 +108,7 @@ - Public CharacterString
      description + Public LegislationCitation
      legalAct @@ -126,7 +126,7 @@ Stereotype: - <<voidable>> + Ordered: @@ -134,7 +134,7 @@ Range: - Range:0 to 1 + Transient: @@ -157,7 +157,7 @@ Notes: - -- Definition --<br/>Additional information on the actual data reported.<br/> + -- Definition --<br/>LegalAct which is reported to.<br/><br/> @@ -166,7 +166,7 @@ - Public LegislationCitation
      legalAct + Public DateTime
      reportDate @@ -184,7 +184,7 @@ Stereotype: - + <<voidable>> Ordered: @@ -215,7 +215,7 @@ Notes: - -- Definition --<br/>LegalAct which is reported to.<br/><br/> + -- Definition --<br/>Time of reporting.<br/><br/> @@ -224,7 +224,7 @@ - Public Boolean
      observationRequired + Public URI
      reportedEnvelope @@ -250,7 +250,7 @@ Range: - + Range:0 to 1 Transient: @@ -273,7 +273,7 @@ Notes: - -- Definition --<br/>Indicates whether an observation is required for the AbstractMonitoringFeature.<br/><br/> + -- Definition --<br/>Link to the reported data set according to the date indicated in the attribute reportDate.<br/> @@ -282,7 +282,7 @@ - Public Boolean
      observingCapabilityRequired + Public Boolean
      observationRequired @@ -331,7 +331,7 @@ Notes: - -- Definition --<br/>Indicates whether the observingCapability is required for the AbstractMonitoringFeature.<br/><br/> + -- Definition --<br/>Indicates whether an observation is required for the AbstractMonitoringFeature.<br/><br/> @@ -340,7 +340,7 @@ - Public DateTime
      reportDate + Public Boolean
      observingCapabilityRequired @@ -389,7 +389,7 @@ Notes: - -- Definition --<br/>Time of reporting.<br/><br/> + -- Definition --<br/>Indicates whether the observingCapability is required for the AbstractMonitoringFeature.<br/><br/> @@ -398,7 +398,7 @@ - Public URI
      reportedEnvelope + Public CharacterString
      description @@ -447,7 +447,7 @@ Notes: - -- Definition --<br/>Link to the reported data set according to the date indicated in the attribute reportDate.<br/> + -- Definition --<br/>Additional information on the actual data reported.<br/> diff --git a/approved/html/EARoot/EA2/EA3/EA8/EA1/EA8698.png b/approved/html/EARoot/EA2/EA3/EA8/EA1/EA8698.png index 0ac3c84e6..75af7ac3f 100644 Binary files a/approved/html/EARoot/EA2/EA3/EA8/EA1/EA8698.png and b/approved/html/EARoot/EA2/EA3/EA8/EA1/EA8698.png differ diff --git a/approved/html/EARoot/EA2/EA3/EA8/EA1/EA8701.htm b/approved/html/EARoot/EA2/EA3/EA8/EA1/EA8701.htm index 399d6eeeb..9b3be9dc3 100644 --- a/approved/html/EARoot/EA2/EA3/EA8/EA1/EA8701.htm +++ b/approved/html/EARoot/EA2/EA3/EA8/EA1/EA8701.htm @@ -108,7 +108,7 @@ - Public GM_Object
      geometry + Public Identifier
      inspireId @@ -134,7 +134,7 @@ Range: - + Range:0 to 1 Transient: @@ -157,7 +157,7 @@ Notes: - -- Name --<br/>geometry<br/><br/>-- Definition --<br/>The extent of the habitat based on natural boundaries.<br/><br/>-- Description --<br/>NOTE 1 Can be polygons, lines or points. <br/>NOTE 2 Can also support 3-dimensional features.<br/><br/> + -- Name --<br/>inspire id<br/><br/>-- Definition --<br/>External object identifier of the spatial object.<br/><br/>-- Description --<br/>An external object identifier is a unique object identifier published by the responsible body, which may be used by external applications to reference the spatial object. The identifier is an identifier of the spatial object, not an identifier of the real-world phenomenon.<br/> @@ -166,7 +166,7 @@ - Public HabitatTypeCoverType
      habitat + Public GM_Object
      geometry @@ -215,7 +215,7 @@ Notes: - -- Name --<br/>habitat type<br/><br/>-- Definition --<br/>The identifier for a habitat class, defined and described in an international, national or local habitat classification scheme.<br/><br/>-- Description --<br/>Habitats and biotopes may be common in some characteristics on a certain level of detail and may thus be classified as abstract types: e.g.  as woodland, pastures, heathland – referring to their vegetation structure  - or as running waters, limestone rocks or sand dunes  - referring to abiotic features   - but also as wintering areas, nesting areas or wandering corridors etc. - referring to relevant phases for the life-cycle of a certain species or ecological guild. These typological classes are usually organised in classification systems (e.g. EUNIS habitat classification).<br/><br/> + -- Name --<br/>geometry<br/><br/>-- Definition --<br/>The extent of the habitat based on natural boundaries.<br/><br/>-- Description --<br/>NOTE 1 Can be polygons, lines or points. <br/>NOTE 2 Can also support 3-dimensional features.<br/><br/> @@ -224,7 +224,7 @@ - Public HabitatSpeciesType
      habitatSpecies + Public HabitatTypeCoverType
      habitat @@ -242,7 +242,7 @@ Stereotype: - <<voidable>> + Ordered: @@ -250,7 +250,7 @@ Range: - Range:0 to * + Transient: @@ -273,7 +273,7 @@ Notes: - -- Name --<br/>habitat species<br/><br/>-- Definition --<br/>List of species which occur in or constitute a certain habitat at the time of mapping.<br/><br/> + -- Name --<br/>habitat type<br/><br/>-- Definition --<br/>The identifier for a habitat class, defined and described in an international, national or local habitat classification scheme.<br/><br/>-- Description --<br/>Habitats and biotopes may be common in some characteristics on a certain level of detail and may thus be classified as abstract types: e.g.  as woodland, pastures, heathland – referring to their vegetation structure  - or as running waters, limestone rocks or sand dunes  - referring to abiotic features   - but also as wintering areas, nesting areas or wandering corridors etc. - referring to relevant phases for the life-cycle of a certain species or ecological guild. These typological classes are usually organised in classification systems (e.g. EUNIS habitat classification).<br/><br/> @@ -282,7 +282,7 @@ - Public HabitatVegetationType
      habitatVegetation + Public HabitatSpeciesType
      habitatSpecies @@ -331,7 +331,7 @@ Notes: - -- Name --<br/>habitat vegetation<br/><br/>-- Definition --<br/>List of vegetation types which constitute a certain habitat.<br/><br/>-- Description --<br/>The cover of plants may be common in some characteristics on a certain level of detail and may thus be classified by vegetation science as abstract types.<br/><br/>E.g. vegetation may be classified as Tundra or Mediterranean Deciduous Forests – referring to their structure and their bio-geographic formations  - or as Nordic vegetation type 5141 Koeleria glauca-Typ or Ranunculetum fluitantis  - referring to their floristic composition - or as chamaephytes or hemi-cryptophytes - referring to structural traits etc.<br/><br/>Many vegetation type classification systems exist all over Europe. Some of these systems have a deep hierarchical structure. Therefore it is recommended to register the vegetation type scheme which was used.<br/><br/> + -- Name --<br/>habitat species<br/><br/>-- Definition --<br/>List of species which occur in or constitute a certain habitat at the time of mapping.<br/><br/> @@ -340,7 +340,7 @@ - Public Identifier
      inspireId + Public HabitatVegetationType
      habitatVegetation @@ -358,7 +358,7 @@ Stereotype: - + <<voidable>> Ordered: @@ -366,7 +366,7 @@ Range: - Range:0 to 1 + Range:0 to * Transient: @@ -389,7 +389,7 @@ Notes: - -- Name --<br/>inspire id<br/><br/>-- Definition --<br/>External object identifier of the spatial object.<br/><br/>-- Description --<br/>An external object identifier is a unique object identifier published by the responsible body, which may be used by external applications to reference the spatial object. The identifier is an identifier of the spatial object, not an identifier of the real-world phenomenon.<br/> + -- Name --<br/>habitat vegetation<br/><br/>-- Definition --<br/>List of vegetation types which constitute a certain habitat.<br/><br/>-- Description --<br/>The cover of plants may be common in some characteristics on a certain level of detail and may thus be classified by vegetation science as abstract types.<br/><br/>E.g. vegetation may be classified as Tundra or Mediterranean Deciduous Forests – referring to their structure and their bio-geographic formations  - or as Nordic vegetation type 5141 Koeleria glauca-Typ or Ranunculetum fluitantis  - referring to their floristic composition - or as chamaephytes or hemi-cryptophytes - referring to structural traits etc.<br/><br/>Many vegetation type classification systems exist all over Europe. Some of these systems have a deep hierarchical structure. Therefore it is recommended to register the vegetation type scheme which was used.<br/><br/> diff --git a/approved/html/EARoot/EA2/EA3/EA8/EA1/EA8703.htm b/approved/html/EARoot/EA2/EA3/EA8/EA1/EA8703.htm index baf986fe5..bfeb7ee9d 100644 --- a/approved/html/EARoot/EA2/EA3/EA8/EA1/EA8703.htm +++ b/approved/html/EARoot/EA2/EA3/EA8/EA1/EA8703.htm @@ -108,7 +108,7 @@ - Public LocalNameType
      localSpeciesName + Public ReferenceSpeciesCodeValue
      referenceSpeciesId @@ -126,7 +126,7 @@ Stereotype: - <<voidable>> + Ordered: @@ -134,7 +134,7 @@ Range: - Range:0 to 1 + Transient: @@ -150,14 +150,14 @@ - + obligation=implementingRule
    Notes: - -- Name --<br/>local species name<br/><br/>-- Definition --<br/>Scientific name plus author used in national nomenclature with its national taxonomic concept.<br/><br/>-- Description --<br/>The LocalSpeciesName provides nomenclatural and taxonomical information about the locally used species name and the taxonomic concepts implied by the use of this name according to a given reference. If omitted the name and concept given by the referenceSpeciesId according to the referenceSpeciesScheme has been used locally.<br/><br/> + -- Name --<br/>reference species id<br/><br/>-- Definition --<br/>Identifier of one of the reference lists given by the referenceSpeciesScheme.<br/><br/>
    @@ -166,7 +166,7 @@ - Public ReferenceSpeciesCodeValue
      referenceSpeciesId + Public ReferenceSpeciesSchemeValue
      referenceSpeciesScheme @@ -215,7 +215,7 @@ Notes: - -- Name --<br/>reference species id<br/><br/>-- Definition --<br/>Identifier of one of the reference lists given by the referenceSpeciesScheme.<br/><br/> + -- Name --<br/>reference species scheme<br/><br/>-- Definition --<br/>Reference list defining a nomenclatural and taxonomical standard to which all local species names and taxonomic concepts shall be mapped to.<br/><br/>-- Description --<br/>Closed codelist of accepted PAN-european taxonomical reference lists defining the nomenclature and taxonomical concept of a given species name. This must not be regarded as the ultimate taxonomic truth: this will always change. It serves as a definition of a taxonomic concept described by systematic and synonym relations where other names and there inherent taxonomic concepts can be mapped to. The code list comprises of Eu-Nomen, EUNIS and Natura2000. In these sources harmonized species GUIDs and names are maintained by institutions with an assignment outside INSPIRE and the species names are to be retrieved through webservices using GUIDs. Only one of these list must be used for one taxon. The priority is as follows: 1) EU-Nomen, 2) EUNIS, 3) NatureDirectives. This implies: if a taxon is listed in EU-Nomen, this reference must be used as first choice. If it is not listed in EU-Nomen, the second choice is EUNIS, if not in EUNIS, NatureDirectives can be used.<br/><br/> @@ -224,7 +224,7 @@ - Public ReferenceSpeciesSchemeValue
      referenceSpeciesScheme + Public LocalNameType
      localSpeciesName @@ -242,7 +242,7 @@ Stereotype: - + <<voidable>> Ordered: @@ -250,7 +250,7 @@ Range: - + Range:0 to 1 Transient: @@ -266,14 +266,14 @@ - obligation=implementingRule
    +
    Notes: - -- Name --<br/>reference species scheme<br/><br/>-- Definition --<br/>Reference list defining a nomenclatural and taxonomical standard to which all local species names and taxonomic concepts shall be mapped to.<br/><br/>-- Description --<br/>Closed codelist of accepted PAN-european taxonomical reference lists defining the nomenclature and taxonomical concept of a given species name. This must not be regarded as the ultimate taxonomic truth: this will always change. It serves as a definition of a taxonomic concept described by systematic and synonym relations where other names and there inherent taxonomic concepts can be mapped to. The code list comprises of Eu-Nomen, EUNIS and Natura2000. In these sources harmonized species GUIDs and names are maintained by institutions with an assignment outside INSPIRE and the species names are to be retrieved through webservices using GUIDs. Only one of these list must be used for one taxon. The priority is as follows: 1) EU-Nomen, 2) EUNIS, 3) NatureDirectives. This implies: if a taxon is listed in EU-Nomen, this reference must be used as first choice. If it is not listed in EU-Nomen, the second choice is EUNIS, if not in EUNIS, NatureDirectives can be used.<br/><br/> + -- Name --<br/>local species name<br/><br/>-- Definition --<br/>Scientific name plus author used in national nomenclature with its national taxonomic concept.<br/><br/>-- Description --<br/>The LocalSpeciesName provides nomenclatural and taxonomical information about the locally used species name and the taxonomic concepts implied by the use of this name according to a given reference. If omitted the name and concept given by the referenceSpeciesId according to the referenceSpeciesScheme has been used locally.<br/><br/>
    diff --git a/approved/html/EARoot/EA2/EA3/EA8/EA1/EA8704.htm b/approved/html/EARoot/EA2/EA3/EA8/EA1/EA8704.htm index a79a6f30a..f8e6c8eae 100644 --- a/approved/html/EARoot/EA2/EA3/EA8/EA1/EA8704.htm +++ b/approved/html/EARoot/EA2/EA3/EA8/EA1/EA8704.htm @@ -108,7 +108,7 @@ - Public Area
      areaCovered + Public ReferenceHabitatTypeCodeValue
      referenceHabitatTypeId @@ -126,7 +126,7 @@ Stereotype: - <<voidable>> + Ordered: @@ -134,7 +134,7 @@ Range: - Range:0 to 1 + Transient: @@ -150,14 +150,14 @@ - + obligation=implementingRule
    Notes: - -- Name --<br/>area covered <br/><br/>-- Definition --<br/>The area covered by a certain habitat type within the provided geometry of the habitat spatial object.<br/><br/>-- Description --<br/>The surface area should be expressed in square meters.<br/><br/>It can be used only in the case that the geometry provided in the Habitat feature represents an area in which more than one habitat type exists in other words a complex of different habitat types. In this case, for each habitat type the surface of the covered area can be provided within this attribute.  <br/><br/>Since the geometry provided in the Habitat feature can be larger than the total surface of the habitat types listed within that geometry, the total surface of the habitat types can be smaller than the surface of the provided geometry. On the other hand, since some habitat types may overlap (e.g. subterranean caves / habitat type on the surface) or may cover a steep inclination (cliff) the total area of the habitat types can be bigger than the area of the provided geometry.<br/><br/>EXAMPLE Within a given habitat geometry of 30.2 hectares there are several habitat types, out of which two are natural habitat types of community interest, ”91D0” covering 22.5 hectares and ”7110” covering 5.3 hectares, thus in total are smaller than the total area.<br/><br/> + -- Name --<br/>reference habitat type id<br/><br/>-- Definition --<br/>Habitat type unique identifier (code) according to one Pan-European classification scheme.<br/><br/>-- Description --<br/>EXAMPLE "1110", "40C0", "95A0", etc., if the referenceHabitatScheme is "habitatsDirective", or "A1.111", "A1.1121", "G1.1111", "X34", etc., if the ReferenceHabitatScheme is "eunis".<br/>
    @@ -166,7 +166,7 @@ - Public Length
      lengthCovered + Public ReferenceHabitatTypeSchemeValue
      referenceHabitatTypeScheme @@ -184,7 +184,7 @@ Stereotype: - <<voidable>> + Ordered: @@ -192,7 +192,7 @@ Range: - Range:0 to 1 + Transient: @@ -208,14 +208,14 @@ - + obligation=implementingRule
    Notes: - -- Name --<br/>length covered<br/><br/>-- Definition --<br/>The length covered by a certain habitat type within the provided geometry of the habitat spatial object.<br/><br/>-- Description --<br/>The length should be expressed in meters.<br/><br/>EXAMPLE Within a given habitat geometry of 300 square meters there are several habitat types. Two natural habitat types of community interest, ”91F0” and ”9160” cover this total area. However, a third natural habitat types of community interest ”3260” is listed, which is a linear feature and thus expressed in meters of its length (e.g. 120 m).<br/><br/> + -- Name --<br/>reference habitat type scheme<br/><br/>-- Definition --<br/>One of the Pan-European classification schemes, that are widely used in Europe.<br/><br/>-- Description --<br/>The list includes at least the classification of the natural habitat types of community interest listed in Annex I of the Habitats Directive, as well as the hierarchic classification of the habitat types of interest for biodiversity and nature protection listed in the EUNIS database, which is maintained by the EEA.<br/>
    @@ -224,7 +224,7 @@ - Public LocalNameType
      localHabitatName + Public CharacterString
      referenceHabitatTypeName @@ -250,7 +250,7 @@ Range: - Range:0 to 1 + Transient: @@ -273,7 +273,7 @@ Notes: - -- Name --<br/>local habitat name<br/><br/>-- Definition --<br/>Habitat type according to a local habitat classification scheme.<br/><br/>-- Description --<br/>Habitat types used in a certain area (e.g. Mediterranean Sea), or in a certain country, or even more restricted in a certain region, county or any other local level.<br/><br/>It is strongly recommended to register the local classification scheme from which the local habitat names are taken<br/><br/>EXAMPLE Classification of Benthic Marine Habitat Types for the Mediterranean Region, Habitats of Romania, German Biotoptypen, Nordic Vegetation types, UK National Vegetation Classification, etc.<br/><br/><br/> + -- Name --<br/>reference habitat type name<br/><br/>-- Definition --<br/>Name of a habitat type according to one Pan-European classification scheme.<br/><br/>-- Description --<br/>In the given Pan-European habitat classification systems, the habitat types can be identified by both: a short "identifier" (code)  and  a name in natural language, which is meant in this attribute.<br/><br/>EXAMPLE Habitats Directive habitat type 3260 (code) "Floating vegetation of Ranunculus" or "Chenopodietum rubri of submountainous rivers" (name).<br/><br/><br/> @@ -282,7 +282,7 @@ - Public ReferenceHabitatTypeCodeValue
      referenceHabitatTypeId + Public LocalNameType
      localHabitatName @@ -300,7 +300,7 @@ Stereotype: - + <<voidable>> Ordered: @@ -308,7 +308,7 @@ Range: - + Range:0 to 1 Transient: @@ -324,14 +324,14 @@ - obligation=implementingRule
    +
    Notes: - -- Name --<br/>reference habitat type id<br/><br/>-- Definition --<br/>Habitat type unique identifier (code) according to one Pan-European classification scheme.<br/><br/>-- Description --<br/>EXAMPLE "1110", "40C0", "95A0", etc., if the referenceHabitatScheme is "habitatsDirective", or "A1.111", "A1.1121", "G1.1111", "X34", etc., if the ReferenceHabitatScheme is "eunis".<br/> + -- Name --<br/>local habitat name<br/><br/>-- Definition --<br/>Habitat type according to a local habitat classification scheme.<br/><br/>-- Description --<br/>Habitat types used in a certain area (e.g. Mediterranean Sea), or in a certain country, or even more restricted in a certain region, county or any other local level.<br/><br/>It is strongly recommended to register the local classification scheme from which the local habitat names are taken<br/><br/>EXAMPLE Classification of Benthic Marine Habitat Types for the Mediterranean Region, Habitats of Romania, German Biotoptypen, Nordic Vegetation types, UK National Vegetation Classification, etc.<br/><br/><br/>
    @@ -340,7 +340,7 @@ - Public CharacterString
      referenceHabitatTypeName + Public Area
      areaCovered @@ -366,7 +366,7 @@ Range: - + Range:0 to 1 Transient: @@ -389,7 +389,7 @@ Notes: - -- Name --<br/>reference habitat type name<br/><br/>-- Definition --<br/>Name of a habitat type according to one Pan-European classification scheme.<br/><br/>-- Description --<br/>In the given Pan-European habitat classification systems, the habitat types can be identified by both: a short "identifier" (code)  and  a name in natural language, which is meant in this attribute.<br/><br/>EXAMPLE Habitats Directive habitat type 3260 (code) "Floating vegetation of Ranunculus" or "Chenopodietum rubri of submountainous rivers" (name).<br/><br/><br/> + -- Name --<br/>area covered <br/><br/>-- Definition --<br/>The area covered by a certain habitat type within the provided geometry of the habitat spatial object.<br/><br/>-- Description --<br/>The surface area should be expressed in square meters.<br/><br/>It can be used only in the case that the geometry provided in the Habitat feature represents an area in which more than one habitat type exists in other words a complex of different habitat types. In this case, for each habitat type the surface of the covered area can be provided within this attribute.  <br/><br/>Since the geometry provided in the Habitat feature can be larger than the total surface of the habitat types listed within that geometry, the total surface of the habitat types can be smaller than the surface of the provided geometry. On the other hand, since some habitat types may overlap (e.g. subterranean caves / habitat type on the surface) or may cover a steep inclination (cliff) the total area of the habitat types can be bigger than the area of the provided geometry.<br/><br/>EXAMPLE Within a given habitat geometry of 30.2 hectares there are several habitat types, out of which two are natural habitat types of community interest, ”91D0” covering 22.5 hectares and ”7110” covering 5.3 hectares, thus in total are smaller than the total area.<br/><br/> @@ -398,7 +398,7 @@ - Public ReferenceHabitatTypeSchemeValue
      referenceHabitatTypeScheme + Public Length
      lengthCovered @@ -416,7 +416,7 @@ Stereotype: - + <<voidable>> Ordered: @@ -424,7 +424,7 @@ Range: - + Range:0 to 1 Transient: @@ -440,14 +440,14 @@ - obligation=implementingRule
    +
    Notes: - -- Name --<br/>reference habitat type scheme<br/><br/>-- Definition --<br/>One of the Pan-European classification schemes, that are widely used in Europe.<br/><br/>-- Description --<br/>The list includes at least the classification of the natural habitat types of community interest listed in Annex I of the Habitats Directive, as well as the hierarchic classification of the habitat types of interest for biodiversity and nature protection listed in the EUNIS database, which is maintained by the EEA.<br/> + -- Name --<br/>length covered<br/><br/>-- Definition --<br/>The length covered by a certain habitat type within the provided geometry of the habitat spatial object.<br/><br/>-- Description --<br/>The length should be expressed in meters.<br/><br/>EXAMPLE Within a given habitat geometry of 300 square meters there are several habitat types. Two natural habitat types of community interest, ”91F0” and ”9160” cover this total area. However, a third natural habitat types of community interest ”3260” is listed, which is a linear feature and thus expressed in meters of its length (e.g. 120 m).<br/><br/>
    diff --git a/approved/html/EARoot/EA2/EA3/EA8/EA1/EA8707.htm b/approved/html/EARoot/EA2/EA3/EA8/EA1/EA8707.htm index b6745617d..5083e9a15 100644 --- a/approved/html/EARoot/EA2/EA3/EA8/EA1/EA8707.htm +++ b/approved/html/EARoot/EA2/EA3/EA8/EA1/EA8707.htm @@ -108,7 +108,7 @@ - Public CharacterString
      localName + Public CharacterString
      localScheme @@ -126,7 +126,7 @@ Stereotype: - <<voidable>> + Ordered: @@ -157,7 +157,7 @@ Notes: - -- Name --<br/>local name<br/><br/>-- Definition --<br/>Name according to a local classification scheme.<br/><br/>-- Description --<br/>Name according to local classification scheme. It is strongly recommended take all local names from a registered classification scheme.<br/><br/> + -- Name --<br/>local scheme<br/><br/>-- Definition --<br/>Uniform resource identifier of a local classification scheme.<br/><br/>-- Description --<br/>Classification scheme, which is used locally and contains all classification types, their codes and/or  very often their names in natural language.<br/><br/>EXAMPLE "http://www.rac-spa.org/sites/default/files/doc_fsd/lchm_en.pdf", for the Classification of Benthic Marine Habitat Types for the Mediterranean Region or "http://www.lifenatura2000.ro/doc/Habitatele din Romania.pdf", for the Romanian habitats classification.<br/><br/><br/> @@ -224,7 +224,7 @@ - Public CharacterString
      localScheme + Public CharacterString
      localName @@ -242,7 +242,7 @@ Stereotype: - + <<voidable>> Ordered: @@ -273,7 +273,7 @@ Notes: - -- Name --<br/>local scheme<br/><br/>-- Definition --<br/>Uniform resource identifier of a local classification scheme.<br/><br/>-- Description --<br/>Classification scheme, which is used locally and contains all classification types, their codes and/or  very often their names in natural language.<br/><br/>EXAMPLE "http://www.rac-spa.org/sites/default/files/doc_fsd/lchm_en.pdf", for the Classification of Benthic Marine Habitat Types for the Mediterranean Region or "http://www.lifenatura2000.ro/doc/Habitatele din Romania.pdf", for the Romanian habitats classification.<br/><br/><br/> + -- Name --<br/>local name<br/><br/>-- Definition --<br/>Name according to a local classification scheme.<br/><br/>-- Description --<br/>Name according to local classification scheme. It is strongly recommended take all local names from a registered classification scheme.<br/><br/> diff --git a/approved/html/EARoot/EA2/EA3/EA9/EA1/EA8717.png b/approved/html/EARoot/EA2/EA3/EA9/EA1/EA8717.png index 2ff4d0a40..b1610bdc9 100644 Binary files a/approved/html/EARoot/EA2/EA3/EA9/EA1/EA8717.png and b/approved/html/EARoot/EA2/EA3/EA9/EA1/EA8717.png differ diff --git a/approved/html/EARoot/EA2/EA3/EA9/EA1/EA8727.png b/approved/html/EARoot/EA2/EA3/EA9/EA1/EA8727.png index 7392ed121..359db12e9 100644 Binary files a/approved/html/EARoot/EA2/EA3/EA9/EA1/EA8727.png and b/approved/html/EARoot/EA2/EA3/EA9/EA1/EA8727.png differ diff --git a/approved/html/EARoot/EA2/EA3/EA9/EA1/EA8729.png b/approved/html/EARoot/EA2/EA3/EA9/EA1/EA8729.png index 715524b0a..ba3727335 100644 Binary files a/approved/html/EARoot/EA2/EA3/EA9/EA1/EA8729.png and b/approved/html/EARoot/EA2/EA3/EA9/EA1/EA8729.png differ diff --git a/approved/html/EARoot/EA2/EA3/EA9/EA1/EA8734.htm b/approved/html/EARoot/EA2/EA3/EA9/EA1/EA8734.htm index dc1993bed..8b647e2c6 100644 --- a/approved/html/EARoot/EA2/EA3/EA9/EA1/EA8734.htm +++ b/approved/html/EARoot/EA2/EA3/EA9/EA1/EA8734.htm @@ -107,7 +107,7 @@ - Public Age
      range + Public Age
      startAge @@ -156,7 +156,7 @@ Notes: - -- Name --<br/>range<br/><br/>-- Definition -- <br/>Duration of age interval.<br/><br/> + -- Name --<br/>start age<br/><br/>-- Definition -- <br/>Beginning of age interval.<br/><br/> @@ -165,7 +165,7 @@ - Public Age
      startAge + Public Age
      range @@ -214,7 +214,7 @@ Notes: - -- Name --<br/>start age<br/><br/>-- Definition -- <br/>Beginning of age interval.<br/><br/> + -- Name --<br/>range<br/><br/>-- Definition -- <br/>Duration of age interval.<br/><br/> diff --git a/approved/html/EARoot/EA2/EA3/EA9/EA1/EA8737.htm b/approved/html/EARoot/EA2/EA3/EA9/EA1/EA8737.htm index 483ce5e02..e822c1eeb 100644 --- a/approved/html/EARoot/EA2/EA3/EA9/EA1/EA8737.htm +++ b/approved/html/EARoot/EA2/EA3/EA9/EA1/EA8737.htm @@ -108,7 +108,7 @@ - Public Measure
      CI95ofGM + Public Measure
      geometricMean @@ -157,26 +157,16 @@ Notes: - -- Name --<br/>CI95 geometric mean<br/><br/>-- Definition --<br/>95% confidence interval of the geometric mean.<br/><br/> + -- Name --<br/>Geometric mean<br/><br/>-- Definition --<br/>The geometric mean. <br/><br/> - Constraints:
    OCL GMfilled - - - - - -
    - - - ::/*The CI95ofGM attribute is mandatory when the geometric mean is filled.  */

    inv: self.geometricMean->notEmpty implies self.CI95ofGM -> notEmpty -
    + - Public Measure
      CI95ofP95 + Public Measure
      CI95ofGM @@ -225,16 +215,26 @@ Notes: - -- Name --<br/>CI95 percentile 95<br/><br/>-- Definition --<br/>95% confidence interval of the percentile 95.<br/><br/> + -- Name --<br/>CI95 geometric mean<br/><br/>-- Definition --<br/>95% confidence interval of the geometric mean.<br/><br/> - + Constraints:
    OCL GMfilled + + + + + +
    + + + ::/*The CI95ofGM attribute is mandatory when the geometric mean is filled.  */

    inv: self.geometricMean->notEmpty implies self.CI95ofGM -> notEmpty +
    - Public Measure
      geometricMean + Public Measure
      P50 @@ -283,7 +283,7 @@ Notes: - -- Name --<br/>Geometric mean<br/><br/>-- Definition --<br/>The geometric mean. <br/><br/> + -- Name --<br/>Percentile 50<br/><br/>-- Definition -- <br/>The 50<sup>th</sup> Percentile or median value. Value below which 50 percent of the observations may be found.<br/><br/> @@ -292,7 +292,7 @@ - Public Real
      LOQ + Public Measure
      P90 @@ -341,7 +341,7 @@ Notes: - -- Name --<br/>Limit of quantification<br/><br/>-- Definition --<br/>Limit of quantification.<br/><br/> + -- Name --<br/>Percentile 90<br/><br/>-- Definition -- <br/>The 90<sup>th</sup> Percentile. The value below which 90 percent of the observations may be found.<br/><br/> @@ -350,7 +350,7 @@ - Public Measure
      maximum + Public Measure
      P95 @@ -399,7 +399,7 @@ Notes: - -- Name --<br/>maximum value<br/><br/>-- Definition --<br/>The highest biomarker value determined in an individual participant in the biomonitoring survey.<br/><br/> + -- Name --<br/>Percentile 95<br/><br/>-- Definition -- <br/>The 95<sup>th</sup> Percentile. The value below which 95 percent of the observations may be found.<br/><br/> @@ -408,7 +408,7 @@ - Public Integer
      numberOfPartecipants + Public Measure
      CI95ofP95 @@ -434,7 +434,7 @@ Range: - + Range:0 to 1 Transient: @@ -457,7 +457,7 @@ Notes: - -- Name --<br/>Number of partecipants<br/><br/>-- Definition --<br/>The number of participants that have provided samples that have contributed to the calculation of the biomarker statistical parameter.<br/><br/> + -- Name --<br/>CI95 percentile 95<br/><br/>-- Definition --<br/>95% confidence interval of the percentile 95.<br/><br/> @@ -466,7 +466,7 @@ - Public Measure
      P50 + Public Measure
      maximum @@ -515,7 +515,7 @@ Notes: - -- Name --<br/>Percentile 50<br/><br/>-- Definition -- <br/>The 50<sup>th</sup> Percentile or median value. Value below which 50 percent of the observations may be found.<br/><br/> + -- Name --<br/>maximum value<br/><br/>-- Definition --<br/>The highest biomarker value determined in an individual participant in the biomonitoring survey.<br/><br/> @@ -524,7 +524,7 @@ - Public Measure
      P90 + Public Integer
      numberOfPartecipants @@ -550,7 +550,7 @@ Range: - Range:0 to 1 + Transient: @@ -573,7 +573,7 @@ Notes: - -- Name --<br/>Percentile 90<br/><br/>-- Definition -- <br/>The 90<sup>th</sup> Percentile. The value below which 90 percent of the observations may be found.<br/><br/> + -- Name --<br/>Number of partecipants<br/><br/>-- Definition --<br/>The number of participants that have provided samples that have contributed to the calculation of the biomarker statistical parameter.<br/><br/> @@ -582,7 +582,7 @@ - Public Measure
      P95 + Public Real
      pinLOD @@ -631,7 +631,7 @@ Notes: - -- Name --<br/>Percentile 95<br/><br/>-- Definition -- <br/>The 95<sup>th</sup> Percentile. The value below which 95 percent of the observations may be found.<br/><br/> + -- Name --<br/>Limit of detection<br/><br/>-- Definition --<br/>Proportion of individuals with undetectable levels of tested parameter (below limit of detection).<br/><br/> @@ -640,7 +640,7 @@ - Public Real
      pinLOD + Public Real
      LOQ @@ -689,7 +689,7 @@ Notes: - -- Name --<br/>Limit of detection<br/><br/>-- Definition --<br/>Proportion of individuals with undetectable levels of tested parameter (below limit of detection).<br/><br/> + -- Name --<br/>Limit of quantification<br/><br/>-- Definition --<br/>Limit of quantification.<br/><br/> diff --git a/approved/html/EARoot/EA2/EA3/EA9/EA1/EA8738.htm b/approved/html/EARoot/EA2/EA3/EA9/EA1/EA8738.htm index 009a6aa7f..42c825335 100644 --- a/approved/html/EARoot/EA2/EA3/EA9/EA1/EA8738.htm +++ b/approved/html/EARoot/EA2/EA3/EA9/EA1/EA8738.htm @@ -108,7 +108,7 @@ - Public PT_FreeText
      areaType + Public PT_FreeText
      studyType @@ -157,7 +157,7 @@ Notes: - -- Name --<br/>Area type<br/><br/>-- Definition --<br/>The characteristics of the sampling area (urban, rural, semi-urban) when these choices are predefined in a human biomonitoring study.<br/><br/> + -- Name --<br/>Study type<br/><br/>-- Definition --<br/>The aim of the study (hypothesis driven, general population survey, opportunistic) when these choices are predefined.<br/><br/> @@ -166,7 +166,7 @@ - Public Age
      meanAge + Public PT_FreeText
      areaType @@ -192,7 +192,7 @@ Range: - + Range:0 to 1 Transient: @@ -215,7 +215,7 @@ Notes: - -- Name --<br/>Mean age<br/><br/>-- Definition --<br/>The mean age of the specific sub population.<br/><br/> + -- Name --<br/>Area type<br/><br/>-- Definition --<br/>The characteristics of the sampling area (urban, rural, semi-urban) when these choices are predefined in a human biomonitoring study.<br/><br/> @@ -282,7 +282,7 @@ - Public PT_FreeText
      studyType + Public Age
      meanAge @@ -308,7 +308,7 @@ Range: - Range:0 to 1 + Transient: @@ -331,7 +331,7 @@ Notes: - -- Name --<br/>Study type<br/><br/>-- Definition --<br/>The aim of the study (hypothesis driven, general population survey, opportunistic) when these choices are predefined.<br/><br/> + -- Name --<br/>Mean age<br/><br/>-- Definition --<br/>The mean age of the specific sub population.<br/><br/> diff --git a/approved/html/EARoot/EA2/EA3/EA9/EA1/EA8743.htm b/approved/html/EARoot/EA2/EA3/EA9/EA1/EA8743.htm index 65b24ab29..9933a6226 100644 --- a/approved/html/EARoot/EA2/EA3/EA9/EA1/EA8743.htm +++ b/approved/html/EARoot/EA2/EA3/EA9/EA1/EA8743.htm @@ -167,7 +167,7 @@ - Public CODValue
      COD + Public DiseaseMeasure
      diseaseMeasure @@ -193,7 +193,7 @@ Range: - Range:0 to 1 + Transient: @@ -209,14 +209,14 @@ - obligation=implementingRule
    +
    Notes: - -- Name --<br/>Cause of death<br/><br/>-- Definition --<br/>Data on causes of death (COD) that provide information on mortality patterns and form a major element of public health information. <br/><br/><br/> + -- Name --<br/>Disease measure<br/><br/>-- Definition --<br/>Different ways how data on diseases and related health problems in a population can be reported.<br/><br/><br/>
    @@ -225,7 +225,7 @@ - Public DiseaseMeasure
      diseaseMeasure + Public GenderValue
      gender @@ -243,7 +243,7 @@ Stereotype: - + <<voidable>> Ordered: @@ -267,14 +267,14 @@ - + obligation=technicalGuidance
    Notes: - -- Name --<br/>Disease measure<br/><br/>-- Definition --<br/>Different ways how data on diseases and related health problems in a population can be reported.<br/><br/><br/> + -- Name --<br/>Gender<br/><br/>-- Definition --<br/>Gender of the population considered.<br/><br/>
    @@ -283,7 +283,7 @@ - Public GenderValue
      gender + Public ReferencePeriodType
      referencePeriod @@ -301,7 +301,7 @@ Stereotype: - <<voidable>> + Ordered: @@ -325,14 +325,14 @@ - obligation=technicalGuidance
    +
    Notes: - -- Name --<br/>Gender<br/><br/>-- Definition --<br/>Gender of the population considered.<br/><br/> + -- Name --<br/>Reference period<br/><br/><br/>-- Definition -- <br/>The time period to which data refers.<br/><br/>
    @@ -399,7 +399,7 @@ - Public ReferencePeriodType
      referencePeriod + Public CODValue
      COD @@ -425,7 +425,7 @@ Range: - + Range:0 to 1 Transient: @@ -441,14 +441,14 @@ - + obligation=implementingRule
    Notes: - -- Name --<br/>Reference period<br/><br/><br/>-- Definition -- <br/>The time period to which data refers.<br/><br/> + -- Name --<br/>Cause of death<br/><br/>-- Definition --<br/>Data on causes of death (COD) that provide information on mortality patterns and form a major element of public health information. <br/><br/><br/>
    diff --git a/approved/html/EARoot/EA2/EA3/EA9/EA1/EA8746.htm b/approved/html/EARoot/EA2/EA3/EA9/EA1/EA8746.htm index 12c725d9a..9dce380cc 100644 --- a/approved/html/EARoot/EA2/EA3/EA9/EA1/EA8746.htm +++ b/approved/html/EARoot/EA2/EA3/EA9/EA1/EA8746.htm @@ -107,7 +107,7 @@ - Public DateTime
      beginLifespanVersion + Public GM_Object
      location @@ -125,7 +125,7 @@ Stereotype: - <<voidable>> + Ordered: @@ -156,7 +156,7 @@ Notes: - -- Name --<br/>begin lifespan version<br/>-- Definition --<br/>Date and time at which this version of the spatial object was inserted or changed in the spatial data set.<br/><br/><br/> + -- Name --<br/>Location<br/><br/>-- Definition --<br/>The location of the measurement.<br/><br/>-- Description --<br/>This location should be a point geometry in most cases.<br/><br/> @@ -165,7 +165,7 @@ - Public DateTime
      endLifespanVersion + Public EnvHealthDeterminantTypeValue
      type @@ -183,7 +183,7 @@ Stereotype: - <<voidable>> + Ordered: @@ -191,7 +191,7 @@ Range: - Range:0 to 1 + Transient: @@ -207,14 +207,14 @@ - + obligation=technicalGuidance
    Notes: - -- Name --<br/>end lifespan version<br/>-- Definition --<br/>Date and time at which this version of the spatial object was superseded or retired in the spatial data set. <br/><br/><br/> + -- Name --<br/>Type<br/><br/>-- Definition --<br/>The type of environmental health determinant.<br/><br/>
    @@ -223,7 +223,7 @@ - Public GM_Object
      location + Public TM_Period
      measureTime @@ -272,7 +272,7 @@ Notes: - -- Name --<br/>Location<br/><br/>-- Definition --<br/>The location of the measurement.<br/><br/>-- Description --<br/>This location should be a point geometry in most cases.<br/><br/> + -- Name --<br/>measure time<br/>-- Definition --<br/>The time period when the measure has been performed.<br/><br/> @@ -281,7 +281,7 @@ - Public TM_Period
      measureTime + Public DateTime
      beginLifespanVersion @@ -299,7 +299,7 @@ Stereotype: - + <<voidable>> Ordered: @@ -330,7 +330,7 @@ Notes: - -- Name --<br/>measure time<br/>-- Definition --<br/>The time period when the measure has been performed.<br/><br/> + -- Name --<br/>begin lifespan version<br/>-- Definition --<br/>Date and time at which this version of the spatial object was inserted or changed in the spatial data set.<br/><br/><br/> @@ -339,7 +339,7 @@ - Public EnvHealthDeterminantTypeValue
      type + Public DateTime
      endLifespanVersion @@ -357,7 +357,7 @@ Stereotype: - + <<voidable>> Ordered: @@ -365,7 +365,7 @@ Range: - + Range:0 to 1 Transient: @@ -381,14 +381,14 @@ - obligation=technicalGuidance
    +
    Notes: - -- Name --<br/>Type<br/><br/>-- Definition --<br/>The type of environmental health determinant.<br/><br/> + -- Name --<br/>end lifespan version<br/>-- Definition --<br/>Date and time at which this version of the spatial object was superseded or retired in the spatial data set. <br/><br/><br/>
    diff --git a/approved/html/EARoot/EA2/EA3/EA9/EA1/EA8761.htm b/approved/html/EARoot/EA2/EA3/EA9/EA1/EA8761.htm index e950e5d29..7ecfbcd49 100644 --- a/approved/html/EARoot/EA2/EA3/EA9/EA1/EA8761.htm +++ b/approved/html/EARoot/EA2/EA3/EA9/EA1/EA8761.htm @@ -107,7 +107,7 @@ - Public Date
      endDate + Public Date
      startDate @@ -156,7 +156,7 @@ Notes: - -- Name --<br/>End date<br/><br/>-- Definition -- <br/>End of reference period.<br/><br/> + -- Name --<br/>Start date<br/><br/>-- Definition -- <br/>Start of reference period.<br/><br/> @@ -165,7 +165,7 @@ - Public Date
      startDate + Public Date
      endDate @@ -214,7 +214,7 @@ Notes: - -- Name --<br/>Start date<br/><br/>-- Definition -- <br/>Start of reference period.<br/><br/> + -- Name --<br/>End date<br/><br/>-- Definition -- <br/>End of reference period.<br/><br/> diff --git a/approved/html/EARoot/EA2/EA3/EA9/EA1/EA8766.htm b/approved/html/EARoot/EA2/EA3/EA9/EA1/EA8766.htm index 9f3c48af8..d922a50a2 100644 --- a/approved/html/EARoot/EA2/EA3/EA9/EA1/EA8766.htm +++ b/approved/html/EARoot/EA2/EA3/EA9/EA1/EA8766.htm @@ -109,7 +109,7 @@ - Public AgeRangeType
      ageRange + Public BiomarkerType
      biomarkerName @@ -151,14 +151,14 @@ - + obligation=technicalGuidance
    Notes: - -- Name --<br/>Age range<br/><br/><br/>-- Definition --<br/>Age interval of a specific subpopulation expressed as starting age and an interval, both alternatively expressed in years, months or weeks. <br/><br/> + -- Name --<br/>Biomarker name<br/><br/>-- Definition --<br/>It is the unique identifier for a biomarker, providing information on the chemical that is determined and the matrix in which the chemical was determined.<br/><br/>
    @@ -167,7 +167,7 @@ - Public BiomarkerType
      biomarkerName + Public BiomarkerStatisticalParameterType
      biomarkerStatisticalParameter @@ -209,14 +209,14 @@ - obligation=technicalGuidance
    +
    Notes: - -- Name --<br/>Biomarker name<br/><br/>-- Definition --<br/>It is the unique identifier for a biomarker, providing information on the chemical that is determined and the matrix in which the chemical was determined.<br/><br/> + -- Name --<br/>Biomarker statistical parameter<br/><br/>-- Definition --<br/>The statistical summary of a human biomonitoring study, representing the most important statistical features of a biomarker measured in that particular study.<br/><br/>
    @@ -225,7 +225,7 @@ - Public BiomarkerStatisticalParameterType
      biomarkerStatisticalParameter + Public ReferencePeriodType
      referencePeriod @@ -274,7 +274,7 @@ Notes: - -- Name --<br/>Biomarker statistical parameter<br/><br/>-- Definition --<br/>The statistical summary of a human biomonitoring study, representing the most important statistical features of a biomarker measured in that particular study.<br/><br/> + -- Name --<br/>Reference period<br/><br/><br/>-- Definition -- <br/>The time period to which data is referred to.<br/><br/> @@ -283,7 +283,7 @@ - Public GenderValue
      gender + Public AgeRangeType
      ageRange @@ -325,14 +325,14 @@ - obligation=technicalGuidance
    +
    Notes: - -- Name --<br/>Gender<br/><br/>-- Definition --<br/>Gender of the population considered.<br/><br/><br/> + -- Name --<br/>Age range<br/><br/><br/>-- Definition --<br/>Age interval of a specific subpopulation expressed as starting age and an interval, both alternatively expressed in years, months or weeks. <br/><br/>
    @@ -341,7 +341,7 @@ - Public ReferencePeriodType
      referencePeriod + Public GenderValue
      gender @@ -383,14 +383,14 @@ - + obligation=technicalGuidance
    Notes: - -- Name --<br/>Reference period<br/><br/><br/>-- Definition -- <br/>The time period to which data is referred to.<br/><br/> + -- Name --<br/>Gender<br/><br/>-- Definition --<br/>Gender of the population considered.<br/><br/><br/>
    diff --git a/approved/html/EARoot/EA3/EA1/EA1/EA1/EA9349.htm b/approved/html/EARoot/EA3/EA1/EA1/EA1/EA9349.htm index 087e2a5ce..718d39f81 100644 --- a/approved/html/EARoot/EA3/EA1/EA1/EA1/EA9349.htm +++ b/approved/html/EARoot/EA3/EA1/EA1/EA1/EA9349.htm @@ -113,8 +113,8 @@ -
    Details: -
    +
    Details: +
    Default: FIXME
    Description: Target XML namespace of the application schema
    @@ -126,8 +126,8 @@ -
    Details: -
    +
    Details: +
    Default: FIXME
    Description: Current version of the application schema
    @@ -139,8 +139,8 @@ -
    Details: -
    +
    Details: +
    Default: FIXME
    Description: Namespace prefix to be used as short form of the target namespace
    @@ -152,8 +152,8 @@ -
    Details: -
    +
    Details: +
    Default: FIXME
    Description: Name of an XML Schema document to create representing the content of this package
    @@ -165,8 +165,8 @@ -
    Details: -
    +
    Details: +
    Values: iso19136_2007 | iso19139_2007 | iso19136_2007_INSPIRE_Extensions
    Default: iso19136_2007_INSPIRE_Extensions
    Description: XML Schema encoding rule to apply
    diff --git a/approved/html/EARoot/EA3/EA1/EA1/EA1/EA9350.htm b/approved/html/EARoot/EA3/EA1/EA1/EA1/EA9350.htm index 56f800378..41c371f00 100644 --- a/approved/html/EARoot/EA3/EA1/EA1/EA1/EA9350.htm +++ b/approved/html/EARoot/EA3/EA1/EA1/EA1/EA9350.htm @@ -114,38 +114,38 @@ - Details: + Details: - + - + - + - + - + - + - + - + @@ -172,38 +172,38 @@ @@ -1723,7 +1665,7 @@ Notes:
    - Details: + Details: - + - + - + - + - + - + - + - + @@ -238,8 +238,8 @@ @@ -1665,7 +1607,7 @@ Notes:
    -
    Details: -
    +
    Details: +
    Values: false
    Default: false
    Description: Create a property type that requires that the instance is encoded inline (applies to ISO 19136:2007 encoding rule). Always set to false in INSPIRE.
    @@ -251,8 +251,8 @@
    -
    Details: -
    +
    Details: +
    Values: true | false
    Default: false
    Description: Identifies the feature type as a mixin type that will not be encoded as a separate element/type in the GML encoding.
    @@ -264,8 +264,8 @@
    -
    Details: -
    +
    Details: +
    Default: FIXME
    Description: URN reference to the feature concept in the INSPIRE Feature Concept Dictionary Register
    @@ -277,8 +277,8 @@
    -
    Details: -
    +
    Details: +
    Values: true | false
    Default: false
    Description: Identifies the feature type as a feature collection.
    @@ -290,8 +290,8 @@
    -
    Details: -
    +
    Details: +
    Values: false
    Default: false
    Description: Surpress creation of a standard property type that supports inline or by-reference encoding (applies to ISO 19136:2007 encoding rule). Always set to false in INSPIRE.
    @@ -303,8 +303,8 @@
    -
    Details: -
    +
    Details: +
    Values: iso19136_2007 | iso19139_2007 | iso19136_2007_INSPIRE_Extensions
    Default: iso19136_2007_INSPIRE_Extensions
    Description: XML Schema encoding rule to apply
    diff --git a/approved/html/EARoot/EA3/EA1/EA1/EA2/EA9352.png b/approved/html/EARoot/EA3/EA1/EA1/EA2/EA9352.png index a9c75de69..f51c09884 100644 Binary files a/approved/html/EARoot/EA3/EA1/EA1/EA2/EA9352.png and b/approved/html/EARoot/EA3/EA1/EA1/EA2/EA9352.png differ diff --git a/approved/html/EARoot/EA3/EA1/EA1/EA2/EA9353.htm b/approved/html/EARoot/EA3/EA1/EA1/EA2/EA9353.htm index 70d1bd089..968d1e0b9 100644 --- a/approved/html/EARoot/EA3/EA1/EA1/EA2/EA9353.htm +++ b/approved/html/EARoot/EA3/EA1/EA1/EA2/EA9353.htm @@ -113,8 +113,8 @@
    -
    Details: -
    +
    Details: +
    Default: FIXME
    Description: Target XML namespace of the application schema
    @@ -126,8 +126,8 @@
    -
    Details: -
    +
    Details: +
    Default: FIXME
    Description: Current version of the application schema
    @@ -139,8 +139,8 @@
    -
    Details: -
    +
    Details: +
    Default: FIXME
    Description: Namespace prefix to be used as short form of the target namespace
    @@ -152,8 +152,8 @@
    -
    Details: -
    +
    Details: +
    Default: FIXME
    Description: Name of an XML Schema document to create representing the content of this package
    @@ -165,8 +165,8 @@
    -
    Details: -
    +
    Details: +
    Values: iso19136_2007 | iso19139_2007 | iso19136_2007_INSPIRE_Extensions
    Default: iso19136_2007_INSPIRE_Extensions
    Description: XML Schema encoding rule to apply
    diff --git a/approved/html/EARoot/EA3/EA1/EA1/EA2/EA9358.htm b/approved/html/EARoot/EA3/EA1/EA1/EA2/EA9358.htm index 889b02219..0503487e3 100644 --- a/approved/html/EARoot/EA3/EA1/EA1/EA2/EA9358.htm +++ b/approved/html/EARoot/EA3/EA1/EA1/EA2/EA9358.htm @@ -115,38 +115,38 @@
    - Details: + Details: - + - + - + - + - + - + - + - + @@ -173,38 +173,38 @@ @@ -1607,7 +1549,7 @@ Notes:
    - Details: + Details: - + - + - + - + - + - + - + - + @@ -231,38 +231,38 @@ @@ -1549,7 +1491,7 @@ Notes:
    - Details: + Details: - + - + - + - + - + - + - + - + @@ -297,8 +297,8 @@ @@ -1491,7 +1433,7 @@ Notes:
    -
    Details: -
    +
    Details: +
    Values: false
    Default: false
    Description: Create a property type that requires that the instance is encoded inline (applies to ISO 19136:2007 encoding rule). Always set to false in INSPIRE.
    @@ -310,8 +310,8 @@
    -
    Details: -
    +
    Details: +
    Values: true | false
    Default: false
    Description: Identifies the feature type as a mixin type that will not be encoded as a separate element/type in the GML encoding.
    @@ -323,8 +323,8 @@
    -
    Details: -
    +
    Details: +
    Default: FIXME
    Description: URN reference to the feature concept in the INSPIRE Feature Concept Dictionary Register
    @@ -336,8 +336,8 @@
    -
    Details: -
    +
    Details: +
    Values: true | false
    Default: false
    Description: Identifies the feature type as a feature collection.
    @@ -349,8 +349,8 @@
    -
    Details: -
    +
    Details: +
    Values: false
    Default: false
    Description: Surpress creation of a standard property type that supports inline or by-reference encoding (applies to ISO 19136:2007 encoding rule). Always set to false in INSPIRE.
    @@ -362,8 +362,8 @@
    -
    Details: -
    +
    Details: +
    Values: iso19136_2007 | iso19139_2007 | iso19136_2007_INSPIRE_Extensions
    Default: iso19136_2007_INSPIRE_Extensions
    Description: XML Schema encoding rule to apply
    @@ -385,8 +385,8 @@
    -
    Details: -
    +
    Details: +
    /*The grid function shall only be valid for domains that are grids */<br/>inv: coverageFunction.gridFunction.notEmpty() implies domainSet.oclIsKindOf(CV_Grid)<br/>
    diff --git a/approved/html/EARoot/EA3/EA1/EA1/EA2/EA9359.htm b/approved/html/EARoot/EA3/EA1/EA1/EA2/EA9359.htm index 63a33df70..f64e74bb5 100644 --- a/approved/html/EARoot/EA3/EA1/EA1/EA2/EA9359.htm +++ b/approved/html/EARoot/EA3/EA1/EA1/EA2/EA9359.htm @@ -108,43 +108,43 @@
    - Public GridFunction
      gridFunction + Public CharacterString
      ruleDefinition
    - Details: + Details: - + - + - + - + - + - + - + - + @@ -157,7 +157,7 @@ Notes:
    - -- Name --<br/>grid function<br/><br/>-- Definition --<br/>Mapping rule for grid geometries.<br/> + -- Name --<br/>rule definition<br/><br/>-- Definition --<br/>A formal or informal description of the coverage function as text.<br/>
    @@ -166,43 +166,43 @@
    - Public CharacterString
      ruleDefinition + Public URI
      ruleReference
    - Details: + Details: - + - + - + - + - + - + - + - + @@ -215,7 +215,7 @@ Notes:
    - -- Name --<br/>rule definition<br/><br/>-- Definition --<br/>A formal or informal description of the coverage function as text.<br/> + -- Name --<br/>rule reference<br/><br/>-- Definition --<br/>A formal or informal description of the coverage function as reference.<br/>
    @@ -224,43 +224,43 @@
    - Public URI
      ruleReference + Public GridFunction
      gridFunction
    - Details: + Details: - + - + - + - + - + - + - + - + @@ -273,7 +273,7 @@ Notes:
    - -- Name --<br/>rule reference<br/><br/>-- Definition --<br/>A formal or informal description of the coverage function as reference.<br/> + -- Name --<br/>grid function<br/><br/>-- Definition --<br/>Mapping rule for grid geometries.<br/>
    @@ -295,8 +295,8 @@
    -
    Details: -
    +
    Details: +
    Values: false
    Default: false
    Description: Surpress creation of a standard property type that supports inline encoding (applies to ISO 19136:2007 encoding rule). Always set to false in INSPIRE.
    @@ -308,8 +308,8 @@
    -
    Details: -
    +
    Details: +
    Values: iso19136_2007 | iso19139_2007 | iso19136_2007_INSPIRE_Extensions
    Default: iso19136_2007_INSPIRE_Extensions
    Description: XML Schema encoding rule to apply
    diff --git a/approved/html/EARoot/EA3/EA1/EA1/EA2/EA9360.htm b/approved/html/EARoot/EA3/EA1/EA1/EA2/EA9360.htm index 3bba4d2a2..9ca0c0aa5 100644 --- a/approved/html/EARoot/EA3/EA1/EA1/EA2/EA9360.htm +++ b/approved/html/EARoot/EA3/EA1/EA1/EA2/EA9360.htm @@ -113,38 +113,38 @@
    - Details: + Details: - + - + - + - + - + - + - + - + @@ -171,38 +171,38 @@ @@ -1433,7 +1375,7 @@ Notes:
    - Details: + Details: - + - + - + - + - + - + - + - + @@ -237,8 +237,8 @@ @@ -1375,7 +1317,7 @@ Notes:
    -
    Details: -
    +
    Details: +
    Values: true | false
    Default: false
    Description: Identifies the data type as an object collection.
    @@ -250,8 +250,8 @@
    -
    Details: -
    +
    Details: +
    Values: false
    Default: false
    Description: Surpress creation of a standard property type that supports inline encoding (applies to ISO 19136:2007 encoding rule). Always set to false in INSPIRE.
    @@ -263,8 +263,8 @@
    -
    Details: -
    +
    Details: +
    Values: iso19136_2007 | iso19139_2007 | iso19136_2007_INSPIRE_Extensions
    Default: iso19136_2007_INSPIRE_Extensions
    Description: XML Schema encoding rule to apply
    diff --git a/approved/html/EARoot/EA3/EA1/EA1/EA2/EA9361.htm b/approved/html/EARoot/EA3/EA1/EA1/EA2/EA9361.htm index da5b2b67b..73a4d65f5 100644 --- a/approved/html/EARoot/EA3/EA1/EA1/EA2/EA9361.htm +++ b/approved/html/EARoot/EA3/EA1/EA1/EA2/EA9361.htm @@ -114,8 +114,8 @@
    -
    Details: -
    +
    Details: +
    Values: false
    Default: false
    Description: Create a property type that requires that the instance is encoded inline (applies to ISO 19136:2007 encoding rule). Always set to false in INSPIRE.
    @@ -127,8 +127,8 @@
    -
    Details: -
    +
    Details: +
    Values: true | false
    Default: false
    Description: Identifies the feature type as a mixin type that will not be encoded as a separate element/type in the GML encoding.
    @@ -140,8 +140,8 @@
    -
    Details: -
    +
    Details: +
    Default: FIXME
    Description: URN reference to the feature concept in the INSPIRE Feature Concept Dictionary Register
    @@ -153,8 +153,8 @@
    -
    Details: -
    +
    Details: +
    Values: true | false
    Default: false
    Description: Identifies the feature type as a feature collection.
    @@ -166,8 +166,8 @@
    -
    Details: -
    +
    Details: +
    Values: false
    Default: false
    Description: Surpress creation of a standard property type that supports inline or by-reference encoding (applies to ISO 19136:2007 encoding rule). Always set to false in INSPIRE.
    @@ -179,8 +179,8 @@
    -
    Details: -
    +
    Details: +
    Values: iso19136_2007 | iso19139_2007 | iso19136_2007_INSPIRE_Extensions
    Default: iso19136_2007_INSPIRE_Extensions
    Description: XML Schema encoding rule to apply
    @@ -202,8 +202,8 @@
    -
    Details: -
    +
    Details: +
    /*The domain shall be a rectified grid.*/<br/>inv: domainSet.oclIsKindOf(CV_RectifiedGrid)<br/>
    @@ -217,8 +217,8 @@
    -
    Details: -
    +
    Details: +
    /*Grid points of a RectifiedGridCoverage shall coincide with the centres of cells of the geographical grids defined in Section 2.2 of Annex II at any resolution level.*/<br/>
    diff --git a/approved/html/EARoot/EA3/EA1/EA1/EA2/EA9362.htm b/approved/html/EARoot/EA3/EA1/EA1/EA2/EA9362.htm index 1fc1281d7..b603e298f 100644 --- a/approved/html/EARoot/EA3/EA1/EA1/EA2/EA9362.htm +++ b/approved/html/EARoot/EA3/EA1/EA1/EA2/EA9362.htm @@ -114,8 +114,8 @@
    -
    Details: -
    +
    Details: +
    Values: false
    Default: false
    Description: Create a property type that requires that the instance is encoded inline (applies to ISO 19136:2007 encoding rule). Always set to false in INSPIRE.
    @@ -127,8 +127,8 @@
    -
    Details: -
    +
    Details: +
    Values: true | false
    Default: false
    Description: Identifies the feature type as a mixin type that will not be encoded as a separate element/type in the GML encoding.
    @@ -140,8 +140,8 @@
    -
    Details: -
    +
    Details: +
    Default: FIXME
    Description: URN reference to the feature concept in the INSPIRE Feature Concept Dictionary Register
    @@ -153,8 +153,8 @@
    -
    Details: -
    +
    Details: +
    Values: true | false
    Default: false
    Description: Identifies the feature type as a feature collection.
    @@ -166,8 +166,8 @@
    -
    Details: -
    +
    Details: +
    Values: false
    Default: false
    Description: Surpress creation of a standard property type that supports inline or by-reference encoding (applies to ISO 19136:2007 encoding rule). Always set to false in INSPIRE.
    @@ -179,8 +179,8 @@
    -
    Details: -
    +
    Details: +
    Values: iso19136_2007 | iso19139_2007 | iso19136_2007_INSPIRE_Extensions
    Default: iso19136_2007_INSPIRE_Extensions
    Description: XML Schema encoding rule to apply
    @@ -202,8 +202,8 @@
    -
    Details: -
    +
    Details: +
    /*The domain shall be a referenceable grid.*/<br/>inv: domainSet.oclIsKindOf(CV_ReferenceableGrid)<br/>
    diff --git a/approved/html/EARoot/EA3/EA1/EA1/EA3/EA9365.htm b/approved/html/EARoot/EA3/EA1/EA1/EA3/EA9365.htm index c9079dded..fefe60440 100644 --- a/approved/html/EARoot/EA3/EA1/EA1/EA3/EA9365.htm +++ b/approved/html/EARoot/EA3/EA1/EA1/EA3/EA9365.htm @@ -113,8 +113,8 @@
    -
    Details: -
    +
    Details: +
    Default: FIXME
    Description: Target XML namespace of the application schema
    @@ -126,8 +126,8 @@
    -
    Details: -
    +
    Details: +
    Default: FIXME
    Description: Current version of the application schema
    @@ -139,8 +139,8 @@
    -
    Details: -
    +
    Details: +
    Default: FIXME
    Description: Namespace prefix to be used as short form of the target namespace
    @@ -152,8 +152,8 @@
    -
    Details: -
    +
    Details: +
    Default: FIXME
    Description: Name of an XML Schema document to create representing the content of this package
    @@ -165,8 +165,8 @@
    -
    Details: -
    +
    Details: +
    Values: iso19136_2007 | iso19139_2007 | iso19136_2007_INSPIRE_Extensions
    Default: iso19136_2007_INSPIRE_Extensions
    Description: XML Schema encoding rule to apply
    diff --git a/approved/html/EARoot/EA3/EA1/EA1/EA3/EA9366.htm b/approved/html/EARoot/EA3/EA1/EA1/EA3/EA9366.htm index 97c034d2f..e7424fb58 100644 --- a/approved/html/EARoot/EA3/EA1/EA1/EA3/EA9366.htm +++ b/approved/html/EARoot/EA3/EA1/EA1/EA3/EA9366.htm @@ -114,38 +114,38 @@
    - Details: + Details: - + - + - + - + - + - + - + - + @@ -172,38 +172,38 @@ + + + + + @@ -1317,7 +1259,7 @@ Notes:
    - Details: + Details: - + - + - + - + - + - + - + - + @@ -238,8 +238,8 @@ @@ -562,7 +504,65 @@ Notes: + +
    -
    Details: -
    +
    Details: +
    Values: false
    Default: false
    Description: Create a property type that requires that the instance is encoded inline (applies to ISO 19136:2007 encoding rule). Always set to false in INSPIRE.
    @@ -251,8 +251,8 @@
    -
    Details: -
    +
    Details: +
    Values: true | false
    Default: false
    Description: Identifies the feature type as a mixin type that will not be encoded as a separate element/type in the GML encoding.
    @@ -264,8 +264,8 @@
    -
    Details: -
    +
    Details: +
    Default: FIXME
    Description: URN reference to the feature concept in the INSPIRE Feature Concept Dictionary Register
    @@ -277,8 +277,8 @@
    -
    Details: -
    +
    Details: +
    Values: true | false
    Default: false
    Description: Identifies the feature type as a feature collection.
    @@ -290,8 +290,8 @@
    -
    Details: -
    +
    Details: +
    Values: false
    Default: false
    Description: Surpress creation of a standard property type that supports inline or by-reference encoding (applies to ISO 19136:2007 encoding rule). Always set to false in INSPIRE.
    @@ -303,8 +303,8 @@
    -
    Details: -
    +
    Details: +
    Values: iso19136_2007 | iso19139_2007 | iso19136_2007_INSPIRE_Extensions
    Default: iso19136_2007_INSPIRE_Extensions
    Description: XML Schema encoding rule to apply
    diff --git a/approved/html/EARoot/EA3/EA1/EA1/EA3/EA9367.htm b/approved/html/EARoot/EA3/EA1/EA1/EA3/EA9367.htm index 129e117d4..f75b4e770 100644 --- a/approved/html/EARoot/EA3/EA1/EA1/EA3/EA9367.htm +++ b/approved/html/EARoot/EA3/EA1/EA1/EA3/EA9367.htm @@ -113,38 +113,38 @@
    - Details: + Details: - + - + - + - + - + - + - + - + @@ -171,38 +171,38 @@ @@ -481,7 +423,7 @@ - + @@ -504,7 +446,7 @@ Notes:
    - Details: + Details: - + - + - + - + - + - + - + - + @@ -237,8 +237,8 @@ @@ -423,7 +365,7 @@ - + @@ -446,7 +388,7 @@ Notes:
    -
    Details: -
    +
    Details: +
    Values: true | false
    Default: false
    Description: Identifies the data type as an object collection.
    @@ -250,8 +250,8 @@
    -
    Details: -
    +
    Details: +
    Values: false
    Default: false
    Description: Surpress creation of a standard property type that supports inline encoding (applies to ISO 19136:2007 encoding rule). Always set to false in INSPIRE.
    @@ -263,8 +263,8 @@
    -
    Details: -
    +
    Details: +
    Values: iso19136_2007 | iso19139_2007 | iso19136_2007_INSPIRE_Extensions
    Default: iso19136_2007_INSPIRE_Extensions
    Description: XML Schema encoding rule to apply
    diff --git a/approved/html/EARoot/EA3/EA1/EA1/EA3/EA9368.htm b/approved/html/EARoot/EA3/EA1/EA1/EA3/EA9368.htm index e95ae8105..5d80b5c28 100644 --- a/approved/html/EARoot/EA3/EA1/EA1/EA3/EA9368.htm +++ b/approved/html/EARoot/EA3/EA1/EA1/EA3/EA9368.htm @@ -114,8 +114,8 @@
    -
    Details: -
    +
    Details: +
    Values: false
    Default: false
    Description: Create a property type that requires that the instance is encoded inline (applies to ISO 19136:2007 encoding rule). Always set to false in INSPIRE.
    @@ -127,8 +127,8 @@
    -
    Details: -
    +
    Details: +
    Values: true | false
    Default: false
    Description: Identifies the feature type as a mixin type that will not be encoded as a separate element/type in the GML encoding.
    @@ -140,8 +140,8 @@
    -
    Details: -
    +
    Details: +
    Default: FIXME
    Description: URN reference to the feature concept in the INSPIRE Feature Concept Dictionary Register
    @@ -153,8 +153,8 @@
    -
    Details: -
    +
    Details: +
    Values: true | false
    Default: false
    Description: Identifies the feature type as a feature collection.
    @@ -166,8 +166,8 @@
    -
    Details: -
    +
    Details: +
    Values: false
    Default: false
    Description: Surpress creation of a standard property type that supports inline or by-reference encoding (applies to ISO 19136:2007 encoding rule). Always set to false in INSPIRE.
    @@ -179,8 +179,8 @@
    -
    Details: -
    +
    Details: +
    Values: iso19136_2007 | iso19139_2007 | iso19136_2007_INSPIRE_Extensions
    Default: iso19136_2007_INSPIRE_Extensions
    Description: XML Schema encoding rule to apply
    @@ -202,8 +202,8 @@
    -
    Details: -
    +
    Details: +
    /* domain elements are points */<br/>inv: element.geometry.oclIsKindOf(TM_Instant)<br/>
    diff --git a/approved/html/EARoot/EA3/EA1/EA1/EA9346.htm b/approved/html/EARoot/EA3/EA1/EA1/EA9346.htm index 7986974f7..12bb46fe1 100644 --- a/approved/html/EARoot/EA3/EA1/EA1/EA9346.htm +++ b/approved/html/EARoot/EA3/EA1/EA1/EA9346.htm @@ -113,8 +113,8 @@
    -
    Details: -
    +
    Details: +
    Default: FIXME
    Description: Target XML namespace of the application schema
    @@ -126,8 +126,8 @@
    -
    Details: -
    +
    Details: +
    Default: FIXME
    Description: Current version of the application schema
    @@ -139,8 +139,8 @@
    -
    Details: -
    +
    Details: +
    Default: FIXME
    Description: Namespace prefix to be used as short form of the target namespace
    @@ -152,8 +152,8 @@
    -
    Details: -
    +
    Details: +
    Default: FIXME
    Description: Name of an XML Schema document to create representing the content of this package
    @@ -165,8 +165,8 @@
    -
    Details: -
    +
    Details: +
    Values: iso19136_2007 | iso19139_2007 | iso19136_2007_INSPIRE_Extensions
    Default: iso19136_2007_INSPIRE_Extensions
    Description: XML Schema encoding rule to apply
    diff --git a/approved/html/EARoot/EA3/EA1/EA1/EA9347.htm b/approved/html/EARoot/EA3/EA1/EA1/EA9347.htm index c797d3ec1..ea5341b43 100644 --- a/approved/html/EARoot/EA3/EA1/EA1/EA9347.htm +++ b/approved/html/EARoot/EA3/EA1/EA1/EA9347.htm @@ -113,8 +113,8 @@
    -
    Details: -
    +
    Details: +
    Default: FIXME
    Description: Target XML namespace of the application schema
    @@ -126,8 +126,8 @@
    -
    Details: -
    +
    Details: +
    Default: FIXME
    Description: Current version of the application schema
    @@ -139,8 +139,8 @@
    -
    Details: -
    +
    Details: +
    Default: FIXME
    Description: Namespace prefix to be used as short form of the target namespace
    @@ -152,8 +152,8 @@
    -
    Details: -
    +
    Details: +
    Default: FIXME
    Description: Name of an XML Schema document to create representing the content of this package
    @@ -165,8 +165,8 @@
    -
    Details: -
    +
    Details: +
    Values: iso19136_2007 | iso19139_2007 | iso19136_2007_INSPIRE_Extensions
    Default: iso19136_2007_INSPIRE_Extensions
    Description: XML Schema encoding rule to apply
    diff --git a/approved/html/EARoot/EA3/EA1/EA1/EA9348.htm b/approved/html/EARoot/EA3/EA1/EA1/EA9348.htm index b21d8c4cd..b9419e2dd 100644 --- a/approved/html/EARoot/EA3/EA1/EA1/EA9348.htm +++ b/approved/html/EARoot/EA3/EA1/EA1/EA9348.htm @@ -113,8 +113,8 @@
    -
    Details: -
    +
    Details: +
    Default: FIXME
    Description: Target XML namespace of the application schema
    @@ -126,8 +126,8 @@
    -
    Details: -
    +
    Details: +
    Default: FIXME
    Description: Current version of the application schema
    @@ -139,8 +139,8 @@
    -
    Details: -
    +
    Details: +
    Default: FIXME
    Description: Namespace prefix to be used as short form of the target namespace
    @@ -152,8 +152,8 @@
    -
    Details: -
    +
    Details: +
    Default: FIXME
    Description: Name of an XML Schema document to create representing the content of this package
    @@ -165,8 +165,8 @@
    -
    Details: -
    +
    Details: +
    Values: iso19136_2007 | iso19139_2007 | iso19136_2007_INSPIRE_Extensions
    Default: iso19136_2007_INSPIRE_Extensions
    Description: XML Schema encoding rule to apply
    diff --git a/approved/html/EARoot/EA3/EA1/EA2/EA9370.png b/approved/html/EARoot/EA3/EA1/EA2/EA9370.png index e31130fb4..d9493e401 100644 Binary files a/approved/html/EARoot/EA3/EA1/EA2/EA9370.png and b/approved/html/EARoot/EA3/EA1/EA2/EA9370.png differ diff --git a/approved/html/EARoot/EA3/EA1/EA2/EA9371.htm b/approved/html/EARoot/EA3/EA1/EA2/EA9371.htm index be2efa3f6..aaef9b22b 100644 --- a/approved/html/EARoot/EA3/EA1/EA2/EA9371.htm +++ b/approved/html/EARoot/EA3/EA1/EA2/EA9371.htm @@ -112,8 +112,8 @@
    -
    Details: -
    +
    Details: +
    Default: FIXME
    Description: Target XML namespace of the application schema
    @@ -125,8 +125,8 @@
    -
    Details: -
    +
    Details: +
    Default: FIXME
    Description: Current version of the application schema
    @@ -138,8 +138,8 @@
    -
    Details: -
    +
    Details: +
    Default: FIXME
    Description: Namespace prefix to be used as short form of the target namespace
    @@ -151,8 +151,8 @@
    -
    Details: -
    +
    Details: +
    Default: FIXME
    Description: Name of an XML Schema document to create representing the content of this package
    @@ -164,8 +164,8 @@
    -
    Details: -
    +
    Details: +
    Values: iso19136_2007 | iso19139_2007 | iso19136_2007_INSPIRE_Extensions
    Default: iso19136_2007_INSPIRE_Extensions
    Description: XML Schema encoding rule to apply
    diff --git a/approved/html/EARoot/EA3/EA1/EA2/EA9373.htm b/approved/html/EARoot/EA3/EA1/EA2/EA9373.htm index d69a1f377..3d3c19ba6 100644 --- a/approved/html/EARoot/EA3/EA1/EA2/EA9373.htm +++ b/approved/html/EARoot/EA3/EA1/EA2/EA9373.htm @@ -110,43 +110,43 @@
    - Public SC_CRS
      coordinateSystem + Public PT_FreeText
      name
    - Details: + Details: - + - + - + - + - + - + - + - + - + @@ -159,7 +159,7 @@ Notes:
    - name of coordinate reference system used in the gazetteer for describing position<br/> + name of the gazetteer<br/>
    @@ -168,43 +168,43 @@
    - Public CI_ResponsibleParty
      custodian + Public PT_FreeText
      scope
    - Details: + Details: - + - + - + - + - + - + - + - + - + @@ -217,7 +217,7 @@ Notes:
    - name of the organization responsible for maintenance of the gazetteer<br/> + description of the location types contained in the gazettee<br/>
    @@ -226,43 +226,43 @@
    - Public PT_FreeText
      name + Public CI_ResponsibleParty
      custodian
    - Details: + Details: - + - + - + - + - + - + - + - + @@ -275,7 +275,7 @@ Notes:
    - name of the gazetteer<br/> + name of the organization responsible for maintenance of the gazetteer<br/>
    @@ -284,43 +284,43 @@
    - Public PT_FreeText
      scope + Public EX_GeographicExtent
      territoryOfUse
    - Details: + Details: - + - + - + - + - + - + - + - + - + @@ -333,7 +333,7 @@ Notes:
    - description of the location types contained in the gazettee<br/> + use geographic domain covered by the gazetteer<br/>
    @@ -342,43 +342,43 @@
    - Public EX_GeographicExtent
      territoryOfUse + Public SC_CRS
      coordinateSystem
    - Details: + Details: - + - + - + - + - + - + - + - + - + @@ -391,7 +391,7 @@ Notes:
    - use geographic domain covered by the gazetteer<br/> + name of coordinate reference system used in the gazetteer for describing position<br/>
    @@ -424,8 +424,8 @@
    -
    Details: -
    +
    Details: +
     
    @@ -447,8 +447,8 @@
    -
    Details: -
    +
    Details: +
     
    @@ -469,8 +469,8 @@
    -
    Details: -
    +
    Details: +
    Values: false
    Default: false
    Description: Create a property type that requires that the instance is encoded inline (applies to ISO 19136:2007 encoding rule). Always set to false in INSPIRE.
    @@ -482,8 +482,8 @@
    -
    Details: -
    +
    Details: +
    Values: true | false
    Default: false
    Description: Identifies the feature type as a mixin type that will not be encoded as a separate element/type in the GML encoding.
    @@ -495,8 +495,8 @@
    -
    Details: -
    +
    Details: +
    Default: FIXME
    Description: URN reference to the feature concept in the INSPIRE Feature Concept Dictionary Register
    @@ -508,8 +508,8 @@
    -
    Details: -
    +
    Details: +
    Values: true | false
    Default: false
    Description: Identifies the feature type as a feature collection.
    @@ -521,8 +521,8 @@
    -
    Details: -
    +
    Details: +
    Values: false
    Default: false
    Description: Surpress creation of a standard property type that supports inline or by-reference encoding (applies to ISO 19136:2007 encoding rule). Always set to false in INSPIRE.
    @@ -534,8 +534,8 @@
    -
    Details: -
    +
    Details: +
    Values: iso19136_2007 | iso19139_2007 | iso19136_2007_INSPIRE_Extensions
    Default: iso19136_2007_INSPIRE_Extensions
    Description: XML Schema encoding rule to apply
    diff --git a/approved/html/EARoot/EA3/EA1/EA2/EA9374.htm b/approved/html/EARoot/EA3/EA1/EA2/EA9374.htm index 76e902ab1..13cb88e83 100644 --- a/approved/html/EARoot/EA3/EA1/EA2/EA9374.htm +++ b/approved/html/EARoot/EA3/EA1/EA2/EA9374.htm @@ -112,8 +112,8 @@
    -
    Details: -
    +
    Details: +
    Values: true
    Default: true
    Description: Encode code list as externally managed dictionary (applies to ISO 19136:2007 encoding rule). Always true in INSPIRE.
    @@ -125,8 +125,8 @@
    -
    Details: -
    +
    Details: +
    Values: true | false
    Default: false
    Description: Flag indicating whether the code list may be extended by Member States.
    @@ -138,8 +138,8 @@
    -
    Details: -
    +
    Details: +
    Values: none | narrower | open | any
    Default: any
    Description: This refers to extensions by a third party, not to extensions by the owner of the vocabulary; the owner will always be able to revise the vocabulary. I.e., if the value is 'none', the referenced vocabulary may not be extended by third parties; if the value is 'narrower', the vocabulary may be extended by narrower terms that have an existing term as a parent; if the value is 'any', the vocabulary may be extended by additional terms on any level. This value must be 'all', empty or missing, if the value 'vocabulary' is empty or missing; in this case any vocabulary may be used.
    @@ -151,8 +151,8 @@
    -
    Details: -
    +
    Details: +
    Values: iso19136_2007 | iso19139_2007 | iso19136_2007_INSPIRE_Extensions
    Default: iso19136_2007_INSPIRE_Extensions
    Description: XML Schema encoding rule to apply
    diff --git a/approved/html/EARoot/EA3/EA1/EA2/EA9375.htm b/approved/html/EARoot/EA3/EA1/EA2/EA9375.htm index a9e5ac336..7c6b5c8ea 100644 --- a/approved/html/EARoot/EA3/EA1/EA2/EA9375.htm +++ b/approved/html/EARoot/EA3/EA1/EA2/EA9375.htm @@ -111,43 +111,43 @@
    - Public CI_ResponsibleParty
      admin + Public CharacterString
      geographicIdentifier
    - Details: + Details: - + - + - + - + - + - + - + - + @@ -160,7 +160,7 @@ Notes:
    - organization responsible for defining the characteristics of the location instance<br/> + unique identifier for the location instance<br/>
    @@ -174,38 +174,38 @@
    - Details: + Details: - + - + - + - + - + - + - + - + @@ -232,38 +232,38 @@ + + + + + @@ -357,7 +299,7 @@ - + @@ -365,7 +307,7 @@ - + @@ -388,7 +330,7 @@ Notes:
    - Details: + Details: - + - + - + - + - + - + - + - + @@ -290,38 +290,38 @@ @@ -599,7 +541,7 @@ - + @@ -622,7 +564,65 @@ Notes: + +
    - Details: + Details: - + - + - + - + - + - + - + - + @@ -343,43 +343,43 @@ @@ -541,7 +483,7 @@ - + @@ -564,7 +506,7 @@ Notes:
    - Public CharacterString
      geographicIdentifier + Public CI_ResponsibleParty
      admin
    - Details: + Details: - + - + - + - + - + - + - + - + @@ -392,7 +392,7 @@ Notes:
    - unique identifier for the location instance<br/> + organization responsible for defining the characteristics of the location instance<br/>
    @@ -425,8 +425,8 @@
    -
    Details: -
    +
    Details: +
     
    @@ -448,8 +448,8 @@
    -
    Details: -
    +
    Details: +
     
    @@ -481,8 +481,8 @@
    -
    Details: -
    +
    Details: +
     
    @@ -504,8 +504,8 @@
    -
    Details: -
    +
    Details: +
     
    @@ -526,8 +526,8 @@
    -
    Details: -
    +
    Details: +
    Values: false
    Default: false
    Description: Create a property type that requires that the instance is encoded inline (applies to ISO 19136:2007 encoding rule). Always set to false in INSPIRE.
    @@ -539,8 +539,8 @@
    -
    Details: -
    +
    Details: +
    Values: true | false
    Default: false
    Description: Identifies the feature type as a mixin type that will not be encoded as a separate element/type in the GML encoding.
    @@ -552,8 +552,8 @@
    -
    Details: -
    +
    Details: +
    Default: FIXME
    Description: URN reference to the feature concept in the INSPIRE Feature Concept Dictionary Register
    @@ -565,8 +565,8 @@
    -
    Details: -
    +
    Details: +
    Values: true | false
    Default: false
    Description: Identifies the feature type as a feature collection.
    @@ -578,8 +578,8 @@
    -
    Details: -
    +
    Details: +
    Values: false
    Default: false
    Description: Surpress creation of a standard property type that supports inline or by-reference encoding (applies to ISO 19136:2007 encoding rule). Always set to false in INSPIRE.
    @@ -591,8 +591,8 @@
    -
    Details: -
    +
    Details: +
    Values: iso19136_2007 | iso19139_2007 | iso19136_2007_INSPIRE_Extensions
    Default: iso19136_2007_INSPIRE_Extensions
    Description: XML Schema encoding rule to apply
    diff --git a/approved/html/EARoot/EA3/EA1/EA2/EA9376.htm b/approved/html/EARoot/EA3/EA1/EA2/EA9376.htm index c51026693..598bf1308 100644 --- a/approved/html/EARoot/EA3/EA1/EA2/EA9376.htm +++ b/approved/html/EARoot/EA3/EA1/EA2/EA9376.htm @@ -111,43 +111,43 @@
    - Public PT_FreeText
      definition + Public PT_FreeText
      name
    - Details: + Details: - + - + - + - + - + - + - + - + @@ -160,7 +160,7 @@ Notes:
    - the way in which location instances are defined<br/> + name of the location type<br/>
    @@ -169,43 +169,43 @@
    - Public IdentificationType
      identificationType + Public PT_FreeText
      definition
    - Details: + Details: - + - + - + - + - + - + - + - + @@ -218,7 +218,7 @@ Notes:
    - method of uniquely identifying location instances<br/> + the way in which location instances are defined<br/>
    @@ -227,43 +227,43 @@
    - Public PT_FreeText
      name + Public IdentificationType
      identificationType
    - Details: + Details: - + - + - + - + - + - + - + - + @@ -276,7 +276,7 @@ Notes:
    - name of the location type<br/> + method of uniquely identifying location instances<br/>
    @@ -285,43 +285,43 @@
    - Public CI_ResponsibleParty
      owner + Public EX_GeographicExtent
      territoryOfUse
    - Details: + Details: - + - + - + - + - + - + - + - + @@ -334,7 +334,7 @@ Notes:
    - name of organization or class of organization able to create and destroy location instances<br/> + geographic area within which the location type occurs<br/>
    @@ -343,43 +343,43 @@
    - Public EX_GeographicExtent
      territoryOfUse + Public CI_ResponsibleParty
      owner
    - Details: + Details: - + - + - + - + - + - + - + - + @@ -392,7 +392,7 @@ Notes:
    - geographic area within which the location type occurs<br/> + name of organization or class of organization able to create and destroy location instances<br/>
    @@ -425,8 +425,8 @@
    -
    Details: -
    +
    Details: +
     
    @@ -448,8 +448,8 @@
    -
    Details: -
    +
    Details: +
     
    @@ -471,8 +471,8 @@
    -
    Details: -
    +
    Details: +
     
    @@ -504,8 +504,8 @@
    -
    Details: -
    +
    Details: +
     
    @@ -526,8 +526,8 @@
    -
    Details: -
    +
    Details: +
    Values: false
    Default: false
    Description: Create a property type that requires that the instance is encoded inline (applies to ISO 19136:2007 encoding rule). Always set to false in INSPIRE.
    @@ -539,8 +539,8 @@
    -
    Details: -
    +
    Details: +
    Values: true | false
    Default: false
    Description: Identifies the feature type as a mixin type that will not be encoded as a separate element/type in the GML encoding.
    @@ -552,8 +552,8 @@
    -
    Details: -
    +
    Details: +
    Default: FIXME
    Description: URN reference to the feature concept in the INSPIRE Feature Concept Dictionary Register
    @@ -565,8 +565,8 @@
    -
    Details: -
    +
    Details: +
    Values: true | false
    Default: false
    Description: Identifies the feature type as a feature collection.
    @@ -578,8 +578,8 @@
    -
    Details: -
    +
    Details: +
    Values: false
    Default: false
    Description: Surpress creation of a standard property type that supports inline or by-reference encoding (applies to ISO 19136:2007 encoding rule). Always set to false in INSPIRE.
    @@ -591,8 +591,8 @@
    -
    Details: -
    +
    Details: +
    Values: iso19136_2007 | iso19139_2007 | iso19136_2007_INSPIRE_Extensions
    Default: iso19136_2007_INSPIRE_Extensions
    Description: XML Schema encoding rule to apply
    diff --git a/approved/html/EARoot/EA3/EA1/EA3/EA9384.htm b/approved/html/EARoot/EA3/EA1/EA3/EA9384.htm index de29d5290..07e170594 100644 --- a/approved/html/EARoot/EA3/EA1/EA3/EA9384.htm +++ b/approved/html/EARoot/EA3/EA1/EA3/EA9384.htm @@ -112,38 +112,38 @@
    - Details: + Details: - + - + - + - + - + - + - + - + diff --git a/approved/html/EARoot/EA3/EA1/EA3/EA9385.htm b/approved/html/EARoot/EA3/EA1/EA3/EA9385.htm index f0db4a2a6..466bfc6f6 100644 --- a/approved/html/EARoot/EA3/EA1/EA3/EA9385.htm +++ b/approved/html/EARoot/EA3/EA1/EA3/EA9385.htm @@ -113,38 +113,38 @@ @@ -475,7 +417,7 @@ - + @@ -483,7 +425,7 @@ - + @@ -506,7 +448,7 @@ Notes:
    - Details: + Details: - + - + - + - + - + - + - + - + @@ -171,38 +171,38 @@ @@ -417,7 +359,7 @@ - + @@ -425,7 +367,7 @@ - + @@ -448,7 +390,7 @@ Notes:
    - Details: + Details: - + - + - + - + - + - + - + - + diff --git a/approved/html/EARoot/EA3/EA1/EA3/EA9386.htm b/approved/html/EARoot/EA3/EA1/EA3/EA9386.htm index bcb1508f3..643cbade9 100644 --- a/approved/html/EARoot/EA3/EA1/EA3/EA9386.htm +++ b/approved/html/EARoot/EA3/EA1/EA3/EA9386.htm @@ -113,38 +113,38 @@ @@ -390,7 +332,7 @@ Notes:
    - Details: + Details: - + - + - + - + - + - + - + - + diff --git a/approved/html/EARoot/EA3/EA1/EA3/EA9387.htm b/approved/html/EARoot/EA3/EA1/EA3/EA9387.htm index 5bfb621d2..0192c4888 100644 --- a/approved/html/EARoot/EA3/EA1/EA3/EA9387.htm +++ b/approved/html/EARoot/EA3/EA1/EA3/EA9387.htm @@ -114,38 +114,38 @@ @@ -301,7 +243,7 @@ - + @@ -309,7 +251,7 @@ - + @@ -332,7 +274,7 @@ Notes:
    - Details: + Details: - + - + - + - + - + - + - + - + @@ -162,38 +162,38 @@ @@ -251,7 +193,7 @@ - + @@ -274,7 +216,7 @@ Notes:
    - Details: + Details: - + - + - + - + - + - + - + - + @@ -218,8 +218,8 @@ - - - - - @@ -185,7 +127,7 @@ - + @@ -193,7 +135,7 @@ - + @@ -216,7 +158,7 @@ Notes:
    -
    Details: -
    +
    Details: +
    Values: false
    Default: false
    Description: Create a property type that requires that the instance is encoded inline (applies to ISO 19136:2007 encoding rule). Always set to false in INSPIRE.
    @@ -231,8 +231,8 @@
    -
    Details: -
    +
    Details: +
    Values: true | false
    Default: false
    Description: Identifies the feature type as a mixin type that will not be encoded as a separate element/type in the GML encoding.
    @@ -244,8 +244,8 @@
    -
    Details: -
    +
    Details: +
    Default: FIXME
    Description: URN reference to the feature concept in the INSPIRE Feature Concept Dictionary Register
    @@ -257,8 +257,8 @@
    -
    Details: -
    +
    Details: +
    Values: true | false
    Default: false
    Description: Identifies the feature type as a feature collection.
    @@ -270,8 +270,8 @@
    -
    Details: -
    +
    Details: +
    Values: false
    Default: false
    Description: Surpress creation of a standard property type that supports inline or by-reference encoding (applies to ISO 19136:2007 encoding rule). Always set to false in INSPIRE.
    @@ -283,8 +283,8 @@
    -
    Details: -
    +
    Details: +
    Values: iso19136_2007 | iso19139_2007 | iso19136_2007_INSPIRE_Extensions
    Default: iso19136_2007_INSPIRE_Extensions
    Description: XML Schema encoding rule to apply
    @@ -306,8 +306,8 @@
    -
    Details: -
    +
    Details: +
    aggregatedLink.size() + link.size() = 1<br/>
    diff --git a/approved/html/EARoot/EA3/EA1/EA3/EA9388.htm b/approved/html/EARoot/EA3/EA1/EA3/EA9388.htm index f3fa6687a..32ac08f3b 100644 --- a/approved/html/EARoot/EA3/EA1/EA3/EA9388.htm +++ b/approved/html/EARoot/EA3/EA1/EA3/EA9388.htm @@ -124,8 +124,8 @@
    -
    Details: -
    +
    Details: +
     
    diff --git a/approved/html/EARoot/EA3/EA1/EA4/EA1/EA9394.png b/approved/html/EARoot/EA3/EA1/EA4/EA1/EA9394.png index 70836ac62..a981da0b5 100644 Binary files a/approved/html/EARoot/EA3/EA1/EA4/EA1/EA9394.png and b/approved/html/EARoot/EA3/EA1/EA4/EA1/EA9394.png differ diff --git a/approved/html/EARoot/EA3/EA1/EA4/EA1/EA9397.htm b/approved/html/EARoot/EA3/EA1/EA4/EA1/EA9397.htm index ea9587643..be1c2fd27 100644 --- a/approved/html/EARoot/EA3/EA1/EA4/EA1/EA9397.htm +++ b/approved/html/EARoot/EA3/EA1/EA4/EA1/EA9397.htm @@ -111,8 +111,8 @@
    -
    Details: -
    +
    Details: +
    Default: FIXME
    Description: Target XML namespace of the application schema
    @@ -124,8 +124,8 @@
    -
    Details: -
    +
    Details: +
    Default: FIXME
    Description: Current version of the application schema
    @@ -137,8 +137,8 @@
    -
    Details: -
    +
    Details: +
    Default: FIXME
    Description: Namespace prefix to be used as short form of the target namespace
    @@ -150,8 +150,8 @@
    -
    Details: -
    +
    Details: +
    Default: FIXME
    Description: Name of an XML Schema document to create representing the content of this package
    @@ -163,8 +163,8 @@
    -
    Details: -
    +
    Details: +
    Values: iso19136_2007 | iso19139_2007 | iso19136_2007_INSPIRE_Extensions
    Default: iso19136_2007_INSPIRE_Extensions
    Description: XML Schema encoding rule to apply
    diff --git a/approved/html/EARoot/EA3/EA1/EA4/EA1/EA9398.htm b/approved/html/EARoot/EA3/EA1/EA4/EA1/EA9398.htm index 8df628c52..dc7674e7f 100644 --- a/approved/html/EARoot/EA3/EA1/EA4/EA1/EA9398.htm +++ b/approved/html/EARoot/EA3/EA1/EA4/EA1/EA9398.htm @@ -109,65 +109,7 @@
    - Public DateTime
      beginLifespanVersion -
    - Details: - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    - - -
    - - - - -
    - Notes: - - -- Name --<br/>begin lifespan version<br/><br/>-- Definition --<br/>Date and time at which this version of the spatial object was inserted or changed in the spatial data set.<br/><br/>-- Description --<br/>NOTE This date is recorded to enable the generation of change only update files.<br/> -
    - - -
    - Public DateTime
      endLifespanVersion + Public Identifier
      inspireId
    @@ -225,7 +167,7 @@
    - Public Function
      function + Public ThematicIdentifier
      thematicId
    @@ -283,7 +225,7 @@
    - Public GM_Object
      geometry + Public CharacterString
      name
    @@ -341,7 +283,7 @@
    - Public Identifier
      inspireId + Public GM_Object
      geometry
    - -- Name --<br/>INSPIRE identifier<br/><br/>-- Definition --<br/>External object identifier of the “Activity Complex”.<br/><br/>-- Description --<br/><br/>NOTE  An external object identifier is a unique object identifier published by the responsible body, which may be used by external applications to reference the spatial object. The identifier is an identifier of the spatial object, not an identifier of the real-world phenomenon.<br/> + -- Name --<br/>geometry<br/><br/>-- Definition --<br/>The geometry used to define the extent or position of the “Activity Complex”.<br/><br/>-- Description --<br/>NOTE 1 Based on the provided description, different geometries could be used to represent the Activity Complex as a one legal whole.<br/>EXAMPLE  1 E-prtr geometry is given by a single point based on Geographical Coordinates (see below). In other levels of detail or depending on the Data Provider this could be represented [e.g.] by a Multi-poligon.<br/><br/>EXAMPLE 2 PRTR - Legal act example: “ … the latitude and longitude coordinates within an arc of 5 minutes that avoid the direct identification of an individual holding….”.<br/>
    @@ -399,7 +341,7 @@
    - Public CharacterString
      name + Public Function
      function
    @@ -457,7 +399,7 @@
    - Public ThematicIdentifier
      thematicId + Public DateTime
      validFrom
    @@ -515,7 +457,7 @@
    - Public DateTime
      validFrom + Public DateTime
      validTo
    @@ -573,7 +515,7 @@
    - Public DateTime
      validTo + Public DateTime
      beginLifespanVersion
    + + +
    + Public DateTime
      endLifespanVersion +
    + Details: + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + +
    + + +
    + Notes: + + -- Name --<br/>end lifespan version<br/><br/>-- Definition --<br/>Date and time at which this version of the spatial object was superseded or retired in the spatial data set.<br/><br/>-- Description --<br/>NOTE This date is recorded primarily for those systems which "close" an entry in the spatial data set in the event of an attribute change.<br/>
    @@ -644,8 +644,8 @@
    -
    Details: -
    +
    Details: +
    Values: false
    Default: false
    Description: Create a property type that requires that the instance is encoded inline (applies to ISO 19136:2007 encoding rule). Always set to false in INSPIRE.
    @@ -657,8 +657,8 @@
    -
    Details: -
    +
    Details: +
    Values: true | false
    Default: false
    Description: Identifies the feature type as a mixin type that will not be encoded as a separate element/type in the GML encoding.
    @@ -670,8 +670,8 @@
    -
    Details: -
    +
    Details: +
    Default: FIXME
    Description: URN reference to the feature concept in the INSPIRE Feature Concept Dictionary Register
    @@ -683,8 +683,8 @@
    -
    Details: -
    +
    Details: +
    Values: true | false
    Default: false
    Description: Identifies the feature type as a feature collection.
    @@ -696,8 +696,8 @@
    -
    Details: -
    +
    Details: +
    Values: false
    Default: false
    Description: Surpress creation of a standard property type that supports inline or by-reference encoding (applies to ISO 19136:2007 encoding rule). Always set to false in INSPIRE.
    @@ -709,8 +709,8 @@
    -
    Details: -
    +
    Details: +
    Values: iso19136_2007 | iso19139_2007 | iso19136_2007_INSPIRE_Extensions
    Default: iso19136_2007_INSPIRE_Extensions
    Description: XML Schema encoding rule to apply
    diff --git a/approved/html/EARoot/EA3/EA1/EA4/EA1/EA9399.htm b/approved/html/EARoot/EA3/EA1/EA4/EA1/EA9399.htm index 2501090a6..97d879a90 100644 --- a/approved/html/EARoot/EA3/EA1/EA4/EA1/EA9399.htm +++ b/approved/html/EARoot/EA3/EA1/EA4/EA1/EA9399.htm @@ -108,43 +108,43 @@
    - Public AddressRepresentation
      address + Public PT_FreeText
      description
    - Details: + Details: - + - + - + - + - + - + - + - + @@ -157,7 +157,7 @@ Notes:
    - -- Name --<br/>address<br/><br/>-- Definition --<br/>An address for the activity complex, i.e., an address where the activities occur.<br/> + -- Name --<br/>description<br/><br/>-- Definition --<br/>A complementary definition of the “Activity Complex” and its characteristics.<br/><br/>-- Description --<br/>NOTE  Free text to include or refer any complementary information about the Activity Complex or its characteristics. <br/>
    @@ -166,43 +166,43 @@
    - Public Contact
      contact + Public AddressRepresentation
      address
    - Details: + Details: - + - + - + - + - + - + - + - + @@ -215,7 +215,7 @@ Notes:
    - -- Name --<br/>contact<br/><br/>-- Definition --<br/>Contact information for the activity complex.<br/> + -- Name --<br/>address<br/><br/>-- Definition --<br/>An address for the activity complex, i.e., an address where the activities occur.<br/>
    @@ -224,43 +224,43 @@
    - Public PT_FreeText
      description + Public Contact
      contact
    - Details: + Details: - + - + - + - + - + - + - + - + @@ -273,7 +273,7 @@ Notes:
    - -- Name --<br/>description<br/><br/>-- Definition --<br/>A complementary definition of the “Activity Complex” and its characteristics.<br/><br/>-- Description --<br/>NOTE  Free text to include or refer any complementary information about the Activity Complex or its characteristics. <br/> + -- Name --<br/>contact<br/><br/>-- Definition --<br/>Contact information for the activity complex.<br/>
    @@ -287,38 +287,38 @@
    - Details: + Details: - + - + - + - + - + - + - + - + @@ -353,8 +353,8 @@ @@ -307,7 +249,7 @@ - + @@ -330,7 +272,7 @@ Notes:
    -
    Details: -
    +
    Details: +
    Values: false
    Default: false
    Description: Create a property type that requires that the instance is encoded inline (applies to ISO 19136:2007 encoding rule). Always set to false in INSPIRE.
    @@ -366,8 +366,8 @@
    -
    Details: -
    +
    Details: +
    Values: true | false
    Default: false
    Description: Identifies the feature type as a mixin type that will not be encoded as a separate element/type in the GML encoding.
    @@ -379,8 +379,8 @@
    -
    Details: -
    +
    Details: +
    Default: FIXME
    Description: URN reference to the feature concept in the INSPIRE Feature Concept Dictionary Register
    @@ -392,8 +392,8 @@
    -
    Details: -
    +
    Details: +
    Values: true | false
    Default: false
    Description: Identifies the feature type as a feature collection.
    @@ -405,8 +405,8 @@
    -
    Details: -
    +
    Details: +
    Values: false
    Default: false
    Description: Surpress creation of a standard property type that supports inline or by-reference encoding (applies to ISO 19136:2007 encoding rule). Always set to false in INSPIRE.
    @@ -418,8 +418,8 @@
    -
    Details: -
    +
    Details: +
    Values: iso19136_2007 | iso19139_2007 | iso19136_2007_INSPIRE_Extensions
    Default: iso19136_2007_INSPIRE_Extensions
    Description: XML Schema encoding rule to apply
    diff --git a/approved/html/EARoot/EA3/EA1/EA4/EA1/EA9400.htm b/approved/html/EARoot/EA3/EA1/EA4/EA1/EA9400.htm index d07e4d59c..17bf14e5a 100644 --- a/approved/html/EARoot/EA3/EA1/EA4/EA1/EA9400.htm +++ b/approved/html/EARoot/EA3/EA1/EA4/EA1/EA9400.htm @@ -112,38 +112,38 @@
    - Details: + Details: - + - + - + - + - + - + - + - + @@ -165,43 +165,43 @@ @@ -249,7 +191,7 @@ - + @@ -272,7 +214,7 @@ Notes:
    - Public PT_FreeText
      description + Public InputOutputAmount
      input
    - Details: + Details: - + - + - + - + - + - + - + - + - + - + @@ -214,7 +214,7 @@ Notes:
    - -- Name --<br/>description<br/><br/>-- Definition --<br/>A description of the capacity.<br/> + -- Name --<br/>input<br/><br/>-- Definition --<br/>Measurable  information about parameters related with the inputs related with the activity carried out by the Activity Complex.<br/><br/>-- Description --<br/>NOTE  Depending on the thematic scope it can contain different values including terms as Registered Pollutants, Waste, Processed Products, leakage, etc.<br/><br/>
    @@ -223,43 +223,43 @@
    - Public InputOutputAmount
      input + Public InputOutputAmount
      output
    - Details: + Details: - + - + - + - + - + - + - + - + @@ -272,7 +272,7 @@ Notes:
    - -- Name --<br/>input<br/><br/>-- Definition --<br/>Measurable  information about parameters related with the inputs related with the activity carried out by the Activity Complex.<br/><br/>-- Description --<br/>NOTE  Depending on the thematic scope it can contain different values including terms as Registered Pollutants, Waste, Processed Products, leakage, etc.<br/><br/> + -- Name --<br/>output<br/><br/>-- Definition --<br/>Measurable information about parameters related with the outputs derived from the activity carried out by the “Activity Complex”.<br/><br/>-- Description --<br/>NOTE  Depending on the thematic scope it can contain different values including terms as Registered Pollutants, Waste, Processed Products, leakage, etc.<br/><br/>
    @@ -281,43 +281,43 @@
    - Public InputOutputAmount
      output + Public Time
      time
    - Details: + Details: - + - + - + - + - + - + - + - + - + @@ -330,7 +330,7 @@ Notes:
    - -- Name --<br/>output<br/><br/>-- Definition --<br/>Measurable information about parameters related with the outputs derived from the activity carried out by the “Activity Complex”.<br/><br/>-- Description --<br/>NOTE  Depending on the thematic scope it can contain different values including terms as Registered Pollutants, Waste, Processed Products, leakage, etc.<br/><br/> + -- Name --<br/>time<br/><br/>-- Definition --<br/>The duration of time to which the specified capacity refers, such as 1 year for an annual capacity.<br/><br/>-- Description --<br/>NOTE Total capacities are specified without duration of time.<br/>
    @@ -339,43 +339,43 @@
    - Public Time
      time + Public PT_FreeText
      description
    - Details: + Details: - + - + - + - + - + - + - + - + - + @@ -388,7 +388,7 @@ Notes:
    - -- Name --<br/>time<br/><br/>-- Definition --<br/>The duration of time to which the specified capacity refers, such as 1 year for an annual capacity.<br/><br/>-- Description --<br/>NOTE Total capacities are specified without duration of time.<br/> + -- Name --<br/>description<br/><br/>-- Definition --<br/>A description of the capacity.<br/>
    diff --git a/approved/html/EARoot/EA3/EA1/EA4/EA1/EA9402.htm b/approved/html/EARoot/EA3/EA1/EA4/EA1/EA9402.htm index 1d836e81d..1c3f93fb8 100644 --- a/approved/html/EARoot/EA3/EA1/EA4/EA1/EA9402.htm +++ b/approved/html/EARoot/EA3/EA1/EA4/EA1/EA9402.htm @@ -113,8 +113,8 @@
    -
    Details: -
    +
    Details: +
    Values: true
    Default: true
    Description: Encode code list as externally managed dictionary (applies to ISO 19136:2007 encoding rule). Always true in INSPIRE.
    @@ -126,8 +126,8 @@
    -
    Details: -
    +
    Details: +
    Values: none | narrower | any
    Default: any
    Description: This refers to extensions by a third party, not to extensions by the owner of the vocabulary; the owner will always be able to revise the vocabulary. I.e., if the value is 'none', the referenced vocabulary may not be extended by third parties; if the value is 'narrower', the vocabulary may be extended by narrower terms that have an existing term as a parent; if the value is 'any', the vocabulary may be extended by additional terms on any level. This value must be 'all', empty or missing, if the value 'vocabulary' is empty or missing; in this case any vocabulary may be used.
    @@ -139,8 +139,8 @@
    -
    Details: -
    +
    Details: +
    Description: URI of the vocabulary/code list in the INSPIRE code list registry or in some external registry. The value has to be provided, if an online version of the vocabulary exists.
    @@ -152,8 +152,8 @@
    -
    Details: -
    +
    Details: +
    Values: iso19136_2007 | iso19139_2007 | iso19136_2007_INSPIRE_Extensions
    Default: iso19136_2007_INSPIRE_Extensions
    Description: XML Schema encoding rule to apply
    diff --git a/approved/html/EARoot/EA3/EA1/EA4/EA1/EA9403.htm b/approved/html/EARoot/EA3/EA1/EA4/EA1/EA9403.htm index 9f109bf18..291a57ee9 100644 --- a/approved/html/EARoot/EA3/EA1/EA4/EA1/EA9403.htm +++ b/approved/html/EARoot/EA3/EA1/EA4/EA1/EA9403.htm @@ -113,8 +113,8 @@
    -
    Details: -
    +
    Details: +
    Values: true
    Default: true
    Description: Encode code list as externally managed dictionary (applies to ISO 19136:2007 encoding rule). Always true in INSPIRE.
    @@ -126,8 +126,8 @@
    -
    Details: -
    +
    Details: +
    Values: none | narrower | any
    Default: any
    Description: This refers to extensions by a third party, not to extensions by the owner of the vocabulary; the owner will always be able to revise the vocabulary. I.e., if the value is 'none', the referenced vocabulary may not be extended by third parties; if the value is 'narrower', the vocabulary may be extended by narrower terms that have an existing term as a parent; if the value is 'any', the vocabulary may be extended by additional terms on any level. This value must be 'all', empty or missing, if the value 'vocabulary' is empty or missing; in this case any vocabulary may be used.
    @@ -139,8 +139,8 @@
    -
    Details: -
    +
    Details: +
    Description: URI of the vocabulary/code list in the INSPIRE code list registry or in some external registry. The value has to be provided, if an online version of the vocabulary exists.
    @@ -152,8 +152,8 @@
    -
    Details: -
    +
    Details: +
    Values: iso19136_2007 | iso19139_2007 | iso19136_2007_INSPIRE_Extensions
    Default: iso19136_2007_INSPIRE_Extensions
    Description: XML Schema encoding rule to apply
    diff --git a/approved/html/EARoot/EA3/EA1/EA4/EA1/EA9404.htm b/approved/html/EARoot/EA3/EA1/EA4/EA1/EA9404.htm index 224a8b49d..2866bf2f5 100644 --- a/approved/html/EARoot/EA3/EA1/EA4/EA1/EA9404.htm +++ b/approved/html/EARoot/EA3/EA1/EA4/EA1/EA9404.htm @@ -113,8 +113,8 @@
    -
    Details: -
    +
    Details: +
    Values: true
    Default: true
    Description: Encode code list as externally managed dictionary (applies to ISO 19136:2007 encoding rule). Always true in INSPIRE.
    @@ -126,8 +126,8 @@
    -
    Details: -
    +
    Details: +
    Values: none | narrower | any
    Default: any
    Description: This refers to extensions by a third party, not to extensions by the owner of the vocabulary; the owner will always be able to revise the vocabulary. I.e., if the value is 'none', the referenced vocabulary may not be extended by third parties; if the value is 'narrower', the vocabulary may be extended by narrower terms that have an existing term as a parent; if the value is 'any', the vocabulary may be extended by additional terms on any level. This value must be 'all', empty or missing, if the value 'vocabulary' is empty or missing; in this case any vocabulary may be used.
    @@ -139,8 +139,8 @@
    -
    Details: -
    +
    Details: +
    Description: URI of the vocabulary/code list in the INSPIRE code list registry or in some external registry. The value has to be provided, if an online version of the vocabulary exists.
    @@ -152,8 +152,8 @@
    -
    Details: -
    +
    Details: +
    Values: iso19136_2007 | iso19139_2007 | iso19136_2007_INSPIRE_Extensions
    Default: iso19136_2007_INSPIRE_Extensions
    Description: XML Schema encoding rule to apply
    diff --git a/approved/html/EARoot/EA3/EA1/EA4/EA1/EA9405.htm b/approved/html/EARoot/EA3/EA1/EA4/EA1/EA9405.htm index 406790d25..df83f2aac 100644 --- a/approved/html/EARoot/EA3/EA1/EA4/EA1/EA9405.htm +++ b/approved/html/EARoot/EA3/EA1/EA4/EA1/EA9405.htm @@ -112,38 +112,38 @@
    - Details: + Details: - + - + - + - + - + - + - + - + @@ -165,56 +165,56 @@ - - - - - @@ -183,7 +125,7 @@ - + @@ -191,7 +133,7 @@ - + @@ -214,7 +156,7 @@ Notes:
    - Public PT_FreeText
      description + Public InputOutputValue
      input
    - Details: + Details: - + - + - + - + - + - + - + - + - +
    - + obligation=IR
    Notes: - -- Name --<br/>description<br/><br/>-- Definition --<br/>A more detailed description of the function.<br/><br/> + -- Name --<br/>input<br/><br/>-- Definition --<br/>A  classified or registered type of material or something immaterial, that enters a technical and economical unit according to its function. <br/><br/>-- Description --<br/>NOTE  Depending on the thematic scope it can contain different values including terms as Biomass, Bio-Waste, Fuel, Organic Solvents, Waste Water, Waste for disposal or recovery, Primary Materials, ..<br/><br/>
    @@ -223,43 +223,43 @@
    - Public InputOutputValue
      input + Public InputOutputValue
      output
    - Details: + Details: - + - + - + - + - + - + - + - + @@ -272,7 +272,7 @@ Notes:
    - -- Name --<br/>input<br/><br/>-- Definition --<br/>A  classified or registered type of material or something immaterial, that enters a technical and economical unit according to its function. <br/><br/>-- Description --<br/>NOTE  Depending on the thematic scope it can contain different values including terms as Biomass, Bio-Waste, Fuel, Organic Solvents, Waste Water, Waste for disposal or recovery, Primary Materials, ..<br/><br/> + -- Name --<br/>output<br/><br/>-- Definition --<br/>A  classified or registered type of material or something immaterial, that leaves a technical and economical unit according to its function, ".<br/><br/>-- Description --<br/>NOTE Depending on the thematic scope it can contain different values including terms as Registered Pollutants, Waste, Processed Products, leakage, etc.<br/><br/>
    @@ -281,56 +281,56 @@
    - Public InputOutputValue
      output + Public PT_FreeText
      description
    - Details: + Details: - + - + - + - + - + - + - + - + - +
    - obligation=IR
    +
    Notes: - -- Name --<br/>output<br/><br/>-- Definition --<br/>A  classified or registered type of material or something immaterial, that leaves a technical and economical unit according to its function, ".<br/><br/>-- Description --<br/>NOTE Depending on the thematic scope it can contain different values including terms as Registered Pollutants, Waste, Processed Products, leakage, etc.<br/><br/> + -- Name --<br/>description<br/><br/>-- Definition --<br/>A more detailed description of the function.<br/><br/>
    diff --git a/approved/html/EARoot/EA3/EA1/EA4/EA1/EA9406.htm b/approved/html/EARoot/EA3/EA1/EA4/EA1/EA9406.htm index 9c09c3c96..95441774f 100644 --- a/approved/html/EARoot/EA3/EA1/EA4/EA1/EA9406.htm +++ b/approved/html/EARoot/EA3/EA1/EA4/EA1/EA9406.htm @@ -107,56 +107,56 @@
    - Public Measure
      amount + Public InputOutputValue
      inputOutput
    - Details: + Details: - + - + - + - + - + - + - + - + - +
    - + obligation=IR
    Notes: - -- Name --<br/>amount<br/><br/>-- Definition --<br/>The amount (such as a volume or mass) of the classified or registered material that enters or leaves a technical and economical unit.<br/><br/> + -- Name --<br/>input/output<br/><br/>-- Definition --<br/>A  classified or registered type of material or something immaterial, that enters a technical and economical unit according to its function.<br/><br/>-- Description -- <br/>NOTE Depending on the thematic scope it can contain different values including terms as Biomass, Bio-Waste, Fuel, Organic Solvents, Waste Water, Waste for disposal or recovery, Primary Materials, etc.<br/><br/>
    @@ -165,56 +165,56 @@
    - Public InputOutputValue
      inputOutput + Public Measure
      amount
    - Details: + Details: - + - + - + - + - + - + - + - + - +
    - obligation=IR
    +
    Notes: - -- Name --<br/>input/output<br/><br/>-- Definition --<br/>A  classified or registered type of material or something immaterial, that enters a technical and economical unit according to its function.<br/><br/>-- Description -- <br/>NOTE Depending on the thematic scope it can contain different values including terms as Biomass, Bio-Waste, Fuel, Organic Solvents, Waste Water, Waste for disposal or recovery, Primary Materials, etc.<br/><br/> + -- Name --<br/>amount<br/><br/>-- Definition --<br/>The amount (such as a volume or mass) of the classified or registered material that enters or leaves a technical and economical unit.<br/><br/>
    diff --git a/approved/html/EARoot/EA3/EA1/EA4/EA1/EA9407.htm b/approved/html/EARoot/EA3/EA1/EA4/EA1/EA9407.htm index fbe804186..493e96ca6 100644 --- a/approved/html/EARoot/EA3/EA1/EA4/EA1/EA9407.htm +++ b/approved/html/EARoot/EA3/EA1/EA4/EA1/EA9407.htm @@ -113,8 +113,8 @@
    -
    Details: -
    +
    Details: +
    Values: true
    Default: true
    Description: Encode code list as externally managed dictionary (applies to ISO 19136:2007 encoding rule). Always true in INSPIRE.
    @@ -126,8 +126,8 @@
    -
    Details: -
    +
    Details: +
    Values: none | narrower | any
    Default: any
    Description: This refers to extensions by a third party, not to extensions by the owner of the vocabulary; the owner will always be able to revise the vocabulary. I.e., if the value is 'none', the referenced vocabulary may not be extended by third parties; if the value is 'narrower', the vocabulary may be extended by narrower terms that have an existing term as a parent; if the value is 'any', the vocabulary may be extended by additional terms on any level. This value must be 'all', empty or missing, if the value 'vocabulary' is empty or missing; in this case any vocabulary may be used.
    @@ -139,8 +139,8 @@
    -
    Details: -
    +
    Details: +
    Description: URI of the vocabulary/code list in the INSPIRE code list registry or in some external registry. The value has to be provided, if an online version of the vocabulary exists.
    @@ -152,8 +152,8 @@
    -
    Details: -
    +
    Details: +
    Values: iso19136_2007 | iso19139_2007 | iso19136_2007_INSPIRE_Extensions
    Default: iso19136_2007_INSPIRE_Extensions
    Description: XML Schema encoding rule to apply
    diff --git a/approved/html/EARoot/EA3/EA1/EA4/EA1/EA9408.htm b/approved/html/EARoot/EA3/EA1/EA4/EA1/EA9408.htm index a37c47c59..3a3b65fae 100644 --- a/approved/html/EARoot/EA3/EA1/EA4/EA1/EA9408.htm +++ b/approved/html/EARoot/EA3/EA1/EA4/EA1/EA9408.htm @@ -107,65 +107,7 @@
    - Public DateTime
      dateFrom -
    - Details: - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    - - -
    - - - - -
    - Notes: - - -- Name --<br/>date from<br/><br/>-- Definition --<br/>A date starting from which the permission applies and is valid.<br/> -
    - - -
    - Public DateTime
      dateTo + Public ThematicIdentifier
      Id
    @@ -223,7 +165,7 @@
    - Public DateTime
      decisionDate + Public RelatedParty
      relatedParty
    @@ -281,7 +223,7 @@
    - Public PT_FreeText
      description + Public DateTime
      decisionDate
    @@ -339,7 +281,7 @@
    - Public ThematicIdentifier
      Id + Public DateTime
      dateFrom
    @@ -397,7 +339,7 @@
    - Public Capacity
      permittedCapacity + Public DateTime
      dateTo
    @@ -455,7 +397,7 @@
    - Public Function
      permittedFunction + Public PT_FreeText
      description
    @@ -513,7 +455,7 @@
    - Public RelatedParty
      relatedParty + Public Function
      permittedFunction
    - -- Name --<br/>related party<br/><br/>-- Definition --<br/>Parties related to the permission granted to the activity complex open to many different roles, such as Competent Authorities or Company among others<br/><br/>-- Description --<br/>NOTE Include concepts described on the legislation such as Operator, Company, Port Authority, Agent, Holder, Competent Authority or Keeper.<br/> + -- Name --<br/>permitted function<br/><br/>-- Definition --<br/>Function/s for which the permission is granted. Function is as described by the Activity and potentially complemented by information about the Inputs and Outputs derived from the same.<br/><br/>-- Description --<br/>NOTE Functions permitted according to the permission, such as a permit for a landfill.<br/><br/> +
    + + +
    + Public Capacity
      permittedCapacity +
    + Details: + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + +
    + + +
    + Notes: + + -- Name --<br/>permitted capacity<br/><br/>-- Definition --<br/>Maximum amounts of activity input and/or output according to the permission, <br/><br/>-- Description --<br/>NOTE The physical capacities of a facility may exceed the permitted capacities. <br/>EXAMPLE Incineration of at most 100000 tons of residual waste per year.<br/>
    diff --git a/approved/html/EARoot/EA3/EA1/EA4/EA1/EA9409.htm b/approved/html/EARoot/EA3/EA1/EA4/EA1/EA9409.htm index 97627e5d0..634b27843 100644 --- a/approved/html/EARoot/EA3/EA1/EA4/EA1/EA9409.htm +++ b/approved/html/EARoot/EA3/EA1/EA4/EA1/EA9409.htm @@ -113,8 +113,8 @@
    -
    Details: -
    +
    Details: +
    Values: true
    Default: true
    Description: Encode code list as externally managed dictionary (applies to ISO 19136:2007 encoding rule). Always true in INSPIRE.
    @@ -126,8 +126,8 @@
    -
    Details: -
    +
    Details: +
    Values: none | narrower | any
    Default: any
    Description: This refers to extensions by a third party, not to extensions by the owner of the vocabulary; the owner will always be able to revise the vocabulary. I.e., if the value is 'none', the referenced vocabulary may not be extended by third parties; if the value is 'narrower', the vocabulary may be extended by narrower terms that have an existing term as a parent; if the value is 'any', the vocabulary may be extended by additional terms on any level. This value must be 'all', empty or missing, if the value 'vocabulary' is empty or missing; in this case any vocabulary may be used.
    @@ -139,8 +139,8 @@
    -
    Details: -
    +
    Details: +
    Description: URI of the vocabulary/code list in the INSPIRE code list registry or in some external registry. The value has to be provided, if an online version of the vocabulary exists.
    @@ -152,8 +152,8 @@
    -
    Details: -
    +
    Details: +
    Values: iso19136_2007 | iso19139_2007 | iso19136_2007_INSPIRE_Extensions
    Default: iso19136_2007_INSPIRE_Extensions
    Description: XML Schema encoding rule to apply
    diff --git a/approved/html/EARoot/EA3/EA1/EA4/EA1/EA9410.htm b/approved/html/EARoot/EA3/EA1/EA4/EA1/EA9410.htm index 358c809b5..365bf6bab 100644 --- a/approved/html/EARoot/EA3/EA1/EA4/EA1/EA9410.htm +++ b/approved/html/EARoot/EA3/EA1/EA4/EA1/EA9410.htm @@ -113,8 +113,8 @@
    -
    Details: -
    +
    Details: +
    Values: true
    Default: true
    Description: Encode code list as externally managed dictionary (applies to ISO 19136:2007 encoding rule). Always true in INSPIRE.
    @@ -126,8 +126,8 @@
    -
    Details: -
    +
    Details: +
    Values: none | narrower | any
    Default: any
    Description: This refers to extensions by a third party, not to extensions by the owner of the vocabulary; the owner will always be able to revise the vocabulary. I.e., if the value is 'none', the referenced vocabulary may not be extended by third parties; if the value is 'narrower', the vocabulary may be extended by narrower terms that have an existing term as a parent; if the value is 'any', the vocabulary may be extended by additional terms on any level. This value must be 'all', empty or missing, if the value 'vocabulary' is empty or missing; in this case any vocabulary may be used.
    @@ -139,8 +139,8 @@
    -
    Details: -
    +
    Details: +
    Description: URI of the vocabulary/code list in the INSPIRE code list registry or in some external registry. The value has to be provided, if an online version of the vocabulary exists.
    @@ -152,8 +152,8 @@
    -
    Details: -
    +
    Details: +
    Values: iso19136_2007 | iso19139_2007 | iso19136_2007_INSPIRE_Extensions
    Default: iso19136_2007_INSPIRE_Extensions
    Description: XML Schema encoding rule to apply
    diff --git a/approved/html/EARoot/EA3/EA1/EA4/EA1/EA9411.htm b/approved/html/EARoot/EA3/EA1/EA4/EA1/EA9411.htm index 41c8ae9fd..23c9ab472 100644 --- a/approved/html/EARoot/EA3/EA1/EA4/EA1/EA9411.htm +++ b/approved/html/EARoot/EA3/EA1/EA4/EA1/EA9411.htm @@ -113,8 +113,8 @@
    -
    Details: -
    +
    Details: +
    Values: true
    Default: true
    Description: Encode code list as externally managed dictionary (applies to ISO 19136:2007 encoding rule). Always true in INSPIRE.
    @@ -126,8 +126,8 @@
    -
    Details: -
    +
    Details: +
    Values: none | narrower | any
    Default: any
    Description: This refers to extensions by a third party, not to extensions by the owner of the vocabulary; the owner will always be able to revise the vocabulary. I.e., if the value is 'none', the referenced vocabulary may not be extended by third parties; if the value is 'narrower', the vocabulary may be extended by narrower terms that have an existing term as a parent; if the value is 'any', the vocabulary may be extended by additional terms on any level. This value must be 'all', empty or missing, if the value 'vocabulary' is empty or missing; in this case any vocabulary may be used.
    @@ -139,8 +139,8 @@
    -
    Details: -
    +
    Details: +
    Description: URI of the vocabulary/code list in the INSPIRE code list registry or in some external registry. The value has to be provided, if an online version of the vocabulary exists.
    @@ -152,8 +152,8 @@
    -
    Details: -
    +
    Details: +
    Values: iso19136_2007 | iso19139_2007 | iso19136_2007_INSPIRE_Extensions
    Default: iso19136_2007_INSPIRE_Extensions
    Description: XML Schema encoding rule to apply
    diff --git a/approved/html/EARoot/EA3/EA1/EA4/EA9391.htm b/approved/html/EARoot/EA3/EA1/EA4/EA9391.htm index 7ed3c4326..6483f8109 100644 --- a/approved/html/EARoot/EA3/EA1/EA4/EA9391.htm +++ b/approved/html/EARoot/EA3/EA1/EA4/EA9391.htm @@ -111,8 +111,8 @@
    -
    Details: -
    +
    Details: +
    Default: FIXME
    Description: Target XML namespace of the application schema
    @@ -124,8 +124,8 @@
    -
    Details: -
    +
    Details: +
    Default: FIXME
    Description: Current version of the application schema
    @@ -137,8 +137,8 @@
    -
    Details: -
    +
    Details: +
    Default: FIXME
    Description: Namespace prefix to be used as short form of the target namespace
    @@ -150,8 +150,8 @@
    -
    Details: -
    +
    Details: +
    Default: FIXME
    Description: Name of an XML Schema document to create representing the content of this package
    @@ -163,8 +163,8 @@
    -
    Details: -
    +
    Details: +
    Values: iso19136_2007 | iso19139_2007 | iso19136_2007_INSPIRE_Extensions
    Default: iso19136_2007_INSPIRE_Extensions
    Description: XML Schema encoding rule to apply
    diff --git a/approved/html/EARoot/EA3/EA1/EA5/EA9415.png b/approved/html/EARoot/EA3/EA1/EA5/EA9415.png index 3bdb887c4..0bfb302a8 100644 Binary files a/approved/html/EARoot/EA3/EA1/EA5/EA9415.png and b/approved/html/EARoot/EA3/EA1/EA5/EA9415.png differ diff --git a/approved/html/EARoot/EA3/EA1/EA5/EA9417.png b/approved/html/EARoot/EA3/EA1/EA5/EA9417.png index 6210823d6..dac2dd3c4 100644 Binary files a/approved/html/EARoot/EA3/EA1/EA5/EA9417.png and b/approved/html/EARoot/EA3/EA1/EA5/EA9417.png differ diff --git a/approved/html/EARoot/EA3/EA1/EA5/EA9418.htm b/approved/html/EARoot/EA3/EA1/EA5/EA9418.htm index 404b5bf4f..76a1dc34d 100644 --- a/approved/html/EARoot/EA3/EA1/EA5/EA9418.htm +++ b/approved/html/EARoot/EA3/EA1/EA5/EA9418.htm @@ -113,8 +113,8 @@
    -
    Details: -
    +
    Details: +
     
    @@ -125,8 +125,8 @@
    -
    Details: -
    +
    Details: +
     
    @@ -137,8 +137,8 @@
    -
    Details: -
    +
    Details: +
     
    @@ -149,8 +149,8 @@
    -
    Details: -
    +
    Details: +
     
    @@ -161,8 +161,8 @@
    -
    Details: -
    +
    Details: +
    Values: iso19136_2007 | iso19139_2007 | iso19136_2007_INSPIRE_Extensions
    Default: iso19136_2007_INSPIRE_Extensions
    Description: XML Schema encoding rule to apply
    diff --git a/approved/html/EARoot/EA3/EA1/EA5/EA9419.htm b/approved/html/EARoot/EA3/EA1/EA5/EA9419.htm index 2f9c88578..8d565df02 100644 --- a/approved/html/EARoot/EA3/EA1/EA5/EA9419.htm +++ b/approved/html/EARoot/EA3/EA1/EA5/EA9419.htm @@ -108,43 +108,43 @@
    - Public
      crossBorderConnected + Public
      crossBorderIdentical
    - Details: + Details: - + - + - + - + - + - + - + - + @@ -157,7 +157,7 @@ Notes:
    - -- Definition --<br/>Connection between two network elements in different networks of the same type, but in adjacent areas. The referenced network elements represent the different, but spatially connected real-world phenomena.<br/> + -- Definition --<br/>Connection between two network elements in different networks of the same type, but in adjacent areas. The referenced network elements represent the same real-world phenomena.<br/>
    @@ -166,43 +166,43 @@
    - Public
      crossBorderIdentical + Public
      crossBorderConnected
    - Details: + Details: - + - + - + - + - + - + - + - + @@ -215,7 +215,7 @@ Notes:
    - -- Definition --<br/>Connection between two network elements in different networks of the same type, but in adjacent areas. The referenced network elements represent the same real-world phenomena.<br/> + -- Definition --<br/>Connection between two network elements in different networks of the same type, but in adjacent areas. The referenced network elements represent the different, but spatially connected real-world phenomena.<br/>
    @@ -229,38 +229,38 @@
    - Details: + Details: - + - + - + - + - + - + - + - + @@ -295,8 +295,8 @@ @@ -1259,7 +1201,7 @@ Notes:
    -
    Details: -
    +
    Details: +
     
    @@ -307,8 +307,8 @@
    -
    Details: -
    +
    Details: +
     
    @@ -319,8 +319,8 @@
    -
    Details: -
    +
    Details: +
     
    diff --git a/approved/html/EARoot/EA3/EA1/EA5/EA9420.htm b/approved/html/EARoot/EA3/EA1/EA5/EA9420.htm index 255d1f839..6cc2dbd04 100644 --- a/approved/html/EARoot/EA3/EA1/EA5/EA9420.htm +++ b/approved/html/EARoot/EA3/EA1/EA5/EA9420.htm @@ -125,8 +125,8 @@
    -
    Details: -
    +
    Details: +
     
    @@ -147,8 +147,8 @@
    -
    Details: -
    +
    Details: +
    Values: false
    Default: false
    Description: Create a property type that requires that the instance is encoded inline (applies to ISO 19136:2007 encoding rule). Always set to false in INSPIRE.
    @@ -160,8 +160,8 @@
    -
    Details: -
    +
    Details: +
    Values: true | false
    Default: false
    Description: Identifies the feature type as a mixin type that will not be encoded as a separate element/type in the GML encoding.
    @@ -173,8 +173,8 @@
    -
    Details: -
    +
    Details: +
    Default: FIXME
    Description: URN reference to the feature concept in the INSPIRE Feature Concept Dictionary Register
    @@ -186,8 +186,8 @@
    -
    Details: -
    +
    Details: +
    Values: true | false
    Default: false
    Description: Identifies the feature type as a feature collection.
    @@ -199,8 +199,8 @@
    -
    Details: -
    +
    Details: +
    Values: false
    Default: false
    Description: Surpress creation of a standard property type that supports inline or by-reference encoding (applies to ISO 19136:2007 encoding rule). Always set to false in INSPIRE.
    @@ -212,8 +212,8 @@
    -
    Details: -
    +
    Details: +
    Values: iso19136_2007 | iso19139_2007 | iso19136_2007_INSPIRE_Extensions
    Default: iso19136_2007_INSPIRE_Extensions
    Description: XML Schema encoding rule to apply
    diff --git a/approved/html/EARoot/EA3/EA1/EA5/EA9421.htm b/approved/html/EARoot/EA3/EA1/EA5/EA9421.htm index cc9314d10..5f380c9c1 100644 --- a/approved/html/EARoot/EA3/EA1/EA5/EA9421.htm +++ b/approved/html/EARoot/EA3/EA1/EA5/EA9421.htm @@ -114,38 +114,38 @@
    - Details: + Details: - + - + - + - + - + - + - + - + @@ -192,8 +192,8 @@ @@ -1201,7 +1143,7 @@ Notes:
    -
    Details: -
    +
    Details: +
     
    @@ -214,8 +214,8 @@
    -
    Details: -
    +
    Details: +
    Values: true | false
    Default: false
    Description: Identifies the data type as an object collection.
    @@ -227,8 +227,8 @@
    -
    Details: -
    +
    Details: +
    Values: false
    Default: false
    Description: Surpress creation of a standard property type that supports inline encoding (applies to ISO 19136:2007 encoding rule). Always set to false in INSPIRE.
    @@ -240,8 +240,8 @@
    -
    Details: -
    +
    Details: +
    Values: iso19136_2007 | iso19139_2007 | iso19136_2007_INSPIRE_Extensions
    Default: iso19136_2007_INSPIRE_Extensions
    Description: XML Schema encoding rule to apply
    diff --git a/approved/html/EARoot/EA3/EA1/EA5/EA9422.htm b/approved/html/EARoot/EA3/EA1/EA5/EA9422.htm index a91d034ab..827433746 100644 --- a/approved/html/EARoot/EA3/EA1/EA5/EA9422.htm +++ b/approved/html/EARoot/EA3/EA1/EA5/EA9422.htm @@ -126,8 +126,8 @@
    -
    Details: -
    +
    Details: +
     
    @@ -148,8 +148,8 @@
    -
    Details: -
    +
    Details: +
    Values: false
    Default: false
    Description: Create a property type that requires that the instance is encoded inline (applies to ISO 19136:2007 encoding rule). Always set to false in INSPIRE.
    @@ -161,8 +161,8 @@
    -
    Details: -
    +
    Details: +
    Values: true | false
    Default: false
    Description: Identifies the feature type as a mixin type that will not be encoded as a separate element/type in the GML encoding.
    @@ -174,8 +174,8 @@
    -
    Details: -
    +
    Details: +
    Default: FIXME
    Description: URN reference to the feature concept in the INSPIRE Feature Concept Dictionary Register
    @@ -187,8 +187,8 @@
    -
    Details: -
    +
    Details: +
    Values: true | false
    Default: false
    Description: Identifies the feature type as a feature collection.
    @@ -200,8 +200,8 @@
    -
    Details: -
    +
    Details: +
    Values: false
    Default: false
    Description: Surpress creation of a standard property type that supports inline or by-reference encoding (applies to ISO 19136:2007 encoding rule). Always set to false in INSPIRE.
    @@ -213,8 +213,8 @@
    -
    Details: -
    +
    Details: +
    Values: iso19136_2007 | iso19139_2007 | iso19136_2007_INSPIRE_Extensions
    Default: iso19136_2007_INSPIRE_Extensions
    Description: XML Schema encoding rule to apply
    diff --git a/approved/html/EARoot/EA3/EA1/EA5/EA9423.htm b/approved/html/EARoot/EA3/EA1/EA5/EA9423.htm index e435c29e1..669c86642 100644 --- a/approved/html/EARoot/EA3/EA1/EA5/EA9423.htm +++ b/approved/html/EARoot/EA3/EA1/EA5/EA9423.htm @@ -126,8 +126,8 @@
    -
    Details: -
    +
    Details: +
     
    @@ -148,8 +148,8 @@
    -
    Details: -
    +
    Details: +
    Values: false
    Default: false
    Description: Create a property type that requires that the instance is encoded inline (applies to ISO 19136:2007 encoding rule). Always set to false in INSPIRE.
    @@ -161,8 +161,8 @@
    -
    Details: -
    +
    Details: +
    Values: true | false
    Default: false
    Description: Identifies the feature type as a mixin type that will not be encoded as a separate element/type in the GML encoding.
    @@ -174,8 +174,8 @@
    -
    Details: -
    +
    Details: +
    Default: FIXME
    Description: URN reference to the feature concept in the INSPIRE Feature Concept Dictionary Register
    @@ -187,8 +187,8 @@
    -
    Details: -
    +
    Details: +
    Values: true | false
    Default: false
    Description: Identifies the feature type as a feature collection.
    @@ -200,8 +200,8 @@
    -
    Details: -
    +
    Details: +
    Values: false
    Default: false
    Description: Surpress creation of a standard property type that supports inline or by-reference encoding (applies to ISO 19136:2007 encoding rule). Always set to false in INSPIRE.
    @@ -213,8 +213,8 @@
    -
    Details: -
    +
    Details: +
    Values: iso19136_2007 | iso19139_2007 | iso19136_2007_INSPIRE_Extensions
    Default: iso19136_2007_INSPIRE_Extensions
    Description: XML Schema encoding rule to apply
    diff --git a/approved/html/EARoot/EA3/EA1/EA5/EA9424.htm b/approved/html/EARoot/EA3/EA1/EA5/EA9424.htm index ba10203e8..2b4b4c87e 100644 --- a/approved/html/EARoot/EA3/EA1/EA5/EA9424.htm +++ b/approved/html/EARoot/EA3/EA1/EA5/EA9424.htm @@ -116,38 +116,38 @@
    - Details: + Details: - + - + - + - + - + - + - + - + @@ -174,38 +174,38 @@ @@ -1143,7 +1085,7 @@ Notes:
    - Details: + Details: - + - + - + - + - + - + - + - + @@ -256,8 +256,8 @@ @@ -1085,7 +1027,7 @@ Notes:
    -
    Details: -
    +
    Details: +
     
    @@ -284,8 +284,8 @@
    -
    Details: -
    +
    Details: +
     
    @@ -318,8 +318,8 @@
    -
    Details: -
    +
    Details: +
     
    @@ -342,8 +342,8 @@
    -
    Details: -
    +
    Details: +
     
    @@ -364,8 +364,8 @@
    -
    Details: -
    +
    Details: +
    Values: false
    Default: false
    Description: Create a property type that requires that the instance is encoded inline (applies to ISO 19136:2007 encoding rule). Always set to false in INSPIRE.
    @@ -377,8 +377,8 @@
    -
    Details: -
    +
    Details: +
    Values: true | false
    Default: false
    Description: Identifies the feature type as a mixin type that will not be encoded as a separate element/type in the GML encoding.
    @@ -390,8 +390,8 @@
    -
    Details: -
    +
    Details: +
    Default: FIXME
    Description: URN reference to the feature concept in the INSPIRE Feature Concept Dictionary Register
    @@ -403,8 +403,8 @@
    -
    Details: -
    +
    Details: +
    Values: true | false
    Default: false
    Description: Identifies the feature type as a feature collection.
    @@ -416,8 +416,8 @@
    -
    Details: -
    +
    Details: +
    Values: false
    Default: false
    Description: Surpress creation of a standard property type that supports inline or by-reference encoding (applies to ISO 19136:2007 encoding rule). Always set to false in INSPIRE.
    @@ -429,8 +429,8 @@
    -
    Details: -
    +
    Details: +
    Values: iso19136_2007 | iso19139_2007 | iso19136_2007_INSPIRE_Extensions
    Default: iso19136_2007_INSPIRE_Extensions
    Description: XML Schema encoding rule to apply
    diff --git a/approved/html/EARoot/EA3/EA1/EA5/EA9425.htm b/approved/html/EARoot/EA3/EA1/EA5/EA9425.htm index bfc222350..7f4e55e31 100644 --- a/approved/html/EARoot/EA3/EA1/EA5/EA9425.htm +++ b/approved/html/EARoot/EA3/EA1/EA5/EA9425.htm @@ -113,38 +113,38 @@
    - Details: + Details: - + - + - + - + - + - + - + - + @@ -171,38 +171,38 @@ @@ -1027,7 +969,7 @@ Notes:
    - Details: + Details: - + - + - + - + - + - + - + - + @@ -229,38 +229,38 @@ + + + + + @@ -969,7 +911,7 @@ Notes:
    - Details: + Details: - + - + - + - + - + - + - + - + @@ -295,8 +295,8 @@ @@ -1833,6 +1775,64 @@
    -
    Details: -
    +
    Details: +
     
    @@ -307,8 +307,8 @@
    -
    Details: -
    +
    Details: +
     
    @@ -319,8 +319,8 @@
    -
    Details: -
    +
    Details: +
     
    diff --git a/approved/html/EARoot/EA3/EA1/EA5/EA9426.htm b/approved/html/EARoot/EA3/EA1/EA5/EA9426.htm index db0eba346..17a310cb6 100644 --- a/approved/html/EARoot/EA3/EA1/EA5/EA9426.htm +++ b/approved/html/EARoot/EA3/EA1/EA5/EA9426.htm @@ -115,38 +115,38 @@
    - Details: + Details: - + - + - + - + - + - + - + - + @@ -181,8 +181,8 @@ @@ -1781,7 +1723,7 @@ Notes:
    -
    Details: -
    +
    Details: +
     
    @@ -193,8 +193,8 @@
    -
    Details: -
    +
    Details: +
     
    @@ -205,8 +205,8 @@
    -
    Details: -
    +
    Details: +
     
    @@ -227,8 +227,8 @@
    -
    Details: -
    +
    Details: +
    /*Linear reference targets must be linear network elements. That is, if linear referencing is used or direction is relevant, the target of the network reference shall be a link or a link sequence.*/<br/>inv: element.oclIsKindOf(GeneralisedLink)<br/><br/>
    diff --git a/approved/html/EARoot/EA3/EA1/EA5/EA9427.htm b/approved/html/EARoot/EA3/EA1/EA5/EA9427.htm index 49feaff4f..c4ae87c44 100644 --- a/approved/html/EARoot/EA3/EA1/EA5/EA9427.htm +++ b/approved/html/EARoot/EA3/EA1/EA5/EA9427.htm @@ -114,38 +114,38 @@
    - Details: + Details: - + - + - + - + - + - + - + - + @@ -180,8 +180,8 @@ @@ -1723,7 +1665,7 @@ Notes:
    -
    Details: -
    +
    Details: +
    Values: false
    Default: false
    Description: Create a property type that requires that the instance is encoded inline (applies to ISO 19136:2007 encoding rule). Always set to false in INSPIRE.
    @@ -193,8 +193,8 @@
    -
    Details: -
    +
    Details: +
    Values: true | false
    Default: false
    Description: Identifies the feature type as a mixin type that will not be encoded as a separate element/type in the GML encoding.
    @@ -206,8 +206,8 @@
    -
    Details: -
    +
    Details: +
    Default: FIXME
    Description: URN reference to the feature concept in the INSPIRE Feature Concept Dictionary Register
    @@ -219,8 +219,8 @@
    -
    Details: -
    +
    Details: +
    Values: true | false
    Default: false
    Description: Identifies the feature type as a feature collection.
    @@ -232,8 +232,8 @@
    -
    Details: -
    +
    Details: +
    Values: false
    Default: false
    Description: Surpress creation of a standard property type that supports inline or by-reference encoding (applies to ISO 19136:2007 encoding rule). Always set to false in INSPIRE.
    @@ -245,8 +245,8 @@
    -
    Details: -
    +
    Details: +
    Values: iso19136_2007 | iso19139_2007 | iso19136_2007_INSPIRE_Extensions
    Default: iso19136_2007_INSPIRE_Extensions
    Description: XML Schema encoding rule to apply
    diff --git a/approved/html/EARoot/EA3/EA1/EA5/EA9428.htm b/approved/html/EARoot/EA3/EA1/EA5/EA9428.htm index 641a0bfbf..457b81b52 100644 --- a/approved/html/EARoot/EA3/EA1/EA5/EA9428.htm +++ b/approved/html/EARoot/EA3/EA1/EA5/EA9428.htm @@ -126,8 +126,8 @@
    -
    Details: -
    +
    Details: +
     
    @@ -148,8 +148,8 @@
    -
    Details: -
    +
    Details: +
    Values: false
    Default: false
    Description: Create a property type that requires that the instance is encoded inline (applies to ISO 19136:2007 encoding rule). Always set to false in INSPIRE.
    @@ -161,8 +161,8 @@
    -
    Details: -
    +
    Details: +
    Values: true | false
    Default: false
    Description: Identifies the feature type as a mixin type that will not be encoded as a separate element/type in the GML encoding.
    @@ -174,8 +174,8 @@
    -
    Details: -
    +
    Details: +
    Default: FIXME
    Description: URN reference to the feature concept in the INSPIRE Feature Concept Dictionary Register
    @@ -187,8 +187,8 @@
    -
    Details: -
    +
    Details: +
    Values: true | false
    Default: false
    Description: Identifies the feature type as a feature collection.
    @@ -200,8 +200,8 @@
    -
    Details: -
    +
    Details: +
    Values: false
    Default: false
    Description: Surpress creation of a standard property type that supports inline or by-reference encoding (applies to ISO 19136:2007 encoding rule). Always set to false in INSPIRE.
    @@ -213,8 +213,8 @@
    -
    Details: -
    +
    Details: +
    Values: iso19136_2007 | iso19139_2007 | iso19136_2007_INSPIRE_Extensions
    Default: iso19136_2007_INSPIRE_Extensions
    Description: XML Schema encoding rule to apply
    diff --git a/approved/html/EARoot/EA3/EA1/EA5/EA9429.htm b/approved/html/EARoot/EA3/EA1/EA5/EA9429.htm index 08cbdf0b6..e273850ea 100644 --- a/approved/html/EARoot/EA3/EA1/EA5/EA9429.htm +++ b/approved/html/EARoot/EA3/EA1/EA5/EA9429.htm @@ -115,38 +115,38 @@
    - Details: + Details: - + - + - + - + - + - + - + - + @@ -195,8 +195,8 @@ @@ -1665,7 +1607,7 @@ Notes:
    -
    Details: -
    +
    Details: +
     
    @@ -217,8 +217,8 @@
    -
    Details: -
    +
    Details: +
    Values: false
    Default: false
    Description: Create a property type that requires that the instance is encoded inline (applies to ISO 19136:2007 encoding rule). Always set to false in INSPIRE.
    @@ -230,8 +230,8 @@
    -
    Details: -
    +
    Details: +
    Values: true | false
    Default: false
    Description: Identifies the feature type as a mixin type that will not be encoded as a separate element/type in the GML encoding.
    @@ -243,8 +243,8 @@
    -
    Details: -
    +
    Details: +
    Default: FIXME
    Description: URN reference to the feature concept in the INSPIRE Feature Concept Dictionary Register
    @@ -256,8 +256,8 @@
    -
    Details: -
    +
    Details: +
    Values: true | false
    Default: false
    Description: Identifies the feature type as a feature collection.
    @@ -269,8 +269,8 @@
    -
    Details: -
    +
    Details: +
    Values: false
    Default: false
    Description: Surpress creation of a standard property type that supports inline or by-reference encoding (applies to ISO 19136:2007 encoding rule). Always set to false in INSPIRE.
    @@ -282,8 +282,8 @@
    -
    Details: -
    +
    Details: +
    Values: iso19136_2007 | iso19139_2007 | iso19136_2007_INSPIRE_Extensions
    Default: iso19136_2007_INSPIRE_Extensions
    Description: XML Schema encoding rule to apply
    diff --git a/approved/html/EARoot/EA3/EA1/EA5/EA9430.htm b/approved/html/EARoot/EA3/EA1/EA5/EA9430.htm index 37b3d8ff7..3ad82ea23 100644 --- a/approved/html/EARoot/EA3/EA1/EA5/EA9430.htm +++ b/approved/html/EARoot/EA3/EA1/EA5/EA9430.htm @@ -114,38 +114,38 @@
    - Details: + Details: - + - + - + - + - + - + - + - + @@ -180,8 +180,8 @@ @@ -1607,7 +1549,7 @@ Notes:
    -
    Details: -
    +
    Details: +
    Values: false
    Default: false
    Description: Create a property type that requires that the instance is encoded inline (applies to ISO 19136:2007 encoding rule). Always set to false in INSPIRE.
    @@ -193,8 +193,8 @@
    -
    Details: -
    +
    Details: +
    Values: true | false
    Default: false
    Description: Identifies the feature type as a mixin type that will not be encoded as a separate element/type in the GML encoding.
    @@ -206,8 +206,8 @@
    -
    Details: -
    +
    Details: +
    Default: FIXME
    Description: URN reference to the feature concept in the INSPIRE Feature Concept Dictionary Register
    @@ -219,8 +219,8 @@
    -
    Details: -
    +
    Details: +
    Values: true | false
    Default: false
    Description: Identifies the feature type as a feature collection.
    @@ -232,8 +232,8 @@
    -
    Details: -
    +
    Details: +
    Values: false
    Default: false
    Description: Surpress creation of a standard property type that supports inline or by-reference encoding (applies to ISO 19136:2007 encoding rule). Always set to false in INSPIRE.
    @@ -245,8 +245,8 @@
    -
    Details: -
    +
    Details: +
    Values: iso19136_2007 | iso19139_2007 | iso19136_2007_INSPIRE_Extensions
    Default: iso19136_2007_INSPIRE_Extensions
    Description: XML Schema encoding rule to apply
    diff --git a/approved/html/EARoot/EA3/EA1/EA5/EA9431.htm b/approved/html/EARoot/EA3/EA1/EA5/EA9431.htm index a8648ba67..2152a73fa 100644 --- a/approved/html/EARoot/EA3/EA1/EA5/EA9431.htm +++ b/approved/html/EARoot/EA3/EA1/EA5/EA9431.htm @@ -116,38 +116,38 @@
    - Details: + Details: - + - + - + - + - + - + - + - + @@ -196,8 +196,8 @@ @@ -1549,7 +1491,7 @@ Notes:
    -
    Details: -
    +
    Details: +
     
    @@ -218,8 +218,8 @@
    -
    Details: -
    +
    Details: +
    Values: false
    Default: false
    Description: Create a property type that requires that the instance is encoded inline (applies to ISO 19136:2007 encoding rule). Always set to false in INSPIRE.
    @@ -231,8 +231,8 @@
    -
    Details: -
    +
    Details: +
    Values: true | false
    Default: false
    Description: Identifies the feature type as a mixin type that will not be encoded as a separate element/type in the GML encoding.
    @@ -244,8 +244,8 @@
    -
    Details: -
    +
    Details: +
    Default: FIXME
    Description: URN reference to the feature concept in the INSPIRE Feature Concept Dictionary Register
    @@ -257,8 +257,8 @@
    -
    Details: -
    +
    Details: +
    Values: true | false
    Default: false
    Description: Identifies the feature type as a feature collection.
    @@ -270,8 +270,8 @@
    -
    Details: -
    +
    Details: +
    Values: false
    Default: false
    Description: Surpress creation of a standard property type that supports inline or by-reference encoding (applies to ISO 19136:2007 encoding rule). Always set to false in INSPIRE.
    @@ -283,8 +283,8 @@
    -
    Details: -
    +
    Details: +
    Values: iso19136_2007 | iso19139_2007 | iso19136_2007_INSPIRE_Extensions
    Default: iso19136_2007_INSPIRE_Extensions
    Description: XML Schema encoding rule to apply
    @@ -306,8 +306,8 @@
    -
    Details: -
    +
    Details: +
    /*  All elements have to be in different networks */<br/>inv: element-#gt;forAll( e1, e2 | e1#lt;#gt;e2 implies e1.inNetwork-#gt;excludesAll(e2.inNetwork) )<br/><br/>
    diff --git a/approved/html/EARoot/EA3/EA1/EA5/EA9432.htm b/approved/html/EARoot/EA3/EA1/EA5/EA9432.htm index 67e5184de..3618601e5 100644 --- a/approved/html/EARoot/EA3/EA1/EA5/EA9432.htm +++ b/approved/html/EARoot/EA3/EA1/EA5/EA9432.htm @@ -115,38 +115,38 @@
    - Details: + Details: - + - + - + - + - + - + - + - + @@ -168,43 +168,43 @@ @@ -1491,7 +1433,7 @@ Notes:
    - Public DateTime
      endLifespanVersion + Public Identifier
      inspireId
    - Details: + Details: - + - + - + - + - + - + - + - + - + @@ -217,7 +217,7 @@ Notes:
    - -- Definition --<br/>Date and time at which this version of the spatial object was superseded or retired in the spatial data set.<br/><br/> + -- Definition --<br/>External object identifier of the spatial object.<br/><br/>-- Description --<br/>NOTE An external object identifier is a unique object identifier published by the responsible body, which may be used by external applications to reference the spatial object. The identifier is an identifier of the spatial object, not an identifier of the real-world phenomenon.<br/><br/>
    @@ -226,43 +226,43 @@
    - Public Identifier
      inspireId + Public DateTime
      endLifespanVersion
    - Details: + Details: - + - + - + - + - + - + - + - + - + @@ -275,7 +275,7 @@ Notes:
    - -- Definition --<br/>External object identifier of the spatial object.<br/><br/>-- Description --<br/>NOTE An external object identifier is a unique object identifier published by the responsible body, which may be used by external applications to reference the spatial object. The identifier is an identifier of the spatial object, not an identifier of the real-world phenomenon.<br/><br/> + -- Definition --<br/>Date and time at which this version of the spatial object was superseded or retired in the spatial data set.<br/><br/>
    @@ -309,8 +309,8 @@
    -
    Details: -
    +
    Details: +
     
    @@ -333,8 +333,8 @@
    -
    Details: -
    +
    Details: +
     
    @@ -359,8 +359,8 @@
    -
    Details: -
    +
    Details: +
     
    @@ -385,8 +385,8 @@
    -
    Details: -
    +
    Details: +
     
    @@ -407,8 +407,8 @@
    -
    Details: -
    +
    Details: +
    Values: false
    Default: false
    Description: Create a property type that requires that the instance is encoded inline (applies to ISO 19136:2007 encoding rule). Always set to false in INSPIRE.
    @@ -420,8 +420,8 @@
    -
    Details: -
    +
    Details: +
    Values: true | false
    Default: false
    Description: Identifies the feature type as a mixin type that will not be encoded as a separate element/type in the GML encoding.
    @@ -433,8 +433,8 @@
    -
    Details: -
    +
    Details: +
    Default: FIXME
    Description: URN reference to the feature concept in the INSPIRE Feature Concept Dictionary Register
    @@ -446,8 +446,8 @@
    -
    Details: -
    +
    Details: +
    Values: true | false
    Default: false
    Description: Identifies the feature type as a feature collection.
    @@ -459,8 +459,8 @@
    -
    Details: -
    +
    Details: +
    Values: false
    Default: false
    Description: Surpress creation of a standard property type that supports inline or by-reference encoding (applies to ISO 19136:2007 encoding rule). Always set to false in INSPIRE.
    @@ -472,8 +472,8 @@
    -
    Details: -
    +
    Details: +
    Values: iso19136_2007 | iso19139_2007 | iso19136_2007_INSPIRE_Extensions
    Default: iso19136_2007_INSPIRE_Extensions
    Description: XML Schema encoding rule to apply
    diff --git a/approved/html/EARoot/EA3/EA1/EA5/EA9433.htm b/approved/html/EARoot/EA3/EA1/EA5/EA9433.htm index f254164ec..ed052574b 100644 --- a/approved/html/EARoot/EA3/EA1/EA5/EA9433.htm +++ b/approved/html/EARoot/EA3/EA1/EA5/EA9433.htm @@ -109,43 +109,43 @@
    - Public DateTime
      beginLifespanVersion + Public NetworkReference
      networkRef
    - Details: + Details: - + - + - + - + - + - + - + - + @@ -158,7 +158,7 @@ Notes:
    - -- Definition --<br/>Date and time at which this version of the spatial object was inserted or changed in the spatial data set.<br/><br/> + -- Definition --<br/>Spatial reference of the network-related property.<br/><br/>-- Description --<br/>This attribute provides an indirect spatial reference based on a reference to an element of an underlying network. See the chapter on Object Referencing in the Generic Conceptual Model for a discussion on modelling object references.<br/><br/>
    @@ -167,43 +167,43 @@
    - Public DateTime
      endLifespanVersion + Public Identifier
      inspireId
    - Details: + Details: - + - + - + - + - + - + - + - + - + @@ -216,7 +216,7 @@ Notes:
    - -- Definition --<br/>Date and time at which this version of the spatial object was superseded or retired in the spatial data set.<br/><br/> + -- Definition --<br/>External object identifier of the spatial object.<br/><br/>-- Description --<br/>NOTE An external object identifier is a unique object identifier published by the responsible body, which may be used by external applications to reference the spatial object. The identifier is an identifier of the spatial object, not an identifier of the real-world phenomenon.<br/><br/>
    @@ -225,43 +225,43 @@
    - Public Identifier
      inspireId + Public DateTime
      beginLifespanVersion
    - Details: + Details: - + - + - + - + - + - + - + - + - + - + @@ -274,7 +274,7 @@ Notes:
    - -- Definition --<br/>External object identifier of the spatial object.<br/><br/>-- Description --<br/>NOTE An external object identifier is a unique object identifier published by the responsible body, which may be used by external applications to reference the spatial object. The identifier is an identifier of the spatial object, not an identifier of the real-world phenomenon.<br/><br/> + -- Definition --<br/>Date and time at which this version of the spatial object was inserted or changed in the spatial data set.<br/><br/>
    @@ -283,43 +283,43 @@
    - Public NetworkReference
      networkRef + Public DateTime
      endLifespanVersion
    - Details: + Details: - + - + - + - + - + - + - + - + - + @@ -332,7 +332,7 @@ Notes:
    - -- Definition --<br/>Spatial reference of the network-related property.<br/><br/>-- Description --<br/>This attribute provides an indirect spatial reference based on a reference to an element of an underlying network. See the chapter on Object Referencing in the Generic Conceptual Model for a discussion on modelling object references.<br/><br/> + -- Definition --<br/>Date and time at which this version of the spatial object was superseded or retired in the spatial data set.<br/><br/>
    @@ -354,8 +354,8 @@
    -
    Details: -
    +
    Details: +
    Values: false
    Default: false
    Description: Create a property type that requires that the instance is encoded inline (applies to ISO 19136:2007 encoding rule). Always set to false in INSPIRE.
    @@ -367,8 +367,8 @@
    -
    Details: -
    +
    Details: +
    Values: true | false
    Default: false
    Description: Identifies the feature type as a mixin type that will not be encoded as a separate element/type in the GML encoding.
    @@ -380,8 +380,8 @@
    -
    Details: -
    +
    Details: +
    Default: FIXME
    Description: URN reference to the feature concept in the INSPIRE Feature Concept Dictionary Register
    @@ -393,8 +393,8 @@
    -
    Details: -
    +
    Details: +
    Values: true | false
    Default: false
    Description: Identifies the feature type as a feature collection.
    @@ -406,8 +406,8 @@
    -
    Details: -
    +
    Details: +
    Values: false
    Default: false
    Description: Surpress creation of a standard property type that supports inline or by-reference encoding (applies to ISO 19136:2007 encoding rule). Always set to false in INSPIRE.
    @@ -419,8 +419,8 @@
    -
    Details: -
    +
    Details: +
    Values: iso19136_2007 | iso19139_2007 | iso19136_2007_INSPIRE_Extensions
    Default: iso19136_2007_INSPIRE_Extensions
    Description: XML Schema encoding rule to apply
    diff --git a/approved/html/EARoot/EA3/EA1/EA5/EA9434.htm b/approved/html/EARoot/EA3/EA1/EA5/EA9434.htm index 8a1c9532d..fb67ed4e2 100644 --- a/approved/html/EARoot/EA3/EA1/EA5/EA9434.htm +++ b/approved/html/EARoot/EA3/EA1/EA5/EA9434.htm @@ -126,8 +126,8 @@
    -
    Details: -
    +
    Details: +
     
    @@ -148,8 +148,8 @@
    -
    Details: -
    +
    Details: +
     
    @@ -160,8 +160,8 @@
    -
    Details: -
    +
    Details: +
     
    @@ -172,8 +172,8 @@
    -
    Details: -
    +
    Details: +
     
    diff --git a/approved/html/EARoot/EA3/EA1/EA5/EA9435.htm b/approved/html/EARoot/EA3/EA1/EA5/EA9435.htm index 30f3f7277..55dcb296a 100644 --- a/approved/html/EARoot/EA3/EA1/EA5/EA9435.htm +++ b/approved/html/EARoot/EA3/EA1/EA5/EA9435.htm @@ -115,38 +115,38 @@
    - Details: + Details: - + - + - + - + - + - + - + - + @@ -192,8 +192,8 @@ + + + + + @@ -1433,7 +1375,7 @@ Notes:
    -
    Details: -
    +
    Details: +
     
    @@ -220,8 +220,8 @@
    -
    Details: -
    +
    Details: +
     
    @@ -248,8 +248,8 @@
    -
    Details: -
    +
    Details: +
     
    @@ -270,8 +270,8 @@
    -
    Details: -
    +
    Details: +
    Values: false
    Default: false
    Description: Create a property type that requires that the instance is encoded inline (applies to ISO 19136:2007 encoding rule). Always set to false in INSPIRE.
    @@ -283,8 +283,8 @@
    -
    Details: -
    +
    Details: +
    Values: true | false
    Default: false
    Description: Identifies the feature type as a mixin type that will not be encoded as a separate element/type in the GML encoding.
    @@ -296,8 +296,8 @@
    -
    Details: -
    +
    Details: +
    Default: FIXME
    Description: URN reference to the feature concept in the INSPIRE Feature Concept Dictionary Register
    @@ -309,8 +309,8 @@
    -
    Details: -
    +
    Details: +
    Values: true | false
    Default: false
    Description: Identifies the feature type as a feature collection.
    @@ -322,8 +322,8 @@
    -
    Details: -
    +
    Details: +
    Values: false
    Default: false
    Description: Surpress creation of a standard property type that supports inline or by-reference encoding (applies to ISO 19136:2007 encoding rule). Always set to false in INSPIRE.
    @@ -335,8 +335,8 @@
    -
    Details: -
    +
    Details: +
    Values: iso19136_2007 | iso19139_2007 | iso19136_2007_INSPIRE_Extensions
    Default: iso19136_2007_INSPIRE_Extensions
    Description: XML Schema encoding rule to apply
    diff --git a/approved/html/EARoot/EA3/EA1/EA5/EA9436.htm b/approved/html/EARoot/EA3/EA1/EA5/EA9436.htm index 0cb38ae5c..49d47752e 100644 --- a/approved/html/EARoot/EA3/EA1/EA5/EA9436.htm +++ b/approved/html/EARoot/EA3/EA1/EA5/EA9436.htm @@ -114,38 +114,38 @@
    - Details: + Details: - + - + - + - + - + - + - + - + @@ -167,43 +167,43 @@ @@ -424,7 +366,7 @@ - + @@ -447,7 +389,65 @@ Notes: + +
    - Public Length
      offset + Public Length
      toPosition
    - Details: + Details: - + - + - + - + - + - + - + - + - + - + @@ -216,7 +216,7 @@ Notes:
    - -- Definition --<br/>An offset from the centerline geometry of the generalised link, where applicable; a positive offset is to the right in the direction of the link, a negative offset is to the left.<br/><br/> + -- Definition --<br/>The end position of the linear element, expressed as the distance from the start of the linear network element along its curve geometry.<br/><br/>
    @@ -225,43 +225,43 @@
    - Public Length
      toPosition + Public Length
      offset
    - Details: + Details: - + - + - + - + - + - + - + - + - + - + @@ -274,7 +274,7 @@ Notes:
    - -- Definition --<br/>The end position of the linear element, expressed as the distance from the start of the linear network element along its curve geometry.<br/><br/> + -- Definition --<br/>An offset from the centerline geometry of the generalised link, where applicable; a positive offset is to the right in the direction of the link, a negative offset is to the left.<br/><br/>
    @@ -296,8 +296,8 @@
    -
    Details: -
    +
    Details: +
     
    @@ -308,8 +308,8 @@
    -
    Details: -
    +
    Details: +
     
    @@ -320,8 +320,8 @@
    -
    Details: -
    +
    Details: +
     
    diff --git a/approved/html/EARoot/EA3/EA1/EA5/EA9437.htm b/approved/html/EARoot/EA3/EA1/EA5/EA9437.htm index 2f65aaeb9..392c065c9 100644 --- a/approved/html/EARoot/EA3/EA1/EA5/EA9437.htm +++ b/approved/html/EARoot/EA3/EA1/EA5/EA9437.htm @@ -114,38 +114,38 @@
    - Details: + Details: - + - + - + - + - + - + - + - + @@ -172,38 +172,38 @@ @@ -366,7 +308,7 @@ - + @@ -389,7 +331,7 @@ Notes:
    - Details: + Details: - + - + - + - + - + - + - + - + @@ -238,8 +238,8 @@ - - - - - @@ -282,7 +224,7 @@ @@ -308,7 +250,7 @@ - + @@ -331,7 +273,7 @@ Notes:
    -
    Details: -
    +
    Details: +
     
    @@ -250,8 +250,8 @@
    -
    Details: -
    +
    Details: +
     
    @@ -262,8 +262,8 @@
    -
    Details: -
    +
    Details: +
     
    diff --git a/approved/html/EARoot/EA3/EA1/EA6/EA1/EA9448.png b/approved/html/EARoot/EA3/EA1/EA6/EA1/EA9448.png index 27109a7c8..6d3a33c2d 100644 Binary files a/approved/html/EARoot/EA3/EA1/EA6/EA1/EA9448.png and b/approved/html/EARoot/EA3/EA1/EA6/EA1/EA9448.png differ diff --git a/approved/html/EARoot/EA3/EA1/EA6/EA1/EA9452.png b/approved/html/EARoot/EA3/EA1/EA6/EA1/EA9452.png index f14a4d512..a8fdfddc1 100644 Binary files a/approved/html/EARoot/EA3/EA1/EA6/EA1/EA9452.png and b/approved/html/EARoot/EA3/EA1/EA6/EA1/EA9452.png differ diff --git a/approved/html/EARoot/EA3/EA1/EA6/EA1/EA9453.htm b/approved/html/EARoot/EA3/EA1/EA6/EA1/EA9453.htm index 0e3a15f8f..6aa91c252 100644 --- a/approved/html/EARoot/EA3/EA1/EA6/EA1/EA9453.htm +++ b/approved/html/EARoot/EA3/EA1/EA6/EA1/EA9453.htm @@ -112,8 +112,8 @@
    -
    Details: -
    +
    Details: +
    Default: FIXME
    Description: Target XML namespace of the application schema
    @@ -125,8 +125,8 @@
    -
    Details: -
    +
    Details: +
    Default: FIXME
    Description: Current version of the application schema
    @@ -138,8 +138,8 @@
    -
    Details: -
    +
    Details: +
    Default: FIXME
    Description: Namespace prefix to be used as short form of the target namespace
    @@ -151,8 +151,8 @@
    -
    Details: -
    +
    Details: +
    Default: FIXME
    Description: Name of an XML Schema document to create representing the content of this package
    @@ -164,8 +164,8 @@
    -
    Details: -
    +
    Details: +
    Values: iso19136_2007 | iso19139_2007 | iso19136_2007_INSPIRE_Extensions
    Default: iso19136_2007_INSPIRE_Extensions
    Description: XML Schema encoding rule to apply
    diff --git a/approved/html/EARoot/EA3/EA1/EA6/EA1/EA9454.htm b/approved/html/EARoot/EA3/EA1/EA6/EA1/EA9454.htm index 299935c9d..491ffa680 100644 --- a/approved/html/EARoot/EA3/EA1/EA6/EA1/EA9454.htm +++ b/approved/html/EARoot/EA3/EA1/EA6/EA1/EA9454.htm @@ -110,43 +110,43 @@
    - Public EX_Extent
      extent + Public Identifier
      inspireId
    - Details: + Details: - + - + - + - + - + - + - + - + @@ -159,7 +159,7 @@ Notes:
    - -- Name --<br/>extent<br/><br/>-- Definition --<br/>Information about the spatial and temporal extent.<br/> + -- Name --<br/>inspireId<br/><br/>-- Definition --<br/>External object identifier of the spatial object.<br/><br/>-- Description --<br/>
    @@ -168,43 +168,43 @@
    - Public Identifier
      inspireId + Public EX_Extent
      extent
    - Details: + Details: - + - + - + - + - + - + - + - + @@ -217,7 +217,7 @@ Notes:
    - -- Name --<br/>inspireId<br/><br/>-- Definition --<br/>External object identifier of the spatial object.<br/><br/>-- Description --<br/> + -- Name --<br/>extent<br/><br/>-- Definition --<br/>Information about the spatial and temporal extent.<br/>
    @@ -254,8 +254,8 @@
    -
    Details: -
    +
    Details: +
     
    @@ -276,8 +276,8 @@
    -
    Details: -
    +
    Details: +
    Values: false
    Default: false
    Description: Create a property type that requires that the instance is encoded inline (applies to ISO 19136:2007 encoding rule). Always set to false in INSPIRE.
    @@ -289,8 +289,8 @@
    -
    Details: -
    +
    Details: +
    Values: true | false
    Default: false
    Description: Identifies the feature type as a mixin type that will not be encoded as a separate element/type in the GML encoding.
    @@ -302,8 +302,8 @@
    -
    Details: -
    +
    Details: +
    Default: FIXME
    Description: URN reference to the feature concept in the INSPIRE Feature Concept Dictionary Register
    @@ -315,8 +315,8 @@
    -
    Details: -
    +
    Details: +
    Values: true | false
    Default: false
    Description: Identifies the feature type as a feature collection.
    @@ -328,8 +328,8 @@
    -
    Details: -
    +
    Details: +
    Values: false
    Default: false
    Description: Surpress creation of a standard property type that supports inline or by-reference encoding (applies to ISO 19136:2007 encoding rule). Always set to false in INSPIRE.
    @@ -341,8 +341,8 @@
    -
    Details: -
    +
    Details: +
    Values: iso19136_2007 | iso19139_2007 | iso19136_2007_INSPIRE_Extensions
    Default: iso19136_2007_INSPIRE_Extensions
    Description: XML Schema encoding rule to apply
    diff --git a/approved/html/EARoot/EA3/EA1/EA6/EA2/EA9456.png b/approved/html/EARoot/EA3/EA1/EA6/EA2/EA9456.png index 906b21523..6c312d753 100644 Binary files a/approved/html/EARoot/EA3/EA1/EA6/EA2/EA9456.png and b/approved/html/EARoot/EA3/EA1/EA6/EA2/EA9456.png differ diff --git a/approved/html/EARoot/EA3/EA1/EA6/EA2/EA9457.htm b/approved/html/EARoot/EA3/EA1/EA6/EA2/EA9457.htm index 1d4f4b9b3..044b98763 100644 --- a/approved/html/EARoot/EA3/EA1/EA6/EA2/EA9457.htm +++ b/approved/html/EARoot/EA3/EA1/EA6/EA2/EA9457.htm @@ -113,8 +113,8 @@
    -
    Details: -
    +
    Details: +
    Default: FIXME
    Description: Target XML namespace of the application schema
    @@ -126,8 +126,8 @@
    -
    Details: -
    +
    Details: +
    Default: FIXME
    Description: Current version of the application schema
    @@ -139,8 +139,8 @@
    -
    Details: -
    +
    Details: +
    Default: FIXME
    Description: Namespace prefix to be used as short form of the target namespace
    @@ -152,8 +152,8 @@
    -
    Details: -
    +
    Details: +
    Default: FIXME
    Description: Name of an XML Schema document to create representing the content of this package
    @@ -165,8 +165,8 @@
    -
    Details: -
    +
    Details: +
    Values: iso19136_2007 | iso19139_2007 | iso19136_2007_INSPIRE_Extensions
    Default: iso19136_2007_INSPIRE_Extensions
    Description: XML Schema encoding rule to apply
    diff --git a/approved/html/EARoot/EA3/EA1/EA6/EA2/EA9458.htm b/approved/html/EARoot/EA3/EA1/EA6/EA2/EA9458.htm index 750e183de..9cd61ad84 100644 --- a/approved/html/EARoot/EA3/EA1/EA6/EA2/EA9458.htm +++ b/approved/html/EARoot/EA3/EA1/EA6/EA2/EA9458.htm @@ -107,64 +107,6 @@
    Attribute
    - Public DocumentCitation
      documentation -
    - Details: - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    - - -
    - - - - -
    - Notes: - - -- Name --<br/>documentation<br/><br/>-- Definition --<br/>Further information ( online/offline) associated with the  process .<br/><br/><br/> -
    - - -
    Public Identifier
      inspireId
    - Public ProcessParameter
      processParameter + Public CharacterString
      type
    @@ -340,7 +282,7 @@
    - Public RelatedParty
      responsibleParty + Public DocumentCitation
      documentation
    @@ -398,7 +340,7 @@
    - Public CharacterString
      type + Public ProcessParameter
      processParameter
    + + +
    + Public RelatedParty
      responsibleParty +
    + Details: + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + +
    + + +
    + Notes: + + -- Name --<br/>responsible party<br/><br/>-- Definition --<br/>Individual or organisation related to the process.<br/><br/>-- Description --<br/>EXAMPLE For a numerical simulation a responsible party may be the NWP centre which conducted the simulation<br/>
    @@ -469,8 +469,8 @@
    -
    Details: -
    +
    Details: +
    Values: false
    Default: false
    Description: Create a property type that requires that the instance is encoded inline (applies to ISO 19136:2007 encoding rule). Always set to false in INSPIRE.
    @@ -482,8 +482,8 @@
    -
    Details: -
    +
    Details: +
    Values: true | false
    Default: false
    Description: Identifies the feature type as a mixin type that will not be encoded as a separate element/type in the GML encoding.
    @@ -495,8 +495,8 @@
    -
    Details: -
    +
    Details: +
    Default: FIXME
    Description: URN reference to the feature concept in the INSPIRE Feature Concept Dictionary Register
    @@ -508,8 +508,8 @@
    -
    Details: -
    +
    Details: +
    Values: true | false
    Default: false
    Description: Identifies the feature type as a feature collection.
    @@ -521,8 +521,8 @@
    -
    Details: -
    +
    Details: +
    Values: false
    Default: false
    Description: Surpress creation of a standard property type that supports inline or by-reference encoding (applies to ISO 19136:2007 encoding rule). Always set to false in INSPIRE.
    @@ -534,8 +534,8 @@
    -
    Details: -
    +
    Details: +
    Values: iso19136_2007 | iso19139_2007 | iso19136_2007_INSPIRE_Extensions
    Default: iso19136_2007_INSPIRE_Extensions
    Description: XML Schema encoding rule to apply
    diff --git a/approved/html/EARoot/EA3/EA1/EA6/EA2/EA9459.htm b/approved/html/EARoot/EA3/EA1/EA6/EA2/EA9459.htm index 70875e670..f1474cbd6 100644 --- a/approved/html/EARoot/EA3/EA1/EA6/EA2/EA9459.htm +++ b/approved/html/EARoot/EA3/EA1/EA6/EA2/EA9459.htm @@ -107,56 +107,56 @@
    - Public CharacterString
      description + Public ProcessParameterNameValue
      name
    - Details: + Details: - + - + - + - + - + - + - + - + - +
    - + obligation=technicalGuidance
    Notes: - -- Name --<br/>description<br/><br/>-- Definition --<br/>Description of the process parameter.<br/><br/> + -- Name --<br/>name<br/><br/>-- Definition --<br/>Name of the process parameter.<br/><br/>
    @@ -165,56 +165,56 @@
    - Public ProcessParameterNameValue
      name + Public CharacterString
      description
    - Details: + Details: - + - + - + - + - + - + - + - + - +
    - obligation=technicalGuidance
    +
    Notes: - -- Name --<br/>name<br/><br/>-- Definition --<br/>Name of the process parameter.<br/><br/> + -- Name --<br/>description<br/><br/>-- Definition --<br/>Description of the process parameter.<br/><br/>
    diff --git a/approved/html/EARoot/EA3/EA1/EA6/EA2/EA9460.htm b/approved/html/EARoot/EA3/EA1/EA6/EA2/EA9460.htm index e30dd28f4..9a81e0ca8 100644 --- a/approved/html/EARoot/EA3/EA1/EA6/EA2/EA9460.htm +++ b/approved/html/EARoot/EA3/EA1/EA6/EA2/EA9460.htm @@ -112,8 +112,8 @@
    -
    Details: -
    +
    Details: +
    Values: true
    Default: true
    Description: Encode code list as externally managed dictionary (applies to ISO 19136:2007 encoding rule). Always true in INSPIRE.
    @@ -125,8 +125,8 @@
    -
    Details: -
    +
    Details: +
    Values: none | narrower | any
    Default: any
    Description: This refers to extensions by a third party, not to extensions by the owner of the vocabulary; the owner will always be able to revise the vocabulary. I.e., if the value is 'none', the referenced vocabulary may not be extended by third parties; if the value is 'narrower', the vocabulary may be extended by narrower terms that have an existing term as a parent; if the value is 'any', the vocabulary may be extended by additional terms on any level. This value must be 'all', empty or missing, if the value 'vocabulary' is empty or missing; in this case any vocabulary may be used.
    @@ -138,8 +138,8 @@
    -
    Details: -
    +
    Details: +
    Values: iso19136_2007 | iso19139_2007 | iso19136_2007_INSPIRE_Extensions
    Default: iso19136_2007_INSPIRE_Extensions
    Description: XML Schema encoding rule to apply
    diff --git a/approved/html/EARoot/EA3/EA1/EA6/EA3/EA1/EA9477.htm b/approved/html/EARoot/EA3/EA1/EA6/EA3/EA1/EA9477.htm index 47aab3fb3..1aa5d0e70 100644 --- a/approved/html/EARoot/EA3/EA1/EA6/EA3/EA1/EA9477.htm +++ b/approved/html/EARoot/EA3/EA1/EA6/EA3/EA1/EA9477.htm @@ -111,8 +111,8 @@
    -
    Details: -
    +
    Details: +
    Values: iso19136_2007 | iso19139_2007 | iso19136_2007_INSPIRE_Extensions
    Default: iso19136_2007_INSPIRE_Extensions
    Description: XML Schema encoding rule to apply
    diff --git a/approved/html/EARoot/EA3/EA1/EA6/EA3/EA1/EA9490.htm b/approved/html/EARoot/EA3/EA1/EA6/EA3/EA1/EA9490.htm index 6d10d9e4c..fd639c657 100644 --- a/approved/html/EARoot/EA3/EA1/EA6/EA3/EA1/EA9490.htm +++ b/approved/html/EARoot/EA3/EA1/EA6/EA3/EA1/EA9490.htm @@ -114,8 +114,8 @@
    -
    Details: -
    +
    Details: +
    Values: false
    Default: false
    Description: Create a property type that requires that the instance is encoded inline (applies to ISO 19136:2007 encoding rule). Always set to false in INSPIRE.
    @@ -127,8 +127,8 @@
    -
    Details: -
    +
    Details: +
    Values: true | false
    Default: false
    Description: Identifies the feature type as a mixin type that will not be encoded as a separate element/type in the GML encoding.
    @@ -140,8 +140,8 @@
    -
    Details: -
    +
    Details: +
    Default: FIXME
    Description: URN reference to the feature concept in the INSPIRE Feature Concept Dictionary Register
    @@ -153,8 +153,8 @@
    -
    Details: -
    +
    Details: +
    Values: true | false
    Default: false
    Description: Identifies the feature type as a feature collection.
    @@ -166,8 +166,8 @@
    -
    Details: -
    +
    Details: +
    Values: false
    Default: false
    Description: Surpress creation of a standard property type that supports inline or by-reference encoding (applies to ISO 19136:2007 encoding rule). Always set to false in INSPIRE.
    @@ -179,8 +179,8 @@
    -
    Details: -
    +
    Details: +
    Values: iso19136_2007 | iso19139_2007 | iso19136_2007_INSPIRE_Extensions
    Default: iso19136_2007_INSPIRE_Extensions
    Description: XML Schema encoding rule to apply
    @@ -202,8 +202,8 @@
    -
    Details: -
    +
    Details: +
    /*featureOfInterest must be a SF_SamplingSolid or SF_SamplingSurface */<br/>inv: self.featureOfInterest-#gt;forAll(oclIsKindOf(SF_SamplingSolid))<br/>OR<br/>inv: self.featureOfInterest-#gt;forAll(oclIsKindOf(SF_SamplingSurface))<br/>
    @@ -217,8 +217,8 @@
    -
    Details: -
    +
    Details: +
    /*phenomenonTime must be a TM_Instant*/<br/>inv: self.phenomenonTime.oclIsKindOf(TM_Instant)<br/>
    @@ -232,8 +232,8 @@
    -
    Details: -
    +
    Details: +
    /*result must be a RectifiedGridCoverage or RefererencableGridCoverage*/<br/>inv: self.result.oclIsKindOf(RectifiedGridCoverage) OR self.result.oclIsKindOf(ReferenceableGridCoverage)<br/>
    @@ -255,8 +255,8 @@
    -
    Details: -
    +
    Details: +
    diff --git a/approved/html/EARoot/EA3/EA1/EA6/EA3/EA1/EA9491.htm b/approved/html/EARoot/EA3/EA1/EA6/EA3/EA1/EA9491.htm index a690062e5..ef136e8f4 100644 --- a/approved/html/EARoot/EA3/EA1/EA6/EA3/EA1/EA9491.htm +++ b/approved/html/EARoot/EA3/EA1/EA6/EA3/EA1/EA9491.htm @@ -113,8 +113,8 @@
    -
    Details: -
    +
    Details: +
    Values: false
    Default: false
    Description: Create a property type that requires that the instance is encoded inline (applies to ISO 19136:2007 encoding rule). Always set to false in INSPIRE.
    @@ -126,8 +126,8 @@
    -
    Details: -
    +
    Details: +
    Values: true | false
    Default: false
    Description: Identifies the feature type as a mixin type that will not be encoded as a separate element/type in the GML encoding.
    @@ -139,8 +139,8 @@
    -
    Details: -
    +
    Details: +
    Default: FIXME
    Description: URN reference to the feature concept in the INSPIRE Feature Concept Dictionary Register
    @@ -152,8 +152,8 @@
    -
    Details: -
    +
    Details: +
    Values: true | false
    Default: false
    Description: Identifies the feature type as a feature collection.
    @@ -165,8 +165,8 @@
    -
    Details: -
    +
    Details: +
    Values: false
    Default: false
    Description: Surpress creation of a standard property type that supports inline or by-reference encoding (applies to ISO 19136:2007 encoding rule). Always set to false in INSPIRE.
    @@ -178,8 +178,8 @@
    -
    Details: -
    +
    Details: +
    Values: iso19136_2007 | iso19139_2007 | iso19136_2007_INSPIRE_Extensions
    Default: iso19136_2007_INSPIRE_Extensions
    Description: XML Schema encoding rule to apply
    @@ -201,8 +201,8 @@
    -
    Details: -
    +
    Details: +
    /*featureOfInterest must be a SF_SamplingSolid */<br/>inv: self.featureOfInterest-#gt;forAll(oclIsKindOf(SF_SamplingSolid))<br/>
    @@ -216,8 +216,8 @@
    -
    Details: -
    +
    Details: +
    /* phenomenonTime must be a TM_Period */<br/>inv: self.phenomenonTime.oclIsKindOf(TM_Period)<br/>
    @@ -231,8 +231,8 @@
    -
    Details: -
    +
    Details: +
    /* result must be a RectifiedGridCoverage or a ReferenceableGridCoverage */<br/>inv: self.result.oclIsKindOf(RectifiedGridCoverage) OR self.result.oclIsKindOf(ReferenceableGridCoverage)<br/>
    @@ -246,8 +246,8 @@
    -
    Details: -
    +
    Details: +
     
    diff --git a/approved/html/EARoot/EA3/EA1/EA6/EA3/EA2/EA9497.png b/approved/html/EARoot/EA3/EA1/EA6/EA3/EA2/EA9497.png index 3671bb9ad..172d7f4b0 100644 Binary files a/approved/html/EARoot/EA3/EA1/EA6/EA3/EA2/EA9497.png and b/approved/html/EARoot/EA3/EA1/EA6/EA3/EA2/EA9497.png differ diff --git a/approved/html/EARoot/EA3/EA1/EA6/EA3/EA2/EA9502.htm b/approved/html/EARoot/EA3/EA1/EA6/EA3/EA2/EA9502.htm index ffe778439..b3605f783 100644 --- a/approved/html/EARoot/EA3/EA1/EA6/EA3/EA2/EA9502.htm +++ b/approved/html/EARoot/EA3/EA1/EA6/EA3/EA2/EA9502.htm @@ -111,8 +111,8 @@
    -
    Details: -
    +
    Details: +
    Values: iso19136_2007 | iso19139_2007 | iso19136_2007_INSPIRE_Extensions
    Default: iso19136_2007_INSPIRE_Extensions
    Description: XML Schema encoding rule to apply
    diff --git a/approved/html/EARoot/EA3/EA1/EA6/EA3/EA2/EA9523.htm b/approved/html/EARoot/EA3/EA1/EA6/EA3/EA2/EA9523.htm index e1d251991..7ac731402 100644 --- a/approved/html/EARoot/EA3/EA1/EA6/EA3/EA2/EA9523.htm +++ b/approved/html/EARoot/EA3/EA1/EA6/EA3/EA2/EA9523.htm @@ -113,8 +113,8 @@
    -
    Details: -
    +
    Details: +
    Values: false
    Default: false
    Description: Create a property type that requires that the instance is encoded inline (applies to ISO 19136:2007 encoding rule). Always set to false in INSPIRE.
    @@ -126,8 +126,8 @@
    -
    Details: -
    +
    Details: +
    Values: true | false
    Default: false
    Description: Identifies the feature type as a mixin type that will not be encoded as a separate element/type in the GML encoding.
    @@ -139,8 +139,8 @@
    -
    Details: -
    +
    Details: +
    Default: FIXME
    Description: URN reference to the feature concept in the INSPIRE Feature Concept Dictionary Register
    @@ -152,8 +152,8 @@
    -
    Details: -
    +
    Details: +
    Values: true | false
    Default: false
    Description: Identifies the feature type as a feature collection.
    @@ -165,8 +165,8 @@
    -
    Details: -
    +
    Details: +
    Values: false
    Default: false
    Description: Surpress creation of a standard property type that supports inline or by-reference encoding (applies to ISO 19136:2007 encoding rule). Always set to false in INSPIRE.
    @@ -178,8 +178,8 @@
    -
    Details: -
    +
    Details: +
    Values: iso19136_2007 | iso19139_2007 | iso19136_2007_INSPIRE_Extensions
    Default: iso19136_2007_INSPIRE_Extensions
    Description: XML Schema encoding rule to apply
    @@ -201,8 +201,8 @@
    -
    Details: -
    +
    Details: +
    /* featureOfInterest must be a SF_SamplingPoint */<br/>inv: self.featureOfInterest-#gt;forAll(oclIsKindOf(SF_SamplingPoint))<br/>
    @@ -216,8 +216,8 @@
    -
    Details: -
    +
    Details: +
    /* phenomenonTime must be a TM_Instant */<br/>inv: self.phenomenonTime.oclIsKindOf(TM_Instant)<br/>
    @@ -231,8 +231,8 @@
    -
    Details: -
    +
    Details: +
    /* result must be a CV_DiscretePointCoverage */<br/>inv: self.result.oclIsKindOf(CV_DiscretePointCoverage)<br/>
    diff --git a/approved/html/EARoot/EA3/EA1/EA6/EA3/EA2/EA9524.htm b/approved/html/EARoot/EA3/EA1/EA6/EA3/EA2/EA9524.htm index 2da9b00e8..d3c594f2e 100644 --- a/approved/html/EARoot/EA3/EA1/EA6/EA3/EA2/EA9524.htm +++ b/approved/html/EARoot/EA3/EA1/EA6/EA3/EA2/EA9524.htm @@ -113,8 +113,8 @@
    -
    Details: -
    +
    Details: +
    Values: false
    Default: false
    Description: Create a property type that requires that the instance is encoded inline (applies to ISO 19136:2007 encoding rule). Always set to false in INSPIRE.
    @@ -126,8 +126,8 @@
    -
    Details: -
    +
    Details: +
    Values: true | false
    Default: false
    Description: Identifies the feature type as a mixin type that will not be encoded as a separate element/type in the GML encoding.
    @@ -139,8 +139,8 @@
    -
    Details: -
    +
    Details: +
    Default: FIXME
    Description: URN reference to the feature concept in the INSPIRE Feature Concept Dictionary Register
    @@ -152,8 +152,8 @@
    -
    Details: -
    +
    Details: +
    Values: true | false
    Default: false
    Description: Identifies the feature type as a feature collection.
    @@ -165,8 +165,8 @@
    -
    Details: -
    +
    Details: +
    Values: false
    Default: false
    Description: Surpress creation of a standard property type that supports inline or by-reference encoding (applies to ISO 19136:2007 encoding rule). Always set to false in INSPIRE.
    @@ -178,8 +178,8 @@
    -
    Details: -
    +
    Details: +
    Values: iso19136_2007 | iso19139_2007 | iso19136_2007_INSPIRE_Extensions
    Default: iso19136_2007_INSPIRE_Extensions
    Description: XML Schema encoding rule to apply
    @@ -201,8 +201,8 @@
    -
    Details: -
    +
    Details: +
    /* featureOfInterest must be a SF_SamplingSurface */ <br/>inv: self.featureOfInterest-#gt;forAll(oclIsKindOf(SF_SamplingSurface))<br/>
    @@ -216,8 +216,8 @@
    -
    Details: -
    +
    Details: +
    /*phenomenonTime must be a TM_Instant */<br/>inv: self.phenomenonTime.oclIsKindOf(TM_Instant)<br/>
    @@ -231,8 +231,8 @@
    -
    Details: -
    +
    Details: +
    /* result must be a MultiPointCoverage */<br/>inv: self.result.oclIsKindOf(MultiPointCoverage)<br/>
    diff --git a/approved/html/EARoot/EA3/EA1/EA6/EA3/EA2/EA9525.htm b/approved/html/EARoot/EA3/EA1/EA6/EA3/EA2/EA9525.htm index 2607022e4..05a05cab8 100644 --- a/approved/html/EARoot/EA3/EA1/EA6/EA3/EA2/EA9525.htm +++ b/approved/html/EARoot/EA3/EA1/EA6/EA3/EA2/EA9525.htm @@ -113,8 +113,8 @@
    -
    Details: -
    +
    Details: +
    Values: false
    Default: false
    Description: Create a property type that requires that the instance is encoded inline (applies to ISO 19136:2007 encoding rule). Always set to false in INSPIRE.
    @@ -126,8 +126,8 @@
    -
    Details: -
    +
    Details: +
    Values: true | false
    Default: false
    Description: Identifies the feature type as a mixin type that will not be encoded as a separate element/type in the GML encoding.
    @@ -139,8 +139,8 @@
    -
    Details: -
    +
    Details: +
    Default: FIXME
    Description: URN reference to the feature concept in the INSPIRE Feature Concept Dictionary Register
    @@ -152,8 +152,8 @@
    -
    Details: -
    +
    Details: +
    Values: true | false
    Default: false
    Description: Identifies the feature type as a feature collection.
    @@ -165,8 +165,8 @@
    -
    Details: -
    +
    Details: +
    Values: false
    Default: false
    Description: Surpress creation of a standard property type that supports inline or by-reference encoding (applies to ISO 19136:2007 encoding rule). Always set to false in INSPIRE.
    @@ -178,8 +178,8 @@
    -
    Details: -
    +
    Details: +
    Values: iso19136_2007 | iso19139_2007 | iso19136_2007_INSPIRE_Extensions
    Default: iso19136_2007_INSPIRE_Extensions
    Description: XML Schema encoding rule to apply
    @@ -201,8 +201,8 @@
    -
    Details: -
    +
    Details: +
    /* featureOfInterest must be a SF_SamplingPoint */<br/>inv: self.featureOfInterest-#gt;forAll(oclIsKindOf(SF_SamplingPoint))<br/>
    @@ -216,8 +216,8 @@
    -
    Details: -
    +
    Details: +
    /* result must be a Timeseries */<br/>inv: self.result.oclIsKindOf(TimeSeries)<br/>
    @@ -231,8 +231,8 @@
    -
    Details: -
    +
    Details: +
    /*phenomenonTime must be a TM_Period */<br/>inv: self.phenomenonTime.oclIsKindOf(TM_Period)<br/>
    diff --git a/approved/html/EARoot/EA3/EA1/EA6/EA3/EA2/EA9526.htm b/approved/html/EARoot/EA3/EA1/EA6/EA3/EA2/EA9526.htm index 9f3fea85c..3eb405b65 100644 --- a/approved/html/EARoot/EA3/EA1/EA6/EA3/EA2/EA9526.htm +++ b/approved/html/EARoot/EA3/EA1/EA6/EA3/EA2/EA9526.htm @@ -114,8 +114,8 @@
    -
    Details: -
    +
    Details: +
    Values: false
    Default: false
    Description: Create a property type that requires that the instance is encoded inline (applies to ISO 19136:2007 encoding rule). Always set to false in INSPIRE.
    @@ -127,8 +127,8 @@
    -
    Details: -
    +
    Details: +
    Values: true | false
    Default: false
    Description: Identifies the feature type as a mixin type that will not be encoded as a separate element/type in the GML encoding.
    @@ -140,8 +140,8 @@
    -
    Details: -
    +
    Details: +
    Default: FIXME
    Description: URN reference to the feature concept in the INSPIRE Feature Concept Dictionary Register
    @@ -153,8 +153,8 @@
    -
    Details: -
    +
    Details: +
    Values: true | false
    Default: false
    Description: Identifies the feature type as a feature collection.
    @@ -166,8 +166,8 @@
    -
    Details: -
    +
    Details: +
    Values: false
    Default: false
    Description: Surpress creation of a standard property type that supports inline or by-reference encoding (applies to ISO 19136:2007 encoding rule). Always set to false in INSPIRE.
    @@ -179,8 +179,8 @@
    -
    Details: -
    +
    Details: +
    Values: iso19136_2007 | iso19139_2007 | iso19136_2007_INSPIRE_Extensions
    Default: iso19136_2007_INSPIRE_Extensions
    Description: XML Schema encoding rule to apply
    @@ -202,8 +202,8 @@
    -
    Details: -
    +
    Details: +
    /* each member shall be a PointObservation */<br/>inv: self.member.oclIsKindOf(PointObservation)<br/>
    diff --git a/approved/html/EARoot/EA3/EA1/EA6/EA3/EA3/EA9533.htm b/approved/html/EARoot/EA3/EA1/EA6/EA3/EA3/EA9533.htm index 18ae5cf4f..4d8294b4b 100644 --- a/approved/html/EARoot/EA3/EA1/EA6/EA3/EA3/EA9533.htm +++ b/approved/html/EARoot/EA3/EA1/EA6/EA3/EA3/EA9533.htm @@ -111,8 +111,8 @@
    -
    Details: -
    +
    Details: +
    Values: iso19136_2007 | iso19139_2007 | iso19136_2007_INSPIRE_Extensions
    Default: iso19136_2007_INSPIRE_Extensions
    Description: XML Schema encoding rule to apply
    diff --git a/approved/html/EARoot/EA3/EA1/EA6/EA3/EA3/EA9544.htm b/approved/html/EARoot/EA3/EA1/EA6/EA3/EA3/EA9544.htm index f97cef347..214127b1e 100644 --- a/approved/html/EARoot/EA3/EA1/EA6/EA3/EA3/EA9544.htm +++ b/approved/html/EARoot/EA3/EA1/EA6/EA3/EA3/EA9544.htm @@ -113,8 +113,8 @@
    -
    Details: -
    +
    Details: +
    Values: false
    Default: false
    Description: Create a property type that requires that the instance is encoded inline (applies to ISO 19136:2007 encoding rule). Always set to false in INSPIRE.
    @@ -126,8 +126,8 @@
    -
    Details: -
    +
    Details: +
    Values: true | false
    Default: false
    Description: Identifies the feature type as a mixin type that will not be encoded as a separate element/type in the GML encoding.
    @@ -139,8 +139,8 @@
    -
    Details: -
    +
    Details: +
    Default: FIXME
    Description: URN reference to the feature concept in the INSPIRE Feature Concept Dictionary Register
    @@ -152,8 +152,8 @@
    -
    Details: -
    +
    Details: +
    Values: true | false
    Default: false
    Description: Identifies the feature type as a feature collection.
    @@ -165,8 +165,8 @@
    -
    Details: -
    +
    Details: +
    Values: false
    Default: false
    Description: Surpress creation of a standard property type that supports inline or by-reference encoding (applies to ISO 19136:2007 encoding rule). Always set to false in INSPIRE.
    @@ -178,8 +178,8 @@
    -
    Details: -
    +
    Details: +
    Values: iso19136_2007 | iso19139_2007 | iso19136_2007_INSPIRE_Extensions
    Default: iso19136_2007_INSPIRE_Extensions
    Description: XML Schema encoding rule to apply
    @@ -201,8 +201,8 @@
    -
    Details: -
    +
    Details: +
    /* featureOfInterest must be a SF_SamplingCurve */<br/>inv: self.featureOfInterest-#gt;forAll(oclIsKindOf(SF_SamplingCurvet))<br/>
    @@ -216,8 +216,8 @@
    -
    Details: -
    +
    Details: +
    /*phenomenonTime must be a TM_Instant */<br/>inv: self.phenomenonTime.oclIsKindOf(TM_Instant)<br/>
    @@ -231,8 +231,8 @@
    -
    Details: -
    +
    Details: +
    /*result must be a ReferenceableGridCoverage or a RectifiedGridCoverage */<br/>inv: self.result.oclIsKindOf(ReferenceableGridCoverage)<br/>OR<br/>inv: self.result.oclIsKindOf(RectifiedGridCoverage)<br/>
    @@ -246,8 +246,8 @@
    -
    Details: -
    +
    Details: +
     
    diff --git a/approved/html/EARoot/EA3/EA1/EA6/EA3/EA3/EA9546.htm b/approved/html/EARoot/EA3/EA1/EA6/EA3/EA3/EA9546.htm index 70975e77a..b8e06e820 100644 --- a/approved/html/EARoot/EA3/EA1/EA6/EA3/EA3/EA9546.htm +++ b/approved/html/EARoot/EA3/EA1/EA6/EA3/EA3/EA9546.htm @@ -112,38 +112,38 @@
    - Details: + Details: - + - + - + - + - + - + - + - + diff --git a/approved/html/EARoot/EA3/EA1/EA6/EA3/EA3/EA9547.htm b/approved/html/EARoot/EA3/EA1/EA6/EA3/EA3/EA9547.htm index ed525e6b6..215343c0c 100644 --- a/approved/html/EARoot/EA3/EA1/EA6/EA3/EA3/EA9547.htm +++ b/approved/html/EARoot/EA3/EA1/EA6/EA3/EA3/EA9547.htm @@ -113,8 +113,8 @@ @@ -1375,7 +1317,7 @@ Notes:
    -
    Details: -
    +
    Details: +
    Values: false
    Default: false
    Description: Create a property type that requires that the instance is encoded inline (applies to ISO 19136:2007 encoding rule). Always set to false in INSPIRE.
    @@ -126,8 +126,8 @@
    -
    Details: -
    +
    Details: +
    Values: true | false
    Default: false
    Description: Identifies the feature type as a mixin type that will not be encoded as a separate element/type in the GML encoding.
    @@ -139,8 +139,8 @@
    -
    Details: -
    +
    Details: +
    Default: FIXME
    Description: URN reference to the feature concept in the INSPIRE Feature Concept Dictionary Register
    @@ -152,8 +152,8 @@
    -
    Details: -
    +
    Details: +
    Values: true | false
    Default: false
    Description: Identifies the feature type as a feature collection.
    @@ -165,8 +165,8 @@
    -
    Details: -
    +
    Details: +
    Values: false
    Default: false
    Description: Surpress creation of a standard property type that supports inline or by-reference encoding (applies to ISO 19136:2007 encoding rule). Always set to false in INSPIRE.
    @@ -178,8 +178,8 @@
    -
    Details: -
    +
    Details: +
    Values: iso19136_2007 | iso19139_2007 | iso19136_2007_INSPIRE_Extensions
    Default: iso19136_2007_INSPIRE_Extensions
    Description: XML Schema encoding rule to apply
    @@ -201,8 +201,8 @@
    -
    Details: -
    +
    Details: +
    /*featureOfInterest must be a SF_SamplingPoint*/<br/>inv: self.featureOfInterest-#gt;forAll(oclIsKindOf(SF_SamplingPoint))<br/>
    @@ -216,8 +216,8 @@
    -
    Details: -
    +
    Details: +
    /* phenomenonTime must be a TM_Period */<br/>inv: self.phenomenonTime.oclIsKindOf(TM_Period)<br/>
    @@ -231,8 +231,8 @@
    -
    Details: -
    +
    Details: +
    /* result must be a Timeseries */<br/>inv: self.result.oclIsKindOf(TimeSeries)<br/>
    @@ -246,8 +246,8 @@
    -
    Details: -
    +
    Details: +
    /* each point in the result must be a TimeLocationValueTriple */<br/>inv: self.result.point.oclIsKindOf(TimeLocationValueTriple)<br/>
    diff --git a/approved/html/EARoot/EA3/EA1/EA6/EA3/EA9463.htm b/approved/html/EARoot/EA3/EA1/EA6/EA3/EA9463.htm index 5cadd8171..c3bd3b468 100644 --- a/approved/html/EARoot/EA3/EA1/EA6/EA3/EA9463.htm +++ b/approved/html/EARoot/EA3/EA1/EA6/EA3/EA9463.htm @@ -113,8 +113,8 @@
    -
    Details: -
    +
    Details: +
    Default: FIXME
    Description: Target XML namespace of the application schema
    @@ -126,8 +126,8 @@
    -
    Details: -
    +
    Details: +
    Default: FIXME
    Description: Current version of the application schema
    @@ -139,8 +139,8 @@
    -
    Details: -
    +
    Details: +
    Default: FIXME
    Description: Namespace prefix to be used as short form of the target namespace
    @@ -152,8 +152,8 @@
    -
    Details: -
    +
    Details: +
    Default: FIXME
    Description: Name of an XML Schema document to create representing the content of this package
    @@ -165,8 +165,8 @@
    -
    Details: -
    +
    Details: +
    Values: iso19136_2007 | iso19139_2007 | iso19136_2007_INSPIRE_Extensions
    Default: iso19136_2007_INSPIRE_Extensions
    Description: XML Schema encoding rule to apply
    diff --git a/approved/html/EARoot/EA3/EA1/EA6/EA3/EA9465.htm b/approved/html/EARoot/EA3/EA1/EA6/EA3/EA9465.htm index d917cd8d8..c8847af76 100644 --- a/approved/html/EARoot/EA3/EA1/EA6/EA3/EA9465.htm +++ b/approved/html/EARoot/EA3/EA1/EA6/EA3/EA9465.htm @@ -111,8 +111,8 @@
    -
    Details: -
    +
    Details: +
    Values: iso19136_2007 | iso19139_2007 | iso19136_2007_INSPIRE_Extensions
    Default: iso19136_2007_INSPIRE_Extensions
    Description: XML Schema encoding rule to apply
    diff --git a/approved/html/EARoot/EA3/EA1/EA6/EA3/EA9467.htm b/approved/html/EARoot/EA3/EA1/EA6/EA3/EA9467.htm index 76e77564f..c5764061b 100644 --- a/approved/html/EARoot/EA3/EA1/EA6/EA3/EA9467.htm +++ b/approved/html/EARoot/EA3/EA1/EA6/EA3/EA9467.htm @@ -111,8 +111,8 @@
    -
    Details: -
    +
    Details: +
    Values: iso19136_2007 | iso19139_2007 | iso19136_2007_INSPIRE_Extensions
    Default: iso19136_2007_INSPIRE_Extensions
    Description: XML Schema encoding rule to apply
    diff --git a/approved/html/EARoot/EA3/EA1/EA6/EA3/EA9469.htm b/approved/html/EARoot/EA3/EA1/EA6/EA3/EA9469.htm index 5f2a2ef48..8802fa931 100644 --- a/approved/html/EARoot/EA3/EA1/EA6/EA3/EA9469.htm +++ b/approved/html/EARoot/EA3/EA1/EA6/EA3/EA9469.htm @@ -111,8 +111,8 @@
    -
    Details: -
    +
    Details: +
    Values: iso19136_2007 | iso19139_2007 | iso19136_2007_INSPIRE_Extensions
    Default: iso19136_2007_INSPIRE_Extensions
    Description: XML Schema encoding rule to apply
    diff --git a/approved/html/EARoot/EA3/EA1/EA6/EA4/EA9549.png b/approved/html/EARoot/EA3/EA1/EA6/EA4/EA9549.png index 8fd343f33..68c060f25 100644 Binary files a/approved/html/EARoot/EA3/EA1/EA6/EA4/EA9549.png and b/approved/html/EARoot/EA3/EA1/EA6/EA4/EA9549.png differ diff --git a/approved/html/EARoot/EA3/EA1/EA6/EA4/EA9550.htm b/approved/html/EARoot/EA3/EA1/EA6/EA4/EA9550.htm index c6dff0adb..d60b6407b 100644 --- a/approved/html/EARoot/EA3/EA1/EA6/EA4/EA9550.htm +++ b/approved/html/EARoot/EA3/EA1/EA6/EA4/EA9550.htm @@ -113,8 +113,8 @@
    -
    Details: -
    +
    Details: +
    Default: FIXME
    Description: Target XML namespace of the application schema
    @@ -126,8 +126,8 @@
    -
    Details: -
    +
    Details: +
    Default: FIXME
    Description: Current version of the application schema
    @@ -139,8 +139,8 @@
    -
    Details: -
    +
    Details: +
    Default: FIXME
    Description: Namespace prefix to be used as short form of the target namespace
    @@ -152,8 +152,8 @@
    -
    Details: -
    +
    Details: +
    Default: FIXME
    Description: Name of an XML Schema document to create representing the content of this package
    @@ -165,8 +165,8 @@
    -
    Details: -
    +
    Details: +
    Values: iso19136_2007 | iso19139_2007 | iso19136_2007_INSPIRE_Extensions
    Default: iso19136_2007_INSPIRE_Extensions
    Description: XML Schema encoding rule to apply
    diff --git a/approved/html/EARoot/EA3/EA1/EA6/EA4/EA9551.htm b/approved/html/EARoot/EA3/EA1/EA6/EA4/EA9551.htm index 64f18c30f..60724f2fa 100644 --- a/approved/html/EARoot/EA3/EA1/EA6/EA4/EA9551.htm +++ b/approved/html/EARoot/EA3/EA1/EA6/EA4/EA9551.htm @@ -115,38 +115,38 @@
    - Details: + Details: - + - + - + - + - + - + - + - + @@ -192,8 +192,8 @@ @@ -1317,7 +1259,7 @@ Notes:
    -
    Details: -
    +
    Details: +
     
    @@ -214,8 +214,8 @@
    -
    Details: -
    +
    Details: +
    Values: false
    Default: false
    Description: Create a property type that requires that the instance is encoded inline (applies to ISO 19136:2007 encoding rule). Always set to false in INSPIRE.
    @@ -227,8 +227,8 @@
    -
    Details: -
    +
    Details: +
    Values: true | false
    Default: false
    Description: Identifies the feature type as a mixin type that will not be encoded as a separate element/type in the GML encoding.
    @@ -240,8 +240,8 @@
    -
    Details: -
    +
    Details: +
    Values: true | false
    Default: false
    Description: Identifies the type as an object collection.
    @@ -253,8 +253,8 @@
    -
    Details: -
    +
    Details: +
    Values: false
    Default: false
    Description: Surpress creation of a standard property type that supports inline or by-reference encoding (applies to ISO 19136:2007 encoding rule). Always set to false in INSPIRE.
    @@ -266,8 +266,8 @@
    -
    Details: -
    +
    Details: +
    Values: iso19136_2007 | iso19139_2007 | iso19136_2007_INSPIRE_Extensions
    Default: iso19136_2007_INSPIRE_Extensions
    Description: XML Schema encoding rule to apply
    diff --git a/approved/html/EARoot/EA3/EA1/EA6/EA4/EA9552.htm b/approved/html/EARoot/EA3/EA1/EA6/EA4/EA9552.htm index 27e164d39..dcf9cc582 100644 --- a/approved/html/EARoot/EA3/EA1/EA6/EA4/EA9552.htm +++ b/approved/html/EARoot/EA3/EA1/EA6/EA4/EA9552.htm @@ -114,38 +114,38 @@
    - Details: + Details: - + - + - + - + - + - + - + - + @@ -172,38 +172,38 @@ @@ -1259,7 +1201,7 @@ Notes:
    - Details: + Details: - + - + - + - + - + - + - + - + @@ -238,8 +238,8 @@ @@ -1201,7 +1143,7 @@ Notes:
    -
    Details: -
    +
    Details: +
    Values: true | false
    Default: false
    Description: Identifies the data type as an object collection.
    @@ -251,8 +251,8 @@
    -
    Details: -
    +
    Details: +
    Values: false
    Default: false
    Description: Surpress creation of a standard property type that supports inline encoding (applies to ISO 19136:2007 encoding rule). Always set to false in INSPIRE.
    @@ -264,8 +264,8 @@
    -
    Details: -
    +
    Details: +
    Values: iso19136_2007 | iso19139_2007 | iso19136_2007_INSPIRE_Extensions
    Default: iso19136_2007_INSPIRE_Extensions
    Description: XML Schema encoding rule to apply
    diff --git a/approved/html/EARoot/EA3/EA1/EA6/EA4/EA9553.htm b/approved/html/EARoot/EA3/EA1/EA6/EA4/EA9553.htm index d21ecaf83..4216625d2 100644 --- a/approved/html/EARoot/EA3/EA1/EA6/EA4/EA9553.htm +++ b/approved/html/EARoot/EA3/EA1/EA6/EA4/EA9553.htm @@ -113,38 +113,38 @@
    - Details: + Details: - + - + - + - + - + - + - + - + @@ -171,38 +171,38 @@ @@ -1143,7 +1085,7 @@ Notes:
    - Details: + Details: - + - + - + - + - + - + - + - + @@ -229,38 +229,38 @@ @@ -1085,7 +1027,7 @@ Notes:
    - Details: + Details: - + - + - + - + - + - + - + - + @@ -287,38 +287,38 @@ @@ -1027,7 +969,7 @@ Notes:
    - Details: + Details: - + - + - + - + - + - + - + - + @@ -345,38 +345,38 @@ @@ -969,7 +911,7 @@ Notes:
    - Details: + Details: - + - + - + - + - + - + - + - + @@ -403,38 +403,38 @@ @@ -911,7 +853,7 @@ Notes:
    - Details: + Details: - + - + - + - + - + - + - + - + @@ -469,8 +469,8 @@ + + + + + @@ -853,7 +795,7 @@ Notes:
    -
    Details: -
    +
    Details: +
    Values: iso19136_2007 | iso19139_2007 | iso19136_2007_INSPIRE_Extensions
    Default: iso19136_2007_INSPIRE_Extensions
    Description: XML Schema encoding rule to apply
    diff --git a/approved/html/EARoot/EA3/EA1/EA6/EA4/EA9554.htm b/approved/html/EARoot/EA3/EA1/EA6/EA4/EA9554.htm index ec5d5fac4..23a15623c 100644 --- a/approved/html/EARoot/EA3/EA1/EA6/EA4/EA9554.htm +++ b/approved/html/EARoot/EA3/EA1/EA6/EA4/EA9554.htm @@ -115,38 +115,38 @@
    - Details: + Details: - + - + - + - + - + - + - + - + @@ -192,8 +192,8 @@ @@ -501,14 +443,72 @@
    -
    Details: -
    +
    Details: +
     
    @@ -214,8 +214,8 @@
    -
    Details: -
    +
    Details: +
    Values: false
    Default: false
    Description: Create a property type that requires that the instance is encoded inline (applies to ISO 19136:2007 encoding rule). Always set to false in INSPIRE.
    @@ -227,8 +227,8 @@
    -
    Details: -
    +
    Details: +
    Values: true | false
    Default: false
    Description: Identifies the feature type as a mixin type that will not be encoded as a separate element/type in the GML encoding.
    @@ -240,8 +240,8 @@
    -
    Details: -
    +
    Details: +
    Values: true | false
    Default: false
    Description: Identifies the type as an object collection.
    @@ -253,8 +253,8 @@
    -
    Details: -
    +
    Details: +
    Values: false
    Default: false
    Description: Surpress creation of a standard property type that supports inline or by-reference encoding (applies to ISO 19136:2007 encoding rule). Always set to false in INSPIRE.
    @@ -266,8 +266,8 @@
    -
    Details: -
    +
    Details: +
    Values: iso19136_2007 | iso19139_2007 | iso19136_2007_INSPIRE_Extensions
    Default: iso19136_2007_INSPIRE_Extensions
    Description: XML Schema encoding rule to apply
    diff --git a/approved/html/EARoot/EA3/EA1/EA6/EA4/EA9555.htm b/approved/html/EARoot/EA3/EA1/EA6/EA4/EA9555.htm index e58bed2f8..412ef577a 100644 --- a/approved/html/EARoot/EA3/EA1/EA6/EA4/EA9555.htm +++ b/approved/html/EARoot/EA3/EA1/EA6/EA4/EA9555.htm @@ -115,38 +115,38 @@
    - Details: + Details: - + - + - + - + - + - + - + - + @@ -173,38 +173,38 @@ @@ -443,14 +385,14 @@
    - Details: + Details: - + - + - + - + - + - + - + - + @@ -250,8 +250,8 @@ @@ -385,14 +327,14 @@
    -
    Details: -
    +
    Details: +
     
    @@ -272,8 +272,8 @@
    -
    Details: -
    +
    Details: +
    Values: true | false
    Default: false
    Description: Identifies the data type as an object collection.
    @@ -285,8 +285,8 @@
    -
    Details: -
    +
    Details: +
    Values: false
    Default: false
    Description: Surpress creation of a standard property type that supports inline encoding (applies to ISO 19136:2007 encoding rule). Always set to false in INSPIRE.
    @@ -298,8 +298,8 @@
    -
    Details: -
    +
    Details: +
    Values: iso19136_2007 | iso19139_2007 | iso19136_2007_INSPIRE_Extensions
    Default: iso19136_2007_INSPIRE_Extensions
    Description: XML Schema encoding rule to apply
    diff --git a/approved/html/EARoot/EA3/EA1/EA6/EA4/EA9556.htm b/approved/html/EARoot/EA3/EA1/EA6/EA4/EA9556.htm index 37202ba54..d0b46ad6f 100644 --- a/approved/html/EARoot/EA3/EA1/EA6/EA4/EA9556.htm +++ b/approved/html/EARoot/EA3/EA1/EA6/EA4/EA9556.htm @@ -115,38 +115,38 @@
    - Details: + Details: - + - + - + - + - + - + - + - + @@ -173,38 +173,38 @@ @@ -327,14 +269,14 @@
    - Details: + Details: - + - + - + - + - + - + - + - + @@ -240,8 +240,8 @@ @@ -269,14 +211,14 @@
    -
    Details: -
    +
    Details: +
     
    @@ -263,8 +263,8 @@
    -
    Details: -
    +
    Details: +
     
    @@ -285,8 +285,8 @@
    -
    Details: -
    +
    Details: +
    Values: false
    Default: false
    Description: Create a property type that requires that the instance is encoded inline (applies to ISO 19136:2007 encoding rule). Always set to false in INSPIRE.
    @@ -298,8 +298,8 @@
    -
    Details: -
    +
    Details: +
    Values: true | false
    Default: false
    Description: Identifies the feature type as a mixin type that will not be encoded as a separate element/type in the GML encoding.
    @@ -311,8 +311,8 @@
    -
    Details: -
    +
    Details: +
    Values: true | false
    Default: false
    Description: Identifies the type as an object collection.
    @@ -324,8 +324,8 @@
    -
    Details: -
    +
    Details: +
    Values: false
    Default: false
    Description: Surpress creation of a standard property type that supports inline or by-reference encoding (applies to ISO 19136:2007 encoding rule). Always set to false in INSPIRE.
    @@ -337,8 +337,8 @@
    -
    Details: -
    +
    Details: +
    Values: iso19136_2007 | iso19139_2007 | iso19136_2007_INSPIRE_Extensions
    Default: iso19136_2007_INSPIRE_Extensions
    Description: XML Schema encoding rule to apply
    diff --git a/approved/html/EARoot/EA3/EA1/EA6/EA4/EA9557.htm b/approved/html/EARoot/EA3/EA1/EA6/EA4/EA9557.htm index 31304178a..3d6049030 100644 --- a/approved/html/EARoot/EA3/EA1/EA6/EA4/EA9557.htm +++ b/approved/html/EARoot/EA3/EA1/EA6/EA4/EA9557.htm @@ -113,38 +113,38 @@
    - Details: + Details: - + - + - + - + - + - + - + - + diff --git a/approved/html/EARoot/EA3/EA1/EA6/EA4/EA9558.htm b/approved/html/EARoot/EA3/EA1/EA6/EA4/EA9558.htm index c83a2abf9..a2e5a0544 100644 --- a/approved/html/EARoot/EA3/EA1/EA6/EA4/EA9558.htm +++ b/approved/html/EARoot/EA3/EA1/EA6/EA4/EA9558.htm @@ -113,8 +113,8 @@ - - - - - @@ -211,14 +153,14 @@
    -
    Details: -
    +
    Details: +
    Values: true
    Default: true
    Description: Encode code list as externally managed dictionary (applies to ISO 19136:2007 encoding rule). Always true in INSPIRE.
    @@ -126,8 +126,8 @@
    -
    Details: -
    +
    Details: +
    Values: none | narrower | any
    Default: any
    Description: This refers to extensions by a third party, not to extensions by the owner of the vocabulary; the owner will always be able to revise the vocabulary. I.e., if the value is 'none', the referenced vocabulary may not be extended by third parties; if the value is 'narrower', the vocabulary may be extended by narrower terms that have an existing term as a parent; if the value is 'any', the vocabulary may be extended by additional terms on any level. This value must be 'all', empty or missing, if the value 'vocabulary' is empty or missing; in this case any vocabulary may be used.
    @@ -139,8 +139,8 @@
    -
    Details: -
    +
    Details: +
    Values: iso19136_2007 | iso19139_2007 | iso19136_2007_INSPIRE_Extensions
    Default: iso19136_2007_INSPIRE_Extensions
    Description: XML Schema encoding rule to apply
    diff --git a/approved/html/EARoot/EA3/EA1/EA6/EA4/EA9559.htm b/approved/html/EARoot/EA3/EA1/EA6/EA4/EA9559.htm index 6baa84331..5af9829b0 100644 --- a/approved/html/EARoot/EA3/EA1/EA6/EA4/EA9559.htm +++ b/approved/html/EARoot/EA3/EA1/EA6/EA4/EA9559.htm @@ -108,43 +108,43 @@
    - Public ComparisonOperatorValue
      endComparison + Public ComparisonOperatorValue
      startComparison
    - Details: + Details: - + - + - + - + - + - + - + - + @@ -157,7 +157,7 @@ Notes:
    - -- Name --<br/>endComparison<br/><br/>-- Definition --<br/>The comparator used for the upper range limit (e.g. lessThan)<br/> + -- Name --<br/>startComparison<br/><br/>-- Definition --<br/>The comparator used for the lower range limit (e.g. greaterThanOrEqualTo)<br/>
    @@ -166,43 +166,43 @@
    - Public Real
      rangeEnd + Public Real
      rangeStart
    - Details: + Details: - + - + - + - + - + - + - + - + @@ -215,7 +215,7 @@ Notes:
    - -- Name --<br/>rangeEnd<br/><br/>-- Definition --<br/>The upper limit of the range.<br/> + -- Name --<br/>rangeStart<br/><br/>-- Definition --<br/>The lower limit of the range.<br/>
    @@ -224,43 +224,43 @@
    - Public Real
      rangeStart + Public ComparisonOperatorValue
      endComparison
    - Details: + Details: - + - + - + - + - + - + - + - + @@ -273,7 +273,7 @@ Notes:
    - -- Name --<br/>rangeStart<br/><br/>-- Definition --<br/>The lower limit of the range.<br/> + -- Name --<br/>endComparison<br/><br/>-- Definition --<br/>The comparator used for the upper range limit (e.g. lessThan)<br/>
    @@ -282,43 +282,43 @@
    - Public ComparisonOperatorValue
      startComparison + Public Real
      rangeEnd
    - Details: + Details: - + - + - + - + - + - + - + - + @@ -331,7 +331,7 @@ Notes:
    - -- Name --<br/>startComparison<br/><br/>-- Definition --<br/>The comparator used for the lower range limit (e.g. greaterThanOrEqualTo)<br/> + -- Name --<br/>rangeEnd<br/><br/>-- Definition --<br/>The upper limit of the range.<br/>
    @@ -353,8 +353,8 @@
    -
    Details: -
    +
    Details: +
    Values: true | false
    Default: false
    Description: Identifies the data type as an object collection.
    @@ -366,8 +366,8 @@
    -
    Details: -
    +
    Details: +
    Values: false
    Default: false
    Description: Surpress creation of a standard property type that supports inline encoding (applies to ISO 19136:2007 encoding rule). Always set to false in INSPIRE.
    @@ -379,8 +379,8 @@
    -
    Details: -
    +
    Details: +
    Values: iso19136_2007 | iso19139_2007 | iso19136_2007_INSPIRE_Extensions
    Default: iso19136_2007_INSPIRE_Extensions
    Description: XML Schema encoding rule to apply
    diff --git a/approved/html/EARoot/EA3/EA1/EA6/EA4/EA9560.htm b/approved/html/EARoot/EA3/EA1/EA6/EA4/EA9560.htm index 70a24504d..9faa512e1 100644 --- a/approved/html/EARoot/EA3/EA1/EA6/EA4/EA9560.htm +++ b/approved/html/EARoot/EA3/EA1/EA6/EA4/EA9560.htm @@ -109,56 +109,56 @@
    - Public UnitOfMeasure
      uom + Public RangeBounds
      value
    - Details: + Details: - + - + - + - + - + - + - + - + - +
    - inlineOrByReference=byReference
    +
    Notes: - -- Name --<br/>uom<br/><br/>-- Definition --<br/>Units of measure used in the constraint<br/> + -- Name --<br/>value<br/><br/>-- Definition --<br/>The numerical value range of the property that is constrained <br/>
    @@ -167,56 +167,56 @@
    - Public RangeBounds
      value + Public UnitOfMeasure
      uom
    - Details: + Details: - + - + - + - + - + - + - + - + - +
    - + inlineOrByReference=byReference
    Notes: - -- Name --<br/>value<br/><br/>-- Definition --<br/>The numerical value range of the property that is constrained <br/> + -- Name --<br/>uom<br/><br/>-- Definition --<br/>Units of measure used in the constraint<br/>
    @@ -238,8 +238,8 @@
    -
    Details: -
    +
    Details: +
    Values: true | false
    Default: false
    Description: Identifies the data type as an object collection.
    @@ -251,8 +251,8 @@
    -
    Details: -
    +
    Details: +
    Values: false
    Default: false
    Description: Surpress creation of a standard property type that supports inline encoding (applies to ISO 19136:2007 encoding rule). Always set to false in INSPIRE.
    @@ -264,8 +264,8 @@
    -
    Details: -
    +
    Details: +
    Values: iso19136_2007 | iso19139_2007 | iso19136_2007_INSPIRE_Extensions
    Default: iso19136_2007_INSPIRE_Extensions
    Description: XML Schema encoding rule to apply
    diff --git a/approved/html/EARoot/EA3/EA1/EA6/EA4/EA9561.htm b/approved/html/EARoot/EA3/EA1/EA6/EA4/EA9561.htm index 7b30a1fe2..acf69f5f8 100644 --- a/approved/html/EARoot/EA3/EA1/EA6/EA4/EA9561.htm +++ b/approved/html/EARoot/EA3/EA1/EA6/EA4/EA9561.htm @@ -109,43 +109,43 @@
    - Public ComparisonOperatorValue
      comparison + Public Real
      value
    - Details: + Details: - + - + - + - + - + - + - + - + @@ -158,7 +158,7 @@ Notes:
    - -- Name --<br/>comparison<br/><br/>-- Definition --<br/>The comparator to be used in the constraint e.g. greaterThan <br/> + -- Name --<br/>value<br/><br/>-- Definition --<br/>The numerical value of the property that is constrained <br/>
    @@ -167,56 +167,56 @@
    - Public UnitOfMeasure
      uom + Public ComparisonOperatorValue
      comparison
    - Details: + Details: - + - + - + - + - + - + - + - + - +
    - inlineOrByReference=byReference
    +
    Notes: - -- Name --<br/>uom<br/><br/>-- Definition --<br/>Units of measure used in the constraint<br/> + -- Name --<br/>comparison<br/><br/>-- Definition --<br/>The comparator to be used in the constraint e.g. greaterThan <br/>
    @@ -225,56 +225,56 @@
    - Public Real
      value + Public UnitOfMeasure
      uom
    - Details: + Details: - + - + - + - + - + - + - + - + - +
    - + inlineOrByReference=byReference
    Notes: - -- Name --<br/>value<br/><br/>-- Definition --<br/>The numerical value of the property that is constrained <br/> + -- Name --<br/>uom<br/><br/>-- Definition --<br/>Units of measure used in the constraint<br/>
    @@ -296,8 +296,8 @@
    -
    Details: -
    +
    Details: +
    Values: true | false
    Default: false
    Description: Identifies the data type as an object collection.
    @@ -309,8 +309,8 @@
    -
    Details: -
    +
    Details: +
    Values: false
    Default: false
    Description: Surpress creation of a standard property type that supports inline encoding (applies to ISO 19136:2007 encoding rule). Always set to false in INSPIRE.
    @@ -322,8 +322,8 @@
    -
    Details: -
    +
    Details: +
    Values: iso19136_2007 | iso19139_2007 | iso19136_2007_INSPIRE_Extensions
    Default: iso19136_2007_INSPIRE_Extensions
    Description: XML Schema encoding rule to apply
    diff --git a/approved/html/EARoot/EA3/EA1/EA6/EA4/EA9562.htm b/approved/html/EARoot/EA3/EA1/EA6/EA4/EA9562.htm index 58109e385..0d51fe1f1 100644 --- a/approved/html/EARoot/EA3/EA1/EA6/EA4/EA9562.htm +++ b/approved/html/EARoot/EA3/EA1/EA6/EA4/EA9562.htm @@ -112,8 +112,8 @@
    -
    Details: -
    +
    Details: +
    Values: true
    Default: true
    Description: Encode code list as externally managed dictionary (applies to ISO 19136:2007 encoding rule). Always true in INSPIRE.
    @@ -125,8 +125,8 @@
    -
    Details: -
    +
    Details: +
    Values: none | narrower | any
    Default: any
    Description: This refers to extensions by a third party, not to extensions by the owner of the vocabulary; the owner will always be able to revise the vocabulary. I.e., if the value is 'none', the referenced vocabulary may not be extended by third parties; if the value is 'narrower', the vocabulary may be extended by narrower terms that have an existing term as a parent; if the value is 'any', the vocabulary may be extended by additional terms on any level. This value must be 'all', empty or missing, if the value 'vocabulary' is empty or missing; in this case any vocabulary may be used.
    @@ -138,8 +138,8 @@
    -
    Details: -
    +
    Details: +
    Values: iso19136_2007 | iso19139_2007 | iso19136_2007_INSPIRE_Extensions
    Default: iso19136_2007_INSPIRE_Extensions
    Description: XML Schema encoding rule to apply
    diff --git a/approved/html/EARoot/EA3/EA1/EA6/EA4/EA9563.htm b/approved/html/EARoot/EA3/EA1/EA6/EA4/EA9563.htm index 88a3dc415..3ec2ab871 100644 --- a/approved/html/EARoot/EA3/EA1/EA6/EA4/EA9563.htm +++ b/approved/html/EARoot/EA3/EA1/EA6/EA4/EA9563.htm @@ -111,65 +111,7 @@
    - Public Area
      aggregationArea -
    - Details: - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    - - sequenceNumber=4
    -
    - - - - -
    - Notes: - - -- Name --<br/>aggregationArea<br/>-- Definition --<br/>A two dimensional spatial range over which a statistic is calculated for example 1 square metre<br/> -
    - - -
    - Public Length
      aggregationLength + Public CharacterString
      label
    - sequenceNumber=3
    +
    Notes: - -- Name --<br/>aggregationLength<br/>-- Definition --<br/>A one dimensional spatial range over which a statistic is calculated for example 1 metre.<br/> + -- Name --<br/>label<br/><br/>-- Definition --<br/>A human readable title for the statistical measure<br/><br/>
    @@ -227,7 +169,7 @@
    - Public TM_Duration
      aggregationTimePeriod + Public StatisticalFunctionTypeValue
      statisticalFunction
    - sequenceNumber=2
    + obligation=technicalGuidance
    sequenceNumber=1
    Notes: - -- Name --<br/>aggregationTimePeriod<br/>-- Definition --<br/>A temporal range over which a statistic is calculated. e.g. A day, An hour. <br/> + -- Name --<br/>statisticalFunction<br/><br/>-- Definition --<br/>A statistical function e.g. (mean)<br/>
    @@ -285,7 +227,7 @@
    - Public Volume
      aggregationVolume + Public TM_Duration
      aggregationTimePeriod
    - sequenceNumber=5
    + sequenceNumber=2
    Notes: - -- Name --<br/>aggregationVolume<br/>-- Definition --<br/>A three dimensional spatial range over which a statistic is calculated for example 1 cubic metre<br/> + -- Name --<br/>aggregationTimePeriod<br/>-- Definition --<br/>A temporal range over which a statistic is calculated. e.g. A day, An hour. <br/>
    @@ -343,7 +285,7 @@
    - Public CharacterString
      label + Public Length
      aggregationLength
    - + sequenceNumber=3
    Notes: - -- Name --<br/>label<br/><br/>-- Definition --<br/>A human readable title for the statistical measure<br/><br/> + -- Name --<br/>aggregationLength<br/>-- Definition --<br/>A one dimensional spatial range over which a statistic is calculated for example 1 metre.<br/>
    @@ -401,7 +343,7 @@
    - Public Any
      otherAggregation + Public Area
      aggregationArea
    - sequenceNumber=6
    + sequenceNumber=4
    Notes: - -- Name --<br/>otherAggregation<br/>-- Definition --<br/>Any other type of aggregation.<br/> + -- Name --<br/>aggregationArea<br/>-- Definition --<br/>A two dimensional spatial range over which a statistic is calculated for example 1 square metre<br/>
    @@ -459,7 +401,7 @@
    - Public StatisticalFunctionTypeValue
      statisticalFunction + Public Volume
      aggregationVolume
    - obligation=technicalGuidance
    sequenceNumber=1
    + sequenceNumber=5
    + +
    Notes: - -- Name --<br/>statisticalFunction<br/><br/>-- Definition --<br/>A statistical function e.g. (mean)<br/> + -- Name --<br/>aggregationVolume<br/>-- Definition --<br/>A three dimensional spatial range over which a statistic is calculated for example 1 cubic metre<br/> +
    + + +
    + Public Any
      otherAggregation +
    + Details: + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + sequenceNumber=6
    +
    + + +
    + Notes: + + -- Name --<br/>otherAggregation<br/>-- Definition --<br/>Any other type of aggregation.<br/>
    @@ -545,8 +545,8 @@
    -
    Details: -
    +
    Details: +
     
    @@ -578,8 +578,8 @@
    -
    Details: -
    +
    Details: +
     
    @@ -605,8 +605,8 @@
    -
    Details: -
    +
    Details: +
     
    @@ -627,8 +627,8 @@
    -
    Details: -
    +
    Details: +
    Values: false
    Default: false
    Description: Create a property type that requires that the instance is encoded inline (applies to ISO 19136:2007 encoding rule). Always set to false in INSPIRE.
    @@ -640,8 +640,8 @@
    -
    Details: -
    +
    Details: +
    Values: true | false
    Default: false
    Description: Identifies the data type as an object collection.
    @@ -653,8 +653,8 @@
    -
    Details: -
    +
    Details: +
    Values: false
    Default: false
    Description: Surpress creation of a standard property type that supports inline encoding (applies to ISO 19136:2007 encoding rule). Always set to false in INSPIRE.
    @@ -666,8 +666,8 @@
    -
    Details: -
    +
    Details: +
    Values: iso19136_2007 | iso19139_2007 | iso19136_2007_INSPIRE_Extensions
    Default: iso19136_2007_INSPIRE_Extensions
    Description: XML Schema encoding rule to apply
    diff --git a/approved/html/EARoot/EA3/EA1/EA6/EA9441.png b/approved/html/EARoot/EA3/EA1/EA6/EA9441.png index 05e49855b..97eeb50b2 100644 Binary files a/approved/html/EARoot/EA3/EA1/EA6/EA9441.png and b/approved/html/EARoot/EA3/EA1/EA6/EA9441.png differ diff --git a/approved/html/EARoot/EA3/EA1/EA6/EA9443.htm b/approved/html/EARoot/EA3/EA1/EA6/EA9443.htm index a1bd00676..a7b5ce757 100644 --- a/approved/html/EARoot/EA3/EA1/EA6/EA9443.htm +++ b/approved/html/EARoot/EA3/EA1/EA6/EA9443.htm @@ -112,8 +112,8 @@
    -
    Details: -
    +
    Details: +
    Default: FIXME
    Description: Target XML namespace of the application schema
    @@ -125,8 +125,8 @@
    -
    Details: -
    +
    Details: +
    Default: FIXME
    Description: Current version of the application schema
    @@ -138,8 +138,8 @@
    -
    Details: -
    +
    Details: +
    Default: FIXME
    Description: Namespace prefix to be used as short form of the target namespace
    @@ -151,8 +151,8 @@
    -
    Details: -
    +
    Details: +
    Default: FIXME
    Description: Name of an XML Schema document to create representing the content of this package
    @@ -164,8 +164,8 @@
    -
    Details: -
    +
    Details: +
    Values: iso19136_2007 | iso19139_2007 | iso19136_2007_INSPIRE_Extensions
    Default: iso19136_2007_INSPIRE_Extensions
    Description: XML Schema encoding rule to apply
    diff --git a/approved/html/EARoot/EA3/EA1/EA6/EA9444.htm b/approved/html/EARoot/EA3/EA1/EA6/EA9444.htm index f5841b656..d85ea1e71 100644 --- a/approved/html/EARoot/EA3/EA1/EA6/EA9444.htm +++ b/approved/html/EARoot/EA3/EA1/EA6/EA9444.htm @@ -113,8 +113,8 @@
    -
    Details: -
    +
    Details: +
    Default: FIXME
    Description: Target XML namespace of the application schema
    @@ -126,8 +126,8 @@
    -
    Details: -
    +
    Details: +
    Default: FIXME
    Description: Current version of the application schema
    @@ -139,8 +139,8 @@
    -
    Details: -
    +
    Details: +
    Default: FIXME
    Description: Namespace prefix to be used as short form of the target namespace
    @@ -152,8 +152,8 @@
    -
    Details: -
    +
    Details: +
    Default: FIXME
    Description: Name of an XML Schema document to create representing the content of this package
    @@ -165,8 +165,8 @@
    -
    Details: -
    +
    Details: +
    Values: iso19136_2007 | iso19139_2007 | iso19136_2007_INSPIRE_Extensions
    Default: iso19136_2007_INSPIRE_Extensions
    Description: XML Schema encoding rule to apply
    diff --git a/approved/html/EARoot/EA3/EA1/EA6/EA9445.htm b/approved/html/EARoot/EA3/EA1/EA6/EA9445.htm index 7f30c26af..dff47f710 100644 --- a/approved/html/EARoot/EA3/EA1/EA6/EA9445.htm +++ b/approved/html/EARoot/EA3/EA1/EA6/EA9445.htm @@ -113,8 +113,8 @@
    -
    Details: -
    +
    Details: +
    Default: FIXME
    Description: Target XML namespace of the application schema
    @@ -126,8 +126,8 @@
    -
    Details: -
    +
    Details: +
    Default: FIXME
    Description: Current version of the application schema
    @@ -139,8 +139,8 @@
    -
    Details: -
    +
    Details: +
    Default: FIXME
    Description: Namespace prefix to be used as short form of the target namespace
    @@ -152,8 +152,8 @@
    -
    Details: -
    +
    Details: +
    Default: FIXME
    Description: Name of an XML Schema document to create representing the content of this package
    @@ -165,8 +165,8 @@
    -
    Details: -
    +
    Details: +
    Values: iso19136_2007 | iso19139_2007 | iso19136_2007_INSPIRE_Extensions
    Default: iso19136_2007_INSPIRE_Extensions
    Description: XML Schema encoding rule to apply
    diff --git a/approved/html/EARoot/EA3/EA1/EA6/EA9446.htm b/approved/html/EARoot/EA3/EA1/EA6/EA9446.htm index d082fee33..606fb1db5 100644 --- a/approved/html/EARoot/EA3/EA1/EA6/EA9446.htm +++ b/approved/html/EARoot/EA3/EA1/EA6/EA9446.htm @@ -113,8 +113,8 @@
    -
    Details: -
    +
    Details: +
    Default: FIXME
    Description: Target XML namespace of the application schema
    @@ -126,8 +126,8 @@
    -
    Details: -
    +
    Details: +
    Default: FIXME
    Description: Current version of the application schema
    @@ -139,8 +139,8 @@
    -
    Details: -
    +
    Details: +
    Default: FIXME
    Description: Namespace prefix to be used as short form of the target namespace
    @@ -152,8 +152,8 @@
    -
    Details: -
    +
    Details: +
    Default: FIXME
    Description: Name of an XML Schema document to create representing the content of this package
    @@ -165,8 +165,8 @@
    -
    Details: -
    +
    Details: +
    Values: iso19136_2007 | iso19139_2007 | iso19136_2007_INSPIRE_Extensions
    Default: iso19136_2007_INSPIRE_Extensions
    Description: XML Schema encoding rule to apply
    diff --git a/approved/html/EARoot/EA3/EA1/EA9341.htm b/approved/html/EARoot/EA3/EA1/EA9341.htm index 91e20a3c7..27360d11c 100644 --- a/approved/html/EARoot/EA3/EA1/EA9341.htm +++ b/approved/html/EARoot/EA3/EA1/EA9341.htm @@ -112,8 +112,8 @@
    -
    Details: -
    +
    Details: +
    Default: FIXME
    Description: Target XML namespace of the application schema
    @@ -125,8 +125,8 @@
    -
    Details: -
    +
    Details: +
    Default: FIXME
    Description: Current version of the application schema
    @@ -138,8 +138,8 @@
    -
    Details: -
    +
    Details: +
    Default: FIXME
    Description: Namespace prefix to be used as short form of the target namespace
    @@ -151,8 +151,8 @@
    -
    Details: -
    +
    Details: +
    Default: FIXME
    Description: Name of an XML Schema document to create representing the content of this package
    @@ -164,8 +164,8 @@
    -
    Details: -
    +
    Details: +
    Values: iso19136_2007 | iso19139_2007 | iso19136_2007_INSPIRE_Extensions
    Default: iso19136_2007_INSPIRE_Extensions
    Description: XML Schema encoding rule to apply
    diff --git a/approved/html/EARoot/EA3/EA1/EA9343.htm b/approved/html/EARoot/EA3/EA1/EA9343.htm index 37aab9c41..d97845465 100644 --- a/approved/html/EARoot/EA3/EA1/EA9343.htm +++ b/approved/html/EARoot/EA3/EA1/EA9343.htm @@ -113,8 +113,8 @@
    -
    Details: -
    +
    Details: +
     
    @@ -125,8 +125,8 @@
    -
    Details: -
    +
    Details: +
     
    @@ -137,8 +137,8 @@
    -
    Details: -
    +
    Details: +
     
    @@ -149,8 +149,8 @@
    -
    Details: -
    +
    Details: +
     
    @@ -161,8 +161,8 @@
    -
    Details: -
    +
    Details: +
    Values: iso19136_2007 | iso19139_2007 | iso19136_2007_INSPIRE_Extensions
    Default: iso19136_2007_INSPIRE_Extensions
    Description: XML Schema encoding rule to apply
    diff --git a/approved/html/EARoot/EA3/EA2/EA1/EA9568.png b/approved/html/EARoot/EA3/EA2/EA1/EA9568.png index 4951c7bd7..734d3d967 100644 Binary files a/approved/html/EARoot/EA3/EA2/EA1/EA9568.png and b/approved/html/EARoot/EA3/EA2/EA1/EA9568.png differ diff --git a/approved/html/EARoot/EA3/EA2/EA1/EA9569.htm b/approved/html/EARoot/EA3/EA2/EA1/EA9569.htm index 420f6ffd7..4971179ad 100644 --- a/approved/html/EARoot/EA3/EA2/EA1/EA9569.htm +++ b/approved/html/EARoot/EA3/EA2/EA1/EA9569.htm @@ -113,8 +113,8 @@
    -
    Details: -
    +
    Details: +
    Default: FIXME
    Description: Target XML namespace of the application schema
    @@ -126,8 +126,8 @@
    -
    Details: -
    +
    Details: +
    Default: FIXME
    Description: Current version of the application schema
    @@ -139,8 +139,8 @@
    -
    Details: -
    +
    Details: +
    Default: FIXME
    Description: Namespace prefix to be used as short form of the target namespace
    @@ -152,8 +152,8 @@
    -
    Details: -
    +
    Details: +
    Default: FIXME
    Description: Name of an XML Schema document to create representing the content of this package
    @@ -165,8 +165,8 @@
    -
    Details: -
    +
    Details: +
    Values: iso19136_2007 | iso19139_2007 | iso19136_2007_INSPIRE_Extensions
    Default: iso19136_2007_INSPIRE_Extensions
    Description: XML Schema encoding rule to apply
    diff --git a/approved/html/EARoot/EA3/EA2/EA1/EA9571.htm b/approved/html/EARoot/EA3/EA2/EA1/EA9571.htm index 06de2dfad..1fad43ea5 100644 --- a/approved/html/EARoot/EA3/EA2/EA1/EA9571.htm +++ b/approved/html/EARoot/EA3/EA2/EA1/EA9571.htm @@ -113,38 +113,38 @@
    - Details: + Details: - + - + - + - + - + - + - + - + @@ -171,38 +171,38 @@ @@ -795,7 +737,7 @@ Notes:
    - Details: + Details: - + - + - + - + - + - + - + - + @@ -229,38 +229,38 @@ @@ -737,7 +679,7 @@ Notes:
    - Details: + Details: - + - + - + - + - + - + - + - + @@ -295,8 +295,8 @@ @@ -679,7 +621,7 @@ Notes:
    -
    Details: -
    +
    Details: +
    Values: true | false
    Default: false
    Description: Identifies the data type as an object collection.
    @@ -308,8 +308,8 @@
    -
    Details: -
    +
    Details: +
    Values: false
    Default: false
    Description: Surpress creation of a standard property type that supports inline encoding (applies to ISO 19136:2007 encoding rule). Always set to false in INSPIRE.
    @@ -321,8 +321,8 @@
    -
    Details: -
    +
    Details: +
    Values: iso19136_2007 | iso19139_2007 | iso19136_2007_INSPIRE_Extensions
    Default: iso19136_2007_INSPIRE_Extensions
    Description: XML Schema encoding rule to apply
    diff --git a/approved/html/EARoot/EA3/EA2/EA1/EA9572.htm b/approved/html/EARoot/EA3/EA2/EA1/EA9572.htm index 21f64be5a..0420d85f6 100644 --- a/approved/html/EARoot/EA3/EA2/EA1/EA9572.htm +++ b/approved/html/EARoot/EA3/EA2/EA1/EA9572.htm @@ -113,38 +113,38 @@
    - Details: + Details: - + - + - + - + - + - + - + - + @@ -171,38 +171,38 @@ @@ -621,7 +563,7 @@ Notes:
    - Details: + Details: - + - + - + - + - + - + - + - + @@ -237,8 +237,8 @@ @@ -563,7 +505,7 @@ Notes:
    -
    Details: -
    +
    Details: +
    Values: false
    Default: false
    Description: Create a property type that requires that the instance is encoded inline (applies to ISO 19136:2007 encoding rule). Always set to false in INSPIRE.
    @@ -250,8 +250,8 @@
    -
    Details: -
    +
    Details: +
    Values: true | false
    Default: false
    Description: Identifies the feature type as a mixin type that will not be encoded as a separate element/type in the GML encoding.
    @@ -263,8 +263,8 @@
    -
    Details: -
    +
    Details: +
    Default: FIXME
    Description: URN reference to the feature concept in the INSPIRE Feature Concept Dictionary Register
    @@ -276,8 +276,8 @@
    -
    Details: -
    +
    Details: +
    Values: true | false
    Default: false
    Description: Identifies the feature type as a feature collection.
    @@ -289,8 +289,8 @@
    -
    Details: -
    +
    Details: +
    Values: false
    Default: false
    Description: Surpress creation of a standard property type that supports inline or by-reference encoding (applies to ISO 19136:2007 encoding rule). Always set to false in INSPIRE.
    @@ -302,8 +302,8 @@
    -
    Details: -
    +
    Details: +
    Values: iso19136_2007 | iso19139_2007 | iso19136_2007_INSPIRE_Extensions
    Default: iso19136_2007_INSPIRE_Extensions
    Description: XML Schema encoding rule to apply
    diff --git a/approved/html/EARoot/EA3/EA2/EA1/EA9573.htm b/approved/html/EARoot/EA3/EA2/EA1/EA9573.htm index 4ea9ae767..3702f7522 100644 --- a/approved/html/EARoot/EA3/EA2/EA1/EA9573.htm +++ b/approved/html/EARoot/EA3/EA2/EA1/EA9573.htm @@ -113,38 +113,38 @@
    - Details: + Details: - + - + - + - + - + - + - + - + @@ -171,38 +171,38 @@ @@ -505,7 +447,7 @@ Notes:
    - Details: + Details: - + - + - + - + - + - + - + - + @@ -229,38 +229,38 @@ @@ -447,7 +389,7 @@ Notes:
    - Details: + Details: - + - + - + - + - + - + - + - + @@ -295,8 +295,8 @@ @@ -389,7 +331,7 @@ Notes:
    -
    Details: -
    +
    Details: +
    Values: true
    Default: true
    Description: Encode code list as externally managed dictionary (applies to ISO 19136:2007 encoding rule). Always true in INSPIRE.
    @@ -308,8 +308,8 @@
    -
    Details: -
    +
    Details: +
    Values: none | narrower | open | any
    Default: any
    Description: This refers to extensions by a third party, not to extensions by the owner of the vocabulary; the owner will always be able to revise the vocabulary. I.e., if the value is 'none', the referenced vocabulary may not be extended by third parties; if the value is 'narrower', the vocabulary may be extended by narrower terms that have an existing term as a parent; if the value is 'any', the vocabulary may be extended by additional terms on any level. This value must be 'all', empty or missing, if the value 'vocabulary' is empty or missing; in this case any vocabulary may be used.
    @@ -321,8 +321,8 @@
    -
    Details: -
    +
    Details: +
    Description: URI of the vocabulary/code list in the INSPIRE code list registry or in some external registry. The value has to be provided, if an online version of the vocabulary exists.
    @@ -334,8 +334,8 @@
    -
    Details: -
    +
    Details: +
    Values: iso19136_2007 | iso19139_2007 | iso19136_2007_INSPIRE_Extensions
    Default: iso19136_2007_INSPIRE_Extensions
    Description: XML Schema encoding rule to apply
    diff --git a/approved/html/EARoot/EA3/EA2/EA1/EA9574.htm b/approved/html/EARoot/EA3/EA2/EA1/EA9574.htm index 2fdd74eb0..86f9cf68c 100644 --- a/approved/html/EARoot/EA3/EA2/EA1/EA9574.htm +++ b/approved/html/EARoot/EA3/EA2/EA1/EA9574.htm @@ -108,43 +108,43 @@
    - Public
      decommissioned + Public
      disused
    - Details: + Details: - + - + - + - + - + - + - + - + @@ -157,7 +157,7 @@ Notes:
    - -- Name --<br/>decommissioned<br/><br/>-- Definition --<br/>The facility is no longer used and is being or has been decommissioned.<br/> + -- Name --<br/>disused<br/><br/>-- Definition --<br/>The facility is no longer used, but is not being or has not been decommissioned.<br/>
    @@ -166,43 +166,43 @@
    - Public
      disused + Public
      functional
    - Details: + Details: - + - + - + - + - + - + - + - + @@ -215,7 +215,7 @@ Notes:
    - -- Name --<br/>disused<br/><br/>-- Definition --<br/>The facility is no longer used, but is not being or has not been decommissioned.<br/> + -- Name --<br/>functional<br/><br/>-- Definition --<br/>The facility is functional.<br/>
    @@ -224,43 +224,43 @@
    - Public
      functional + Public
      projected
    - Details: + Details: - + - + - + - + - + - + - + - + @@ -273,7 +273,7 @@ Notes:
    - -- Name --<br/>functional<br/><br/>-- Definition --<br/>The facility is functional.<br/> + -- Name --<br/>projected<br/><br/>-- Definition --<br/>The facility is being designed. Construction has not yet started.<br/>
    @@ -282,43 +282,43 @@
    - Public
      projected + Public
      underConstruction
    - Details: + Details: - + - + - + - + - + - + - + - + @@ -331,7 +331,7 @@ Notes:
    - -- Name --<br/>projected<br/><br/>-- Definition --<br/>The facility is being designed. Construction has not yet started.<br/> + -- Name --<br/>under construction<br/><br/>-- Definition --<br/>The facility is under construction and not yet functional. This applies only to the initial construction of the facility and not to maintenance work.<br/>
    @@ -340,43 +340,43 @@
    - Public
      underConstruction + Public
      decommissioned
    - Details: + Details: - + - + - + - + - + - + - + - + @@ -389,7 +389,7 @@ Notes:
    - -- Name --<br/>under construction<br/><br/>-- Definition --<br/>The facility is under construction and not yet functional. This applies only to the initial construction of the facility and not to maintenance work.<br/> + -- Name --<br/>decommissioned<br/><br/>-- Definition --<br/>The facility is no longer used and is being or has been decommissioned.<br/>
    @@ -411,8 +411,8 @@
    -
    Details: -
    +
    Details: +
    Values: true
    Default: true
    Description: Encode code list as externally managed dictionary (applies to ISO 19136:2007 encoding rule). Always true in INSPIRE.
    @@ -424,8 +424,8 @@
    -
    Details: -
    +
    Details: +
    Values: none | narrower | open | any
    Default: any
    Description: This refers to extensions by a third party, not to extensions by the owner of the vocabulary; the owner will always be able to revise the vocabulary. I.e., if the value is 'none', the referenced vocabulary may not be extended by third parties; if the value is 'narrower', the vocabulary may be extended by narrower terms that have an existing term as a parent; if the value is 'any', the vocabulary may be extended by additional terms on any level. This value must be 'all', empty or missing, if the value 'vocabulary' is empty or missing; in this case any vocabulary may be used.
    @@ -437,8 +437,8 @@
    -
    Details: -
    +
    Details: +
    Description: URI of the vocabulary/code list in the INSPIRE code list registry or in some external registry. The value has to be provided, if an online version of the vocabulary exists.
    @@ -450,8 +450,8 @@
    -
    Details: -
    +
    Details: +
    Values: iso19136_2007 | iso19139_2007 | iso19136_2007_INSPIRE_Extensions
    Default: iso19136_2007_INSPIRE_Extensions
    Description: XML Schema encoding rule to apply
    diff --git a/approved/html/EARoot/EA3/EA2/EA1/EA9575.htm b/approved/html/EARoot/EA3/EA2/EA1/EA9575.htm index a8c743851..002ae263c 100644 --- a/approved/html/EARoot/EA3/EA2/EA1/EA9575.htm +++ b/approved/html/EARoot/EA3/EA2/EA1/EA9575.htm @@ -113,38 +113,38 @@
    - Details: + Details: - + - + - + - + - + - + - + - + @@ -171,38 +171,38 @@ @@ -331,7 +273,7 @@ Notes:
    - Details: + Details: - + - + - + - + - + - + - + - + @@ -229,38 +229,38 @@ @@ -273,7 +215,7 @@ Notes:
    - Details: + Details: - + - + - + - + - + - + - + - + @@ -295,8 +295,8 @@ - - - - -
    -
    Details: -
    +
    Details: +
     
    diff --git a/approved/html/EARoot/EA3/EA2/EA2/EA9577.png b/approved/html/EARoot/EA3/EA2/EA2/EA9577.png index 55744aa62..eb5578aeb 100644 Binary files a/approved/html/EARoot/EA3/EA2/EA2/EA9577.png and b/approved/html/EARoot/EA3/EA2/EA2/EA9577.png differ diff --git a/approved/html/EARoot/EA3/EA2/EA2/EA9579.png b/approved/html/EARoot/EA3/EA2/EA2/EA9579.png index 7767048a1..92f3488ba 100644 Binary files a/approved/html/EARoot/EA3/EA2/EA2/EA9579.png and b/approved/html/EARoot/EA3/EA2/EA2/EA9579.png differ diff --git a/approved/html/EARoot/EA3/EA2/EA2/EA9583.png b/approved/html/EARoot/EA3/EA2/EA2/EA9583.png index 857f4b45b..c80848db9 100644 Binary files a/approved/html/EARoot/EA3/EA2/EA2/EA9583.png and b/approved/html/EARoot/EA3/EA2/EA2/EA9583.png differ diff --git a/approved/html/EARoot/EA3/EA2/EA2/EA9584.htm b/approved/html/EARoot/EA3/EA2/EA2/EA9584.htm index 4801d65cc..dc41f56b9 100644 --- a/approved/html/EARoot/EA3/EA2/EA2/EA9584.htm +++ b/approved/html/EARoot/EA3/EA2/EA2/EA9584.htm @@ -113,8 +113,8 @@
    -
    Details: -
    +
    Details: +
    Default: FIXME
    Description: Target XML namespace of the application schema
    @@ -126,8 +126,8 @@
    -
    Details: -
    +
    Details: +
    Default: FIXME
    Description: Current version of the application schema
    @@ -139,8 +139,8 @@
    -
    Details: -
    +
    Details: +
    Default: FIXME
    Description: Namespace prefix to be used as short form of the target namespace
    @@ -152,8 +152,8 @@
    -
    Details: -
    +
    Details: +
    Default: FIXME
    Description: Name of an XML Schema document to create representing the content of this package
    @@ -165,8 +165,8 @@
    -
    Details: -
    +
    Details: +
    Values: iso19136_2007 | iso19139_2007 | iso19136_2007_INSPIRE_Extensions
    Default: iso19136_2007_INSPIRE_Extensions
    Description: XML Schema encoding rule to apply
    diff --git a/approved/html/EARoot/EA3/EA2/EA2/EA9587.htm b/approved/html/EARoot/EA3/EA2/EA2/EA9587.htm index c060e3918..2955a0aa1 100644 --- a/approved/html/EARoot/EA3/EA2/EA2/EA9587.htm +++ b/approved/html/EARoot/EA3/EA2/EA2/EA9587.htm @@ -111,64 +111,6 @@ Public
      ad
    - Details: - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    - - -
    - - - - -
    - Notes: - - -- Name --<br/>Addresses<br/> -
    - - -
    - Public
      au -
    Details: @@ -215,7 +157,7 @@ Notes: - -- Name --<br/>AdministrativeUnits<br/> + -- Name --<br/>Addresses<br/>
    @@ -224,7 +166,7 @@
    - Public
      base + Public
      au
    - -- Name --<br/>Base Types<br/> + -- Name --<br/>AdministrativeUnits<br/>
    @@ -282,7 +224,7 @@
    - Public
      bgr + Public
      base
    - -- Name --<br/>Bio-geographical Regions<br/> + -- Name --<br/>Base Types<br/>
    @@ -340,7 +282,7 @@
    - Public
      bui + Public
      bgr
    - -- Name --<br/>Buildings<br/> + -- Name --<br/>Bio-geographical Regions<br/>
    @@ -398,7 +340,7 @@
    - Public
      cp + Public
      bui
    - -- Name --<br/>CadastralParcels<br/> + -- Name --<br/>Buildings<br/>
    @@ -456,7 +398,7 @@
    - Public
      er + Public
      cp
    - -- Name --<br/>Energy Resources<br/> + -- Name --<br/>CadastralParcels<br/>
    @@ -514,7 +456,7 @@
    - Public
      gaz + Public
      er
    - -- Name --<br/>Gazetteer<br/> + -- Name --<br/>Energy Resources<br/>
    @@ -572,7 +514,7 @@
    - Public
      geo + Public
      gaz
    - -- Name --<br/>Geology<br/> + -- Name --<br/>Gazetteer<br/>
    @@ -630,7 +572,7 @@
    - Public
      gn + Public
      geo
    - -- Name --<br/>Geographical Names<br/> + -- Name --<br/>Geology<br/>
    @@ -688,7 +630,7 @@
    - Public
      hb + Public
      gn
    - -- Name --<br/>Habitats and Biotopes<br/> + -- Name --<br/>Geographical Names<br/>
    @@ -746,7 +688,7 @@
    - Public
      hy + Public
      hb
    - -- Name --<br/>Hydro - base<br/> + -- Name --<br/>Habitats and Biotopes<br/>
    @@ -804,7 +746,7 @@
    - Public
      hy-n + Public
      hy
    - -- Name --<br/>Hydro - Network<br/> + -- Name --<br/>Hydro - base<br/>
    @@ -862,7 +804,7 @@
    - Public
      hy-p + Public
      hy-n
    - -- Name --<br/>Hydro - Physical Waters<br/> + -- Name --<br/>Hydro - Network<br/>
    @@ -920,7 +862,7 @@
    - Public
      hy-r + Public
      hy-p
    - -- Name --<br/>Hydro - Reporting<br/> + -- Name --<br/>Hydro - Physical Waters<br/>
    @@ -978,7 +920,7 @@
    - Public
      lc + Public
      hy-r
    - -- Name --<br/>Land Cover<br/> + -- Name --<br/>Hydro - Reporting<br/>
    @@ -1036,7 +978,7 @@
    - Public
      net + Public
      lc
    - -- Name --<br/>Network<br/> + -- Name --<br/>Land Cover<br/>
    @@ -1094,7 +1036,7 @@
    - Public
      nrz + Public
      net
    - -- Name --<br/>Natural Risk Zones<br/> + -- Name --<br/>Network<br/>
    @@ -1152,7 +1094,7 @@
    - Public
      ps + Public
      nrz
    - -- Name --<br/>Protected Sites Simple<br/> + -- Name --<br/>Natural Risk Zones<br/>
    @@ -1210,7 +1152,7 @@
    - Public
      ps-f + Public
      ps
    - -- Name --<br/>Protected Sites Full<br/> + -- Name --<br/>Protected Sites Simple<br/>
    @@ -1268,7 +1210,7 @@
    - Public
      sd + Public
      ps-f
    - -- Name --<br/>Species Distribution<br/> + -- Name --<br/>Protected Sites Full<br/>
    @@ -1326,7 +1268,7 @@
    - Public
      sr + Public
      sd
    - -- Name --<br/>Sea Regions<br/> + -- Name --<br/>Species Distribution<br/>
    @@ -1384,7 +1326,7 @@
    - Public
      stat + Public
      sr
    - -- Name --<br/>StatisticalUnits<br/> + -- Name --<br/>Sea Regions<br/>
    @@ -1442,7 +1384,7 @@
    - Public
      tn-a + Public
      stat
    - -- Name --<br/>Air Transport Network<br/> + -- Name --<br/>StatisticalUnits<br/>
    @@ -1500,7 +1442,7 @@
    - Public
      tn-c + Public
      tn-a
    - -- Name --<br/>Cable Transport Network<br/> + -- Name --<br/>Air Transport Network<br/>
    @@ -1558,7 +1500,7 @@
    - Public
      tn-ra + Public
      tn-c
    - -- Name --<br/>Railway Transport Network<br/> + -- Name --<br/>Cable Transport Network<br/>
    @@ -1616,7 +1558,7 @@
    - Public
      tn-ro + Public
      tn-ra
    - -- Name --<br/>Road Transport Network<br/> + -- Name --<br/>Railway Transport Network<br/>
    @@ -1674,7 +1616,7 @@
    - Public
      tn-w + Public
      tn-ro
    - -- Name --<br/>Water Transport Network<br/> + -- Name --<br/>Road Transport Network<br/>
    @@ -1732,7 +1674,7 @@
    - Public
      ugs + Public
      tn-w
    - -- Name --<br/>Utility and Governmental Services<br/> + -- Name --<br/>Water Transport Network<br/>
    @@ -1790,7 +1732,7 @@
    - Public
      wfd + Public
      ugs
    +
    + + + + +
    + Notes: + + -- Name --<br/>Utility and Governmental Services<br/> +
    + + +
    + Public
      wfd +
    + Details: + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + +
    @@ -911,7 +853,7 @@ Notes:
    @@ -1861,8 +1861,8 @@
    -
    Details: -
    +
    Details: +
    Values: true
    Default: true
    Description: Encode code list as externally managed dictionary (applies to ISO 19136:2007 encoding rule). Always true in INSPIRE.
    @@ -1874,8 +1874,8 @@
    -
    Details: -
    +
    Details: +
    Values: none | narrower | open | any
    Default: any
    Description: This refers to extensions by a third party, not to extensions by the owner of the vocabulary; the owner will always be able to revise the vocabulary. I.e., if the value is 'none', the referenced vocabulary may not be extended by third parties; if the value is 'narrower', the vocabulary may be extended by narrower terms that have an existing term as a parent; if the value is 'any', the vocabulary may be extended by additional terms on any level. This value must be 'all', empty or missing, if the value 'vocabulary' is empty or missing; in this case any vocabulary may be used.
    @@ -1887,8 +1887,8 @@
    -
    Details: -
    +
    Details: +
    Description: URI of the vocabulary/code list in the INSPIRE code list registry or in some external registry. The value has to be provided, if an online version of the vocabulary exists.
    @@ -1900,8 +1900,8 @@
    -
    Details: -
    +
    Details: +
    Values: iso19136_2007 | iso19139_2007 | iso19136_2007_INSPIRE_Extensions
    Default: iso19136_2007_INSPIRE_Extensions
    Description: XML Schema encoding rule to apply
    diff --git a/approved/html/EARoot/EA3/EA2/EA2/EA9588.htm b/approved/html/EARoot/EA3/EA2/EA2/EA9588.htm index 1d31ce4b2..5004c2a5a 100644 --- a/approved/html/EARoot/EA3/EA2/EA2/EA9588.htm +++ b/approved/html/EARoot/EA3/EA2/EA2/EA9588.htm @@ -113,8 +113,8 @@
    -
    Details: -
    +
    Details: +
    Values: true
    Default: true
    Description: Encode code list as externally managed dictionary (applies to ISO 19136:2007 encoding rule). Always true in INSPIRE.
    @@ -126,8 +126,8 @@
    -
    Details: -
    +
    Details: +
    Values: none | narrower | open | any
    Default: any
    Description: This refers to extensions by a third party, not to extensions by the owner of the vocabulary; the owner will always be able to revise the vocabulary. I.e., if the value is 'none', the referenced vocabulary may not be extended by third parties; if the value is 'narrower', the vocabulary may be extended by narrower terms that have an existing term as a parent; if the value is 'any', the vocabulary may be extended by additional terms on any level. This value must be 'all', empty or missing, if the value 'vocabulary' is empty or missing; in this case any vocabulary may be used.
    @@ -139,8 +139,8 @@
    -
    Details: -
    +
    Details: +
    Description: URI of the vocabulary/code list in the INSPIRE code list registry or in some external registry. The value has to be provided, if an online version of the vocabulary exists.
    @@ -152,8 +152,8 @@
    -
    Details: -
    +
    Details: +
    Values: iso19136_2007 | iso19139_2007 | iso19136_2007_INSPIRE_Extensions
    Default: iso19136_2007_INSPIRE_Extensions
    Description: XML Schema encoding rule to apply
    diff --git a/approved/html/EARoot/EA3/EA2/EA2/EA9589.htm b/approved/html/EARoot/EA3/EA2/EA2/EA9589.htm index 99856468c..d3a357112 100644 --- a/approved/html/EARoot/EA3/EA2/EA2/EA9589.htm +++ b/approved/html/EARoot/EA3/EA2/EA2/EA9589.htm @@ -112,38 +112,38 @@
    - Details: + Details: - + - + - + - + - + - + - + - + @@ -170,38 +170,38 @@ @@ -853,7 +795,7 @@ Notes:
    - Details: + Details: - + - + - + - + - + - + - + - + @@ -228,38 +228,38 @@ @@ -795,7 +737,7 @@ Notes:
    - Details: + Details: - + - + - + - + - + - + - + - + @@ -286,38 +286,38 @@ @@ -737,7 +679,7 @@ Notes:
    - Details: + Details: - + - + - + - + - + - + - + - + @@ -344,38 +344,38 @@ @@ -563,7 +505,7 @@ Notes:
    - Details: + Details: - + - + - + - + - + - + - + - + @@ -402,38 +402,38 @@ @@ -505,7 +447,7 @@ Notes:
    - Details: + Details: - + - + - + - + - + - + - + - + @@ -460,38 +460,38 @@ @@ -389,7 +331,7 @@ Notes:
    - Details: + Details: - + - + - + - + - + - + - + - + diff --git a/approved/html/EARoot/EA3/EA2/EA2/EA9590.htm b/approved/html/EARoot/EA3/EA2/EA2/EA9590.htm index dba042407..d091720f0 100644 --- a/approved/html/EARoot/EA3/EA2/EA2/EA9590.htm +++ b/approved/html/EARoot/EA3/EA2/EA2/EA9590.htm @@ -107,64 +107,6 @@ - - - - - @@ -282,7 +224,7 @@ @@ -331,7 +273,7 @@ Notes:
    Attribute
    - Public
      AT -
    - Details: - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    - - -
    - - - - -
    - Notes: - - -- Name --<br/>Austria<br/> -
    - - -
    Public
      BE
    - Public
      CY + Public
      CZ
    - -- Name --<br/>Cyprus<br/> + -- Name --<br/>Czech Republic<br/>
    @@ -340,7 +282,7 @@
    - Public
      CZ + Public
      DK
    - -- Name --<br/>Czech Republic<br/> + -- Name --<br/>Denmark<br/>
    @@ -456,7 +398,7 @@
    - Public
      DK + Public
      EE
    - -- Name --<br/>Denmark<br/> + -- Name --<br/>Estonia<br/>
    @@ -514,7 +456,7 @@
    - Public
      EE + Public
      IE
    - -- Name --<br/>Estonia<br/> + -- Name --<br/>Ireland<br/>
    @@ -688,7 +630,7 @@
    - Public
      FI + Public
      FR
    - -- Name --<br/>Finland<br/> + -- Name --<br/>France<br/>
    @@ -746,7 +688,7 @@
    - Public
      FR + Public
      IT
    - -- Name --<br/>France<br/> + -- Name --<br/>Italy<br/>
    @@ -804,7 +746,7 @@
    - Public
      HR + Public
      CY
    - -- Name --<br/>Croatia<br/> + -- Name --<br/>Cyprus<br/>
    @@ -862,7 +804,7 @@
    - Public
      HU + Public
      LV
    - -- Name --<br/>Hungary<br/> + -- Name --<br/>Latvia<br/>
    @@ -920,7 +862,7 @@
    - Public
      IE + Public
      LT
    - -- Name --<br/>Ireland<br/> + -- Name --<br/>Lithuania<br/>
    @@ -978,7 +920,7 @@
    - Public
      IT + Public
      LU
    - -- Name --<br/>Italy<br/> + -- Name --<br/>Luxembourg<br/>
    @@ -1036,7 +978,7 @@
    - Public
      LT + Public
      HU
    - -- Name --<br/>Lithuania<br/> + -- Name --<br/>Hungary<br/>
    @@ -1094,7 +1036,7 @@
    - Public
      LU + Public
      MT
    - -- Name --<br/>Luxembourg<br/> + -- Name --<br/>Malta<br/>
    @@ -1152,7 +1094,7 @@
    - Public
      LV + Public
      NL
    - -- Name --<br/>Latvia<br/> + -- Name --<br/>Netherlands<br/>
    @@ -1210,7 +1152,7 @@
    - Public
      MT + Public
      AT
    - -- Name --<br/>Malta<br/> + -- Name --<br/>Austria<br/>
    @@ -1268,7 +1210,7 @@
    - Public
      NL + Public
      PL
    - -- Name --<br/>Netherlands<br/> + -- Name --<br/>Poland<br/>
    @@ -1326,7 +1268,7 @@
    - Public
      PL + Public
      PT
    - -- Name --<br/>Poland<br/> + -- Name --<br/>Portugal<br/>
    @@ -1384,7 +1326,7 @@
    - Public
      PT + Public
      RO
    - -- Name --<br/>Portugal<br/> + -- Name --<br/>Romania<br/>
    @@ -1442,7 +1384,7 @@
    - Public
      RO + Public
      SI
    - -- Name --<br/>Romania<br/> + -- Name --<br/>Slovenia<br/>
    @@ -1500,7 +1442,7 @@
    - Public
      SE + Public
      SK
    - -- Name --<br/>Sweden<br/> + -- Name --<br/>Slovakia<br/>
    @@ -1558,7 +1500,7 @@
    - Public
      SI + Public
      FI
    - -- Name --<br/>Slovenia<br/> + -- Name --<br/>Finland<br/>
    @@ -1616,7 +1558,7 @@
    - Public
      SK + Public
      SE
    - -- Name --<br/>Slovakia<br/> + -- Name --<br/>Sweden<br/>
    @@ -1674,7 +1616,7 @@
    - Public
      TR + Public
      UK
    - -- Name --<br/>Turkey<br/> + -- Name --<br/>United Kingdom<br/>
    @@ -1732,7 +1674,7 @@ - Public
      UK + Public
      HR @@ -1781,7 +1723,65 @@ Notes: - -- Name --<br/>United Kingdom<br/> + -- Name --<br/>Croatia<br/> + + +
    + + + + + + Public
      TR + + + + + Details: + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + +
    + + +
    + Notes: + + -- Name --<br/>Turkey<br/>
    @@ -1803,8 +1803,8 @@ -
    Details: -
    +
    Details: +
    Values: true
    Default: true
    Description: Encode code list as externally managed dictionary (applies to ISO 19136:2007 encoding rule). Always true in INSPIRE.
    @@ -1816,8 +1816,8 @@ -
    Details: -
    +
    Details: +
    Values: none | narrower | open | any
    Default: any
    Description: This refers to extensions by a third party, not to extensions by the owner of the vocabulary; the owner will always be able to revise the vocabulary. I.e., if the value is 'none', the referenced vocabulary may not be extended by third parties; if the value is 'narrower', the vocabulary may be extended by narrower terms that have an existing term as a parent; if the value is 'any', the vocabulary may be extended by additional terms on any level. This value must be 'all', empty or missing, if the value 'vocabulary' is empty or missing; in this case any vocabulary may be used.
    @@ -1829,8 +1829,8 @@ -
    Details: -
    +
    Details: +
    Description: URI of the vocabulary/code list in the INSPIRE code list registry or in some external registry. The value has to be provided, if an online version of the vocabulary exists.
    @@ -1842,8 +1842,8 @@ -
    Details: -
    +
    Details: +
    Values: iso19136_2007 | iso19139_2007 | iso19136_2007_INSPIRE_Extensions
    Default: iso19136_2007_INSPIRE_Extensions
    Description: XML Schema encoding rule to apply
    diff --git a/approved/html/EARoot/EA3/EA2/EA2/EA9591.htm b/approved/html/EARoot/EA3/EA2/EA2/EA9591.htm index 3a4aa6e21..0ae81d105 100644 --- a/approved/html/EARoot/EA3/EA2/EA2/EA9591.htm +++ b/approved/html/EARoot/EA3/EA2/EA2/EA9591.htm @@ -109,43 +109,43 @@ - Public CI_Date
      date + Public CharacterString
      name - Details: + Details: - + - + - + - + - + - + - + - + - + @@ -158,7 +158,7 @@ Notes:
    - -- Name --<br/>date<br/><br/>-- Definition --<br/>Date of creation, publication or revision of the document.<br/> + -- Name --<br/>name<br/><br/>-- Definition --<br/>Name of the document.<br/><br/>-- Description --<br/>NOTE For legal documents, this should be the official name assigned to the legislative instrument.<br/><br/>EXAMPLE The official legal name for the INSPIRE Directive is "Directive 2007/2/EC of the European Parliament and of the Council of 14 March 2007 establishing an Infrastructure for Spatial Information in the European Community (INSPIRE)" <br/>
    @@ -167,43 +167,43 @@ - Public URL
      link + Public CharacterString
      shortName - Details: + Details: - + - + - + - + - + - + - + - + - + @@ -216,7 +216,7 @@ Notes:
    - -- Name --<br/>link to online version<br/><br/>-- Definition --<br/>Link to an online version of the document<br/> + -- Name --<br/>short name<br/><br/>-- Definition --<br/>Short name or alternative title of the document.<br/><br/>-- Description --<br/>NOTE For legal documents, this should be a short name or alternative title commonly used to identify the legislation.<br/><br/>EXAMPLE 1: INSPIRE Directive is the short name for "Directive 2007/2/EC of the European Parliament and of the Council of 14 March 2007 establishing an Infrastructure for Spatial Information in the European Community (INSPIRE)"<br/><br/>EXAMPLE 2: CAFE Directive is the short name for the Directive 2008/50/EC of the European Parliament and of the Council of 21 May 2008 on ambient air quality and cleaner air for Europe" <br/><br/>EXAMPLE  3: Water Framework Directive the short name for "Directive 2000/60/EC of the European Parliament and of the Council establishing a framework for the Community action in the field of water policy"<br/>
    @@ -225,43 +225,43 @@ - Public CharacterString
      name + Public CI_Date
      date - Details: + Details: - + - + - + - + - + - + - + - + - + @@ -274,7 +274,7 @@ Notes:
    - -- Name --<br/>name<br/><br/>-- Definition --<br/>Name of the document.<br/><br/>-- Description --<br/>NOTE For legal documents, this should be the official name assigned to the legislative instrument.<br/><br/>EXAMPLE The official legal name for the INSPIRE Directive is "Directive 2007/2/EC of the European Parliament and of the Council of 14 March 2007 establishing an Infrastructure for Spatial Information in the European Community (INSPIRE)" <br/> + -- Name --<br/>date<br/><br/>-- Definition --<br/>Date of creation, publication or revision of the document.<br/>
    @@ -283,43 +283,43 @@ - Public CharacterString
      shortName + Public URL
      link - Details: + Details: - + - + - + - + - + - + - + - + - + @@ -332,7 +332,7 @@ Notes:
    - -- Name --<br/>short name<br/><br/>-- Definition --<br/>Short name or alternative title of the document.<br/><br/>-- Description --<br/>NOTE For legal documents, this should be a short name or alternative title commonly used to identify the legislation.<br/><br/>EXAMPLE 1: INSPIRE Directive is the short name for "Directive 2007/2/EC of the European Parliament and of the Council of 14 March 2007 establishing an Infrastructure for Spatial Information in the European Community (INSPIRE)"<br/><br/>EXAMPLE 2: CAFE Directive is the short name for the Directive 2008/50/EC of the European Parliament and of the Council of 21 May 2008 on ambient air quality and cleaner air for Europe" <br/><br/>EXAMPLE  3: Water Framework Directive the short name for "Directive 2000/60/EC of the European Parliament and of the Council establishing a framework for the Community action in the field of water policy"<br/> + -- Name --<br/>link to online version<br/><br/>-- Definition --<br/>Link to an online version of the document<br/>
    @@ -346,38 +346,38 @@ - Details: + Details: - + - + - + - + - + - + - + - + @@ -424,8 +424,8 @@ @@ -795,7 +737,7 @@ Notes:
    -
    Details: -
    +
    Details: +
     
    @@ -451,8 +451,8 @@
    -
    Details: -
    +
    Details: +
     
    diff --git a/approved/html/EARoot/EA3/EA2/EA2/EA9592.htm b/approved/html/EARoot/EA3/EA2/EA2/EA9592.htm index 732815c8b..13d2bc803 100644 --- a/approved/html/EARoot/EA3/EA2/EA2/EA9592.htm +++ b/approved/html/EARoot/EA3/EA2/EA2/EA9592.htm @@ -113,38 +113,38 @@
    - Details: + Details: - + - + - + - + - + - + - + - + @@ -171,38 +171,38 @@ @@ -737,7 +679,7 @@ Notes:
    - Details: + Details: - + - + - + - + - + - + - + - + @@ -229,38 +229,38 @@ @@ -679,7 +621,7 @@ Notes:
    - Details: + Details: - + - + - + - + - + - + - + - + @@ -295,8 +295,8 @@ @@ -621,7 +563,7 @@ Notes:
    -
    Details: -
    +
    Details: +
    Values: true
    Default: true
    Description: Encode code list as externally managed dictionary (applies to ISO 19136:2007 encoding rule). Always true in INSPIRE.
    @@ -308,8 +308,8 @@
    -
    Details: -
    +
    Details: +
    Values: none | narrower | open | any
    Default: any
    Description: This refers to extensions by a third party, not to extensions by the owner of the vocabulary; the owner will always be able to revise the vocabulary. I.e., if the value is 'none', the referenced vocabulary may not be extended by third parties; if the value is 'narrower', the vocabulary may be extended by narrower terms that have an existing term as a parent; if the value is 'any', the vocabulary may be extended by additional terms on any level. This value must be 'all', empty or missing, if the value 'vocabulary' is empty or missing; in this case any vocabulary may be used.
    @@ -321,8 +321,8 @@
    -
    Details: -
    +
    Details: +
    Description: URI of the vocabulary/code list in the INSPIRE code list registry or in some external registry. The value has to be provided, if an online version of the vocabulary exists.
    @@ -334,8 +334,8 @@
    -
    Details: -
    +
    Details: +
    Values: iso19136_2007 | iso19139_2007 | iso19136_2007_INSPIRE_Extensions
    Default: iso19136_2007_INSPIRE_Extensions
    Description: XML Schema encoding rule to apply
    diff --git a/approved/html/EARoot/EA3/EA2/EA2/EA9595.htm b/approved/html/EARoot/EA3/EA2/EA2/EA9595.htm index 2f1e4594f..974882c79 100644 --- a/approved/html/EARoot/EA3/EA2/EA2/EA9595.htm +++ b/approved/html/EARoot/EA3/EA2/EA2/EA9595.htm @@ -111,43 +111,43 @@
    - Public TM_Position
      dateEnteredIntoForce + Public CharacterString
      identificationNumber
    - Details: + Details: - + - + - + - + - + - + - + - + @@ -160,7 +160,7 @@ Notes:
    - -- Name --<br/>date entered into force<br/><br/>-- Definition --<br/>Date the legislative instrument entered into force.<br/> + -- Name --<br/>identification number<br/><br/>-- Definition --<br/>Code used to identify the legislative instrument<br/><br/>-- Description --<br/><br/>EXAMPLE 1: 2007/2/EC is the identification number for the INSPIRE Directive<br/><br/>EXAMPLE 2: 2008/50/EC is the identification number for the CAFE Directive<br/><br/>EXAMPLE 3: 2000/60/EC is the identification number for the  Water Framework Directive<br/>
    @@ -169,43 +169,43 @@
    - Public TM_Position
      dateRepealed + Public CharacterString
      officialDocumentNumber
    - Details: + Details: - + - + - + - + - + - + - + - + @@ -218,7 +218,7 @@ Notes:
    - -- Name --<br/>date repealed<br/><br/>-- Definition --<br/>Date the legislative instrument was repealed.<br/> + -- Name --<br/>official document number<br/><br/>-- Definition --<br/>Official document number used to uniquely identify the legislative instrument.<br/><br/>-- Description --<br/>NOTE: An official document number may be assigned to uniquely identify the legislative instrument.<br/><br/>EXAMPLE: CELEX Number used to uniquely identify European Union Legislation<br/>
    @@ -227,43 +227,43 @@
    - Public CharacterString
      identificationNumber + Public TM_Position
      dateEnteredIntoForce
    - Details: + Details: - + - + - + - + - + - + - + - + @@ -276,7 +276,7 @@ Notes:
    - -- Name --<br/>identification number<br/><br/>-- Definition --<br/>Code used to identify the legislative instrument<br/><br/>-- Description --<br/><br/>EXAMPLE 1: 2007/2/EC is the identification number for the INSPIRE Directive<br/><br/>EXAMPLE 2: 2008/50/EC is the identification number for the CAFE Directive<br/><br/>EXAMPLE 3: 2000/60/EC is the identification number for the  Water Framework Directive<br/> + -- Name --<br/>date entered into force<br/><br/>-- Definition --<br/>Date the legislative instrument entered into force.<br/>
    @@ -285,43 +285,43 @@
    - Public OfficialJournalInformation
      journalCitation + Public TM_Position
      dateRepealed
    - Details: + Details: - + - + - + - + - + - + - + - + @@ -334,7 +334,7 @@ Notes:
    - -- Name --<br/>journal citation<br/><br/>-- Definition --<br/>Citation of the official journal in which the legislation is published.<br/> + -- Name --<br/>date repealed<br/><br/>-- Definition --<br/>Date the legislative instrument was repealed.<br/>
    @@ -348,38 +348,38 @@
    - Details: + Details: - + - + - + - + - + - + - + - + @@ -401,43 +401,43 @@ @@ -563,7 +505,7 @@ Notes:
    - Public CharacterString
      officialDocumentNumber + Public OfficialJournalInformation
      journalCitation
    - Details: + Details: - + - + - + - + - + - + - + - + @@ -450,7 +450,7 @@ Notes:
    - -- Name --<br/>official document number<br/><br/>-- Definition --<br/>Official document number used to uniquely identify the legislative instrument.<br/><br/>-- Description --<br/>NOTE: An official document number may be assigned to uniquely identify the legislative instrument.<br/><br/>EXAMPLE: CELEX Number used to uniquely identify European Union Legislation<br/> + -- Name --<br/>journal citation<br/><br/>-- Definition --<br/>Citation of the official journal in which the legislation is published.<br/>
    @@ -484,8 +484,8 @@
    -
    Details: -
    +
    Details: +
     
    @@ -506,8 +506,8 @@
    -
    Details: -
    +
    Details: +
    Values: true | false
    Default: false
    Description: Identifies the data type as an object collection.
    @@ -519,8 +519,8 @@
    -
    Details: -
    +
    Details: +
    Values: false
    Default: false
    Description: Surpress creation of a standard property type that supports inline encoding (applies to ISO 19136:2007 encoding rule). Always set to false in INSPIRE.
    @@ -532,8 +532,8 @@
    -
    Details: -
    +
    Details: +
    Values: iso19136_2007 | iso19139_2007 | iso19136_2007_INSPIRE_Extensions
    Default: iso19136_2007_INSPIRE_Extensions
    Description: XML Schema encoding rule to apply
    @@ -555,8 +555,8 @@
    -
    Details: -
    +
    Details: +
    /*If the link attribute is void, the journal citation shall be provided.*/<br/>inv: link-#gt;notEmpty() or  journalCitation-#gt;notEmpty()<br/>
    diff --git a/approved/html/EARoot/EA3/EA2/EA2/EA9596.htm b/approved/html/EARoot/EA3/EA2/EA2/EA9596.htm index 609705f7b..939f74674 100644 --- a/approved/html/EARoot/EA3/EA2/EA2/EA9596.htm +++ b/approved/html/EARoot/EA3/EA2/EA2/EA9596.htm @@ -108,43 +108,43 @@
    - Public
      european + Public
      international
    - Details: + Details: - + - + - + - + - + - + - + - + @@ -157,7 +157,7 @@ Notes:
    - -- Definition --<br/>A legal act of the European Union.<br/><br/><br/><br/> + -- Definition --<br/>An international legal act or convention.<br/><br/><br/><br/>
    @@ -166,43 +166,43 @@
    - Public
      international + Public
      european
    - Details: + Details: - + - + - + - + - + - + - + - + @@ -215,7 +215,7 @@ Notes:
    - -- Definition --<br/>An international legal act or convention.<br/><br/><br/><br/> + -- Definition --<br/>A legal act of the European Union.<br/><br/><br/><br/>
    @@ -229,38 +229,38 @@
    - Details: + Details: - + - + - + - + - + - + - + - + @@ -287,38 +287,38 @@ @@ -505,7 +447,7 @@ Notes:
    - Details: + Details: - + - + - + - + - + - + - + - + @@ -353,8 +353,8 @@ @@ -447,7 +389,7 @@ Notes:
    -
    Details: -
    +
    Details: +
    Values: true
    Default: true
    Description: Encode code list as externally managed dictionary (applies to ISO 19136:2007 encoding rule). Always true in INSPIRE.
    @@ -366,8 +366,8 @@
    -
    Details: -
    +
    Details: +
    Values: none | narrower | open | any
    Default: any
    Description: This refers to extensions by a third party, not to extensions by the owner of the vocabulary; the owner will always be able to revise the vocabulary. I.e., if the value is 'none', the referenced vocabulary may not be extended by third parties; if the value is 'narrower', the vocabulary may be extended by narrower terms that have an existing term as a parent; if the value is 'any', the vocabulary may be extended by additional terms on any level. This value must be 'all', empty or missing, if the value 'vocabulary' is empty or missing; in this case any vocabulary may be used.
    @@ -379,8 +379,8 @@
    -
    Details: -
    +
    Details: +
    Description: URI of the vocabulary/code list in the INSPIRE code list registry or in some external registry. The value has to be provided, if an online version of the vocabulary exists.
    @@ -392,8 +392,8 @@
    -
    Details: -
    +
    Details: +
    Values: iso19136_2007 | iso19139_2007 | iso19136_2007_INSPIRE_Extensions
    Default: iso19136_2007_INSPIRE_Extensions
    Description: XML Schema encoding rule to apply
    diff --git a/approved/html/EARoot/EA3/EA2/EA2/EA9597.htm b/approved/html/EARoot/EA3/EA2/EA2/EA9597.htm index 1443f61fd..8d66ddeb1 100644 --- a/approved/html/EARoot/EA3/EA2/EA2/EA9597.htm +++ b/approved/html/EARoot/EA3/EA2/EA2/EA9597.htm @@ -108,43 +108,43 @@
    - Public CharacterString
      ISBN + Public CharacterString
      officialJournalIdentification
    - Details: + Details: - + - + - + - + - + - + - + - + - + @@ -157,7 +157,7 @@ Notes:
    - -- Name --<br/>ISBN<br/><br/>-- Definition --<br/>International Standard Book Number (ISBN) is an nine-digit number that uniquely identifies the book in which the legislative instrument was published.<br/> + -- Name --<br/>official journal identification<br/><br/>-- Definition --<br/>Reference to the location within the official journal within which the legislative instrument was published. This reference shall be comprised of three parts:<br/><ul>
    <li>the title of the official journal</li><li>the volume and/or series number</li><li>Page number(s)</li></ul>
    <br/>-- Description --<br/>EXAMPLE: Official Journal of European Union (OJEU), L108, Volume 50, 1-14<br/>
    @@ -171,38 +171,38 @@
    - Details: + Details: - + - + - + - + - + - + - + - + @@ -224,43 +224,43 @@ @@ -389,7 +331,7 @@ Notes:
    - Public URL
      linkToJournal + Public CharacterString
      ISBN
    - Details: + Details: - + - + - + - + - + - + - + - + @@ -273,7 +273,7 @@ Notes:
    - -- Name --<br/>link to online version<br/><br/>-- Definition --<br/>Link to an online version of the official journal<br/> + -- Name --<br/>ISBN<br/><br/>-- Definition --<br/>International Standard Book Number (ISBN) is an nine-digit number that uniquely identifies the book in which the legislative instrument was published.<br/>
    @@ -282,43 +282,43 @@
    - Public CharacterString
      officialJournalIdentification + Public URL
      linkToJournal
    - Details: + Details: - + - + - + - + - + - + - + - + - + @@ -331,7 +331,7 @@ Notes:
    - -- Name --<br/>official journal identification<br/><br/>-- Definition --<br/>Reference to the location within the official journal within which the legislative instrument was published. This reference shall be comprised of three parts:<br/><ul>
    <li>the title of the official journal</li><li>the volume and/or series number</li><li>Page number(s)</li></ul>
    <br/>-- Description --<br/>EXAMPLE: Official Journal of European Union (OJEU), L108, Volume 50, 1-14<br/> + -- Name --<br/>link to online version<br/><br/>-- Definition --<br/>Link to an online version of the official journal<br/>
    @@ -353,8 +353,8 @@
    -
    Details: -
    +
    Details: +
    Values: true | false
    Default: false
    Description: Identifies the data type as an object collection.
    @@ -366,8 +366,8 @@
    -
    Details: -
    +
    Details: +
    Values: false
    Default: false
    Description: Surpress creation of a standard property type that supports inline encoding (applies to ISO 19136:2007 encoding rule). Always set to false in INSPIRE.
    @@ -379,8 +379,8 @@
    -
    Details: -
    +
    Details: +
    Values: iso19136_2007 | iso19139_2007 | iso19136_2007_INSPIRE_Extensions
    Default: iso19136_2007_INSPIRE_Extensions
    Description: XML Schema encoding rule to apply
    diff --git a/approved/html/EARoot/EA3/EA2/EA2/EA9598.htm b/approved/html/EARoot/EA3/EA2/EA2/EA9598.htm index 1edfd7dc7..b909724b7 100644 --- a/approved/html/EARoot/EA3/EA2/EA2/EA9598.htm +++ b/approved/html/EARoot/EA3/EA2/EA2/EA9598.htm @@ -113,8 +113,8 @@
    -
    Details: -
    +
    Details: +
    Values: true
    Default: true
    Description: Encode code list as externally managed dictionary (applies to ISO 19136:2007 encoding rule). Always true in INSPIRE.
    @@ -126,8 +126,8 @@
    -
    Details: -
    +
    Details: +
    Values: none | narrower | open | any
    Default: any
    Description: This refers to extensions by a third party, not to extensions by the owner of the vocabulary; the owner will always be able to revise the vocabulary. I.e., if the value is 'none', the referenced vocabulary may not be extended by third parties; if the value is 'narrower', the vocabulary may be extended by narrower terms that have an existing term as a parent; if the value is 'any', the vocabulary may be extended by additional terms on any level. This value must be 'all', empty or missing, if the value 'vocabulary' is empty or missing; in this case any vocabulary may be used.
    @@ -139,8 +139,8 @@
    -
    Details: -
    +
    Details: +
    Description: URI of the vocabulary/code list in the INSPIRE code list registry or in some external registry. The value has to be provided, if an online version of the vocabulary exists.
    @@ -152,8 +152,8 @@
    -
    Details: -
    +
    Details: +
    Values: iso19136_2007 | iso19139_2007 | iso19136_2007_INSPIRE_Extensions
    Default: iso19136_2007_INSPIRE_Extensions
    Description: XML Schema encoding rule to apply
    diff --git a/approved/html/EARoot/EA3/EA2/EA2/EA9599.htm b/approved/html/EARoot/EA3/EA2/EA2/EA9599.htm index f966ed7c2..ad234a0bb 100644 --- a/approved/html/EARoot/EA3/EA2/EA2/EA9599.htm +++ b/approved/html/EARoot/EA3/EA2/EA2/EA9599.htm @@ -108,43 +108,43 @@
    - Public Contact
      contact + Public PT_FreeText
      individualName
    - Details: + Details: - + - + - + - + - + - + - + - + @@ -157,7 +157,7 @@ Notes:
    - -- Name --<br/>contact<br/><br/>-- Definition --<br/>Contact information for the related party.<br/> + -- Name --<br/>individual name<br/><br/>-- Definition --<br/>Name of the related person.<br/>
    @@ -166,43 +166,43 @@
    - Public PT_FreeText
      individualName + Public PT_FreeText
      organisationName
    - Details: + Details: - + - + - + - + - + - + - + - + @@ -215,7 +215,7 @@ Notes:
    - -- Name --<br/>individual name<br/><br/>-- Definition --<br/>Name of the related person.<br/> + -- Name --<br/>organisation name<br/><br/>-- Definition --<br/>Name of the related organisation.<br/>
    @@ -224,43 +224,43 @@
    - Public PT_FreeText
      organisationName + Public PT_FreeText
      positionName
    - Details: + Details: - + - + - + - + - + - + - + - + @@ -273,7 +273,7 @@ Notes:
    - -- Name --<br/>organisation name<br/><br/>-- Definition --<br/>Name of the related organisation.<br/> + -- Name --<br/>position name<br/><br/>-- Definition --<br/>Position of the party in relation to a resource, such as head of department.<br/>
    @@ -282,43 +282,43 @@
    - Public PT_FreeText
      positionName + Public Contact
      contact
    - Details: + Details: - + - + - + - + - + - + - + - + @@ -331,7 +331,7 @@ Notes:
    - -- Name --<br/>position name<br/><br/>-- Definition --<br/>Position of the party in relation to a resource, such as head of department.<br/> + -- Name --<br/>contact<br/><br/>-- Definition --<br/>Contact information for the related party.<br/>
    @@ -345,38 +345,38 @@
    - Details: + Details: - + - + - + - + - + - + - + - + @@ -413,8 +413,8 @@ @@ -331,7 +273,7 @@ Notes:
    -
    Details: -
    +
    Details: +
    /*At least the individual, organisation or position name shall be provided.*/<br/>inv: individualName-#gt;notEmpty() or organisationName-#gt;notEmpty() or positionName-#gt;notEmpty()<br/>
    diff --git a/approved/html/EARoot/EA3/EA2/EA2/EA9600.htm b/approved/html/EARoot/EA3/EA2/EA2/EA9600.htm index 22bd4e198..5605d9c38 100644 --- a/approved/html/EARoot/EA3/EA2/EA2/EA9600.htm +++ b/approved/html/EARoot/EA3/EA2/EA2/EA9600.htm @@ -113,8 +113,8 @@
    -
    Details: -
    +
    Details: +
    Values: true
    Default: true
    Description: Encode code list as externally managed dictionary (applies to ISO 19136:2007 encoding rule). Always true in INSPIRE.
    @@ -126,8 +126,8 @@
    -
    Details: -
    +
    Details: +
    Values: none | narrower | open | any
    Default: any
    Description: This refers to extensions by a third party, not to extensions by the owner of the vocabulary; the owner will always be able to revise the vocabulary. I.e., if the value is 'none', the referenced vocabulary may not be extended by third parties; if the value is 'narrower', the vocabulary may be extended by narrower terms that have an existing term as a parent; if the value is 'any', the vocabulary may be extended by additional terms on any level. This value must be 'all', empty or missing, if the value 'vocabulary' is empty or missing; in this case any vocabulary may be used.
    @@ -139,8 +139,8 @@
    -
    Details: -
    +
    Details: +
    Description: URI of the vocabulary/code list in the INSPIRE code list registry or in some external registry. The value has to be provided, if an online version of the vocabulary exists.
    @@ -152,8 +152,8 @@
    -
    Details: -
    +
    Details: +
    Values: iso19136_2007 | iso19139_2007 | iso19136_2007_INSPIRE_Extensions
    Default: iso19136_2007_INSPIRE_Extensions
    Description: XML Schema encoding rule to apply
    diff --git a/approved/html/EARoot/EA3/EA2/EA2/EA9601.htm b/approved/html/EARoot/EA3/EA2/EA2/EA9601.htm index 4cc7a5980..17125250d 100644 --- a/approved/html/EARoot/EA3/EA2/EA2/EA9601.htm +++ b/approved/html/EARoot/EA3/EA2/EA2/EA9601.htm @@ -113,38 +113,38 @@
    - Details: + Details: - + - + - + - + - + - + - + - + @@ -171,38 +171,38 @@ @@ -273,7 +215,7 @@ Notes:
    - Details: + Details: - + - + - + - + - + - + - + - + @@ -237,8 +237,8 @@ - - - - -
    -
    Details: -
    +
    Details: +
    Values: true | false
    Default: false
    Description: Identifies the data type as an object collection.
    @@ -250,8 +250,8 @@
    -
    Details: -
    +
    Details: +
    Values: false
    Default: false
    Description: Surpress creation of a standard property type that supports inline encoding (applies to ISO 19136:2007 encoding rule). Always set to false in INSPIRE.
    @@ -263,8 +263,8 @@
    -
    Details: -
    +
    Details: +
    Values: iso19136_2007 | iso19139_2007 | iso19136_2007_INSPIRE_Extensions
    Default: iso19136_2007_INSPIRE_Extensions
    Description: XML Schema encoding rule to apply
    diff --git a/approved/html/EARoot/EA3/EA2/EA2/EA9602.htm b/approved/html/EARoot/EA3/EA2/EA2/EA9602.htm index c614add4c..8d8ff9af6 100644 --- a/approved/html/EARoot/EA3/EA2/EA2/EA9602.htm +++ b/approved/html/EARoot/EA3/EA2/EA2/EA9602.htm @@ -111,64 +111,6 @@ Public
      AC
    - Details: - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    - - -
    - - - - -
    - Notes: - - -- Name --<br/>Atmospheric conditions<br/> -
    - - -
    - Public
      AD -
    Details: @@ -215,7 +157,7 @@ Notes: - -- Name --<br/>Addresses<br/> + -- Name --<br/>Atmospheric conditions<br/>
    @@ -224,7 +166,7 @@
    - Public
      AF + Public
      AD
    - -- Name --<br/>Agricultural and aquacultural facilities<br/> + -- Name --<br/>Addresses<br/>
    @@ -282,7 +224,7 @@
    - Public
      AM + Public
      AF
    - -- Name --<br/>Area management/restriction/regulation zones and reporting units<br/> + -- Name --<br/>Agricultural and aquacultural facilities<br/>
    @@ -340,7 +282,7 @@
    - Public
      AU + Public
      AM
    - -- Name --<br/>Administrative units<br/> + -- Name --<br/>Area management/restriction/regulation zones and reporting units<br/>
    @@ -398,7 +340,7 @@
    - Public
      BR + Public
      AU
    - -- Name --<br/>Bio-geographical regions<br/> + -- Name --<br/>Administrative units<br/>
    @@ -456,7 +398,7 @@
    - Public
      BU + Public
      BR
    - -- Name --<br/>Buildings<br/> + -- Name --<br/>Bio-geographical regions<br/>
    @@ -514,7 +456,7 @@
    - Public
      CP + Public
      BU
    - -- Name --<br/>Cadastral parcels<br/> + -- Name --<br/>Buildings<br/>
    @@ -572,7 +514,7 @@
    - Public
      EF + Public
      CP
    - -- Name --<br/>Environmental monitoring facilities<br/> + -- Name --<br/>Cadastral parcels<br/>
    @@ -630,7 +572,7 @@
    - Public
      EL + Public
      EF
    - -- Name --<br/>Elevation<br/> + -- Name --<br/>Environmental monitoring facilities<br/>
    @@ -688,7 +630,7 @@
    - Public
      ER + Public
      EL
    - -- Name --<br/>Energy resources<br/> + -- Name --<br/>Elevation<br/>
    @@ -746,7 +688,7 @@
    - Public
      GE + Public
      ER
    - -- Name --<br/>Geology<br/> + -- Name --<br/>Energy resources<br/>
    @@ -804,7 +746,7 @@ - Public
      GG + Public
      GE @@ -853,7 +795,7 @@ Notes: - -- Name --<br/>Geographical grid systems<br/> + -- Name --<br/>Geology<br/>
    @@ -862,7 +804,7 @@ - Public
      GN + Public
      GG @@ -911,7 +853,7 @@ Notes: - -- Name --<br/>Geographical names<br/> + -- Name --<br/>Geographical grid systems<br/>
    @@ -920,7 +862,7 @@ - Public
      HB + Public
      GN @@ -969,7 +911,7 @@ Notes: - -- Name --<br/>Habitats and biotopes<br/> + -- Name --<br/>Geographical names<br/>
    @@ -978,7 +920,7 @@ - Public
      HH + Public
      HB @@ -1027,7 +969,7 @@ Notes: - -- Name --<br/>Human health and safety<br/> + -- Name --<br/>Habitats and biotopes<br/>
    @@ -1036,7 +978,7 @@ - Public
      HY + Public
      HH @@ -1085,7 +1027,7 @@ Notes: - -- Name --<br/>Hydrography<br/> + -- Name --<br/>Human health and safety<br/>
    @@ -1094,7 +1036,7 @@ - Public
      LC + Public
      HY @@ -1143,7 +1085,7 @@ Notes: - -- Name --<br/>Land cover<br/> + -- Name --<br/>Hydrography<br/>
    @@ -1152,7 +1094,7 @@ - Public
      LU + Public
      LC @@ -1201,7 +1143,7 @@ Notes: - -- Name --<br/>Land use<br/> + -- Name --<br/>Land cover<br/>
    @@ -1210,7 +1152,7 @@ - Public
      MF + Public
      LU @@ -1259,7 +1201,7 @@ Notes: - -- Name --<br/>Meteorological geographical features<br/> + -- Name --<br/>Land use<br/>
    @@ -1268,7 +1210,7 @@ - Public
      MR + Public
      MF @@ -1317,7 +1259,7 @@ Notes: - -- Name --<br/>Mineral resources<br/> + -- Name --<br/>Meteorological geographical features<br/>
    @@ -1326,7 +1268,7 @@ - Public
      NZ + Public
      MR @@ -1375,7 +1317,7 @@ Notes: - -- Name --<br/>Natural risk zones<br/> + -- Name --<br/>Mineral resources<br/>
    @@ -1384,7 +1326,7 @@ - Public
      OF + Public
      NZ @@ -1433,7 +1375,7 @@ Notes: - -- Name --<br/>Oceanographic geographical features<br/> + -- Name --<br/>Natural risk zones<br/>
    @@ -1442,7 +1384,7 @@ - Public
      OI + Public
      OF @@ -1491,7 +1433,7 @@ Notes: - -- Name --<br/>Orthoimagery<br/> + -- Name --<br/>Oceanographic geographical features<br/>
    @@ -1500,7 +1442,7 @@ - Public
      PD + Public
      OI @@ -1549,7 +1491,7 @@ Notes: - -- Name --<br/>Population distribution, demography<br/> + -- Name --<br/>Orthoimagery<br/>
    @@ -1558,7 +1500,7 @@ - Public
      PF + Public
      PD @@ -1607,7 +1549,7 @@ Notes: - -- Name --<br/>Production and industrial facilities<br/> + -- Name --<br/>Population distribution, demography<br/>
    @@ -1616,7 +1558,7 @@ - Public
      PS + Public
      PF @@ -1665,7 +1607,7 @@ Notes: - -- Name --<br/>Protected sites<br/> + -- Name --<br/>Production and industrial facilities<br/>
    @@ -1674,7 +1616,7 @@ - Public
      SD + Public
      PS @@ -1723,7 +1665,7 @@ Notes: - -- Name --<br/>Species distribution<br/> + -- Name --<br/>Protected sites<br/>
    @@ -1732,7 +1674,7 @@ - Public
      SO + Public
      SD @@ -1781,7 +1723,7 @@ Notes: - -- Name --<br/>Soil<br/> + -- Name --<br/>Species distribution<br/>
    @@ -1790,7 +1732,7 @@ - Public
      SR + Public
      SO @@ -1839,7 +1781,7 @@ Notes: - -- Name --<br/>Sea regions<br/> + -- Name --<br/>Soil<br/>
    @@ -1848,7 +1790,7 @@ - Public
      SU + Public
      SR @@ -1897,7 +1839,7 @@ Notes: - -- Name --<br/>Statistical units<br/> + -- Name --<br/>Sea regions<br/>
    @@ -1906,7 +1848,7 @@ - Public
      TN + Public
      SU @@ -1955,7 +1897,7 @@ Notes: - -- Name --<br/>Transport networks<br/> + -- Name --<br/>Statistical units<br/>
    @@ -1964,7 +1906,7 @@ - Public
      US + Public
      TN @@ -2007,6 +1949,64 @@ +
    + + + + +
    + Notes: + + -- Name --<br/>Transport networks<br/> +
    + + + + + + Public
      US + + + + + Details: + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + +
    @@ -2035,8 +2035,8 @@
    -
    Details: -
    +
    Details: +
    Values: true
    Default: true
    Description: Encode code list as externally managed dictionary (applies to ISO 19136:2007 encoding rule). Always true in INSPIRE.
    @@ -2048,8 +2048,8 @@
    -
    Details: -
    +
    Details: +
    Values: none | narrower | open | any
    Default: any
    Description: This refers to extensions by a third party, not to extensions by the owner of the vocabulary; the owner will always be able to revise the vocabulary. I.e., if the value is 'none', the referenced vocabulary may not be extended by third parties; if the value is 'narrower', the vocabulary may be extended by narrower terms that have an existing term as a parent; if the value is 'any', the vocabulary may be extended by additional terms on any level. This value must be 'all', empty or missing, if the value 'vocabulary' is empty or missing; in this case any vocabulary may be used.
    @@ -2061,8 +2061,8 @@
    -
    Details: -
    +
    Details: +
    Description: URI of the vocabulary/code list in the INSPIRE code list registry or in some external registry. The value has to be provided, if an online version of the vocabulary exists.
    @@ -2074,8 +2074,8 @@
    -
    Details: -
    +
    Details: +
    Values: iso19136_2007 | iso19139_2007 | iso19136_2007_INSPIRE_Extensions
    Default: iso19136_2007_INSPIRE_Extensions
    Description: XML Schema encoding rule to apply
    diff --git a/approved/html/EARoot/EA3/EA2/EA9565.htm b/approved/html/EARoot/EA3/EA2/EA9565.htm index b61e4eeda..358ef9c6a 100644 --- a/approved/html/EARoot/EA3/EA2/EA9565.htm +++ b/approved/html/EARoot/EA3/EA2/EA9565.htm @@ -113,8 +113,8 @@
    -
    Details: -
    +
    Details: +
    Default: FIXME
    Description: Target XML namespace of the application schema
    @@ -126,8 +126,8 @@
    -
    Details: -
    +
    Details: +
    Default: FIXME
    Description: Current version of the application schema
    @@ -139,8 +139,8 @@
    -
    Details: -
    +
    Details: +
    Default: FIXME
    Description: Namespace prefix to be used as short form of the target namespace
    @@ -152,8 +152,8 @@
    -
    Details: -
    +
    Details: +
    Default: FIXME
    Description: Name of an XML Schema document to create representing the content of this package
    @@ -165,8 +165,8 @@
    -
    Details: -
    +
    Details: +
    Values: iso19136_2007 | iso19139_2007 | iso19136_2007_INSPIRE_Extensions
    Default: iso19136_2007_INSPIRE_Extensions
    Description: XML Schema encoding rule to apply
    diff --git a/approved/html/EARoot/EA3/EA2/EA9566.htm b/approved/html/EARoot/EA3/EA2/EA9566.htm index c30c87c0b..8c857618c 100644 --- a/approved/html/EARoot/EA3/EA2/EA9566.htm +++ b/approved/html/EARoot/EA3/EA2/EA9566.htm @@ -113,8 +113,8 @@
    -
    Details: -
    +
    Details: +
    Default: FIXME
    Description: Target XML namespace of the application schema
    @@ -126,8 +126,8 @@
    -
    Details: -
    +
    Details: +
    Default: FIXME
    Description: Current version of the application schema
    @@ -139,8 +139,8 @@
    -
    Details: -
    +
    Details: +
    Default: FIXME
    Description: Namespace prefix to be used as short form of the target namespace
    @@ -152,8 +152,8 @@
    -
    Details: -
    +
    Details: +
    Default: FIXME
    Description: Name of an XML Schema document to create representing the content of this package
    @@ -165,8 +165,8 @@
    -
    Details: -
    +
    Details: +
    Values: iso19136_2007 | iso19139_2007 | iso19136_2007_INSPIRE_Extensions
    Default: iso19136_2007_INSPIRE_Extensions
    Description: XML Schema encoding rule to apply
    diff --git a/approved/mapping/GeologyMappingTable.xls b/approved/mapping/GeologyMappingTable.xls index 6d4554c31..a6603cc22 100644 Binary files a/approved/mapping/GeologyMappingTable.xls and b/approved/mapping/GeologyMappingTable.xls differ diff --git a/approved/mapping/StatisticalUnitsMappingTable.xls b/approved/mapping/StatisticalUnitsMappingTable.xls index 2b457b498..c212df423 100644 Binary files a/approved/mapping/StatisticalUnitsMappingTable.xls and b/approved/mapping/StatisticalUnitsMappingTable.xls differ