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
32 lines (30 loc) • 831 B
JavaScript
import IntervalRTreeNode from './IntervalRTreeNode'
export default class IntervalRTreeBranchNode extends IntervalRTreeNode {
constructor () {
super()
this._node1 = null
this._node2 = null
const n1 = arguments[0]
const n2 = arguments[1]
this._node1 = n1
this._node2 = n2
this.buildExtent(this._node1, this._node2)
}
buildExtent (n1, n2) {
this._min = Math.min(n1._min, n2._min)
this._max = Math.max(n1._max, n2._max)
}
query (queryMin, queryMax, visitor) {
if (!this.intersects(queryMin, queryMax)) {
return null
}
if (this._node1 !== null) this._node1.query(queryMin, queryMax, visitor)
if (this._node2 !== null) this._node2.query(queryMin, queryMax, visitor)
}
interfaces_ () {
return []
}
getClass () {
return IntervalRTreeBranchNode
}
}