Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
javascript: (() => { let elements = ["tab-Red", "tab-Green", "tab-Blue", "tab-Orange"]; let n = 0; let doClick = function () { document.getElementById(elements[n]).click(); if (n == elements.length - 1) { n = 0; } else { n = n + 1; } }; setInterval(doClick, 5000); })(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
DISTRICTID | STFIPS | CDFIPS | STATE_ABBR | NAME | LAST_NAME | PARTY | GEO_ID | |
---|---|---|---|---|---|---|---|---|
5600 | 56 | 00 | WY | Liz Cheney | Cheney | Republican | 5001600US5600 | |
5401 | 54 | 01 | WV | David B. McKinley | McKinley | Republican | 5001600US5401 | |
5402 | 54 | 02 | WV | Alexander X. Mooney | Mooney | Republican | 5001600US5402 | |
5403 | 54 | 03 | WV | Carol Miller | Miller | Republican | 5001600US5403 | |
5501 | 55 | 01 | WI | Bryan Steil | Steil | Republican | 5001600US5501 | |
5502 | 55 | 02 | WI | Mark Pocan | Pocan | Democrat | 5001600US5502 | |
5503 | 55 | 03 | WI | Ron Kind | Kind | Democrat | 5001600US5503 | |
5504 | 55 | 04 | WI | Gwen Moore | Moore | Democrat | 5001600US5504 | |
5505 | 55 | 05 | WI | Scott Fitzgerald | Fitzgerald | Republican | 5001600US5505 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import requests | |
import datetime | |
import csv | |
searchString = "https://collections.leventhalmap.org/search?f%5Bcollection_name_ssim%5D%5B%5D=American+Revolutionary+War-Era+Maps+%28Collection+of+Distinction%29" | |
fields = ["label_ssim","date_start_tsim","institution_name_ssim"] | |
complete = False | |
page = 1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"metadata": { | |
"author": "Garrett Dash Nelson", | |
"title": "Narrating maps and images with panel-truck", | |
"subtitle": "An interactive tool from the Leventhal Map & Education Center", | |
"publishedDate": "2021-02-12" | |
}, | |
"sources": [ | |
{ | |
"id": "1", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"metadata":{"title":"Let's try another one out","author":"Goober Garber","subtitle":"Does it work? We'll find out","datePublished":"Doomsday"},"scenes":[{"caption":{"text":"with a big zoomed out **map**!!","title":"Let's start here"},"extent":"fit","moreInfo":"https://collections.leventhalmap.org/search/commonwealth:hx11z575j","sceneSource":{"sourceType":"iiif","iiifManifest":{"manifest":"https://collections.leventhalmap.org/search/commonwealth:hx11z575j/manifest","sequence":0,"canvas":0,"image":0}}},{"caption":{"text":"we will zoom in on the caption"},"extent":[217.38666666666677,-1190.9066666666668,1424.3866666666668,-289.68],"moreInfo":"https://collections.leventhalmap.org/search/commonwealth:hx11z575j","sceneSource":{"sourceType":"iiif","iiifManifest":{"manifest":"https://collections.leventhalmap.org/search/commonwealth:hx11z575j/manifest","sequence":0,"canvas":0,"image":0}}},{"caption":{"text":"then on [Boston](https://boston.gov)"},"extent":[1376.1066666666666,-3395.6933333333336,3355.586666666667,-149 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"metadata": { | |
"author": "Garrett Dash Nelson", | |
"title": "Narrating maps and images with panel-truck", | |
"subtitle": "An interactive tool from the Leventhal Map & Education Center", | |
"publishedDate": "2020-12-30" | |
}, | |
"scenes": [ | |
{ | |
"sceneSource": { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import requests | |
from bs4 import BeautifulSoup | |
barcode = "39999059010775" | |
r = requests.get('https://collections.leventhalmap.org/search?page=1&per_page=100&q={}'.format(barcode)) | |
htmlSource = BeautifulSoup(r.text, "html.parser") | |
for d in htmlSource.find_all("div", class_="document"): |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<meta charset="utf-8"> | |
<style> | |
body { | |
background: #fcfcfa; | |
height: 500px; | |
position: relative; | |
width: 960px; | |
} |
NewerOlder