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
| <html> | |
| <head> | |
| <link rel="stylesheet" href="https://openlayers.org/en/v4.6.4/css/ol.css" type="text/css"> | |
| <style> | |
| #above, #below { | |
| position:absolute; | |
| top:0; | |
| left:0; | |
| width:640px; | |
| height:480px; |
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
| // Trait that adds the 'computeSum' method | |
| trait HasSum { | |
| val a: Int | |
| val b: Int | |
| def computeSum() = a + b | |
| } |
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
| { | |
| "features": [{ | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [-3.606772, | |
| 39.460299 | |
| ] | |
| }, | |
| "type": "Feature", | |
| "id": "darmc-location-20192", |
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
| @prefix cnt: <http://www.w3.org/2011/content#> . | |
| @prefix dcterms: <http://purl.org/dc/terms/> . | |
| @prefix foaf: <http://xmlns.com/foaf/0.1/> . | |
| @prefix oa: <http://www.w3.org/ns/oa#> . | |
| @prefix pelagios: <http://pelagios.github.io/vocab/terms#> . | |
| @prefix relations: <http://pelagios.github.io/vocab/relations#> . | |
| @prefix xsd: <http://www.w3.org/2001/XMLSchema> . | |
| # Any custom vocab terms that might be needed |
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
| @prefix : <http://my-domain.org/my-data/> . | |
| @prefix void: <http://rdfs.org/ns/void#> . | |
| @prefix dcterms: <http://purl.org/dc/terms/> . | |
| @prefix foaf: <http://xmlns.com/foaf/0.1/> . | |
| <https://github.com/kgeographer/topotime/hroutes> a void:Dataset; | |
| # MANDATORY | |
| dcterms:title "Historical Routes from Topotime"; | |
| # OPTIONAL |
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
| { | |
| "bbox": [ | |
| 16.8224041, | |
| 42.7657037, | |
| 16.8224041, | |
| 42.7657037 | |
| ], | |
| "connectsWith": [ | |
| "1004" | |
| ], |
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
| <html> | |
| <head> | |
| <title>Annotorious OpenSeadragon Test Page</title> | |
| <script src="openseadragon/openseadragon.min.js"></script> | |
| <link rel="stylesheet" type="text/css" href="../../css/theme-dark/annotorious-dark.css" /> | |
| <script type="text/javascript" src="http://localhost:9810/compile?id=annotorious"></script> | |
| <script type="text/javascript"> | |
| annotorious.plugin.HelloWorldPlugin = function(opt_config_options) { } | |
| annotorious.plugin.HelloWorldPlugin.prototype.initPlugin = function(anno) { |
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
| { | |
| "size" : 0, | |
| "aggs" : { | |
| "is_conflation_of" : { | |
| "nested" : { | |
| "path" : "is_conflation_of" | |
| }, | |
| "aggs" : { | |
| "source_gazetteer" : { | |
| "terms" : { "field" : "is_conflation_of.source_gazetteer" } |
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
| { | |
| "size" : 5, | |
| "query" : { | |
| "nested" : { | |
| "path" : "is_conflation_of.names", | |
| "query" : { | |
| "match" : { "is_conflation_of.names.name": "athens" } | |
| } | |
| } | |
| } |
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
| { | |
| "size" : 5, | |
| "query" : { | |
| "nested" : { | |
| "path" : "is_conflation_of", | |
| "query" : { | |
| "bool": { | |
| "should": [ | |
| { "match" : { "is_conflation_of.title": "athenae" } }, | |
| { |