Skip to content

Commit

Permalink
updated
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielJDufour committed Jan 13, 2020
1 parent 48b0356 commit dd2ae81
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
# geotiff-stats
Get Statistics from a Large GeoTIFF without Crashing Your Browser

Get Statistics from a Large GeoTIFF while Using a Low Amount of Memory
# install
`npm install geotiff-stats`

Expand Down
1 change: 1 addition & 0 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ const xpath = require('xpath');
const { getDecoder } = require('geotiff/dist/compression');
const { parseXml } = require('geotiff/dist/globals');

// took this from geotiff package
function sum(array, start, end) {
let s = 0;
for (let i = start; i < end; ++i) {
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "geotiff-stats",
"version": "0.0.0",
"description": "Get Statistics from a Large GeoTIFF without Crashing Your Browser",
"description": "Get Statistics from a Large GeoTIFF while Using a Low Amount of Memory",
"main": "index.js",
"scripts": {
"setup": "cd test/data && bash setup.sh",
Expand Down

0 comments on commit dd2ae81

Please sign in to comment.