cloud-optimized-geoparquet
A specification for progressive, cloud-friendly GeoParquet
File Explorer
- deploy-demo.yml
- release-cogp-rs.yml
- test.yml
- FUNDING.yml
- cogp-types.ts
- cogp-worker.ts
- dataset-service.ts
- main.ts
- style.css
- index.html
- package.json
- tsconfig.json
- vite.config.ts
- bbox.ts
- coalescing-buffer.ts
- index.ts
- level.ts
- meta.ts
- reader.ts
- coalescing-buffer.test.mjs
- package.json
- README.md
- tsconfig.json
- convert.rs
- lib.rs
- main.rs
- meta.rs
- range_coalescing.rs
- reader.rs
- validate.rs
- wkb_bbox.rs
- end_to_end.rs
- validate_failures.rs
- bench_cogp.py
- requirements-bench.txt
- Cargo.toml
- README.md
- .gitignore
- Cargo.lock
- Cargo.toml
- LICENSE
- LICENSE-SPEC
- package.json
- pnpm-lock.yaml
- pnpm-workspace.yaml
- README.md
- SPEC.md
# Use via CDN
jsDelivrjsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.
Command Glossary
Commands referenced in this DOCs, explained below.
cargo test
View Details ▼
cargo test
Execute the unit and integration tests of a Rust package.
cargo {{[t|test]}} {{test_name}}
Only run tests containing a specific string in their names:
cargo {{[t|test]}} -- --test-threads {{count}}
Set the number of simultaneous running test cases:
cargo {{[t|test]}} {{[-r|--release]}}
Test artifacts in release mode, with optimizations:
pnpm
View Details ▼
pnpm
Fast, disk space efficient package manager for Node.js.
Manage Node.js projects and their module dependencies.
pnpm init
Create a `package.json` file:
pnpm {{[i|install]}}
Download all the packages listed as dependencies in `package.json`:
pnpm add {{module_name}}@{{version}}
Download a specific version of a package and add it to the list of dependencies in `package.json`:
