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
110 lines (109 loc) • 2.97 kB
JavaScript
import CommonBitsOp from './CommonBitsOp'
import RuntimeException from '../../../../java/lang/RuntimeException'
export default class EnhancedPrecisionOp {
static union(geom0, geom1) {
let originalEx = null
try {
const result = geom0.union(geom1)
return result
} catch (ex) {
if (ex instanceof RuntimeException)
originalEx = ex
else throw ex
} finally {}
try {
const cbo = new CommonBitsOp(true)
const resultEP = cbo.union(geom0, geom1)
if (!resultEP.isValid()) throw originalEx
return resultEP
} catch (ex2) {
if (ex2 instanceof RuntimeException)
throw originalEx
else throw ex2
} finally {}
}
static intersection(geom0, geom1) {
let originalEx = null
try {
const result = geom0.intersection(geom1)
return result
} catch (ex) {
if (ex instanceof RuntimeException)
originalEx = ex
else throw ex
} finally {}
try {
const cbo = new CommonBitsOp(true)
const resultEP = cbo.intersection(geom0, geom1)
if (!resultEP.isValid()) throw originalEx
return resultEP
} catch (ex2) {
if (ex2 instanceof RuntimeException)
throw originalEx
else throw ex2
} finally {}
}
static buffer(geom, distance) {
let originalEx = null
try {
const result = geom.buffer(distance)
return result
} catch (ex) {
if (ex instanceof RuntimeException)
originalEx = ex
else throw ex
} finally {}
try {
const cbo = new CommonBitsOp(true)
const resultEP = cbo.buffer(geom, distance)
if (!resultEP.isValid()) throw originalEx
return resultEP
} catch (ex2) {
if (ex2 instanceof RuntimeException)
throw originalEx
else throw ex2
} finally {}
}
static symDifference(geom0, geom1) {
let originalEx = null
try {
const result = geom0.symDifference(geom1)
return result
} catch (ex) {
if (ex instanceof RuntimeException)
originalEx = ex
else throw ex
} finally {}
try {
const cbo = new CommonBitsOp(true)
const resultEP = cbo.symDifference(geom0, geom1)
if (!resultEP.isValid()) throw originalEx
return resultEP
} catch (ex2) {
if (ex2 instanceof RuntimeException)
throw originalEx
else throw ex2
} finally {}
}
static difference(geom0, geom1) {
let originalEx = null
try {
const result = geom0.difference(geom1)
return result
} catch (ex) {
if (ex instanceof RuntimeException)
originalEx = ex
else throw ex
} finally {}
try {
const cbo = new CommonBitsOp(true)
const resultEP = cbo.difference(geom0, geom1)
if (!resultEP.isValid()) throw originalEx
return resultEP
} catch (ex2) {
if (ex2 instanceof RuntimeException)
throw originalEx
else throw ex2
} finally {}
}
}