List of attributes included for this layer.
Property | Type | Description |
---|---|---|
key | string | Represents the attribute key. Key is the same as `id' used in the resource URL to fetch the binary buffers. |
name | string | The attribute name. Must be unique for this layer. |
ordering | string[] | Mapping between attribute to point. Only 1-to-1 is currently supported. Possible values for each array string:
|
encoding | string | Encoding (i.e. compression) for the attribute binary buffer if different from GZIP or no-compression. Possible values are:
|
attributeValues | value | Represents the description for value encoding, for example scalar or vector encoding. |
Note: properties in bold are required
{
"key": "1",
"name": "ELEVATION",
"encoding": "embedded-elevation"
}
{
"key": "4",
"name": "RGB",
"ordering": [
"attributeValues"
],
"attributeValues": {
"valueType": "UInt8",
"valuesPerElement": 3
},
"encoding": "lepcc-rgb"
}
{
"key": "8",
"name": "CLASS_CODE",
"ordering": [
"attributeValues"
],
"attributeValues": {
"valueType": "UInt8",
"valuesPerElement": 1
}
}