diff options
author | Blaise Thompson <blaise@localhost.localdomain> | 2025-06-04 17:47:15 -0500 |
---|---|---|
committer | Blaise Thompson <blaise@localhost.localdomain> | 2025-06-04 17:47:15 -0500 |
commit | e0b17c12b3b252f0594f567aa6dbcd0559fb949e (patch) | |
tree | 74d4fa232487cfc1f3c095732193a488b26f558c /memories | |
parent | 73f3972e969355de9d2a9046f92c4ddfd5d229c6 (diff) |
Diffstat (limited to 'memories')
-rw-r--r-- | memories/2025-nyc/index.md | 17 | ||||
-rw-r--r-- | memories/2025-nyc/lego.jpg | bin | 0 -> 3698669 bytes | |||
-rw-r--r-- | memories/2025-nyc/map.html | 69 | ||||
-rw-r--r-- | memories/2025-nyc/map.py | 4 | ||||
-rw-r--r-- | memories/2025-nyc/new-yorker.jpg | bin | 0 -> 2593248 bytes |
5 files changed, 90 insertions, 0 deletions
diff --git a/memories/2025-nyc/index.md b/memories/2025-nyc/index.md index aa78fba..675b488 100644 --- a/memories/2025-nyc/index.md +++ b/memories/2025-nyc/index.md @@ -131,6 +131,8 @@ We arrived at Penn Station, enjoying the brand new intercity train hall, and cau We focused on visiting places that mom frequently visited during her time at Columbia. +<iframe src="map.html" title="Map" width=100% height=1000></iframe> + ## Butler Hall Thanks to Mom's alumni status, we were able to secure accomidation in Butler Hall---one of the dorms owned by Columbia. @@ -228,6 +230,21 @@ Delicious food. # 2025-05-22 Thursday +A day of tourism. +We visited the New York Public Library, where we were happy to discover an exhibit celebrating 100 years of the New Yorker magazine. + +<figure> + <img src="./new-yorker.jpg"> +</figure> + +We also visited Madison Square Garden and several toy stores, including the LEGO store. +I bought a gift for Mark. +There was a full sized Yellow Cab made of LEGO that we sat in. + +<figure> + <img src="./lego.jpg"> +</figure> + # 2052-05-23 Friday Another day of shopping and resting. diff --git a/memories/2025-nyc/lego.jpg b/memories/2025-nyc/lego.jpg Binary files differnew file mode 100644 index 0000000..3684575 --- /dev/null +++ b/memories/2025-nyc/lego.jpg diff --git a/memories/2025-nyc/map.html b/memories/2025-nyc/map.html new file mode 100644 index 0000000..b1aeb31 --- /dev/null +++ b/memories/2025-nyc/map.html @@ -0,0 +1,69 @@ +<!DOCTYPE html> +<html> +<head> + + <meta http-equiv="content-type" content="text/html; charset=UTF-8" /> + + <script> + L_NO_TOUCH = false; + L_DISABLE_3D = false; + </script> + + <style>html, body {width: 100%;height: 100%;margin: 0;padding: 0;}</style> + <style>#map {position:absolute;top:0;bottom:0;right:0;left:0;}</style> + <script src="https://cdn.jsdelivr.net/npm/leaflet@1.9.3/dist/leaflet.js"></script> + <script src="https://code.jquery.com/jquery-1.12.4.min.js"></script> + <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/js/bootstrap.bundle.min.js"></script> + <script src="https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.js"></script> + <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/leaflet@1.9.3/dist/leaflet.css"/> + <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/css/bootstrap.min.css"/> + <link rel="stylesheet" href="https://netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap.min.css"/> + <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@6.2.0/css/all.min.css"/> + <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.css"/> + <link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/python-visualization/folium/folium/templates/leaflet.awesome.rotate.min.css"/> + + <meta name="viewport" content="width=device-width, + initial-scale=1.0, maximum-scale=1.0, user-scalable=no" /> + <style> + #map_14d5a14bbac2e8b620dff30e8a6195a0 { + position: relative; + width: 100.0%; + height: 100.0%; + left: 0.0%; + top: 0.0%; + } + .leaflet-container { font-size: 1rem; } + </style> + +</head> +<body> + + + <div class="folium-map" id="map_14d5a14bbac2e8b620dff30e8a6195a0" ></div> + +</body> +<script> + + + var map_14d5a14bbac2e8b620dff30e8a6195a0 = L.map( + "map_14d5a14bbac2e8b620dff30e8a6195a0", + { + center: [40.779499, -73.967928], + crs: L.CRS.EPSG3857, + zoom: 10, + zoomControl: true, + preferCanvas: false, + } + ); + + + + + + var tile_layer_6c14b328e187e525c18c7b8984148e04 = L.tileLayer( + "https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png", + {"attribution": "Data by \u0026copy; \u003ca target=\"_blank\" href=\"http://openstreetmap.org\"\u003eOpenStreetMap\u003c/a\u003e, under \u003ca target=\"_blank\" href=\"http://www.openstreetmap.org/copyright\"\u003eODbL\u003c/a\u003e.", "detectRetina": false, "maxNativeZoom": 18, "maxZoom": 18, "minZoom": 0, "noWrap": false, "opacity": 1, "subdomains": "abc", "tms": false} + ).addTo(map_14d5a14bbac2e8b620dff30e8a6195a0); + +</script> +</html>
\ No newline at end of file diff --git a/memories/2025-nyc/map.py b/memories/2025-nyc/map.py new file mode 100644 index 0000000..e3aafff --- /dev/null +++ b/memories/2025-nyc/map.py @@ -0,0 +1,4 @@ +import folium +m = folium.Map(location=(40.779499,-73.967928)) +m.save("map.html") + diff --git a/memories/2025-nyc/new-yorker.jpg b/memories/2025-nyc/new-yorker.jpg Binary files differnew file mode 100644 index 0000000..b0bc470 --- /dev/null +++ b/memories/2025-nyc/new-yorker.jpg |