-
-
Notifications
You must be signed in to change notification settings - Fork 50
Expand file tree
/
Copy pathopen_hfa.test.js
More file actions
56 lines (47 loc) · 1.86 KB
/
open_hfa.test.js
File metadata and controls
56 lines (47 loc) · 1.86 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
const gdal = require('../lib/gdal.js')
const path = require('path')
const assert = require('chai').assert
describe('Open', () => {
afterEach(gc)
describe('HFA (IMG)', () => {
let filename, ds
it('should not throw', () => {
filename = path.join(__dirname, 'data/dem_azimuth50_pa.img')
ds = gdal.open(filename)
})
it('should be able to read raster size', () => {
assert.equal(ds.rasterSize.x, 495)
assert.equal(ds.rasterSize.y, 286)
assert.equal(ds.bands.count(), 1)
})
it('should be able to read geotransform', () => {
const expected_geotransform = [ -215000, 1000, 0, 365000, 0, -1000 ]
const actual_geotransform = ds.geoTransform
const delta = 0.00001
assert.closeTo(actual_geotransform[0], expected_geotransform[0], delta)
assert.closeTo(actual_geotransform[1], expected_geotransform[1], delta)
assert.closeTo(actual_geotransform[2], expected_geotransform[2], delta)
assert.closeTo(actual_geotransform[3], expected_geotransform[3], delta)
assert.closeTo(actual_geotransform[4], expected_geotransform[4], delta)
assert.closeTo(actual_geotransform[5], expected_geotransform[5], delta)
})
it('should have projection', () => {
assert.match(ds.srs.toWKT(), /PROJCS/)
})
it('should be able to read statistics', () => {
const band = ds.bands.get(1)
const expected_stats = {
min: 177,
max: 182,
mean: 179.90853881836,
std_dev: 0.37681820988655
}
const actual_stats = band.getStatistics(false, true)
const delta = 0.00001
assert.closeTo(actual_stats.min, expected_stats.min, delta)
assert.closeTo(actual_stats.max, expected_stats.max, delta)
assert.closeTo(actual_stats.mean, expected_stats.mean, delta)
assert.closeTo(actual_stats.std_dev, expected_stats.std_dev, delta)
})
})
})