Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 8 additions & 4 deletions user_doc/seacharts_user_doc.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,9 @@ If you need weather functionality:
git clone https://github.com/SanityRemnants/PyThor
cd PyThor
conda create --name <envname> --file requirements.txt
conda activate -n <envname>
python app.py
conda activate -n <envname>
python setup.py install
python -m PyThor -a <addr> -p <port>
```

## Configuration Setup
Expand Down Expand Up @@ -143,13 +144,16 @@ display:
```

### PyThor Configuration
For Copernicus marine data access (sea currents and tides), configure PyThor:
For Copernicus marine data access (sea currents and tides), configure PyThor in pythor config file:

```yaml
coppernicus_account:
username: "your_username" # Copernicus marine account username
password: "your_password" # Copernicus marine account password
resolution: float # Output data resolution in degrees
resolution: float # Output data resolution in degrees
land_treshhold: float # Treshhold used to determine where is the land after interpolation
clear_cache: Boolean # Whether to clear program cache after exit

```

## ENC Class for Maritime Spatial Data
Expand Down