Skip to content

Commit

Permalink
sketch TSR large numbers test for two point pairs
Browse files Browse the repository at this point in the history
  • Loading branch information
axelpale committed Oct 25, 2024
1 parent c98fd1e commit f353906
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions test/estimators/TSR.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -142,4 +142,23 @@ module.exports = (ts) => {

t.end()
})

// Two points, rotation scale, values in peta scale.
// dom = [
// { x: PETA, y: PETA },
// { x: PETA, y: PETA + delta }
// ]
// ran = [
// { x: PETA + delta + delta, y: PETA },
// { x: PETA, y: PETA }
// ]
// t.transformsEqual(
// estimateTSR(dom, ran),
// { a: 0, b: 2, x: delta, y: -delta },
// 'should handle peta-scale coordinates with two point pairs'
// )

// ts.test(title + 'handle numerically tiny coordinates', () => {

// })
}

0 comments on commit f353906

Please sign in to comment.