Skip to content

Commit 8b8a687

Browse files
author
Alex Grosu
committed
Merge branch 'develop' of https://github.com/RS-PYTHON/rs-demo into develop
2 parents 2f92bf7 + 667b9fa commit 8b8a687

File tree

3 files changed

+61
-14
lines changed

3 files changed

+61
-14
lines changed

local-mode/config/adgs_ws_config.yaml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -137,6 +137,21 @@ adgs:
137137
- ContentDate/Start gt {Start#to_iso_utc_datetime}
138138
- ContentDate/Start eq {DatetimeStart#to_iso_utc_datetime}
139139
- ContentDate/Stop lt {Stop#to_iso_utc_datetime}
140+
- '{t_before}'
141+
- '{t_after}'
142+
- '{t_meets}'
143+
- '{t_metby}'
144+
- '{t_overlaps}'
145+
- '{t_overlappedby}'
146+
- '{t_starts}'
147+
- '{t_startedby}'
148+
- '{t_during}'
149+
- '{t_contains}'
150+
- '{t_finishes}'
151+
- '{t_finishedby}'
152+
- '{t_equals}'
153+
- '{t_disjoint}'
154+
- '{t_intersects}'
140155
sort:
141156
sort_by_tpl: '&$orderby={sort_param} {sort_order}'
142157
sort_param_mapping:
@@ -282,6 +297,21 @@ adgs2:
282297
- ContentDate/Start gt {Start#to_iso_utc_datetime}
283298
- ContentDate/Start eq {DatetimeStart#to_iso_utc_datetime}
284299
- ContentDate/Stop lt {Stop#to_iso_utc_datetime}
300+
- '{t_before}'
301+
- '{t_after}'
302+
- '{t_meets}'
303+
- '{t_metby}'
304+
- '{t_overlaps}'
305+
- '{t_overlappedby}'
306+
- '{t_starts}'
307+
- '{t_startedby}'
308+
- '{t_during}'
309+
- '{t_contains}'
310+
- '{t_finishes}'
311+
- '{t_finishedby}'
312+
- '{t_equals}'
313+
- '{t_disjoint}'
314+
- '{t_intersects}'
285315
sort:
286316
sort_by_tpl: '&$orderby={sort_param} {sort_order}'
287317
sort_param_mapping:

local-mode/config/adgs_ws_config_token_module.yaml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -122,6 +122,21 @@ adgs:
122122
- ContentDate/Start gt {Start#to_iso_utc_datetime}
123123
- ContentDate/Start eq {DatetimeStart#to_iso_utc_datetime}
124124
- ContentDate/Stop lt {Stop#to_iso_utc_datetime}
125+
- '{t_before}'
126+
- '{t_after}'
127+
- '{t_meets}'
128+
- '{t_metby}'
129+
- '{t_overlaps}'
130+
- '{t_overlappedby}'
131+
- '{t_starts}'
132+
- '{t_startedby}'
133+
- '{t_during}'
134+
- '{t_contains}'
135+
- '{t_finishes}'
136+
- '{t_finishedby}'
137+
- '{t_equals}'
138+
- '{t_disjoint}'
139+
- '{t_intersects}'
125140
sort:
126141
sort_by_tpl: '&$orderby={sort_param} {sort_order}'
127142
sort_param_mapping:
@@ -252,6 +267,21 @@ adgs2:
252267
- ContentDate/Start gt {Start#to_iso_utc_datetime}
253268
- ContentDate/Start eq {DatetimeStart#to_iso_utc_datetime}
254269
- ContentDate/Stop lt {Stop#to_iso_utc_datetime}
270+
- '{t_before}'
271+
- '{t_after}'
272+
- '{t_meets}'
273+
- '{t_metby}'
274+
- '{t_overlaps}'
275+
- '{t_overlappedby}'
276+
- '{t_starts}'
277+
- '{t_startedby}'
278+
- '{t_during}'
279+
- '{t_contains}'
280+
- '{t_finishes}'
281+
- '{t_finishedby}'
282+
- '{t_equals}'
283+
- '{t_disjoint}'
284+
- '{t_intersects}'
255285
sort:
256286
sort_by_tpl: '&$orderby={sort_param} {sort_order}'
257287
sort_param_mapping:

local-mode/docker-compose.yml

Lines changed: 1 addition & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@ services:
2828
- 8001:8000
2929
depends_on:
3030
- rspy-pre-actions
31-
- postgres
3231
- minio
3332
- adgs-station
3433
# variables are set in the .env file
@@ -47,12 +46,6 @@ services:
4746
RSPY_WORKING_DIR: ${RSPY_WORKING_DIR}
4847
STAC_BROWSER_URLS: ${STAC_BROWSER_URLS}
4948

50-
# postgres
51-
POSTGRES_USER: ${POSTGRES_USER}
52-
POSTGRES_PASSWORD: ${POSTGRES_PASSWORD}
53-
POSTGRES_HOST: ${POSTGRES_HOST}
54-
POSTGRES_PORT: ${POSTGRES_PORT}
55-
POSTGRES_DB: ${POSTGRES_DB}
5649
# s3 bucket
5750
S3_ACCESSKEY: ${S3_ACCESSKEY}
5851
S3_SECRETKEY: ${S3_SECRETKEY}
@@ -78,7 +71,6 @@ services:
7871
- 8002:8000
7972
depends_on:
8073
- rspy-pre-actions
81-
- postgres
8274
- minio
8375
- cadip-station
8476
# variables are set in the .env file
@@ -97,12 +89,6 @@ services:
9789
RSPY_WORKING_DIR: ${RSPY_WORKING_DIR}
9890
STAC_BROWSER_URLS: ${STAC_BROWSER_URLS}
9991

100-
# postgres
101-
POSTGRES_USER: ${POSTGRES_USER}
102-
POSTGRES_PASSWORD: ${POSTGRES_PASSWORD}
103-
POSTGRES_HOST: ${POSTGRES_HOST}
104-
POSTGRES_PORT: ${POSTGRES_PORT}
105-
POSTGRES_DB: ${POSTGRES_DB}
10692
# s3 bucket
10793
S3_ACCESSKEY: ${S3_ACCESSKEY}
10894
S3_SECRETKEY: ${S3_SECRETKEY}
@@ -192,6 +178,7 @@ services:
192178
- adgs-station
193179
- cadip-station
194180
- rs-server-catalog
181+
- postgres
195182
# variables are set in the .env file
196183
environment:
197184
RSPY_LOCAL_MODE: 1

0 commit comments

Comments
 (0)