Class GmlOptions

GmlOptions class

Driver-specific options for GML format.

public class GmlOptions : DriverOptions

Constructors

NameDescription
GmlOptions()Create new instance.

Properties

NameDescription
CloseLinearRing { get; set; }Determines if close a unclosed LinearRing in each geometry. Defaults to false.
CreateMidpoints { get; set; }Determines if add a new point in the middle to each segment of geometry. Defaults to false.
DeleteNearPoints { get; set; }Determines if delete near points in each geometry. Defaults to false.
DeleteNearPointsDistance { get; set; }Determines distance for DeleteNearPoints. Defaults to 0.
LinearizationTolerance { get; set; }A tolerance to use to linearize curve geometries.
LoadSchemasFromInternet { get; set; }Determines whether Aspose.GIS is allowed to load XML schema from Internet. If set to false, schemas with absolute URIs that does not start with ‘file://’ would not be loaded. Default is false.
MPrecisionModel { get; set; }A PrecisionModel that will be applied to M coordinate when geometries are added to the VectorLayer or when they are read from the VectorLayer. The default value is Exact.
NestedPropertiesSeparator { get; set; }Gets or sets a string that is used to separate components of nested attributes. Default is “_”.
RestoreSchema { get; set; }Determines whether Aspose.GIS is allowed to parse attributes in a Gml file in which an XML schema is missing or cannot be loaded. If set to true, Aspose.GIS reader does not require the presence of an XML Schema. Default is false.
SchemaLocation { get; set; }Space separated list of URI pairs. First URI in every pair is a URI of the namespace, second URI is a Path to XML schema of the namespace. If set to null, GmlDriver will try read schemaLocation from the root element of the document. Default is null.
SimplifySegments { get; set; }Determines if delete points lying on the same segment in each geometry. Defaults to false.
SimplifySegmentsDistance { get; set; }Determines distance for SimplifySegments. Defaults to 0.
ValidateGeometriesOnWrite { get; set; }Determines if geometries should be validated when they are added to the layer. If set to true, IsValid is called for each geometry when it’s added to the layer, and if validation fails (IsValid is false), GisException is thrown.
WritePolygonsAsLines { get; set; }Determines if transformation of polygon or multipolygon to linestring is allowed. Defaults to false.
XmlResolver { get; set; }A XmlResolver used to resolve external resources. Default is XmlUrlResolver.
XYPrecisionModel { get; set; }A PrecisionModel that will be applied to X and Y coordinates when geometries are added to the VectorLayer or when they are read from the VectorLayer. The default value is Exact.
ZPrecisionModel { get; set; }A PrecisionModel that will be applied to Z coordinate when geometries are added to the VectorLayer or when they are read from the VectorLayer. The default value is Exact.

See Also