public IncidentShapefileImporter(string name, string path, string relativePath, string sourceURI, int sourceSRID, int targetSRID, IShapefileInfoRetriever shapefileInfoRetriever, Area importArea, Dictionary<string, string> incidentColumnShapefileColumn, int hourOffset)
     : base(name, path, relativePath, sourceURI, sourceSRID, targetSRID, shapefileInfoRetriever)
 {
     _importArea = importArea;
     _incidentColumnShapefileColumn = incidentColumnShapefileColumn;
     _hourOffset = hourOffset;
 }
 public IncidentShapefileImporter(string name, string path, string relativePath, string sourceURI, int sourceSRID, int targetSRID, IShapefileInfoRetriever shapefileInfoRetriever, Area importArea, IIncidentTableShapefileTableMappingRetriever incidentShapefileMappingRetriever, int hourOffset)
     : base(name, path, relativePath, sourceURI, sourceSRID, targetSRID, shapefileInfoRetriever)
 {
     _importArea = importArea;
     _incidentShapefileMappingRetriever = incidentShapefileMappingRetriever;
     _hourOffset = hourOffset;
 }
 public ShapefileImporter(string name, string path, string relativePath, string sourceURI, int sourceSRID, int targetSRID, IShapefileInfoRetriever shapefileInfoRetriever)
     : base(name, path, relativePath, sourceURI)
 {
     _sourceSRID = sourceSRID;
     _targetSRID = targetSRID;
     _shapefileInfoRetriever = shapefileInfoRetriever;
 }
 public ShapefileImporter(string name, string path, string relativePath, string sourceURI, int sourceSRID, int targetSRID, IShapefileInfoRetriever shapefileInfoRetriever)
     : base(name, path, relativePath, sourceURI)
 {
     _sourceSRID             = sourceSRID;
     _targetSRID             = targetSRID;
     _shapefileInfoRetriever = shapefileInfoRetriever;
 }
 public FeatureShapefileImporter(string name, string path, string relativePath, string sourceURI, int sourceSRID, int targetSRID, IShapefileInfoRetriever shapefileInfoRetriever)
     : base(name, path, relativePath, sourceURI, sourceSRID, targetSRID, shapefileInfoRetriever)
 {
 }
Ejemplo n.º 6
0
 public AreaShapefileImporter(string name, string path, string relativePath, string sourceURI, int sourceSRID, int targetSRID, IShapefileInfoRetriever shapefileInfoRetriever, int areaContainmentBoxSize)
     : base(name, path, relativePath, sourceURI, sourceSRID, targetSRID, shapefileInfoRetriever)
 {
     _areaContainmentBoxSize = areaContainmentBoxSize;
 }
Ejemplo n.º 7
0
 public IncidentShapefileImporter(string name, string path, string relativePath, string sourceURI, int sourceSRID, int targetSRID, IShapefileInfoRetriever shapefileInfoRetriever, Area importArea, Dictionary <string, string> incidentColumnShapefileColumn, int hourOffset)
     : base(name, path, relativePath, sourceURI, sourceSRID, targetSRID, shapefileInfoRetriever)
 {
     _importArea = importArea;
     _incidentColumnShapefileColumn = incidentColumnShapefileColumn;
     _hourOffset = hourOffset;
 }
Ejemplo n.º 8
0
 public IncidentShapefileImporter(string name, string path, string relativePath, string sourceURI, int sourceSRID, int targetSRID, IShapefileInfoRetriever shapefileInfoRetriever, Area importArea, IIncidentTableShapefileTableMappingRetriever incidentShapefileMappingRetriever, int hourOffset)
     : base(name, path, relativePath, sourceURI, sourceSRID, targetSRID, shapefileInfoRetriever)
 {
     _importArea = importArea;
     _incidentShapefileMappingRetriever = incidentShapefileMappingRetriever;
     _hourOffset = hourOffset;
 }
 public AreaShapefileImporter(string name, string path, string relativePath, string sourceURI, int sourceSRID, int targetSRID, IShapefileInfoRetriever shapefileInfoRetriever, int areaContainmentBoxSize)
     : base(name, path, relativePath, sourceURI, sourceSRID, targetSRID, shapefileInfoRetriever)
 {
     _areaContainmentBoxSize = areaContainmentBoxSize;
 }
 public FeatureShapefileImporter(string name, string path, string relativePath, string sourceURI, int sourceSRID, int targetSRID, IShapefileInfoRetriever shapefileInfoRetriever)
     : base(name, path, relativePath, sourceURI, sourceSRID, targetSRID, shapefileInfoRetriever)
 {
 }