├── .github └── workflows │ └── test.yml ├── .gitignore ├── .npmignore ├── .prettierrc ├── doc ├── serve.md ├── tile.md ├── tiling-options.md └── validate.md ├── jest.config.js ├── license ├── package.json ├── readme.md ├── src ├── 3d-tiles │ ├── batch-table │ │ ├── batch-table.test.ts │ │ ├── batch-table.ts │ │ ├── header.ts │ │ └── index.ts │ ├── bounding-volume │ │ ├── box.test.ts │ │ ├── box.ts │ │ ├── index.ts │ │ ├── point.ts │ │ ├── region.test.ts │ │ ├── region.ts │ │ ├── sphere.test.ts │ │ └── sphere.ts │ ├── cache.ts │ ├── feature-table │ │ ├── binary.ts │ │ ├── feature-table.test.ts │ │ ├── feature-table.ts │ │ ├── header.ts │ │ ├── index.ts │ │ ├── rgb.test.ts │ │ ├── rgb.ts │ │ ├── xyz.test.ts │ │ └── xyz.ts │ ├── index.ts │ ├── pnts │ │ ├── constants.ts │ │ ├── header.test.ts │ │ ├── header.ts │ │ ├── index.ts │ │ └── pnts.ts │ ├── server │ │ ├── cors.test.ts │ │ ├── cors.ts │ │ ├── httpx.test.ts │ │ ├── httpx.ts │ │ ├── index.ts │ │ ├── ssl.test.ts │ │ ├── ssl.ts │ │ └── utils.ts │ ├── tileset │ │ ├── constants.ts │ │ ├── index.ts │ │ ├── tile.ts │ │ ├── tileset.test.ts │ │ └── tileset.ts │ ├── translate.test.ts │ ├── translate.ts │ ├── types.ts │ ├── utils.test.ts │ └── utils.ts ├── app │ ├── cli.ts │ ├── index.ts │ ├── lambda.ts │ ├── tile.ts │ ├── upgrade.test.ts │ ├── upgrade.ts │ └── validate.ts ├── ept │ ├── bounds.test.ts │ ├── bounds.ts │ ├── data-type │ │ ├── binary.test.ts │ │ ├── binary.ts │ │ ├── index.test.ts │ │ ├── index.ts │ │ ├── laszip │ │ │ ├── format.ts │ │ │ ├── header.ts │ │ │ ├── index.test.ts │ │ │ └── index.ts │ │ ├── zstandard.test.ts │ │ └── zstandard.ts │ ├── dimension.test.ts │ ├── dimension.ts │ ├── ept.ts │ ├── hierarchy-type.ts │ ├── hierarchy.ts │ ├── index.ts │ ├── key.test.ts │ ├── key.ts │ ├── schema.test.ts │ ├── schema.ts │ ├── source │ │ └── index.ts │ ├── srs.ts │ ├── step.ts │ └── view.ts ├── index.ts ├── lib │ ├── laz-perf.d.ts │ ├── laz-perf.js │ └── laz-perf.wasm ├── test │ ├── data │ │ ├── ellipsoid-bin │ │ │ ├── ept-build.json │ │ │ ├── ept-data │ │ │ │ ├── 0-0-0-0.bin │ │ │ │ ├── 1-0-0-0.bin │ │ │ │ ├── 1-0-0-1.bin │ │ │ │ ├── 1-0-1-0.bin │ │ │ │ ├── 1-0-1-1.bin │ │ │ │ ├── 1-1-0-0.bin │ │ │ │ ├── 1-1-0-1.bin │ │ │ │ ├── 1-1-1-0.bin │ │ │ │ ├── 1-1-1-1.bin │ │ │ │ ├── 2-0-1-1.bin │ │ │ │ ├── 2-0-1-2.bin │ │ │ │ ├── 2-0-2-1.bin │ │ │ │ ├── 2-0-2-2.bin │ │ │ │ ├── 2-1-0-1.bin │ │ │ │ ├── 2-1-1-1.bin │ │ │ │ ├── 2-1-1-2.bin │ │ │ │ ├── 2-1-2-1.bin │ │ │ │ ├── 2-1-2-2.bin │ │ │ │ ├── 2-1-3-1.bin │ │ │ │ ├── 2-2-0-1.bin │ │ │ │ ├── 2-2-1-1.bin │ │ │ │ ├── 2-2-1-2.bin │ │ │ │ ├── 2-2-2-1.bin │ │ │ │ ├── 2-2-2-2.bin │ │ │ │ ├── 2-2-3-1.bin │ │ │ │ ├── 2-3-1-1.bin │ │ │ │ ├── 2-3-1-2.bin │ │ │ │ ├── 2-3-2-1.bin │ │ │ │ ├── 2-3-2-2.bin │ │ │ │ ├── 3-0-3-3.bin │ │ │ │ ├── 3-0-3-4.bin │ │ │ │ ├── 3-0-4-3.bin │ │ │ │ ├── 3-0-4-4.bin │ │ │ │ ├── 3-7-3-3.bin │ │ │ │ ├── 3-7-3-4.bin │ │ │ │ ├── 3-7-4-3.bin │ │ │ │ └── 3-7-4-4.bin │ │ │ ├── ept-hierarchy │ │ │ │ ├── 0-0-0-0.json │ │ │ │ ├── 2-0-1-1.json │ │ │ │ ├── 2-0-1-2.json │ │ │ │ ├── 2-0-2-1.json │ │ │ │ ├── 2-0-2-2.json │ │ │ │ ├── 2-1-0-1.json │ │ │ │ ├── 2-1-1-1.json │ │ │ │ ├── 2-1-1-2.json │ │ │ │ ├── 2-1-2-1.json │ │ │ │ ├── 2-1-2-2.json │ │ │ │ ├── 2-1-3-1.json │ │ │ │ ├── 2-2-0-1.json │ │ │ │ ├── 2-2-1-1.json │ │ │ │ ├── 2-2-1-2.json │ │ │ │ ├── 2-2-2-1.json │ │ │ │ ├── 2-2-2-2.json │ │ │ │ ├── 2-2-3-1.json │ │ │ │ ├── 2-3-1-1.json │ │ │ │ ├── 2-3-1-2.json │ │ │ │ ├── 2-3-2-1.json │ │ │ │ └── 2-3-2-2.json │ │ │ ├── ept-sources │ │ │ │ ├── ellipsoid.json │ │ │ │ └── manifest.json │ │ │ └── ept.json │ │ ├── ellipsoid-laz │ │ │ ├── ept-build.json │ │ │ ├── ept-data │ │ │ │ ├── 0-0-0-0.laz │ │ │ │ ├── 1-0-0-0.laz │ │ │ │ ├── 1-0-0-1.laz │ │ │ │ ├── 1-0-1-0.laz │ │ │ │ ├── 1-0-1-1.laz │ │ │ │ ├── 1-1-0-0.laz │ │ │ │ ├── 1-1-0-1.laz │ │ │ │ ├── 1-1-1-0.laz │ │ │ │ ├── 1-1-1-1.laz │ │ │ │ ├── 2-0-1-1.laz │ │ │ │ ├── 2-0-1-2.laz │ │ │ │ ├── 2-0-2-1.laz │ │ │ │ ├── 2-0-2-2.laz │ │ │ │ ├── 2-1-0-1.laz │ │ │ │ ├── 2-1-1-1.laz │ │ │ │ ├── 2-1-1-2.laz │ │ │ │ ├── 2-1-2-1.laz │ │ │ │ ├── 2-1-2-2.laz │ │ │ │ ├── 2-1-3-1.laz │ │ │ │ ├── 2-2-0-1.laz │ │ │ │ ├── 2-2-1-1.laz │ │ │ │ ├── 2-2-1-2.laz │ │ │ │ ├── 2-2-2-1.laz │ │ │ │ ├── 2-2-2-2.laz │ │ │ │ ├── 2-2-3-1.laz │ │ │ │ ├── 2-3-1-1.laz │ │ │ │ ├── 2-3-1-2.laz │ │ │ │ ├── 2-3-2-1.laz │ │ │ │ ├── 2-3-2-2.laz │ │ │ │ ├── 3-0-3-3.laz │ │ │ │ ├── 3-0-3-4.laz │ │ │ │ ├── 3-0-4-3.laz │ │ │ │ ├── 3-0-4-4.laz │ │ │ │ ├── 3-7-3-3.laz │ │ │ │ ├── 3-7-3-4.laz │ │ │ │ ├── 3-7-4-3.laz │ │ │ │ └── 3-7-4-4.laz │ │ │ ├── ept-hierarchy │ │ │ │ ├── 0-0-0-0.json │ │ │ │ ├── 2-0-1-1.json │ │ │ │ ├── 2-0-1-2.json │ │ │ │ ├── 2-0-2-1.json │ │ │ │ ├── 2-0-2-2.json │ │ │ │ ├── 2-1-0-1.json │ │ │ │ ├── 2-1-1-1.json │ │ │ │ ├── 2-1-1-2.json │ │ │ │ ├── 2-1-2-1.json │ │ │ │ ├── 2-1-2-2.json │ │ │ │ ├── 2-1-3-1.json │ │ │ │ ├── 2-2-0-1.json │ │ │ │ ├── 2-2-1-1.json │ │ │ │ ├── 2-2-1-2.json │ │ │ │ ├── 2-2-2-1.json │ │ │ │ ├── 2-2-2-2.json │ │ │ │ ├── 2-2-3-1.json │ │ │ │ ├── 2-3-1-1.json │ │ │ │ ├── 2-3-1-2.json │ │ │ │ ├── 2-3-2-1.json │ │ │ │ └── 2-3-2-2.json │ │ │ ├── ept-sources │ │ │ │ ├── ellipsoid.json │ │ │ │ └── manifest.json │ │ │ └── ept.json │ │ ├── ellipsoid-zst │ │ │ ├── ept-build.json │ │ │ ├── ept-data │ │ │ │ ├── 0-0-0-0.zst │ │ │ │ ├── 1-0-0-0.zst │ │ │ │ ├── 1-0-0-1.zst │ │ │ │ ├── 1-0-1-0.zst │ │ │ │ ├── 1-0-1-1.zst │ │ │ │ ├── 1-1-0-0.zst │ │ │ │ ├── 1-1-0-1.zst │ │ │ │ ├── 1-1-1-0.zst │ │ │ │ ├── 1-1-1-1.zst │ │ │ │ ├── 2-0-1-1.zst │ │ │ │ ├── 2-0-1-2.zst │ │ │ │ ├── 2-0-2-1.zst │ │ │ │ ├── 2-0-2-2.zst │ │ │ │ ├── 2-1-0-1.zst │ │ │ │ ├── 2-1-1-1.zst │ │ │ │ ├── 2-1-1-2.zst │ │ │ │ ├── 2-1-2-1.zst │ │ │ │ ├── 2-1-2-2.zst │ │ │ │ ├── 2-1-3-1.zst │ │ │ │ ├── 2-2-0-1.zst │ │ │ │ ├── 2-2-1-1.zst │ │ │ │ ├── 2-2-1-2.zst │ │ │ │ ├── 2-2-2-1.zst │ │ │ │ ├── 2-2-2-2.zst │ │ │ │ ├── 2-2-3-1.zst │ │ │ │ ├── 2-3-1-1.zst │ │ │ │ ├── 2-3-1-2.zst │ │ │ │ ├── 2-3-2-1.zst │ │ │ │ ├── 2-3-2-2.zst │ │ │ │ ├── 3-0-3-3.zst │ │ │ │ ├── 3-0-3-4.zst │ │ │ │ ├── 3-0-4-3.zst │ │ │ │ ├── 3-0-4-4.zst │ │ │ │ ├── 3-7-3-3.zst │ │ │ │ ├── 3-7-3-4.zst │ │ │ │ ├── 3-7-4-3.zst │ │ │ │ └── 3-7-4-4.zst │ │ │ ├── ept-hierarchy │ │ │ │ ├── 0-0-0-0.json │ │ │ │ ├── 2-0-1-1.json │ │ │ │ ├── 2-0-1-2.json │ │ │ │ ├── 2-0-2-1.json │ │ │ │ ├── 2-0-2-2.json │ │ │ │ ├── 2-1-0-1.json │ │ │ │ ├── 2-1-1-1.json │ │ │ │ ├── 2-1-1-2.json │ │ │ │ ├── 2-1-2-1.json │ │ │ │ ├── 2-1-2-2.json │ │ │ │ ├── 2-1-3-1.json │ │ │ │ ├── 2-2-0-1.json │ │ │ │ ├── 2-2-1-1.json │ │ │ │ ├── 2-2-1-2.json │ │ │ │ ├── 2-2-2-1.json │ │ │ │ ├── 2-2-2-2.json │ │ │ │ ├── 2-2-3-1.json │ │ │ │ ├── 2-3-1-1.json │ │ │ │ ├── 2-3-1-2.json │ │ │ │ ├── 2-3-2-1.json │ │ │ │ └── 2-3-2-2.json │ │ │ ├── ept-sources │ │ │ │ ├── ellipsoid.json │ │ │ │ └── manifest.json │ │ │ └── ept.json │ │ ├── no-srs-code │ │ │ └── ept.json │ │ ├── v1.0.0 │ │ │ ├── ept-hierarchy │ │ │ │ └── 0-0-0-0.json │ │ │ ├── ept-sources │ │ │ │ ├── 0.json │ │ │ │ └── list.json │ │ │ └── ept.json │ │ ├── v1.1.0 │ │ │ ├── ept-hierarchy │ │ │ │ └── 0-0-0-0.json │ │ │ ├── ept-sources │ │ │ │ ├── USGS_LPC_AL_25_County_Lidar_2017_B17_16R_DV_5769.json │ │ │ │ ├── USGS_LPC_AL_25_County_Lidar_2017_B17_16S_EA_7398.json │ │ │ │ ├── USGS_LPC_AL_25_County_Lidar_2017_B17_16S_EA_8086.json │ │ │ │ ├── USGS_LPC_AL_25_County_Lidar_2017_B17_16S_EA_8088.json │ │ │ │ └── manifest.json │ │ │ └── ept.json │ │ └── vmixed │ │ │ ├── ept-hierarchy │ │ │ └── 0-0-0-0.json │ │ │ ├── ept-sources │ │ │ ├── USGS_LPC_AL_25_County_Lidar_2017_B17_16R_DV_5769.json │ │ │ ├── USGS_LPC_AL_25_County_Lidar_2017_B17_16S_EA_7398.json │ │ │ ├── USGS_LPC_AL_25_County_Lidar_2017_B17_16S_EA_8086.json │ │ │ ├── USGS_LPC_AL_25_County_Lidar_2017_B17_16S_EA_8088.json │ │ │ └── manifest.json │ │ │ └── ept.json │ ├── dummy.ts │ ├── ellipsoid.ts │ ├── index.ts │ ├── pnts.ts │ ├── server.ts │ └── ssl │ │ ├── ca.pem │ │ ├── fake.cert │ │ └── fake.key ├── types │ ├── ctype.ts │ ├── error.ts │ ├── global.d.ts │ ├── index.ts │ └── point.ts └── utils │ ├── bytes.ts │ ├── get.test.ts │ ├── get.ts │ ├── index.ts │ ├── json-schema.test.ts │ ├── json-schema.ts │ ├── pool.test.ts │ ├── pool.ts │ ├── reproject.test.ts │ ├── reproject.ts │ ├── scale.test.ts │ ├── scale.ts │ └── test │ ├── data.json │ └── data.txt ├── tsconfig.build.json ├── tsconfig.json └── yarn.lock /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | * 2 | !package.json 3 | !lib/** 4 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/.prettierrc -------------------------------------------------------------------------------- /doc/serve.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/doc/serve.md -------------------------------------------------------------------------------- /doc/tile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/doc/tile.md -------------------------------------------------------------------------------- /doc/tiling-options.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/doc/tiling-options.md -------------------------------------------------------------------------------- /doc/validate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/doc/validate.md -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/jest.config.js -------------------------------------------------------------------------------- /license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/license -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/package.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/readme.md -------------------------------------------------------------------------------- /src/3d-tiles/batch-table/batch-table.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/3d-tiles/batch-table/batch-table.test.ts -------------------------------------------------------------------------------- /src/3d-tiles/batch-table/batch-table.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/3d-tiles/batch-table/batch-table.ts -------------------------------------------------------------------------------- /src/3d-tiles/batch-table/header.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/3d-tiles/batch-table/header.ts -------------------------------------------------------------------------------- /src/3d-tiles/batch-table/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/3d-tiles/batch-table/index.ts -------------------------------------------------------------------------------- /src/3d-tiles/bounding-volume/box.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/3d-tiles/bounding-volume/box.test.ts -------------------------------------------------------------------------------- /src/3d-tiles/bounding-volume/box.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/3d-tiles/bounding-volume/box.ts -------------------------------------------------------------------------------- /src/3d-tiles/bounding-volume/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/3d-tiles/bounding-volume/index.ts -------------------------------------------------------------------------------- /src/3d-tiles/bounding-volume/point.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/3d-tiles/bounding-volume/point.ts -------------------------------------------------------------------------------- /src/3d-tiles/bounding-volume/region.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/3d-tiles/bounding-volume/region.test.ts -------------------------------------------------------------------------------- /src/3d-tiles/bounding-volume/region.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/3d-tiles/bounding-volume/region.ts -------------------------------------------------------------------------------- /src/3d-tiles/bounding-volume/sphere.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/3d-tiles/bounding-volume/sphere.test.ts -------------------------------------------------------------------------------- /src/3d-tiles/bounding-volume/sphere.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/3d-tiles/bounding-volume/sphere.ts -------------------------------------------------------------------------------- /src/3d-tiles/cache.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/3d-tiles/cache.ts -------------------------------------------------------------------------------- /src/3d-tiles/feature-table/binary.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/3d-tiles/feature-table/binary.ts -------------------------------------------------------------------------------- /src/3d-tiles/feature-table/feature-table.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/3d-tiles/feature-table/feature-table.test.ts -------------------------------------------------------------------------------- /src/3d-tiles/feature-table/feature-table.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/3d-tiles/feature-table/feature-table.ts -------------------------------------------------------------------------------- /src/3d-tiles/feature-table/header.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/3d-tiles/feature-table/header.ts -------------------------------------------------------------------------------- /src/3d-tiles/feature-table/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/3d-tiles/feature-table/index.ts -------------------------------------------------------------------------------- /src/3d-tiles/feature-table/rgb.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/3d-tiles/feature-table/rgb.test.ts -------------------------------------------------------------------------------- /src/3d-tiles/feature-table/rgb.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/3d-tiles/feature-table/rgb.ts -------------------------------------------------------------------------------- /src/3d-tiles/feature-table/xyz.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/3d-tiles/feature-table/xyz.test.ts -------------------------------------------------------------------------------- /src/3d-tiles/feature-table/xyz.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/3d-tiles/feature-table/xyz.ts -------------------------------------------------------------------------------- /src/3d-tiles/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/3d-tiles/index.ts -------------------------------------------------------------------------------- /src/3d-tiles/pnts/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/3d-tiles/pnts/constants.ts -------------------------------------------------------------------------------- /src/3d-tiles/pnts/header.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/3d-tiles/pnts/header.test.ts -------------------------------------------------------------------------------- /src/3d-tiles/pnts/header.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/3d-tiles/pnts/header.ts -------------------------------------------------------------------------------- /src/3d-tiles/pnts/index.ts: -------------------------------------------------------------------------------- 1 | export * as Pnts from './pnts' 2 | -------------------------------------------------------------------------------- /src/3d-tiles/pnts/pnts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/3d-tiles/pnts/pnts.ts -------------------------------------------------------------------------------- /src/3d-tiles/server/cors.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/3d-tiles/server/cors.test.ts -------------------------------------------------------------------------------- /src/3d-tiles/server/cors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/3d-tiles/server/cors.ts -------------------------------------------------------------------------------- /src/3d-tiles/server/httpx.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/3d-tiles/server/httpx.test.ts -------------------------------------------------------------------------------- /src/3d-tiles/server/httpx.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/3d-tiles/server/httpx.ts -------------------------------------------------------------------------------- /src/3d-tiles/server/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/3d-tiles/server/index.ts -------------------------------------------------------------------------------- /src/3d-tiles/server/ssl.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/3d-tiles/server/ssl.test.ts -------------------------------------------------------------------------------- /src/3d-tiles/server/ssl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/3d-tiles/server/ssl.ts -------------------------------------------------------------------------------- /src/3d-tiles/server/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/3d-tiles/server/utils.ts -------------------------------------------------------------------------------- /src/3d-tiles/tileset/constants.ts: -------------------------------------------------------------------------------- 1 | export const geometricErrorDivisor = 16 2 | -------------------------------------------------------------------------------- /src/3d-tiles/tileset/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/3d-tiles/tileset/index.ts -------------------------------------------------------------------------------- /src/3d-tiles/tileset/tile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/3d-tiles/tileset/tile.ts -------------------------------------------------------------------------------- /src/3d-tiles/tileset/tileset.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/3d-tiles/tileset/tileset.test.ts -------------------------------------------------------------------------------- /src/3d-tiles/tileset/tileset.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/3d-tiles/tileset/tileset.ts -------------------------------------------------------------------------------- /src/3d-tiles/translate.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/3d-tiles/translate.test.ts -------------------------------------------------------------------------------- /src/3d-tiles/translate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/3d-tiles/translate.ts -------------------------------------------------------------------------------- /src/3d-tiles/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/3d-tiles/types.ts -------------------------------------------------------------------------------- /src/3d-tiles/utils.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/3d-tiles/utils.test.ts -------------------------------------------------------------------------------- /src/3d-tiles/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/3d-tiles/utils.ts -------------------------------------------------------------------------------- /src/app/cli.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/app/cli.ts -------------------------------------------------------------------------------- /src/app/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/app/index.ts -------------------------------------------------------------------------------- /src/app/lambda.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/app/lambda.ts -------------------------------------------------------------------------------- /src/app/tile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/app/tile.ts -------------------------------------------------------------------------------- /src/app/upgrade.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/app/upgrade.test.ts -------------------------------------------------------------------------------- /src/app/upgrade.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/app/upgrade.ts -------------------------------------------------------------------------------- /src/app/validate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/app/validate.ts -------------------------------------------------------------------------------- /src/ept/bounds.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/ept/bounds.test.ts -------------------------------------------------------------------------------- /src/ept/bounds.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/ept/bounds.ts -------------------------------------------------------------------------------- /src/ept/data-type/binary.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/ept/data-type/binary.test.ts -------------------------------------------------------------------------------- /src/ept/data-type/binary.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/ept/data-type/binary.ts -------------------------------------------------------------------------------- /src/ept/data-type/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/ept/data-type/index.test.ts -------------------------------------------------------------------------------- /src/ept/data-type/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/ept/data-type/index.ts -------------------------------------------------------------------------------- /src/ept/data-type/laszip/format.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/ept/data-type/laszip/format.ts -------------------------------------------------------------------------------- /src/ept/data-type/laszip/header.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/ept/data-type/laszip/header.ts -------------------------------------------------------------------------------- /src/ept/data-type/laszip/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/ept/data-type/laszip/index.test.ts -------------------------------------------------------------------------------- /src/ept/data-type/laszip/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/ept/data-type/laszip/index.ts -------------------------------------------------------------------------------- /src/ept/data-type/zstandard.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/ept/data-type/zstandard.test.ts -------------------------------------------------------------------------------- /src/ept/data-type/zstandard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/ept/data-type/zstandard.ts -------------------------------------------------------------------------------- /src/ept/dimension.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/ept/dimension.test.ts -------------------------------------------------------------------------------- /src/ept/dimension.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/ept/dimension.ts -------------------------------------------------------------------------------- /src/ept/ept.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/ept/ept.ts -------------------------------------------------------------------------------- /src/ept/hierarchy-type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/ept/hierarchy-type.ts -------------------------------------------------------------------------------- /src/ept/hierarchy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/ept/hierarchy.ts -------------------------------------------------------------------------------- /src/ept/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/ept/index.ts -------------------------------------------------------------------------------- /src/ept/key.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/ept/key.test.ts -------------------------------------------------------------------------------- /src/ept/key.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/ept/key.ts -------------------------------------------------------------------------------- /src/ept/schema.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/ept/schema.test.ts -------------------------------------------------------------------------------- /src/ept/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/ept/schema.ts -------------------------------------------------------------------------------- /src/ept/source/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/ept/source/index.ts -------------------------------------------------------------------------------- /src/ept/srs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/ept/srs.ts -------------------------------------------------------------------------------- /src/ept/step.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/ept/step.ts -------------------------------------------------------------------------------- /src/ept/view.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/ept/view.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/lib/laz-perf.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/lib/laz-perf.d.ts -------------------------------------------------------------------------------- /src/lib/laz-perf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/lib/laz-perf.js -------------------------------------------------------------------------------- /src/lib/laz-perf.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/lib/laz-perf.wasm -------------------------------------------------------------------------------- /src/test/data/ellipsoid-bin/ept-build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/test/data/ellipsoid-bin/ept-build.json -------------------------------------------------------------------------------- /src/test/data/ellipsoid-bin/ept-data/0-0-0-0.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/test/data/ellipsoid-bin/ept-data/0-0-0-0.bin -------------------------------------------------------------------------------- /src/test/data/ellipsoid-bin/ept-data/1-0-0-0.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/test/data/ellipsoid-bin/ept-data/1-0-0-0.bin -------------------------------------------------------------------------------- /src/test/data/ellipsoid-bin/ept-data/1-0-0-1.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/test/data/ellipsoid-bin/ept-data/1-0-0-1.bin -------------------------------------------------------------------------------- /src/test/data/ellipsoid-bin/ept-data/1-0-1-0.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/test/data/ellipsoid-bin/ept-data/1-0-1-0.bin -------------------------------------------------------------------------------- /src/test/data/ellipsoid-bin/ept-data/1-0-1-1.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/test/data/ellipsoid-bin/ept-data/1-0-1-1.bin -------------------------------------------------------------------------------- /src/test/data/ellipsoid-bin/ept-data/1-1-0-0.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/test/data/ellipsoid-bin/ept-data/1-1-0-0.bin -------------------------------------------------------------------------------- /src/test/data/ellipsoid-bin/ept-data/1-1-0-1.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/test/data/ellipsoid-bin/ept-data/1-1-0-1.bin -------------------------------------------------------------------------------- /src/test/data/ellipsoid-bin/ept-data/1-1-1-0.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/test/data/ellipsoid-bin/ept-data/1-1-1-0.bin -------------------------------------------------------------------------------- /src/test/data/ellipsoid-bin/ept-data/1-1-1-1.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/test/data/ellipsoid-bin/ept-data/1-1-1-1.bin -------------------------------------------------------------------------------- /src/test/data/ellipsoid-bin/ept-data/2-0-1-1.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/test/data/ellipsoid-bin/ept-data/2-0-1-1.bin -------------------------------------------------------------------------------- /src/test/data/ellipsoid-bin/ept-data/2-0-1-2.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/test/data/ellipsoid-bin/ept-data/2-0-1-2.bin -------------------------------------------------------------------------------- /src/test/data/ellipsoid-bin/ept-data/2-0-2-1.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/test/data/ellipsoid-bin/ept-data/2-0-2-1.bin -------------------------------------------------------------------------------- /src/test/data/ellipsoid-bin/ept-data/2-0-2-2.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/test/data/ellipsoid-bin/ept-data/2-0-2-2.bin -------------------------------------------------------------------------------- /src/test/data/ellipsoid-bin/ept-data/2-1-0-1.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/test/data/ellipsoid-bin/ept-data/2-1-0-1.bin -------------------------------------------------------------------------------- /src/test/data/ellipsoid-bin/ept-data/2-1-1-1.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/test/data/ellipsoid-bin/ept-data/2-1-1-1.bin -------------------------------------------------------------------------------- /src/test/data/ellipsoid-bin/ept-data/2-1-1-2.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/test/data/ellipsoid-bin/ept-data/2-1-1-2.bin -------------------------------------------------------------------------------- /src/test/data/ellipsoid-bin/ept-data/2-1-2-1.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/test/data/ellipsoid-bin/ept-data/2-1-2-1.bin -------------------------------------------------------------------------------- /src/test/data/ellipsoid-bin/ept-data/2-1-2-2.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/test/data/ellipsoid-bin/ept-data/2-1-2-2.bin -------------------------------------------------------------------------------- /src/test/data/ellipsoid-bin/ept-data/2-1-3-1.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/test/data/ellipsoid-bin/ept-data/2-1-3-1.bin -------------------------------------------------------------------------------- /src/test/data/ellipsoid-bin/ept-data/2-2-0-1.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/test/data/ellipsoid-bin/ept-data/2-2-0-1.bin -------------------------------------------------------------------------------- /src/test/data/ellipsoid-bin/ept-data/2-2-1-1.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/test/data/ellipsoid-bin/ept-data/2-2-1-1.bin -------------------------------------------------------------------------------- /src/test/data/ellipsoid-bin/ept-data/2-2-1-2.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/test/data/ellipsoid-bin/ept-data/2-2-1-2.bin -------------------------------------------------------------------------------- /src/test/data/ellipsoid-bin/ept-data/2-2-2-1.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/test/data/ellipsoid-bin/ept-data/2-2-2-1.bin -------------------------------------------------------------------------------- /src/test/data/ellipsoid-bin/ept-data/2-2-2-2.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/test/data/ellipsoid-bin/ept-data/2-2-2-2.bin -------------------------------------------------------------------------------- /src/test/data/ellipsoid-bin/ept-data/2-2-3-1.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/test/data/ellipsoid-bin/ept-data/2-2-3-1.bin -------------------------------------------------------------------------------- /src/test/data/ellipsoid-bin/ept-data/2-3-1-1.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/test/data/ellipsoid-bin/ept-data/2-3-1-1.bin -------------------------------------------------------------------------------- /src/test/data/ellipsoid-bin/ept-data/2-3-1-2.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/test/data/ellipsoid-bin/ept-data/2-3-1-2.bin -------------------------------------------------------------------------------- /src/test/data/ellipsoid-bin/ept-data/2-3-2-1.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/test/data/ellipsoid-bin/ept-data/2-3-2-1.bin -------------------------------------------------------------------------------- /src/test/data/ellipsoid-bin/ept-data/2-3-2-2.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/test/data/ellipsoid-bin/ept-data/2-3-2-2.bin -------------------------------------------------------------------------------- /src/test/data/ellipsoid-bin/ept-data/3-0-3-3.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/test/data/ellipsoid-bin/ept-data/3-0-3-3.bin -------------------------------------------------------------------------------- /src/test/data/ellipsoid-bin/ept-data/3-0-3-4.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/test/data/ellipsoid-bin/ept-data/3-0-3-4.bin -------------------------------------------------------------------------------- /src/test/data/ellipsoid-bin/ept-data/3-0-4-3.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/test/data/ellipsoid-bin/ept-data/3-0-4-3.bin -------------------------------------------------------------------------------- /src/test/data/ellipsoid-bin/ept-data/3-0-4-4.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/test/data/ellipsoid-bin/ept-data/3-0-4-4.bin -------------------------------------------------------------------------------- /src/test/data/ellipsoid-bin/ept-data/3-7-3-3.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/test/data/ellipsoid-bin/ept-data/3-7-3-3.bin -------------------------------------------------------------------------------- /src/test/data/ellipsoid-bin/ept-data/3-7-3-4.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/test/data/ellipsoid-bin/ept-data/3-7-3-4.bin -------------------------------------------------------------------------------- /src/test/data/ellipsoid-bin/ept-data/3-7-4-3.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/test/data/ellipsoid-bin/ept-data/3-7-4-3.bin -------------------------------------------------------------------------------- /src/test/data/ellipsoid-bin/ept-data/3-7-4-4.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/test/data/ellipsoid-bin/ept-data/3-7-4-4.bin -------------------------------------------------------------------------------- /src/test/data/ellipsoid-bin/ept-hierarchy/0-0-0-0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/test/data/ellipsoid-bin/ept-hierarchy/0-0-0-0.json -------------------------------------------------------------------------------- /src/test/data/ellipsoid-bin/ept-hierarchy/2-0-1-1.json: -------------------------------------------------------------------------------- 1 | {"2-0-1-1":3779,"3-0-3-3":1494} -------------------------------------------------------------------------------- /src/test/data/ellipsoid-bin/ept-hierarchy/2-0-1-2.json: -------------------------------------------------------------------------------- 1 | {"2-0-1-2":3779,"3-0-3-4":1494} -------------------------------------------------------------------------------- /src/test/data/ellipsoid-bin/ept-hierarchy/2-0-2-1.json: -------------------------------------------------------------------------------- 1 | {"2-0-2-1":3795,"3-0-4-3":1526} -------------------------------------------------------------------------------- /src/test/data/ellipsoid-bin/ept-hierarchy/2-0-2-2.json: -------------------------------------------------------------------------------- 1 | {"2-0-2-2":3795,"3-0-4-4":1527} -------------------------------------------------------------------------------- /src/test/data/ellipsoid-bin/ept-hierarchy/2-1-0-1.json: -------------------------------------------------------------------------------- 1 | {"2-1-0-1":2398} -------------------------------------------------------------------------------- /src/test/data/ellipsoid-bin/ept-hierarchy/2-1-1-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/test/data/ellipsoid-bin/ept-hierarchy/2-1-1-1.json -------------------------------------------------------------------------------- /src/test/data/ellipsoid-bin/ept-hierarchy/2-1-1-2.json: -------------------------------------------------------------------------------- 1 | {"2-1-1-2":3229} -------------------------------------------------------------------------------- /src/test/data/ellipsoid-bin/ept-hierarchy/2-1-2-1.json: -------------------------------------------------------------------------------- 1 | {"2-1-2-1":3257} -------------------------------------------------------------------------------- /src/test/data/ellipsoid-bin/ept-hierarchy/2-1-2-2.json: -------------------------------------------------------------------------------- 1 | {"2-1-2-2":3257} -------------------------------------------------------------------------------- /src/test/data/ellipsoid-bin/ept-hierarchy/2-1-3-1.json: -------------------------------------------------------------------------------- 1 | {"2-1-3-1":2399} -------------------------------------------------------------------------------- /src/test/data/ellipsoid-bin/ept-hierarchy/2-2-0-1.json: -------------------------------------------------------------------------------- 1 | {"2-2-0-1":2424} -------------------------------------------------------------------------------- /src/test/data/ellipsoid-bin/ept-hierarchy/2-2-1-1.json: -------------------------------------------------------------------------------- 1 | {"2-2-1-1":3247} -------------------------------------------------------------------------------- /src/test/data/ellipsoid-bin/ept-hierarchy/2-2-1-2.json: -------------------------------------------------------------------------------- 1 | {"2-2-1-2":3247} -------------------------------------------------------------------------------- /src/test/data/ellipsoid-bin/ept-hierarchy/2-2-2-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/test/data/ellipsoid-bin/ept-hierarchy/2-2-2-1.json -------------------------------------------------------------------------------- /src/test/data/ellipsoid-bin/ept-hierarchy/2-2-2-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/test/data/ellipsoid-bin/ept-hierarchy/2-2-2-2.json -------------------------------------------------------------------------------- /src/test/data/ellipsoid-bin/ept-hierarchy/2-2-3-1.json: -------------------------------------------------------------------------------- 1 | {"2-2-3-1":2425} -------------------------------------------------------------------------------- /src/test/data/ellipsoid-bin/ept-hierarchy/2-3-1-1.json: -------------------------------------------------------------------------------- 1 | {"2-3-1-1":3790,"3-7-3-3":1468} -------------------------------------------------------------------------------- /src/test/data/ellipsoid-bin/ept-hierarchy/2-3-1-2.json: -------------------------------------------------------------------------------- 1 | {"2-3-1-2":3790,"3-7-3-4":1468} -------------------------------------------------------------------------------- /src/test/data/ellipsoid-bin/ept-hierarchy/2-3-2-1.json: -------------------------------------------------------------------------------- 1 | {"2-3-2-1":3816,"3-7-4-3":1532} -------------------------------------------------------------------------------- /src/test/data/ellipsoid-bin/ept-hierarchy/2-3-2-2.json: -------------------------------------------------------------------------------- 1 | {"2-3-2-2":3816,"3-7-4-4":1533} -------------------------------------------------------------------------------- /src/test/data/ellipsoid-bin/ept-sources/ellipsoid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/test/data/ellipsoid-bin/ept-sources/ellipsoid.json -------------------------------------------------------------------------------- /src/test/data/ellipsoid-bin/ept-sources/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/test/data/ellipsoid-bin/ept-sources/manifest.json -------------------------------------------------------------------------------- /src/test/data/ellipsoid-bin/ept.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/test/data/ellipsoid-bin/ept.json -------------------------------------------------------------------------------- /src/test/data/ellipsoid-laz/ept-build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/test/data/ellipsoid-laz/ept-build.json -------------------------------------------------------------------------------- /src/test/data/ellipsoid-laz/ept-data/0-0-0-0.laz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/test/data/ellipsoid-laz/ept-data/0-0-0-0.laz -------------------------------------------------------------------------------- /src/test/data/ellipsoid-laz/ept-data/1-0-0-0.laz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/test/data/ellipsoid-laz/ept-data/1-0-0-0.laz -------------------------------------------------------------------------------- /src/test/data/ellipsoid-laz/ept-data/1-0-0-1.laz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/test/data/ellipsoid-laz/ept-data/1-0-0-1.laz -------------------------------------------------------------------------------- /src/test/data/ellipsoid-laz/ept-data/1-0-1-0.laz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/test/data/ellipsoid-laz/ept-data/1-0-1-0.laz -------------------------------------------------------------------------------- /src/test/data/ellipsoid-laz/ept-data/1-0-1-1.laz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/test/data/ellipsoid-laz/ept-data/1-0-1-1.laz -------------------------------------------------------------------------------- /src/test/data/ellipsoid-laz/ept-data/1-1-0-0.laz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/test/data/ellipsoid-laz/ept-data/1-1-0-0.laz -------------------------------------------------------------------------------- /src/test/data/ellipsoid-laz/ept-data/1-1-0-1.laz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/test/data/ellipsoid-laz/ept-data/1-1-0-1.laz -------------------------------------------------------------------------------- /src/test/data/ellipsoid-laz/ept-data/1-1-1-0.laz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/test/data/ellipsoid-laz/ept-data/1-1-1-0.laz -------------------------------------------------------------------------------- /src/test/data/ellipsoid-laz/ept-data/1-1-1-1.laz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/test/data/ellipsoid-laz/ept-data/1-1-1-1.laz -------------------------------------------------------------------------------- /src/test/data/ellipsoid-laz/ept-data/2-0-1-1.laz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/test/data/ellipsoid-laz/ept-data/2-0-1-1.laz -------------------------------------------------------------------------------- /src/test/data/ellipsoid-laz/ept-data/2-0-1-2.laz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/test/data/ellipsoid-laz/ept-data/2-0-1-2.laz -------------------------------------------------------------------------------- /src/test/data/ellipsoid-laz/ept-data/2-0-2-1.laz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/test/data/ellipsoid-laz/ept-data/2-0-2-1.laz -------------------------------------------------------------------------------- /src/test/data/ellipsoid-laz/ept-data/2-0-2-2.laz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/test/data/ellipsoid-laz/ept-data/2-0-2-2.laz -------------------------------------------------------------------------------- /src/test/data/ellipsoid-laz/ept-data/2-1-0-1.laz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/test/data/ellipsoid-laz/ept-data/2-1-0-1.laz -------------------------------------------------------------------------------- /src/test/data/ellipsoid-laz/ept-data/2-1-1-1.laz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/test/data/ellipsoid-laz/ept-data/2-1-1-1.laz -------------------------------------------------------------------------------- /src/test/data/ellipsoid-laz/ept-data/2-1-1-2.laz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/test/data/ellipsoid-laz/ept-data/2-1-1-2.laz -------------------------------------------------------------------------------- /src/test/data/ellipsoid-laz/ept-data/2-1-2-1.laz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/test/data/ellipsoid-laz/ept-data/2-1-2-1.laz -------------------------------------------------------------------------------- /src/test/data/ellipsoid-laz/ept-data/2-1-2-2.laz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/test/data/ellipsoid-laz/ept-data/2-1-2-2.laz -------------------------------------------------------------------------------- /src/test/data/ellipsoid-laz/ept-data/2-1-3-1.laz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/test/data/ellipsoid-laz/ept-data/2-1-3-1.laz -------------------------------------------------------------------------------- /src/test/data/ellipsoid-laz/ept-data/2-2-0-1.laz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/test/data/ellipsoid-laz/ept-data/2-2-0-1.laz -------------------------------------------------------------------------------- /src/test/data/ellipsoid-laz/ept-data/2-2-1-1.laz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/test/data/ellipsoid-laz/ept-data/2-2-1-1.laz -------------------------------------------------------------------------------- /src/test/data/ellipsoid-laz/ept-data/2-2-1-2.laz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/test/data/ellipsoid-laz/ept-data/2-2-1-2.laz -------------------------------------------------------------------------------- /src/test/data/ellipsoid-laz/ept-data/2-2-2-1.laz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/test/data/ellipsoid-laz/ept-data/2-2-2-1.laz -------------------------------------------------------------------------------- /src/test/data/ellipsoid-laz/ept-data/2-2-2-2.laz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/test/data/ellipsoid-laz/ept-data/2-2-2-2.laz -------------------------------------------------------------------------------- /src/test/data/ellipsoid-laz/ept-data/2-2-3-1.laz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/test/data/ellipsoid-laz/ept-data/2-2-3-1.laz -------------------------------------------------------------------------------- /src/test/data/ellipsoid-laz/ept-data/2-3-1-1.laz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/test/data/ellipsoid-laz/ept-data/2-3-1-1.laz -------------------------------------------------------------------------------- /src/test/data/ellipsoid-laz/ept-data/2-3-1-2.laz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/test/data/ellipsoid-laz/ept-data/2-3-1-2.laz -------------------------------------------------------------------------------- /src/test/data/ellipsoid-laz/ept-data/2-3-2-1.laz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/test/data/ellipsoid-laz/ept-data/2-3-2-1.laz -------------------------------------------------------------------------------- /src/test/data/ellipsoid-laz/ept-data/2-3-2-2.laz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/test/data/ellipsoid-laz/ept-data/2-3-2-2.laz -------------------------------------------------------------------------------- /src/test/data/ellipsoid-laz/ept-data/3-0-3-3.laz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/test/data/ellipsoid-laz/ept-data/3-0-3-3.laz -------------------------------------------------------------------------------- /src/test/data/ellipsoid-laz/ept-data/3-0-3-4.laz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/test/data/ellipsoid-laz/ept-data/3-0-3-4.laz -------------------------------------------------------------------------------- /src/test/data/ellipsoid-laz/ept-data/3-0-4-3.laz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/test/data/ellipsoid-laz/ept-data/3-0-4-3.laz -------------------------------------------------------------------------------- /src/test/data/ellipsoid-laz/ept-data/3-0-4-4.laz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/test/data/ellipsoid-laz/ept-data/3-0-4-4.laz -------------------------------------------------------------------------------- /src/test/data/ellipsoid-laz/ept-data/3-7-3-3.laz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/test/data/ellipsoid-laz/ept-data/3-7-3-3.laz -------------------------------------------------------------------------------- /src/test/data/ellipsoid-laz/ept-data/3-7-3-4.laz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/test/data/ellipsoid-laz/ept-data/3-7-3-4.laz -------------------------------------------------------------------------------- /src/test/data/ellipsoid-laz/ept-data/3-7-4-3.laz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/test/data/ellipsoid-laz/ept-data/3-7-4-3.laz -------------------------------------------------------------------------------- /src/test/data/ellipsoid-laz/ept-data/3-7-4-4.laz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/test/data/ellipsoid-laz/ept-data/3-7-4-4.laz -------------------------------------------------------------------------------- /src/test/data/ellipsoid-laz/ept-hierarchy/0-0-0-0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/test/data/ellipsoid-laz/ept-hierarchy/0-0-0-0.json -------------------------------------------------------------------------------- /src/test/data/ellipsoid-laz/ept-hierarchy/2-0-1-1.json: -------------------------------------------------------------------------------- 1 | {"2-0-1-1":3779,"3-0-3-3":1494} -------------------------------------------------------------------------------- /src/test/data/ellipsoid-laz/ept-hierarchy/2-0-1-2.json: -------------------------------------------------------------------------------- 1 | {"2-0-1-2":3779,"3-0-3-4":1494} -------------------------------------------------------------------------------- /src/test/data/ellipsoid-laz/ept-hierarchy/2-0-2-1.json: -------------------------------------------------------------------------------- 1 | {"2-0-2-1":3795,"3-0-4-3":1526} -------------------------------------------------------------------------------- /src/test/data/ellipsoid-laz/ept-hierarchy/2-0-2-2.json: -------------------------------------------------------------------------------- 1 | {"2-0-2-2":3795,"3-0-4-4":1527} -------------------------------------------------------------------------------- /src/test/data/ellipsoid-laz/ept-hierarchy/2-1-0-1.json: -------------------------------------------------------------------------------- 1 | {"2-1-0-1":2398} -------------------------------------------------------------------------------- /src/test/data/ellipsoid-laz/ept-hierarchy/2-1-1-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/test/data/ellipsoid-laz/ept-hierarchy/2-1-1-1.json -------------------------------------------------------------------------------- /src/test/data/ellipsoid-laz/ept-hierarchy/2-1-1-2.json: -------------------------------------------------------------------------------- 1 | {"2-1-1-2":3229} -------------------------------------------------------------------------------- /src/test/data/ellipsoid-laz/ept-hierarchy/2-1-2-1.json: -------------------------------------------------------------------------------- 1 | {"2-1-2-1":3257} -------------------------------------------------------------------------------- /src/test/data/ellipsoid-laz/ept-hierarchy/2-1-2-2.json: -------------------------------------------------------------------------------- 1 | {"2-1-2-2":3257} -------------------------------------------------------------------------------- /src/test/data/ellipsoid-laz/ept-hierarchy/2-1-3-1.json: -------------------------------------------------------------------------------- 1 | {"2-1-3-1":2399} -------------------------------------------------------------------------------- /src/test/data/ellipsoid-laz/ept-hierarchy/2-2-0-1.json: -------------------------------------------------------------------------------- 1 | {"2-2-0-1":2424} -------------------------------------------------------------------------------- /src/test/data/ellipsoid-laz/ept-hierarchy/2-2-1-1.json: -------------------------------------------------------------------------------- 1 | {"2-2-1-1":3247} -------------------------------------------------------------------------------- /src/test/data/ellipsoid-laz/ept-hierarchy/2-2-1-2.json: -------------------------------------------------------------------------------- 1 | {"2-2-1-2":3247} -------------------------------------------------------------------------------- /src/test/data/ellipsoid-laz/ept-hierarchy/2-2-2-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/test/data/ellipsoid-laz/ept-hierarchy/2-2-2-1.json -------------------------------------------------------------------------------- /src/test/data/ellipsoid-laz/ept-hierarchy/2-2-2-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/test/data/ellipsoid-laz/ept-hierarchy/2-2-2-2.json -------------------------------------------------------------------------------- /src/test/data/ellipsoid-laz/ept-hierarchy/2-2-3-1.json: -------------------------------------------------------------------------------- 1 | {"2-2-3-1":2425} -------------------------------------------------------------------------------- /src/test/data/ellipsoid-laz/ept-hierarchy/2-3-1-1.json: -------------------------------------------------------------------------------- 1 | {"2-3-1-1":3790,"3-7-3-3":1468} -------------------------------------------------------------------------------- /src/test/data/ellipsoid-laz/ept-hierarchy/2-3-1-2.json: -------------------------------------------------------------------------------- 1 | {"2-3-1-2":3790,"3-7-3-4":1468} -------------------------------------------------------------------------------- /src/test/data/ellipsoid-laz/ept-hierarchy/2-3-2-1.json: -------------------------------------------------------------------------------- 1 | {"2-3-2-1":3816,"3-7-4-3":1532} -------------------------------------------------------------------------------- /src/test/data/ellipsoid-laz/ept-hierarchy/2-3-2-2.json: -------------------------------------------------------------------------------- 1 | {"2-3-2-2":3816,"3-7-4-4":1533} -------------------------------------------------------------------------------- /src/test/data/ellipsoid-laz/ept-sources/ellipsoid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/test/data/ellipsoid-laz/ept-sources/ellipsoid.json -------------------------------------------------------------------------------- /src/test/data/ellipsoid-laz/ept-sources/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/test/data/ellipsoid-laz/ept-sources/manifest.json -------------------------------------------------------------------------------- /src/test/data/ellipsoid-laz/ept.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/test/data/ellipsoid-laz/ept.json -------------------------------------------------------------------------------- /src/test/data/ellipsoid-zst/ept-build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/test/data/ellipsoid-zst/ept-build.json -------------------------------------------------------------------------------- /src/test/data/ellipsoid-zst/ept-data/0-0-0-0.zst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/test/data/ellipsoid-zst/ept-data/0-0-0-0.zst -------------------------------------------------------------------------------- /src/test/data/ellipsoid-zst/ept-data/1-0-0-0.zst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/test/data/ellipsoid-zst/ept-data/1-0-0-0.zst -------------------------------------------------------------------------------- /src/test/data/ellipsoid-zst/ept-data/1-0-0-1.zst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/test/data/ellipsoid-zst/ept-data/1-0-0-1.zst -------------------------------------------------------------------------------- /src/test/data/ellipsoid-zst/ept-data/1-0-1-0.zst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/test/data/ellipsoid-zst/ept-data/1-0-1-0.zst -------------------------------------------------------------------------------- /src/test/data/ellipsoid-zst/ept-data/1-0-1-1.zst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/test/data/ellipsoid-zst/ept-data/1-0-1-1.zst -------------------------------------------------------------------------------- /src/test/data/ellipsoid-zst/ept-data/1-1-0-0.zst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/test/data/ellipsoid-zst/ept-data/1-1-0-0.zst -------------------------------------------------------------------------------- /src/test/data/ellipsoid-zst/ept-data/1-1-0-1.zst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/test/data/ellipsoid-zst/ept-data/1-1-0-1.zst -------------------------------------------------------------------------------- /src/test/data/ellipsoid-zst/ept-data/1-1-1-0.zst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/test/data/ellipsoid-zst/ept-data/1-1-1-0.zst -------------------------------------------------------------------------------- /src/test/data/ellipsoid-zst/ept-data/1-1-1-1.zst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/test/data/ellipsoid-zst/ept-data/1-1-1-1.zst -------------------------------------------------------------------------------- /src/test/data/ellipsoid-zst/ept-data/2-0-1-1.zst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/test/data/ellipsoid-zst/ept-data/2-0-1-1.zst -------------------------------------------------------------------------------- /src/test/data/ellipsoid-zst/ept-data/2-0-1-2.zst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/test/data/ellipsoid-zst/ept-data/2-0-1-2.zst -------------------------------------------------------------------------------- /src/test/data/ellipsoid-zst/ept-data/2-0-2-1.zst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/test/data/ellipsoid-zst/ept-data/2-0-2-1.zst -------------------------------------------------------------------------------- /src/test/data/ellipsoid-zst/ept-data/2-0-2-2.zst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/test/data/ellipsoid-zst/ept-data/2-0-2-2.zst -------------------------------------------------------------------------------- /src/test/data/ellipsoid-zst/ept-data/2-1-0-1.zst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/test/data/ellipsoid-zst/ept-data/2-1-0-1.zst -------------------------------------------------------------------------------- /src/test/data/ellipsoid-zst/ept-data/2-1-1-1.zst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/test/data/ellipsoid-zst/ept-data/2-1-1-1.zst -------------------------------------------------------------------------------- /src/test/data/ellipsoid-zst/ept-data/2-1-1-2.zst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/test/data/ellipsoid-zst/ept-data/2-1-1-2.zst -------------------------------------------------------------------------------- /src/test/data/ellipsoid-zst/ept-data/2-1-2-1.zst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/test/data/ellipsoid-zst/ept-data/2-1-2-1.zst -------------------------------------------------------------------------------- /src/test/data/ellipsoid-zst/ept-data/2-1-2-2.zst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/test/data/ellipsoid-zst/ept-data/2-1-2-2.zst -------------------------------------------------------------------------------- /src/test/data/ellipsoid-zst/ept-data/2-1-3-1.zst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/test/data/ellipsoid-zst/ept-data/2-1-3-1.zst -------------------------------------------------------------------------------- /src/test/data/ellipsoid-zst/ept-data/2-2-0-1.zst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/test/data/ellipsoid-zst/ept-data/2-2-0-1.zst -------------------------------------------------------------------------------- /src/test/data/ellipsoid-zst/ept-data/2-2-1-1.zst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/test/data/ellipsoid-zst/ept-data/2-2-1-1.zst -------------------------------------------------------------------------------- /src/test/data/ellipsoid-zst/ept-data/2-2-1-2.zst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/test/data/ellipsoid-zst/ept-data/2-2-1-2.zst -------------------------------------------------------------------------------- /src/test/data/ellipsoid-zst/ept-data/2-2-2-1.zst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/test/data/ellipsoid-zst/ept-data/2-2-2-1.zst -------------------------------------------------------------------------------- /src/test/data/ellipsoid-zst/ept-data/2-2-2-2.zst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/test/data/ellipsoid-zst/ept-data/2-2-2-2.zst -------------------------------------------------------------------------------- /src/test/data/ellipsoid-zst/ept-data/2-2-3-1.zst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/test/data/ellipsoid-zst/ept-data/2-2-3-1.zst -------------------------------------------------------------------------------- /src/test/data/ellipsoid-zst/ept-data/2-3-1-1.zst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/test/data/ellipsoid-zst/ept-data/2-3-1-1.zst -------------------------------------------------------------------------------- /src/test/data/ellipsoid-zst/ept-data/2-3-1-2.zst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/test/data/ellipsoid-zst/ept-data/2-3-1-2.zst -------------------------------------------------------------------------------- /src/test/data/ellipsoid-zst/ept-data/2-3-2-1.zst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/test/data/ellipsoid-zst/ept-data/2-3-2-1.zst -------------------------------------------------------------------------------- /src/test/data/ellipsoid-zst/ept-data/2-3-2-2.zst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/test/data/ellipsoid-zst/ept-data/2-3-2-2.zst -------------------------------------------------------------------------------- /src/test/data/ellipsoid-zst/ept-data/3-0-3-3.zst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/test/data/ellipsoid-zst/ept-data/3-0-3-3.zst -------------------------------------------------------------------------------- /src/test/data/ellipsoid-zst/ept-data/3-0-3-4.zst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/test/data/ellipsoid-zst/ept-data/3-0-3-4.zst -------------------------------------------------------------------------------- /src/test/data/ellipsoid-zst/ept-data/3-0-4-3.zst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/test/data/ellipsoid-zst/ept-data/3-0-4-3.zst -------------------------------------------------------------------------------- /src/test/data/ellipsoid-zst/ept-data/3-0-4-4.zst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/test/data/ellipsoid-zst/ept-data/3-0-4-4.zst -------------------------------------------------------------------------------- /src/test/data/ellipsoid-zst/ept-data/3-7-3-3.zst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/test/data/ellipsoid-zst/ept-data/3-7-3-3.zst -------------------------------------------------------------------------------- /src/test/data/ellipsoid-zst/ept-data/3-7-3-4.zst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/test/data/ellipsoid-zst/ept-data/3-7-3-4.zst -------------------------------------------------------------------------------- /src/test/data/ellipsoid-zst/ept-data/3-7-4-3.zst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/test/data/ellipsoid-zst/ept-data/3-7-4-3.zst -------------------------------------------------------------------------------- /src/test/data/ellipsoid-zst/ept-data/3-7-4-4.zst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/test/data/ellipsoid-zst/ept-data/3-7-4-4.zst -------------------------------------------------------------------------------- /src/test/data/ellipsoid-zst/ept-hierarchy/0-0-0-0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/test/data/ellipsoid-zst/ept-hierarchy/0-0-0-0.json -------------------------------------------------------------------------------- /src/test/data/ellipsoid-zst/ept-hierarchy/2-0-1-1.json: -------------------------------------------------------------------------------- 1 | {"2-0-1-1":3779,"3-0-3-3":1494} -------------------------------------------------------------------------------- /src/test/data/ellipsoid-zst/ept-hierarchy/2-0-1-2.json: -------------------------------------------------------------------------------- 1 | {"2-0-1-2":3779,"3-0-3-4":1494} -------------------------------------------------------------------------------- /src/test/data/ellipsoid-zst/ept-hierarchy/2-0-2-1.json: -------------------------------------------------------------------------------- 1 | {"2-0-2-1":3795,"3-0-4-3":1526} -------------------------------------------------------------------------------- /src/test/data/ellipsoid-zst/ept-hierarchy/2-0-2-2.json: -------------------------------------------------------------------------------- 1 | {"2-0-2-2":3795,"3-0-4-4":1527} -------------------------------------------------------------------------------- /src/test/data/ellipsoid-zst/ept-hierarchy/2-1-0-1.json: -------------------------------------------------------------------------------- 1 | {"2-1-0-1":2398} -------------------------------------------------------------------------------- /src/test/data/ellipsoid-zst/ept-hierarchy/2-1-1-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/test/data/ellipsoid-zst/ept-hierarchy/2-1-1-1.json -------------------------------------------------------------------------------- /src/test/data/ellipsoid-zst/ept-hierarchy/2-1-1-2.json: -------------------------------------------------------------------------------- 1 | {"2-1-1-2":3229} -------------------------------------------------------------------------------- /src/test/data/ellipsoid-zst/ept-hierarchy/2-1-2-1.json: -------------------------------------------------------------------------------- 1 | {"2-1-2-1":3257} -------------------------------------------------------------------------------- /src/test/data/ellipsoid-zst/ept-hierarchy/2-1-2-2.json: -------------------------------------------------------------------------------- 1 | {"2-1-2-2":3257} -------------------------------------------------------------------------------- /src/test/data/ellipsoid-zst/ept-hierarchy/2-1-3-1.json: -------------------------------------------------------------------------------- 1 | {"2-1-3-1":2399} -------------------------------------------------------------------------------- /src/test/data/ellipsoid-zst/ept-hierarchy/2-2-0-1.json: -------------------------------------------------------------------------------- 1 | {"2-2-0-1":2424} -------------------------------------------------------------------------------- /src/test/data/ellipsoid-zst/ept-hierarchy/2-2-1-1.json: -------------------------------------------------------------------------------- 1 | {"2-2-1-1":3247} -------------------------------------------------------------------------------- /src/test/data/ellipsoid-zst/ept-hierarchy/2-2-1-2.json: -------------------------------------------------------------------------------- 1 | {"2-2-1-2":3247} -------------------------------------------------------------------------------- /src/test/data/ellipsoid-zst/ept-hierarchy/2-2-2-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/test/data/ellipsoid-zst/ept-hierarchy/2-2-2-1.json -------------------------------------------------------------------------------- /src/test/data/ellipsoid-zst/ept-hierarchy/2-2-2-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/test/data/ellipsoid-zst/ept-hierarchy/2-2-2-2.json -------------------------------------------------------------------------------- /src/test/data/ellipsoid-zst/ept-hierarchy/2-2-3-1.json: -------------------------------------------------------------------------------- 1 | {"2-2-3-1":2425} -------------------------------------------------------------------------------- /src/test/data/ellipsoid-zst/ept-hierarchy/2-3-1-1.json: -------------------------------------------------------------------------------- 1 | {"2-3-1-1":3790,"3-7-3-3":1468} -------------------------------------------------------------------------------- /src/test/data/ellipsoid-zst/ept-hierarchy/2-3-1-2.json: -------------------------------------------------------------------------------- 1 | {"2-3-1-2":3790,"3-7-3-4":1468} -------------------------------------------------------------------------------- /src/test/data/ellipsoid-zst/ept-hierarchy/2-3-2-1.json: -------------------------------------------------------------------------------- 1 | {"2-3-2-1":3816,"3-7-4-3":1532} -------------------------------------------------------------------------------- /src/test/data/ellipsoid-zst/ept-hierarchy/2-3-2-2.json: -------------------------------------------------------------------------------- 1 | {"2-3-2-2":3816,"3-7-4-4":1533} -------------------------------------------------------------------------------- /src/test/data/ellipsoid-zst/ept-sources/ellipsoid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/test/data/ellipsoid-zst/ept-sources/ellipsoid.json -------------------------------------------------------------------------------- /src/test/data/ellipsoid-zst/ept-sources/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/test/data/ellipsoid-zst/ept-sources/manifest.json -------------------------------------------------------------------------------- /src/test/data/ellipsoid-zst/ept.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/test/data/ellipsoid-zst/ept.json -------------------------------------------------------------------------------- /src/test/data/no-srs-code/ept.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/test/data/no-srs-code/ept.json -------------------------------------------------------------------------------- /src/test/data/v1.0.0/ept-hierarchy/0-0-0-0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/test/data/v1.0.0/ept-hierarchy/0-0-0-0.json -------------------------------------------------------------------------------- /src/test/data/v1.0.0/ept-sources/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/test/data/v1.0.0/ept-sources/0.json -------------------------------------------------------------------------------- /src/test/data/v1.0.0/ept-sources/list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/test/data/v1.0.0/ept-sources/list.json -------------------------------------------------------------------------------- /src/test/data/v1.0.0/ept.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/test/data/v1.0.0/ept.json -------------------------------------------------------------------------------- /src/test/data/v1.1.0/ept-hierarchy/0-0-0-0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/test/data/v1.1.0/ept-hierarchy/0-0-0-0.json -------------------------------------------------------------------------------- /src/test/data/v1.1.0/ept-sources/USGS_LPC_AL_25_County_Lidar_2017_B17_16R_DV_5769.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/test/data/v1.1.0/ept-sources/USGS_LPC_AL_25_County_Lidar_2017_B17_16R_DV_5769.json -------------------------------------------------------------------------------- /src/test/data/v1.1.0/ept-sources/USGS_LPC_AL_25_County_Lidar_2017_B17_16S_EA_7398.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/test/data/v1.1.0/ept-sources/USGS_LPC_AL_25_County_Lidar_2017_B17_16S_EA_7398.json -------------------------------------------------------------------------------- /src/test/data/v1.1.0/ept-sources/USGS_LPC_AL_25_County_Lidar_2017_B17_16S_EA_8086.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/test/data/v1.1.0/ept-sources/USGS_LPC_AL_25_County_Lidar_2017_B17_16S_EA_8086.json -------------------------------------------------------------------------------- /src/test/data/v1.1.0/ept-sources/USGS_LPC_AL_25_County_Lidar_2017_B17_16S_EA_8088.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/test/data/v1.1.0/ept-sources/USGS_LPC_AL_25_County_Lidar_2017_B17_16S_EA_8088.json -------------------------------------------------------------------------------- /src/test/data/v1.1.0/ept-sources/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/test/data/v1.1.0/ept-sources/manifest.json -------------------------------------------------------------------------------- /src/test/data/v1.1.0/ept.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/test/data/v1.1.0/ept.json -------------------------------------------------------------------------------- /src/test/data/vmixed/ept-hierarchy/0-0-0-0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/test/data/vmixed/ept-hierarchy/0-0-0-0.json -------------------------------------------------------------------------------- /src/test/data/vmixed/ept-sources/USGS_LPC_AL_25_County_Lidar_2017_B17_16R_DV_5769.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/test/data/vmixed/ept-sources/USGS_LPC_AL_25_County_Lidar_2017_B17_16R_DV_5769.json -------------------------------------------------------------------------------- /src/test/data/vmixed/ept-sources/USGS_LPC_AL_25_County_Lidar_2017_B17_16S_EA_7398.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/test/data/vmixed/ept-sources/USGS_LPC_AL_25_County_Lidar_2017_B17_16S_EA_7398.json -------------------------------------------------------------------------------- /src/test/data/vmixed/ept-sources/USGS_LPC_AL_25_County_Lidar_2017_B17_16S_EA_8086.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/test/data/vmixed/ept-sources/USGS_LPC_AL_25_County_Lidar_2017_B17_16S_EA_8086.json -------------------------------------------------------------------------------- /src/test/data/vmixed/ept-sources/USGS_LPC_AL_25_County_Lidar_2017_B17_16S_EA_8088.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/test/data/vmixed/ept-sources/USGS_LPC_AL_25_County_Lidar_2017_B17_16S_EA_8088.json -------------------------------------------------------------------------------- /src/test/data/vmixed/ept-sources/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/test/data/vmixed/ept-sources/manifest.json -------------------------------------------------------------------------------- /src/test/data/vmixed/ept.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/test/data/vmixed/ept.json -------------------------------------------------------------------------------- /src/test/dummy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/test/dummy.ts -------------------------------------------------------------------------------- /src/test/ellipsoid.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/test/ellipsoid.ts -------------------------------------------------------------------------------- /src/test/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/test/index.ts -------------------------------------------------------------------------------- /src/test/pnts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/test/pnts.ts -------------------------------------------------------------------------------- /src/test/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/test/server.ts -------------------------------------------------------------------------------- /src/test/ssl/ca.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/test/ssl/ca.pem -------------------------------------------------------------------------------- /src/test/ssl/fake.cert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/test/ssl/fake.cert -------------------------------------------------------------------------------- /src/test/ssl/fake.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/test/ssl/fake.key -------------------------------------------------------------------------------- /src/types/ctype.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/types/ctype.ts -------------------------------------------------------------------------------- /src/types/error.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/types/error.ts -------------------------------------------------------------------------------- /src/types/global.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/types/global.d.ts -------------------------------------------------------------------------------- /src/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/types/index.ts -------------------------------------------------------------------------------- /src/types/point.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/types/point.ts -------------------------------------------------------------------------------- /src/utils/bytes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/utils/bytes.ts -------------------------------------------------------------------------------- /src/utils/get.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/utils/get.test.ts -------------------------------------------------------------------------------- /src/utils/get.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/utils/get.ts -------------------------------------------------------------------------------- /src/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/utils/index.ts -------------------------------------------------------------------------------- /src/utils/json-schema.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/utils/json-schema.test.ts -------------------------------------------------------------------------------- /src/utils/json-schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/utils/json-schema.ts -------------------------------------------------------------------------------- /src/utils/pool.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/utils/pool.test.ts -------------------------------------------------------------------------------- /src/utils/pool.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/utils/pool.ts -------------------------------------------------------------------------------- /src/utils/reproject.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/utils/reproject.test.ts -------------------------------------------------------------------------------- /src/utils/reproject.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/utils/reproject.ts -------------------------------------------------------------------------------- /src/utils/scale.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/utils/scale.test.ts -------------------------------------------------------------------------------- /src/utils/scale.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/src/utils/scale.ts -------------------------------------------------------------------------------- /src/utils/test/data.json: -------------------------------------------------------------------------------- 1 | { "data": 42 } 2 | -------------------------------------------------------------------------------- /src/utils/test/data.txt: -------------------------------------------------------------------------------- 1 | data -------------------------------------------------------------------------------- /tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/tsconfig.build.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connormanning/ept-tools/HEAD/yarn.lock --------------------------------------------------------------------------------