ShapefileWriter.ShapefileWriter Constructors
Initializes a new instance of the ShapefileWriter class.
Overload List
Name | Description | |
---|---|---|
Public method | ShapefileWriter(System.String fileName, ShapefileSchema schema) | Initializes a new instance of the ShapefileWriter class with the specified ShapefileSchema. Big files will not be split. |
Public method | ShapefileWriter(System.String fileName, ShapefileSchema schema, Crs crs) | Initializes a new instance of the ShapefileWriter class with the specified ShapefileSchema and Crs. Big files will not be split. |
Public method | ShapefileWriter(System.String fileName, ShapefileSchema schema, System.Boolean splitBigFiles) | Initializes a new instance of the ShapefileWriter class with the specified ShapefileSchema and a flag controlling splitting of big files. |
Public method | ShapefileWriter(System.String fileName, ShapefileSchema schema, Crs crs, System.Boolean splitBigFiles) | Initializes a new instance of the ShapefileWriter class with the specified ShapefileSchema and Crs, and a flag controlling splitting of big files. |
ShapefileWriter(System.String fileName, ShapefileSchema schema)
Initializes a new instance of the ShapefileWriter class with the specified ShapefileSchema. Big files will not be split.Syntax
public ShapefileWriter (
System.String fileName,
ShapefileSchema schema
)
Parameters
The name of the Shapefile to create, typically with a .shp extension.
The schema to use, specifying how attributes are written to the Shapefile.
Remarks
The schema also specifies the geometry type and the code page number. All features that are written to a shapefile must have the geometry type specified by the schema. The features must also have the same Coordinate Reference System (CRS), but this constructor does not specify an explicit CRS, so the writer will assume that the CRS of the first written feature is the right one. Features that have a different geometry type or a different CRS will be ignored by the WriteFeature method.
This constructor sets the property SplitBigFiles to False. Since the property is read-only, you can set it to True only via the alternative constructor ShapefileWriter(fileName, schema, splitBigFiles) or ShapefileWriter(fileName, schema, crs, splitBigFiles).
ShapefileWriter(System.String fileName, ShapefileSchema schema, Crs crs)
Initializes a new instance of the ShapefileWriter class with the specified ShapefileSchema and Crs. Big files will not be split.Syntax
public ShapefileWriter (
System.String fileName,
ShapefileSchema schema,
Crs crs
)
Parameters
The name of the Shapefile to create, typically with a .shp extension.
The schema to use, specifying how attributes are written to the Shapefile.
The Coordinate Reference System that features are given in.
Remarks
The schema also specifies the geometry type and the code page number. All features that are written to a shapefile must have the geometry type specified by the schema, and the specified CRS. Features that have a different geometry type or a different CRS will be ignored by the WriteFeature method.
This constructor sets the property SplitBigFiles to False. Since the property is read-only, you can set it to True only via the alternative constructor ShapefileWriter(fileName, schema, splitBigFiles) or ShapefileWriter(fileName, schema, crs, splitBigFiles).
ShapefileWriter(System.String fileName, ShapefileSchema schema, System.Boolean splitBigFiles)
Initializes a new instance of the ShapefileWriter class with the specified ShapefileSchema and a flag controlling splitting of big files.Syntax
public ShapefileWriter (
System.String fileName,
ShapefileSchema schema,
System.Boolean splitBigFiles
)
Parameters
The name of the Shapefile to create, typically with a .shp extension.
The schema to use, specifying how attributes are written to the Shapefile.
Whether big files shall be split into smaller ones (for details, see SplitBigFiles).
Remarks
The schema also specifies the geometry type and the code page number. All features that are written to a shapefile must have the geometry type specified by the schema. The features must also have the same Coordinate Reference System (CRS), but this constructor does not specify an explicit CRS, so the writer will assume that the CRS of the first written feature is the right one. Features that have a different geometry type or a different CRS will be ignored by the WriteFeature method.
ShapefileWriter(System.String fileName, ShapefileSchema schema, Crs crs, System.Boolean splitBigFiles)
Initializes a new instance of the ShapefileWriter class with the specified ShapefileSchema and Crs, and a flag controlling splitting of big files.Syntax
public ShapefileWriter (
System.String fileName,
ShapefileSchema schema,
Crs crs,
System.Boolean splitBigFiles
)
Parameters
The name of the Shapefile to create, typically with a .shp extension.
The schema to use, specifying how attributes are written to the Shapefile.
The coordinate reference system that features are given in.
Whether big files shall be split into smaller ones (for details, see SplitBigFiles).
Remarks
The schema also specifies the geometry type and the code page number. All features that are written to a shapefile must have the geometry type specified by the schema, and the specified CRS. Features that have a different geometry type or a different CRS will be ignored by the WriteFeature method.
Platforms
Windows, Linux, Android