method
Manage LCIA method collections. Methods contain characterization factors used to compute LCIA scores.
volca --config volca.toml method [SUBCOMMAND]Command reference
Section titled “Command reference”{methodHelp}Upload
Section titled “Upload”{methodUploadHelp}Delete
Section titled “Delete”{methodDeleteHelp}Examples
Section titled “Examples”# List method collectionsvolca --config volca.toml methodvolca --config volca.toml method list
# Upload an ILCD method packagevolca --config volca.toml method upload /data/EF3.1.zip --name "EF3.1"
# Delete a method collectionvolca --config volca.toml method delete "EF3.1"After upload
Section titled “After upload”Once uploaded, load the method to use it for LCIA:
curl -X POST http://localhost:8080/api/v1/method-collections/EF3.1/loadThen list individual methods to get UUIDs for LCIA computation:
volca --config volca.toml methodsSee the LCIA Methods guide for more details.