Skip to content

Commit d043ad6

Browse files
committed
fix notes and tips formatting
1 parent 44adf03 commit d043ad6

1 file changed

Lines changed: 31 additions & 21 deletions

File tree

docs/user-guide/quickstart.md

Lines changed: 31 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,9 @@ This guide is intended to give a basic overview of how to plan, initialise and e
66

77
## Expedition route planning
88

9-
> [!NOTE]
10-
> This section describes the _custom_ expedition route planning procedure. There is also an option to proceed without your own route and you can instead use an example route, schedule and selection of measurements (see [Initialise the expedition](#initialise-the-expedition) for more details).
9+
```{note}
10+
This section describes the _custom_ expedition route planning procedure. There is also an option to proceed without your own route and you can instead use an example route, schedule and selection of measurements (see [Initialise the expedition](#initialise-the-expedition) for more details).
11+
```
1112

1213
### NIOZ MFP tool
1314

@@ -25,23 +26,26 @@ Once you have finalised your MFP expedition route, select "Export" on the right
2526

2627
## Expedition initialisation
2728

28-
> [!NOTE]
29-
> VirtualShip is a command line interface (CLI) based tool. From this point on in the Quickstart we will be working predominantly via the command line.
30-
> If you are unfamiliar with what a CLI is, see [here](https://www.w3schools.com/whatis/whatis_cli.asp) for more information.
29+
```{note}
30+
VirtualShip is a command line interface (CLI) based tool. From this point on in the Quickstart we will be working predominantly via the command line.
31+
If you are unfamiliar with what a CLI is, see [here](https://www.w3schools.com/whatis/whatis_cli.asp) for more information.
32+
```
3133

3234
You should now navigate to where you would like your expedition to be run on your (virtual) machine (i.e. `cd path/to/expedition/dir/`). Then run the following command in your CLI:
3335

3436
```
3537
virtualship init EXPEDITION_NAME --from-mfp CoordinatesExport.xslx
3638
```
3739

38-
> [!TIP]
39-
> The `CoordinatesExport.xslx` in the `virtualship init` command refers to the .xslx file exported from MFP. Replace the filename with the name of your exported .xslx file (and make sure to move it from the Downloads to the folder/directory in which you are running the expedition).
40+
```{tip}
41+
The `CoordinatesExport.xslx` in the `virtualship init` command refers to the .xslx file exported from MFP. Replace the filename with the name of your exported .xslx file (and make sure to move it from the Downloads to the folder/directory in which you are running the expedition).
42+
```
4043

4144
This will create a folder/directory called `EXPEDITION_NAME` with two files: `schedule.yaml` and `ship_config.yaml` based on the sampling site coordinates that you specified in your MFP export. The `--from-mfp` flag indictates that the exported coordinates will be used.
4245

43-
> [!NOTE]
44-
> It is also possible to run the expedition initialisation step without an MFP .xslx export file. In this case you should simply run `virtualship init EXPEDITION_NAME` in the CLI. This will write example `schedule.yaml` and `ship_config.yaml` files in the `EXPEDITION_NAME` folder/directory. These files contain example waypoints, timings and instrument selections, but can be edited or propagated through the rest of the workflow unedited to run a sample expedition.
46+
```{note}
47+
It is also possible to run the expedition initialisation step without an MFP .xslx export file. In this case you should simply run `virtualship init EXPEDITION_NAME` in the CLI. This will write example `schedule.yaml` and `ship_config.yaml` files in the `EXPEDITION_NAME` folder/directory. These files contain example waypoints, timings and instrument selections, but can be edited or propagated through the rest of the workflow unedited to run a sample expedition.
48+
```
4549

4650
## Expedition scheduling & ship configuration
4751

@@ -51,8 +55,9 @@ The next step is to finalise the expedition schedule plan, including setting tim
5155
virtualship plan EXPEDITION_NAME
5256
```
5357

54-
> [!TIP]
55-
> Using the `virtualship plan` tool is optional. Advanced users can also edit the `schedule.yaml` and `ship_config.yaml` files directly if preferred.
58+
```{tip}
59+
Using the `virtualship plan` tool is optional. Advanced users can also edit the `schedule.yaml` and `ship_config.yaml` files directly if preferred.
60+
```
5661

5762
The planning tool should look something like this and offers an intuitive way to make your selections:
5863

@@ -74,30 +79,35 @@ You will need to enter dates and times for each of the sampling stations/waypoin
7479

7580
Each waypoint has its own sub-panel for parameter inputs (click on it to expand the selection options). Here, the time for each waypoint can be inputted. There is also an option to adjust the latitude/longitude coordinates and you can add or remove waypoints.
7681

77-
> [!NOTE]
78-
> It is important to ensure that the timings for each station are realistic. There must be enough time for the ship to travel to each site at a realistic speed (~ 10 knots). The expedition schedule (and the ship's configuration) will be automatically verified when you press _Save Changes_ in the planning tool.
82+
```{note}
83+
It is important to ensure that the timings for each station are realistic. There must be enough time for the ship to travel to each site at a realistic speed (~ 10 knots). The expedition schedule (and the ship's configuration) will be automatically verified when you press _Save Changes_ in the planning tool.
84+
```
7985

80-
> [!TIP]
81-
> The MFP planning tool will give estimated durations of sailing between sites, usually at an assumed 10 knots sailing speed. This can be useful to refer back to when planning the expedition timings and entering these into planning tool.
86+
```{tip}
87+
The MFP planning tool will give estimated durations of sailing between sites, usually at an assumed 10 knots sailing speed. This can be useful to refer back to when planning the expedition timings and entering these into planning tool.
88+
```
8289

8390
### Instrument selection
8491

8592
You should now consider which measurements are to be taken at each sampling site, and therefore which instruments selections will be required.
8693

87-
> [!TIP]
88-
> Click [here](https://virtualship.readthedocs.io/en/latest/user-guide/assignments/Research_proposal_intro.html#Measurement-Options) for more information on what measurement options are available, and a brief introduction to each instrument.
94+
```{tip}
95+
Click [here](https://virtualship.readthedocs.io/en/latest/user-guide/assignments/Research_proposal_intro.html#Measurement-Options) for more information on what measurement options are available, and a brief introduction to each instrument.
96+
```
8997

9098
Instrument selections can be made for each waypoint in the same sub-panels as the [waypoint time](#waypoint-datetimes) selection by simply switching each on or off. Multiple instruments are allowed at each waypoint.
9199

92-
> [!NOTE]
93-
> For advanced users only: you can also make further customisations to behaviours of all instruments under _Ship Config Editor_ > _Instrument Configurations_.
100+
```{note}
101+
For advanced users only: you can also make further customisations to behaviours of all instruments under _Ship Config Editor_ > _Instrument Configurations_.
102+
```
94103

95104
### Save changes
96105

97106
When you are happy with your ship configuration and schedule plan, press _Save Changes_.
98107

99-
> [!NOTE]
100-
> On pressing _Save Changes_ the tool will check the selections are valid (for example the ship will be able to reach each waypoint in time). If they are, the changes will be saves to the `ship_config.yaml` and `schedule.yaml` files, ready for the next steps. If your selections are invalid you should be provided with information on how to fix them.
108+
```{note}
109+
On pressing _Save Changes_ the tool will check the selections are valid (for example the ship will be able to reach each waypoint in time). If they are, the changes will be saves to the `ship_config.yaml` and `schedule.yaml` files, ready for the next steps. If your selections are invalid you should be provided with information on how to fix them.
110+
```
101111

102112
## Fetch the data
103113

0 commit comments

Comments
 (0)