node-red-contrib-tak-registration
Version:
A Node-RED node to register to TAK and to help wrap files as datapackages to send to TAK
27 lines (25 loc) • 606 B
JavaScript
import Cloneable from '../../../../java/lang/Cloneable'
export default class CoordinateSequence {
static get X () { return 0 }
static get Y () { return 1 }
static get Z () { return 2 }
static get M () { return 3 }
setOrdinate (index, ordinateIndex, value) {}
size () {}
getOrdinate (index, ordinateIndex) {}
getCoordinate () {}
getCoordinateCopy (i) {}
getDimension () {}
getX (index) {}
clone () {}
expandEnvelope (env) {}
copy () {}
getY (index) {}
toCoordinateArray () {}
interfaces_ () {
return [Cloneable]
}
getClass () {
return CoordinateSequence
}
}