Skip to content

Commit

Permalink
Added sierraround
Browse files Browse the repository at this point in the history
  • Loading branch information
jeffyactive committed Apr 23, 2024
1 parent add35c2 commit ea23f04
Show file tree
Hide file tree
Showing 4 changed files with 56 additions and 0 deletions.
3 changes: 3 additions & 0 deletions common/js/trekungen.js
Original file line number Diff line number Diff line change
Expand Up @@ -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)));
Expand Down
4 changes: 4 additions & 0 deletions sierraround/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
sierraround
===========

Circling the Sierra Nevada on scenic byways.
45 changes: 45 additions & 0 deletions sierraround/geojson/overview.geojson
Original file line number Diff line number Diff line change
@@ -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" }
}
]
}
4 changes: 4 additions & 0 deletions sierraround/overview.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"title": "Circling the Sierra Nevada on scenic byways",
"youtube": "https://www.youtube.com/embed/videoseries?si=ydQ6vAtSZUDod6Qn&list=PLuoY9uzz-lDF96BOGraBNru7ITVb2Ri0M"
}

0 comments on commit ea23f04

Please sign in to comment.