Schema Central > niem40 > topology.xsd > gml:Edge
Advanced search
Need NIEM Help?

Recommended Reading:

Definitive XML Schema

 

Web Service Contract Design and Versioning for SOA

 

Advanced XML Applications

 

gml:Edge

gml:Edge represents the 1-dimensional primitive.
The topological boundary of an Edge (gml:directedNode) consists of a negatively directed start Node and a positively directed end Node.   
The optional coboundary of an edge (gml:directedFace) is a circular sequence of directed faces which are incident on this edge in document order. In the 2D case, the orientation of the face on the left of the edge is "+"; the orientation of the face on the right on its right is "-". 
If provided, the aggregationType attribute shall have the value "sequence".
An edge may optionally be realised by a 1-dimensional geometric primitive (gml:curveProperty).

Element information

Type: gml:EdgeType

Properties: Global, Qualified

Content

Attributes

NameOccTypeDescriptionNotes
gml:id [1..1]xsd:IDThe attribute gml:id supports provision of a handle for the XML element representing a GML Object. Its use is mandatory for all GML objects. It is of XML type ID, so is constrained to be unique in the XML document within which it occurs.from type gml:AbstractGMLType
aggregationType [0..1]gml:AggregationTypefrom group gml:AggregationAttributeGroup

Used in

Substitution hierarchy

Sample instance

<gml:Edge gml:id="ID">
   <gml:metaDataProperty>
      <gml:GenericMetaData>Any text, intermingled with:
         <!--any element-->
      </gml:GenericMetaData>
   </gml:metaDataProperty>
   <gml:description>string</gml:description>
   <gml:descriptionReference/>
   <gml:identifier codeSpace="http://www.example.com/">string</gml:identifier>
   <gml:name>string</gml:name>
   <gml:container>
      <gml:TopoSolid gml:id="ID">
         <gml:metaDataProperty>...
         </gml:metaDataProperty>
         <gml:description>string</gml:description>
         <gml:descriptionReference/>
         <gml:identifier codeSpace="http://www.example.com/">string</gml:identifier>
         <gml:name>string</gml:name>
         <gml:isolated>...
         </gml:isolated>
         <gml:directedFace>...
         </gml:directedFace>
         <gml:solidProperty>...
         </gml:solidProperty>
      </gml:TopoSolid>
   </gml:container>
   <gml:directedNode>
      <gml:Node gml:id="ID">
         <gml:metaDataProperty>...
         </gml:metaDataProperty>
         <gml:description>string</gml:description>
         <gml:descriptionReference/>
         <gml:identifier codeSpace="http://www.example.com/">string</gml:identifier>
         <gml:name>string</gml:name>
         <gml:container>...
         </gml:container>
         <gml:directedEdge>...
         </gml:directedEdge>
         <gml:pointProperty>...
         </gml:pointProperty>
      </gml:Node>
   </gml:directedNode>
   <gml:directedFace>
      <gml:Face gml:id="ID">
         <gml:metaDataProperty>...
         </gml:metaDataProperty>
         <gml:description>string</gml:description>
         <gml:descriptionReference/>
         <gml:identifier codeSpace="http://www.example.com/">string</gml:identifier>
         <gml:name>string</gml:name>
         <gml:isolated>...
         </gml:isolated>
         <gml:directedEdge>...
         </gml:directedEdge>
         <gml:directedTopoSolid>...
         </gml:directedTopoSolid>
         <gml:surfaceProperty>...
         </gml:surfaceProperty>
      </gml:Face>
   </gml:directedFace>
   <gml:curveProperty>
      <gml:LineString gml:id="ID">
         <gml:metaDataProperty>...
         </gml:metaDataProperty>
         <gml:description>string</gml:description>
         <gml:descriptionReference/>
         <gml:identifier codeSpace="http://www.example.com/">string</gml:identifier>
         <gml:name>string</gml:name>
         <gml:pos>1.0 1.0</gml:pos>
      </gml:LineString>
   </gml:curveProperty>
</gml:Edge>