Vector Time Series Document

This AIKP template enables publishing and uploading vector time series data (point features containing time series index values) into OCLI.

ocli.aikp.document.vector_ts it is boilerplate AIKP to use as an example on how to implement the output or AIKP which produces time series data.

Basic Usage

ocli task create --template ocli.aikp.document.vector_ts -n <task_name> --activate
ocli task set file_path="/path/to/vector_ts.geojson"
ocli task make recipe
ocli ai makegeojson
ocli ai upload --dry-run

Step by step guide

  1. Create a task with this template:

    ocli task create --template ocli.aikp.document.vector_ts --name <task_name> --activate
    
  2. Set the file_path to a valid GeoJSON file containing point features with time series data:

    ocli task set file_path="/path/to/vector_ts.geojson"
    
  3. Make the task recipe:

    ocli task make recipe
    
  4. Generate the database metadata document and copy the source document to the output directory:

    ocli ai makegeojson
    
  5. Upload the source and metadata files to the cloud storage:

    ocli ai upload --dry-run