From ea23f047b628eb4b1e73531bbde1d6ca9303580c Mon Sep 17 00:00:00 2001
From: jeffyactive <jeff@reelyactive.com>
Date: Tue, 23 Apr 2024 07:16:48 -0400
Subject: [PATCH] Added sierraround

---
 common/js/trekungen.js               |  3 ++
 sierraround/README.md                |  4 +++
 sierraround/geojson/overview.geojson | 45 ++++++++++++++++++++++++++++
 sierraround/overview.json            |  4 +++
 4 files changed, 56 insertions(+)
 create mode 100644 sierraround/README.md
 create mode 100644 sierraround/geojson/overview.geojson
 create mode 100644 sierraround/overview.json

diff --git a/common/js/trekungen.js b/common/js/trekungen.js
index c02aec3..c748392 100644
--- a/common/js/trekungen.js
+++ b/common/js/trekungen.js
@@ -21,6 +21,9 @@ fetch(BASE_PATH + 'denvegaser/geojson/overview.geojson')
 fetch(BASE_PATH + 'via603/geojson/overview.geojson')
     .then((response) => response.json())
     .then((json) => vectorSource.addFeatures(new GeoJSON().readFeatures(json)));
+fetch(BASE_PATH + 'sierraround/geojson/overview.geojson')
+    .then((response) => response.json())
+    .then((json) => vectorSource.addFeatures(new GeoJSON().readFeatures(json)));
 fetch(BASE_PATH + 'amtrak8/geojson/overview.geojson')
     .then((response) => response.json())
     .then((json) => vectorSource.addFeatures(new GeoJSON().readFeatures(json)));
diff --git a/sierraround/README.md b/sierraround/README.md
new file mode 100644
index 0000000..1568eee
--- /dev/null
+++ b/sierraround/README.md
@@ -0,0 +1,4 @@
+sierraround
+===========
+
+Circling the Sierra Nevada on scenic byways.
\ No newline at end of file
diff --git a/sierraround/geojson/overview.geojson b/sierraround/geojson/overview.geojson
new file mode 100644
index 0000000..3ca019d
--- /dev/null
+++ b/sierraround/geojson/overview.geojson
@@ -0,0 +1,45 @@
+{
+  "type": "FeatureCollection",
+  "crs": {
+    "type": "name",
+    "properties": {
+      "name": "EPSG:4326"
+    }
+  },
+  "features": [
+    {
+      "type": "Feature",
+      "geometry": {
+        "type": "Point",
+        "coordinates": [-122.41998, 37.77917]
+      },
+      "properties": { "trek": "sierraround" }
+    },
+    {
+      "type": "Feature",
+      "geometry": {
+        "type": "LineString",
+        "coordinates": [
+          [-122.41998, 37.77917],
+          [-122.90513, 38.24199],
+          [-122.4724, 38.4056],
+          [-121.4949, 38.5770],
+          [-119.81353, 39.52766],
+          [-119.9486, 39.0465],
+          [-119.0269, 37.9387],
+          [-116.7341, 36.1050],
+          [-116.75933, 36.90840],
+          [-117.42741, 35.66544],
+          [-119.0533, 35.7621],
+          [-119.0788, 36.3257],
+          [-118.73444, 36.60480],
+          [-119.78509, 36.73924],
+          [-119.58418, 37.74591],
+          [-121.5545, 37.0036],
+          [-122.41998, 37.77917]
+        ]
+      },
+      "properties": { "trek": "sierraround" }
+    }
+  ]
+}
\ No newline at end of file
diff --git a/sierraround/overview.json b/sierraround/overview.json
new file mode 100644
index 0000000..299d410
--- /dev/null
+++ b/sierraround/overview.json
@@ -0,0 +1,4 @@
+{
+  "title": "Circling the Sierra Nevada on scenic byways",
+  "youtube": "https://www.youtube.com/embed/videoseries?si=ydQ6vAtSZUDod6Qn&amp;list=PLuoY9uzz-lDF96BOGraBNru7ITVb2Ri0M"
+}
\ No newline at end of file