A library with utility functions and a CLI for converting a TerriaJS v7 catalog to a TerriaJS v8 catalog.
A hosted version of this is available at https://catalog-converter.terria.io/ with the source code via https://github.com/TerriaJS/catalog-converter-ui
Or you can install the CLI locally which gives you more control over converting your catalog with additional options:
npm install -g catalog-converter
catalog-converter input-v7-catalog.json output-v8-catalog.json
catalog-converter --help # To see all options
Bootstrapped with https://github.com/alexjoverm/typescript-library-starter.git
Install, build:
npm install
npm run build:code
Convert v7 to v8 catalog:
./bin/catalog-converter mapconfig-input-v7.json mapconfig-output-v8.json
Run help to see the supported command line arguments:
./bin/catalog-converter --help
While we have tried our best to translate most of the v7 catalog configuration to equivalent v8, we could still have missed out many. If you find warnings about unknown or unsupported properties when running this script, you may:
- Check the v8 documentation on connecting to data to see if the properties you are after (or its equivalent) are available in v8.
- You can reach out to us on TerriaJS Discussions forum and we'll be happy to help!