forked from naturalatlas/node-gdal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
open_png.test.js
84 lines (71 loc) · 2.33 KB
/
open_png.test.js
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
var gdal = require('../lib/gdal.js');
var path = require('path');
var assert = require('chai').assert;
describe('Open', function() {
afterEach(gc);
describe('PNG', function() {
var filename, ds;
it('should not throw', function() {
filename = path.join(__dirname, 'data/CM13ct.png');
ds = gdal.open(filename);
});
it('should be able to read raster size', function() {
assert.equal(ds.rasterSize.x, 1951);
assert.equal(ds.rasterSize.y, 3109);
assert.equal(ds.bands.count(), 1);
});
it('should be able to read geotransform', function() {
var expected_geotransform = [
674425.2950174398,
10,
0,
6462458.631486551,
0,
-10
];
var actual_geotransform = ds.geoTransform;
var 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 not have projection', function() {
assert.isNull(ds.srs);
});
it('should be able to read statistics', function() {
var band = ds.bands.get(1);
var expected_stats = {
min: 1,
max: 253,
mean: 125.58997597595655,
std_dev: 59.3013235226549
};
var actual_stats = band.getStatistics(false, true);
var 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);
});
it('should be able to read block size', function() {
var band = ds.bands.get(1);
var size = band.blockSize;
assert.equal(size.x, 1951);
assert.equal(size.y, 1);
});
it('should have file list', function() {
var files = [
path.join(__dirname, 'data/CM13ct.png'),
path.join(__dirname, 'data/CM13ct.png.aux.xml'),
path.join(__dirname, 'data/CM13ct.pgw')
];
var actual_files = ds.getFileList();
actual_files.sort();
files.sort();
assert.deepEqual(actual_files, files);
});
});
});