Skip to content

Commit

Permalink
Added phoever
Browse files Browse the repository at this point in the history
  • Loading branch information
jeffyactive committed Apr 24, 2024
1 parent ea23f04 commit 7a56c01
Show file tree
Hide file tree
Showing 4 changed files with 69 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 @@ -24,6 +24,9 @@ fetch(BASE_PATH + 'via603/geojson/overview.geojson')
fetch(BASE_PATH + 'sierraround/geojson/overview.geojson')
.then((response) => response.json())
.then((json) => vectorSource.addFeatures(new GeoJSON().readFeatures(json)));
fetch(BASE_PATH + 'phoever/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 phoever/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
phoever
=======

Phoenix to Denver on scenic byways.
58 changes: 58 additions & 0 deletions phoever/geojson/overview.geojson
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
{
"type": "FeatureCollection",
"crs": {
"type": "name",
"properties": {
"name": "EPSG:4326"
}
},
"features": [
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [-112.07383, 33.44775]
},
"properties": { "trek": "phoever" }
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [-104.98486, 39.73924]
},
"properties": { "trek": "phoever" }
},
{
"type": "Feature",
"geometry": {
"type": "LineString",
"coordinates": [
[-112.07383, 33.44775],
[-111.5501, 33.4147],
[-111.1530, 33.6725],
[-110.8286, 33.4163],
[-109.7078, 32.8343],
[-109.2299, 32.9483],
[-109.3703, 33.4463],
[-109.1465, 33.8484],
[-109.8925, 34.7910],
[-109.7819, 35.0601],
[-109.4360, 35.1905],
[-109.5385, 36.1537],
[-109.6150, 36.9253],
[-109.0410, 36.9933],
[-108.5882, 37.3486],
[-107.8850, 37.2685],
[-107.8777, 38.4788],
[-106.0804, 38.5205],
[-106.29274, 39.25115],
[-106.0964, 39.5927],
[-105.9936, 39.2213],
[-104.98486, 39.73924]
]
},
"properties": { "trek": "phoever" }
}
]
}
4 changes: 4 additions & 0 deletions phoever/overview.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"title": "Phoenix to Denver on scenic byways",
"youtube": "https://www.youtube.com/embed/videoseries?si=oTGtzM8X1CQSAuvV&list=PLuoY9uzz-lDEeAPS9a_OovqSLy1prRWsj"
}

0 comments on commit 7a56c01

Please sign in to comment.