diff --git a/lib/geoPackage.ts b/lib/geoPackage.ts index 1a543932..0ce006c1 100644 --- a/lib/geoPackage.ts +++ b/lib/geoPackage.ts @@ -847,7 +847,7 @@ export class GeoPackage { const geometryData = new GeometryData(); geometryData.setSrsId(srs.srs_id); if (!(srs.organization === ProjectionConstants.EPSG && srs.organization_coordsys_id === ProjectionConstants.EPSG_CODE_4326)) { - feature = reproject.reproject(feature, ProjectionConstants.EPSG_4326, featureDao.projection); + // feature = reproject.reproject(feature, ProjectionConstants.EPSG_4326, featureDao.projection); } const featureGeometry = typeof feature.geometry === 'string' ? JSON.parse(feature.geometry) : feature.geometry; diff --git a/package.json b/package.json index b44df13e..1a9e32f7 100644 --- a/package.json +++ b/package.json @@ -111,10 +111,10 @@ }, "scripts": { "gh-pages-build": "npm install && npm run typedoc --options typedoc.json", - "typedoc": "rm -rf ./api-docs; typedoc --tsconfig tsconfig.json --mode file --out api-docs index.ts", - "clean": "rm -rf ./.test_run; rm -rf ./.nyc_output; rm -rf ./docs/coverage; npm run clean-dist; npm run clean-test;", - "clean-dist": "rm -rf ./dist", - "clean-test": "rm -rf ./test/bundle ./test/sql-wasm.wasm ./test/node_modules ./test/tmp", + "typedoc": "rimraf ./docs/api && typedoc --tsconfig tsconfig.json --out docs/api index.ts", + "clean": "rimraf ./.test_run ./.nyc_output ./docs/coverage && npm run clean-dist && npm run clean-test", + "clean-dist": "rimraf ./dist", + "clean-test": "rimraf test/bundle test/sql-wasm.wasm test/node_modules test/tmp", "test-node": "npm run clean; nyc --no-clean mocha -r ts-node/register", "build-browser-test": "npm run clean && webpack -c browser.test.config.js --output-filename browser.test.bundle.js --mode=development", "test": "npm run test-node && npm run report",