├── .editorconfig ├── .github ├── remark.yaml └── workflows │ ├── publish.yaml │ └── test.yaml ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── examples ├── collection.json └── item.json ├── json-schema └── schema.json └── package.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stac-extensions/processing/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/remark.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stac-extensions/processing/HEAD/.github/remark.yaml -------------------------------------------------------------------------------- /.github/workflows/publish.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stac-extensions/processing/HEAD/.github/workflows/publish.yaml -------------------------------------------------------------------------------- /.github/workflows/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stac-extensions/processing/HEAD/.github/workflows/test.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /package-lock.json 2 | /node_modules 3 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stac-extensions/processing/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stac-extensions/processing/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stac-extensions/processing/HEAD/README.md -------------------------------------------------------------------------------- /examples/collection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stac-extensions/processing/HEAD/examples/collection.json -------------------------------------------------------------------------------- /examples/item.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stac-extensions/processing/HEAD/examples/item.json -------------------------------------------------------------------------------- /json-schema/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stac-extensions/processing/HEAD/json-schema/schema.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stac-extensions/processing/HEAD/package.json --------------------------------------------------------------------------------