From 33d524bcc56ec37a41a8ad86e0a3fde08022a8f2 Mon Sep 17 00:00:00 2001 From: Jens True Date: Sun, 6 Jun 2021 14:22:15 +0200 Subject: [PATCH] Work in progress on sailing library --- ...899 (1).jpg => IMG_20180606_195128899.jpg} | Bin content/sail-library/_index.md | 53 ++++++++++++++++++ content/sail-library/instruments/_index.md | 6 ++ .../sail-library/instruments/abbreviations.md | 29 ++++++++++ content/sail-library/rules/_index.md | 6 ++ content/sail-library/rules/flowchart.md | 17 ++++++ go.mod | 2 +- go.sum | 2 + 8 files changed, 114 insertions(+), 1 deletion(-) rename assets/media/albums/sailingpics/{IMG_20180606_195128899 (1).jpg => IMG_20180606_195128899.jpg} (100%) create mode 100644 content/sail-library/_index.md create mode 100644 content/sail-library/instruments/_index.md create mode 100644 content/sail-library/instruments/abbreviations.md create mode 100644 content/sail-library/rules/_index.md create mode 100644 content/sail-library/rules/flowchart.md diff --git a/assets/media/albums/sailingpics/IMG_20180606_195128899 (1).jpg b/assets/media/albums/sailingpics/IMG_20180606_195128899.jpg similarity index 100% rename from assets/media/albums/sailingpics/IMG_20180606_195128899 (1).jpg rename to assets/media/albums/sailingpics/IMG_20180606_195128899.jpg diff --git a/content/sail-library/_index.md b/content/sail-library/_index.md new file mode 100644 index 0000000..ff8fc83 --- /dev/null +++ b/content/sail-library/_index.md @@ -0,0 +1,53 @@ +--- +# Page title +title: Sail Racing Library + +# Title for the menu link if you wish to use a shorter link title, otherwise remove this option. +linktitle: Sailing Library + +# Page summary for search engines. +summary: Terms, abbreviations, ticks, tricks and much more related to sailboat racing. + +# Date page published +date: 2021-05-23 + +# Academic page type (do not modify). +type: book + +# Position of this page in the menu. Remove this option to sort alphabetically. +weight: 1 +--- + +- Instruments + - Abbreviations + - NMEA0183/NMEA2000 + - Smart phone apps + - Notes on instruments +- Rules + - Offical rule links + - Reading guidelines + - Flowcharts + - Protest Hearings + - Rule 42 +- Racing + - The race course + - Terms + - Lifts/Headers + - Current + - Handicap systems + - Boat optimizations +- Crew positions + - Bow + - Mast + - Pit + - Trimmer + - Tailor + - Mainsail + - Helmsman + - Navigator/Tactician +- Dinghy Sailing +- Sails + - Main + - Jib/Genoa + - Downwind sails + - Others (Code, Drifter, Blooper, Staysail) \ No newline at end of file diff --git a/content/sail-library/instruments/_index.md b/content/sail-library/instruments/_index.md new file mode 100644 index 0000000..c6ad4f0 --- /dev/null +++ b/content/sail-library/instruments/_index.md @@ -0,0 +1,6 @@ +--- +title: Instruments +date: 2021-05-23 +type: book +weight: 1 +--- \ No newline at end of file diff --git a/content/sail-library/instruments/abbreviations.md b/content/sail-library/instruments/abbreviations.md new file mode 100644 index 0000000..8aadd02 --- /dev/null +++ b/content/sail-library/instruments/abbreviations.md @@ -0,0 +1,29 @@ +--- +title: "Abbreviations" +summary: "Making sense of TWA, AWA, TWD, BS etc etc." +date: 2021-05-23T20:08:17+02:00 +type: book +------ +# Sailing Instruments + + + +| Abbreviation | Technical name | Description | +|---------------|----------------|-------------| +| AWA | Apparent Wind Angle | Wind angle as seen onboard the boat +| AWS | Apparent Wind Speed | Wind speed as seen onboard the boat +| TWA | True Wind Angle | Wind angle compensated for the movement of the boat +| TWS | True Wind Speed | Wind speed compensated for the movement of the boat +| TWD | True Wind Direction | The magnetic orientation of the wind over ground | +| GWD | Ground Wind Direction | The magnetic orientation of the wind (Same as TWD) | +| BS | Boat Speed | Speed of the hull through the water | +| VS | Velocity (Speed) | Speed of the hull through the water (Same as BS) | +| SOG | Speed Over Ground | Speed from the GPS sensor | +| HDG | Heading | Magnetic orientation of the bow. | +| COG | Course Over Ground | GPS direction the boat is moving | +| VMG | Velocity Made Good | How fast the is boat moving towards (or away) the direction of the wind. +| CMG | Course Made Good | How fast the boat is moving towards the waypoint. +| DTG | Distance To Go | Distance to next waypoint | +| DTM | Distance To Mark | Distance to next mark (Same as DTG) | +| TTG | Time To Go | Time to reach next waypoint +| TTM | Time To Mark | Time to reach next mark (Same as TTG) | diff --git a/content/sail-library/rules/_index.md b/content/sail-library/rules/_index.md new file mode 100644 index 0000000..512d827 --- /dev/null +++ b/content/sail-library/rules/_index.md @@ -0,0 +1,6 @@ +--- +title: Rules +date: 2021-05-23 +type: book +weight: 1 +--- \ No newline at end of file diff --git a/content/sail-library/rules/flowchart.md b/content/sail-library/rules/flowchart.md new file mode 100644 index 0000000..2856a22 --- /dev/null +++ b/content/sail-library/rules/flowchart.md @@ -0,0 +1,17 @@ +--- +title: Rule flowchart +date: 2021-05-23 +type: book +weight: 1 +--- + +```mermaid +graph TD + Start[Started] --> B{Same tack?}; + B -- Yes --> C[Overlapped]; + B -- No --> D[Non overlapped] + C --> D[Rethink]; + D --> B; + B -- No ----> E[End]; +``` + diff --git a/go.mod b/go.mod index f79b565..45aed84 100644 --- a/go.mod +++ b/go.mod @@ -3,6 +3,6 @@ module code.jcktrue.dk/jct/jcktrue.dk go 1.15 require ( - github.com/wowchemy/wowchemy-hugo-modules/wowchemy v0.0.0-20210531181349-70cef473aec5 // indirect + github.com/wowchemy/wowchemy-hugo-modules/wowchemy v0.0.0-20210604173804-c0d8f2a41a8e // indirect github.com/wowchemy/wowchemy-hugo-modules/wowchemy-cms v0.0.0-20210425191248-0afcc81296de // indirect ) diff --git a/go.sum b/go.sum index 1903a51..3f3b37a 100644 --- a/go.sum +++ b/go.sum @@ -42,5 +42,7 @@ github.com/wowchemy/wowchemy-hugo-modules/wowchemy v0.0.0-20210526223849-81ba175 github.com/wowchemy/wowchemy-hugo-modules/wowchemy v0.0.0-20210526223849-81ba17522966/go.mod h1:H22qfH9qj3FWwsk7+bAZpmT24yRGNQURah2/IRwjbn8= github.com/wowchemy/wowchemy-hugo-modules/wowchemy v0.0.0-20210531181349-70cef473aec5 h1:Ew4ZlIU/Yn2oh4RLlLzaGXFXpLOOPZRRy2Qa7LroRs8= github.com/wowchemy/wowchemy-hugo-modules/wowchemy v0.0.0-20210531181349-70cef473aec5/go.mod h1:H22qfH9qj3FWwsk7+bAZpmT24yRGNQURah2/IRwjbn8= +github.com/wowchemy/wowchemy-hugo-modules/wowchemy v0.0.0-20210604173804-c0d8f2a41a8e h1:jdQ5yczffpGdCzuC+EqSAiyCKCl3wcgqLJ3bcFXv6w0= +github.com/wowchemy/wowchemy-hugo-modules/wowchemy v0.0.0-20210604173804-c0d8f2a41a8e/go.mod h1:H22qfH9qj3FWwsk7+bAZpmT24yRGNQURah2/IRwjbn8= github.com/wowchemy/wowchemy-hugo-modules/wowchemy-cms v0.0.0-20210425191248-0afcc81296de h1:J7MkieFVezVdQHtAvCOvAAaUv83oVMRqWzt7qkkUlPw= github.com/wowchemy/wowchemy-hugo-modules/wowchemy-cms v0.0.0-20210425191248-0afcc81296de/go.mod h1:AKpYbqUVlj0VYsc7Jsxe1o8Ko2yV31A5ZPdfpACcXJw=