# 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 ```shell ocli task create --template ocli.aikp.document.vector_ts -n --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: ```shell ocli task create --template ocli.aikp.document.vector_ts --name --activate ``` 2. Set the `file_path` to a valid GeoJSON file containing point features with time series data: ```shell ocli task set file_path="/path/to/vector_ts.geojson" ``` 3. Make the task recipe: ```shell ocli task make recipe ``` 4. Generate the database metadata document and copy the source document to the output directory: ```shell ocli ai makegeojson ``` 5. Upload the source and metadata files to the cloud storage: ```shell ocli ai upload --dry-run ```