Skip to content

v0.1.0

Compare
Choose a tag to compare
@gadomski gadomski released this 08 Oct 10:33
· 22 commits to main since this release
635d7f4

🎉 This is the initial release of cql2-rs, a parser and converter for Common Query Language (CQL2). See the documentation for API information. To use the command-line interface:

$ cargo install cql2-cli
$ cql2 -o json '("landsat:scene_id" = "LC82030282019133LGN00")'
{"op":"=","args":[{"property":"landsat:scene_id"},{"property":"LC82030282019133LGN00"}]}
$ cql2 -h    
Usage: cql2 [OPTIONS] [INPUT]

Arguments:
  [INPUT]  The input CQL2

Options:
  -i, --input-format <INPUT_FORMAT>    The input format [possible values: json, text]
  -o, --output-format <OUTPUT_FORMAT>  The output format [possible values: json-pretty, json, text, sql]
      --validate <VALIDATE>            Validate the CQL2 [default: true] [possible values: true, false]
  -v, --verbose...                     Verbosity
  -h, --help                           Print help (see more with '--help')

Coming soon:

What's Changed

New Contributors

Full Changelog: https://github.com/developmentseed/cql2-rs/commits/v0.1.0