This file contains hidden or 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
<?xml version="1.0" encoding="utf-8"?> | |
<kml xmlns="http://www.opengis.net/kml/2.2"> | |
<Document> | |
<ExtendedData xmlns:dc="http://purl.org/dc/elements/1.1/"> | |
<dc:description> | |
This dataset contains data about publications related to the Limes grouped by the place in the Limes they relate to. | |
The main purpose is the display within the DARIAH Geo-browser, a tool to visualize data in time and space. | |
</dc:description> | |
<dc:subject>Archaeology, geo-date, Limes</dc:subject> | |
<dc:identifier>http://de.digitalclassicist.org/berlin/files/output.kml</dc:identifier> |
This file contains hidden or 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 json | |
import urllib | |
import urllib2 | |
import sys | |
import codecs | |
""" | |
Author: Matteo Romanello, <[email protected]> | |
""" |
This file contains hidden or 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
from oaipmh.client import Client | |
from oaipmh.metadata import MetadataRegistry, oai_dc_reader | |
zenon_URL = "http://opac.dainst.org/OAI" | |
dai_URL = "http://arachne.uni-koeln.de:8080/OAI-PMH/oai-pmh.xml" | |
oc_URL="http://opencontext.org/oai/request" | |
registry = MetadataRegistry() | |
registry.registerReader('oai_dc', oai_dc_reader) | |
client = Client(oc_URL, registry) |
NewerOlder