├── .github └── workflows │ ├── main.yml │ ├── publish-dry-run.yml │ └── publish.yml ├── .gitignore ├── .ort.yml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── bin ├── beta-terms.txt ├── h3ZoomLevelResolutionMap.json ├── h3resolutionRadiusMap.json ├── pro-beta-terms.txt └── zoomLevelsMap.json ├── declarations └── @turf │ ├── helpers.d.ts │ ├── lib │ └── geojson.d.ts │ └── voronoi.d.ts ├── docs ├── configure.md ├── geospace.md ├── transform.md └── xyzspace.md ├── package.json ├── scripts └── publish-npm-gha.sh ├── src ├── api-error.ts ├── catalogUtil.ts ├── common.ts ├── geocodeUtil.ts ├── gisUtil.ts ├── here-catalog.ts ├── here-configure.ts ├── here-geocode.ts ├── here-interactivemap.ts ├── here-studio.ts ├── here-transform.ts ├── here-xyz.ts ├── here.ts ├── hexbin.ts ├── requestAsync.ts ├── sso.ts ├── summary.ts ├── transformutil.ts └── xyzutil.ts ├── test ├── data │ ├── sample.csv │ ├── sample.geojson │ ├── sample.geojsonl │ ├── sample.gpx │ └── shapesample │ │ ├── shapesample.dbf │ │ ├── shapesample.prj │ │ ├── shapesample.shp │ │ └── shapesample.shx ├── server.js └── test.js └── tsconfig.json /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heremaps/here-cli/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.github/workflows/publish-dry-run.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heremaps/here-cli/HEAD/.github/workflows/publish-dry-run.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heremaps/here-cli/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/* 2 | *.tgz 3 | bin/*.js 4 | .idea 5 | .vscode/launch.json 6 | -------------------------------------------------------------------------------- /.ort.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heremaps/here-cli/HEAD/.ort.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heremaps/here-cli/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heremaps/here-cli/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heremaps/here-cli/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heremaps/here-cli/HEAD/README.md -------------------------------------------------------------------------------- /bin/beta-terms.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heremaps/here-cli/HEAD/bin/beta-terms.txt -------------------------------------------------------------------------------- /bin/h3ZoomLevelResolutionMap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heremaps/here-cli/HEAD/bin/h3ZoomLevelResolutionMap.json -------------------------------------------------------------------------------- /bin/h3resolutionRadiusMap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heremaps/here-cli/HEAD/bin/h3resolutionRadiusMap.json -------------------------------------------------------------------------------- /bin/pro-beta-terms.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heremaps/here-cli/HEAD/bin/pro-beta-terms.txt -------------------------------------------------------------------------------- /bin/zoomLevelsMap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heremaps/here-cli/HEAD/bin/zoomLevelsMap.json -------------------------------------------------------------------------------- /declarations/@turf/helpers.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heremaps/here-cli/HEAD/declarations/@turf/helpers.d.ts -------------------------------------------------------------------------------- /declarations/@turf/lib/geojson.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heremaps/here-cli/HEAD/declarations/@turf/lib/geojson.d.ts -------------------------------------------------------------------------------- /declarations/@turf/voronoi.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heremaps/here-cli/HEAD/declarations/@turf/voronoi.d.ts -------------------------------------------------------------------------------- /docs/configure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heremaps/here-cli/HEAD/docs/configure.md -------------------------------------------------------------------------------- /docs/geospace.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heremaps/here-cli/HEAD/docs/geospace.md -------------------------------------------------------------------------------- /docs/transform.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heremaps/here-cli/HEAD/docs/transform.md -------------------------------------------------------------------------------- /docs/xyzspace.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heremaps/here-cli/HEAD/docs/xyzspace.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heremaps/here-cli/HEAD/package.json -------------------------------------------------------------------------------- /scripts/publish-npm-gha.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heremaps/here-cli/HEAD/scripts/publish-npm-gha.sh -------------------------------------------------------------------------------- /src/api-error.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heremaps/here-cli/HEAD/src/api-error.ts -------------------------------------------------------------------------------- /src/catalogUtil.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heremaps/here-cli/HEAD/src/catalogUtil.ts -------------------------------------------------------------------------------- /src/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heremaps/here-cli/HEAD/src/common.ts -------------------------------------------------------------------------------- /src/geocodeUtil.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heremaps/here-cli/HEAD/src/geocodeUtil.ts -------------------------------------------------------------------------------- /src/gisUtil.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heremaps/here-cli/HEAD/src/gisUtil.ts -------------------------------------------------------------------------------- /src/here-catalog.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heremaps/here-cli/HEAD/src/here-catalog.ts -------------------------------------------------------------------------------- /src/here-configure.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heremaps/here-cli/HEAD/src/here-configure.ts -------------------------------------------------------------------------------- /src/here-geocode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heremaps/here-cli/HEAD/src/here-geocode.ts -------------------------------------------------------------------------------- /src/here-interactivemap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heremaps/here-cli/HEAD/src/here-interactivemap.ts -------------------------------------------------------------------------------- /src/here-studio.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heremaps/here-cli/HEAD/src/here-studio.ts -------------------------------------------------------------------------------- /src/here-transform.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heremaps/here-cli/HEAD/src/here-transform.ts -------------------------------------------------------------------------------- /src/here-xyz.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heremaps/here-cli/HEAD/src/here-xyz.ts -------------------------------------------------------------------------------- /src/here.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heremaps/here-cli/HEAD/src/here.ts -------------------------------------------------------------------------------- /src/hexbin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heremaps/here-cli/HEAD/src/hexbin.ts -------------------------------------------------------------------------------- /src/requestAsync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heremaps/here-cli/HEAD/src/requestAsync.ts -------------------------------------------------------------------------------- /src/sso.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heremaps/here-cli/HEAD/src/sso.ts -------------------------------------------------------------------------------- /src/summary.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heremaps/here-cli/HEAD/src/summary.ts -------------------------------------------------------------------------------- /src/transformutil.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heremaps/here-cli/HEAD/src/transformutil.ts -------------------------------------------------------------------------------- /src/xyzutil.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heremaps/here-cli/HEAD/src/xyzutil.ts -------------------------------------------------------------------------------- /test/data/sample.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heremaps/here-cli/HEAD/test/data/sample.csv -------------------------------------------------------------------------------- /test/data/sample.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heremaps/here-cli/HEAD/test/data/sample.geojson -------------------------------------------------------------------------------- /test/data/sample.geojsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heremaps/here-cli/HEAD/test/data/sample.geojsonl -------------------------------------------------------------------------------- /test/data/sample.gpx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heremaps/here-cli/HEAD/test/data/sample.gpx -------------------------------------------------------------------------------- /test/data/shapesample/shapesample.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heremaps/here-cli/HEAD/test/data/shapesample/shapesample.dbf -------------------------------------------------------------------------------- /test/data/shapesample/shapesample.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heremaps/here-cli/HEAD/test/data/shapesample/shapesample.prj -------------------------------------------------------------------------------- /test/data/shapesample/shapesample.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heremaps/here-cli/HEAD/test/data/shapesample/shapesample.shp -------------------------------------------------------------------------------- /test/data/shapesample/shapesample.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heremaps/here-cli/HEAD/test/data/shapesample/shapesample.shx -------------------------------------------------------------------------------- /test/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heremaps/here-cli/HEAD/test/server.js -------------------------------------------------------------------------------- /test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heremaps/here-cli/HEAD/test/test.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heremaps/here-cli/HEAD/tsconfig.json --------------------------------------------------------------------------------