Class LoadSettings
Contains a set of settings that the OSM data loader can use.
Inheritance
System.Object
LoadSettings
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: System.Dynamic.ExpandoObject
Assembly: cs.temp.dll.dll
Syntax
public class LoadSettings
Constructors
LoadSettings()
Creates a new settings object.
Declaration
public LoadSettings()
Properties
AllCore
Gets or sets the all core flag.
Declaration
public bool AllCore { get; set; }
Property Value
|
System.Boolean
|
Remarks
When true this will convert all nodes into a vertex.
KeepNodeIds
Gets or sets the flag to keep node id's.
Declaration
public bool KeepNodeIds { get; set; }
Property Value
|
System.Boolean
|
KeepWayIds
Gets or sets the flag to keep way id's.
Declaration
public bool KeepWayIds { get; set; }
Property Value
|
System.Boolean
|
NetworkSimplificationEpsilon
Gets or sets the network simplification epsilon (in meter). When zero no network simplification is done.
Declaration
public float NetworkSimplificationEpsilon { get; set; }
Property Value
|
System.Single
|
OptimizeNetwork
Gets or sets the network optimization flag.
Declaration
public bool OptimizeNetwork { get; set; }
Property Value
|
System.Boolean
|
Processors
Gets or sets a collection of extra processors.
Declaration
public IEnumerable<ITwoPassProcessor> Processors { get; set; }
Property Value
|
IEnumerable<ITwoPassProcessor>
|
ProcessRestrictions
Gets or sets the process restrictions flag.
Declaration
public bool ProcessRestrictions { get; set; }
Property Value
|
System.Boolean
|