arkis
TypeScript icon, indicating that this package has built-in type declarations

1.1.1 • Public • Published

Arkis

TypeScript library for parsing ArcGIS datasets.

Example

const arkis = new Arkis("https://link.to/arcgis/api");
const catalog = await arkis.catalog();
const dataset = await catalog.datasets.find((d) => d.nam == "MyDataset");

if (!dataset) throw new Error("Dataset not found");

const distro = await dataset.distros.find(DataFormat.DB);

if (!distro) throw new Error("Distribution not found");

const data = await distro.download();

console.log(data);

Authors

License

The library is licensed under the MIT license. Please respect and follow licenses of the datasets.

Versions

Current Tags

VersionDownloads (Last 7 Days)Tag
1.1.10latest

Version History

VersionDownloads (Last 7 Days)Published
1.1.10
1.1.00
1.0.10
1.0.00
0.0.00

Package Sidebar

Install

npm i arkis

Weekly Downloads

0

Version

1.1.1

License

none

Unpacked Size

781 kB

Total Files

24

Last publish

Collaborators

  • martingames