Exemplo n.º 1
0
 public DataService(bool useInMemoryCache, enMetricsType metricsType, bool reduceGeometry, bool removeArtefacts, bool clipGeometry)
 {
     _useInMemoryCache        = useInMemoryCache;
     _metricsType             = metricsType;
     _geometryReduce          = reduceGeometry;
     _geometryRemoveArtefacts = removeArtefacts;
     _geometryClip            = clipGeometry;
 }
Exemplo n.º 2
0
 public Metrics(enMetricsType MetricsType)
 {
     _metricsType = MetricsType;
     if (_metricsType != enMetricsType.None)
     {
         this._taskTimeSpan    = new Dictionary <string, TimeSpan>();
         this._taskCheckPoints = new Dictionary <string, DateTime>();
     }
 }
Exemplo n.º 3
0
 public RasterSettings(string tableName, bool clip, bool reduce, bool removeArtefacts, bool geomcache, enMetricsType metrics, Color fillColor, Color strokeColor)
 {
     this.TableName       = tableName;
     this.Clip            = clip;
     this.Reduce          = reduce;
     this.RemoveArtefacts = removeArtefacts;
     this.Geomcache       = geomcache;
     this.MetricsType     = metrics;
     this.FillColor       = fillColor;
     this.StrokeColor     = strokeColor;
 }