This tool creates a comparison spreadsheet comparing two or more versions of a code list.
java -cp saxon.jar net.sf.saxon.Query -q:compare.xqy -s:test.xml -o:test-compare.xml code-title=title order-type=(alpha|numeric-alpha)
| Option | Description |
|---|---|
| -q | The query file (compare.xqy) |
| -s | The input file |
| -o | The output file |
| Parameter | Description |
|---|---|
| code-title | the name of the comparison tab on the spreadsheet |
| order-type | How are the codes sorted, 'alpha' - plain ascending sort on the code (default) and 'numeric-alpha' where it is sorted by first the numeric value in the code and second being the non-numeric characters in the code. |
Since this code uses XQuery version 3.0 and higher order functions, this requires a licensed copy of Saxon PE to run. There are other implementations of XQuery 3.0.
The following is an example with four different versions of a code list.
These are the four versions of a code list as inputs. Each is a tab in an XML Spreadsheet 2003 format Excel file. The tabs are in the following order.
| Code | Description |
|---|---|
| a | able |
| b | baker |
| Code | Description |
|---|---|
| a | able |
| c | charley |
| g | gamma |
| Code | Description |
|---|---|
| a | able |
| b | bastte |
| g | gamma |
| Code | Description |
|---|---|
| a | actor |
| g | gelding |
| z | zebra |
Here is the output of the comparison as an XML Spreadsheet 2003 formatted Excel spreadsheet.
| The Code - v1 | The Code - v2 | The Code - v3 | The Code - v4 | Description | The Code - v2 Alternate Description | The Code - v3 Alternate Description | The Code - v4 Alternate Description |
|---|---|---|---|---|---|---|---|
| a | a | a | a | able | actor | ||
| b | b | baker | bastte | ||||
| c | charley | ||||||
| g | g | g | gamma | gelding | |||
| z | zebra |
codelist-compare is released under the MIT License.