Crates.io | cjval |
lib.rs | cjval |
version | 0.8.1 |
source | src |
created_at | 2021-10-22 14:19:28.376966 |
updated_at | 2024-08-14 09:28:24.895584 |
description | Schema-validation of CityJSON+CityJSONSeq datasets |
homepage | https://github.com/cityjson/cjval |
repository | https://github.com/cityjson/cjval |
max_upload_size | |
id | 469369 |
size | 2,075,274 |
A Rust library and binaries to validate the syntax of CityJSON objects (CityJSON + CityJSONSeq).
It validates against the CityJSON schemas and additional functions have been implemented (because these checks cannot be expressed with JSON Schemas).
The following error checks are performed:
"children"
, this ensures that the child exists. And that the child has the parent in its "parents"
It also verifies the following, these are not errors but warnings since the file is still considered valid and usable, but they can make the file larger and some parsers might not understand all the properties:
extra_root_properties: if CityJSON has extra root properties, these should be documented in an Extension. If not this warning is returned
duplicate_vertices: duplicated vertices in "vertices"
are allowed, but they take up space and decrease the topological relationships explicitly in the file. If there are any, cjio has the operator clean
to fix this automatically.
unused_vertices: vertices that are not referenced in the file, they take extra space. If there are any, cjio has the operator clean
to fix this automatically.
cjval
is a Rust library, and has 2 different binaries:
cjval
to validate a CityJSON file or a CityJSONSeq stream (it downloads Extensions automatically if the file contains some)
cjvalext
to validate a CityJSON Extension file
cargo install cjval --features build-binary
install the Rust compiler
git clone https://github.com/cityjson/cjval.git
cargo build --release --features build-binary
(this will ensure the binaries are compiled too)
./target/release/cjval myfile.json
The code is used at https://validator.cityjson.org, it is compiled as a WebAssembly (WASM code here) and a simple GUI was built.
The CityJSON schemas are packaged with the binary, so it suffices to:
cjval myfile.city.json --verbose
(the latest schemas of a X.Y version will be automatically fetched)
--verbose
is used to get a detailed report per error check.
If the file contains one or more Extensions, eg:
{
"type": "CityJSON",
"version": "2.0",
"extensions":
{
"Potato":
{
"url": "https://www.cityjson.org/extensions/potato.ext.json",
"version": "1.0"
}
}
...
then cjval
will download the Extension schema files automatically.
If instead you want to use your own local Extension schema(s), you can pass them as argument with the -e
flag and this will overwrite the automatic download:
cjval myfile.city.json -e ./myextensions/generic.ext.json
To validate a stream of CityJSONFeature, you need to 'cat' the file:
cat mystream.city.jsonl | cjval --verbose
Or you can use cjseq to generate the stream from a CityJSON file:
cjseq cat -f myfile.city.json | cjval --verbose
and you'll get a short report per line (which is one CityJSON
followed by several CityJSONFeature
).
--verbose
is used to get a detailed report per line, if not used then only lines with errors are reported.