Skip to content

Commit

Permalink
Updated satellite import and region of interest sections
Browse files Browse the repository at this point in the history
  • Loading branch information
fcollas committed Dec 20, 2023
1 parent 6e7b942 commit 3175a3f
Show file tree
Hide file tree
Showing 17 changed files with 169 additions and 2,217 deletions.
6 changes: 3 additions & 3 deletions apps/standalone/wavyDownload.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,12 @@
@click.command(context_settings={"ignore_unknown_options": True})
@click.option('--sd', type=str, default=datetime.now()-timedelta(hours=24),
help='starting date and time of your query e.g.: 2023-10-1 00')
@click.option('--ed', type=str, default=datetime.now())
@click.option('--ed', type=str, default=datetime.now(),
help='ending date and time of your query e.g.: 2023-10-10 00')
@click.option('--nID', type=str,
help='nID as specified in satellite_cfg.yaml')
@click.option('--name', type=str)
help='name as specified in satellite_cfg.yaml,
@click.option('--name', type=str,
help='name as specified in satellite_cfg.yaml,\
if name equals "all", all names from chosen nID are considered')
@click.option('--nproc', type=int, default=4,
help='chosen number of simultaneous processes')
Expand Down
1 change: 0 additions & 1 deletion docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,6 @@ Contents

installation
tutorials
workshops
gallery
autoapi/index

Expand Down
3 changes: 2 additions & 1 deletion docs/installation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -41,10 +41,11 @@ Now, append wavy root directory to $PYTHONPATH, for instance add the following t

My user *patrikb* was used in this example. This will be the case in more examples and needs to be adjusted for other users.

Either create a xdg project path or an .env file in your project directory and point to the location where you plan to store your custom config files. Your .env-file could look like:
Either create a xdg project path or an .env file in your project directory and point to the location where you plan to store your custom config files, as well as your wavy directory. Your .env-file could look like:

.. code-block:: bash
WAVY_CONFIG=path/to/your/config/files
WAVY_DIR=/path/to/your/wavy/
How to start your own project and how to manage the config files is explained in a separate tutorial.
Loading

0 comments on commit 3175a3f

Please sign in to comment.