← Back to carmenta.com
Carmenta Engine SDK Documentation
×

ShapefileAttribute.ShapefileAttribute Constructors

Initializes a new instance of the ShapefileAttribute class.

Overload List

 NameDescription
Public methodShapefileAttribute(System.String name, System.Boolean defaultValue)Initializes a new instance of the ShapefileAttribute class of type Bool, with the given attribute name and default value.
Public methodShapefileAttribute(System.String name, System.Int64 defaultValue, System.Int32 recordLength)Initializes a new instance of the ShapefileAttribute class of type Int, with the given attribute name, default value and record length.
Public methodShapefileAttribute(System.String name, Atom defaultValue, System.Int32 recordLength)Initializes a new instance of the ShapefileAttribute class of type Atom, with the given attribute name, default value and record length.
Public methodShapefileAttribute(System.String name, System.String defaultValue, System.Int32 recordLength)Initializes a new instance of the ShapefileAttribute class of type String, with the given attribute name, default value and record length.
Public methodShapefileAttribute(System.String name, System.Double defaultValue, System.Int32 recordLength, System.Int32 precision)Initializes a new instance of the ShapefileAttribute class of type Double, with the given attribute name, default value, record length and numeric precision.

ShapefileAttribute(System.String name, System.Boolean defaultValue)

Initializes a new instance of the ShapefileAttribute class of type Bool, with the given attribute name and default value.

Syntax

C#
public ShapefileAttribute (
    System.String name,
    System.Boolean defaultValue
)

Parameters

name
Type: System.String
The name of the attribute.
defaultValue
Type: System.Boolean
The default value to write if a feature is missing the attribute.

Remarks

The name parameter should be possible to store in at most 10 bytes using the ShapefileSchema.CodePage. For details, see Name.

ShapefileAttribute(System.String name, System.Int64 defaultValue, System.Int32 recordLength)

Initializes a new instance of the ShapefileAttribute class of type Int, with the given attribute name, default value and record length.

Syntax

C#
public ShapefileAttribute (
    System.String name,
    System.Int64 defaultValue,
    System.Int32 recordLength
)

Parameters

name
Type: System.String
The name of the attribute.
defaultValue
Type: System.Int64
The default value to write if a feature is missing the attribute.
recordLength
Type: System.Int32
The length of the attribute value field, in bytes.

Remarks

The name parameter should be possible to store in at most 10 bytes using the ShapefileSchema.CodePage. For details, see Name.

If an actual field value does not fit into the specified record length when writing a feature to a Shapefile with ShapefileWriter.WriteFeature, the field will be left blank.

The DBF format stores numerical attributes as strings, so recordLength is the maximal number of characters (digits and a possible minus sign).

ShapefileAttribute(System.String name, Atom defaultValue, System.Int32 recordLength)

Initializes a new instance of the ShapefileAttribute class of type Atom, with the given attribute name, default value and record length.

Syntax

C#
public ShapefileAttribute (
    System.String name,
    Atom defaultValue,
    System.Int32 recordLength
)

Parameters

name
Type: System.String
The name of the attribute.
defaultValue
Type: Atom
The default value to write if a feature is missing the attribute.
recordLength
Type: System.Int32
The length of the attribute value field, in bytes.

Remarks

For an attribute of type Atom, the name parameter, when prefixed with a #, should be possible to store in at most 10 bytes using the ShapefileSchema.CodePage. For details, see Name.

If an actual field value does not fit into the specified record length when writing a feature to a Shapefile with ShapefileWriter.WriteFeature, the field value will be truncated.

ShapefileAttribute(System.String name, System.String defaultValue, System.Int32 recordLength)

Initializes a new instance of the ShapefileAttribute class of type String, with the given attribute name, default value and record length.

Syntax

C#
public ShapefileAttribute (
    System.String name,
    System.String defaultValue,
    System.Int32 recordLength
)

Parameters

name
Type: System.String
The name of the attribute.
defaultValue
Type: System.String
The default value to write if a feature is missing the attribute.
recordLength
Type: System.Int32
The length of the attribute value field, in bytes.

Remarks

The name parameter should not start with a # character, and should be possible to store in at most 10 bytes using the ShapefileSchema.CodePage. For details, see Name.

If an actual field value does not fit into the specified record length when writing a feature to a Shapefile with ShapefileWriter.WriteFeature, the field will be truncated.

ShapefileAttribute(System.String name, System.Double defaultValue, System.Int32 recordLength, System.Int32 precision)

Initializes a new instance of the ShapefileAttribute class of type Double, with the given attribute name, default value, record length and numeric precision.

Syntax

C#
public ShapefileAttribute (
    System.String name,
    System.Double defaultValue,
    System.Int32 recordLength,
    System.Int32 precision
)

Parameters

name
Type: System.String
The name of the attribute.
defaultValue
Type: System.Double
The default value to write if a feature is missing the attribute.
recordLength
Type: System.Int32
The length of the attribute value field, in bytes.
precision
Type: System.Int32
The number of decimals to use.

Remarks

The name parameter should be possible to store in at most 10 bytes using the ShapefileSchema.CodePage. For details, see Name.

If an actual field value does not fit into the specified record length when writing a feature to a Shapefile with ShapefileWriter.WriteFeature, the field will be left blank.

The DBF format stores Double attributes as strings, so recordLength is the maximal number of characters, which can be digits, a minus sign, and a decimal point. When writing, Carmenta will used the fixed-point notation determined by recordLength and precision, but when reading, the scientific E-notation can also be handled, for example 6.022e23.

Platforms

Windows, Linux, Android

By accessing the information on this site you accept our terms and conditions and privacy policy.
This site uses cookies to enhance your experience and provide additional functionality.

Accept