- implemented spatial filtering

- Component 'draw.component.vue' has been extended with the 'preserve' property to control whether the drawn rectangle disappears again
- npm updates
This commit is contained in:
Kaimbacher 2023-10-23 15:27:39 +02:00
parent 2360a81d1e
commit 7bc9f90cca
6 changed files with 637 additions and 448 deletions

View file

@ -8,7 +8,8 @@ import { readFileSync } from 'fs';
import { transform } from 'saxon-js';
import { Client } from '@opensearch-project/opensearch';
const client = new Client({ node: 'http://localhost:9200' }); // replace with your OpenSearch endpoint
const opensearchNode = process.env.OPENSEARCH_HOST || 'localhost';
const client = new Client({ node: `http://${opensearchNode}:9200` }); // replace with your OpenSearch endpoint
export default class IndexDatasets extends BaseCommand {
public static commandName = 'index:datasets';