{ "cells": [ { "cell_type": "code", "execution_count": 1, "id": "db6b6520", "metadata": {}, "outputs": [ { "data": { "text/html": [ "" ], "text/plain": [ "" ] }, "execution_count": 1, "metadata": {}, "output_type": "execute_result" } ], "source": [ "try:\n", " import IPython\n", "except:\n", " !pip install IPython\n", " import IPython \n", "from IPython.core.display import HTML\n", "HTML(\"\"\"\"\"\")" ] }, { "cell_type": "markdown", "id": "302c49d7", "metadata": {}, "source": [ "# Creating a John Ruskin StoryMap Visualisation using Linked Art\n", "\n", "This notebook demonstrates how a StoryMap visualisation of John Ruskin's artworks can be created using:\n", "- collections data transformed to Linked Art\n", "- a script to transform the Linked Art JSON-LD representation to a JSON input file\n", "- the KnightLab visualisation service\n", "\n", "\n", "\n", "\n", "#### Further Reading\n", "\n", "- [KnightLab visualisation service](https://knightlab.northwestern.edu/)\n", "- [KnightLab StoryMap visualisation service](https://storymap.knightlab.com/)\n", "- [Linked Art JSON-LD files for John Ruskin](./data/ruskin/output/json/)\n", "\n", "\n", "\n" ] }, { "cell_type": "markdown", "id": "55aff117", "metadata": {}, "source": [ "## Create JSON input file for StoryMap\n", "\n", "The process to create the visualisation:\n", "- iterate over Linked Art JSON-LD files for John Ruskin\n", "- create JSON file that conformed to requirements for the StoryMap visualisation. The required JSON format is [described here](https://storymap.knightlab.com/advanced/#json-syntax).\n", "\n", "Example of JSON requirement is shown here:\n", "
\n",
    "{\n",
    "    width: integer,                    // required for embed tool; width of StoryMap\n",
    "    height: integer,                   // required for embed tool; height of StoryMap\n",
    "    font_css: string,                  // optional; font set for UI controls/messages\n",
    "    calculate_zoom: true,              // optional; defaults to true *unless* map_as_image is true.\n",
    "    storymap: {\n",
    "        language: string,              // required; two-letter ISO language code\n",
    "        map_type: \"zoomify\",           // required\n",
    "        map_as_image: boolean,         // required; omit connecting lines between slide locations\n",
    "        map_background_color:  string, // optional; hexadecimal color value for map background\n",
    "        zoomify: {\n",
    "            path: string,              // required; URL path to zoomable image folder\n",
    "            width: integer,            // required; maximum width of image\n",
    "            height: integer,           // required; maximum height of image\n",
    "            tolerance: decimal         // required; display tolerance\n",
    "        }\n",
    "        slides: [object]               // required; array of slide objects (see below)\n",
    "    }\n",
    "}\n",
    "
\n", "\n", "\n", "\n", "#### Further Reading \n", "- [StoryMap JSON file format](https://storymap.knightlab.com/advanced/#json-syntax)" ] }, { "cell_type": "code", "execution_count": 2, "id": "ecf17010", "metadata": {}, "outputs": [], "source": [ "try:\n", " import os\n", "except:\n", " !pip install os\n", " import os\n", " \n", "try:\n", " import json\n", "except:\n", " !pip install json\n", " import json\n", " \n", "try:\n", " import IPython\n", "except:\n", " !pip install IPython\n", " import IPython \n", " \n", "from IPython.display import display, IFrame, HTML\n" ] }, { "cell_type": "markdown", "id": "24478f52", "metadata": {}, "source": [ "## Create JSON template file " ] }, { "cell_type": "code", "execution_count": 3, "id": "e3e5a995", "metadata": {}, "outputs": [], "source": [ "storymap = {\n", " \"storymap\": {\n", " \"zoomify\": False,\n", " \"attribution\": \"Tanya Gray\",\n", " \"call_to_action\": False,\n", " \"call_to_action_text\": \"\",\n", " \"map_as_image\": False,\n", " \"map_subdomains\": \"\",\n", " \"map_type\": \"osm:standard\",\n", " \"line_follows_path\": True,\n", "\"line_color\": \"#c34528\",\n", "\"line_color_inactive\": \"#CCC\",\n", "\"line_join\": \"miter\",\n", "\"line_weight\": 3,\n", "\"line_opacity\": 0.80,\n", "\"line_dash\": \"5,5\",\n", "\n", "\"show_history_line\": True,\n", " \"slides\": [\n", " {\n", " \"date\": \"\",\n", " \"location\": {\n", " },\n", " \"media\": {\n", " \"caption\": \"\",\n", " \"credit\": \"Wikipedia\",\n", " \"url\": \"https://en.wikipedia.org/wiki/John_Ruskin\"\n", " },\n", " \"text\": {\n", " \"headline\": \"John Ruskin's Travels in Europe\",\n", " \"text\": \"\"\n", " },\n", " \"type\": \"overview\"\n", " }]\n", " }\n", " \n", " }" ] }, { "cell_type": "code", "execution_count": 5, "id": "9e2b87f0", "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "{\n", " \"storymap\": {\n", " \"zoomify\": false,\n", " \"attribution\": \"Tanya Gray\",\n", " \"call_to_action\": false,\n", " \"call_to_action_text\": \"\",\n", " \"map_as_image\": false,\n", " \"map_subdomains\": \"\",\n", " \"map_type\": \"osm:standard\",\n", " \"line_follows_path\": true,\n", " \"line_color\": \"#c34528\",\n", " \"line_color_inactive\": \"#CCC\",\n", " \"line_join\": \"miter\",\n", " \"line_weight\": 3,\n", " \"line_opacity\": 0.8,\n", " \"line_dash\": \"5,5\",\n", " \"show_history_line\": true,\n", " \"slides\": [\n", " {\n", " \"date\": \"\",\n", " \"location\": {},\n", " \"media\": {\n", " \"caption\": \"\",\n", " \"credit\": \"Wikipedia\",\n", " \"url\": \"https://en.wikipedia.org/wiki/John_Ruskin\"\n", " },\n", " \"text\": {\n", " \"headline\": \"John Ruskin's Travels in Europe\",\n", " \"text\": \"\"\n", " },\n", " \"type\": \"overview\"\n", " },\n", " {\n", " \"background\": {\n", " \"color\": \"#3f83e8\",\n", " \"opacity\": 100\n", " },\n", " \"date\": \"1832\",\n", " \"location\": {\n", " \"lat\": 51.833333,\n", " \"lon\": -2.25,\n", " \"zoom\": 4\n", " },\n", " \"media\": {\n", " \"caption\": \"1832\",\n", " \"credit\": \"Ashmolean Museum\",\n", " \"url\": \"https://collections.ashmolean.org/media/ashmole6_collection/w800/Collections/Single_Objects/WA/WA_RS/WA_RS_RUD_087-a-L.jpg\"\n", " },\n", " \"text\": {\n", " \"headline\": \"The Tower of Gloucester Cathedral\",\n", " \"text\": \"

Artwork homepage\"\n", " }\n", " },\n", " {\n", " \"background\": {\n", " \"color\": \"#3f83e8\",\n", " \"opacity\": 100\n", " },\n", " \"date\": \"1832\",\n", " \"location\": {\n", " \"lat\": 51.833333,\n", " \"lon\": -2.25,\n", " \"zoom\": 4\n", " },\n", " \"media\": {\n", " \"caption\": \"1832\",\n", " \"credit\": \"Ashmolean Museum\",\n", " \"url\": \"https://collections.ashmolean.org/media/ashmole6_collection/w800/Collections/Single_Objects/WA/WA_RS/WA_RS_RUD_087-a-L.jpg\"\n", " },\n", " \"text\": {\n", " \"headline\": \"The Tower of Gloucester Cathedral\",\n", " \"text\": \"

Artwork homepage\"\n", " }\n", " },\n", " {\n", " \"background\": {\n", " \"color\": \"#3f83e8\",\n", " \"opacity\": 100\n", " },\n", " \"date\": \"1834\",\n", " \"location\": {\n", " \"lat\": 48.767697,\n", " \"lon\": 6.855842,\n", " \"zoom\": 4\n", " },\n", " \"media\": {\n", " \"caption\": \"1834 - 1900\",\n", " \"credit\": \"Ashmolean Museum\",\n", " \"url\": \"https://collections.ashmolean.org/media/ashmole6_collection/w800/Collections/Single_Objects/WA/WA_1953/WA_1953_0000/WA_1953_133-a-L.jpg\"\n", " },\n", " \"text\": {\n", " \"headline\": \"Swiss tower at Fribourg\",\n", " \"text\": \"

Artwork homepage\"\n", " }\n", " },\n", " {\n", " \"background\": {\n", " \"color\": \"#3f83e8\",\n", " \"opacity\": 100\n", " },\n", " \"date\": \"1834\",\n", " \"location\": {\n", " \"lat\": 45.924308,\n", " \"lon\": 6.867316,\n", " \"zoom\": 4\n", " },\n", " \"media\": {\n", " \"caption\": \"1834 - 1900\",\n", " \"credit\": \"Ashmolean Museum\",\n", " \"url\": \"https://collections.ashmolean.org/media/ashmole6_collection/w800/Collections/Single_Objects/WA/WA_1945/WA_1945_0000/WA_1945_90-a-L.jpg\"\n", " },\n", " \"text\": {\n", " \"headline\": \"Mountain study: view of the Alps (Aiguilles near Chamonix)\",\n", " \"text\": \"

Artwork homepage\"\n", " }\n", " },\n", " {\n", " \"background\": {\n", " \"color\": \"#3f83e8\",\n", " \"opacity\": 100\n", " },\n", " \"date\": \"1834\",\n", " \"location\": {\n", " \"lat\": 50.166667,\n", " \"lon\": 1.75,\n", " \"zoom\": 4\n", " },\n", " \"media\": {\n", " \"caption\": \"1834 - 1900\",\n", " \"credit\": \"Ashmolean Museum\",\n", " \"url\": \"https://collections.ashmolean.org/media/ashmole6_collection/w800/Collections/Single_Objects/WA/WA_1953/WA_1953_0000/WA_1953_134-a-L.jpg\"\n", " },\n", " \"text\": {\n", " \"headline\": \"Old houses at Abbeville\",\n", " \"text\": \"

Artwork homepage\"\n", " }\n", " },\n", " {\n", " \"background\": {\n", " \"color\": \"#3f83e8\",\n", " \"opacity\": 100\n", " },\n", " \"date\": \"1834\",\n", " \"location\": {\n", " \"lat\": 46.416667,\n", " \"lon\": 10.0,\n", " \"zoom\": 4\n", " },\n", " \"media\": {\n", " \"caption\": \"1834 - 1900\",\n", " \"credit\": \"Ashmolean Museum\",\n", " \"url\": \"https://collections.ashmolean.org/media/ashmole6_collection/w800/Collections/Single_Objects/WA/WA_1945/WA_1945_0000/WA_1945_89-a-L.jpg\"\n", " },\n", " \"text\": {\n", " \"headline\": \"Mountain study: view of the Alps\",\n", " \"text\": \"

Artwork homepage\"\n", " }\n", " },\n", " {\n", " \"background\": {\n", " \"color\": \"#3f83e8\",\n", " \"opacity\": 100\n", " },\n", " \"date\": \"1834\",\n", " \"location\": {\n", " \"lat\": 48.767697,\n", " \"lon\": 6.855842,\n", " \"zoom\": 4\n", " },\n", " \"media\": {\n", " \"caption\": \"1834 - 1900\",\n", " \"credit\": \"Ashmolean Museum\",\n", " \"url\": \"https://collections.ashmolean.org/media/ashmole6_collection/w800/Collections/Single_Objects/WA/WA_1953/WA_1953_0000/WA_1953_133-a-L.jpg\"\n", " },\n", " \"text\": {\n", " \"headline\": \"Swiss tower at Fribourg\",\n", " \"text\": \"

Artwork homepage\"\n", " }\n", " },\n", " {\n", " \"background\": {\n", " \"color\": \"#3f83e8\",\n", " \"opacity\": 100\n", " },\n", " \"date\": \"1834\",\n", " \"location\": {\n", " \"lat\": 45.924308,\n", " \"lon\": 6.867316,\n", " \"zoom\": 4\n", " },\n", " \"media\": {\n", " \"caption\": \"1834 - 1900\",\n", " \"credit\": \"Ashmolean Museum\",\n", " \"url\": \"https://collections.ashmolean.org/media/ashmole6_collection/w800/Collections/Single_Objects/WA/WA_1945/WA_1945_0000/WA_1945_90-a-L.jpg\"\n", " },\n", " \"text\": {\n", " \"headline\": \"Mountain study: view of the Alps (Aiguilles near Chamonix)\",\n", " \"text\": \"

Artwork homepage\"\n", " }\n", " },\n", " {\n", " \"background\": {\n", " \"color\": \"#3f83e8\",\n", " \"opacity\": 100\n", " },\n", " \"date\": \"1834\",\n", " \"location\": {\n", " \"lat\": 50.166667,\n", " \"lon\": 1.75,\n", " \"zoom\": 4\n", " },\n", " \"media\": {\n", " \"caption\": \"1834 - 1900\",\n", " \"credit\": \"Ashmolean Museum\",\n", " \"url\": \"https://collections.ashmolean.org/media/ashmole6_collection/w800/Collections/Single_Objects/WA/WA_1953/WA_1953_0000/WA_1953_134-a-L.jpg\"\n", " },\n", " \"text\": {\n", " \"headline\": \"Old houses at Abbeville\",\n", " \"text\": \"

Artwork homepage\"\n", " }\n", " },\n", " {\n", " \"background\": {\n", " \"color\": \"#3f83e8\",\n", " \"opacity\": 100\n", " },\n", " \"date\": \"1834\",\n", " \"location\": {\n", " \"lat\": 46.416667,\n", " \"lon\": 10.0,\n", " \"zoom\": 4\n", " },\n", " \"media\": {\n", " \"caption\": \"1834 - 1900\",\n", " \"credit\": \"Ashmolean Museum\",\n", " \"url\": \"https://collections.ashmolean.org/media/ashmole6_collection/w800/Collections/Single_Objects/WA/WA_1945/WA_1945_0000/WA_1945_89-a-L.jpg\"\n", " },\n", " \"text\": {\n", " \"headline\": \"Mountain study: view of the Alps\",\n", " \"text\": \"

Artwork homepage\"\n", " }\n", " },\n", " {\n", " \"background\": {\n", " \"color\": \"#3f83e8\",\n", " \"opacity\": 100\n", " },\n", " \"date\": \"1835\",\n", " \"location\": {\n", " \"lat\": 46.0,\n", " \"lon\": 9.283333,\n", " \"zoom\": 4\n", " },\n", " \"media\": {\n", " \"caption\": \"1835\",\n", " \"credit\": \"Ashmolean Museum\",\n", " \"url\": \"https://collections.ashmolean.org/media/ashmole6_collection/w800/Collections/Single_Objects/WA/WA_1949/WA_1949_0000/WA_1949_255-a-L.jpg\"\n", " },\n", " \"text\": {\n", " \"headline\": \"Bellagio, Lago di Como\",\n", " \"text\": \"

Artwork homepage\"\n", " }\n", " },\n", " {\n", " \"background\": {\n", " \"color\": \"#3f83e8\",\n", " \"opacity\": 100\n", " },\n", " \"date\": \"1835\",\n", " \"location\": {\n", " \"lat\": 46.416667,\n", " \"lon\": 10.0,\n", " \"zoom\": 4\n", " },\n", " \"media\": {\n", " \"caption\": \"1835\",\n", " \"credit\": \"Ashmolean Museum\",\n", " \"url\": \"https://collections.ashmolean.org/media/ashmole6_collection/w800/Collections/Single_Objects/WA/WA_1949/WA_1949_0000/WA_1949_252-a-L.jpg\"\n", " },\n", " \"text\": {\n", " \"headline\": \"Bergamo and the Alps, from the road to Brescia\",\n", " \"text\": \"

Artwork homepage\"\n", " }\n", " },\n", " {\n", " \"background\": {\n", " \"color\": \"#3f83e8\",\n", " \"opacity\": 100\n", " },\n", " \"date\": \"1835\",\n", " \"location\": {\n", " \"lat\": 47.0,\n", " \"lon\": 11.5,\n", " \"zoom\": 4\n", " },\n", " \"media\": {\n", " \"caption\": \"1835\",\n", " \"credit\": \"Ashmolean Museum\",\n", " \"url\": \"https://collections.ashmolean.org/media/ashmole6_collection/w800/Collections/Single_Objects/WA/WA_1949/WA_1949_0000/WA_1949_253-a-L.jpg\"\n", " },\n", " \"text\": {\n", " \"headline\": \"Near Bassano, Brenner\",\n", " \"text\": \"

Artwork homepage\"\n", " }\n", " },\n", " {\n", " \"background\": {\n", " \"color\": \"#3f83e8\",\n", " \"opacity\": 100\n", " },\n", " \"date\": \"1835\",\n", " \"location\": {\n", " \"lat\": 46.0,\n", " \"lon\": 9.283333,\n", " \"zoom\": 4\n", " },\n", " \"media\": {\n", " \"caption\": \"1835\",\n", " \"credit\": \"Ashmolean Museum\",\n", " \"url\": \"https://collections.ashmolean.org/media/ashmole6_collection/w800/Collections/Single_Objects/WA/WA_1949/WA_1949_0000/WA_1949_255-a-L.jpg\"\n", " },\n", " \"text\": {\n", " \"headline\": \"Bellagio, Lago di Como\",\n", " \"text\": \"

Artwork homepage\"\n", " }\n", " },\n", " {\n", " \"background\": {\n", " \"color\": \"#3f83e8\",\n", " \"opacity\": 100\n", " },\n", " \"date\": \"1835\",\n", " \"location\": {\n", " \"lat\": 46.416667,\n", " \"lon\": 10.0,\n", " \"zoom\": 4\n", " },\n", " \"media\": {\n", " \"caption\": \"1835\",\n", " \"credit\": \"Ashmolean Museum\",\n", " \"url\": \"https://collections.ashmolean.org/media/ashmole6_collection/w800/Collections/Single_Objects/WA/WA_1949/WA_1949_0000/WA_1949_252-a-L.jpg\"\n", " },\n", " \"text\": {\n", " \"headline\": \"Bergamo and the Alps, from the road to Brescia\",\n", " \"text\": \"

Artwork homepage\"\n", " }\n", " },\n", " {\n", " \"background\": {\n", " \"color\": \"#3f83e8\",\n", " \"opacity\": 100\n", " },\n", " \"date\": \"1835\",\n", " \"location\": {\n", " \"lat\": 47.0,\n", " \"lon\": 11.5,\n", " \"zoom\": 4\n", " },\n", " \"media\": {\n", " \"caption\": \"1835\",\n", " \"credit\": \"Ashmolean Museum\",\n", " \"url\": \"https://collections.ashmolean.org/media/ashmole6_collection/w800/Collections/Single_Objects/WA/WA_1949/WA_1949_0000/WA_1949_253-a-L.jpg\"\n", " },\n", " \"text\": {\n", " \"headline\": \"Near Bassano, Brenner\",\n", " \"text\": \"

Artwork homepage\"\n", " }\n", " },\n", " {\n", " \"background\": {\n", " \"color\": \"#00758F\",\n", " \"opacity\": 100\n", " },\n", " \"date\": \"1838\",\n", " \"location\": {\n", " \"lat\": 51.75,\n", " \"lon\": -1.25,\n", " \"zoom\": 4\n", " },\n", " \"media\": {\n", " \"caption\": \"1838\",\n", " \"credit\": \"Harvard Art Museum\",\n", " \"url\": \"https://nrs.harvard.edu/urn-3:HUAM:VRS48818_dynmc?width=500&height=800\"\n", " },\n", " \"text\": {\n", " \"headline\": \"Tom Tower, Christ Church, Oxford\",\n", " \"text\": \"

Artwork homepage\"\n", " }\n", " },\n", " {\n", " \"background\": {\n", " \"color\": \"#00758F\",\n", " \"opacity\": 100\n", " },\n", " \"date\": \"1838\",\n", " \"location\": {\n", " \"lat\": 51.75,\n", " \"lon\": -1.25,\n", " \"zoom\": 4\n", " },\n", " \"media\": {\n", " \"caption\": \"1838\",\n", " \"credit\": \"Harvard Art Museum\",\n", " \"url\": \"https://nrs.harvard.edu/urn-3:HUAM:VRS48818_dynmc?width=500&height=800\"\n", " },\n", " \"text\": {\n", " \"headline\": \"Tom Tower, Christ Church, Oxford\",\n", " \"text\": \"

Artwork homepage\"\n", " }\n", " },\n", " {\n", " \"background\": {\n", " \"color\": \"#3f83e8\",\n", " \"opacity\": 100\n", " },\n", " \"date\": \"1839\",\n", " \"location\": {\n", " \"lat\": 50.716667,\n", " \"lon\": -3.05,\n", " \"zoom\": 4\n", " },\n", " \"media\": {\n", " \"caption\": \"c. 1839\",\n", " \"credit\": \"Ashmolean Museum\",\n", " \"url\": \"https://collections.ashmolean.org/media/ashmole6_collection/w800/Multimedia_B/wa/WA_2000_86-a-r-L.jpg\"\n", " },\n", " \"text\": {\n", " \"headline\": \"Axmouth Landslip from Dolands Farm\",\n", " \"text\": \"

Artwork homepage\"\n", " }\n", " },\n", " {\n", " \"background\": {\n", " \"color\": \"#3f83e8\",\n", " \"opacity\": 100\n", " },\n", " \"date\": \"1839\",\n", " \"location\": {\n", " \"lat\": 50.716667,\n", " \"lon\": -3.05,\n", " \"zoom\": 4\n", " },\n", " \"media\": {\n", " \"caption\": \"c. 1839\",\n", " \"credit\": \"Ashmolean Museum\",\n", " \"url\": \"https://collections.ashmolean.org/media/ashmole6_collection/w800/Multimedia_B/wa/WA_2000_86-a-r-L.jpg\"\n", " },\n", " \"text\": {\n", " \"headline\": \"Axmouth Landslip from Dolands Farm\",\n", " \"text\": \"

Artwork homepage\"\n", " }\n", " },\n", " {\n", " \"background\": {\n", " \"color\": \"#3f83e8\",\n", " \"opacity\": 100\n", " },\n", " \"date\": \"1841-05\",\n", " \"location\": {\n", " \"lat\": 45.45,\n", " \"lon\": 11.0,\n", " \"zoom\": 4\n", " },\n", " \"media\": {\n", " \"caption\": \"19 May 1841\",\n", " \"credit\": \"Ashmolean Museum\",\n", " \"url\": \"https://collections.ashmolean.org/media/ashmole6_collection/w800/Collections/Single_Objects/WA/WA_RS/WA_RS_REF_062-a-L.jpg\"\n", " },\n", " \"text\": {\n", " \"headline\": \"Study for Detail of the Piazza delle Erbe, Verona\",\n", " \"text\": \"

Artwork homepage\"\n", " }\n", " },\n", " {\n", " \"background\": {\n", " \"color\": \"#3f83e8\",\n", " \"opacity\": 100\n", " },\n", " \"date\": \"1841-05\",\n", " \"location\": {\n", " \"lat\": 45.583333,\n", " \"lon\": 12.566667,\n", " \"zoom\": 4\n", " },\n", " \"media\": {\n", " \"caption\": \"6 - 16 May 1841\",\n", " \"credit\": \"Ashmolean Museum\",\n", " \"url\": \"https://collections.ashmolean.org/media/ashmole6_collection/w800/Collections/Single_Objects/WA/WA_RS/WA_RS_REF_065-a-L.jpg\"\n", " },\n", " \"text\": {\n", " \"headline\": \"The Palazzo Contarini-Fasan, Venice\",\n", " \"text\": \"

Artwork homepage\"\n", " }\n", " },\n", " {\n", " \"background\": {\n", " \"color\": \"#3f83e8\",\n", " \"opacity\": 100\n", " },\n", " \"date\": \"1841-05\",\n", " \"location\": {\n", " \"lat\": 45.45,\n", " \"lon\": 11.0,\n", " \"zoom\": 4\n", " },\n", " \"media\": {\n", " \"caption\": \"19 May 1841\",\n", " \"credit\": \"Ashmolean Museum\",\n", " \"url\": \"https://collections.ashmolean.org/media/ashmole6_collection/w800/Collections/Single_Objects/WA/WA_RS/WA_RS_REF_062-a-L.jpg\"\n", " },\n", " \"text\": {\n", " \"headline\": \"Study for Detail of the Piazza delle Erbe, Verona\",\n", " \"text\": \"

Artwork homepage\"\n", " }\n", " },\n", " {\n", " \"background\": {\n", " \"color\": \"#3f83e8\",\n", " \"opacity\": 100\n", " },\n", " \"date\": \"1841-05\",\n", " \"location\": {\n", " \"lat\": 45.583333,\n", " \"lon\": 12.566667,\n", " \"zoom\": 4\n", " },\n", " \"media\": {\n", " \"caption\": \"6 - 16 May 1841\",\n", " \"credit\": \"Ashmolean Museum\",\n", " \"url\": \"https://collections.ashmolean.org/media/ashmole6_collection/w800/Collections/Single_Objects/WA/WA_RS/WA_RS_REF_065-a-L.jpg\"\n", " },\n", " \"text\": {\n", " \"headline\": \"The Palazzo Contarini-Fasan, Venice\",\n", " \"text\": \"

Artwork homepage\"\n", " }\n", " },\n", " {\n", " \"background\": {\n", " \"color\": \"#00758F\",\n", " \"opacity\": 100\n", " },\n", " \"date\": \"1842\",\n", " \"location\": {\n", " \"lat\": 49.266667,\n", " \"lon\": 6.816667,\n", " \"zoom\": 4\n", " },\n", " \"media\": {\n", " \"caption\": \"1842\",\n", " \"credit\": \"Harvard Art Museum\",\n", " \"url\": \"https://nrs.harvard.edu/urn-3:HUAM:779019?width=500&height=800\"\n", " },\n", " \"text\": {\n", " \"headline\": \"Falls of Schaffhausen\",\n", " \"text\": \"

Artwork homepage\"\n", " }\n", " },\n", " {\n", " \"background\": {\n", " \"color\": \"#00758F\",\n", " \"opacity\": 100\n", " },\n", " \"date\": \"1842\",\n", " \"location\": {\n", " \"lat\": 49.266667,\n", " \"lon\": 6.816667,\n", " \"zoom\": 4\n", " },\n", " \"media\": {\n", " \"caption\": \"1842\",\n", " \"credit\": \"Harvard Art Museum\",\n", " \"url\": \"https://nrs.harvard.edu/urn-3:HUAM:DDC100822_dynmc?width=500&height=800\"\n", " },\n", " \"text\": {\n", " \"headline\": \"Falls of Schaffhausen\",\n", " \"text\": \"

Artwork homepage\"\n", " }\n", " },\n", " {\n", " \"background\": {\n", " \"color\": \"#00758F\",\n", " \"opacity\": 100\n", " },\n", " \"date\": \"1842\",\n", " \"location\": {\n", " \"lat\": 45.924308,\n", " \"lon\": 6.867316,\n", " \"zoom\": 4\n", " },\n", " \"media\": {\n", " \"caption\": \"1842\",\n", " \"credit\": \"Harvard Art Museum\",\n", " \"url\": \"https://nrs.harvard.edu/urn-3:HUAM:VRS38388_dynmc?width=500&height=800\"\n", " },\n", " \"text\": {\n", " \"headline\": \"View of Chamonix\",\n", " \"text\": \"

Artwork homepage\"\n", " }\n", " },\n", " {\n", " \"background\": {\n", " \"color\": \"#00758F\",\n", " \"opacity\": 100\n", " },\n", " \"date\": \"1842\",\n", " \"location\": {\n", " \"lat\": 49.266667,\n", " \"lon\": 6.816667,\n", " \"zoom\": 4\n", " },\n", " \"media\": {\n", " \"caption\": \"1842\",\n", " \"credit\": \"Harvard Art Museum\",\n", " \"url\": \"https://nrs.harvard.edu/urn-3:HUAM:779019?width=500&height=800\"\n", " },\n", " \"text\": {\n", " \"headline\": \"Falls of Schaffhausen\",\n", " \"text\": \"

Artwork homepage\"\n", " }\n", " },\n", " {\n", " \"background\": {\n", " \"color\": \"#00758F\",\n", " \"opacity\": 100\n", " },\n", " \"date\": \"1842\",\n", " \"location\": {\n", " \"lat\": 49.266667,\n", " \"lon\": 6.816667,\n", " \"zoom\": 4\n", " },\n", " \"media\": {\n", " \"caption\": \"1842\",\n", " \"credit\": \"Harvard Art Museum\",\n", " \"url\": \"https://nrs.harvard.edu/urn-3:HUAM:DDC100822_dynmc?width=500&height=800\"\n", " },\n", " \"text\": {\n", " \"headline\": \"Falls of Schaffhausen\",\n", " \"text\": \"

Artwork homepage\"\n", " }\n", " },\n", " {\n", " \"background\": {\n", " \"color\": \"#00758F\",\n", " \"opacity\": 100\n", " },\n", " \"date\": \"1842\",\n", " \"location\": {\n", " \"lat\": 45.924308,\n", " \"lon\": 6.867316,\n", " \"zoom\": 4\n", " },\n", " \"media\": {\n", " \"caption\": \"1842\",\n", " \"credit\": \"Harvard Art Museum\",\n", " \"url\": \"https://nrs.harvard.edu/urn-3:HUAM:VRS38388_dynmc?width=500&height=800\"\n", " },\n", " \"text\": {\n", " \"headline\": \"View of Chamonix\",\n", " \"text\": \"

Artwork homepage\"\n", " }\n", " },\n", " {\n", " \"background\": {\n", " \"color\": \"#00758F\",\n", " \"opacity\": 100\n", " },\n", " \"date\": \"1844\",\n", " \"location\": {\n", " \"lat\": 46.301907,\n", " \"lon\": 7.870004,\n", " \"zoom\": 4\n", " },\n", " \"media\": {\n", " \"caption\": \"1844\",\n", " \"credit\": \"Harvard Art Museum\",\n", " \"url\": \"https://nrs.harvard.edu/urn-3:HUAM:INV003789_dynmc?width=500&height=800\"\n", " },\n", " \"text\": {\n", " \"headline\": \"Convent and Alpine Pass, Visp, Switzerland\",\n", " \"text\": \"

Artwork homepage\"\n", " }\n", " },\n", " {\n", " \"background\": {\n", " \"color\": \"#00758F\",\n", " \"opacity\": 100\n", " },\n", " \"date\": \"1844\",\n", " \"location\": {\n", " \"lat\": 46.301907,\n", " \"lon\": 7.870004,\n", " \"zoom\": 4\n", " },\n", " \"media\": {\n", " \"caption\": \"1844\",\n", " \"credit\": \"Harvard Art Museum\",\n", " \"url\": \"https://nrs.harvard.edu/urn-3:HUAM:INV003789_dynmc?width=500&height=800\"\n", " },\n", " \"text\": {\n", " \"headline\": \"Convent and Alpine Pass, Visp, Switzerland\",\n", " \"text\": \"

Artwork homepage\"\n", " }\n", " },\n", " {\n", " \"background\": {\n", " \"color\": \"#A09998\",\n", " \"opacity\": 100\n", " },\n", " \"date\": \"1845\",\n", " \"location\": {\n", " \"lat\": 44.466667,\n", " \"lon\": 11.433333,\n", " \"zoom\": 4\n", " },\n", " \"media\": {\n", " \"caption\": \"c.1845\\u20136\",\n", " \"credit\": \"Tate Museum\",\n", " \"url\": \"http://www.tate.org.uk/art/images/work/N/N03/N03507_8.jpg\"\n", " },\n", " \"text\": {\n", " \"headline\": \"View of Bologna\",\n", " \"text\": \"Purchased 1920

Artwork homepage\"\n", " }\n", " },\n", " {\n", " \"background\": {\n", " \"color\": \"#00758F\",\n", " \"opacity\": 100\n", " },\n", " \"date\": \"1845\",\n", " \"location\": {\n", " \"lat\": 46.479417,\n", " \"lon\": 8.797659,\n", " \"zoom\": 4\n", " },\n", " \"media\": {\n", " \"caption\": \"1845\",\n", " \"credit\": \"Harvard Art Museum\",\n", " \"url\": \"https://nrs.harvard.edu/urn-3:HUAM:779018?width=500&height=800\"\n", " },\n", " \"text\": {\n", " \"headline\": \"The Pass of Faido\",\n", " \"text\": \"

Artwork homepage\"\n", " }\n", " },\n", " {\n", " \"background\": {\n", " \"color\": \"#E8A798\",\n", " \"opacity\": 100\n", " },\n", " \"date\": \"1845\",\n", " \"location\": {\n", " \"lat\": 43.766667,\n", " \"lon\": 11.25,\n", " \"zoom\": 4\n", " },\n", " \"media\": {\n", " \"caption\": \"1845\",\n", " \"credit\": \"National Gallery of Art\",\n", " \"url\": \"https://api.nga.gov/iiif/f6ef48d3-3512-4f46-ac5b-c221b3fa320e/full/!500,500/0/default.jpg\"\n", " },\n", " \"text\": {\n", " \"headline\": \"The Garden of San Miniato near Florence\",\n", " \"text\": \"Patrons' Permanent Fund

Artwork homepage\"\n", " }\n", " },\n", " {\n", " \"background\": {\n", " \"color\": \"#00758F\",\n", " \"opacity\": 100\n", " },\n", " \"date\": \"1845\",\n", " \"location\": {\n", " \"lat\": 45.583333,\n", " \"lon\": 12.566667,\n", " \"zoom\": 4\n", " },\n", " \"media\": {\n", " \"caption\": \"1845\",\n", " \"credit\": \"Harvard Art Museum\",\n", " \"url\": \"https://nrs.harvard.edu/urn-3:HUAM:VRS48787_dynmc?width=500&height=800\"\n", " },\n", " \"text\": {\n", " \"headline\": \"Boat and Sketches of Two Figures, Venice\",\n", " \"text\": \"Fine Arts Department, Harvard University, Cambridge, MA, Transferred to the Fogg Art Museum, 1926.\\r\\n

Artwork homepage\"\n", " }\n", " },\n", " {\n", " \"background\": {\n", " \"color\": \"#A09998\",\n", " \"opacity\": 100\n", " },\n", " \"date\": \"1845\",\n", " \"location\": {\n", " \"lat\": 44.466667,\n", " \"lon\": 11.433333,\n", " \"zoom\": 4\n", " },\n", " \"media\": {\n", " \"caption\": \"c.1845\\u20136\",\n", " \"credit\": \"Tate Museum\",\n", " \"url\": \"http://www.tate.org.uk/art/images/work/N/N03/N03507_8.jpg\"\n", " },\n", " \"text\": {\n", " \"headline\": \"View of Bologna\",\n", " \"text\": \"Purchased 1920

Artwork homepage\"\n", " }\n", " },\n", " {\n", " \"background\": {\n", " \"color\": \"#00758F\",\n", " \"opacity\": 100\n", " },\n", " \"date\": \"1845\",\n", " \"location\": {\n", " \"lat\": 46.479417,\n", " \"lon\": 8.797659,\n", " \"zoom\": 4\n", " },\n", " \"media\": {\n", " \"caption\": \"1845\",\n", " \"credit\": \"Harvard Art Museum\",\n", " \"url\": \"https://nrs.harvard.edu/urn-3:HUAM:779018?width=500&height=800\"\n", " },\n", " \"text\": {\n", " \"headline\": \"The Pass of Faido\",\n", " \"text\": \"

Artwork homepage\"\n", " }\n", " },\n", " {\n", " \"background\": {\n", " \"color\": \"#E8A798\",\n", " \"opacity\": 100\n", " },\n", " \"date\": \"1845\",\n", " \"location\": {\n", " \"lat\": 43.766667,\n", " \"lon\": 11.25,\n", " \"zoom\": 4\n", " },\n", " \"media\": {\n", " \"caption\": \"1845\",\n", " \"credit\": \"National Gallery of Art\",\n", " \"url\": \"https://api.nga.gov/iiif/f6ef48d3-3512-4f46-ac5b-c221b3fa320e/full/!500,500/0/default.jpg\"\n", " },\n", " \"text\": {\n", " \"headline\": \"The Garden of San Miniato near Florence\",\n", " \"text\": \"Patrons' Permanent Fund

Artwork homepage\"\n", " }\n", " },\n", " {\n", " \"background\": {\n", " \"color\": \"#00758F\",\n", " \"opacity\": 100\n", " },\n", " \"date\": \"1845\",\n", " \"location\": {\n", " \"lat\": 45.583333,\n", " \"lon\": 12.566667,\n", " \"zoom\": 4\n", " },\n", " \"media\": {\n", " \"caption\": \"1845\",\n", " \"credit\": \"Harvard Art Museum\",\n", " \"url\": \"https://nrs.harvard.edu/urn-3:HUAM:VRS48787_dynmc?width=500&height=800\"\n", " },\n", " \"text\": {\n", " \"headline\": \"Boat and Sketches of Two Figures, Venice\",\n", " \"text\": \"Fine Arts Department, Harvard University, Cambridge, MA, Transferred to the Fogg Art Museum, 1926.\\r\\n

Artwork homepage\"\n", " }\n", " },\n", " {\n", " \"background\": {\n", " \"color\": \"#3f83e8\",\n", " \"opacity\": 100\n", " },\n", " \"date\": \"1845-04\",\n", " \"location\": {\n", " \"lat\": 44.266667,\n", " \"lon\": 9.4,\n", " \"zoom\": 4\n", " },\n", " \"media\": {\n", " \"caption\": \"30 April 1845\",\n", " \"credit\": \"Ashmolean Museum\",\n", " \"url\": \"https://collections.ashmolean.org/media/ashmole6_collection/w800/Collections/Single_Objects/WA/WA_RS/WA_RS_ED_022-a-L.jpg\"\n", " },\n", " \"text\": {\n", " \"headline\": \"Stone Pines at Sestri, Gulf of Genoa\",\n", " \"text\": \"

Artwork homepage\"\n", " }\n", " },\n", " {\n", " \"background\": {\n", " \"color\": \"#3f83e8\",\n", " \"opacity\": 100\n", " },\n", " \"date\": \"1845-04\",\n", " \"location\": {\n", " \"lat\": 44.266667,\n", " \"lon\": 9.4,\n", " \"zoom\": 4\n", " },\n", " \"media\": {\n", " \"caption\": \"30 April 1845\",\n", " \"credit\": \"Ashmolean Museum\",\n", " \"url\": \"https://collections.ashmolean.org/media/ashmole6_collection/w800/Collections/Single_Objects/WA/WA_RS/WA_RS_ED_022-a-L.jpg\"\n", " },\n", " \"text\": {\n", " \"headline\": \"Stone Pines at Sestri, Gulf of Genoa\",\n", " \"text\": \"

Artwork homepage\"\n", " }\n", " },\n", " {\n", " \"background\": {\n", " \"color\": \"#3f83e8\",\n", " \"opacity\": 100\n", " },\n", " \"date\": \"1845-05\",\n", " \"location\": {\n", " \"lat\": 44.033333,\n", " \"lon\": 10.45,\n", " \"zoom\": 4\n", " },\n", " \"media\": {\n", " \"caption\": \"May 1845\",\n", " \"credit\": \"Ashmolean Museum\",\n", " \"url\": \"https://collections.ashmolean.org/media/ashmole6_collection/w800/Collections/Single_Objects/WA/WA_RS/WA_RS_ED_083-a-L.jpg\"\n", " },\n", " \"text\": {\n", " \"headline\": \"Part of the Fa\\u00e7ade of the destroyed Church of San Michele in Foro, Lucca, as it appeared in 1845\",\n", " \"text\": \"

Artwork homepage\"\n", " }\n", " },\n", " {\n", " \"background\": {\n", " \"color\": \"#3f83e8\",\n", " \"opacity\": 100\n", " },\n", " \"date\": \"1845-05\",\n", " \"location\": {\n", " \"lat\": 44.033333,\n", " \"lon\": 10.45,\n", " \"zoom\": 4\n", " },\n", " \"media\": {\n", " \"caption\": \"May 1845\",\n", " \"credit\": \"Ashmolean Museum\",\n", " \"url\": \"https://collections.ashmolean.org/media/ashmole6_collection/w800/Collections/Single_Objects/WA/WA_RS/WA_RS_ED_083-a-L.jpg\"\n", " },\n", " \"text\": {\n", " \"headline\": \"Part of the Fa\\u00e7ade of the destroyed Church of San Michele in Foro, Lucca, as it appeared in 1845\",\n", " \"text\": \"

Artwork homepage\"\n", " }\n", " },\n", " {\n", " \"background\": {\n", " \"color\": \"#3f83e8\",\n", " \"opacity\": 100\n", " },\n", " \"date\": \"1845-09\",\n", " \"location\": {\n", " \"lat\": 45.583333,\n", " \"lon\": 12.566667,\n", " \"zoom\": 4\n", " },\n", " \"media\": {\n", " \"caption\": \"September - October 1845\",\n", " \"credit\": \"Ashmolean Museum\",\n", " \"url\": \"https://collections.ashmolean.org/media/ashmole6_collection/w800/Collections/Single_Objects/WA/WA_RS/WA_RS_RUD_022-a-L.jpg\"\n", " },\n", " \"text\": {\n", " \"headline\": \"Study of the Marble Inlaying on the Front of the Casa Loredan, Venice\",\n", " \"text\": \"

Artwork homepage\"\n", " }\n", " },\n", " {\n", " \"background\": {\n", " \"color\": \"#3f83e8\",\n", " \"opacity\": 100\n", " },\n", " \"date\": \"1845-09\",\n", " \"location\": {\n", " \"lat\": 45.583333,\n", " \"lon\": 12.566667,\n", " \"zoom\": 4\n", " },\n", " \"media\": {\n", " \"caption\": \"September - October 1845\",\n", " \"credit\": \"Ashmolean Museum\",\n", " \"url\": \"https://collections.ashmolean.org/media/ashmole6_collection/w800/Collections/Single_Objects/WA/WA_RS/WA_RS_RUD_022-a-L.jpg\"\n", " },\n", " \"text\": {\n", " \"headline\": \"Study of the Marble Inlaying on the Front of the Casa Loredan, Venice\",\n", " \"text\": \"

Artwork homepage\"\n", " }\n", " },\n", " {\n", " \"background\": {\n", " \"color\": \"#3f83e8\",\n", " \"opacity\": 100\n", " },\n", " \"date\": \"1846\",\n", " \"location\": {\n", " \"lat\": 46.479417,\n", " \"lon\": 8.797659,\n", " \"zoom\": 4\n", " },\n", " \"media\": {\n", " \"caption\": \"1846 - 1865\",\n", " \"credit\": \"Ashmolean Museum\",\n", " \"url\": \"https://collections.ashmolean.org/media/ashmole6_collection/w800/Collections/Single_Objects/WA/WA_RS/WA_RS_ED_287-a-L.jpg\"\n", " },\n", " \"text\": {\n", " \"headline\": \"Study in Neutral Tint of Turner's 'The Pass of Faido'\",\n", " \"text\": \"

Artwork homepage\"\n", " }\n", " },\n", " {\n", " \"background\": {\n", " \"color\": \"#3f83e8\",\n", " \"opacity\": 100\n", " },\n", " \"date\": \"1846\",\n", " \"location\": {\n", " \"lat\": 46.479417,\n", " \"lon\": 8.797659,\n", " \"zoom\": 4\n", " },\n", " \"media\": {\n", " \"caption\": \"1846 - 1865\",\n", " \"credit\": \"Ashmolean Museum\",\n", " \"url\": \"https://collections.ashmolean.org/media/ashmole6_collection/w800/Collections/Single_Objects/WA/WA_RS/WA_RS_ED_287-a-L.jpg\"\n", " },\n", " \"text\": {\n", " \"headline\": \"Study in Neutral Tint of Turner's 'The Pass of Faido'\",\n", " \"text\": \"

Artwork homepage\"\n", " }\n", " },\n", " {\n", " \"background\": {\n", " \"color\": \"#3f83e8\",\n", " \"opacity\": 100\n", " },\n", " \"date\": \"1846-05\",\n", " \"location\": {\n", " \"lat\": 45.45,\n", " \"lon\": 11.0,\n", " \"zoom\": 4\n", " },\n", " \"media\": {\n", " \"caption\": \"11 May 1846\",\n", " \"credit\": \"Ashmolean Museum\",\n", " \"url\": \"https://collections.ashmolean.org/media/ashmole6_collection/w800/Collections/Single_Objects/WA/WA_RS/WA_RS_ED_081-L.jpg\"\n", " },\n", " \"text\": {\n", " \"headline\": \"The Gryphon bearing the south Shaft of the west Entrance of the Duomo, Verona\",\n", " \"text\": \"

Artwork homepage\"\n", " }\n", " },\n", " {\n", " \"background\": {\n", " \"color\": \"#3f83e8\",\n", " \"opacity\": 100\n", " },\n", " \"date\": \"1846-05\",\n", " \"location\": {\n", " \"lat\": 45.45,\n", " \"lon\": 11.0,\n", " \"zoom\": 4\n", " },\n", " \"media\": {\n", " \"caption\": \"11 May 1846\",\n", " \"credit\": \"Ashmolean Museum\",\n", " \"url\": \"https://collections.ashmolean.org/media/ashmole6_collection/w800/Collections/Single_Objects/WA/WA_RS/WA_RS_ED_081-L.jpg\"\n", " },\n", " \"text\": {\n", " \"headline\": \"The Gryphon bearing the south Shaft of the west Entrance of the Duomo, Verona\",\n", " \"text\": \"

Artwork homepage\"\n", " }\n", " },\n", " {\n", " \"background\": {\n", " \"color\": \"#3f83e8\",\n", " \"opacity\": 100\n", " },\n", " \"date\": \"1846-06\",\n", " \"location\": {\n", " \"lat\": 44.033333,\n", " \"lon\": 10.45,\n", " \"zoom\": 4\n", " },\n", " \"media\": {\n", " \"caption\": \"30 June - 1 July 1846\",\n", " \"credit\": \"Ashmolean Museum\",\n", " \"url\": \"https://collections.ashmolean.org/media/ashmole6_collection/w800/Collections/Single_Objects/WA/WA_RS/WA_RS_ED_085-a-L.jpg\"\n", " },\n", " \"text\": {\n", " \"headline\": \"Lateral View of the Fa\\u00e7ade San Michele in Foro, Lucca\",\n", " \"text\": \"

Artwork homepage\"\n", " }\n", " },\n", " {\n", " \"background\": {\n", " \"color\": \"#3f83e8\",\n", " \"opacity\": 100\n", " },\n", " \"date\": \"1846-06\",\n", " \"location\": {\n", " \"lat\": 44.033333,\n", " \"lon\": 10.45,\n", " \"zoom\": 4\n", " },\n", " \"media\": {\n", " \"caption\": \"30 June - 1 July 1846\",\n", " \"credit\": \"Ashmolean Museum\",\n", " \"url\": \"https://collections.ashmolean.org/media/ashmole6_collection/w800/Collections/Single_Objects/WA/WA_RS/WA_RS_ED_084-a-L.jpg\"\n", " },\n", " \"text\": {\n", " \"headline\": \"Part of the Fa\\u00e7ade of the destroyed Church of San Michele in Foro, Lucca, sketched in colour\",\n", " \"text\": \"

Artwork homepage\"\n", " }\n", " },\n", " {\n", " \"background\": {\n", " \"color\": \"#3f83e8\",\n", " \"opacity\": 100\n", " },\n", " \"date\": \"1846-06\",\n", " \"location\": {\n", " \"lat\": 44.033333,\n", " \"lon\": 10.45,\n", " \"zoom\": 4\n", " },\n", " \"media\": {\n", " \"caption\": \"30 June - 1 July 1846\",\n", " \"credit\": \"Ashmolean Museum\",\n", " \"url\": \"https://collections.ashmolean.org/media/ashmole6_collection/w800/Collections/Single_Objects/WA/WA_RS/WA_RS_ED_085-a-L.jpg\"\n", " },\n", " \"text\": {\n", " \"headline\": \"Lateral View of the Fa\\u00e7ade San Michele in Foro, Lucca\",\n", " \"text\": \"

Artwork homepage\"\n", " }\n", " },\n", " {\n", " \"background\": {\n", " \"color\": \"#3f83e8\",\n", " \"opacity\": 100\n", " },\n", " \"date\": \"1846-06\",\n", " \"location\": {\n", " \"lat\": 44.033333,\n", " \"lon\": 10.45,\n", " \"zoom\": 4\n", " },\n", " \"media\": {\n", " \"caption\": \"30 June - 1 July 1846\",\n", " \"credit\": \"Ashmolean Museum\",\n", " \"url\": \"https://collections.ashmolean.org/media/ashmole6_collection/w800/Collections/Single_Objects/WA/WA_RS/WA_RS_ED_084-a-L.jpg\"\n", " },\n", " \"text\": {\n", " \"headline\": \"Part of the Fa\\u00e7ade of the destroyed Church of San Michele in Foro, Lucca, sketched in colour\",\n", " \"text\": \"

Artwork homepage\"\n", " }\n", " },\n", " {\n", " \"background\": {\n", " \"color\": \"#00758F\",\n", " \"opacity\": 100\n", " },\n", " \"date\": \"1848\",\n", " \"location\": {\n", " \"lat\": 49.0,\n", " \"lon\": 0.0,\n", " \"zoom\": 4\n", " },\n", " \"media\": {\n", " \"caption\": \"1848\",\n", " \"credit\": \"Harvard Art Museum\",\n", " \"url\": \"https://nrs.harvard.edu/urn-3:HUAM:38491_dynmc?width=500&height=800\"\n", " },\n", " \"text\": {\n", " \"headline\": \"Study of Portal and Carved Pinnacles, Cathedral of St. L\\u00f4, Normandy\",\n", " \"text\": \"Charles Eliot Norton, to; his daughters Sara, Margaret, and Elizabeth, sold; to Fogg Art Museum, 1919 [1]\\r\\n\\r\\n[1] purchased with funds provided by Samuel Sachs

Artwork homepage\"\n", " }\n", " },\n", " {\n", " \"background\": {\n", " \"color\": \"#00758F\",\n", " \"opacity\": 100\n", " },\n", " \"date\": \"1848\",\n", " \"location\": {\n", " \"lat\": 49.0,\n", " \"lon\": 0.0,\n", " \"zoom\": 4\n", " },\n", " \"media\": {\n", " \"caption\": \"1848\",\n", " \"credit\": \"Harvard Art Museum\",\n", " \"url\": \"https://nrs.harvard.edu/urn-3:HUAM:38491_dynmc?width=500&height=800\"\n", " },\n", " \"text\": {\n", " \"headline\": \"Study of Portal and Carved Pinnacles, Cathedral of St. L\\u00f4, Normandy\",\n", " \"text\": \"Charles Eliot Norton, to; his daughters Sara, Margaret, and Elizabeth, sold; to Fogg Art Museum, 1919 [1]\\r\\n\\r\\n[1] purchased with funds provided by Samuel Sachs

Artwork homepage\"\n", " }\n", " },\n", " {\n", " \"background\": {\n", " \"color\": \"#3f83e8\",\n", " \"opacity\": 100\n", " },\n", " \"date\": \"1848-10\",\n", " \"location\": {\n", " \"lat\": 49.5,\n", " \"lon\": 1.0,\n", " \"zoom\": 4\n", " },\n", " \"media\": {\n", " \"caption\": \"October 1848\",\n", " \"credit\": \"Ashmolean Museum\",\n", " \"url\": \"https://collections.ashmolean.org/media/ashmole6_collection/w800/Collections/Single_Objects/WA/WA_RS/WA_RS_RUD_042_a-a-L.jpg\"\n", " },\n", " \"text\": {\n", " \"headline\": \"The Sculpture of a Dragon filling a Quatrefoil on the North Entrance of Rouen Cathedral\",\n", " \"text\": \"

Artwork homepage\"\n", " }\n", " },\n", " {\n", " \"background\": {\n", " \"color\": \"#3f83e8\",\n", " \"opacity\": 100\n", " },\n", " \"date\": \"1848-10\",\n", " \"location\": {\n", " \"lat\": 49.5,\n", " \"lon\": 1.0,\n", " \"zoom\": 4\n", " },\n", " \"media\": {\n", " \"caption\": \"October 1848\",\n", " \"credit\": \"Ashmolean Museum\",\n", " \"url\": \"https://collections.ashmolean.org/media/ashmole6_collection/w800/Collections/Single_Objects/WA/WA_RS/WA_RS_RUD_042_a-a-L.jpg\"\n", " },\n", " \"text\": {\n", " \"headline\": \"The Sculpture of a Dragon filling a Quatrefoil on the North Entrance of Rouen Cathedral\",\n", " \"text\": \"

Artwork homepage\"\n", " }\n", " },\n", " {\n", " \"background\": {\n", " \"color\": \"#00758F\",\n", " \"opacity\": 100\n", " },\n", " \"date\": \"1849\",\n", " \"location\": {\n", " \"lat\": 45.438611,\n", " \"lon\": 12.326667,\n", " \"zoom\": 4\n", " },\n", " \"media\": {\n", " \"caption\": \"1849\",\n", " \"credit\": \"Harvard Art Museum\",\n", " \"url\": \"https://nrs.harvard.edu/urn-3:HUAM:779020?width=500&height=800\"\n", " },\n", " \"text\": {\n", " \"headline\": \"Architectural Study: Palazzo Dandolo\",\n", " \"text\": \"Fine Arts Department, Harvard University, Cambridge, MA, Transferred to the Fogg Art Museum, 1926.\\r\\n

Artwork homepage\"\n", " }\n", " },\n", " {\n", " \"background\": {\n", " \"color\": \"#E8A798\",\n", " \"opacity\": 100\n", " },\n", " \"date\": \"1849\",\n", " \"location\": {\n", " \"lat\": 45.583333,\n", " \"lon\": 12.566667,\n", " \"zoom\": 4\n", " },\n", " \"media\": {\n", " \"caption\": \"1849\",\n", " \"credit\": \"National Gallery of Art\",\n", " \"url\": \"https://api.nga.gov/iiif/bc567179-9c1e-4493-b712-956cc4e6b00a/full/!500,500/0/default.jpg\"\n", " },\n", " \"text\": {\n", " \"headline\": \"Ornamental Study with Acanthus Motif for \\\"The Stones of Venice\\\"\",\n", " \"text\": \"Gift of William B. O'Neal

Artwork homepage\"\n", " }\n", " },\n", " {\n", " \"background\": {\n", " \"color\": \"#00758F\",\n", " \"opacity\": 100\n", " },\n", " \"date\": \"1849\",\n", " \"location\": {\n", " \"lat\": 45.583333,\n", " \"lon\": 12.566667,\n", " \"zoom\": 4\n", " },\n", " \"media\": {\n", " \"caption\": \"1849-1852\",\n", " \"credit\": \"Harvard Art Museum\",\n", " \"url\": \"https://nrs.harvard.edu/urn-3:HUAM:70227_dynmc?width=500&height=800\"\n", " },\n", " \"text\": {\n", " \"headline\": \"Studies in St. Mark's\",\n", " \"text\": \"Fine Arts Department, Harvard University, Cambridge, MA, Transferred to the Fogg Art Museum, 1926.\\r\\n

Artwork homepage\"\n", " }\n", " },\n", " {\n", " \"background\": {\n", " \"color\": \"#00758F\",\n", " \"opacity\": 100\n", " },\n", " \"date\": \"1849\",\n", " \"location\": {\n", " \"lat\": 45.438611,\n", " \"lon\": 12.326667,\n", " \"zoom\": 4\n", " },\n", " \"media\": {\n", " \"caption\": \"1849\",\n", " \"credit\": \"Harvard Art Museum\",\n", " \"url\": \"https://nrs.harvard.edu/urn-3:HUAM:779020?width=500&height=800\"\n", " },\n", " \"text\": {\n", " \"headline\": \"Architectural Study: Palazzo Dandolo\",\n", " \"text\": \"Fine Arts Department, Harvard University, Cambridge, MA, Transferred to the Fogg Art Museum, 1926.\\r\\n

Artwork homepage\"\n", " }\n", " },\n", " {\n", " \"background\": {\n", " \"color\": \"#E8A798\",\n", " \"opacity\": 100\n", " },\n", " \"date\": \"1849\",\n", " \"location\": {\n", " \"lat\": 45.583333,\n", " \"lon\": 12.566667,\n", " \"zoom\": 4\n", " },\n", " \"media\": {\n", " \"caption\": \"1849\",\n", " \"credit\": \"National Gallery of Art\",\n", " \"url\": \"https://api.nga.gov/iiif/bc567179-9c1e-4493-b712-956cc4e6b00a/full/!500,500/0/default.jpg\"\n", " },\n", " \"text\": {\n", " \"headline\": \"Ornamental Study with Acanthus Motif for \\\"The Stones of Venice\\\"\",\n", " \"text\": \"Gift of William B. O'Neal

Artwork homepage\"\n", " }\n", " },\n", " {\n", " \"background\": {\n", " \"color\": \"#00758F\",\n", " \"opacity\": 100\n", " },\n", " \"date\": \"1849\",\n", " \"location\": {\n", " \"lat\": 45.583333,\n", " \"lon\": 12.566667,\n", " \"zoom\": 4\n", " },\n", " \"media\": {\n", " \"caption\": \"1849-1852\",\n", " \"credit\": \"Harvard Art Museum\",\n", " \"url\": \"https://nrs.harvard.edu/urn-3:HUAM:70227_dynmc?width=500&height=800\"\n", " },\n", " \"text\": {\n", " \"headline\": \"Studies in St. Mark's\",\n", " \"text\": \"Fine Arts Department, Harvard University, Cambridge, MA, Transferred to the Fogg Art Museum, 1926.\\r\\n

Artwork homepage\"\n", " }\n", " },\n", " {\n", " \"background\": {\n", " \"color\": \"#00758F\",\n", " \"opacity\": 100\n", " },\n", " \"date\": \"1850\",\n", " \"location\": {\n", " \"lat\": 45.583333,\n", " \"lon\": 12.566667,\n", " \"zoom\": 4\n", " },\n", " \"media\": {\n", " \"caption\": \"1850\",\n", " \"credit\": \"Harvard Art Museum\",\n", " \"url\": \"https://nrs.harvard.edu/urn-3:HUAM:VRS44671_dynmc?width=500&height=800\"\n", " },\n", " \"text\": {\n", " \"headline\": \"Architectural Sketch, Venice\",\n", " \"text\": \"

Artwork homepage\"\n", " }\n", " },\n", " {\n", " \"background\": {\n", " \"color\": \"#00758F\",\n", " \"opacity\": 100\n", " },\n", " \"date\": \"1850\",\n", " \"location\": {\n", " \"lat\": 45.906389,\n", " \"lon\": 12.015556,\n", " \"zoom\": 4\n", " },\n", " \"media\": {\n", " \"caption\": \"1850\",\n", " \"credit\": \"Harvard Art Museum\",\n", " \"url\": \"https://nrs.harvard.edu/urn-3:HUAM:VRS48789_dynmc?width=500&height=800\"\n", " },\n", " \"text\": {\n", " \"headline\": \"Architectural Sketch: Section of Door Jamb, Saint Stefano\",\n", " \"text\": \"Fine Arts Department, Harvard University, Cambridge, MA, Transferred to the Fogg Art Museum, 1926.\\r\\n

Artwork homepage\"\n", " }\n", " },\n", " {\n", " \"background\": {\n", " \"color\": \"#00758F\",\n", " \"opacity\": 100\n", " },\n", " \"date\": \"1850\",\n", " \"location\": {\n", " \"lat\": 45.583333,\n", " \"lon\": 12.566667,\n", " \"zoom\": 4\n", " },\n", " \"media\": {\n", " \"caption\": \"1850\",\n", " \"credit\": \"Harvard Art Museum\",\n", " \"url\": \"https://nrs.harvard.edu/urn-3:HUAM:VRS44671_dynmc?width=500&height=800\"\n", " },\n", " \"text\": {\n", " \"headline\": \"Architectural Sketch, Venice\",\n", " \"text\": \"

Artwork homepage\"\n", " }\n", " },\n", " {\n", " \"background\": {\n", " \"color\": \"#00758F\",\n", " \"opacity\": 100\n", " },\n", " \"date\": \"1850\",\n", " \"location\": {\n", " \"lat\": 45.906389,\n", " \"lon\": 12.015556,\n", " \"zoom\": 4\n", " },\n", " \"media\": {\n", " \"caption\": \"1850\",\n", " \"credit\": \"Harvard Art Museum\",\n", " \"url\": \"https://nrs.harvard.edu/urn-3:HUAM:VRS48789_dynmc?width=500&height=800\"\n", " },\n", " \"text\": {\n", " \"headline\": \"Architectural Sketch: Section of Door Jamb, Saint Stefano\",\n", " \"text\": \"Fine Arts Department, Harvard University, Cambridge, MA, Transferred to the Fogg Art Museum, 1926.\\r\\n

Artwork homepage\"\n", " }\n", " },\n", " {\n", " \"background\": {\n", " \"color\": \"#3f83e8\",\n", " \"opacity\": 100\n", " },\n", " \"date\": \"1852\",\n", " \"location\": {\n", " \"lat\": 45.583333,\n", " \"lon\": 12.566667,\n", " \"zoom\": 4\n", " },\n", " \"media\": {\n", " \"caption\": \"1852\",\n", " \"credit\": \"Ashmolean Museum\",\n", " \"url\": \"https://collections.ashmolean.org/media/ashmole6_collection/w800/Collections/Single_Objects/WA/WA_RS/WA_RS_REF_067-a-L.jpg\"\n", " },\n", " \"text\": {\n", " \"headline\": \"The Exterior of the Ducal Palace, Venice\",\n", " \"text\": \"

Artwork homepage\"\n", " }\n", " },\n", " {\n", " \"background\": {\n", " \"color\": \"#00758F\",\n", " \"opacity\": 100\n", " },\n", " \"date\": \"1852\",\n", " \"location\": {\n", " \"lat\": 45.583333,\n", " \"lon\": 12.566667,\n", " \"zoom\": 4\n", " },\n", " \"media\": {\n", " \"caption\": \"1852(?)\",\n", " \"credit\": \"Harvard Art Museum\",\n", " \"url\": \"https://nrs.harvard.edu/urn-3:HUAM:VRS48801_dynmc?width=500&height=800\"\n", " },\n", " \"text\": {\n", " \"headline\": \"Study of a Venetian Capital\",\n", " \"text\": \"Fine Arts Department, Harvard University, Cambridge, MA, Transferred to the Fogg Art Museum, 1926.\\r\\n

Artwork homepage\"\n", " }\n", " },\n", " {\n", " \"background\": {\n", " \"color\": \"#3f83e8\",\n", " \"opacity\": 100\n", " },\n", " \"date\": \"1852\",\n", " \"location\": {\n", " \"lat\": 45.45,\n", " \"lon\": 11.0,\n", " \"zoom\": 4\n", " },\n", " \"media\": {\n", " \"caption\": \"1852\",\n", " \"credit\": \"Ashmolean Museum\",\n", " \"url\": \"https://collections.ashmolean.org/media/ashmole6_collection/w800/Collections/Single_Objects/WA/WA_RS/WA_RS_REF_059-a-L.jpg\"\n", " },\n", " \"text\": {\n", " \"headline\": \"Study for Detail of the Sarcophagus and Canopy of the Tomb of Mastino II della Scala at Verona\",\n", " \"text\": \"

Artwork homepage\"\n", " }\n", " },\n", " {\n", " \"background\": {\n", " \"color\": \"#3f83e8\",\n", " \"opacity\": 100\n", " },\n", " \"date\": \"1852\",\n", " \"location\": {\n", " \"lat\": 45.583333,\n", " \"lon\": 12.566667,\n", " \"zoom\": 4\n", " },\n", " \"media\": {\n", " \"caption\": \"probably 1852\",\n", " \"credit\": \"Ashmolean Museum\",\n", " \"url\": \"https://collections.ashmolean.org/media/ashmole6_collection/w800/Collections/Single_Objects/WA/WA_RS/WA_RS_ED_210-a-L.jpg\"\n", " },\n", " \"text\": {\n", " \"headline\": \"Part of the Palazzo Priuli, Venice\",\n", " \"text\": \"

Artwork homepage\"\n", " }\n", " },\n", " {\n", " \"background\": {\n", " \"color\": \"#00758F\",\n", " \"opacity\": 100\n", " },\n", " \"date\": \"1852\",\n", " \"location\": {\n", " \"lat\": 45.583333,\n", " \"lon\": 12.566667,\n", " \"zoom\": 4\n", " },\n", " \"media\": {\n", " \"caption\": \"1852\",\n", " \"credit\": \"Harvard Art Museum\",\n", " \"url\": \"https://nrs.harvard.edu/urn-3:HUAM:VRS80695_dynmc?width=500&height=800\"\n", " },\n", " \"text\": {\n", " \"headline\": \"Study of an Archivolt in Saint Mark's, Venice\",\n", " \"text\": \"Edward Waldo Forbes, Cambridge, gift; to Fogg Art Museum, 1953

Artwork homepage\"\n", " }\n", " },\n", " {\n", " \"background\": {\n", " \"color\": \"#3f83e8\",\n", " \"opacity\": 100\n", " },\n", " \"date\": \"1852\",\n", " \"location\": {\n", " \"lat\": 51.75,\n", " \"lon\": -1.25,\n", " \"zoom\": 4\n", " },\n", " \"media\": {\n", " \"caption\": \"1852\",\n", " \"credit\": \"Ashmolean Museum\",\n", " \"url\": \"https://collections.ashmolean.org/media/ashmole6_collection/w800/Collections/Single_Objects/WA/WA_RS/WA_RS_ED_019-a-L.jpg\"\n", " },\n", " \"text\": {\n", " \"headline\": \"Ivy-Leaved Toadflax ('Oxford Ivy')\",\n", " \"text\": \"

Artwork homepage\"\n", " }\n", " },\n", " {\n", " \"background\": {\n", " \"color\": \"#00758F\",\n", " \"opacity\": 100\n", " },\n", " \"date\": \"1852\",\n", " \"location\": {\n", " \"lat\": 45.583333,\n", " \"lon\": 12.566667,\n", " \"zoom\": 4\n", " },\n", " \"media\": {\n", " \"caption\": \"1852(?)\",\n", " \"credit\": \"Harvard Art Museum\",\n", " \"url\": \"https://nrs.harvard.edu/urn-3:HUAM:VRS48802_dynmc?width=500&height=800\"\n", " },\n", " \"text\": {\n", " \"headline\": \"Study of a Venetian Capital\",\n", " \"text\": \"Fine Arts Department, Harvard University, Cambridge, MA, Transferred to the Fogg Art Museum, 1926.\\r\\n

Artwork homepage\"\n", " }\n", " },\n", " {\n", " \"background\": {\n", " \"color\": \"#00758F\",\n", " \"opacity\": 100\n", " },\n", " \"date\": \"1852\",\n", " \"location\": {\n", " \"lat\": 45.583333,\n", " \"lon\": 12.566667,\n", " \"zoom\": 4\n", " },\n", " \"media\": {\n", " \"caption\": \"1852\",\n", " \"credit\": \"Harvard Art Museum\",\n", " \"url\": \"https://nrs.harvard.edu/urn-3:HUAM:VRS48803_dynmc?width=500&height=800\"\n", " },\n", " \"text\": {\n", " \"headline\": \"Studies of Venetian Capitals\",\n", " \"text\": \"Fine Arts Department, Harvard University, Cambridge, MA, Transferred to the Fogg Art Museum, 1926.\\r\\n

Artwork homepage\"\n", " }\n", " },\n", " {\n", " \"background\": {\n", " \"color\": \"#3f83e8\",\n", " \"opacity\": 100\n", " },\n", " \"date\": \"1852\",\n", " \"location\": {\n", " \"lat\": 45.45,\n", " \"lon\": 11.0,\n", " \"zoom\": 4\n", " },\n", " \"media\": {\n", " \"caption\": \"probably January 1852\",\n", " \"credit\": \"Ashmolean Museum\",\n", " \"url\": \"https://collections.ashmolean.org/media/ashmole6_collection/w800/Collections/Single_Objects/WA/WA_RS/WA_RS_RUD_097_a-a-L.jpg\"\n", " },\n", " \"text\": {\n", " \"headline\": \"Study of one of the Pinnacles of the Tomb of Mastino II della Scala, Verona\",\n", " \"text\": \"

Artwork homepage\"\n", " }\n", " },\n", " {\n", " \"background\": {\n", " \"color\": \"#3f83e8\",\n", " \"opacity\": 100\n", " },\n", " \"date\": \"1852\",\n", " \"location\": {\n", " \"lat\": 45.583333,\n", " \"lon\": 12.566667,\n", " \"zoom\": 4\n", " },\n", " \"media\": {\n", " \"caption\": \"1852\",\n", " \"credit\": \"Ashmolean Museum\",\n", " \"url\": \"https://collections.ashmolean.org/media/ashmole6_collection/w800/Collections/Single_Objects/WA/WA_RS/WA_RS_REF_067-a-L.jpg\"\n", " },\n", " \"text\": {\n", " \"headline\": \"The Exterior of the Ducal Palace, Venice\",\n", " \"text\": \"

Artwork homepage\"\n", " }\n", " },\n", " {\n", " \"background\": {\n", " \"color\": \"#00758F\",\n", " \"opacity\": 100\n", " },\n", " \"date\": \"1852\",\n", " \"location\": {\n", " \"lat\": 45.583333,\n", " \"lon\": 12.566667,\n", " \"zoom\": 4\n", " },\n", " \"media\": {\n", " \"caption\": \"1852(?)\",\n", " \"credit\": \"Harvard Art Museum\",\n", " \"url\": \"https://nrs.harvard.edu/urn-3:HUAM:VRS48801_dynmc?width=500&height=800\"\n", " },\n", " \"text\": {\n", " \"headline\": \"Study of a Venetian Capital\",\n", " \"text\": \"Fine Arts Department, Harvard University, Cambridge, MA, Transferred to the Fogg Art Museum, 1926.\\r\\n

Artwork homepage\"\n", " }\n", " },\n", " {\n", " \"background\": {\n", " \"color\": \"#3f83e8\",\n", " \"opacity\": 100\n", " },\n", " \"date\": \"1852\",\n", " \"location\": {\n", " \"lat\": 45.45,\n", " \"lon\": 11.0,\n", " \"zoom\": 4\n", " },\n", " \"media\": {\n", " \"caption\": \"1852\",\n", " \"credit\": \"Ashmolean Museum\",\n", " \"url\": \"https://collections.ashmolean.org/media/ashmole6_collection/w800/Collections/Single_Objects/WA/WA_RS/WA_RS_REF_059-a-L.jpg\"\n", " },\n", " \"text\": {\n", " \"headline\": \"Study for Detail of the Sarcophagus and Canopy of the Tomb of Mastino II della Scala at Verona\",\n", " \"text\": \"

Artwork homepage\"\n", " }\n", " },\n", " {\n", " \"background\": {\n", " \"color\": \"#3f83e8\",\n", " \"opacity\": 100\n", " },\n", " \"date\": \"1852\",\n", " \"location\": {\n", " \"lat\": 45.583333,\n", " \"lon\": 12.566667,\n", " \"zoom\": 4\n", " },\n", " \"media\": {\n", " \"caption\": \"probably 1852\",\n", " \"credit\": \"Ashmolean Museum\",\n", " \"url\": \"https://collections.ashmolean.org/media/ashmole6_collection/w800/Collections/Single_Objects/WA/WA_RS/WA_RS_ED_210-a-L.jpg\"\n", " },\n", " \"text\": {\n", " \"headline\": \"Part of the Palazzo Priuli, Venice\",\n", " \"text\": \"

Artwork homepage\"\n", " }\n", " },\n", " {\n", " \"background\": {\n", " \"color\": \"#00758F\",\n", " \"opacity\": 100\n", " },\n", " \"date\": \"1852\",\n", " \"location\": {\n", " \"lat\": 45.583333,\n", " \"lon\": 12.566667,\n", " \"zoom\": 4\n", " },\n", " \"media\": {\n", " \"caption\": \"1852\",\n", " \"credit\": \"Harvard Art Museum\",\n", " \"url\": \"https://nrs.harvard.edu/urn-3:HUAM:VRS80695_dynmc?width=500&height=800\"\n", " },\n", " \"text\": {\n", " \"headline\": \"Study of an Archivolt in Saint Mark's, Venice\",\n", " \"text\": \"Edward Waldo Forbes, Cambridge, gift; to Fogg Art Museum, 1953

Artwork homepage\"\n", " }\n", " },\n", " {\n", " \"background\": {\n", " \"color\": \"#3f83e8\",\n", " \"opacity\": 100\n", " },\n", " \"date\": \"1852\",\n", " \"location\": {\n", " \"lat\": 51.75,\n", " \"lon\": -1.25,\n", " \"zoom\": 4\n", " },\n", " \"media\": {\n", " \"caption\": \"1852\",\n", " \"credit\": \"Ashmolean Museum\",\n", " \"url\": \"https://collections.ashmolean.org/media/ashmole6_collection/w800/Collections/Single_Objects/WA/WA_RS/WA_RS_ED_019-a-L.jpg\"\n", " },\n", " \"text\": {\n", " \"headline\": \"Ivy-Leaved Toadflax ('Oxford Ivy')\",\n", " \"text\": \"

Artwork homepage\"\n", " }\n", " },\n", " {\n", " \"background\": {\n", " \"color\": \"#00758F\",\n", " \"opacity\": 100\n", " },\n", " \"date\": \"1852\",\n", " \"location\": {\n", " \"lat\": 45.583333,\n", " \"lon\": 12.566667,\n", " \"zoom\": 4\n", " },\n", " \"media\": {\n", " \"caption\": \"1852(?)\",\n", " \"credit\": \"Harvard Art Museum\",\n", " \"url\": \"https://nrs.harvard.edu/urn-3:HUAM:VRS48802_dynmc?width=500&height=800\"\n", " },\n", " \"text\": {\n", " \"headline\": \"Study of a Venetian Capital\",\n", " \"text\": \"Fine Arts Department, Harvard University, Cambridge, MA, Transferred to the Fogg Art Museum, 1926.\\r\\n

Artwork homepage\"\n", " }\n", " },\n", " {\n", " \"background\": {\n", " \"color\": \"#00758F\",\n", " \"opacity\": 100\n", " },\n", " \"date\": \"1852\",\n", " \"location\": {\n", " \"lat\": 45.583333,\n", " \"lon\": 12.566667,\n", " \"zoom\": 4\n", " },\n", " \"media\": {\n", " \"caption\": \"1852\",\n", " \"credit\": \"Harvard Art Museum\",\n", " \"url\": \"https://nrs.harvard.edu/urn-3:HUAM:VRS48803_dynmc?width=500&height=800\"\n", " },\n", " \"text\": {\n", " \"headline\": \"Studies of Venetian Capitals\",\n", " \"text\": \"Fine Arts Department, Harvard University, Cambridge, MA, Transferred to the Fogg Art Museum, 1926.\\r\\n

Artwork homepage\"\n", " }\n", " },\n", " {\n", " \"background\": {\n", " \"color\": \"#3f83e8\",\n", " \"opacity\": 100\n", " },\n", " \"date\": \"1852\",\n", " \"location\": {\n", " \"lat\": 45.45,\n", " \"lon\": 11.0,\n", " \"zoom\": 4\n", " },\n", " \"media\": {\n", " \"caption\": \"probably January 1852\",\n", " \"credit\": \"Ashmolean Museum\",\n", " \"url\": \"https://collections.ashmolean.org/media/ashmole6_collection/w800/Collections/Single_Objects/WA/WA_RS/WA_RS_RUD_097_a-a-L.jpg\"\n", " },\n", " \"text\": {\n", " \"headline\": \"Study of one of the Pinnacles of the Tomb of Mastino II della Scala, Verona\",\n", " \"text\": \"

Artwork homepage\"\n", " }\n", " },\n", " {\n", " \"background\": {\n", " \"color\": \"#3f83e8\",\n", " \"opacity\": 100\n", " },\n", " \"date\": \"1852-06\",\n", " \"location\": {\n", " \"lat\": 45.45,\n", " \"lon\": 11.0,\n", " \"zoom\": 4\n", " },\n", " \"media\": {\n", " \"caption\": \"probably June 1852\",\n", " \"credit\": \"Ashmolean Museum\",\n", " \"url\": \"https://collections.ashmolean.org/media/ashmole6_collection/w800/Collections/Single_Objects/WA/WA_RS/WA_RS_RUD_095-a-L.jpg\"\n", " },\n", " \"text\": {\n", " \"headline\": \"Study of the North Gable of the Tomb of Mastino II della Scala, Verona\",\n", " \"text\": \"

Artwork homepage\"\n", " }\n", " },\n", " {\n", " \"background\": {\n", " \"color\": \"#3f83e8\",\n", " \"opacity\": 100\n", " },\n", " \"date\": \"1852-06\",\n", " \"location\": {\n", " \"lat\": 45.45,\n", " \"lon\": 11.0,\n", " \"zoom\": 4\n", " },\n", " \"media\": {\n", " \"caption\": \"probably June 1852\",\n", " \"credit\": \"Ashmolean Museum\",\n", " \"url\": \"https://collections.ashmolean.org/media/ashmole6_collection/w800/Collections/Single_Objects/WA/WA_RS/WA_RS_RUD_095-a-L.jpg\"\n", " },\n", " \"text\": {\n", " \"headline\": \"Study of the North Gable of the Tomb of Mastino II della Scala, Verona\",\n", " \"text\": \"

Artwork homepage\"\n", " }\n", " },\n", " {\n", " \"background\": {\n", " \"color\": \"#3f83e8\",\n", " \"opacity\": 100\n", " },\n", " \"date\": \"1853\",\n", " \"location\": {\n", " \"lat\": 51.484344,\n", " \"lon\": -0.174869,\n", " \"zoom\": 4\n", " },\n", " \"media\": {\n", " \"caption\": \"1853\",\n", " \"credit\": \"Ashmolean Museum\",\n", " \"url\": \"https://collections.ashmolean.org/media/ashmole6_collection/w800/Collections/Single_Objects/WA/WA_2006/WA_2006_0000/WA_2006_175-a-L.jpg\"\n", " },\n", " \"text\": {\n", " \"headline\": \"Old Cedar in the Botanic Garden, Chelsea\",\n", " \"text\": \"

Artwork homepage\"\n", " }\n", " },\n", " {\n", " \"background\": {\n", " \"color\": \"#3f83e8\",\n", " \"opacity\": 100\n", " },\n", " \"date\": \"1853\",\n", " \"location\": {\n", " \"lat\": 51.484344,\n", " \"lon\": -0.174869,\n", " \"zoom\": 4\n", " },\n", " \"media\": {\n", " \"caption\": \"1853\",\n", " \"credit\": \"Ashmolean Museum\",\n", " \"url\": \"https://collections.ashmolean.org/media/ashmole6_collection/w800/Collections/Single_Objects/WA/WA_2006/WA_2006_0000/WA_2006_175-a-L.jpg\"\n", " },\n", " \"text\": {\n", " \"headline\": \"Old Cedar in the Botanic Garden, Chelsea\",\n", " \"text\": \"

Artwork homepage\"\n", " }\n", " },\n", " {\n", " \"background\": {\n", " \"color\": \"#00758F\",\n", " \"opacity\": 100\n", " },\n", " \"date\": \"1854\",\n", " \"location\": {\n", " \"lat\": 48.767697,\n", " \"lon\": 6.855842,\n", " \"zoom\": 4\n", " },\n", " \"media\": {\n", " \"caption\": \"1854\",\n", " \"credit\": \"Harvard Art Museum\",\n", " \"url\": \"https://nrs.harvard.edu/urn-3:HUAM:48817_dynmc?width=500&height=800\"\n", " },\n", " \"text\": {\n", " \"headline\": \"Tower of Fribourg\",\n", " \"text\": \"

Artwork homepage\"\n", " }\n", " },\n", " {\n", " \"background\": {\n", " \"color\": \"#3f83e8\",\n", " \"opacity\": 100\n", " },\n", " \"date\": \"1854\",\n", " \"location\": {\n", " \"lat\": 45.259578,\n", " \"lon\": 6.900329,\n", " \"zoom\": 4\n", " },\n", " \"media\": {\n", " \"caption\": \"1854 - 1856\",\n", " \"credit\": \"Ashmolean Museum\",\n", " \"url\": \"https://collections.ashmolean.org/media/ashmole6_collection/w800/Collections/Single_Objects/WA/WA_RS/WA_RS_ED_275-a-L.jpg\"\n", " },\n", " \"text\": {\n", " \"headline\": \"Pine Forest on Mont Cenis\",\n", " \"text\": \"

Artwork homepage\"\n", " }\n", " },\n", " {\n", " \"background\": {\n", " \"color\": \"#00758F\",\n", " \"opacity\": 100\n", " },\n", " \"date\": \"1854\",\n", " \"location\": {\n", " \"lat\": 46.416667,\n", " \"lon\": 10.0,\n", " \"zoom\": 4\n", " },\n", " \"media\": {\n", " \"caption\": \"c. 1854-1856\",\n", " \"credit\": \"Harvard Art Museum\",\n", " \"url\": \"https://nrs.harvard.edu/urn-3:HUAM:DDC100823_dynmc?width=500&height=800\"\n", " },\n", " \"text\": {\n", " \"headline\": \"Fragment of the Alps\",\n", " \"text\": \"The artist, sold; to Charles Eliot Norton c. 1858, by descent; to Sara, Margaret, and Elizabeth Norton (daughters of Charles Eliot Norton), sold; to Fogg Art Museum, 1919 [1].\\r\\n\\r\\n[1] Samuel Sachs provided the funds to purchase the drawing, however, it was never in his collection.

Artwork homepage\"\n", " }\n", " },\n", " {\n", " \"background\": {\n", " \"color\": \"#00758F\",\n", " \"opacity\": 100\n", " },\n", " \"date\": \"1854\",\n", " \"location\": {\n", " \"lat\": 48.767697,\n", " \"lon\": 6.855842,\n", " \"zoom\": 4\n", " },\n", " \"media\": {\n", " \"caption\": \"1854\",\n", " \"credit\": \"Harvard Art Museum\",\n", " \"url\": \"https://nrs.harvard.edu/urn-3:HUAM:48817_dynmc?width=500&height=800\"\n", " },\n", " \"text\": {\n", " \"headline\": \"Tower of Fribourg\",\n", " \"text\": \"

Artwork homepage\"\n", " }\n", " },\n", " {\n", " \"background\": {\n", " \"color\": \"#3f83e8\",\n", " \"opacity\": 100\n", " },\n", " \"date\": \"1854\",\n", " \"location\": {\n", " \"lat\": 45.259578,\n", " \"lon\": 6.900329,\n", " \"zoom\": 4\n", " },\n", " \"media\": {\n", " \"caption\": \"1854 - 1856\",\n", " \"credit\": \"Ashmolean Museum\",\n", " \"url\": \"https://collections.ashmolean.org/media/ashmole6_collection/w800/Collections/Single_Objects/WA/WA_RS/WA_RS_ED_275-a-L.jpg\"\n", " },\n", " \"text\": {\n", " \"headline\": \"Pine Forest on Mont Cenis\",\n", " \"text\": \"

Artwork homepage\"\n", " }\n", " },\n", " {\n", " \"background\": {\n", " \"color\": \"#00758F\",\n", " \"opacity\": 100\n", " },\n", " \"date\": \"1854\",\n", " \"location\": {\n", " \"lat\": 46.416667,\n", " \"lon\": 10.0,\n", " \"zoom\": 4\n", " },\n", " \"media\": {\n", " \"caption\": \"c. 1854-1856\",\n", " \"credit\": \"Harvard Art Museum\",\n", " \"url\": \"https://nrs.harvard.edu/urn-3:HUAM:DDC100823_dynmc?width=500&height=800\"\n", " },\n", " \"text\": {\n", " \"headline\": \"Fragment of the Alps\",\n", " \"text\": \"The artist, sold; to Charles Eliot Norton c. 1858, by descent; to Sara, Margaret, and Elizabeth Norton (daughters of Charles Eliot Norton), sold; to Fogg Art Museum, 1919 [1].\\r\\n\\r\\n[1] Samuel Sachs provided the funds to purchase the drawing, however, it was never in his collection.

Artwork homepage\"\n", " }\n", " },\n", " {\n", " \"background\": {\n", " \"color\": \"#3f83e8\",\n", " \"opacity\": 100\n", " },\n", " \"date\": \"1855\",\n", " \"location\": {\n", " \"lat\": 51.75,\n", " \"lon\": -1.25,\n", " \"zoom\": 4\n", " },\n", " \"media\": {\n", " \"caption\": \"c. 1855\",\n", " \"credit\": \"Ashmolean Museum\",\n", " \"url\": \"https://collections.ashmolean.org/media/ashmole6_collection/w800/Collections/Single_Objects/WA/WA_1931/WA_1931_0000/WA_1931_56-a-L.jpg\"\n", " },\n", " \"text\": {\n", " \"headline\": \"Design for a window in the University Museum, Oxford\",\n", " \"text\": \"

Artwork homepage\"\n", " }\n", " },\n", " {\n", " \"background\": {\n", " \"color\": \"#3f83e8\",\n", " \"opacity\": 100\n", " },\n", " \"date\": \"1855\",\n", " \"location\": {\n", " \"lat\": 51.75,\n", " \"lon\": -1.25,\n", " \"zoom\": 4\n", " },\n", " \"media\": {\n", " \"caption\": \"c. 1855\",\n", " \"credit\": \"Ashmolean Museum\",\n", " \"url\": \"https://collections.ashmolean.org/media/ashmole6_collection/w800/Collections/Single_Objects/WA/WA_1931/WA_1931_0000/WA_1931_49-a-L.jpg\"\n", " },\n", " \"text\": {\n", " \"headline\": \"Design for a window in the University Museum, Oxford\",\n", " \"text\": \"

Artwork homepage\"\n", " }\n", " },\n", " {\n", " \"background\": {\n", " \"color\": \"#3f83e8\",\n", " \"opacity\": 100\n", " },\n", " \"date\": \"1855\",\n", " \"location\": {\n", " \"lat\": 51.75,\n", " \"lon\": -1.25,\n", " \"zoom\": 4\n", " },\n", " \"media\": {\n", " \"caption\": \"c. 1855\",\n", " \"credit\": \"Ashmolean Museum\",\n", " \"url\": \"https://collections.ashmolean.org/media/ashmole6_collection/w800/Collections/Single_Objects/WA/WA_1931/WA_1931_0000/WA_1931_47-a-L.jpg\"\n", " },\n", " \"text\": {\n", " \"headline\": \"Design for a Window in the University Museum, Oxford\",\n", " \"text\": \"

Artwork homepage\"\n", " }\n", " },\n", " {\n", " \"background\": {\n", " \"color\": \"#3f83e8\",\n", " \"opacity\": 100\n", " },\n", " \"date\": \"1855\",\n", " \"location\": {\n", " \"lat\": 51.75,\n", " \"lon\": -1.25,\n", " \"zoom\": 4\n", " },\n", " \"media\": {\n", " \"caption\": \"c. 1855\",\n", " \"credit\": \"Ashmolean Museum\",\n", " \"url\": \"https://collections.ashmolean.org/media/ashmole6_collection/w800/Collections/Single_Objects/WA/WA_1931/WA_1931_0000/WA_1931_50-a-L.jpg\"\n", " },\n", " \"text\": {\n", " \"headline\": \"Design for a window in the University Museum, Oxford\",\n", " \"text\": \"

Artwork homepage\"\n", " }\n", " },\n", " {\n", " \"background\": {\n", " \"color\": \"#3f83e8\",\n", " \"opacity\": 100\n", " },\n", " \"date\": \"1855\",\n", " \"location\": {\n", " \"lat\": 51.75,\n", " \"lon\": -1.25,\n", " \"zoom\": 4\n", " },\n", " \"media\": {\n", " \"caption\": \"c. 1855\",\n", " \"credit\": \"Ashmolean Museum\",\n", " \"url\": \"https://collections.ashmolean.org/media/ashmole6_collection/w800/Collections/Single_Objects/WA/WA_1931/WA_1931_0000/WA_1931_52-a-L.jpg\"\n", " },\n", " \"text\": {\n", " \"headline\": \"Design for a window in the University Museum, Oxford\",\n", " \"text\": \"

Artwork homepage\"\n", " }\n", " },\n", " {\n", " \"background\": {\n", " \"color\": \"#3f83e8\",\n", " \"opacity\": 100\n", " },\n", " \"date\": \"1855\",\n", " \"location\": {\n", " \"lat\": 51.75,\n", " \"lon\": -1.25,\n", " \"zoom\": 4\n", " },\n", " \"media\": {\n", " \"caption\": \"c. 1855\",\n", " \"credit\": \"Ashmolean Museum\",\n", " \"url\": \"https://collections.ashmolean.org/media/ashmole6_collection/w800/Collections/Single_Objects/WA/WA_1931/WA_1931_0000/WA_1931_54-a-L.jpg\"\n", " },\n", " \"text\": {\n", " \"headline\": \"Design for a window in the University Museum, Oxford\",\n", " \"text\": \"

Artwork homepage\"\n", " }\n", " },\n", " {\n", " \"background\": {\n", " \"color\": \"#3f83e8\",\n", " \"opacity\": 100\n", " },\n", " \"date\": \"1855\",\n", " \"location\": {\n", " \"lat\": 51.75,\n", " \"lon\": -1.25,\n", " \"zoom\": 4\n", " },\n", " \"media\": {\n", " \"caption\": \"c. 1855\",\n", " \"credit\": \"Ashmolean Museum\",\n", " \"url\": \"https://collections.ashmolean.org/media/ashmole6_collection/w800/Collections/Single_Objects/WA/WA_1931/WA_1931_0000/WA_1931_55-a-L.jpg\"\n", " },\n", " \"text\": {\n", " \"headline\": \"Design for a window in the University Museum, Oxford\",\n", " \"text\": \"

Artwork homepage\"\n", " }\n", " },\n", " {\n", " \"background\": {\n", " \"color\": \"#3f83e8\",\n", " \"opacity\": 100\n", " },\n", " \"date\": \"1855\",\n", " \"location\": {\n", " \"lat\": 51.75,\n", " \"lon\": -1.25,\n", " \"zoom\": 4\n", " },\n", " \"media\": {\n", " \"caption\": \"c. 1855\",\n", " \"credit\": \"Ashmolean Museum\",\n", " \"url\": \"https://collections.ashmolean.org/media/ashmole6_collection/w800/Collections/Single_Objects/WA/WA_1931/WA_1931_0000/WA_1931_51-a-L.jpg\"\n", " },\n", " \"text\": {\n", " \"headline\": \"Design for a window in the University Museum, Oxford\",\n", " \"text\": \"

Artwork homepage\"\n", " }\n", " },\n", " {\n", " \"background\": {\n", " \"color\": \"#3f83e8\",\n", " \"opacity\": 100\n", " },\n", " \"date\": \"1855\",\n", " \"location\": {\n", " \"lat\": 51.75,\n", " \"lon\": -1.25,\n", " \"zoom\": 4\n", " },\n", " \"media\": {\n", " \"caption\": \"c. 1855\",\n", " \"credit\": \"Ashmolean Museum\",\n", " \"url\": \"https://collections.ashmolean.org/media/ashmole6_collection/w800/Collections/Single_Objects/WA/WA_1931/WA_1931_0000/WA_1931_53-a-L.jpg\"\n", " },\n", " \"text\": {\n", " \"headline\": \"Design for a window in the University Museum, Oxford\",\n", " \"text\": \"

Artwork homepage\"\n", " }\n", " },\n", " {\n", " \"background\": {\n", " \"color\": \"#3f83e8\",\n", " \"opacity\": 100\n", " },\n", " \"date\": \"1855\",\n", " \"location\": {\n", " \"lat\": 51.75,\n", " \"lon\": -1.25,\n", " \"zoom\": 4\n", " },\n", " \"media\": {\n", " \"caption\": \"c. 1855\",\n", " \"credit\": \"Ashmolean Museum\",\n", " \"url\": \"https://collections.ashmolean.org/media/ashmole6_collection/w800/Collections/Single_Objects/WA/WA_1931/WA_1931_0000/WA_1931_56-a-L.jpg\"\n", " },\n", " \"text\": {\n", " \"headline\": \"Design for a window in the University Museum, Oxford\",\n", " \"text\": \"

Artwork homepage\"\n", " }\n", " },\n", " {\n", " \"background\": {\n", " \"color\": \"#3f83e8\",\n", " \"opacity\": 100\n", " },\n", " \"date\": \"1855\",\n", " \"location\": {\n", " \"lat\": 51.75,\n", " \"lon\": -1.25,\n", " \"zoom\": 4\n", " },\n", " \"media\": {\n", " \"caption\": \"c. 1855\",\n", " \"credit\": \"Ashmolean Museum\",\n", " \"url\": \"https://collections.ashmolean.org/media/ashmole6_collection/w800/Collections/Single_Objects/WA/WA_1931/WA_1931_0000/WA_1931_49-a-L.jpg\"\n", " },\n", " \"text\": {\n", " \"headline\": \"Design for a window in the University Museum, Oxford\",\n", " \"text\": \"

Artwork homepage\"\n", " }\n", " },\n", " {\n", " \"background\": {\n", " \"color\": \"#3f83e8\",\n", " \"opacity\": 100\n", " },\n", " \"date\": \"1855\",\n", " \"location\": {\n", " \"lat\": 51.75,\n", " \"lon\": -1.25,\n", " \"zoom\": 4\n", " },\n", " \"media\": {\n", " \"caption\": \"c. 1855\",\n", " \"credit\": \"Ashmolean Museum\",\n", " \"url\": \"https://collections.ashmolean.org/media/ashmole6_collection/w800/Collections/Single_Objects/WA/WA_1931/WA_1931_0000/WA_1931_47-a-L.jpg\"\n", " },\n", " \"text\": {\n", " \"headline\": \"Design for a Window in the University Museum, Oxford\",\n", " \"text\": \"

Artwork homepage\"\n", " }\n", " },\n", " {\n", " \"background\": {\n", " \"color\": \"#3f83e8\",\n", " \"opacity\": 100\n", " },\n", " \"date\": \"1855\",\n", " \"location\": {\n", " \"lat\": 51.75,\n", " \"lon\": -1.25,\n", " \"zoom\": 4\n", " },\n", " \"media\": {\n", " \"caption\": \"c. 1855\",\n", " \"credit\": \"Ashmolean Museum\",\n", " \"url\": \"https://collections.ashmolean.org/media/ashmole6_collection/w800/Collections/Single_Objects/WA/WA_1931/WA_1931_0000/WA_1931_50-a-L.jpg\"\n", " },\n", " \"text\": {\n", " \"headline\": \"Design for a window in the University Museum, Oxford\",\n", " \"text\": \"

Artwork homepage\"\n", " }\n", " },\n", " {\n", " \"background\": {\n", " \"color\": \"#3f83e8\",\n", " \"opacity\": 100\n", " },\n", " \"date\": \"1855\",\n", " \"location\": {\n", " \"lat\": 51.75,\n", " \"lon\": -1.25,\n", " \"zoom\": 4\n", " },\n", " \"media\": {\n", " \"caption\": \"c. 1855\",\n", " \"credit\": \"Ashmolean Museum\",\n", " \"url\": \"https://collections.ashmolean.org/media/ashmole6_collection/w800/Collections/Single_Objects/WA/WA_1931/WA_1931_0000/WA_1931_52-a-L.jpg\"\n", " },\n", " \"text\": {\n", " \"headline\": \"Design for a window in the University Museum, Oxford\",\n", " \"text\": \"

Artwork homepage\"\n", " }\n", " },\n", " {\n", " \"background\": {\n", " \"color\": \"#3f83e8\",\n", " \"opacity\": 100\n", " },\n", " \"date\": \"1855\",\n", " \"location\": {\n", " \"lat\": 51.75,\n", " \"lon\": -1.25,\n", " \"zoom\": 4\n", " },\n", " \"media\": {\n", " \"caption\": \"c. 1855\",\n", " \"credit\": \"Ashmolean Museum\",\n", " \"url\": \"https://collections.ashmolean.org/media/ashmole6_collection/w800/Collections/Single_Objects/WA/WA_1931/WA_1931_0000/WA_1931_54-a-L.jpg\"\n", " },\n", " \"text\": {\n", " \"headline\": \"Design for a window in the University Museum, Oxford\",\n", " \"text\": \"

Artwork homepage\"\n", " }\n", " },\n", " {\n", " \"background\": {\n", " \"color\": \"#3f83e8\",\n", " \"opacity\": 100\n", " },\n", " \"date\": \"1855\",\n", " \"location\": {\n", " \"lat\": 51.75,\n", " \"lon\": -1.25,\n", " \"zoom\": 4\n", " },\n", " \"media\": {\n", " \"caption\": \"c. 1855\",\n", " \"credit\": \"Ashmolean Museum\",\n", " \"url\": \"https://collections.ashmolean.org/media/ashmole6_collection/w800/Collections/Single_Objects/WA/WA_1931/WA_1931_0000/WA_1931_55-a-L.jpg\"\n", " },\n", " \"text\": {\n", " \"headline\": \"Design for a window in the University Museum, Oxford\",\n", " \"text\": \"

Artwork homepage\"\n", " }\n", " },\n", " {\n", " \"background\": {\n", " \"color\": \"#3f83e8\",\n", " \"opacity\": 100\n", " },\n", " \"date\": \"1855\",\n", " \"location\": {\n", " \"lat\": 51.75,\n", " \"lon\": -1.25,\n", " \"zoom\": 4\n", " },\n", " \"media\": {\n", " \"caption\": \"c. 1855\",\n", " \"credit\": \"Ashmolean Museum\",\n", " \"url\": \"https://collections.ashmolean.org/media/ashmole6_collection/w800/Collections/Single_Objects/WA/WA_1931/WA_1931_0000/WA_1931_51-a-L.jpg\"\n", " },\n", " \"text\": {\n", " \"headline\": \"Design for a window in the University Museum, Oxford\",\n", " \"text\": \"

Artwork homepage\"\n", " }\n", " },\n", " {\n", " \"background\": {\n", " \"color\": \"#3f83e8\",\n", " \"opacity\": 100\n", " },\n", " \"date\": \"1855\",\n", " \"location\": {\n", " \"lat\": 51.75,\n", " \"lon\": -1.25,\n", " \"zoom\": 4\n", " },\n", " \"media\": {\n", " \"caption\": \"c. 1855\",\n", " \"credit\": \"Ashmolean Museum\",\n", " \"url\": \"https://collections.ashmolean.org/media/ashmole6_collection/w800/Collections/Single_Objects/WA/WA_1931/WA_1931_0000/WA_1931_53-a-L.jpg\"\n", " },\n", " \"text\": {\n", " \"headline\": \"Design for a window in the University Museum, Oxford\",\n", " \"text\": \"

Artwork homepage\"\n", " }\n", " },\n", " {\n", " \"background\": {\n", " \"color\": \"#3f83e8\",\n", " \"opacity\": 100\n", " },\n", " \"date\": \"1856-07\",\n", " \"location\": {\n", " \"lat\": 48.767697,\n", " \"lon\": 6.855842,\n", " \"zoom\": 4\n", " },\n", " \"media\": {\n", " \"caption\": \"July or August - September 1856\",\n", " \"credit\": \"Ashmolean Museum\",\n", " \"url\": \"https://collections.ashmolean.org/media/ashmole6_collection/w800/Collections/Single_Objects/WA/WA_RS/WA_RS_ED_114_a-a-L.jpg\"\n", " },\n", " \"text\": {\n", " \"headline\": \"Fribourg, Switzerland: Pen sketch\",\n", " \"text\": \"

Artwork homepage\"\n", " }\n", " },\n", " {\n", " \"background\": {\n", " \"color\": \"#3f83e8\",\n", " \"opacity\": 100\n", " },\n", " \"date\": \"1856-07\",\n", " \"location\": {\n", " \"lat\": 48.767697,\n", " \"lon\": 6.855842,\n", " \"zoom\": 4\n", " },\n", " \"media\": {\n", " \"caption\": \"July or August - September 1856\",\n", " \"credit\": \"Ashmolean Museum\",\n", " \"url\": \"https://collections.ashmolean.org/media/ashmole6_collection/w800/Collections/Single_Objects/WA/WA_RS/WA_RS_ED_114_a-a-L.jpg\"\n", " },\n", " \"text\": {\n", " \"headline\": \"Fribourg, Switzerland: Pen sketch\",\n", " \"text\": \"

Artwork homepage\"\n", " }\n", " },\n", " {\n", " \"background\": {\n", " \"color\": \"#3f83e8\",\n", " \"opacity\": 100\n", " },\n", " \"date\": \"1858\",\n", " \"location\": {\n", " \"lat\": 47.4667,\n", " \"lon\": 8.1833,\n", " \"zoom\": 4\n", " },\n", " \"media\": {\n", " \"caption\": \"1858 or 1863\",\n", " \"credit\": \"Ashmolean Museum\",\n", " \"url\": \"https://collections.ashmolean.org/media/ashmole6_collection/w800/Collections/Single_Objects/WA/WA_RS/WA_RS_ED_299-a-L.jpg\"\n", " },\n", " \"text\": {\n", " \"headline\": \"Evening in Autumn under the Castle of Habsburg\",\n", " \"text\": \"

Artwork homepage\"\n", " }\n", " },\n", " {\n", " \"background\": {\n", " \"color\": \"#3f83e8\",\n", " \"opacity\": 100\n", " },\n", " \"date\": \"1858\",\n", " \"location\": {\n", " \"lat\": 50.166667,\n", " \"lon\": 1.75,\n", " \"zoom\": 4\n", " },\n", " \"media\": {\n", " \"caption\": \"1858\",\n", " \"credit\": \"Ashmolean Museum\",\n", " \"url\": \"https://collections.ashmolean.org/media/ashmole6_collection/w800/Collections/Single_Objects/WA/WA_RS/WA_RS_ED/WA_RS_ED_062-a-L.jpg\"\n", " },\n", " \"text\": {\n", " \"headline\": \"The Courtyard of a Late Gothic Wooden House at Abbeville\",\n", " \"text\": \"

Artwork homepage\"\n", " }\n", " },\n", " {\n", " \"background\": {\n", " \"color\": \"#00758F\",\n", " \"opacity\": 100\n", " },\n", " \"date\": \"1858\",\n", " \"location\": {\n", " \"lat\": 46.194902,\n", " \"lon\": 9.024729,\n", " \"zoom\": 4\n", " },\n", " \"media\": {\n", " \"caption\": \"1858\",\n", " \"credit\": \"Harvard Art Museum\",\n", " \"url\": \"https://nrs.harvard.edu/urn-3:HUAM:INV121895_dynmc?width=500&height=800\"\n", " },\n", " \"text\": {\n", " \"headline\": \"Bellinzona\",\n", " \"text\": \"Miss Eleanor B. Eaton and Horace A. Eaton, gift; to Fogg Art Museum, 1934

Artwork homepage\"\n", " }\n", " },\n", " {\n", " \"background\": {\n", " \"color\": \"#3f83e8\",\n", " \"opacity\": 100\n", " },\n", " \"date\": \"1858\",\n", " \"location\": {\n", " \"lat\": 47.4667,\n", " \"lon\": 8.1833,\n", " \"zoom\": 4\n", " },\n", " \"media\": {\n", " \"caption\": \"1858 or 1863\",\n", " \"credit\": \"Ashmolean Museum\",\n", " \"url\": \"https://collections.ashmolean.org/media/ashmole6_collection/w800/Collections/Single_Objects/WA/WA_RS/WA_RS_ED_299-a-L.jpg\"\n", " },\n", " \"text\": {\n", " \"headline\": \"Evening in Autumn under the Castle of Habsburg\",\n", " \"text\": \"

Artwork homepage\"\n", " }\n", " },\n", " {\n", " \"background\": {\n", " \"color\": \"#3f83e8\",\n", " \"opacity\": 100\n", " },\n", " \"date\": \"1858\",\n", " \"location\": {\n", " \"lat\": 50.166667,\n", " \"lon\": 1.75,\n", " \"zoom\": 4\n", " },\n", " \"media\": {\n", " \"caption\": \"1858\",\n", " \"credit\": \"Ashmolean Museum\",\n", " \"url\": \"https://collections.ashmolean.org/media/ashmole6_collection/w800/Collections/Single_Objects/WA/WA_RS/WA_RS_ED/WA_RS_ED_062-a-L.jpg\"\n", " },\n", " \"text\": {\n", " \"headline\": \"The Courtyard of a Late Gothic Wooden House at Abbeville\",\n", " \"text\": \"

Artwork homepage\"\n", " }\n", " },\n", " {\n", " \"background\": {\n", " \"color\": \"#00758F\",\n", " \"opacity\": 100\n", " },\n", " \"date\": \"1858\",\n", " \"location\": {\n", " \"lat\": 46.194902,\n", " \"lon\": 9.024729,\n", " \"zoom\": 4\n", " },\n", " \"media\": {\n", " \"caption\": \"1858\",\n", " \"credit\": \"Harvard Art Museum\",\n", " \"url\": \"https://nrs.harvard.edu/urn-3:HUAM:INV121895_dynmc?width=500&height=800\"\n", " },\n", " \"text\": {\n", " \"headline\": \"Bellinzona\",\n", " \"text\": \"Miss Eleanor B. Eaton and Horace A. Eaton, gift; to Fogg Art Museum, 1934

Artwork homepage\"\n", " }\n", " },\n", " {\n", " \"background\": {\n", " \"color\": \"#3f83e8\",\n", " \"opacity\": 100\n", " },\n", " \"date\": \"1858-05\",\n", " \"location\": {\n", " \"lat\": 51.75,\n", " \"lon\": 8.216667,\n", " \"zoom\": 4\n", " },\n", " \"media\": {\n", " \"caption\": \"16 - 18 May 1858\",\n", " \"credit\": \"Ashmolean Museum\",\n", " \"url\": \"https://collections.ashmolean.org/media/ashmole6_collection/w800/Collections/Single_Objects/WA/WA_RS/WA_RS_ED_122-a-L.jpg\"\n", " },\n", " \"text\": {\n", " \"headline\": \"Basle (Basel), with Outline of the Mountains of the Black Forest\",\n", " \"text\": \"

Artwork homepage\"\n", " }\n", " },\n", " {\n", " \"background\": {\n", " \"color\": \"#3f83e8\",\n", " \"opacity\": 100\n", " },\n", " \"date\": \"1858-05\",\n", " \"location\": {\n", " \"lat\": 51.75,\n", " \"lon\": 8.216667,\n", " \"zoom\": 4\n", " },\n", " \"media\": {\n", " \"caption\": \"16 - 18 May 1858\",\n", " \"credit\": \"Ashmolean Museum\",\n", " \"url\": \"https://collections.ashmolean.org/media/ashmole6_collection/w800/Collections/Single_Objects/WA/WA_RS/WA_RS_ED_122-a-L.jpg\"\n", " },\n", " \"text\": {\n", " \"headline\": \"Basle (Basel), with Outline of the Mountains of the Black Forest\",\n", " \"text\": \"

Artwork homepage\"\n", " }\n", " },\n", " {\n", " \"background\": {\n", " \"color\": \"#00758F\",\n", " \"opacity\": 100\n", " },\n", " \"date\": \"1859\",\n", " \"location\": {\n", " \"lat\": 50.770833,\n", " \"lon\": 6.105278,\n", " \"zoom\": 4\n", " },\n", " \"media\": {\n", " \"caption\": \"1859\",\n", " \"credit\": \"Harvard Art Museum\",\n", " \"url\": \"https://nrs.harvard.edu/urn-3:HUAM:VRS48769?width=500&height=800\"\n", " },\n", " \"text\": {\n", " \"headline\": \"H\\u00f4tel de Ville, Aix-la-Chapelle\",\n", " \"text\": \"

Artwork homepage\"\n", " }\n", " },\n", " {\n", " \"background\": {\n", " \"color\": \"#00758F\",\n", " \"opacity\": 100\n", " },\n", " \"date\": \"1859\",\n", " \"location\": {\n", " \"lat\": 50.770833,\n", " \"lon\": 6.105278,\n", " \"zoom\": 4\n", " },\n", " \"media\": {\n", " \"caption\": \"1859\",\n", " \"credit\": \"Harvard Art Museum\",\n", " \"url\": \"https://nrs.harvard.edu/urn-3:HUAM:VRS48769?width=500&height=800\"\n", " },\n", " \"text\": {\n", " \"headline\": \"H\\u00f4tel de Ville, Aix-la-Chapelle\",\n", " \"text\": \"

Artwork homepage\"\n", " }\n", " },\n", " {\n", " \"background\": {\n", " \"color\": \"#00758F\",\n", " \"opacity\": 100\n", " },\n", " \"date\": \"1859-07\",\n", " \"location\": {\n", " \"lat\": 49.966667,\n", " \"lon\": 7.933333,\n", " \"zoom\": 4\n", " },\n", " \"media\": {\n", " \"caption\": \"July 26, 1859\",\n", " \"credit\": \"Harvard Art Museum\",\n", " \"url\": \"https://nrs.harvard.edu/urn-3:HUAM:70389_dynmc?width=500&height=800\"\n", " },\n", " \"text\": {\n", " \"headline\": \"Kempten\",\n", " \"text\": \"Fine Arts Department, Harvard University, Cambridge, MA, Transferred to the Fogg Art Museum, 1926.\\r\\n

Artwork homepage\"\n", " }\n", " },\n", " {\n", " \"background\": {\n", " \"color\": \"#00758F\",\n", " \"opacity\": 100\n", " },\n", " \"date\": \"1859-07\",\n", " \"location\": {\n", " \"lat\": 49.966667,\n", " \"lon\": 7.933333,\n", " \"zoom\": 4\n", " },\n", " \"media\": {\n", " \"caption\": \"July 26, 1859\",\n", " \"credit\": \"Harvard Art Museum\",\n", " \"url\": \"https://nrs.harvard.edu/urn-3:HUAM:70389_dynmc?width=500&height=800\"\n", " },\n", " \"text\": {\n", " \"headline\": \"Kempten\",\n", " \"text\": \"Fine Arts Department, Harvard University, Cambridge, MA, Transferred to the Fogg Art Museum, 1926.\\r\\n

Artwork homepage\"\n", " }\n", " },\n", " {\n", " \"background\": {\n", " \"color\": \"#3f83e8\",\n", " \"opacity\": 100\n", " },\n", " \"date\": \"1860\",\n", " \"location\": {\n", " \"lat\": 47.285,\n", " \"lon\": 11.03,\n", " \"zoom\": 4\n", " },\n", " \"media\": {\n", " \"caption\": \"before 1860\",\n", " \"credit\": \"Ashmolean Museum\",\n", " \"url\": \"https://collections.ashmolean.org/media/ashmole6_collection/w800/Collections/Single_Objects/WA/WA_RS/WA_RS_ED_101-a-L.jpg\"\n", " },\n", " \"text\": {\n", " \"headline\": \"Etching of Turner's Drawing of 'Rietz, near Saumur'\",\n", " \"text\": \"

Artwork homepage\"\n", " }\n", " },\n", " {\n", " \"background\": {\n", " \"color\": \"#3f83e8\",\n", " \"opacity\": 100\n", " },\n", " \"date\": \"1860\",\n", " \"location\": {\n", " \"lat\": 47.285,\n", " \"lon\": 11.03,\n", " \"zoom\": 4\n", " },\n", " \"media\": {\n", " \"caption\": \"before 1860\",\n", " \"credit\": \"Ashmolean Museum\",\n", " \"url\": \"https://collections.ashmolean.org/media/ashmole6_collection/w800/Collections/Single_Objects/WA/WA_RS/WA_RS_ED_101-a-L.jpg\"\n", " },\n", " \"text\": {\n", " \"headline\": \"Etching of Turner's Drawing of 'Rietz, near Saumur'\",\n", " \"text\": \"

Artwork homepage\"\n", " }\n", " },\n", " {\n", " \"background\": {\n", " \"color\": \"#3f83e8\",\n", " \"opacity\": 100\n", " },\n", " \"date\": \"1861\",\n", " \"location\": {\n", " \"lat\": 54.033333,\n", " \"lon\": -2.9,\n", " \"zoom\": 4\n", " },\n", " \"media\": {\n", " \"caption\": \"probably 1861 - 1863\",\n", " \"credit\": \"Ashmolean Museum\",\n", " \"url\": \"https://collections.ashmolean.org/media/ashmole6_collection/w800/Collections/Single_Objects/WA/WA_RS/WA_RS_ED_290-a-L.jpg\"\n", " },\n", " \"text\": {\n", " \"headline\": \"Tracing of Turner's 'Heysham and Cumberland Mountains'\",\n", " \"text\": \"

Artwork homepage\"\n", " }\n", " },\n", " {\n", " \"background\": {\n", " \"color\": \"#3f83e8\",\n", " \"opacity\": 100\n", " },\n", " \"date\": \"1861\",\n", " \"location\": {\n", " \"lat\": 54.033333,\n", " \"lon\": -2.9,\n", " \"zoom\": 4\n", " },\n", " \"media\": {\n", " \"caption\": \"probably 1861 - 1863\",\n", " \"credit\": \"Ashmolean Museum\",\n", " \"url\": \"https://collections.ashmolean.org/media/ashmole6_collection/w800/Collections/Single_Objects/WA/WA_RS/WA_RS_ED_290-a-L.jpg\"\n", " },\n", " \"text\": {\n", " \"headline\": \"Tracing of Turner's 'Heysham and Cumberland Mountains'\",\n", " \"text\": \"

Artwork homepage\"\n", " }\n", " },\n", " {\n", " \"background\": {\n", " \"color\": \"#3f83e8\",\n", " \"opacity\": 100\n", " },\n", " \"date\": \"1861-10\",\n", " \"location\": {\n", " \"lat\": 47.083333,\n", " \"lon\": 8.266667,\n", " \"zoom\": 4\n", " },\n", " \"media\": {\n", " \"caption\": \"October - December 1861\",\n", " \"credit\": \"Ashmolean Museum\",\n", " \"url\": \"https://collections.ashmolean.org/media/ashmole6_collection/w800/Collections/Single_Objects/WA/WA_RS/WA_RS_ED_117_a-a-L.jpg\"\n", " },\n", " \"text\": {\n", " \"headline\": \"View of Luzern from above\",\n", " \"text\": \"

Artwork homepage\"\n", " }\n", " },\n", " {\n", " \"background\": {\n", " \"color\": \"#3f83e8\",\n", " \"opacity\": 100\n", " },\n", " \"date\": \"1861-10\",\n", " \"location\": {\n", " \"lat\": 47.083333,\n", " \"lon\": 8.266667,\n", " \"zoom\": 4\n", " },\n", " \"media\": {\n", " \"caption\": \"probably 17 - 19 October 1861\",\n", " \"credit\": \"Ashmolean Museum\",\n", " \"url\": \"https://collections.ashmolean.org/media/ashmole6_collection/w800/Collections/Single_Objects/WA/WA_RS/WA_RS_ED_116-a-L.jpg\"\n", " },\n", " \"text\": {\n", " \"headline\": \"The Kapellbr\\u00fccke at Luzern (Lucerne)\",\n", " \"text\": \"

Artwork homepage\"\n", " }\n", " },\n", " {\n", " \"background\": {\n", " \"color\": \"#3f83e8\",\n", " \"opacity\": 100\n", " },\n", " \"date\": \"1861-10\",\n", " \"location\": {\n", " \"lat\": 47.083333,\n", " \"lon\": 8.266667,\n", " \"zoom\": 4\n", " },\n", " \"media\": {\n", " \"caption\": \"October - December 1861\",\n", " \"credit\": \"Ashmolean Museum\",\n", " \"url\": \"https://collections.ashmolean.org/media/ashmole6_collection/w800/Collections/Single_Objects/WA/WA_RS/WA_RS_ED_117_a-a-L.jpg\"\n", " },\n", " \"text\": {\n", " \"headline\": \"View of Luzern from above\",\n", " \"text\": \"

Artwork homepage\"\n", " }\n", " },\n", " {\n", " \"background\": {\n", " \"color\": \"#3f83e8\",\n", " \"opacity\": 100\n", " },\n", " \"date\": \"1861-10\",\n", " \"location\": {\n", " \"lat\": 47.083333,\n", " \"lon\": 8.266667,\n", " \"zoom\": 4\n", " },\n", " \"media\": {\n", " \"caption\": \"probably 17 - 19 October 1861\",\n", " \"credit\": \"Ashmolean Museum\",\n", " \"url\": \"https://collections.ashmolean.org/media/ashmole6_collection/w800/Collections/Single_Objects/WA/WA_RS/WA_RS_ED_116-a-L.jpg\"\n", " },\n", " \"text\": {\n", " \"headline\": \"The Kapellbr\\u00fccke at Luzern (Lucerne)\",\n", " \"text\": \"

Artwork homepage\"\n", " }\n", " },\n", " {\n", " \"background\": {\n", " \"color\": \"#3f83e8\",\n", " \"opacity\": 100\n", " },\n", " \"date\": \"1862\",\n", " \"location\": {\n", " \"lat\": 46.196732,\n", " \"lon\": 6.110443,\n", " \"zoom\": 4\n", " },\n", " \"media\": {\n", " \"caption\": \"probably autumn 1862\",\n", " \"credit\": \"Ashmolean Museum\",\n", " \"url\": \"https://collections.ashmolean.org/media/ashmole6_collection/w800/Collections/Single_Objects/WA/WA_RS/WA_RS_ED_297-a-L.jpg\"\n", " },\n", " \"text\": {\n", " \"headline\": \"Autumnal Cloud filling the Valley of Geneva, the Jura rising out of it, seen from the Brezon above Bonneville\",\n", " \"text\": \"

Artwork homepage\"\n", " }\n", " },\n", " {\n", " \"background\": {\n", " \"color\": \"#3f83e8\",\n", " \"opacity\": 100\n", " },\n", " \"date\": \"1862\",\n", " \"location\": {\n", " \"lat\": 46.196732,\n", " \"lon\": 6.110443,\n", " \"zoom\": 4\n", " },\n", " \"media\": {\n", " \"caption\": \"probably autumn 1862\",\n", " \"credit\": \"Ashmolean Museum\",\n", " \"url\": \"https://collections.ashmolean.org/media/ashmole6_collection/w800/Collections/Single_Objects/WA/WA_RS/WA_RS_ED_297-a-L.jpg\"\n", " },\n", " \"text\": {\n", " \"headline\": \"Autumnal Cloud filling the Valley of Geneva, the Jura rising out of it, seen from the Brezon above Bonneville\",\n", " \"text\": \"

Artwork homepage\"\n", " }\n", " },\n", " {\n", " \"background\": {\n", " \"color\": \"#00758F\",\n", " \"opacity\": 100\n", " },\n", " \"date\": \"1863\",\n", " \"location\": {\n", " \"lat\": 48.75,\n", " \"lon\": 8.25,\n", " \"zoom\": 4\n", " },\n", " \"media\": {\n", " \"caption\": \"1863(?)\",\n", " \"credit\": \"Harvard Art Museum\",\n", " \"url\": \"https://nrs.harvard.edu/urn-3:HUAM:VRS48807_dynmc?width=500&height=800\"\n", " },\n", " \"text\": {\n", " \"headline\": \"Towers at Baden\",\n", " \"text\": \"Fine Arts Department, Harvard University, Cambridge, MA, Transferred to the Fogg Art Museum, 1926.\\r\\n

Artwork homepage\"\n", " }\n", " },\n", " {\n", " \"background\": {\n", " \"color\": \"#00758F\",\n", " \"opacity\": 100\n", " },\n", " \"date\": \"1863\",\n", " \"location\": {\n", " \"lat\": 49.266667,\n", " \"lon\": 6.816667,\n", " \"zoom\": 4\n", " },\n", " \"media\": {\n", " \"caption\": \"c. 1863-1869\",\n", " \"credit\": \"Harvard Art Museum\",\n", " \"url\": \"https://nrs.harvard.edu/urn-3:HUAM:VRS46314_dynmc?width=500&height=800\"\n", " },\n", " \"text\": {\n", " \"headline\": \"Town of Schaffhausen: Castle and Turrets\",\n", " \"text\": \"

Artwork homepage\"\n", " }\n", " },\n", " {\n", " \"background\": {\n", " \"color\": \"#00758F\",\n", " \"opacity\": 100\n", " },\n", " \"date\": \"1863\",\n", " \"location\": {\n", " \"lat\": 48.75,\n", " \"lon\": 8.25,\n", " \"zoom\": 4\n", " },\n", " \"media\": {\n", " \"caption\": \"1863(?)\",\n", " \"credit\": \"Harvard Art Museum\",\n", " \"url\": \"https://nrs.harvard.edu/urn-3:HUAM:VRS48807_dynmc?width=500&height=800\"\n", " },\n", " \"text\": {\n", " \"headline\": \"Towers at Baden\",\n", " \"text\": \"Fine Arts Department, Harvard University, Cambridge, MA, Transferred to the Fogg Art Museum, 1926.\\r\\n

Artwork homepage\"\n", " }\n", " },\n", " {\n", " \"background\": {\n", " \"color\": \"#00758F\",\n", " \"opacity\": 100\n", " },\n", " \"date\": \"1863\",\n", " \"location\": {\n", " \"lat\": 49.266667,\n", " \"lon\": 6.816667,\n", " \"zoom\": 4\n", " },\n", " \"media\": {\n", " \"caption\": \"c. 1863-1869\",\n", " \"credit\": \"Harvard Art Museum\",\n", " \"url\": \"https://nrs.harvard.edu/urn-3:HUAM:VRS46314_dynmc?width=500&height=800\"\n", " },\n", " \"text\": {\n", " \"headline\": \"Town of Schaffhausen: Castle and Turrets\",\n", " \"text\": \"

Artwork homepage\"\n", " }\n", " },\n", " {\n", " \"background\": {\n", " \"color\": \"#3f83e8\",\n", " \"opacity\": 100\n", " },\n", " \"date\": \"1863-03\",\n", " \"location\": {\n", " \"lat\": 46.416667,\n", " \"lon\": 10.0,\n", " \"zoom\": 4\n", " },\n", " \"media\": {\n", " \"caption\": \"March 1863\",\n", " \"credit\": \"Ashmolean Museum\",\n", " \"url\": \"https://collections.ashmolean.org/media/ashmole6_collection/w800/Collections/Single_Objects/WA/WA_RS/WA_RS_RUD_132-a-L.jpg\"\n", " },\n", " \"text\": {\n", " \"headline\": \"The Brezon and Alps of the Reposoir, seen from Mornex: finished pencil sketch from nature\",\n", " \"text\": \"

Artwork homepage\"\n", " }\n", " },\n", " {\n", " \"background\": {\n", " \"color\": \"#3f83e8\",\n", " \"opacity\": 100\n", " },\n", " \"date\": \"1863-03\",\n", " \"location\": {\n", " \"lat\": 46.416667,\n", " \"lon\": 10.0,\n", " \"zoom\": 4\n", " },\n", " \"media\": {\n", " \"caption\": \"March 1863\",\n", " \"credit\": \"Ashmolean Museum\",\n", " \"url\": \"https://collections.ashmolean.org/media/ashmole6_collection/w800/Collections/Single_Objects/WA/WA_RS/WA_RS_RUD_132-a-L.jpg\"\n", " },\n", " \"text\": {\n", " \"headline\": \"The Brezon and Alps of the Reposoir, seen from Mornex: finished pencil sketch from nature\",\n", " \"text\": \"

Artwork homepage\"\n", " }\n", " },\n", " {\n", " \"background\": {\n", " \"color\": \"#00758F\",\n", " \"opacity\": 100\n", " },\n", " \"date\": \"1866\",\n", " \"location\": {\n", " \"lat\": 46.990867,\n", " \"lon\": 6.797675,\n", " \"zoom\": 4\n", " },\n", " \"media\": {\n", " \"caption\": \"1866\",\n", " \"credit\": \"Harvard Art Museum\",\n", " \"url\": \"https://nrs.harvard.edu/urn-3:HUAM:VRS38476_dynmc?width=500&height=800\"\n", " },\n", " \"text\": {\n", " \"headline\": \"Dawn at Neuch\\u00e2tel\",\n", " \"text\": \"Samuel Sachs, gift; to Fogg Art Museum, 1919

Artwork homepage\"\n", " }\n", " },\n", " {\n", " \"background\": {\n", " \"color\": \"#00758F\",\n", " \"opacity\": 100\n", " },\n", " \"date\": \"1866\",\n", " \"location\": {\n", " \"lat\": 46.595676,\n", " \"lon\": 7.907654,\n", " \"zoom\": 4\n", " },\n", " \"media\": {\n", " \"caption\": \"1866(?)\",\n", " \"credit\": \"Harvard Art Museum\",\n", " \"url\": \"https://nrs.harvard.edu/urn-3:HUAM:VRS48777_dynmc?width=500&height=800\"\n", " },\n", " \"text\": {\n", " \"headline\": \"View of the Valley of Lauterbrunnen\",\n", " \"text\": \"Samuel Sachs, gift; to Fogg Art Museum, 1919

Artwork homepage\"\n", " }\n", " },\n", " {\n", " \"background\": {\n", " \"color\": \"#00758F\",\n", " \"opacity\": 100\n", " },\n", " \"date\": \"1866\",\n", " \"location\": {\n", " \"lat\": 46.990867,\n", " \"lon\": 6.797675,\n", " \"zoom\": 4\n", " },\n", " \"media\": {\n", " \"caption\": \"1866\",\n", " \"credit\": \"Harvard Art Museum\",\n", " \"url\": \"https://nrs.harvard.edu/urn-3:HUAM:VRS38476_dynmc?width=500&height=800\"\n", " },\n", " \"text\": {\n", " \"headline\": \"Dawn at Neuch\\u00e2tel\",\n", " \"text\": \"Samuel Sachs, gift; to Fogg Art Museum, 1919

Artwork homepage\"\n", " }\n", " },\n", " {\n", " \"background\": {\n", " \"color\": \"#00758F\",\n", " \"opacity\": 100\n", " },\n", " \"date\": \"1866\",\n", " \"location\": {\n", " \"lat\": 46.595676,\n", " \"lon\": 7.907654,\n", " \"zoom\": 4\n", " },\n", " \"media\": {\n", " \"caption\": \"1866(?)\",\n", " \"credit\": \"Harvard Art Museum\",\n", " \"url\": \"https://nrs.harvard.edu/urn-3:HUAM:VRS48777_dynmc?width=500&height=800\"\n", " },\n", " \"text\": {\n", " \"headline\": \"View of the Valley of Lauterbrunnen\",\n", " \"text\": \"Samuel Sachs, gift; to Fogg Art Museum, 1919

Artwork homepage\"\n", " }\n", " },\n", " {\n", " \"background\": {\n", " \"color\": \"#00758F\",\n", " \"opacity\": 100\n", " },\n", " \"date\": \"1868\",\n", " \"location\": {\n", " \"lat\": 50.166667,\n", " \"lon\": 1.75,\n", " \"zoom\": 4\n", " },\n", " \"media\": {\n", " \"caption\": \"1868\",\n", " \"credit\": \"Harvard Art Museum\",\n", " \"url\": \"https://nrs.harvard.edu/urn-3:HUAM:VRS38386_dynmc?width=500&height=800\"\n", " },\n", " \"text\": {\n", " \"headline\": \"Church of St. Wulfran, Abbeville\",\n", " \"text\": \"

Artwork homepage\"\n", " }\n", " },\n", " {\n", " \"background\": {\n", " \"color\": \"#00758F\",\n", " \"opacity\": 100\n", " },\n", " \"date\": \"1868\",\n", " \"location\": {\n", " \"lat\": 50.166667,\n", " \"lon\": 1.75,\n", " \"zoom\": 4\n", " },\n", " \"media\": {\n", " \"caption\": \"1868\",\n", " \"credit\": \"Harvard Art Museum\",\n", " \"url\": \"https://nrs.harvard.edu/urn-3:HUAM:VRS38386_dynmc?width=500&height=800\"\n", " },\n", " \"text\": {\n", " \"headline\": \"Church of St. Wulfran, Abbeville\",\n", " \"text\": \"

Artwork homepage\"\n", " }\n", " },\n", " {\n", " \"background\": {\n", " \"color\": \"#3f83e8\",\n", " \"opacity\": 100\n", " },\n", " \"date\": \"1868-09\",\n", " \"location\": {\n", " \"lat\": 50.166667,\n", " \"lon\": 1.75,\n", " \"zoom\": 4\n", " },\n", " \"media\": {\n", " \"caption\": \"September - October 1868\",\n", " \"credit\": \"Ashmolean Museum\",\n", " \"url\": \"https://collections.ashmolean.org/media/ashmole6_collection/w800/Collections/Single_Objects/WA/WA_RS/WA_RS_REF_061-a-L.jpg\"\n", " },\n", " \"text\": {\n", " \"headline\": \"Study for Detail of the Market Place, Abbeville\",\n", " \"text\": \"

Artwork homepage\"\n", " }\n", " },\n", " {\n", " \"background\": {\n", " \"color\": \"#3f83e8\",\n", " \"opacity\": 100\n", " },\n", " \"date\": \"1868-09\",\n", " \"location\": {\n", " \"lat\": 50.166667,\n", " \"lon\": 1.75,\n", " \"zoom\": 4\n", " },\n", " \"media\": {\n", " \"caption\": \"21 September 1868\",\n", " \"credit\": \"Ashmolean Museum\",\n", " \"url\": \"https://collections.ashmolean.org/media/ashmole6_collection/w800/Collections/Single_Objects/WA/WA_RS/WA_RS_RUD_134_a-a-L.jpg\"\n", " },\n", " \"text\": {\n", " \"headline\": \"Sketch of 'Modes au Premier', Abbeville\",\n", " \"text\": \"

Artwork homepage\"\n", " }\n", " },\n", " {\n", " \"background\": {\n", " \"color\": \"#3f83e8\",\n", " \"opacity\": 100\n", " },\n", " \"date\": \"1868-09\",\n", " \"location\": {\n", " \"lat\": 50.166667,\n", " \"lon\": 1.75,\n", " \"zoom\": 4\n", " },\n", " \"media\": {\n", " \"caption\": \"September - October 1868\",\n", " \"credit\": \"Ashmolean Museum\",\n", " \"url\": \"https://collections.ashmolean.org/media/ashmole6_collection/w800/Collections/Single_Objects/WA/WA_RS/WA_RS_REF_061-a-L.jpg\"\n", " },\n", " \"text\": {\n", " \"headline\": \"Study for Detail of the Market Place, Abbeville\",\n", " \"text\": \"

Artwork homepage\"\n", " }\n", " },\n", " {\n", " \"background\": {\n", " \"color\": \"#3f83e8\",\n", " \"opacity\": 100\n", " },\n", " \"date\": \"1868-09\",\n", " \"location\": {\n", " \"lat\": 50.166667,\n", " \"lon\": 1.75,\n", " \"zoom\": 4\n", " },\n", " \"media\": {\n", " \"caption\": \"21 September 1868\",\n", " \"credit\": \"Ashmolean Museum\",\n", " \"url\": \"https://collections.ashmolean.org/media/ashmole6_collection/w800/Collections/Single_Objects/WA/WA_RS/WA_RS_RUD_134_a-a-L.jpg\"\n", " },\n", " \"text\": {\n", " \"headline\": \"Sketch of 'Modes au Premier', Abbeville\",\n", " \"text\": \"

Artwork homepage\"\n", " }\n", " },\n", " {\n", " \"background\": {\n", " \"color\": \"#3f83e8\",\n", " \"opacity\": 100\n", " },\n", " \"date\": \"1869\",\n", " \"location\": {\n", " \"lat\": 45.45,\n", " \"lon\": 11.0,\n", " \"zoom\": 4\n", " },\n", " \"media\": {\n", " \"caption\": \"probably 1869\",\n", " \"credit\": \"Ashmolean Museum\",\n", " \"url\": \"https://collections.ashmolean.org/media/ashmole6_collection/w800/Collections/Single_Objects/WA/WA_RS/WA_RS_REF_063_a-a-L.jpg\"\n", " },\n", " \"text\": {\n", " \"headline\": \"Detail of the Equestrian Statue on the Summit of the Tomb of Cangrande I della Scala, Verona\",\n", " \"text\": \"

Artwork homepage\"\n", " }\n", " },\n", " {\n", " \"background\": {\n", " \"color\": \"#3f83e8\",\n", " \"opacity\": 100\n", " },\n", " \"date\": \"1869\",\n", " \"location\": {\n", " \"lat\": 45.45,\n", " \"lon\": 11.0,\n", " \"zoom\": 4\n", " },\n", " \"media\": {\n", " \"caption\": \"c. 1869\",\n", " \"credit\": \"Ashmolean Museum\",\n", " \"url\": \"https://collections.ashmolean.org/media/ashmole6_collection/w800/Collections/Single_Objects/WA/WA_RS/WA_RS_REF_058-a-L.jpg\"\n", " },\n", " \"text\": {\n", " \"headline\": \"Study for General Chiaroscuro of the Sarcophagus and Canopy of the Tomb of Mastino II della Scala at Verona\",\n", " \"text\": \"

Artwork homepage\"\n", " }\n", " },\n", " {\n", " \"background\": {\n", " \"color\": \"#3f83e8\",\n", " \"opacity\": 100\n", " },\n", " \"date\": \"1869\",\n", " \"location\": {\n", " \"lat\": 45.45,\n", " \"lon\": 11.0,\n", " \"zoom\": 4\n", " },\n", " \"media\": {\n", " \"caption\": \"probably 1869\",\n", " \"credit\": \"Ashmolean Museum\",\n", " \"url\": \"https://collections.ashmolean.org/media/ashmole6_collection/w800/Collections/Single_Objects/WA/WA_RS/WA_RS_REF_063_a-a-L.jpg\"\n", " },\n", " \"text\": {\n", " \"headline\": \"Detail of the Equestrian Statue on the Summit of the Tomb of Cangrande I della Scala, Verona\",\n", " \"text\": \"

Artwork homepage\"\n", " }\n", " },\n", " {\n", " \"background\": {\n", " \"color\": \"#3f83e8\",\n", " \"opacity\": 100\n", " },\n", " \"date\": \"1869\",\n", " \"location\": {\n", " \"lat\": 45.45,\n", " \"lon\": 11.0,\n", " \"zoom\": 4\n", " },\n", " \"media\": {\n", " \"caption\": \"c. 1869\",\n", " \"credit\": \"Ashmolean Museum\",\n", " \"url\": \"https://collections.ashmolean.org/media/ashmole6_collection/w800/Collections/Single_Objects/WA/WA_RS/WA_RS_REF_058-a-L.jpg\"\n", " },\n", " \"text\": {\n", " \"headline\": \"Study for General Chiaroscuro of the Sarcophagus and Canopy of the Tomb of Mastino II della Scala at Verona\",\n", " \"text\": \"

Artwork homepage\"\n", " }\n", " },\n", " {\n", " \"background\": {\n", " \"color\": \"#3f83e8\",\n", " \"opacity\": 100\n", " },\n", " \"date\": \"1869-04\",\n", " \"location\": {\n", " \"lat\": 46.990867,\n", " \"lon\": 6.797675,\n", " \"zoom\": 4\n", " },\n", " \"media\": {\n", " \"caption\": \"30 April 1869\",\n", " \"credit\": \"Ashmolean Museum\",\n", " \"url\": \"https://collections.ashmolean.org/media/ashmole6_collection/w800/Collections/Single_Objects/WA/WA_RS/WA_RS_ED_298_a-a-L.jpg\"\n", " },\n", " \"text\": {\n", " \"headline\": \"Afternoon in Spring, with south Wind, at Neuch\\u00e2tel\",\n", " \"text\": \"

Artwork homepage\"\n", " }\n", " },\n", " {\n", " \"background\": {\n", " \"color\": \"#3f83e8\",\n", " \"opacity\": 100\n", " },\n", " \"date\": \"1869-04\",\n", " \"location\": {\n", " \"lat\": 46.990867,\n", " \"lon\": 6.797675,\n", " \"zoom\": 4\n", " },\n", " \"media\": {\n", " \"caption\": \"30 April 1869\",\n", " \"credit\": \"Ashmolean Museum\",\n", " \"url\": \"https://collections.ashmolean.org/media/ashmole6_collection/w800/Collections/Single_Objects/WA/WA_RS/WA_RS_ED_298_a-a-L.jpg\"\n", " },\n", " \"text\": {\n", " \"headline\": \"Afternoon in Spring, with south Wind, at Neuch\\u00e2tel\",\n", " \"text\": \"

Artwork homepage\"\n", " }\n", " },\n", " {\n", " \"background\": {\n", " \"color\": \"#3f83e8\",\n", " \"opacity\": 100\n", " },\n", " \"date\": \"1869-05\",\n", " \"location\": {\n", " \"lat\": 45.45,\n", " \"lon\": 11.0,\n", " \"zoom\": 4\n", " },\n", " \"media\": {\n", " \"caption\": \"28 May - 29 June 1869\",\n", " \"credit\": \"Ashmolean Museum\",\n", " \"url\": \"https://collections.ashmolean.org/media/ashmole6_collection/w800/Collections/Single_Objects/WA/WA_RS/WA_RS_ED_076-a-L.jpg\"\n", " },\n", " \"text\": {\n", " \"headline\": \"The Tomb of Cangrande I della Scala, Verona\",\n", " \"text\": \"

Artwork homepage\"\n", " }\n", " },\n", " {\n", " \"background\": {\n", " \"color\": \"#3f83e8\",\n", " \"opacity\": 100\n", " },\n", " \"date\": \"1869-05\",\n", " \"location\": {\n", " \"lat\": 45.45,\n", " \"lon\": 11.0,\n", " \"zoom\": 4\n", " },\n", " \"media\": {\n", " \"caption\": \"May 1869\",\n", " \"credit\": \"Ashmolean Museum\",\n", " \"url\": \"https://collections.ashmolean.org/media/ashmole6_collection/w800/Collections/Single_Objects/WA/WA_RS/WA_RS_ED_093-a-L.jpg\"\n", " },\n", " \"text\": {\n", " \"headline\": \"Pilaster on the unfinished Facade of Sant' Anastasia, Verona\",\n", " \"text\": \"

Artwork homepage\"\n", " }\n", " },\n", " {\n", " \"background\": {\n", " \"color\": \"#3f83e8\",\n", " \"opacity\": 100\n", " },\n", " \"date\": \"1869-05\",\n", " \"location\": {\n", " \"lat\": 45.45,\n", " \"lon\": 11.0,\n", " \"zoom\": 4\n", " },\n", " \"media\": {\n", " \"caption\": \"May - August 1869\",\n", " \"credit\": \"Ashmolean Museum\",\n", " \"url\": \"https://collections.ashmolean.org/media/ashmole6_collection/w800/Collections/Single_Objects/WA/WA_RS/WA_RS_REF_057-a-L.jpg\"\n", " },\n", " \"text\": {\n", " \"headline\": \"Study of the Tomb of Can Grande della Scala at Verona\",\n", " \"text\": \"

Artwork homepage\"\n", " }\n", " },\n", " {\n", " \"background\": {\n", " \"color\": \"#3f83e8\",\n", " \"opacity\": 100\n", " },\n", " \"date\": \"1869-05\",\n", " \"location\": {\n", " \"lat\": 45.45,\n", " \"lon\": 11.0,\n", " \"zoom\": 4\n", " },\n", " \"media\": {\n", " \"caption\": \"probably May - June 1869\",\n", " \"credit\": \"Ashmolean Museum\",\n", " \"url\": \"https://collections.ashmolean.org/media/ashmole6_collection/w800/Collections/Single_Objects/WA/WA_RS/WA_RS_REF_060-a-L.jpg\"\n", " },\n", " \"text\": {\n", " \"headline\": \"Study in Colour of one of the Niches surrounding the Tomb of Cansignorio della Scala at Verona, with Remains of the 'Casa di Romeo'\",\n", " \"text\": \"

Artwork homepage\"\n", " }\n", " },\n", " {\n", " \"background\": {\n", " \"color\": \"#3f83e8\",\n", " \"opacity\": 100\n", " },\n", " \"date\": \"1869-05\",\n", " \"location\": {\n", " \"lat\": 45.45,\n", " \"lon\": 11.0,\n", " \"zoom\": 4\n", " },\n", " \"media\": {\n", " \"caption\": \"21 May - 1 July 1869\",\n", " \"credit\": \"Ashmolean Museum\",\n", " \"url\": \"https://collections.ashmolean.org/media/ashmole6_collection/w800/Collections/Single_Objects/WA/WA_RS/WA_RS_ED_077-a-L.jpg\"\n", " },\n", " \"text\": {\n", " \"headline\": \"The Sarcophagus and Effigy of the Tomb of Cangrande I della Scala, Verona\",\n", " \"text\": \"

Artwork homepage\"\n", " }\n", " },\n", " {\n", " \"background\": {\n", " \"color\": \"#3f83e8\",\n", " \"opacity\": 100\n", " },\n", " \"date\": \"1869-05\",\n", " \"location\": {\n", " \"lat\": 45.45,\n", " \"lon\": 11.0,\n", " \"zoom\": 4\n", " },\n", " \"media\": {\n", " \"caption\": \"28 May - 29 June 1869\",\n", " \"credit\": \"Ashmolean Museum\",\n", " \"url\": \"https://collections.ashmolean.org/media/ashmole6_collection/w800/Collections/Single_Objects/WA/WA_RS/WA_RS_ED_076-a-L.jpg\"\n", " },\n", " \"text\": {\n", " \"headline\": \"The Tomb of Cangrande I della Scala, Verona\",\n", " \"text\": \"

Artwork homepage\"\n", " }\n", " },\n", " {\n", " \"background\": {\n", " \"color\": \"#3f83e8\",\n", " \"opacity\": 100\n", " },\n", " \"date\": \"1869-05\",\n", " \"location\": {\n", " \"lat\": 45.45,\n", " \"lon\": 11.0,\n", " \"zoom\": 4\n", " },\n", " \"media\": {\n", " \"caption\": \"May 1869\",\n", " \"credit\": \"Ashmolean Museum\",\n", " \"url\": \"https://collections.ashmolean.org/media/ashmole6_collection/w800/Collections/Single_Objects/WA/WA_RS/WA_RS_ED_093-a-L.jpg\"\n", " },\n", " \"text\": {\n", " \"headline\": \"Pilaster on the unfinished Facade of Sant' Anastasia, Verona\",\n", " \"text\": \"

Artwork homepage\"\n", " }\n", " },\n", " {\n", " \"background\": {\n", " \"color\": \"#3f83e8\",\n", " \"opacity\": 100\n", " },\n", " \"date\": \"1869-05\",\n", " \"location\": {\n", " \"lat\": 45.45,\n", " \"lon\": 11.0,\n", " \"zoom\": 4\n", " },\n", " \"media\": {\n", " \"caption\": \"May - August 1869\",\n", " \"credit\": \"Ashmolean Museum\",\n", " \"url\": \"https://collections.ashmolean.org/media/ashmole6_collection/w800/Collections/Single_Objects/WA/WA_RS/WA_RS_REF_057-a-L.jpg\"\n", " },\n", " \"text\": {\n", " \"headline\": \"Study of the Tomb of Can Grande della Scala at Verona\",\n", " \"text\": \"

Artwork homepage\"\n", " }\n", " },\n", " {\n", " \"background\": {\n", " \"color\": \"#3f83e8\",\n", " \"opacity\": 100\n", " },\n", " \"date\": \"1869-05\",\n", " \"location\": {\n", " \"lat\": 45.45,\n", " \"lon\": 11.0,\n", " \"zoom\": 4\n", " },\n", " \"media\": {\n", " \"caption\": \"probably May - June 1869\",\n", " \"credit\": \"Ashmolean Museum\",\n", " \"url\": \"https://collections.ashmolean.org/media/ashmole6_collection/w800/Collections/Single_Objects/WA/WA_RS/WA_RS_REF_060-a-L.jpg\"\n", " },\n", " \"text\": {\n", " \"headline\": \"Study in Colour of one of the Niches surrounding the Tomb of Cansignorio della Scala at Verona, with Remains of the 'Casa di Romeo'\",\n", " \"text\": \"

Artwork homepage\"\n", " }\n", " },\n", " {\n", " \"background\": {\n", " \"color\": \"#3f83e8\",\n", " \"opacity\": 100\n", " },\n", " \"date\": \"1869-05\",\n", " \"location\": {\n", " \"lat\": 45.45,\n", " \"lon\": 11.0,\n", " \"zoom\": 4\n", " },\n", " \"media\": {\n", " \"caption\": \"21 May - 1 July 1869\",\n", " \"credit\": \"Ashmolean Museum\",\n", " \"url\": \"https://collections.ashmolean.org/media/ashmole6_collection/w800/Collections/Single_Objects/WA/WA_RS/WA_RS_ED_077-a-L.jpg\"\n", " },\n", " \"text\": {\n", " \"headline\": \"The Sarcophagus and Effigy of the Tomb of Cangrande I della Scala, Verona\",\n", " \"text\": \"

Artwork homepage\"\n", " }\n", " },\n", " {\n", " \"background\": {\n", " \"color\": \"#3f83e8\",\n", " \"opacity\": 100\n", " },\n", " \"date\": \"1869-06\",\n", " \"location\": {\n", " \"lat\": 45.45,\n", " \"lon\": 11.0,\n", " \"zoom\": 4\n", " },\n", " \"media\": {\n", " \"caption\": \"18 - 28 June 1869\",\n", " \"credit\": \"Ashmolean Museum\",\n", " \"url\": \"https://collections.ashmolean.org/media/ashmole6_collection/w800/Collections/Single_Objects/WA/WA_RS/WA_RS_ED_082-a-L.jpg\"\n", " },\n", " \"text\": {\n", " \"headline\": \"The Gryphon bearing the north Shaft of the west Entrance of the Duomo, Verona\",\n", " \"text\": \"

Artwork homepage\"\n", " }\n", " },\n", " {\n", " \"background\": {\n", " \"color\": \"#3f83e8\",\n", " \"opacity\": 100\n", " },\n", " \"date\": \"1869-06\",\n", " \"location\": {\n", " \"lat\": 45.45,\n", " \"lon\": 11.0,\n", " \"zoom\": 4\n", " },\n", " \"media\": {\n", " \"caption\": \"14 - 17 June 1869\",\n", " \"credit\": \"Ashmolean Museum\",\n", " \"url\": \"https://collections.ashmolean.org/media/ashmole6_collection/w800/Collections/Single_Objects/WA/WA_RS/WA_RS_ED_295_a-L.jpg\"\n", " },\n", " \"text\": {\n", " \"headline\": \"The Ponte della Pietra, Verona\",\n", " \"text\": \"

Artwork homepage\"\n", " }\n", " },\n", " {\n", " \"background\": {\n", " \"color\": \"#3f83e8\",\n", " \"opacity\": 100\n", " },\n", " \"date\": \"1869-06\",\n", " \"location\": {\n", " \"lat\": 45.45,\n", " \"lon\": 11.0,\n", " \"zoom\": 4\n", " },\n", " \"media\": {\n", " \"caption\": \"18 - 28 June 1869\",\n", " \"credit\": \"Ashmolean Museum\",\n", " \"url\": \"https://collections.ashmolean.org/media/ashmole6_collection/w800/Collections/Single_Objects/WA/WA_RS/WA_RS_ED_082-a-L.jpg\"\n", " },\n", " \"text\": {\n", " \"headline\": \"The Gryphon bearing the north Shaft of the west Entrance of the Duomo, Verona\",\n", " \"text\": \"

Artwork homepage\"\n", " }\n", " },\n", " {\n", " \"background\": {\n", " \"color\": \"#3f83e8\",\n", " \"opacity\": 100\n", " },\n", " \"date\": \"1869-06\",\n", " \"location\": {\n", " \"lat\": 45.45,\n", " \"lon\": 11.0,\n", " \"zoom\": 4\n", " },\n", " \"media\": {\n", " \"caption\": \"14 - 17 June 1869\",\n", " \"credit\": \"Ashmolean Museum\",\n", " \"url\": \"https://collections.ashmolean.org/media/ashmole6_collection/w800/Collections/Single_Objects/WA/WA_RS/WA_RS_ED_295_a-L.jpg\"\n", " },\n", " \"text\": {\n", " \"headline\": \"The Ponte della Pietra, Verona\",\n", " \"text\": \"

Artwork homepage\"\n", " }\n", " },\n", " {\n", " \"background\": {\n", " \"color\": \"#3f83e8\",\n", " \"opacity\": 100\n", " },\n", " \"date\": \"1869-07\",\n", " \"location\": {\n", " \"lat\": 45.583333,\n", " \"lon\": 12.566667,\n", " \"zoom\": 4\n", " },\n", " \"media\": {\n", " \"caption\": \"July 1869\",\n", " \"credit\": \"Ashmolean Museum\",\n", " \"url\": \"https://collections.ashmolean.org/media/ashmole6_collection/w800/Collections/Single_Objects/WA/WA_RS/WA_RS_ED_094-a-L.jpg\"\n", " },\n", " \"text\": {\n", " \"headline\": \"Part of the Base of a Pilaster in Santa Maria dei Miracoli, Venice\",\n", " \"text\": \"

Artwork homepage\"\n", " }\n", " },\n", " {\n", " \"background\": {\n", " \"color\": \"#3f83e8\",\n", " \"opacity\": 100\n", " },\n", " \"date\": \"1869-07\",\n", " \"location\": {\n", " \"lat\": 45.583333,\n", " \"lon\": 12.566667,\n", " \"zoom\": 4\n", " },\n", " \"media\": {\n", " \"caption\": \"July 1869\",\n", " \"credit\": \"Ashmolean Museum\",\n", " \"url\": \"https://collections.ashmolean.org/media/ashmole6_collection/w800/Collections/Single_Objects/WA/WA_RS/WA_RS_ED_094-a-L.jpg\"\n", " },\n", " \"text\": {\n", " \"headline\": \"Part of the Base of a Pilaster in Santa Maria dei Miracoli, Venice\",\n", " \"text\": \"

Artwork homepage\"\n", " }\n", " },\n", " {\n", " \"background\": {\n", " \"color\": \"#3f83e8\",\n", " \"opacity\": 100\n", " },\n", " \"date\": \"1869-11\",\n", " \"location\": {\n", " \"lat\": 45.416667,\n", " \"lon\": 11.883333,\n", " \"zoom\": 4\n", " },\n", " \"media\": {\n", " \"caption\": \"probably November 1869\",\n", " \"credit\": \"Ashmolean Museum\",\n", " \"url\": \"https://collections.ashmolean.org/media/ashmole6_collection/w800/Collections/Single_Objects/WA/WA_RS/WA_RS_RUD_298-a-L.jpg\"\n", " },\n", " \"text\": {\n", " \"headline\": \"Sketch of the Oak Spray in Mantegna's Fresco of 'The Martyrdom of Saint James' in the Church of the Eremitani, Padua\",\n", " \"text\": \"

Artwork homepage\"\n", " }\n", " },\n", " {\n", " \"background\": {\n", " \"color\": \"#3f83e8\",\n", " \"opacity\": 100\n", " },\n", " \"date\": \"1869-11\",\n", " \"location\": {\n", " \"lat\": 45.416667,\n", " \"lon\": 11.883333,\n", " \"zoom\": 4\n", " },\n", " \"media\": {\n", " \"caption\": \"probably November 1869\",\n", " \"credit\": \"Ashmolean Museum\",\n", " \"url\": \"https://collections.ashmolean.org/media/ashmole6_collection/w800/Collections/Single_Objects/WA/WA_RS/WA_RS_RUD_298-a-L.jpg\"\n", " },\n", " \"text\": {\n", " \"headline\": \"Sketch of the Oak Spray in Mantegna's Fresco of 'The Martyrdom of Saint James' in the Church of the Eremitani, Padua\",\n", " \"text\": \"

Artwork homepage\"\n", " }\n", " },\n", " {\n", " \"background\": {\n", " \"color\": \"#3f83e8\",\n", " \"opacity\": 100\n", " },\n", " \"date\": \"1870\",\n", " \"location\": {\n", " \"lat\": 47.25,\n", " \"lon\": 2.416667,\n", " \"zoom\": 4\n", " },\n", " \"media\": {\n", " \"caption\": \"probably 1870\",\n", " \"credit\": \"Ashmolean Museum\",\n", " \"url\": \"https://collections.ashmolean.org/media/ashmole6_collection/w800/Collections/Single_Objects/WA/WA_RS/WA_RS_RUD_081-a-L.jpg\"\n", " },\n", " \"text\": {\n", " \"headline\": \"Sketch of a Spandril in the western Porch of Bourges Cathedral\",\n", " \"text\": \"

Artwork homepage\"\n", " }\n", " },\n", " {\n", " \"background\": {\n", " \"color\": \"#3f83e8\",\n", " \"opacity\": 100\n", " },\n", " \"date\": \"1870\",\n", " \"location\": {\n", " \"lat\": 47.25,\n", " \"lon\": 2.416667,\n", " \"zoom\": 4\n", " },\n", " \"media\": {\n", " \"caption\": \"probably 1870\",\n", " \"credit\": \"Ashmolean Museum\",\n", " \"url\": \"https://collections.ashmolean.org/media/ashmole6_collection/w800/Collections/Single_Objects/WA/WA_RS/WA_RS_RUD_081-a-L.jpg\"\n", " },\n", " \"text\": {\n", " \"headline\": \"Sketch of a Spandril in the western Porch of Bourges Cathedral\",\n", " \"text\": \"

Artwork homepage\"\n", " }\n", " },\n", " {\n", " \"background\": {\n", " \"color\": \"#3f83e8\",\n", " \"opacity\": 100\n", " },\n", " \"date\": \"1870-05\",\n", " \"location\": {\n", " \"lat\": 45.583333,\n", " \"lon\": 12.566667,\n", " \"zoom\": 4\n", " },\n", " \"media\": {\n", " \"caption\": \"May - June 1870\",\n", " \"credit\": \"Ashmolean Museum\",\n", " \"url\": \"https://collections.ashmolean.org/media/ashmole6_collection/w800/Collections/Single_Objects/WA/WA_RS/WA_RS_REF_066-a-L.jpg\"\n", " },\n", " \"text\": {\n", " \"headline\": \"View from the Palazzo Bembo to the Palazzo Grimani, Venice\",\n", " \"text\": \"

Artwork homepage\"\n", " }\n", " },\n", " {\n", " \"background\": {\n", " \"color\": \"#3f83e8\",\n", " \"opacity\": 100\n", " },\n", " \"date\": \"1870-05\",\n", " \"location\": {\n", " \"lat\": 45.583333,\n", " \"lon\": 12.566667,\n", " \"zoom\": 4\n", " },\n", " \"media\": {\n", " \"caption\": \"May - June 1870\",\n", " \"credit\": \"Ashmolean Museum\",\n", " \"url\": \"https://collections.ashmolean.org/media/ashmole6_collection/w800/Collections/Single_Objects/WA/WA_RS/WA_RS_REF_066-a-L.jpg\"\n", " },\n", " \"text\": {\n", " \"headline\": \"View from the Palazzo Bembo to the Palazzo Grimani, Venice\",\n", " \"text\": \"

Artwork homepage\"\n", " }\n", " },\n", " {\n", " \"background\": {\n", " \"color\": \"#3f83e8\",\n", " \"opacity\": 100\n", " },\n", " \"date\": \"1870-06\",\n", " \"location\": {\n", " \"lat\": 43.216667,\n", " \"lon\": 11.4,\n", " \"zoom\": 4\n", " },\n", " \"media\": {\n", " \"caption\": \"June 1870\",\n", " \"credit\": \"Ashmolean Museum\",\n", " \"url\": \"https://collections.ashmolean.org/media/ashmole6_collection/w800/Collections/Single_Objects/WA/WA_RS/WA_RS_ED_153-a-L.jpg\"\n", " },\n", " \"text\": {\n", " \"headline\": \"Sketch of Lioness and Cubs from Nicola Pisano's Siena Pulpit\",\n", " \"text\": \"

Artwork homepage\"\n", " }\n", " },\n", " {\n", " \"background\": {\n", " \"color\": \"#3f83e8\",\n", " \"opacity\": 100\n", " },\n", " \"date\": \"1870-06\",\n", " \"location\": {\n", " \"lat\": 43.216667,\n", " \"lon\": 11.4,\n", " \"zoom\": 4\n", " },\n", " \"media\": {\n", " \"caption\": \"25 - 27 June 1870\",\n", " \"credit\": \"Ashmolean Museum\",\n", " \"url\": \"https://collections.ashmolean.org/media/ashmole6_collection/w800/Collections/Single_Objects/WA/WA_RS/WA_RS_ED_088-a-L.jpg\"\n", " },\n", " \"text\": {\n", " \"headline\": \"A Window of the Palazzo Tolomei, Siena, showing the rude and unsymmetrical Placing of massy Stones\",\n", " \"text\": \"

Artwork homepage\"\n", " }\n", " },\n", " {\n", " \"background\": {\n", " \"color\": \"#3f83e8\",\n", " \"opacity\": 100\n", " },\n", " \"date\": \"1870-06\",\n", " \"location\": {\n", " \"lat\": 43.216667,\n", " \"lon\": 11.4,\n", " \"zoom\": 4\n", " },\n", " \"media\": {\n", " \"caption\": \"25 - 27 June 1870\",\n", " \"credit\": \"Ashmolean Museum\",\n", " \"url\": \"https://collections.ashmolean.org/media/ashmole6_collection/w800/Collections/Single_Objects/WA/WA_RS/WA_RS_ED_089_a-a-L.jpg\"\n", " },\n", " \"text\": {\n", " \"headline\": \"A Spandrel at Siena\",\n", " \"text\": \"

Artwork homepage\"\n", " }\n", " },\n", " {\n", " \"background\": {\n", " \"color\": \"#3f83e8\",\n", " \"opacity\": 100\n", " },\n", " \"date\": \"1870-06\",\n", " \"location\": {\n", " \"lat\": 43.216667,\n", " \"lon\": 11.4,\n", " \"zoom\": 4\n", " },\n", " \"media\": {\n", " \"caption\": \"June 1870\",\n", " \"credit\": \"Ashmolean Museum\",\n", " \"url\": \"https://collections.ashmolean.org/media/ashmole6_collection/w800/Collections/Single_Objects/WA/WA_RS/WA_RS_ED_153-a-L.jpg\"\n", " },\n", " \"text\": {\n", " \"headline\": \"Sketch of Lioness and Cubs from Nicola Pisano's Siena Pulpit\",\n", " \"text\": \"

Artwork homepage\"\n", " }\n", " },\n", " {\n", " \"background\": {\n", " \"color\": \"#3f83e8\",\n", " \"opacity\": 100\n", " },\n", " \"date\": \"1870-06\",\n", " \"location\": {\n", " \"lat\": 43.216667,\n", " \"lon\": 11.4,\n", " \"zoom\": 4\n", " },\n", " \"media\": {\n", " \"caption\": \"25 - 27 June 1870\",\n", " \"credit\": \"Ashmolean Museum\",\n", " \"url\": \"https://collections.ashmolean.org/media/ashmole6_collection/w800/Collections/Single_Objects/WA/WA_RS/WA_RS_ED_088-a-L.jpg\"\n", " },\n", " \"text\": {\n", " \"headline\": \"A Window of the Palazzo Tolomei, Siena, showing the rude and unsymmetrical Placing of massy Stones\",\n", " \"text\": \"

Artwork homepage\"\n", " }\n", " },\n", " {\n", " \"background\": {\n", " \"color\": \"#3f83e8\",\n", " \"opacity\": 100\n", " },\n", " \"date\": \"1870-06\",\n", " \"location\": {\n", " \"lat\": 43.216667,\n", " \"lon\": 11.4,\n", " \"zoom\": 4\n", " },\n", " \"media\": {\n", " \"caption\": \"25 - 27 June 1870\",\n", " \"credit\": \"Ashmolean Museum\",\n", " \"url\": \"https://collections.ashmolean.org/media/ashmole6_collection/w800/Collections/Single_Objects/WA/WA_RS/WA_RS_ED_089_a-a-L.jpg\"\n", " },\n", " \"text\": {\n", " \"headline\": \"A Spandrel at Siena\",\n", " \"text\": \"

Artwork homepage\"\n", " }\n", " },\n", " {\n", " \"background\": {\n", " \"color\": \"#3f83e8\",\n", " \"opacity\": 100\n", " },\n", " \"date\": \"1870-07\",\n", " \"location\": {\n", " \"lat\": 43.216667,\n", " \"lon\": 11.4,\n", " \"zoom\": 4\n", " },\n", " \"media\": {\n", " \"caption\": \"July 1870\",\n", " \"credit\": \"Ashmolean Museum\",\n", " \"url\": \"https://collections.ashmolean.org/media/ashmole6_collection/w800/Collections/Single_Objects/WA/WA_RS/WA_RS_ED_154_a-a-L.jpg\"\n", " },\n", " \"text\": {\n", " \"headline\": \"Study of a Lion Cub from Nicola Pisano's Siena Pulpit\",\n", " \"text\": \"

Artwork homepage\"\n", " }\n", " },\n", " {\n", " \"background\": {\n", " \"color\": \"#3f83e8\",\n", " \"opacity\": 100\n", " },\n", " \"date\": \"1870-07\",\n", " \"location\": {\n", " \"lat\": 43.216667,\n", " \"lon\": 11.4,\n", " \"zoom\": 4\n", " },\n", " \"media\": {\n", " \"caption\": \"July 1870\",\n", " \"credit\": \"Ashmolean Museum\",\n", " \"url\": \"https://collections.ashmolean.org/media/ashmole6_collection/w800/Collections/Single_Objects/WA/WA_RS/WA_RS_ED_154_a-a-L.jpg\"\n", " },\n", " \"text\": {\n", " \"headline\": \"Study of a Lion Cub from Nicola Pisano's Siena Pulpit\",\n", " \"text\": \"

Artwork homepage\"\n", " }\n", " },\n", " {\n", " \"background\": {\n", " \"color\": \"#3f83e8\",\n", " \"opacity\": 100\n", " },\n", " \"date\": \"1871\",\n", " \"location\": {\n", " \"lat\": 50.166667,\n", " \"lon\": 1.75,\n", " \"zoom\": 4\n", " },\n", " \"media\": {\n", " \"caption\": \"probably 1871\",\n", " \"credit\": \"Ashmolean Museum\",\n", " \"url\": \"https://collections.ashmolean.org/media/ashmole6_collection/w800/Collections/Single_Objects/WA/WA_RS/WA_RS_RUD/WA_RS_RUD_290-a-L.jpg\"\n", " },\n", " \"text\": {\n", " \"headline\": \"First Process of Sepia Sketch of Leafage: Study from Ruskin's Photograph of the Courtyard of a late Gothic wooden House at Abbeville\",\n", " \"text\": \"

Artwork homepage\"\n", " }\n", " },\n", " {\n", " \"background\": {\n", " \"color\": \"#3f83e8\",\n", " \"opacity\": 100\n", " },\n", " \"date\": \"1871\",\n", " \"location\": {\n", " \"lat\": 50.166667,\n", " \"lon\": 1.75,\n", " \"zoom\": 4\n", " },\n", " \"media\": {\n", " \"caption\": \"probably 1871\",\n", " \"credit\": \"Ashmolean Museum\",\n", " \"url\": \"https://collections.ashmolean.org/media/ashmole6_collection/w800/Collections/Single_Objects/WA/WA_RS/WA_RS_RUD_291-a-L.jpg\"\n", " },\n", " \"text\": {\n", " \"headline\": \"Sepia Sketch of Leafage, further carried: Study from Ruskin's Photograph of the Courtyard of a late Gothic wooden House at Abbeville\",\n", " \"text\": \"

Artwork homepage\"\n", " }\n", " },\n", " {\n", " \"background\": {\n", " \"color\": \"#3f83e8\",\n", " \"opacity\": 100\n", " },\n", " \"date\": \"1871\",\n", " \"location\": {\n", " \"lat\": 46.416667,\n", " \"lon\": 10.0,\n", " \"zoom\": 4\n", " },\n", " \"media\": {\n", " \"caption\": \"before 1871\",\n", " \"credit\": \"Ashmolean Museum\",\n", " \"url\": \"https://collections.ashmolean.org/media/ashmole6_collection/w800/Collections/Single_Objects/WA/WA_RS/WA_RS_ED_025-a-L.jpg\"\n", " },\n", " \"text\": {\n", " \"headline\": \"Three Studies of Narcissus ('Field Narcissus of the Alps')\",\n", " \"text\": \"

Artwork homepage\"\n", " }\n", " },\n", " {\n", " \"background\": {\n", " \"color\": \"#3f83e8\",\n", " \"opacity\": 100\n", " },\n", " \"date\": \"1871\",\n", " \"location\": {\n", " \"lat\": 50.166667,\n", " \"lon\": 1.75,\n", " \"zoom\": 4\n", " },\n", " \"media\": {\n", " \"caption\": \"probably 1871\",\n", " \"credit\": \"Ashmolean Museum\",\n", " \"url\": \"https://collections.ashmolean.org/media/ashmole6_collection/w800/Collections/Single_Objects/WA/WA_RS/WA_RS_RUD/WA_RS_RUD_290-a-L.jpg\"\n", " },\n", " \"text\": {\n", " \"headline\": \"First Process of Sepia Sketch of Leafage: Study from Ruskin's Photograph of the Courtyard of a late Gothic wooden House at Abbeville\",\n", " \"text\": \"

Artwork homepage\"\n", " }\n", " },\n", " {\n", " \"background\": {\n", " \"color\": \"#3f83e8\",\n", " \"opacity\": 100\n", " },\n", " \"date\": \"1871\",\n", " \"location\": {\n", " \"lat\": 50.166667,\n", " \"lon\": 1.75,\n", " \"zoom\": 4\n", " },\n", " \"media\": {\n", " \"caption\": \"probably 1871\",\n", " \"credit\": \"Ashmolean Museum\",\n", " \"url\": \"https://collections.ashmolean.org/media/ashmole6_collection/w800/Collections/Single_Objects/WA/WA_RS/WA_RS_RUD_291-a-L.jpg\"\n", " },\n", " \"text\": {\n", " \"headline\": \"Sepia Sketch of Leafage, further carried: Study from Ruskin's Photograph of the Courtyard of a late Gothic wooden House at Abbeville\",\n", " \"text\": \"

Artwork homepage\"\n", " }\n", " },\n", " {\n", " \"background\": {\n", " \"color\": \"#3f83e8\",\n", " \"opacity\": 100\n", " },\n", " \"date\": \"1871\",\n", " \"location\": {\n", " \"lat\": 46.416667,\n", " \"lon\": 10.0,\n", " \"zoom\": 4\n", " },\n", " \"media\": {\n", " \"caption\": \"before 1871\",\n", " \"credit\": \"Ashmolean Museum\",\n", " \"url\": \"https://collections.ashmolean.org/media/ashmole6_collection/w800/Collections/Single_Objects/WA/WA_RS/WA_RS_ED_025-a-L.jpg\"\n", " },\n", " \"text\": {\n", " \"headline\": \"Three Studies of Narcissus ('Field Narcissus of the Alps')\",\n", " \"text\": \"

Artwork homepage\"\n", " }\n", " },\n", " {\n", " \"background\": {\n", " \"color\": \"#3f83e8\",\n", " \"opacity\": 100\n", " },\n", " \"date\": \"1874-10\",\n", " \"location\": {\n", " \"lat\": 45.938883,\n", " \"lon\": 6.643866,\n", " \"zoom\": 4\n", " },\n", " \"media\": {\n", " \"caption\": \"October 1874\",\n", " \"credit\": \"Ashmolean Museum\",\n", " \"url\": \"https://collections.ashmolean.org/media/ashmole6_collection/w800/Collections/Single_Objects/WA/WA_RS/WA_RS_ED_288-a-L.jpg\"\n", " },\n", " \"text\": {\n", " \"headline\": \"Mont Blanc from Saint-Martin-sur-Arve\",\n", " \"text\": \"

Artwork homepage\"\n", " }\n", " },\n", " {\n", " \"background\": {\n", " \"color\": \"#3f83e8\",\n", " \"opacity\": 100\n", " },\n", " \"date\": \"1874-10\",\n", " \"location\": {\n", " \"lat\": 45.938883,\n", " \"lon\": 6.643866,\n", " \"zoom\": 4\n", " },\n", " \"media\": {\n", " \"caption\": \"October 1874\",\n", " \"credit\": \"Ashmolean Museum\",\n", " \"url\": \"https://collections.ashmolean.org/media/ashmole6_collection/w800/Collections/Single_Objects/WA/WA_RS/WA_RS_ED_288-a-L.jpg\"\n", " },\n", " \"text\": {\n", " \"headline\": \"Mont Blanc from Saint-Martin-sur-Arve\",\n", " \"text\": \"

Artwork homepage\"\n", " }\n", " },\n", " {\n", " \"background\": {\n", " \"color\": \"#00758F\",\n", " \"opacity\": 100\n", " },\n", " \"date\": \"1876\",\n", " \"location\": {\n", " \"lat\": 45.45,\n", " \"lon\": 11.0,\n", " \"zoom\": 4\n", " },\n", " \"media\": {\n", " \"caption\": \"1876\",\n", " \"credit\": \"Harvard Art Museum\",\n", " \"url\": \"https://nrs.harvard.edu/urn-3:HUAM:INV121896_dynmc?width=500&height=800\"\n", " },\n", " \"text\": {\n", " \"headline\": \"Sketch of Verona\",\n", " \"text\": \"Fine Arts Department, Harvard University, Cambridge, MA, Transferred to the Fogg Art Museum, 1926.\\r\\n

Artwork homepage\"\n", " }\n", " },\n", " {\n", " \"background\": {\n", " \"color\": \"#00758F\",\n", " \"opacity\": 100\n", " },\n", " \"date\": \"1876\",\n", " \"location\": {\n", " \"lat\": 45.583333,\n", " \"lon\": 12.566667,\n", " \"zoom\": 4\n", " },\n", " \"media\": {\n", " \"caption\": \"1876-1877\",\n", " \"credit\": \"Harvard Art Museum\",\n", " \"url\": \"https://nrs.harvard.edu/urn-3:HUAM:DDC100826_dynmc?width=500&height=800\"\n", " },\n", " \"text\": {\n", " \"headline\": \"Venetian Renaissance Capital\",\n", " \"text\": \"Fine Arts Department, Harvard University, Cambridge, MA, Transferred to the Fogg Art Museum, 1926.\\r\\n

Artwork homepage\"\n", " }\n", " },\n", " {\n", " \"background\": {\n", " \"color\": \"#00758F\",\n", " \"opacity\": 100\n", " },\n", " \"date\": \"1876\",\n", " \"location\": {\n", " \"lat\": 45.45,\n", " \"lon\": 11.0,\n", " \"zoom\": 4\n", " },\n", " \"media\": {\n", " \"caption\": \"1876\",\n", " \"credit\": \"Harvard Art Museum\",\n", " \"url\": \"https://nrs.harvard.edu/urn-3:HUAM:INV121896_dynmc?width=500&height=800\"\n", " },\n", " \"text\": {\n", " \"headline\": \"Sketch of Verona\",\n", " \"text\": \"Fine Arts Department, Harvard University, Cambridge, MA, Transferred to the Fogg Art Museum, 1926.\\r\\n

Artwork homepage\"\n", " }\n", " },\n", " {\n", " \"background\": {\n", " \"color\": \"#00758F\",\n", " \"opacity\": 100\n", " },\n", " \"date\": \"1876\",\n", " \"location\": {\n", " \"lat\": 45.583333,\n", " \"lon\": 12.566667,\n", " \"zoom\": 4\n", " },\n", " \"media\": {\n", " \"caption\": \"1876-1877\",\n", " \"credit\": \"Harvard Art Museum\",\n", " \"url\": \"https://nrs.harvard.edu/urn-3:HUAM:DDC100826_dynmc?width=500&height=800\"\n", " },\n", " \"text\": {\n", " \"headline\": \"Venetian Renaissance Capital\",\n", " \"text\": \"Fine Arts Department, Harvard University, Cambridge, MA, Transferred to the Fogg Art Museum, 1926.\\r\\n

Artwork homepage\"\n", " }\n", " },\n", " {\n", " \"background\": {\n", " \"color\": \"#00758F\",\n", " \"opacity\": 100\n", " },\n", " \"date\": \"1879\",\n", " \"location\": {\n", " \"lat\": 45.583333,\n", " \"lon\": 12.566667,\n", " \"zoom\": 4\n", " },\n", " \"media\": {\n", " \"caption\": \"1879\",\n", " \"credit\": \"Harvard Art Museum\",\n", " \"url\": \"https://nrs.harvard.edu/urn-3:HUAM:DDC100821_dynmc?width=500&height=800\"\n", " },\n", " \"text\": {\n", " \"headline\": \"Part of a Sketch of the Northwest Porch of St. Mark's\",\n", " \"text\": \"Samuel Sachs, gift; to Fogg Art Museum, 1919

Artwork homepage\"\n", " }\n", " },\n", " {\n", " \"background\": {\n", " \"color\": \"#00758F\",\n", " \"opacity\": 100\n", " },\n", " \"date\": \"1879\",\n", " \"location\": {\n", " \"lat\": 45.583333,\n", " \"lon\": 12.566667,\n", " \"zoom\": 4\n", " },\n", " \"media\": {\n", " \"caption\": \"1879\",\n", " \"credit\": \"Harvard Art Museum\",\n", " \"url\": \"https://nrs.harvard.edu/urn-3:HUAM:DDC100821_dynmc?width=500&height=800\"\n", " },\n", " \"text\": {\n", " \"headline\": \"Part of a Sketch of the Northwest Porch of St. Mark's\",\n", " \"text\": \"Samuel Sachs, gift; to Fogg Art Museum, 1919

Artwork homepage\"\n", " }\n", " },\n", " {\n", " \"background\": {\n", " \"color\": \"#3f83e8\",\n", " \"opacity\": 100\n", " },\n", " \"date\": \"1879-05\",\n", " \"location\": {\n", " \"lat\": 45.45,\n", " \"lon\": 11.0,\n", " \"zoom\": 4\n", " },\n", " \"media\": {\n", " \"caption\": \"May - August 1879\",\n", " \"credit\": \"Ashmolean Museum\",\n", " \"url\": \"https://collections.ashmolean.org/media/ashmole6_collection/w800/Collections/Single_Objects/WA/WA_RS/WA_RS_RUD_098-a-L.jpg\"\n", " },\n", " \"text\": {\n", " \"headline\": \"Study of a Capital of one of the Upper Pinnacles of the Tomb of Cansignorio della Scala, Verona\",\n", " \"text\": \"

Artwork homepage\"\n", " }\n", " },\n", " {\n", " \"background\": {\n", " \"color\": \"#3f83e8\",\n", " \"opacity\": 100\n", " },\n", " \"date\": \"1879-05\",\n", " \"location\": {\n", " \"lat\": 45.45,\n", " \"lon\": 11.0,\n", " \"zoom\": 4\n", " },\n", " \"media\": {\n", " \"caption\": \"May - August 1879\",\n", " \"credit\": \"Ashmolean Museum\",\n", " \"url\": \"https://collections.ashmolean.org/media/ashmole6_collection/w800/Collections/Single_Objects/WA/WA_RS/WA_RS_RUD_098-a-L.jpg\"\n", " },\n", " \"text\": {\n", " \"headline\": \"Study of a Capital of one of the Upper Pinnacles of the Tomb of Cansignorio della Scala, Verona\",\n", " \"text\": \"

Artwork homepage\"\n", " }\n", " },\n", " {\n", " \"background\": {\n", " \"color\": \"#00758F\",\n", " \"opacity\": 100\n", " },\n", " \"date\": \"1882\",\n", " \"location\": {\n", " \"lat\": 43.766667,\n", " \"lon\": 11.25,\n", " \"zoom\": 4\n", " },\n", " \"media\": {\n", " \"caption\": \"1882\",\n", " \"credit\": \"Harvard Art Museum\",\n", " \"url\": \"https://nrs.harvard.edu/urn-3:HUAM:INV121898_dynmc?width=500&height=800\"\n", " },\n", " \"text\": {\n", " \"headline\": \"Ponte Vecchio\",\n", " \"text\": \"

Artwork homepage\"\n", " }\n", " },\n", " {\n", " \"background\": {\n", " \"color\": \"#00758F\",\n", " \"opacity\": 100\n", " },\n", " \"date\": \"1882\",\n", " \"location\": {\n", " \"lat\": 44.033333,\n", " \"lon\": 10.45,\n", " \"zoom\": 4\n", " },\n", " \"media\": {\n", " \"caption\": \"1882\",\n", " \"credit\": \"Harvard Art Museum\",\n", " \"url\": \"https://nrs.harvard.edu/urn-3:HUAM:80339_dynmc?width=500&height=800\"\n", " },\n", " \"text\": {\n", " \"headline\": \"Looking down from Florence towards Lucca\",\n", " \"text\": \"Edward Waldo Forbes, Cambridge, gift; to Fogg Art Museum, 1954

Artwork homepage\"\n", " }\n", " },\n", " {\n", " \"background\": {\n", " \"color\": \"#00758F\",\n", " \"opacity\": 100\n", " },\n", " \"date\": \"1882\",\n", " \"location\": {\n", " \"lat\": 43.766667,\n", " \"lon\": 11.25,\n", " \"zoom\": 4\n", " },\n", " \"media\": {\n", " \"caption\": \"1882\",\n", " \"credit\": \"Harvard Art Museum\",\n", " \"url\": \"https://nrs.harvard.edu/urn-3:HUAM:INV121898_dynmc?width=500&height=800\"\n", " },\n", " \"text\": {\n", " \"headline\": \"Ponte Vecchio\",\n", " \"text\": \"

Artwork homepage\"\n", " }\n", " },\n", " {\n", " \"background\": {\n", " \"color\": \"#00758F\",\n", " \"opacity\": 100\n", " },\n", " \"date\": \"1882\",\n", " \"location\": {\n", " \"lat\": 44.033333,\n", " \"lon\": 10.45,\n", " \"zoom\": 4\n", " },\n", " \"media\": {\n", " \"caption\": \"1882\",\n", " \"credit\": \"Harvard Art Museum\",\n", " \"url\": \"https://nrs.harvard.edu/urn-3:HUAM:80339_dynmc?width=500&height=800\"\n", " },\n", " \"text\": {\n", " \"headline\": \"Looking down from Florence towards Lucca\",\n", " \"text\": \"Edward Waldo Forbes, Cambridge, gift; to Fogg Art Museum, 1954

Artwork homepage\"\n", " }\n", " }\n", " ]\n", " }\n", "}\n" ] } ], "source": [ "# dictionary holding values to be used in visualisation e.g. in styling\n", "sources = {}\n", "sources[\"https://www.nga.gov/collection/\"] = {\"name\":\"National Gallery of Art\",\"colour\": \"#E8A798\"}\n", "sources[\"https://clevelandart.org/art/\"] = {\"name\":\"Cleveland Museum of Art\", \"colour\":\"#EDD59E\"}\n", "sources[\"https://www.philamuseum.org/collection/object/\"] = {\"name\":\"Philadelphia Museum of Art\",\"colour\":\"#6B5876\"}\n", "sources[\"https://www.tate.org.uk/art/artworks/\"] = {\"name\":\"Tate Museum\",\"colour\":\"#A09998\"}\n", "sources[\"https://www.harvardartmuseums.org/collections/object/\"] = {\"name\":\"Harvard Art Museum\",\"colour\":\"#00758F\"}\n", "sources[\"ashmolean\"] = {\"name\":\"Ashmolean Museum\",\"colour\":\"#3f83e8\"}\n", "sources[\"rijk\"] = {\"name\":\"Rijksmuseum\",\"colour\":\"#94b7c3\"}\n", "\n", "\n", "months = { '01':'Janauary',\n", " '02':'February',\n", " '03':'March',\n", " '04':'April',\n", " '05':'May',\n", " '06':'June',\n", " '07':'July',\n", " '08':'August',\n", " '09':'September',\n", " '10':'October',\n", " '11':'November',\n", " '12':'December'}\n", "\n", "# filepath for JSON file created\n", "storymap_file =\"data/ruskin/storyvis/storymap.json\"\n", "\n", "# directory containing Linked Art JSON files describing John Ruskin artworks\n", "storyvisdir=\"data/ruskin/storyvis/json\"\n", "file_list=os.listdir(storyvisdir)\n", "\n", "# iterate through Linked Art files\n", "for file in file_list:\n", " with open( storyvisdir + \"/\" + file) as json_file:\n", " \n", " # load file into json object\n", " artwork = json.load(json_file)\n", " \n", " # if does not have produced_by property do not include in visualisation\n", " if \"produced_by\" not in artwork:\n", " continue\n", " \n", " # if does not have date value for begin date do not include in visualisation\n", " if \"begin_of_the_begin\" not in artwork[\"produced_by\"][\"timespan\"]:\n", " continue\n", " \n", " # if begin date is blank or == 1819, do not include \n", " if artwork[\"produced_by\"][\"timespan\"][\"begin_of_the_begin\"] in (1819,\"\"):\n", " continue\n", " \n", " \n", " id = artwork[\"id\"]\n", " credit = \"\"\n", " text = \"\"\n", " imageurl = \"\"\n", " bgcolour = \"\"\n", " homepage = \"\"\n", " \n", " # iterate over sources dict\n", " for source in list(sources.keys()):\n", " if source in id:\n", " credit = sources[source][\"name\"]\n", " bgcolour = sources[source][\"colour\"]\n", " \n", " if \"referred_to_by\" in artwork and len(artwork[\"referred_to_by\"]) > 0 and \"content\" in artwork[\"referred_to_by\"][0]: \n", " text = artwork[\"referred_to_by\"][0][\"content\"]\n", " \n", " if artwork[\"subject_of\"][0][\"classified_as\"][1][\"id\"] == \"http://vocab.getty.edu/aat/300266277\":\n", " homepage = artwork[\"subject_of\"][0][\"id\"]\n", " text = text + \"

Artwork homepage\"\n", " \n", " if \"representation\" in artwork:\n", " if artwork[\"representation\"][0][\"id\"] != \"\":\n", " imageurl = artwork[\"representation\"][0][\"id\"]\n", " if \"Harvard\" in credit:\n", " imageurl = imageurl + \"?width=500&height=800\"\n", " \n", " \n", " \n", " \n", " if \"begin_of_the_begin\" in artwork[\"produced_by\"][\"timespan\"]:\n", " begin = artwork[\"produced_by\"][\"timespan\"][\"begin_of_the_begin\"]\n", " try:\n", " begin = int(begin)\n", " timespan_label = artwork[\"produced_by\"][\"timespan\"][\"_label\"]\n", " for idx in months:\n", " if months[idx] in timespan_label:\n", " begin = str(begin) + \"-\" + idx\n", " break\n", " \n", " \n", " \n", " except:\n", " continue\n", " \n", " coords = artwork[\"shows\"][\"represents\"][0][\"approximated_by\"][0][\"defined_by\"]\n", " coords = coords.replace(\"POINT(\", \"\")\n", " coords = coords.replace(\")\",\"\")\n", " coords = coords.split()\n", " \n", " \n", " storymap[\"storymap\"][\"slides\"].append(\n", " {\n", " \"background\": {\n", " \"color\": bgcolour,\n", " \"opacity\": 100\n", " },\n", " \"date\": str(begin),\n", " \n", " \"location\": {\n", " \"lat\": float(coords[0]),\n", " \n", " \"lon\": float(coords[1]),\n", " \"zoom\": 4\n", " },\n", " \"media\": {\n", " \"caption\": artwork[\"produced_by\"][\"timespan\"][\"_label\"],\n", " \"credit\": credit,\n", " \"url\": imageurl \n", " },\n", " \"text\": {\n", " \"headline\": artwork[\"_label\"],\n", " \"text\": text\n", " }\n", " })\n", " \n", " storymap[\"storymap\"][\"slides\"].sort(key=lambda x: x[\"date\"])\n", " \n", "text_file = open(storymap_file, 'wt') \n", "n = text_file.write(json.dumps(storymap,indent=2))\n", "text_file.close()\n", " \n", " \n", "print(json.dumps(storymap,indent=2)) " ] }, { "cell_type": "markdown", "id": "6a4478e0", "metadata": {}, "source": [ "## Story Map Data Visualisation - John Ruskin's Travels in Europe" ] }, { "cell_type": "markdown", "id": "8c5649e8", "metadata": {}, "source": [ "### Visualisation Screenshots\n", "\n", "\n", "\n", "" ] }, { "cell_type": "markdown", "id": "e9e1abc0", "metadata": {}, "source": [ "### Make Story Map Visualisation" ] }, { "cell_type": "code", "execution_count": 6, "id": "bd11e13a", "metadata": {}, "outputs": [ { "data": { "text/html": [ "
\n", "\n", "\n", "\n", "\n", "\n", "\n" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "%%HTML\n", "
\n", "\n", "\n", "\n", "\n", "\n", "" ] }, { "cell_type": "markdown", "id": "4e97f938", "metadata": {}, "source": [ "## Online Visualisation\n", "The following visualisation uses KnightLabs online hosting service\n", "\n", "Ruskin StoryMap visualisation\n" ] }, { "cell_type": "code", "execution_count": null, "id": "cfdde493", "metadata": {}, "outputs": [], "source": [] }, { "cell_type": "code", "execution_count": null, "id": "e9e26807", "metadata": {}, "outputs": [], "source": [] } ], "metadata": { "finalized": { "timestamp": 1651222342128, "trusted": true }, "kernelspec": { "display_name": "Python 3", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.8.8" } }, "nbformat": 4, "nbformat_minor": 5 }