Skip to content

Commit dd2ae81

Browse files
committed
updated
1 parent 48b0356 commit dd2ae81

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Diff for: README.md

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
# 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
43
# install
54
`npm install geotiff-stats`
65

Diff for: index.js

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ const xpath = require('xpath');
22
const { getDecoder } = require('geotiff/dist/compression');
33
const { parseXml } = require('geotiff/dist/globals');
44

5+
// took this from geotiff package
56
function sum(array, start, end) {
67
let s = 0;
78
for (let i = start; i < end; ++i) {

Diff for: package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "geotiff-stats",
33
"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",
55
"main": "index.js",
66
"scripts": {
77
"setup": "cd test/data && bash setup.sh",

0 commit comments

Comments
 (0)