Skip to content

Commit aeefa3b

Browse files
committed
surfspots: Add burlington bridge in Hamilton
1 parent 89925d7 commit aeefa3b

File tree

1 file changed

+24
-1
lines changed

1 file changed

+24
-1
lines changed

src/surfspots.js

Lines changed: 24 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@ const oshawa = {
4040
]
4141
}
4242

43+
4344
const mavs = {
4445
slug: 'minimavs',
4546
"name": "Mini Mavs (Bluffer's Park)",
@@ -60,6 +61,28 @@ const mavs = {
6061
name: "Ajax Buoy"}
6162
]
6263
}
63-
const Breaks =[abay, oshawa, mavs];
64+
65+
const burlbridge = {
66+
slug: 'burlbridge',
67+
"name": "Burlington Bridge",
68+
"lat":123.456,
69+
"long": -456.789,
70+
"directions": [[0,10,"bad"], [10,30,"shoulder"], [30,150,"good"],[150,180,"shoulder"],[180,360,"bad"]],
71+
"qualityPeaks": [ [0,"bad"], [85, "good"], [170, "bad"], [290, "bad"] ],
72+
"minHeight": 0.85,
73+
sources: [
74+
{type: "glosPoint",
75+
sourceid: null,
76+
// TODO: seems like thisis part of the definition of the type
77+
78+
//timeseries: ['wdir', 'wsp']
79+
},
80+
{type: "glosBuoy",
81+
sourceid: 45159,
82+
name: "Ajax Buoy"}
83+
]
84+
}
85+
86+
const Breaks =[abay, oshawa, mavs, burlbridge];
6487

6588
export default Breaks;

0 commit comments

Comments
 (0)