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
47 lines (45 loc) • 1.07 kB
JavaScript
import WKTWriter from '../io/WKTWriter'
import CoordinateArraySequence from '../geom/impl/CoordinateArraySequence'
import Octant from './Octant'
import SegmentString from './SegmentString'
export default class BasicSegmentString {
constructor () {
this._pts = null
this._data = null
const pts = arguments[0]
const data = arguments[1]
this._pts = pts
this._data = data
}
getCoordinates () {
return this._pts
}
size () {
return this._pts.length
}
getCoordinate (i) {
return this._pts[i]
}
isClosed () {
return this._pts[0].equals(this._pts[this._pts.length - 1])
}
getSegmentOctant (index) {
if (index === this._pts.length - 1) return -1
return Octant.octant(this.getCoordinate(index), this.getCoordinate(index + 1))
}
setData (data) {
this._data = data
}
getData () {
return this._data
}
toString () {
return WKTWriter.toLineString(new CoordinateArraySequence(this._pts))
}
interfaces_ () {
return [SegmentString]
}
getClass () {
return BasicSegmentString
}
}