Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
anis-client
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
anis
anis-client
Merge requests
!99
Couldn't fetch the linked file.
Resolve "Documentation construction url serveur"
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Resolve "Documentation construction url serveur"
90-documentation-construction-url-serveur
into
develop
Overview
0
Commits
7
Pipelines
0
Changes
2
Merged
Tifenn Guillas
requested to merge
90-documentation-construction-url-serveur
into
develop
4 years ago
Overview
0
Commits
7
Pipelines
0
Changes
2
Expand
Closes
#90 (closed)
Edited
4 years ago
by
Tifenn Guillas
0
0
Merge request reports
Viewing commit
641e1026
Prev
Next
Show latest version
2 files
+
37
−
13
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
2
Search (e.g. *.vue) (Ctrl+P)
641e1026
Update examples
· 641e1026
Tifenn Guillas
authored
4 years ago
src/app/documentation/containers/documentation.component.html
+
36
−
12
Options
@@ -119,25 +119,25 @@
<td>
lk
</td>
<td>
like
</td>
<td><code>
c=id_attribute::lk::value
</code></td>
<td><code>
c=1::lk::
ECL
</code></td>
<td><code>
c=1::lk::
ping
</code></td>
</tr>
<tr>
<td>
nlk
</td>
<td>
not like
</td>
<td><code>
c=id_attribute::nlk::value
</code></td>
<td><code>
c=1::nlk::
ECL
</code></td>
<td><code>
c=1::nlk::
pong
</code></td>
</tr>
<tr>
<td>
in
</td>
<td>
in
</td>
<td><code>
c=id_attribute::in::value_x|value_y|value_z
</code></td>
<td><code>
c=1::in::
TT_ECL|TT_GRM|TT_VT
</code></td>
<td><code>
c=1::in::
ping|pong|paff
</code></td>
</tr>
<tr>
<td>
nin
</td>
<td>
not in
</td>
<td><code>
c=id_attribute::nin::value_x|value_y|value_z
</code></td>
<td><code>
c=1::nin::
TT_ECL|TT_GRM|TT_VT
</code></td>
<td><code>
c=1::nin::
ping|pong|paf
</code></td>
</tr>
<tr>
<td>
nl
</td>
@@ -155,24 +155,48 @@
<td>
js
</td>
<td>
json
</td>
<td><code>
c=id_attribute::js::extension,keyword|operator|value
</code></td>
<td><code>
c=1::js::PrimaryHDU,
OBS_
ID|eq|45
</code></td>
<td><code>
c=1::js::PrimaryHDU,ID|eq|45
</code></td>
</tr>
</table>
<h4>
Examples
</h4>
<blockquote>
{{ apiPath }}/search/l1?a=1;2;3
&
c=1::eq::1
</blockquote>
<p>
This will return the raw product with id equals to 1 and display its rawproduct_id, filename and level as
We supposed to have the dataset ping with following attributes:
<table
id=
"table"
>
<tr>
<th>
id
</th>
<th>
attribute
</th>
</tr>
<tr>
<td>
1
</td>
<td>
obs_id
</td>
</tr>
<tr>
<td>
2
</td>
<td>
ra
</td>
</tr>
<tr>
<td>
3
</td>
<td>
dec
</td>
</tr>
<tr>
<td>
4
</td>
<td>
instrument
</td>
</tr>
</table>
<blockquote>
{{ apiPath }}/search/ping?a=1;2;3
&
c=1::eq::1
</blockquote>
<p>
This will return the
<code>
obs_id
</code>
with its value equals to 1 and display
<code>
obs_id
</code>
,
<code>
RA
</code>
and
<code>
DEC
</code>
as
outputs.
</p>
<blockquote>
{{ apiPath }}/search/p
roducts
?a=1;2;3;4
;5;6;7;8;9;10
&
c=
3
::in::T
T_ECL|TT_GRM
{{ apiPath }}/search/p
ing
?a=1;2;3;4
&
c=
4
::in::T
EL_1|TEL_2
</blockquote>
<p>
This will return a list of
<code>
T
T_ECL
</code>
or
<code>
T
T_GRM
</code>
product
s with all available
<p>
This will return a list of
<code>
T
EL_1
</code>
or
<code>
T
EL_2
</code>
observation
s with all available
outputs.
</p>
<blockquote>
{{ apiPath }}/search/p
roducts
?a=1
&c=
3
::
eq::LAMTEST_DC
1;
5
::
js::PrimaryHDU,OBS_ID|nnl
{{ apiPath }}/search/p
ing
?a=1
&c=
2
::
gt::
1;
3
::
gt::2
</blockquote>
<p>
This will return a list of product id of
<code>
LAMTEST_DC1
</code>
scientific product where the searchable
keyword
<code>
OBS_ID
</code>
is not null.
</p>
<p>
This will return a list of
<code>
obs_id
</code>
where
<code>
RA
</code>
is greater than 1 and
<code>
DEC
</code>
is greater than 2
</p>
</div>
</div>
</div>
Loading