-
Notifications
You must be signed in to change notification settings - Fork 0
DiGi.GML.Interfaces
Defines the basic structure for an abstract Geography Markup Language (GML) element, extending the feature member functionality.
public interface IAbstractGML : DiGi.GML.Interfaces.IFeatureMemberDerived
↳ AbstractGML
Implements IFeatureMember
Gets or sets the unique identifier of the GML element.
string? id { get; set; }Defines the contract for an object that represents a member of a GML (Geography Markup Language) feature.
public interface IFeatureMemberDerived
↳ AbstractGML
↳ IAbstractGML
Defines the structure for Spatial Reference System (SRS) information, providing labels for axes and units of measure.
public interface ISRSInformationDerived
↳ Geometry
↳ ISRSReference
Gets or sets the list of labels identifying the axes of the coordinate reference system.
System.Collections.Generic.List<string>? axisLabels { get; set; }System.Collections.Generic.List<System.String>
Gets or sets the list of labels identifying the units of measure (UOM) for the coordinate reference system.
System.Collections.Generic.List<string>? uomLabels { get; set; }System.Collections.Generic.List<System.String>
Defines the properties for a spatial reference system reference.
public interface ISRSReference : DiGi.GML.Interfaces.ISRSInformationDerived
↳ Geometry
Implements ISRSInformation
Gets or sets the dimension of the spatial reference system.
System.Nullable<ushort> srsDimension { get; set; }System.Nullable<System.UInt16>
Gets or sets the name of the spatial reference system.
string? srsName { get; set; }