File tree 3 files changed +3
-3
lines changed
3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 1
1
# geotiff-stats
2
- Get Statistics from a Large GeoTIFF without Crashing Your Browser
3
-
2
+ Get Statistics from a Large GeoTIFF while Using a Low Amount of Memory
4
3
# install
5
4
` npm install geotiff-stats `
6
5
Original file line number Diff line number Diff line change @@ -2,6 +2,7 @@ const xpath = require('xpath');
2
2
const { getDecoder } = require ( 'geotiff/dist/compression' ) ;
3
3
const { parseXml } = require ( 'geotiff/dist/globals' ) ;
4
4
5
+ // took this from geotiff package
5
6
function sum ( array , start , end ) {
6
7
let s = 0 ;
7
8
for ( let i = start ; i < end ; ++ i ) {
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " geotiff-stats" ,
3
3
"version" : " 0.0.0" ,
4
- "description" : " Get Statistics from a Large GeoTIFF without Crashing Your Browser " ,
4
+ "description" : " Get Statistics from a Large GeoTIFF while Using a Low Amount of Memory " ,
5
5
"main" : " index.js" ,
6
6
"scripts" : {
7
7
"setup" : " cd test/data && bash setup.sh" ,
You can’t perform that action at this time.
0 commit comments