Regular Expressions 101

Save & Share

  • Regex Version: ver. 2
  • Update Regex
    ctrl+⇧+s
  • Save new Regex
    ctrl+s
  • Add to Community Library

Flavor

  • PCRE2 (PHP >=7.3)
  • PCRE (PHP <7.3)
  • ECMAScript (JavaScript)
  • Python
  • Golang
  • Java 8
  • .NET 7.0 (C#)
  • Rust
  • Regex Flavor Guide

Function

  • Match
  • Substitution
  • List
  • Unit Tests

Tools

Sponsors
There are currently no sponsors. Become a sponsor today!
An explanation of your regex will be automatically generated as you type.
Detailed match information will be displayed here automatically.
  • All Tokens
  • Common Tokens
  • General Tokens
  • Anchors
  • Meta Sequences
  • Quantifiers
  • Group Constructs
  • Character Classes
  • Flags/Modifiers
  • Substitution
  • A single character of: a, b or c
    [abc]
  • A character except: a, b or c
    [^abc]
  • A character in the range: a-z
    [a-z]
  • A character not in the range: a-z
    [^a-z]
  • A character in the range: a-z or A-Z
    [a-zA-Z]
  • Any single character
    .
  • Alternate - match either a or b
    a|b
  • Any whitespace character
    \s
  • Any non-whitespace character
    \S
  • Any digit
    \d
  • Any non-digit
    \D
  • Any word character
    \w
  • Any non-word character
    \W
  • Non-capturing group
    (?:...)
  • Capturing group
    (...)
  • Zero or one of a
    a?
  • Zero or more of a
    a*
  • One or more of a
    a+
  • Exactly 3 of a
    a{3}
  • 3 or more of a
    a{3,}
  • Between 3 and 6 of a
    a{3,6}
  • Start of string
    ^
  • End of string
    $
  • A word boundary
    \b
  • Non-word boundary
    \B

Regular Expression

/
/
gm

Test String

Code Generator

Generated Code

# coding=utf8 # the above tag defines encoding for this document and is for Python 2.x compatibility import re regex = r"(\"type\")[^{}]+\"type\"" test_str = ("{\"rows\": [\n" " {\n" " \"type\": \"Feature\",\n" " \"properties\": {\n" " \"name\": \"Nice\",\n" " \"type\": \"Panorama\",\n" " \"scenes\": 1\n" " },\n" " \"geometry\": {\n" " \"type\": \"Point\",\n" " \"coordinates\": [\n" " 7.266667,\n" " 43.7\n" " ]\n" " }\n" " },\n" " {\n" " \"type\": \"Feature\",\n" " \"properties\": {\n" " \"name\": \"Montevideo\",\n" " \"type\": \"Panorama\",\n" " \"scenes\": 1\n" " },\n" " \"geometry\": {\n" " \"type\": \"Point\",\n" " \"coordinates\": [\n" " -56.181944,\n" " -34.883611\n" " ]\n" " }\n" " },\n" " {\n" " \"type\": \"Feature\",\n" " \"properties\": {\n" " \"name\": \"Laguna\",\n" " \"type\": \"Panorama\",\n" " \"scenes\": 1\n" " },\n" " \"geometry\": {\n" " \"type\": \"Point\",\n" " \"coordinates\": [\n" " -48.777718,\n" " -28.484792\n" " ]\n" " }\n" " },\n" " {\n" " \"type\": \"Feature\",\n" " \"properties\": {\n" " \"name\": \"Imbituba\",\n" " \"type\": \"Panorama\",\n" " \"scenes\": 1\n" " },\n" " \"geometry\": {\n" " \"type\": \"Point\",\n" " \"coordinates\": [\n" " -48.666667,\n" " -28.233333\n" " ]\n" " }\n" " },\n" " {\n" " \"type\": \"Feature\",\n" " \"properties\": {\n" " \"name\": \"Turin\",\n" " \"type\": \"Panorama\",\n" " \"scenes\": 1\n" " },\n" " \"geometry\": {\n" " \"type\": \"Point\",\n" " \"coordinates\": [\n" " 7.686519,\n" " 45.066065\n" " ]\n" " }\n" " },\n" " {\n" " \"type\": \"Feature\",\n" " \"properties\": {\n" " \"name\": \"Zwischbergen\",\n" " \"type\": \"Panorama\",\n" " \"scenes\": 3\n" " },\n" " \"geometry\": {\n" " \"type\": \"Point\",\n" " \"coordinates\": [\n" " 8.116667,\n" " 46.166667\n" " ]\n" " }\n" " },\n" " {\n" " \"type\": \"Feature\",\n" " \"properties\": {\n" " \"name\": \"San Bernardino\",\n" " \"type\": \"Panorama\",\n" " \"scenes\": 1\n" " },\n" " \"geometry\": {\n" " \"type\": \"Point\",\n" " \"coordinates\": [\n" " 9.192511,\n" " 46.462156\n" " ]\n" " }\n" " },\n" " {\n" " \"type\": \"Feature\",\n" " \"properties\": {\n" " \"name\": \"Tambohorn\",\n" " \"type\": \"Panorama\",\n" " \"scenes\": 1\n" " },\n" " \"geometry\": {\n" " \"type\": \"Point\",\n" " \"coordinates\": [\n" " 9.283333,\n" " 46.496944\n" " ]\n" " }\n" " },\n" " {\n" " \"type\": \"Feature\",\n" " \"properties\": {\n" " \"name\": \"Mount Splugen\",\n" " \"type\": \"Panorama\",\n" " \"scenes\": 2\n" " },\n" " \"geometry\": {\n" " \"type\": \"Point\",\n" " \"coordinates\": [\n" " 9.333333,\n" " 46.483333\n" " ]\n" " }\n" " },\n" " {\n" " \"type\": \"Feature\",\n" " \"properties\": {\n" " \"name\": \"Palestrina\",\n" " \"type\": \"Panorama\",\n" " \"scenes\": 1\n" " },\n" " \"geometry\": {\n" " \"type\": \"Point\",\n" " \"coordinates\": [\n" " 12.9,\n" " 41.833333\n" " ]\n" " }\n" " },\n" " {\n" " \"type\": \"Feature\",\n" " \"properties\": {\n" " \"name\": \"Rome\",\n" " \"type\": \"Panorama\",\n" " \"scenes\": 8\n" " },\n" " \"geometry\": {\n" " \"type\": \"Point\",\n" " \"coordinates\": [\n" " 12.475694,\n" " 41.875952\n" " ]\n" " }\n" " },\n" " {\n" " \"type\": \"Feature\",\n" " \"properties\": {\n" " \"name\": \"Codigoro\",\n" " \"type\": \"Panorama\",\n" " \"scenes\": 1\n" " },\n" " \"geometry\": {\n" " \"type\": \"Point\",\n" " \"coordinates\": [\n" " 12.10692,\n" " 44.831283\n" " ]\n" " }\n" " },\n" " {\n" " \"type\": \"Feature\",\n" " \"properties\": {\n" " \"name\": \"Punta di Goro\",\n" " \"type\": \"Panorama\",\n" " \"scenes\": 1\n" " },\n" " \"geometry\": {\n" " \"type\": \"Point\",\n" " \"coordinates\": [\n" " 12.297027,\n" " 44.866576\n" " ]\n" " }\n" " },\n" " {\n" " \"type\": \"Feature\",\n" " \"properties\": {\n" " \"name\": \"Magnavacca\",\n" " \"type\": \"Panorama\",\n" " \"scenes\": 1\n" " },\n" " \"geometry\": {\n" " \"type\": \"Point\",\n" " \"coordinates\": [\n" " 12.17979,\n" " 44.695627\n" " ]\n" " }\n" " },\n" " {\n" " \"type\": \"Feature\",\n" " \"properties\": {\n" " \"name\": \"Mesola\",\n" " \"type\": \"Panorama\",\n" " \"scenes\": 1\n" " },\n" " \"geometry\": {\n" " \"type\": \"Point\",\n" " \"coordinates\": [\n" " 12.233333,\n" " 44.916667\n" " ]\n" " }\n" " },\n" " {\n" " \"type\": \"Feature\",\n" " \"properties\": {\n" " \"name\": \"Mandriole di Ravenna\",\n" " \"type\": \"Panorama\",\n" " \"scenes\": 2\n" " },\n" " \"geometry\": {\n" " \"type\": \"Point\",\n" " \"coordinates\": [\n" " 12.221269,\n" " 44.553967\n" " ]\n" " }\n" " },\n" " {\n" " \"type\": \"Feature\",\n" " \"properties\": {\n" " \"name\": \"Lago di Como\",\n" " \"type\": \"Panorama\",\n" " \"scenes\": 2\n" " },\n" " \"geometry\": {\n" " \"type\": \"Point\",\n" " \"coordinates\": [\n" " 9.266667,\n" " 46\n" " ]\n" " }\n" " },\n" " {\n" " \"type\": \"Feature\",\n" " \"properties\": {\n" " \"name\": \"Varese\",\n" " \"type\": \"Panorama\",\n" " \"scenes\": 1\n" " },\n" " \"geometry\": {\n" " \"type\": \"Point\",\n" " \"coordinates\": [\n" " 8.833333,\n" " 45.816667\n" " ]\n" " }\n" " },\n" " {\n" " \"type\": \"Feature\",\n" " \"properties\": {\n" " \"name\": \"San Fermo\",\n" " \"type\": \"Panorama\",\n" " \"scenes\": 1\n" " },\n" " \"geometry\": {\n" " \"type\": \"Point\",\n" " \"coordinates\": [\n" " 9.049,\n" " 45.8085\n" " ]\n" " }\n" " },\n" " {\n" " \"type\": \"Feature\",\n" " \"properties\": {\n" " \"name\": \"Quarto al Faro\",\n" " \"type\": \"Panorama\",\n" " \"scenes\": 1\n" " },\n" " \"geometry\": {\n" " \"type\": \"Point\",\n" " \"coordinates\": [\n" " 8.904722,\n" " 44.404567\n" " ]\n" " }\n" " },\n" " {\n" " \"type\": \"Feature\",\n" " \"properties\": {\n" " \"name\": \"Marina di Palmi\",\n" " \"type\": \"Panorama\",\n" " \"scenes\": 1\n" " },\n" " \"geometry\": {\n" " \"type\": \"Point\",\n" " \"coordinates\": [\n" " 15.85,\n" " 38.366667\n" " ]\n" " }\n" " },\n" " {\n" " \"type\": \"Feature\",\n" " \"properties\": {\n" " \"name\": \"Palermo\",\n" " \"type\": \"Panorama\",\n" " \"scenes\": 1\n" " },\n" " \"geometry\": {\n" " \"type\": \"Point\",\n" " \"coordinates\": [\n" " 13.359177,\n" " 38.11192\n" " ]\n" " }\n" " },\n" " {\n" " \"type\": \"Feature\",\n" " \"properties\": {\n" " \"name\": \"Punta al Faro\",\n" " \"type\": \"Panorama\",\n" " \"scenes\": 1\n" " },\n" " \"geometry\": {\n" " \"type\": \"Point\",\n" " \"coordinates\": [\n" " 15.650833,\n" " 38.264722\n" " ]\n" " }\n" " },\n" " {\n" " \"type\": \"Feature\",\n" " \"properties\": {\n" " \"name\": \"Magdalena Island\",\n" " \"type\": \"Panorama\",\n" " \"scenes\": 2\n" " },\n" " \"geometry\": {\n" " \"type\": \"Point\",\n" " \"coordinates\": [\n" " 9.383333,\n" " 41.183333\n" " ]\n" " }\n" " },\n" " {\n" " \"type\": \"Feature\",\n" " \"properties\": {\n" " \"name\": \"Ischia\",\n" " \"type\": \"Panorama\",\n" " \"scenes\": 1\n" " },\n" " \"geometry\": {\n" " \"type\": \"Point\",\n" " \"coordinates\": [\n" " 13.8957,\n" " 40.7313\n" " ]\n" " }\n" " },\n" " {\n" " \"type\": \"Feature\",\n" " \"properties\": {\n" " \"name\": \"Monreale\",\n" " \"type\": \"Panorama\",\n" " \"scenes\": 1\n" " },\n" " \"geometry\": {\n" " \"type\": \"Point\",\n" " \"coordinates\": [\n" " 13.283333,\n" " 38.083333\n" " ]\n" " }\n" " },\n" " {\n" " \"type\": \"Feature\",\n" " \"properties\": {\n" " \"name\": \"Nisida\",\n" " \"type\": \"Panorama\",\n" " \"scenes\": 1\n" " },\n" " \"geometry\": {\n" " \"type\": \"Point\",\n" " \"coordinates\": [\n" " 14.163333,\n" " 40.795278\n" " ]\n" " }\n" " },\n" " {\n" " \"type\": \"Feature\",\n" " \"properties\": {\n" " \"name\": \"Milazzo\",\n" " \"type\": \"Panorama\",\n" " \"scenes\": 3\n" " },\n" " \"geometry\": {\n" " \"type\": \"Point\",\n" " \"coordinates\": [\n" " 15.233333,\n" " 38.216667\n" " ]\n" " }\n" " },\n" " {\n" " \"type\": \"Feature\",\n" " \"properties\": {\n" " \"name\": \"Reggio Calabria\",\n" " \"type\": \"Panorama\",\n" " \"scenes\": 1\n" " },\n" " \"geometry\": {\n" " \"type\": \"Point\",\n" " \"coordinates\": [\n" " 15.62449,\n" " 38.105251\n" " ]\n" " }\n" " },\n" " {\n" " \"type\": \"Feature\",\n" " \"properties\": {\n" " \"name\": \"Capua\",\n" " \"type\": \"Panorama\",\n" " \"scenes\": 1\n" " },\n" " \"geometry\": {\n" " \"type\": \"Point\",\n" " \"coordinates\": [\n" " 14.2,\n" " 41.1\n" " ]\n" " }\n" " },\n" " {\n" " \"type\": \"Feature\",\n" " \"properties\": {\n" " \"name\": \"Volturno\",\n" " \"type\": \"Panorama\",\n" " \"scenes\": 3\n" " },\n" " \"geometry\": {\n" " \"type\": \"Point\",\n" " \"coordinates\": [\n" " 13.937316,\n" " 41.061751\n" " ]\n" " }\n" " },\n" " {\n" " \"type\": \"Feature\",\n" " \"properties\": {\n" " \"name\": \"Naples\",\n" " \"type\": \"Panorama\",\n" " \"scenes\": 1\n" " },\n" " \"geometry\": {\n" " \"type\": \"Point\",\n" " \"coordinates\": [\n" " 14.272195,\n" " 40.85094\n" " ]\n" " }\n" " },\n" " {\n" " \"type\": \"Feature\",\n" " \"properties\": {\n" " \"name\": \"Aspromonte\",\n" " \"type\": \"Panorama\",\n" " \"scenes\": 3\n" " },\n" " \"geometry\": {\n" " \"type\": \"Point\",\n" " \"coordinates\": [\n" " 16,\n" " 38.166667\n" " ]\n" " }\n" " },\n" " {\n" " \"type\": \"Feature\",\n" " \"properties\": {\n" " \"name\": \"Varignano\",\n" " \"type\": \"Panorama\",\n" " \"scenes\": 1\n" " },\n" " \"geometry\": {\n" " \"type\": \"Point\",\n" " \"coordinates\": [\n" " 9.838042,\n" " 44.059558\n" " ]\n" " }\n" " },\n" " {\n" " \"type\": \"Feature\",\n" " \"properties\": {\n" " \"name\": \"Wurzburg\",\n" " \"type\": \"Publications\",\n" " \"books\": [{\n" " \"ShortTitle\": \"Das Recht und die Freiheit der Kirche\",\n" " \"URLID\": \"b3693968\",\n" " \"Author\": \"Hettinger, Franz, 1819-1890\",\n" " \"Year\": 1860,\n" " \"Library\": \"Harvard Risorgimento Preservation Collection\",\n" " \"Language\": \"German\",\n" " \"Scene\": \"14,16\"\n" " }]\n" " },\n" " \"geometry\": {\n" " \"type\": \"Point\",\n" " \"coordinates\": [\n" " 9.933333,\n" " 49.783333\n" " ]\n" " }\n" " },\n" " {\n" " \"type\": \"Feature\",\n" " \"properties\": {\n" " \"name\": \"Hersfeld \",\n" " \"type\": \"Publications\",\n" " \"books\": [{\n" " \"ShortTitle\": \"Feldzeugmeister Gyulai's Kriegsführung in der Lombardei vor dem Richterstuhle rationeller Kritik\",\n" " \"URLID\": \"b3690952\",\n" " \"Author\": \"Wallhaus\",\n" " \"Year\": 1859,\n" " \"Library\": \"Harvard Risorgimento Preservation Collection\",\n" " \"Language\": \"German\",\n" " \"Scene\": \"28,29,30,31\"\n" " }]\n" " },\n" " \"geometry\": {\n" " \"type\": \"Point\",\n" " \"coordinates\": [\n" " 9.701968,\n" " 50.870134\n" " ]\n" " }\n" " },\n" " {\n" " \"type\": \"Feature\",\n" " \"properties\": {\n" " \"name\": \"Hersfeld \",\n" " \"type\": \"Publications\",\n" " \"books\": [{\n" " \"ShortTitle\": \"Venetien muss jetzt frei und an Italien zurückgegeben werden!\",\n" " \"URLID\": \"b3695621\",\n" " \"Author\": \"Wallhaus\",\n" " \"Year\": 1860,\n" " \"Library\": \"Harvard Risorgimento Preservation Collection\",\n" " \"Language\": \"German\",\n" " \"Scene\": \"BH\"\n" " }]\n" " },\n" " \"geometry\": {\n" " \"type\": \"Point\",\n" " \"coordinates\": [\n" " 9.701968,\n" " 50.870134\n" " ]\n" " }\n" " },\n" " {\n" " \"type\": \"Feature\",\n" " \"properties\": {\n" " \"name\": \"Codogno \",\n" " \"type\": \"Publications\",\n" " \"books\": [{\n" " \"ShortTitle\": \"Dopo Aspromonte\",\n" " \"URLID\": \"b3692126\",\n" " \"Author\": \"A. B\",\n" " \"Year\": 1862,\n" " \"Library\": \"Harvard Risorgimento Preservation Collection\",\n" " \"Language\": \"Italian\",\n" " \"Scene\": \"52,53,54\"\n" " }]\n" " },\n" " \"geometry\": {\n" " \"type\": \"Point\",\n" " \"coordinates\": [\n" " 9.700946,\n" " 45.161057\n" " ]\n" " }\n" " },\n" " {\n" " \"type\": \"Location\",\n" " \"type\": \"Feature\",\n" " \"properties\": {\n" " \"name\": \"Piacenza \",\n" " \"type\": \"Publications\",\n" " \"books\": [{\n" " \"ShortTitle\": \"Bollettino storico della rivoluzione di Milano del marzo 1848\",\n" " \"URLID\": \"b3687994\",\n" " \"Author\": \"Cittadino\",\n" " \"Year\": 1848,\n" " \"Library\": \"Harvard Risorgimento Preservation Collection\",\n" " \"Language\": \"Italian\",\n" " \"Scene\": \"BH\"\n" " }]\n" " },\n" " \"geometry\": {\n" " \"type\": \"Point\",\n" " \"coordinates\": [\n" " 9.700556,\n" " 45.047778\n" " ]\n" " }\n" " },\n" " {\n" " \"type\": \"Feature\",\n" " \"properties\": {\n" " \"name\": \"Piacenza \",\n" " \"type\": \"Publications\",\n" " \"books\": [{\n" " \"ShortTitle\": \"Raccolta di tutti gli articoli inseriti nel Tribuno del popolo\",\n" " \"URLID\": \"b3688886\",\n" " \"Author\": \"Civetta, Antonio\",\n" " \"Year\": 1848,\n" " \"Library\": \"Harvard Risorgimento Preservation Collection\",\n" " \"Language\": \"Italian\",\n" " \"Scene\": \"BH\"\n" " }]\n" " },\n" " \"geometry\": {\n" " \"type\": \"Point\",\n" " \"coordinates\": [\n" " 9.700556,\n" " 45.047778\n" " ]\n" " }\n" " },\n" " {\n" " \"type\": \"Feature\",\n" " \"properties\": {\n" " \"name\": \"Piacenza \",\n" " \"type\": \"Publications\",\n" " \"books\": [{\n" " \"ShortTitle\": \"Allocuzione tenuta ai signori vicarii foranei della diocesi di Piacenza nella congregazione del giorno 25 maggio 1848\",\n" " \"URLID\": \"b3688887\",\n" " \"Author\": \"Silva, Antônio\",\n" " \"Year\": 1848,\n" " \"Library\": \"Harvard Risorgimento Preservation Collection\",\n" " \"Language\": \"Italian\",\n" " \"Scene\": \"BH\"\n" " }]\n" " },\n" " \"geometry\": {\n" " \"type\": \"Point\",\n" " \"coordinates\": [\n" " 9.700556,\n" " 45.047778\n" " ]\n" " }\n" " },\n" " {\n" " \"type\": \"Feature\",\n" " \"properties\": {\n" " \"name\": \"Piacenza \",\n" " \"type\": \"Publications\",\n" " \"books\": [{\n" " \"ShortTitle\": \"Relazione della festa nazionale del 10 maggio 1848, atto di dedizione dello stato piacentino al Piemonte e Parole dette dall'avvocato Pietro Gioja\",\n" " \"URLID\": \"b3688893\",\n" " \"Author\": \"Fioruzzi, Carlo; Gioja, Pietro, 1797-1865\",\n" " \"Year\": 1848,\n" " \"Library\": \"Harvard Risorgimento Preservation Collection\",\n" " \"Language\": \"Italian\",\n" " \"Scene\": \"BH\"\n" " }]\n" " },\n" " \"geometry\": {\n" " \"type\": \"Point\",\n" " \"coordinates\": [\n" " 9.700556,\n" " 45.047778\n" " ]\n" " }\n" " },\n" " {\n" " \"type\": \"Feature\",\n" " \"properties\": {\n" " \"name\": \"Piacenza \",\n" " \"type\": \"Publications\",\n" " \"books\": [{\n" " \"ShortTitle\": \"Cenni sulla vita del valoroso generale Garibaldi\",\n" " \"URLID\": \"b3685012\",\n" " \"Author\": \"La Forge, Anatole de, 1821-1892\",\n" " \"Year\": 1859,\n" " \"Library\": \"Harvard Risorgimento Preservation Collection\",\n" " \"Language\": \"Italian\",\n" " \"Scene\": \"1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27\"\n" " }]\n" " },\n" " \"geometry\": {\n" " \"type\": \"Point\",\n" " \"coordinates\": [\n" " 9.700556,\n" " 45.047778\n" " ]\n" " }\n" " },\n" " {\n" " \"type\": \"Feature\",\n" " \"properties\": {\n" " \"name\": \"Piacenza \",\n" " \"type\": \"Publications\",\n" " \"books\": [{\n" " \"ShortTitle\": \"Onori funebri ai martiri dell'italico riscatto\",\n" " \"URLID\": \"b3684073\",\n" " \"Author\": \"Moruzzi, Giovanni Battista, 1811-1884\",\n" " \"Year\": 1859,\n" " \"Library\": \"Harvard Risorgimento Preservation Collection\",\n" " \"Language\": \"Italian\",\n" " \"Scene\": \"BH\"\n" " }]\n" " },\n" " \"geometry\": {\n" " \"type\": \"Point\",\n" " \"coordinates\": [\n" " 9.700556,\n" " 45.047778\n" " ]\n" " }\n" " },\n" " {\n" " \"type\": \"Feature\",\n" " \"properties\": {\n" " \"name\": \"Piacenza \",\n" " \"type\": \"Publications\",\n" " \"books\": [{\n" " \"ShortTitle\": \"Garibaldi ed i cacciatori delle Alpi\",\n" " \"URLID\": \"b3690971\",\n" " \"Author\": \"--\",\n" " \"Year\": 1859,\n" " \"Library\": \"Harvard Risorgimento Preservation Collection\",\n" " \"Language\": \"Italian\",\n" " \"Scene\": \"28,29,30,31\"\n" " }]\n" " },\n" " \"geometry\": {\n" " \"type\": \"Point\",\n" " \"coordinates\": [\n" " 9.700556,\n" " 45.047778\n" " ]\n" " }\n" " },\n" " {\n" " \"type\": \"Feature\",\n" " \"properties\": {\n" " \"name\": \"Piacenza \",\n" " \"type\": \"Publications\",\n" " \"books\": [{\n" " \"ShortTitle\": \"Religione e patria\",\n" " \"URLID\": \"b3691034\",\n" " \"Author\": \"D'Azeglio, Roberto, 1790-1862\",\n" " \"Year\": 1859,\n" " \"Library\": \"Harvard Risorgimento Preservation Collection\",\n" " \"Language\": \"Italian\",\n" " \"Scene\": \"28,29,30,31\"\n" " }]\n" " },\n" " \"geometry\": {\n" " \"type\": \"Point\",\n" " \"coordinates\": [\n" " 9.700556,\n" " 45.047778\n" " ]\n" " }\n" " },\n" " {\n" " \"type\": \"Feature\",\n" " \"properties\": {\n" " \"name\": \"Piacenza \",\n" " \"type\": \"Publications\",\n" " \"books\": [{\n" " \"ShortTitle\": \"Fisiologia dello Zuavo\",\n" " \"URLID\": \"b3691052\",\n" " \"Author\": \"Garilli, Rafaele\",\n" " \"Year\": 1859,\n" " \"Library\": \"Harvard Risorgimento Preservation Collection\",\n" " \"Language\": \"Italian\",\n" " \"Scene\": \"28,29,30,31\"\n" " }]\n" " },\n" " \"geometry\": {\n" " \"type\": \"Point\",\n" " \"coordinates\": [\n" " 9.700556,\n" " 45.047778\n" " ]\n" " }\n" " },\n" " {\n" " \"type\": \"Feature\",\n" " \"properties\": {\n" " \"name\": \"Piacenza \",\n" " \"type\": \"Publications\",\n" " \"books\": [{\n" " \"ShortTitle\": \"Relazione dell'avvocato professore Carlo Fioruzzi sulla proposta della decadenza della dinastia borbonica\",\n" " \"URLID\": \"b3691419\",\n" " \"Author\": \"Fioruzzi, Carlo\",\n" " \"Year\": 1859,\n" " \"Library\": \"Harvard Risorgimento Preservation Collection\",\n" " \"Language\": \"Italian\",\n" " \"Scene\": \"BH\"\n" " }]\n" " },\n" " \"geometry\": {\n" " \"type\": \"Point\",\n" " \"coordinates\": [\n" " 9.700556,\n" " 45.047778\n" " ]\n" " }\n" " },\n" " {\n" " \"type\": \"Feature\",\n" " \"properties\": {\n" " \"name\": \"Piacenza \",\n" " \"type\": \"Publications\",\n" " \"books\": [{\n" " \"ShortTitle\": \"Funerali al conte Camillo Benso di Cavour\",\n" " \"URLID\": \"b3684874\",\n" " \"Author\": \"Galli, Luigi, 1822-1900\",\n" " \"Year\": 1861,\n" " \"Library\": \"Harvard Risorgimento Preservation Collection\",\n" " \"Language\": \"Italian\",\n" " \"Scene\": \"BH\"\n" " }]\n" " },\n" " \"geometry\": {\n" " \"type\": \"Point\",\n" " \"coordinates\": [\n" " 9.700556,\n" " 45.047778\n" " ]\n" " }\n" " },\n" " {\n" " \"type\": \"Feature\",\n" " \"properties\": {\n" " \"name\": \"Piacenza \",\n" " \"type\": \"Publications\",\n" " \"books\": [{\n" " \"ShortTitle\": \"Parole in onore dei martiri dell'indipendenza italiana\",\n" " \"URLID\": \"b3691130\",\n" " \"Author\": \"Zanardini, Pietro\",\n" " \"Year\": 1861,\n" " \"Library\": \"Harvard Risorgimento Preservation Collection\",\n" " \"Language\": \"Italian\",\n" " \"Scene\": \"28,29,30,31\"\n" " }]\n" " },\n" " \"geometry\": {\n" " \"type\": \"Point\",\n" " \"coordinates\": [\n" " 9.700556,\n" " 45.047778\n" " ]\n" " }\n" " },\n" " {\n" " \"type\": \"Feature\",\n" " \"properties\": {\n" " \"name\": \"Piacenza \",\n" " \"type\": \"Publications\",\n" " \"books\": [{\n" " \"ShortTitle\": \"La questione tra il papato e l'Italia risoluta dalla riforma dell'insegnamento italiano\",\n" " \"URLID\": \"b3694145\",\n" " \"Author\": \"Nerva, S. Emilio, 1815-\",\n" " \"Year\": 1862,\n" " \"Library\": \"Harvard Risorgimento Preservation Collection\",\n" " \"Language\": \"Italian\",\n" " \"Scene\": \"14,15,16,17,18,19,20,21\"\n" " }]\n" " },\n" " \"geometry\": {\n" " \"type\": \"Point\",\n" " \"coordinates\": [\n" " 9.700556,\n" " 45.047778\n" " ]\n" " }\n" " },\n" " {\n" " \"type\": \"Feature\",\n" " \"properties\": {\n" " \"name\": \"Crema \",\n" " \"type\": \"Publications\",\n" " \"books\": [{\n" " \"ShortTitle\": \"Al generale Giuseppe Garibaldi i compilatori offrono\",\n" " \"URLID\": \"b3684952\",\n" " \"Author\": \"Braguti, Paolo Zambellini, Giuseppe\",\n" " \"Year\": 1862,\n" " \"Library\": \"Harvard Risorgimento Preservation Collection\",\n" " \"Language\": \"Italian\",\n" " \"Scene\": \"1,3,6,18,42\"\n" " }]\n" " },\n" " \"geometry\": {\n" " \"type\": \"Point\",\n" " \"coordinates\": [\n" " 9.682484,\n" " 45.364337\n" " ]\n" " }\n" " },\n" " {\n" " \"type\": \"Feature\",\n" " \"properties\": {\n" " \"name\": \"Bergamo \",\n" " \"type\": \"Publications\",\n" " \"books\": [{\n" " \"ShortTitle\": \"Indirizzo alla Guardia nazionale di Lombardia\",\n" " \"URLID\": \"b3688531\",\n" " \"Author\": \"Berizzi, Giovanni Battista\",\n" " \"Year\": 1848,\n" " \"Library\": \"Harvard Risorgimento Preservation Collection\",\n" " \"Language\": \"Italian\",\n" " \"Scene\": \"6,7,8,9,10,11,12\"\n" " }]\n" " },\n" " \"geometry\": {\n" " \"type\": \"Point\",\n" " \"coordinates\": [\n" " 9.67727,\n" " 45.698264\n" " ]\n" " }\n" " },\n" " {\n" " \"type\": \"Feature\",\n" " \"properties\": {\n" " \"name\": \"Bergamo \",\n" " \"type\": \"Publications\",\n" " \"books\": [{\n" " \"ShortTitle\": \"All'urna di Pietro Latisner\",\n" " \"URLID\": \"b3693365\",\n" " \"Author\": \"Beltrami, Antonio\",\n" " \"Year\": 1859,\n" " \"Library\": \"Harvard Risorgimento Preservation Collection\",\n" " \"Language\": \"Italian\",\n" " \"Scene\": \"29,30,31\"\n" " }]\n" " },\n" " \"geometry\": {\n" " \"type\": \"Point\",\n" " \"coordinates\": [\n" " 9.67727,\n" " 45.698264\n" " ]\n" " }\n" " },\n" " {\n" " \"type\": \"Feature\",\n" " \"properties\": {\n" " \"name\": \"Bergamo \",\n" " \"type\": \"Publications\",\n" " \"books\": [{\n" " \"ShortTitle\": \"Crema e Lecco ne' confini naturali storici ed economici della provincia di Bergamo\",\n" " \"URLID\": \"b3691245\",\n" " \"Author\": \"Rosa, Gabriele, 1812-1897\",\n" " \"Year\": 1860,\n" " \"Library\": \"Harvard Risorgimento Preservation Collection\",\n" " \"Language\": \"Italian\",\n" " \"Scene\": \"BH\"\n" " }]\n" " },\n" " \"geometry\": {\n" " \"type\": \"Point\",\n" " \"coordinates\": [\n" " 9.67727,\n" " 45.698264\n" " ]\n" " }\n" " },\n" " {\n" " \"type\": \"Feature\",\n" " \"properties\": {\n" " \"name\": \"Bergamo \",\n" " \"type\": \"Publications\",\n" " \"books\": [{\n" " \"ShortTitle\": \"Il sette novembre 1860\",\n" " \"URLID\": \"b3693418\",\n" " \"Author\": \"Beltrami, Antonio\",\n" " \"Year\": 1860,\n" " \"Library\": \"Harvard Risorgimento Preservation Collection\",\n" " \"Language\": \"Italian\",\n" " \"Scene\": 49\n" " }]\n" " },\n" " \"geometry\": {\n" " \"type\": \"Point\",\n" " \"coordinates\": [\n" " 9.67727,\n" " 45.698264\n" " ]\n" " }\n" " },\n" " {\n" " \"type\": \"Feature\",\n" " \"properties\": {\n" " \"name\": \"Bergamo \",\n" " \"type\": \"Publications\",\n" " \"books\": [{\n" " \"ShortTitle\": \"Ai prodi di Bergamo caduti sui campi di Sicilia\",\n" " \"URLID\": \"b3693342\",\n" " \"Author\": \"Beltrami, Antonio\",\n" " \"Year\": 1860,\n" " \"Library\": \"Harvard Risorgimento Preservation Collection\",\n" " \"Language\": \"Italian\",\n" " \"Scene\": \"41,42\"\n" " }]\n" " },\n" " \"geometry\": {\n" " \"type\": \"Point\",\n" " \"coordinates\": [\n" " 9.67727,\n" " 45.698264\n" " ]\n" " }\n" " },\n" " {\n" " \"type\": \"Feature\",\n" " \"properties\": {\n" " \"name\": \"Lodi \",\n" " \"type\": \"Publications\",\n" " \"books\": [{\n" " \"ShortTitle\": \"Bando ai Lombardi\",\n" " \"URLID\": \"b3687989\",\n" " \"Author\": \"Nessi, Pietro\",\n" " \"Year\": 1848,\n" " \"Library\": \"Harvard Risorgimento Preservation Collection\",\n" " \"Language\": \"Italian\",\n" " \"Scene\": \"6,7,8,9,10,11,12\"\n" " }]\n" " },\n" " \"geometry\": {\n" " \"type\": \"Point\",\n" " \"coordinates\": [\n" " 9.503716,\n" " 45.309723\n" " ]\n" " }\n" " },\n" " {\n" " \"type\": \"Feature\",\n" " \"properties\": {\n" " \"name\": \"Lodi \",\n" " \"type\": \"Publications\",\n" " \"books\": [{\n" " \"ShortTitle\": \"Risposta al proclama del conte Francesco Hartig, ministro plenipotenziario dell'Imperator d'Austria\",\n" " \"URLID\": \"b3688542\",\n" " \"Author\": \"Volentieri, Angelo\",\n" " \"Year\": 1848,\n" " \"Library\": \"Harvard Risorgimento Preservation Collection\",\n" " \"Language\": \"Italian\",\n" " \"Scene\": \"6,7,8,9,10,11,12\"\n" " }]\n" " },\n" " \"geometry\": {\n" " \"type\": \"Point\",\n" " \"coordinates\": [\n" " 9.503716,\n" " 45.309723\n" " ]\n" " }\n" " },\n" " {\n" " \"type\": \"Feature\",\n" " \"properties\": {\n" " \"name\": \"Lodi \",\n" " \"type\": \"Publications\",\n" " \"books\": [{\n" " \"ShortTitle\": \"Sulla condizione nostra attuale\",\n" " \"URLID\": \"b3688543\",\n" " \"Author\": \"Volentieri, Angelo\",\n" " \"Year\": 1848,\n" " \"Library\": \"Harvard Risorgimento Preservation Collection\",\n" " \"Language\": \"Italian\",\n" " \"Scene\": \"6,7,8,9,10,11,12\"\n" " }]\n" " },\n" " \"geometry\": {\n" " \"type\": \"Point\",\n" " \"coordinates\": [\n" " 9.503716,\n" " 45.309723\n" " ]\n" " }\n" " },\n" " {\n" " \"type\": \"Feature\",\n" " \"properties\": {\n" " \"name\": \"St. Gallen \",\n" " \"type\": \"Publications\",\n" " \"books\": [{\n" " \"ShortTitle\": \"Kreuzzug der Oesterreicher, Spanier, Franzosen und Neapolitaner gegen die römische Republik\",\n" " \"URLID\": \"b3683870\",\n" " \"Author\": \"Quinet, Edgar, 1803-1875\",\n" " \"Year\": 1849,\n" " \"Library\": \"Harvard Risorgimento Preservation Collection\",\n" " \"Language\": \"German\",\n" " \"Scene\": \"14,15,16,17,18,19,20,21,22,23\"\n" " }]\n" " },\n" " \"geometry\": {\n" " \"type\": \"Point\",\n" " \"coordinates\": [\n" " 9.366667,\n" " 47.416667\n" " ]\n" " }\n" " },\n" " {\n" " \"type\": \"Feature\",\n" " \"properties\": {\n" " \"name\": \"Chiavari \",\n" " \"type\": \"Publications\",\n" " \"books\": [{\n" " \"ShortTitle\": \"I Trionfi d'Italia\",\n" " \"URLID\": \"b3687593\",\n" " \"Author\": \"--\",\n" " \"Year\": 1848,\n" " \"Library\": \"Harvard Risorgimento Preservation Collection\",\n" " \"Language\": \"Italian\",\n" " \"Scene\": \"6,7,8,9,10,11,12\"\n" " }]\n" " },\n" " \"geometry\": {\n" " \"type\": \"Point\",\n" " \"coordinates\": [\n" " 9.319982,\n" " 44.316842\n" " ]\n" " }\n" " },\n" " {\n" " \"type\": \"Feature\",\n" " \"properties\": {\n" " \"name\": \"Milan\",\n" " \"type\": \"Publications\",\n" " \"books\": [{\n" " \"ShortTitle\": \"Venezia, l'epopéa del 1848 e 1849\",\n" " \"URLID\": \"b3688764\",\n" " \"Author\": \"--\",\n" " \"Year\": \"18uu\",\n" " \"Library\": \"Harvard Risorgimento Preservation Collection\",\n" " \"Language\": \"Italian\",\n" " \"Scene\": \"24,25\"\n" " }]\n" " },\n" " \"geometry\": {\n" " \"type\": \"Point\",\n" " \"coordinates\": [\n" " 9.185924,\n" " 45.465422\n" " ]\n" " }\n" " },\n" " {\n" " \"type\": \"Feature\",\n" " \"properties\": {\n" " \"name\": \"Milan\",\n" " \"type\": \"Publications\",\n" " \"books\": [{\n" " \"ShortTitle\": \"Codice civile generale austriaco\",\n" " \"URLID\": \"b3687616\",\n" " \"Author\": \"--\",\n" " \"Year\": 1815,\n" " \"Library\": \"Harvard Risorgimento Preservation Collection\",\n" " \"Language\": \"Italian\",\n" " \"Scene\": \"BH\"\n" " }]\n" " },\n" " \"geometry\": {\n" " \"type\": \"Point\",\n" " \"coordinates\": [\n" " 9.185924,\n" " 45.465422\n" " ]\n" " }\n" " },\n" " {\n" " \"type\": \"Feature\",\n" " \"properties\": {\n" " \"name\": \"Milan\",\n" " \"type\": \"Publications\",\n" " \"books\": [{\n" " \"ShortTitle\": \"Imperiale regio governo di Milano\",\n" " \"URLID\": \"b3693368\",\n" " \"Author\": \"Saurau, Franz Josef, Graf von, 1760-1832\",\n" " \"Year\": 1816,\n" " \"Library\": \"Harvard Risorgimento Preservation Collection\",\n" " \"Language\": \"Italian\",\n" " \"Scene\": \"BH\"\n" " }]\n" " },\n" " \"geometry\": {\n" " \"type\": \"Point\",\n" " \"coordinates\": [\n" " 9.185924,\n" " 45.465422\n" " ]\n" " }\n" " },\n" " {\n" " \"type\": \"Feature\",\n" " \"properties\": {\n" " \"name\": \"Milan\",\n" " \"type\": \"Publications\",\n" " \"books\": [{\n" " \"ShortTitle\": \"La Corte del papa, ossia, Tutto ciò che concerne la gerarchia della chiesa romana\",\n" " \"URLID\": \"b3686832\",\n" " \"Author\": \"--\",\n" " \"Year\": 1823,\n" " \"Library\": \"Harvard Risorgimento Preservation Collection\",\n" " \"Language\": \"Italian\",\n" " \"Scene\": 14\n" " }]\n" " },\n" " \"geometry\": {\n" " \"type\": \"Point\",\n" " \"coordinates\": [\n" " 9.185924,\n" " 45.465422\n" " ]\n" " }\n" " },\n" " {\n" " \"type\": \"Feature\",\n" " \"properties\": {\n" " \"name\": \"Milan\",\n" " \"type\": \"Publications\",\n" " \"books\": [{\n" " \"ShortTitle\": \"Dopo trent'anni di sanguinose guerre e di funeste rivoluzioni ...\",\n" " \"URLID\": \"b3685790\",\n" " \"Author\": \"--\",\n" " \"Year\": 1824,\n" " \"Library\": \"Harvard Risorgimento Preservation Collection\",\n" " \"Language\": \"Italian\",\n" " \"Scene\": \"BH\"\n" " }]\n" " },\n" " \"geometry\": {\n" " \"type\": \"Point\",\n" " \"coordinates\": [\n" " 9.185924,\n" " 45.465422\n" " ]\n" " }\n" " },\n" " {\n" " \"type\": \"Feature\",\n" " \"properties\": {\n" " \"name\": \"Milan\",\n" " \"type\": \"Publications\",\n" " \"books\": [{\n" " \"ShortTitle\": \"Imperiale regio governo di Milano\",\n" " \"URLID\": \"b3693396\",\n" " \"Author\": \"--\",\n" " \"Year\": 1824,\n" " \"Library\": \"Harvard Risorgimento Preservation Collection\",\n" " \"Language\": \"Italian\",\n" " \"Scene\": \"BH\"\n" " }]\n" " },\n" " \"geometry\": {\n" " \"type\": \"Point\",\n" " \"coordinates\": [\n" " 9.185924,\n" " 45.465422\n" " ]\n" " }\n" " },\n" " {\n" " \"type\": \"Feature\",\n" " \"properties\": {\n" " \"name\": \"Milan\",\n" " \"type\": \"Publications\",\n" " \"books\": [{\n" " \"ShortTitle\": \"La democrazia smascherata, ossia, Paralello tra lo stato democratico e lo stato monarchico\",\n" " \"URLID\": \"b3688325\",\n" " \"Author\": \"Tonso, Prospero\",\n" " \"Year\": 1836,\n" " \"Library\": \"Harvard Risorgimento Preservation Collection\",\n" " \"Language\": \"Italian\",\n" " \"Scene\": \"BH\"\n" " }]\n" " },\n" " \"geometry\": {\n" " \"type\": \"Point\",\n" " \"coordinates\": [\n" " 9.185924,\n" " 45.465422\n" " ]\n" " }\n" " },\n" " {\n" " \"type\": \"Feature\",\n" " \"properties\": {\n" " \"name\": \"Milan\",\n" " \"type\": \"Publications\",\n" " \"books\": [{\n" " \"ShortTitle\": \"Difesa dell'onore dell'armi italiane oltraggiato dal signor di Balzac nelle sue Scene della vita parigina, e confutazione di molti errori della storia militare ...\",\n" " \"URLID\": \"b3686701\",\n" " \"Author\": \"Lissoni, Antonio\",\n" " \"Year\": 1837,\n" " \"Library\": \"Harvard Risorgimento Preservation Collection\",\n" " \"Language\": \"Italian\",\n" " \"Scene\": \"BH\"\n" " }]\n" " },\n" " \"geometry\": {\n" " \"type\": \"Point\",\n" " \"coordinates\": [\n" " 9.185924,\n" " 45.465422\n" " ]\n" " }\n" " },\n" " {\n" " \"type\": \"Feature\",\n" " \"properties\": {\n" " \"name\": \"Milan\",\n" " \"type\": \"Publications\",\n" " \"books\": [{\n" " \"ShortTitle\": \"Lettere\",\n" " \"URLID\": \"b3685446\",\n" " \"Author\": \"Rosmini, Antonio, 1797-1855\",\n" " \"Year\": 1841,\n" " \"Library\": \"Harvard Risorgimento Preservation Collection\",\n" " \"Language\": \"Italian\",\n" " \"Scene\": \"14,15,16,17,18,19,20,21\"\n" " }]\n" " },\n" " \"geometry\": {\n" " \"type\": \"Point\",\n" " \"coordinates\": [\n" " 9.185924,\n" " 45.465422\n" " ]\n" " }\n" " },\n" " {\n" " \"type\": \"Feature\",\n" " \"properties\": {\n" " \"name\": \"Milan\",\n" " \"type\": \"Publications\",\n" " \"books\": [{\n" " \"ShortTitle\": \"Articolo inserito nella Gazzetta d'Augusta\",\n" " \"URLID\": \"b3688997\",\n" " \"Author\": \"--\",\n" " \"Year\": 1846,\n" " \"Library\": \"Harvard Risorgimento Preservation Collection\",\n" " \"Language\": \"Italian\",\n" " \"Scene\": \"BH\"\n" " }]\n" " },\n" " \"geometry\": {\n" " \"type\": \"Point\",\n" " \"coordinates\": [\n" " 9.185924,\n" " 45.465422\n" " ]\n" " }\n" " },\n" " {\n" " \"type\": \"Feature\",\n" " \"properties\": {\n" " \"name\": \"Milan\",\n" " \"type\": \"Publications\",\n" " \"books\": [{\n" " \"ShortTitle\": \"Nella universale esultanza per le benefiche disposizioni del sommo pontefice Pio IX\",\n" " \"URLID\": \"b3689300\",\n" " \"Author\": \"G. S\",\n" " \"Year\": 1846,\n" " \"Library\": \"Harvard Risorgimento Preservation Collection\",\n" " \"Language\": \"Italian\",\n" " \"Scene\": 14\n" " }]\n" " },\n" " \"geometry\": {\n" " \"type\": \"Point\",\n" " \"coordinates\": [\n" " 9.185924,\n" " 45.465422\n" " ]\n" " }\n" " },\n" " {\n" " \"type\": \"Feature\",\n" " \"properties\": {\n" " \"name\": \"Milan\",\n" " \"type\": \"Publications\",\n" " \"books\": [{\n" " \"ShortTitle\": \"Lettera enciclica che S.S. Papa Pio IX ha diretta a tutti i patriarchi, primati, arcivescovi e vescovi\",\n" " \"URLID\": \"b3688967\",\n" " \"Author\": \"Catholic Church\",\n" " \"Year\": 1847,\n" " \"Library\": \"Harvard Risorgimento Preservation Collection\",\n" " \"Language\": \"Italian\",\n" " \"Scene\": \"BH\"\n" " }]\n" " },\n" " \"geometry\": {\n" " \"type\": \"Point\",\n" " \"coordinates\": [\n" " 9.185924,\n" " 45.465422\n" " ]\n" " }\n" " },\n" " {\n" " \"type\": \"Feature\",\n" " \"properties\": {\n" " \"name\": \"Milan\",\n" " \"type\": \"Publications\",\n" " \"books\": [{\n" " \"ShortTitle\": \"Racconti di 200 e più testimonj oculari dei fatti delle gloriose cinque giornate in Milano\",\n" " \"URLID\": \"b3683382\",\n" " \"Author\": \"--\",\n" " \"Year\": 1848,\n" " \"Library\": \"Harvard Risorgimento Preservation Collection\",\n" " \"Language\": \"Italian\",\n" " \"Scene\": \"6,7,8,9,10,11,12\"\n" " }]\n" " },\n" " \"geometry\": {\n" " \"type\": \"Point\",\n" " \"coordinates\": [\n" " 9.185924,\n" " 45.465422\n" " ]\n" " }\n" " },\n" " {\n" " \"type\": \"Feature\",\n" " \"properties\": {\n" " \"name\": \"Milan\",\n" " \"type\": \"Publications\",\n" " \"books\": [{\n" " \"ShortTitle\": \"Gli ultimi cinque giorni degli Austriaci in Milano\",\n" " \"URLID\": \"b3683731\",\n" " \"Author\": \"Cantù, Ignazio, 1810-1877\",\n" " \"Year\": 1848,\n" " \"Library\": \"Harvard Risorgimento Preservation Collection\",\n" " \"Language\": \"Italian\",\n" " \"Scene\": \"6,7,8,9,10,11,12\"\n" " }]\n" " },\n" " \"geometry\": {\n" " \"type\": \"Point\",\n" " \"coordinates\": [\n" " 9.185924,\n" " 45.465422\n" " ]\n" " }\n" " },\n" " {\n" " \"type\": \"Feature\",\n" " \"properties\": {\n" " \"name\": \"Milan\",\n" " \"type\": \"Publications\",\n" " \"books\": [{\n" " \"ShortTitle\": \"Lutti e glorie di Milano dal settembre 1847 al marzo 1848\",\n" " \"URLID\": \"b3683746\",\n" " \"Author\": \"Baracchi, Francesco\",\n" " \"Year\": 1848,\n" " \"Library\": \"Harvard Risorgimento Preservation Collection\",\n" " \"Language\": \"Italian\",\n" " \"Scene\": \"6,7,8,9,10,11,12\"\n" " }]\n" " },\n" " \"geometry\": {\n" " \"type\": \"Point\",\n" " \"coordinates\": [\n" " 9.185924,\n" " 45.465422\n" " ]\n" " }\n" " },\n" " {\n" " \"type\": \"Feature\",\n" " \"properties\": {\n" " \"name\": \"Milan\",\n" " \"type\": \"Publications\",\n" " \"books\": [{\n" " \"ShortTitle\": \"Il genio di Carlo Alberto\",\n" " \"URLID\": \"b3684697\",\n" " \"Author\": \"Badano, Giovanni Battista\",\n" " \"Year\": 1848,\n" " \"Library\": \"Harvard Risorgimento Preservation Collection\",\n" " \"Language\": \"Italian\",\n" " \"Scene\": 5\n" " }]\n" " },\n" " \"geometry\": {\n" " \"type\": \"Point\",\n" " \"coordinates\": [\n" " 9.185924,\n" " 45.465422\n" " ]\n" " }\n" " },\n" " {\n" " \"type\": \"Feature\",\n" " \"properties\": {\n" " \"name\": \"Milan\",\n" " \"type\": \"Publications\",\n" " \"books\": [{\n" " \"ShortTitle\": \"Relazione storica del dominio dei Tedeschi in Milano dal 1814 sino alla rivoluzione di marzo 1848, operata dai Milanesi ...\",\n" " \"URLID\": \"b3686498\",\n" " \"Author\": \"Bertolotti, Francesco\",\n" " \"Year\": 1848,\n" " \"Library\": \"Harvard Risorgimento Preservation Collection\",\n" " \"Language\": \"Italian\",\n" " \"Scene\": \"6,7,8,9,10,11,12\"\n" " }]\n" " },\n" " \"geometry\": {\n" " \"type\": \"Point\",\n" " \"coordinates\": [\n" " 9.185924,\n" " 45.465422\n" " ]\n" " }\n" " },\n" " {\n" " \"type\": \"Feature\",\n" " \"properties\": {\n" " \"name\": \"Milan\",\n" " \"type\": \"Publications\",\n" " \"books\": [{\n" " \"ShortTitle\": \"La pace d'Europa consolidata dalla prodigiosa vittoria conseguita dall'eroica Milano col sangue de'suoi martiri ...\",\n" " \"URLID\": \"b3686504\",\n" " \"Author\": \"Lombroso, Giacomo, 1793-\",\n" " \"Year\": 1848,\n" " \"Library\": \"Harvard Risorgimento Preservation Collection\",\n" " \"Language\": \"Italian\",\n" " \"Scene\": \"6,7,8,9,10,11,12\"\n" " }]\n" " },\n" " \"geometry\": {\n" " \"type\": \"Point\",\n" " \"coordinates\": [\n" " 9.185924,\n" " 45.465422\n" " ]\n" " }\n" " },\n" " {\n" " \"type\": \"Feature\",\n" " \"properties\": {\n" " \"name\": \"Milan\",\n" " \"type\": \"Publications\",\n" " \"books\": [{\n" " \"ShortTitle\": \"Rivoluzione del 1831, ossia, Il Primo anno del pontificato di Gregorio XVI\",\n" " \"URLID\": \"b3687301\",\n" " \"Author\": \"Ortolani, Pietro\",\n" " \"Year\": 1848,\n" " \"Library\": \"Harvard Risorgimento Preservation Collection\",\n" " \"Language\": \"Italian\",\n" " \"Scene\": \"BH\"\n" " }]\n" " },\n" " \"geometry\": {\n" " \"type\": \"Point\",\n" " \"coordinates\": [\n" " 9.185924,\n" " 45.465422\n" " ]\n" " }\n" " },\n" " {\n" " \"type\": \"Feature\",\n" " \"properties\": {\n" " \"name\": \"Milan\",\n" " \"type\": \"Publications\",\n" " \"books\": [{\n" " \"ShortTitle\": \"Lettera di Paolo Bettoni\",\n" " \"URLID\": \"b3687371\",\n" " \"Author\": \"Bettoni, Paolo\",\n" " \"Year\": 1848,\n" " \"Library\": \"Harvard Risorgimento Preservation Collection\",\n" " \"Language\": \"Italian\",\n" " \"Scene\": \"6,7,8,9,10,11,12\"\n" " }]\n" " },\n" " \"geometry\": {\n" " \"type\": \"Point\",\n" " \"coordinates\": [\n" " 9.185924,\n" " 45.465422\n" " ]\n" " }\n" " },\n" " {\n" " \"type\": \"Feature\",\n" " \"properties\": {\n" " \"name\": \"Milan\",\n" " \"type\": \"Publications\",\n" " \"books\": [{\n" " \"ShortTitle\": \"Canti italiani\",\n" " \"URLID\": \"b3687429\",\n" " \"Author\": \"Castellano, Odoardo\",\n" " \"Year\": 1848,\n" " \"Library\": \"Harvard Risorgimento Preservation Collection\",\n" " \"Language\": \"Italian\",\n" " \"Scene\": \"6,7,8,9,10,11,12\"\n" " }]\n" " },\n" " \"geometry\": {\n" " \"type\": \"Point\",\n" " \"coordinates\": [\n" " 9.185924,\n" " 45.465422\n" " ]\n" " }\n" " },\n" " {\n" " \"type\": \"Feature\",\n" " \"properties\": {\n" " \"name\": \"Milan\",\n" " \"type\": \"Publications\",\n" " \"books\": [{\n" " \"ShortTitle\": \"Considerazioni intorno al regime da adottarsi dai popoli della parte orientale dell'alta Italia\",\n" " \"URLID\": \"b3687430\",\n" " \"Author\": \"Castiglioni, Carlo Ottavio, conte, 1784-1849\",\n" " \"Year\": 1848,\n" " \"Library\": \"Harvard Risorgimento Preservation Collection\",\n" " \"Language\": \"Italian\",\n" " \"Scene\": \"BH\"\n" " }]\n" " },\n" " \"geometry\": {\n" " \"type\": \"Point\",\n" " \"coordinates\": [\n" " 9.185924,\n" " 45.465422\n" " ]\n" " }\n" " },\n" " {\n" " \"type\": \"Feature\",\n" " \"properties\": {\n" " \"name\": \"Milan\",\n" " \"type\": \"Publications\",\n" " \"books\": [{\n" " \"ShortTitle\": \"Proposta d'una nuova costituzione democratica\",\n" " \"URLID\": \"b3687496\",\n" " \"Author\": \"Lamennais, Félicité Robert de, 1782-1854\",\n" " \"Year\": 1848,\n" " \"Library\": \"Harvard Risorgimento Preservation Collection\",\n" " \"Language\": \"Italian\",\n" " \"Scene\": \"BH\"\n" " }]\n" " },\n" " \"geometry\": {\n" " \"type\": \"Point\",\n" " \"coordinates\": [\n" " 9.185924,\n" " 45.465422\n" " ]\n" " }\n" " },\n" " {\n" " \"type\": \"Feature\",\n" " \"properties\": {\n" " \"name\": \"Milan\",\n" " \"type\": \"Publications\",\n" " \"books\": [{\n" " \"ShortTitle\": \"Realtà non utopie, ovvero, Del governo\",\n" " \"URLID\": \"b3687504\",\n" " \"Author\": \"Mill, Giacomo; Sismondi, Jean-Charles-Léonard Simonde de, 1773-1842; Ugoni, Filippo\",\n" " \"Year\": 1848,\n" " \"Library\": \"Harvard Risorgimento Preservation Collection\",\n" " \"Language\": \"Italian\",\n" " \"Scene\": \"BH\"\n" " }]\n" " },\n" " \"geometry\": {\n" " \"type\": \"Point\",\n" " \"coordinates\": [\n" " 9.185924,\n" " 45.465422\n" " ]\n" " }\n" " },\n" " {\n" " \"type\": \"Feature\",\n" " \"properties\": {\n" " \"name\": \"Milan\",\n" " \"type\": \"Publications\",\n" " \"books\": [{\n" " \"ShortTitle\": \"Sul primato morale e civile degli italiani di Vincenzo Gioberti\",\n" " \"URLID\": \"b3687524\",\n" " \"Author\": \"Zoncada, Antonio, 1813-1887\",\n" " \"Year\": 1848,\n" " \"Library\": \"Harvard Risorgimento Preservation Collection\",\n" " \"Language\": \"Italian\",\n" " \"Scene\": \"BH\"\n" " }]\n" " },\n" " \"geometry\": {\n" " \"type\": \"Point\",\n" " \"coordinates\": [\n" " 9.185924,\n" " 45.465422\n" " ]\n" " }\n" " },\n" " {\n" " \"type\": \"Feature\",\n" " \"properties\": {\n" " \"name\": \"Milan\",\n" " \"type\": \"Publications\",\n" " \"books\": [{\n" " \"ShortTitle\": \"Relazione officiale delle operazioni militari del generale Allemandi nel Tirolo\",\n" " \"URLID\": \"b3687525\",\n" " \"Author\": \"--\",\n" " \"Year\": 1848,\n" " \"Library\": \"Harvard Risorgimento Preservation Collection\",\n" " \"Language\": \"Italian\",\n" " \"Scene\": \"6,7,8,9,10,11,12\"\n" " }]\n" " },\n" " \"geometry\": {\n" " \"type\": \"Point\",\n" " \"coordinates\": [\n" " 9.185924,\n" " 45.465422\n" " ]\n" " }\n" " },\n" " {\n" " \"type\": \"Feature\",\n" " \"properties\": {\n" " \"name\": \"Milan\",\n" " \"type\": \"Publications\",\n" " \"books\": [{\n" " \"ShortTitle\": \"Legalità del voto d'unione col Piemonte\",\n" " \"URLID\": \"b3687538\",\n" " \"Author\": \"Broglio, Ercole\",\n" " \"Year\": 1848,\n" " \"Library\": \"Harvard Risorgimento Preservation Collection\",\n" " \"Language\": \"Italian\",\n" " \"Scene\": \"BH\"\n" " }]\n" " },\n" " \"geometry\": {\n" " \"type\": \"Point\",\n" " \"coordinates\": [\n" " 9.185924,\n" " 45.465422\n" " ]\n" " }\n" " },\n" " {\n" " \"type\": \"Feature\",\n" " \"properties\": {\n" " \"name\": \"Milan\",\n" " \"type\": \"Publications\",\n" " \"books\": [{\n" " \"ShortTitle\": \"Ai suoi concittadini\",\n" " \"URLID\": \"b3687542\",\n" " \"Author\": \"Belgioioso, Cristina, 1808-1871\",\n" " \"Year\": 1848,\n" " \"Library\": \"Harvard Risorgimento Preservation Collection\",\n" " \"Language\": \"Italian\",\n" " \"Scene\": \"14,15,16,17,18,19,20,21\"\n" " }]\n" " },\n" " \"geometry\": {\n" " \"type\": \"Point\",\n" " \"coordinates\": [\n" " 9.185924,\n" " 45.465422\n" " ]\n" " }\n" " },\n" " {\n" " \"type\": \"Feature\",\n" " \"properties\": {\n" " \"name\": \"Milan\",\n" " \"type\": \"Publications\",\n" " \"books\": [{\n" " \"ShortTitle\": \"Della repubblica in Italia\",\n" " \"URLID\": \"b3687642\",\n" " \"Author\": \"Franceschi Ferrucci, Caterina, 1803-1887\",\n" " \"Year\": 1848,\n" " \"Library\": \"Harvard Risorgimento Preservation Collection\",\n" " \"Language\": \"Italian\",\n" " \"Scene\": \"BH\"\n" " }]\n" " },\n" " \"geometry\": {\n" " \"type\": \"Point\",\n" " \"coordinates\": [\n" " 9.185924,\n" " 45.465422\n" " ]\n" " }\n" " },\n" " {\n" " \"type\": \"Feature\",\n" " \"properties\": {\n" " \"name\": \"Milan\",\n" " \"type\": \"Publications\",\n" " \"books\": [{\n" " \"ShortTitle\": \"Sulle attuali condizioni e speranze della Lombardia e della Venezia\",\n" " \"URLID\": \"b3687659\",\n" " \"Author\": \"Longhi, Antonio\",\n" " \"Year\": 1848,\n" " \"Library\": \"Harvard Risorgimento Preservation Collection\",\n" " \"Language\": \"Italian\",\n" " \"Scene\": \"BH\"\n" " }]\n" " },\n" " \"geometry\": {\n" " \"type\": \"Point\",\n" " \"coordinates\": [\n" " 9.185924,\n" " 45.465422\n" " ]\n" " }\n" " },\n" " {\n" " \"type\": \"Feature\",\n" " \"properties\": {\n" " \"name\": \"Milan\",\n" " \"type\": \"Publications\",\n" " \"books\": [{\n" " \"ShortTitle\": \"L'unione dell'Italia, ossia, Considerazioni sul miglior metodo di costituirla in nazione ...\",\n" " \"URLID\": \"b3687662\",\n" " \"Author\": \"Majocchi, Giovanni Alessandro, -1854\",\n" " \"Year\": 1848,\n" " \"Library\": \"Harvard Risorgimento Preservation Collection\",\n" " \"Language\": \"Italian\",\n" " \"Scene\": \"BH\"\n" " }]\n" " },\n" " \"geometry\": {\n" " \"type\": \"Point\",\n" " \"coordinates\": [\n" " 9.185924,\n" " 45.465422\n" " ]\n" " }\n" " },\n" " {\n" " \"type\": \"Feature\",\n" " \"properties\": {\n" " \"name\": \"Milan\",\n" " \"type\": \"Publications\",\n" " \"books\": [{\n" " \"ShortTitle\": \"L'Italia e il suo governo\",\n" " \"URLID\": \"b3687663\",\n" " \"Author\": \"Mangiagalli, Ambrogio\",\n" " \"Year\": 1848,\n" " \"Library\": \"Harvard Risorgimento Preservation Collection\",\n" " \"Language\": \"Italian\",\n" " \"Scene\": \"BH\"\n" " }]\n" " },\n" " \"geometry\": {\n" " \"type\": \"Point\",\n" " \"coordinates\": [\n" " 9.185924,\n" " 45.465422\n" " ]\n" " }\n" " },\n" " {\n" " \"type\": \"Feature\",\n" " \"properties\": {\n" " \"name\": \"Milan\",\n" " \"type\": \"Publications\",\n" " \"books\": [{\n" " \"ShortTitle\": \"Benedicendosi la nuova bandiera della guardia nazionale di S. Tomaso\",\n" " \"URLID\": \"b3687666\",\n" " \"Author\": \"Mauri, Pietro\",\n" " \"Year\": 1848,\n" " \"Library\": \"Harvard Risorgimento Preservation Collection\",\n" " \"Language\": \"Italian\",\n" " \"Scene\": \"BH\"\n" " }]\n" " },\n" " \"geometry\": {\n" " \"type\": \"Point\",\n" " \"coordinates\": [\n" " 9.185924,\n" " 45.465422\n" " ]\n" " }\n" " },\n" " {\n" " \"type\": \"Feature\",\n" " \"properties\": {\n" " \"name\": \"Milan\",\n" " \"type\": \"Publications\",\n" " \"books\": [{\n" " \"ShortTitle\": \"Agli eroi toscani caduti sui campi di Curtatone e Montanara\",\n" " \"URLID\": \"b3687894\",\n" " \"Author\": \"Tasca, Ottavio, 1795-1872\",\n" " \"Year\": 1848,\n" " \"Library\": \"Harvard Risorgimento Preservation Collection\",\n" " \"Language\": \"Italian\",\n" " \"Scene\": \"6,7,8,9,10,11,12\"\n" " }]\n" " },\n" " \"geometry\": {\n" " \"type\": \"Point\",\n" " \"coordinates\": [\n" " 9.185924,\n" " 45.465422\n" " ]\n" " }\n" " },\n" " {\n" " \"type\": \"Feature\",\n" " \"properties\": {\n" " \"name\": \"Milan\",\n" " \"type\": \"Publications\",\n" " \"books\": [{\n" " \"ShortTitle\": \"Discorso pronunciato alla palestra parlamentaria\",\n" " \"URLID\": \"b3687977\",\n" " \"Author\": \"Marchionni, Giuseppe\",\n" " \"Year\": 1848,\n" " \"Library\": \"Harvard Risorgimento Preservation Collection\",\n" " \"Language\": \"Italian\",\n" " \"Scene\": \"BH\"\n" " }]\n" " },\n" " \"geometry\": {\n" " \"type\": \"Point\",\n" " \"coordinates\": [\n" " 9.185924,\n" " 45.465422\n" " ]\n" " }\n" " },\n" " {\n" " \"type\": \"Feature\",\n" " \"properties\": {\n" " \"name\": \"Milan\",\n" " \"type\": \"Publications\",\n" " \"books\": [{\n" " \"ShortTitle\": \"Le gloriose cinque giornate dei milanesi\",\n" " \"URLID\": \"b3687979\",\n" " \"Author\": \"Baracchi, Francesco\",\n" " \"Year\": 1848,\n" " \"Library\": \"Harvard Risorgimento Preservation Collection\",\n" " \"Language\": \"Italian\",\n" " \"Scene\": \"6,7,8,9,10,11,12\"\n" " }]\n" " },\n" " \"geometry\": {\n" " \"type\": \"Point\",\n" " \"coordinates\": [\n" " 9.185924,\n" " 45.465422\n" " ]\n" " }\n" " },\n" " {\n" " \"type\": \"Feature\",\n" " \"properties\": {\n" " \"name\": \"Milan\",\n" " \"type\": \"Publications\",\n" " \"books\": [{\n" " \"ShortTitle\": \"Della dominazione austriaca in Milano\",\n" " \"URLID\": \"b3687981\",\n" " \"Author\": \"Coppi, Ascanio\",\n" " \"Year\": 1848,\n" " \"Library\": \"Harvard Risorgimento Preservation Collection\",\n" " \"Language\": \"Italian\",\n" " \"Scene\": \"6,7,8,9,10,11,12\"\n" " }]\n" " },\n" " \"geometry\": {\n" " \"type\": \"Point\",\n" " \"coordinates\": [\n" " 9.185924,\n" " 45.465422\n" " ]\n" " }\n" " },\n" " {\n" " \"type\": \"Feature\",\n" " \"properties\": {\n" " \"name\": \"Milan\",\n" " \"type\": \"Publications\",\n" " \"books\": [{\n" " \"ShortTitle\": \"Catechismo lombardo del 22 marzo\",\n" " \"URLID\": \"b3687982\",\n" " \"Author\": \"--\",\n" " \"Year\": 1848,\n" " \"Library\": \"Harvard Risorgimento Preservation Collection\",\n" " \"Language\": \"Italian\",\n" " \"Scene\": \"6,7,8,9,10,11,12\"\n" " }]\n" " },\n" " \"geometry\": {\n" " \"type\": \"Point\",\n" " \"coordinates\": [\n" " 9.185924,\n" " 45.465422\n" " ]\n" " }\n" " },\n" " {\n" " \"type\": \"Feature\",\n" " \"properties\": {\n" " \"name\": \"Milan\",\n" " \"type\": \"Publications\",\n" " \"books\": [{\n" " \"ShortTitle\": \"Una parola declamata al momento sulla piazza di S. Fedele in Milano ... del 29 maggio 1848\",\n" " \"URLID\": \"b3687983\",\n" " \"Author\": \"Arrigoni, Antonio\",\n" " \"Year\": 1848,\n" " \"Library\": \"Harvard Risorgimento Preservation Collection\",\n" " \"Language\": \"Italian\",\n" " \"Scene\": \"6,7,8,9,10,11,12\"\n" " }]\n" " },\n" " \"geometry\": {\n" " \"type\": \"Point\",\n" " \"coordinates\": [\n" " 9.185924,\n" " 45.465422\n" " ]\n" " }\n" " },\n" " {\n" " \"type\": \"Feature\",\n" " \"properties\": {\n" " \"name\": \"Milan\",\n" " \"type\": \"Publications\",\n" " \"books\": [{\n" " \"ShortTitle\": \"Origine progresso e fine della rivoluzione di Milano, nelle cinque giornate di marzo 1848\",\n" " \"URLID\": \"b3687984\",\n" " \"Author\": \"Bianconi, Antonio\",\n" " \"Year\": 1848,\n" " \"Library\": \"Harvard Risorgimento Preservation Collection\",\n" " \"Language\": \"Italian\",\n" " \"Scene\": \"6,7,8,9,10,11,12\"\n" " }]\n" " },\n" " \"geometry\": {\n" " \"type\": \"Point\",\n" " \"coordinates\": [\n" " 9.185924,\n" " 45.465422\n" " ]\n" " }\n" " },\n" " {\n" " \"type\": \"Feature\",\n" " \"properties\": {\n" " \"name\": \"Milan\",\n" " \"type\": \"Publications\",\n" " \"books\": [{\n" " \"ShortTitle\": \"I bravi fratelli lombardi della Brianza negli avvenimenti di maggio 1848\",\n" " \"URLID\": \"b3687985\",\n" " \"Author\": \"Burocco, Luigi\",\n" " \"Year\": 1848,\n" " \"Library\": \"Harvard Risorgimento Preservation Collection\",\n" " \"Language\": \"Italian\",\n" " \"Scene\": \"6,7,8,9,10,11,12\"\n" " }]\n" " },\n" " \"geometry\": {\n" " \"type\": \"Point\",\n" " \"coordinates\": [\n" " 9.185924,\n" " 45.465422\n" " ]\n" " }\n" " },\n" " {\n" " \"type\": \"Feature\",\n" " \"properties\": {\n" " \"name\": \"Milan\",\n" " \"type\": \"Publications\",\n" " \"books\": [{\n" " \"ShortTitle\": \"La sollevazione di Milano\",\n" " \"URLID\": \"b3687986\",\n" " \"Author\": \"Cantù, Cesare, 1804-1895\",\n" " \"Year\": 1848,\n" " \"Library\": \"Harvard Risorgimento Preservation Collection\",\n" " \"Language\": \"Italian\",\n" " \"Scene\": \"6,7,8,9,10,11,12\"\n" " }]\n" " },\n" " \"geometry\": {\n" " \"type\": \"Point\",\n" " \"coordinates\": [\n" " 9.185924,\n" " 45.465422\n" " ]\n" " }\n" " },\n" " {\n" " \"type\": \"Feature\",\n" " \"properties\": {\n" " \"name\": \"Milan\",\n" " \"type\": \"Publications\",\n" " \"books\": [{\n" " \"ShortTitle\": \"Discorso morale sulla rivoluzione di Milano\",\n" " \"URLID\": \"b3687988\",\n" " \"Author\": \"Lega, Giovanni\",\n" " \"Year\": 1848,\n" " \"Library\": \"Harvard Risorgimento Preservation Collection\",\n" " \"Language\": \"Italian\",\n" " \"Scene\": \"6,7,8,9,10,11,12\"\n" " }]\n" " },\n" " \"geometry\": {\n" " \"type\": \"Point\",\n" " \"coordinates\": [\n" " 9.185924,\n" " 45.465422\n" " ]\n" " }\n" " },\n" " {\n" " \"type\": \"Feature\",\n" " \"properties\": {\n" " \"name\": \"Milan\",\n" " \"type\": \"Publications\",\n" " \"books\": [{\n" " \"ShortTitle\": \"La controrivoluzione tentata in Milano il 29 maggio\",\n" " \"URLID\": \"b3687990\",\n" " \"Author\": \"Piacentini, Giovanni, 1822-1885\",\n" " \"Year\": 1848,\n" " \"Library\": \"Harvard Risorgimento Preservation Collection\",\n" " \"Language\": \"Italian\",\n" " \"Scene\": \"6,7,8,9,10,11,12\"\n" " }]\n" " },\n" " \"geometry\": {\n" " \"type\": \"Point\",\n" " \"coordinates\": [\n" " 9.185924,\n" " 45.465422\n" " ]\n" " }\n" " },\n" " {\n" " \"type\": \"Feature\",\n" " \"properties\": {\n" " \"name\": \"Milan\",\n" " \"type\": \"Publications\",\n" " \"books\": [{\n" " \"ShortTitle\": \"Il marzo 1848\",\n" " \"URLID\": \"b3687991\",\n" " \"Author\": \"Rajberti, Giovanni, 1805-1861\",\n" " \"Year\": 1848,\n" " \"Library\": \"Harvard Risorgimento Preservation Collection\",\n" " \"Language\": \"Italian\",\n" " \"Scene\": \"6,7,8,9,10,11,12\"\n" " }]\n" " },\n" " \"geometry\": {\n" " \"type\": \"Point\",\n" " \"coordinates\": [\n" " 9.185924,\n" " 45.465422\n" " ]\n" " }\n" " },\n" " {\n" " \"type\": \"Feature\",\n" " \"properties\": {\n" " \"name\": \"Milan\",\n" " \"type\": \"Publications\",\n" " \"books\": [{\n" " \"ShortTitle\": \"Le vittoriose gesta della eroica gioventù milanese\",\n" " \"URLID\": \"b3687992\",\n" " \"Author\": \"Rossi, Antonio\",\n" " \"Year\": 1848,\n" " \"Library\": \"Harvard Risorgimento Preservation Collection\",\n" " \"Language\": \"Italian\",\n" " \"Scene\": \"6,7,8,9,10,11,12\"\n" " }]\n" " },\n" " \"geometry\": {\n" " \"type\": \"Point\",\n" " \"coordinates\": [\n" " 9.185924,\n" " 45.465422\n" " ]\n" " }\n" " },\n" " {\n" " \"type\": \"Feature\",\n" " \"properties\": {\n" " \"name\": \"Milan\",\n" " \"type\": \"Publications\",\n" " \"books\": [{\n" " \"ShortTitle\": \"Morti nelle cinque gloriose giornate di marzo\",\n" " \"URLID\": \"b3687997\",\n" " \"Author\": \"--\",\n" " \"Year\": 1848,\n" " \"Library\": \"Harvard Risorgimento Preservation Collection\",\n" " \"Language\": \"Italian\",\n" " \"Scene\": \"6,7,8,9,10,11,12\"\n" " }]\n" " },\n" " \"geometry\": {\n" " \"type\": \"Point\",\n" " \"coordinates\": [\n" " 9.185924,\n" " 45.465422\n" " ]\n" " }\n" " },\n" " {\n" " \"type\": \"Feature\",\n" " \"properties\": {\n" " \"name\": \"Milan\",\n" " \"type\": \"Publications\",\n" " \"books\": [{\n" " \"ShortTitle\": \"Milano dopo la rivoluzione\",\n" " \"URLID\": \"b3688009\",\n" " \"Author\": \"Torelli, Giuseppe, 1817-1866\",\n" " \"Year\": 1848,\n" " \"Library\": \"Harvard Risorgimento Preservation Collection\",\n" " \"Language\": \"Italian\",\n" " \"Scene\": \"6,7,8,9,10,11,12\"\n" " }]\n" " },\n" " \"geometry\": {\n" " \"type\": \"Point\",\n" " \"coordinates\": [\n" " 9.185924,\n" " 45.465422\n" " ]\n" " }\n" " },\n" " {\n" " \"type\": \"Feature\",\n" " \"properties\": {\n" " \"name\": \"Milan\",\n" " \"type\": \"Publications\",\n" " \"books\": [{\n" " \"ShortTitle\": \"Strane avventure occorse ad un poeta di teatro nelle cinque memorabili giornate del marzo 1848\",\n" " \"URLID\": \"b3688010\",\n" " \"Author\": \"Bassi, Calisto\",\n" " \"Year\": 1848,\n" " \"Library\": \"Harvard Risorgimento Preservation Collection\",\n" " \"Language\": \"Italian\",\n" " \"Scene\": \"6,7,8,9,10,11,12\"\n" " }]\n" " },\n" " \"geometry\": {\n" " \"type\": \"Point\",\n" " \"coordinates\": [\n" " 9.185924,\n" " 45.465422\n" " ]\n" " }\n" " },\n" " {\n" " \"type\": \"Feature\",\n" " \"properties\": {\n" " \"name\": \"Milan\",\n" " \"type\": \"Publications\",\n" " \"books\": [{\n" " \"ShortTitle\": \"Alcuni fatti delle cinque gloriose giornate\",\n" " \"URLID\": \"b3688015\",\n" " \"Author\": \"Osio, Carlo\",\n" " \"Year\": 1848,\n" " \"Library\": \"Harvard Risorgimento Preservation Collection\",\n" " \"Language\": \"Italian\",\n" " \"Scene\": \"6,7,8,9,10,11,12\"\n" " }]\n" " },\n" " \"geometry\": {\n" " \"type\": \"Point\",\n" " \"coordinates\": [\n" " 9.185924,\n" " 45.465422\n" " ]\n" " }\n" " },\n" " {\n" " \"type\": \"Feature\",\n" " \"properties\": {\n" " \"name\": \"Milan\",\n" " \"type\": \"Publications\",\n" " \"books\": [{\n" " \"ShortTitle\": \"A Radetzki\",\n" " \"URLID\": \"b3688019\",\n" " \"Author\": \"Radetzky von Radetz, Johann Joseph Wenzel, Graf, 1766-1858\",\n" " \"Year\": 1848,\n" " \"Library\": \"Harvard Risorgimento Preservation Collection\",\n" " \"Language\": \"Italian\",\n" " \"Scene\": 6\n" " }]\n" " },\n" " \"geometry\": {\n" " \"type\": \"Point\",\n" " \"coordinates\": [\n" " 9.185924,\n" " 45.465422\n" " ]\n" " }\n" " },\n" " {\n" " \"type\": \"Feature\",\n" " \"properties\": {\n" " \"name\": \"Milan\",\n" " \"type\": \"Publications\",\n" " \"books\": [{\n" " \"ShortTitle\": \"Due parole di osservazione sul Bollettino storico della rivoluzione di Milano di marzo 1848\",\n" " \"URLID\": \"b3688020\",\n" " \"Author\": \"Altro Cittadino\",\n" " \"Year\": 1848,\n" " \"Library\": \"Harvard Risorgimento Preservation Collection\",\n" " \"Language\": \"Italian\",\n" " \"Scene\": \"6,7,8,9,10,11,12\"\n" " }]\n" " },\n" " \"geometry\": {\n" " \"type\": \"Point\",\n" " \"coordinates\": [\n" " 9.185924,\n" " 45.465422\n" " ]\n" " }\n" " },\n" " {\n" " \"type\": \"Feature\",\n" " \"properties\": {\n" " \"name\": \"Milan\",\n" " \"type\": \"Publications\",\n" " \"books\": [{\n" " \"ShortTitle\": \"Teoria militare adottata per la Guardia nazionale lombarda\",\n" " \"URLID\": \"b3688449\",\n" " \"Author\": \"--\",\n" " \"Year\": 1848,\n" " \"Library\": \"Harvard Risorgimento Preservation Collection\",\n" " \"Language\": \"Italian\",\n" " \"Scene\": \"BH\"\n" " }]\n" " },\n" " \"geometry\": {\n" " \"type\": \"Point\",\n" " \"coordinates\": [\n" " 9.185924,\n" " 45.465422\n" " ]\n" " }\n" " },\n" " {\n" " \"type\": \"Feature\",\n" " \"properties\": {\n" " \"name\": \"Milan\",\n" " \"type\": \"Publications\",\n" " \"books\": [{\n" " \"ShortTitle\": \"Sulle attuali politiche condizioni dell'Italia e sul modo di provvedere al governo futuro della Lombardia, della Venezia ... Parma, Piacenza e Modena\",\n" " \"URLID\": \"b3688464\",\n" " \"Author\": \"Nagalli De'Grigioni, G\",\n" " \"Year\": 1848,\n" " \"Library\": \"Harvard Risorgimento Preservation Collection\",\n" " \"Language\": \"Italian\",\n" " \"Scene\": \"BH\"\n" " }]\n" " },\n" " \"geometry\": {\n" " \"type\": \"Point\",\n" " \"coordinates\": [\n" " 9.185924,\n" " 45.465422\n" " ]\n" " }\n" " },\n" " {\n" " \"type\": \"Feature\",\n" " \"properties\": {\n" " \"name\": \"Milan\",\n" " \"type\": \"Publications\",\n" " \"books\": [{\n" " \"ShortTitle\": \"Sulla convenzione di Durando a Vicenza dell'11 giugno 1848\",\n" " \"URLID\": \"b3688479\",\n" " \"Author\": \"Tecchio, Sebastiano, 1807-1886\",\n" " \"Year\": 1848,\n" " \"Library\": \"Harvard Risorgimento Preservation Collection\",\n" " \"Language\": \"Italian\",\n" " \"Scene\": \"BH\"\n" " }]\n" " },\n" " \"geometry\": {\n" " \"type\": \"Point\",\n" " \"coordinates\": [\n" " 9.185924,\n" " 45.465422\n" " ]\n" " }\n" " },\n" " {\n" " \"type\": \"Feature\",\n" " \"properties\": {\n" " \"name\": \"Milan\",\n" " \"type\": \"Publications\",\n" " \"books\": [{\n" " \"ShortTitle\": \"Ai Milanesi\",\n" " \"URLID\": \"b3688532\",\n" " \"Author\": \"Bettoni, Paolo\",\n" " \"Year\": 1848,\n" " \"Library\": \"Harvard Risorgimento Preservation Collection\",\n" " \"Language\": \"Italian\",\n" " \"Scene\": \"BH\"\n" " }]\n" " },\n" " \"geometry\": {\n" " \"type\": \"Point\",\n" " \"coordinates\": [\n" " 9.185924,\n" " 45.465422\n" " ]\n" " }\n" " },\n" " {\n" " \"type\": \"Feature\",\n" " \"properties\": {\n" " \"name\": \"Milan\",\n" " \"type\": \"Publications\",\n" " \"books\": [{\n" " \"ShortTitle\": \"Della migliore legge elettorale provvisoria\",\n" " \"URLID\": \"b3688535\",\n" " \"Author\": \"Paladini, Cesare\",\n" " \"Year\": 1848,\n" " \"Library\": \"Harvard Risorgimento Preservation Collection\",\n" " \"Language\": \"Italian\",\n" " \"Scene\": \"BH\"\n" " }]\n" " },\n" " \"geometry\": {\n" " \"type\": \"Point\",\n" " \"coordinates\": [\n" " 9.185924,\n" " 45.465422\n" " ]\n" " }\n" " },\n" " {\n" " \"type\": \"Feature\",\n" " \"properties\": {\n" " \"name\": \"Milan\",\n" " \"type\": \"Publications\",\n" " \"books\": [{\n" " \"ShortTitle\": \"Omelia recitata dall'arcivescovo di Milano nel dì di Pasqua 1848\",\n" " \"URLID\": \"b3688545\",\n" " \"Author\": \"Romilli, Bartolomeo Carlo\",\n" " \"Year\": 1848,\n" " \"Library\": \"Harvard Risorgimento Preservation Collection\",\n" " \"Language\": \"Italian\",\n" " \"Scene\": \"BH\"\n" " }]\n" " },\n" " \"geometry\": {\n" " \"type\": \"Point\",\n" " \"coordinates\": [\n" " 9.185924,\n" " 45.465422\n" " ]\n" " }\n" " },\n" " {\n" "\"type\": \"location\",\n" " \"type\": \"Feature\",\n" " \"properties\": {\n" " \"name\": \"Milan\",\n" " \"type\": \"Publications\",\n" " \"books\": [{\n" " \"ShortTitle\": \"Il vero repubblicano tratto dal sistema monarchico, ossia, Il Politico austriaco smascherato\",\n" " \"URLID\": \"b3688546\",\n" " \"Author\": \"Corneliani, Giuseppe, 1797-1855\",\n" " \"Year\": 1848,\n" " \"Library\": \"Harvard Risorgimento Preservation Collection\",\n" " \"Language\": \"Italian\",\n" " \"Scene\": \"BH\"\n" " }]\n" " },\n" " \"geometry\": {\n" " \"type\": \"Point\",\n" " \"coordinates\": [\n" " 9.185924,\n" " 45.465422\n" " ]\n" " }\n" " },\n" " {\n" " \"type\": \"Feature\",\n" " \"properties\": {\n" " \"name\": \"Milan\",\n" " \"type\": \"Publications\",\n" " \"books\": [{\n" " \"ShortTitle\": \"Pel giorno dell'invenzione di S. Croce 1848\",\n" " \"URLID\": \"b3688551\",\n" " \"Author\": \"Gualzetti, Giovanni Battista\",\n" " \"Year\": 1848,\n" " \"Library\": \"Harvard Risorgimento Preservation Collection\",\n" " \"Language\": \"Italian\",\n" " \"Scene\": \"BH\"\n" " }]\n" " },\n" " \"geometry\": {\n" " \"type\": \"Point\",\n" " \"coordinates\": [\n" " 9.185924,\n" " 45.465422\n" " ]\n" " }\n" " },\n" " {\n" " \"type\": \"Feature\",\n" " \"properties\": {\n" " \"name\": \"Milan\",\n" " \"type\": \"Publications\",\n" " \"books\": [{\n" " \"ShortTitle\": \"Sul voto proposto ai Lombardi col decreto del governo provvisorio centrale del 12 maggio 1848\",\n" " \"URLID\": \"b3688556\",\n" " \"Author\": \"Possenti, Carlo, 1806-1872\",\n" " \"Year\": 1848,\n" " \"Library\": \"Harvard Risorgimento Preservation Collection\",\n" " \"Language\": \"Italian\",\n" " \"Scene\": \"BH\"\n" " }]\n" " },\n" " \"geometry\": {\n" " \"type\": \"Point\",\n" " \"coordinates\": [\n" " 9.185924,\n" " 45.465422\n" " ]\n" " }\n" " },\n" " {\n" " \"type\": \"Feature\",\n" " \"properties\": {\n" " \"name\": \"Milan\",\n" " \"type\": \"Publications\",\n" " \"books\": [{\n" " \"ShortTitle\": \"Atti ufficiali e proteste relative alla dedizione della provincia bergamasca\",\n" " \"URLID\": \"b3688558\",\n" " \"Author\": \"Congregazione provinciale di Bergamo\",\n" " \"Year\": 1848,\n" " \"Library\": \"Harvard Risorgimento Preservation Collection\",\n" " \"Language\": \"Italian\",\n" " \"Scene\": \"6,7,8,9,10,11,12\"\n" " }]\n" " },\n" " \"geometry\": {\n" " \"type\": \"Point\",\n" " \"coordinates\": [\n" " 9.185924,\n" " 45.465422\n" " ]\n" " }\n" " },\n" " {\n" " \"type\": \"Feature\",\n" " \"properties\": {\n" " \"name\": \"Milan\",\n" " \"type\": \"Publications\",\n" " \"books\": [{\n" " \"ShortTitle\": \"Il Governo provvisorio centrale della Lombardia alle nazioni d'Europa\",\n" " \"URLID\": \"b3688561\",\n" " \"Author\": \"--\",\n" " \"Year\": 1848,\n" " \"Library\": \"Harvard Risorgimento Preservation Collection\",\n" " \"Language\": \"Italian\",\n" " \"Scene\": \"BH\"\n" " }]\n" " },\n" " \"geometry\": {\n" " \"type\": \"Point\",\n" " \"coordinates\": [\n" " 9.185924,\n" " 45.465422\n" " ]\n" " }\n" " },\n" " {\n" " \"type\": \"Feature\",\n" " \"properties\": {\n" " \"name\": \"Milan\",\n" " \"type\": \"Publications\",\n" " \"books\": [{\n" " \"ShortTitle\": \"Lista delle contribuenti alla bandiera offerta dalle donne milanesi al prode esercito ligure-piemontese ed al suo generoso duce\",\n" " \"URLID\": \"b3688564\",\n" " \"Author\": \"--\",\n" " \"Year\": 1848,\n" " \"Library\": \"Harvard Risorgimento Preservation Collection\",\n" " \"Language\": \"Italian\",\n" " \"Scene\": \"BH\"\n" " }]\n" " },\n" " \"geometry\": {\n" " \"type\": \"Point\",\n" " \"coordinates\": [\n" " 9.185924,\n" " 45.465422\n" " ]\n" " }\n" " },\n" " {\n" " \"type\": \"Feature\",\n" " \"properties\": {\n" " \"name\": \"Milan\",\n" " \"type\": \"Publications\",\n" " \"books\": [{\n" " \"ShortTitle\": \"Per la presa di Peschiera\",\n" " \"URLID\": \"b3688608\",\n" " \"Author\": \"Schizzi, Folchino, conte, active 1825\",\n" " \"Year\": 1848,\n" " \"Library\": \"Harvard Risorgimento Preservation Collection\",\n" " \"Language\": \"Italian\",\n" " \"Scene\": 6\n" " }]\n" " },\n" " \"geometry\": {\n" " \"type\": \"Point\",\n" " \"coordinates\": [\n" " 9.185924,\n" " 45.465422\n" " ]\n" " }\n" " },\n" " {\n" " \"type\": \"Feature\",\n" " \"properties\": {\n" " \"name\": \"Milan\",\n" " \"type\": \"Publications\",\n" " \"books\": [{\n" " \"ShortTitle\": \"Per la resa di Peschiera il cittadino Bertolotti al sig.r Casati, presidente del governo provvisorio, dedica\",\n" " \"URLID\": \"b3688624\",\n" " \"Author\": \"Bertolotti, Francesco\",\n" " \"Year\": 1848,\n" " \"Library\": \"Harvard Risorgimento Preservation Collection\",\n" " \"Language\": \"Italian\",\n" " \"Scene\": 6\n" " }]\n" " },\n" " \"geometry\": {\n" " \"type\": \"Point\",\n" " \"coordinates\": [\n" " 9.185924,\n" " 45.465422\n" " ]\n" " }\n" " },\n" " {\n" " \"type\": \"Feature\",\n" " \"properties\": {\n" " \"name\": \"Milan\",\n" " \"type\": \"Publications\",\n" " \"books\": [{\n" " \"ShortTitle\": \"Venezia e le città venete nella primavera del 1848\",\n" " \"URLID\": \"b3688627\",\n" " \"Author\": \"Cusani, Francesco, 1802-1879\",\n" " \"Year\": 1848,\n" " \"Library\": \"Harvard Risorgimento Preservation Collection\",\n" " \"Language\": \"Italian\",\n" " \"Scene\": \"BH\"\n" " }]\n" " },\n" " \"geometry\": {\n" " \"type\": \"Point\",\n" " \"coordinates\": [\n" " 9.185924,\n" " 45.465422\n" " ]\n" " }\n" " },\n" " {\n" " \"type\": \"Feature\",\n" " \"properties\": {\n" " \"name\": \"Milan\",\n" " \"type\": \"Publications\",\n" " \"books\": [{\n" " \"ShortTitle\": \"Maria Luigia e Francesco Primo, alle tombe dei Cappuccini, ossia, Quadro sinottico degli ultimi avvenimenti in Italia\",\n" " \"URLID\": \"b3688635\",\n" " \"Author\": \"Tasca, Ottavio, 1795-1872\",\n" " \"Year\": 1848,\n" " \"Library\": \"Harvard Risorgimento Preservation Collection\",\n" " \"Language\": \"Italian\",\n" " \"Scene\": \"BH\"\n" " }]\n" " },\n" " \"geometry\": {\n" " \"type\": \"Point\",\n" " \"coordinates\": [\n" " 9.185924,\n" " 45.465422\n" " ]\n" " }\n" " },\n" " {\n" " \"type\": \"Feature\",\n" " \"properties\": {\n" " \"name\": \"Milan\",\n" " \"type\": \"Publications\",\n" " \"books\": [{\n" " \"ShortTitle\": \"Tommaseo e Manin\",\n" " \"URLID\": \"b3688774\",\n" " \"Author\": \"Seismit-Doda, Federico, 1825-1893\",\n" " \"Year\": 1848,\n" " \"Library\": \"Harvard Risorgimento Preservation Collection\",\n" " \"Language\": \"Italian\",\n" " \"Scene\": \"BH\"\n" " }]\n" " },\n" " \"geometry\": {\n" " \"type\": \"Point\",\n" " \"coordinates\": [\n" " 9.185924,\n" " 45.465422\n" " ]\n" " }\n" " },\n" " {\n" " \"type\": \"Feature\",\n" " \"properties\": {\n" " \"name\": \"Milan\",\n" " \"type\": \"Publications\",\n" " \"books\": [{\n" " \"ShortTitle\": \"Pio IX il più grande degli uomini, o, Cause genuine dell'allocuzione del 29 aprile 1848\",\n" " \"URLID\": \"b3689562\",\n" " \"Author\": \"Cantù, Ignazio, 1810-1877\",\n" " \"Year\": 1848,\n" " \"Library\": \"Harvard Risorgimento Preservation Collection\",\n" " \"Language\": \"Italian\",\n" " \"Scene\": 5\n" " }]\n" " },\n" " \"geometry\": {\n" " \"type\": \"Point\",\n" " \"coordinates\": [\n" " 9.185924,\n" " 45.465422\n" " ]\n" " }\n" " },\n" " {\n" " \"type\": \"Feature\",\n" " \"properties\": {\n" " \"name\": \"Milan\",\n" " \"type\": \"Publications\",\n" " \"books\": [{\n" " \"ShortTitle\": \"Azioni generose del popolo milanese nei cinque giorni della rivoluzione\",\n" " \"URLID\": \"b3693145\",\n" " \"Author\": \"--\",\n" " \"Year\": 1848,\n" " \"Library\": \"Harvard Risorgimento Preservation Collection\",\n" " \"Language\": \"Italian\",\n" " \"Scene\": \"6,7,8,9,10,11,12\"\n" " }]\n" " },\n" " \"geometry\": {\n" " \"type\": \"Point\",\n" " \"coordinates\": [\n" " 9.185924,\n" " 45.465422\n" " ]\n" " }\n" " },\n" " {\n" " \"type\": \"Feature\",\n" " \"properties\": {\n" " \"name\": \"Milan\",\n" " \"type\": \"Publications\",\n" " \"books\": [{\n" " \"ShortTitle\": \"L'Italia discentrica ed una, o sia, Della trasformazione che dovrebbero subire le capitali provinciali\",\n" " \"URLID\": \"b3693265\",\n" " \"Author\": \"P, Cesare\",\n" " \"Year\": 1848,\n" " \"Library\": \"Harvard Risorgimento Preservation Collection\",\n" " \"Language\": \"Italian\",\n" " \"Scene\": 5\n" " }]\n" " },\n" " \"geometry\": {\n" " \"type\": \"Point\",\n" " \"coordinates\": [\n" " 9.185924,\n" " 45.465422\n" " ]\n" " }\n" " },\n" " {\n" " \"type\": \"Feature\",\n" " \"properties\": {\n" " \"name\": \"Milan\",\n" " \"type\": \"Publications\",\n" " \"books\": [{\n" " \"ShortTitle\": \"Notificazione\",\n" " \"URLID\": \"b3693364\",\n" " \"Author\": \"Lombardo-Venetian Kingdom\",\n" " \"Year\": 1848,\n" " \"Library\": \"Harvard Risorgimento Preservation Collection\",\n" " \"Language\": \"Italian\",\n" " \"Scene\": \"BH\"\n" " }]\n" " },\n" " \"geometry\": {\n" " \"type\": \"Point\",\n" " \"coordinates\": [\n" " 9.185924,\n" " 45.465422\n" " ]\n" " }\n" " },\n" " {\n" " \"type\": \"Feature\",\n" " \"properties\": {\n" " \"name\": \"Milan\",\n" " \"type\": \"Publications\",\n" " \"books\": [{\n" " \"ShortTitle\": \"La costituzione secondo la giustizia sociale\",\n" " \"URLID\": \"b3683762\",\n" " \"Author\": \"Rosmini, Antonio, 1797-1855\",\n" " \"Year\": 1849,\n" " \"Library\": \"Harvard Risorgimento Preservation Collection\",\n" " \"Language\": \"Italian\",\n" " \"Scene\": \"BH\"\n" " }]\n" " },\n" " \"geometry\": {\n" " \"type\": \"Point\",\n" " \"coordinates\": [\n" " 9.185924,\n" " 45.465422\n" " ]\n" " }\n" " },\n" " {\n" " \"type\": \"Feature\",\n" " \"properties\": {\n" " \"name\": \"Milan\",\n" " \"type\": \"Publications\",\n" " \"books\": [{\n" " \"ShortTitle\": \"Un Documento del 1834\",\n" " ") matches = re.finditer(regex, test_str, re.MULTILINE) for matchNum, match in enumerate(matches, start=1): print ("Match {matchNum} was found at {start}-{end}: {match}".format(matchNum = matchNum, start = match.start(), end = match.end(), match = match.group())) for groupNum in range(0, len(match.groups())): groupNum = groupNum + 1 print ("Group {groupNum} found at {start}-{end}: {group}".format(groupNum = groupNum, start = match.start(groupNum), end = match.end(groupNum), group = match.group(groupNum))) # Note: for Python 2.7 compatibility, use ur"" to prefix the regex and u"" to prefix the test string and substitution.

Please keep in mind that these code samples are automatically generated and are not guaranteed to work. If you find any syntax errors, feel free to submit a bug report. For a full regex reference for Python, please visit: https://docs.python.org/3/library/re.html