PyUCIS provides a Python API for manipulating UCIS (Unified Coverage Interoperability Standard) coverage data. It supports reading, merging, and writing UCIS XML coverage databases. The current version is 0.2.0.22787133465, with regular updates for format compatibility and bug fixes.
pip install pyucisVerified import paths — ran on the pinned version, not inferred.
Load a UCIS XML file, merge another, and save the result.
Ensure your UCIS data is in XML format (typically .ucis files with XML content). Binary UCIS databases are not supported.
Check the documentation for any API changes if upgrading from pre-0.2.0 releases. The import path 'from pyucis import UCISDB' remains unchanged.
Create a copy of the database before merging if you need to preserve the original: db_copy = UCISDB(); db_copy.load('original.ucis'); then merge on the copy.