Is there a way to extent the Fields of Shapefile Feature Table, such as adding adding a new Column to the table
I only see how to read
val shapeFileTable = ShapefileFeatureTable(shpPath)
shapeFileTable.load().onSuccess {
val fields = shapeFileTable.fields
fields.forEach {
logj(it.name)
}
}.onFailure {
logj(it.toString())
}