EOX GitLab Instance
Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
V
VS
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Container registry
Model registry
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor 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
Show more breadcrumbs
ESA
PRISM
VS
Commits
87b06ed0
Commit
87b06ed0
authored
4 years ago
by
Fabian Schindler
Browse files
Options
Downloads
Patches
Plain Diff
Imrpvements to ingestion
parent
8a4fcefa
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
documentation/operator-guide/ingestion.rst
+40
-0
40 additions, 0 deletions
documentation/operator-guide/ingestion.rst
with
40 additions
and
0 deletions
documentation/operator-guide/ingestion.rst
+
40
−
0
View file @
87b06ed0
...
...
@@ -233,3 +233,43 @@ The reverse command excludes a product from a collection:
manage.py collection exclude <collection-id> <product-id>
Again, multiple products can be excluded in a single call.
Product Handling
~~~~~~~~~~~~~~~~
Registration
Products can be registered using the EOxServer CLI tools as well.
.. code-block:: bash
manage.py product register \
--metadata-file data25 /OA/PL00/1.0/00/urn:eop:DOVE:MULTISPECTRAL_4m:20180811_081455_1054_3be7/0001/PL00_DOV_MS_L3A_20180811T081455_20180811T081455_TOU_1234_3be7.DIMA.tar/metadata.xml \
--print-identifier \
--type PL00
The identifier of the newly registered product is printed to the console and
can be used to put it into a collection. Additionally, it is necessary to add
a coverage to it, which can be registered like:
.. code-block:: bash
manage.py coverage register \
-d data25 /OA/PL00/1.0/00/urn:eop:DOVE:MULTISPECTRAL_4m:20180811_081455_1054_3be7/0001/PL00_DOV_MS_L3A_20180811T081455_20180811T081455_TOU_1234_3be7.DIMA.tar/some.tif \
-m data25 /OA/PL00/1.0/00/urn:eop:DOVE:MULTISPECTRAL_4m:20180811_081455_1054_3be7/0001/PL00_DOV_MS_L3A_20180811T081455_20180811T081455_TOU_1234_3be7.DIMA.tar/metadata.xml \
--identifier "${product_id}_coverage" \
--type RGBNir
Deregistration
Products and coverages need to be derigestered when no longer in use. A
product can be deregistered using its identifier:
.. code-block:: bash
manage.py product deregister "${product_id}"
The contained coverage must also be deregistered manually:
.. code-block:: bash
manage.py coverage deregister "${product_id}_coverage"
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment