<?xml version="1.0" encoding="UTF-8"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
    <title>Max Katz-Christy - Canoeing</title>
    <subtitle>Just having fun</subtitle>
    <link rel="self" type="application/atom+xml" href="https://max.kcfam.us/tags/canoeing/atom.xml"/>
    <link rel="alternate" type="text/html" href="https://max.kcfam.us"/>
    <generator uri="https://www.getzola.org/">Zola</generator>
    <updated>2026-07-04T00:00:00+00:00</updated>
    <id>https://max.kcfam.us/tags/canoeing/atom.xml</id>
    <entry xml:lang="en">
        <title>KC Canoeing</title>
        <published>2026-07-04T00:00:00+00:00</published>
        <updated>2026-07-04T00:00:00+00:00</updated>
        
        <author>
          <name>
            Max Katz-Christy
          </name>
        </author>
        
        <link rel="alternate" type="text/html" href="https://max.kcfam.us/strava/kc-canoeing/"/>
        <id>https://max.kcfam.us/strava/kc-canoeing/</id>
        
        <content type="html" xml:base="https://max.kcfam.us/strava/kc-canoeing/">&lt;p&gt;Nina taught me and Mo a bit about how to paddle properly from her dragon boat expertise, while also criticizing my steering as we went for a little paddle.&lt;&#x2F;p&gt;
&lt;p&gt;We attempted to catch the West Bus from Ellsworth earlier in the day but failed… My theory is that it went to the stop early (we were there, but hiding in the shade around the corner). However, our reroute to Mo’s friends place here was not the worst turn of events.&lt;&#x2F;p&gt;
&lt;p&gt;Would be cool if I actually knew how to play banjo… Maybe I’ll learn the basics here.&lt;&#x2F;p&gt;
&lt;h2 id=&quot;stats&quot;&gt;Stats&lt;&#x2F;h2&gt;
&lt;table&gt;&lt;thead&gt;&lt;tr&gt;&lt;th&gt;&lt;&#x2F;th&gt;&lt;th&gt;&lt;&#x2F;th&gt;&lt;&#x2F;tr&gt;&lt;&#x2F;thead&gt;&lt;tbody&gt;
&lt;tr&gt;&lt;td&gt;&lt;strong&gt;Distance&lt;&#x2F;strong&gt;&lt;&#x2F;td&gt;&lt;td&gt;1.59 mi&lt;&#x2F;td&gt;&lt;&#x2F;tr&gt;
&lt;tr&gt;&lt;td&gt;&lt;strong&gt;Moving time&lt;&#x2F;strong&gt;&lt;&#x2F;td&gt;&lt;td&gt;36m 54s&lt;&#x2F;td&gt;&lt;&#x2F;tr&gt;
&lt;tr&gt;&lt;td&gt;&lt;strong&gt;Elapsed time&lt;&#x2F;strong&gt;&lt;&#x2F;td&gt;&lt;td&gt;55m 50s&lt;&#x2F;td&gt;&lt;&#x2F;tr&gt;
&lt;tr&gt;&lt;td&gt;&lt;strong&gt;Elevation gain&lt;&#x2F;strong&gt;&lt;&#x2F;td&gt;&lt;td&gt;20 ft&lt;&#x2F;td&gt;&lt;&#x2F;tr&gt;
&lt;tr&gt;&lt;td&gt;&lt;strong&gt;Average speed&lt;&#x2F;strong&gt;&lt;&#x2F;td&gt;&lt;td&gt;2.6 mph&lt;&#x2F;td&gt;&lt;&#x2F;tr&gt;
&lt;&#x2F;tbody&gt;&lt;&#x2F;table&gt;
&lt;h2 id=&quot;route&quot;&gt;Route&lt;&#x2F;h2&gt;
&lt;script&gt;
(function () {
  function injectLink(href, id) {
    if (document.getElementById(id)) return;
    var link = document.createElement(&#x27;link&#x27;);
    link.rel = &#x27;stylesheet&#x27;; link.href = href; link.id = id;
    document.head.appendChild(link);
  }
  injectLink(&#x27;https:&#x2F;&#x2F;unpkg.com&#x2F;leaflet@1.9.4&#x2F;dist&#x2F;leaflet.css&#x27;, &#x27;leaflet-css&#x27;);
  injectLink(&#x27;&#x2F;leaflet-fix.css&#x27;, &#x27;leaflet-fix-css&#x27;);
})();
&lt;&#x2F;script&gt;
&lt;script src=&quot;https:&#x2F;&#x2F;unpkg.com&#x2F;leaflet@1.9.4&#x2F;dist&#x2F;leaflet.js&quot; crossorigin=&quot;&quot;&gt;&lt;&#x2F;script&gt;


&lt;style&gt;#strava-map .leaflet-tile { border-radius: 0 !important; }&lt;&#x2F;style&gt;
&lt;div id=&quot;strava-map&quot; style=&quot;height:400px;width:100%;border-radius:8px;margin:1rem 0;&quot;&gt;&lt;&#x2F;div&gt;

&lt;script&gt;
(function () {
  function init() {
    var map = L.map(&#x27;strava-map&#x27;, { zoomControl: true });
    var dark = window.matchMedia &amp;&amp; window.matchMedia(&#x27;(prefers-color-scheme: dark)&#x27;).matches;
    var tileUrl = dark
      ? &#x27;https:&#x2F;&#x2F;{s}.basemaps.cartocdn.com&#x2F;dark_all&#x2F;{z}&#x2F;{x}&#x2F;{y}.png&#x27;
      : &#x27;https:&#x2F;&#x2F;{s}.tile.osm.org&#x2F;{z}&#x2F;{x}&#x2F;{y}.png&#x27;;
    L.tileLayer(tileUrl, {
      attribution: &#x27;&amp;copy; &lt;a href=&quot;https:&#x2F;&#x2F;www.openstreetmap.org&#x2F;copyright&quot;&gt;OpenStreetMap&lt;&#x2F;a&gt; contributors&#x27;,
      maxZoom: 19
    }).addTo(map);

    fetch(&#x27;.&#x2F;route.geojson&#x27;)
      .then(function (r) { return r.json(); })
      .then(function (data) {
        var routeLayer = L.geoJSON(data, {
          style: { color: &#x27;#22c55e&#x27;, weight: 3, opacity: 0.9 }
        }).addTo(map);
        map.fitBounds(routeLayer.getBounds(), { padding: [20, 20] });
      });
  }

  if (document.readyState === &#x27;loading&#x27;) {
    document.addEventListener(&#x27;DOMContentLoaded&#x27;, init);
  } else {
    init();
  }
})();
&lt;&#x2F;script&gt;
&lt;p&gt;&lt;a rel=&quot;noopener external&quot; target=&quot;_blank&quot; href=&quot;https:&#x2F;&#x2F;www.strava.com&#x2F;activities&#x2F;19183032745&quot;&gt;View on Strava&lt;&#x2F;a&gt;&lt;&#x2F;p&gt;
&lt;h2 id=&quot;photos&quot;&gt;Photos&lt;&#x2F;h2&gt;
&lt;p&gt;&lt;img src=&quot;https:&#x2F;&#x2F;max.kcfam.us&#x2F;strava&#x2F;kc-canoeing&#x2F;banner.jpg&quot; alt=&quot;Activity photo&quot; &#x2F;&gt;&lt;&#x2F;p&gt;
&lt;p&gt;&lt;img src=&quot;https:&#x2F;&#x2F;dgtzuqphqg23d.cloudfront.net&#x2F;ngNzzofveQaEm3LcZiw_10W8nvpKtRgouG-ZEcA54GE-2048x1536.jpg&quot; alt=&quot;Activity photo&quot; &#x2F;&gt;&lt;&#x2F;p&gt;
&lt;p&gt;&lt;img src=&quot;https:&#x2F;&#x2F;dgtzuqphqg23d.cloudfront.net&#x2F;vvPQ6eiXjXCNedXmO0rkn1dLKwRdFxmrlFk8xRrt3xs-1152x2048.jpg&quot; alt=&quot;Activity photo&quot; &#x2F;&gt;&lt;&#x2F;p&gt;
&lt;p&gt;&lt;img src=&quot;https:&#x2F;&#x2F;dgtzuqphqg23d.cloudfront.net&#x2F;MeDvK07rdQegPy49FT5NQrWrmUObc-ZHvAxrSBzNevk-1152x2048.jpg&quot; alt=&quot;Activity photo&quot; &#x2F;&gt;&lt;&#x2F;p&gt;
&lt;p&gt;&lt;img src=&quot;https:&#x2F;&#x2F;dgtzuqphqg23d.cloudfront.net&#x2F;Kq7X1wfcVUz4Ydx8O2wv4NYJtgmIYd7swp1WwSzfaA0-2048x1536.jpg&quot; alt=&quot;Activity photo&quot; &#x2F;&gt;&lt;&#x2F;p&gt;
</content>
        
    </entry>
</feed>
