Ejemplo n.º 1
0
LV5.1	The Bonnie Hoose o Airlie			Scots	Jeannie Robertson	Hamish Henderson & Jean Ritchie	1952	School of Scottish Studies Sound Archive, SA1952.043.A10	Airlie, Angus			794	233	199		6 verses.	murder; castle; arson	http://www.tobarandualchais.co.uk/fullrecord/49656/1	 	
LV6.1	The Laird o Drum			Scots	Jeannie Robertson	Hamish Henderson & Jean Ritchie	1962.05	School of Scottish Studies Sound Archive, SA1962.013.A11	Drum Castle, Drumoak, Aberdeenshire			247	835	236		Fragment only.	marriage; social class	http://www.tobarandualchais.co.uk/fullrecord/23305/1	 	[Yes]
LV7.1	The Cauld Water Well			Scots / English	Hamish Robb	Local Voices	2013.08.24	Local Voices Sound Archive [local ref]	Dundee							No other source known. Also recorded but with fewer verses on Local Voices Sound Archive refs [refs.]	wishing well; river			
"""

# Falkirk Fair (LV1.1)

version = Version()
version.lv_id = "LV1.1"
version.title = "Falkirk Fair"
version.language = "Scots"
version.singer = singer_ids[0] # Rab Morrison
version.collector = "Hamish Henderson"
version.collected_date = "1962-05"
version.source = "School of Scottish Studies Sound Archive, SA1962.016.A9"
version.add_location(name="Falkirk")
version.add_reference("ROUD", "10368")
version.comments = "Fragments only"
version.tags = ["bothy", "farm", "bawdy"]
version.media_url = "http://www.tobarandualchais.co.uk/fullrecord/23006/1"
# version.lyrics = ""
# version.photo_url = ""
version.song = song_ids[0]
version.save(host=settings.ELASTIC_SEARCH_HOST, index=settings.ELASTIC_SEARCH_DB, refresh=True)
version_ids.append(version.id)

# Falkirk Fair (LV1.2)

version = Version()
version.lv_id = "LV1.2"
version.title = "Falkirk Fair"
Ejemplo n.º 2
0
     version.collector = collector
 
 cdate = _normalise(row[26])
 if cdate is not None:
     cdate = cdate.replace(".", "-")
     version.collected_date = cdate
 
 vsource = _normalise(row[27])
 if vsource is not None:
     version.source = vsource
 
 loc1p = _normalise(row[28])
 loc1lat = _normalise(row[29])
 loc1lon = _normalise(row[30])
 if loc1p is not None or loc1lat is not None or loc1lon is not None:
     version.add_location(relation="main", lat=loc1lat, lon=loc1lon, name=loc1p)
 
 loc2p = _normalise(row[31])
 loc2lat = _normalise(row[32])
 loc2lon = _normalise(row[33])
 if loc2p is not None or loc2lat is not None or loc2lon is not None:
     version.add_location(lat=loc2lat, lon=loc2lon, name=loc2p)
 
 loc3p = _normalise(row[34])
 loc3lat = _normalise(row[35])
 loc3lon = _normalise(row[36])
 if loc3p is not None or loc3lat is not None or loc3lon is not None:
     version.add_location(lat=loc3lat, lon=loc3lon, name=loc3p)
 
 roud = _normalise(row[37])
 if roud is not None: