CINXE.COM

LOD Cloud

<!doctype html> <html lang="en"> <head> <meta charset="utf-8"> <title>LOD Cloud</title> <base href="/"> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="icon" type="image/x-icon" href="favicon.ico"> <link href="https://fonts.googleapis.com/css?family=Lato:300,400,700,300italic,400italic,700italic" rel="stylesheet" type="text/css"> <link href="https://fonts.googleapis.com/css?family=Josefin+Sans" rel="stylesheet"> <link href="https://cdn.jsdelivr.net/npm/bootstrap@3.3.7/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous"> <link rel="stylesheet" href="/css/tags-input.css"> <link href="/css/app.css" rel="stylesheet"> <script src="/tags-input.js"></script> </head> <body> <nav class="navbar"> <div class="container"> <div class="navbar-header"> <button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false" aria-controls="navbar"> <span class="sr-only">Toggle navigation</span> <span class="icon-bar"></span> <span class="icon-bar"></span> <span class="icon-bar"></span> </button> <a class="navbar-brand" href="#">The Linked Open Data Cloud</a> </div> <div id="navbar" class="collapse navbar-collapse"> <ul class="nav navbar-nav navbar-right"> <li><a href="/datasets">Browse</a></li> <li><a href="/add-dataset">Submit a dataset</a></li> <li routerLinkActive="active"><a href="/#diagram">Diagram</a></li> <li><a href="#subclouds">Subclouds</a></li> <li routerLinkActive="active"><a href="/#about">About</a></li> <!--<li><a (click)="showLoadDatasetsBox($event)" href="#" >+ Datasets from file</a></li>--> <!--<div id="googleBtn">Google</div>--> <hr> </ul> </div><!--/.nav-collapse --> </div> </nav> <div class="container" id="app"> <!--<input class="btn btn-primary" type="button" (click)='test()' value="TEST" />--> <h2 align="center">Datasets</h2> <!-- <label>Javascript search</label> <input id="searchInput" type="text" text="" class="form-control" name="searchInput" id="searchInput" v-model="searchQuery" v-on:input="onSearchChange(searchQuery);" /> <label>MongoDB Query search</label>--> <table> <td> <input id="searchInput2" type="text" text="" placeholder="Search dataset..." class="form-control" name="searchInput2" id="searchInput2" v-model="searchQuery" v-on:keyup.enter="onSearchInput()"/> </td> <td> <input type="button" value="Search" name="searchButton" id="searchButton" class="btnsearch" v-on:click="onSearchInput()"/> </td> </table> <h4>{{datasetsNarrowed.length}} / {{collectionSize.$numberLong}} datasets</h4> <!--<div *ngIf="datasets.length > 0" class="DatasetListBox"> --> <!-- pager --> <div> <div class="container"> <div class="text-center"> <!-- items being paged --> <table id="mytable" class="table table-bordred table-striped"> <thead> <!--<th>№</th>--> <th>Title</th> <th>Identifier</th> <th>View</th> <th>Edit</th> <!--<th>Delete</th>--> </thead> <tbody> <tr v-for="(dataset,index) in datasetsToShow"> <!--<td>{{index+1}}</td> --> <td>{{dataset.title}}</td> <td>{{dataset._id}}</td> <td> <p data-placement="top" data-toggle="tooltip" v-bind:title="'Click to Open ' + dataset.title"> <a class="btn btn-info btn-xs" v-bind:href="'/dataset/' + dataset._id" data-title="Edit" data-toggle="modal" data-target="#edit" > <span class="glyphicon glyphicon-search"></span> </a> </p> </td> <td> <p data-placement="top" data-toggle="tooltip" v-bind:title="'Click to Open '+dataset.title"> <a class="btn btn-primary btn-xs" v-bind:href="'/edit-dataset/' + dataset._id" data-title="Edit" data-toggle="modal" data-target="#edit" > <span class="glyphicon glyphicon-edit"></span> </a> </p> </td> <!--<td> <p data-placement="top" data-toggle="tooltip" title="Delete"> <button class="btn btn-danger btn-xs" v-on:click="showDeleteDataset(dataset)" data-title="Delete" data-toggle="modal" data-target="#delete" > <span class="glyphicon glyphicon-trash"></span> </button> </p> </td>--> </tr> </tbody> </table> <!-- pager --> <ul v-if="pager.pages && pager.pages.length" class="pagination"> <li v-bind:class="{disabled:pager.currentPage === 1}"> <a v-on:click="setPage(1)">First</a> </li> <li v-bind:class="{disabled:pager.currentPage === 1}"> <a v-on:click="setPage(pager.currentPage - 1)">Previous</a> </li> <li v-for="page in pager.pages" v-bind:class="{active:pager.currentPage === page}"> <a v-on:click="setPage(page)">{{page}}</a> </li> <li v-bind:class="{disabled:pager.currentPage === pager.totalPages}"> <a v-on:click="setPage(pager.currentPage + 1)">Next</a> </li> <li v-bind:class="{disabled:pager.currentPage === pager.totalPages}"> <a v-on:click="setPage(pager.totalPages)">Last</a> </li> </ul> </div> </div> <!-- Delete Modal --> <!--<div class="modal fade" id="delete" role="dialog"> <div class="modal-dialog modal-md"> <div class="modal-content"> <div class="modal-header"> <button type="button" class="close" data-dismiss="modal">&times;</button> <h4 class="modal-title">Delete Dataset</h4> </div> <div class="modal-body"> <div align="center" class="DeleteDatasetBox"> <div v-if="!apiMessage" align="center" class="alert alert-danger" role="alert"> <p>Are you sure want to delete this Dataset?</p> <strong>{{datasetToDelete.title}}</strong> </div> <div style="margin:10px;" v-if="apiMessage" align="center" class="alert alert-success" role="alert"> <strong>{{datasetToDelete.title}}</strong> {{apiMessage}} </div> </div> </div> <div class="modal-footer"> <button type="button" class="btn btn-danger" v-if="!apiMessage" v-on:click="DeleteDataset(datasetToDelete)">Confirm</button> <button type="button" class="btn btn-default" data-dismiss="modal">Close</button> </div> </div> </div> </div>--> </div> <div v-if="datasetsToShow.length <= 0" class="NoDatasetsBox"> <div align="center" class="alert alert-info" role="alert"> <strong>No Datasets Found</strong> </div> </div> </div> <!--<script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script>--> <script src="/js/vue.js"></script> <script src="/js/vue-resource.js"></script> <script src="/js/bootstrap.bundle.min.js"></script> <script src="/js/jquery.min.js"></script> <script type="text/javascript" src="/js/Chart.bundle.js"></script> <script src="/js/luzzu.js"></script> <script src="/js/axios.min.js"></script> <script> function data() { return {"pager":"{}","collectionSize":1656,"searchQuery":"","datasets":[{"description":{"en":"StatusNet instance hosted at http://progval.net"},"_id":"statusnet-progval-net","title":"statusnet-progval-net"},{"description":{"en":"Typological Database System ontology"},"_id":"tds","title":"TDS"},{"description":{"en":"This is the Basque EuroWordNet-Lemon lexicon. The lexicon was created from the Spanish Word-Net-LMF lexicon which is part of the Multilingual Central Repository (MCR http://adimen.si.ehu.es/web/MCR). The lexicon conforms to the 'lemon' specification."},"_id":"basque-eurowordnet-lemon-lexicon-3-0","title":"Basque EuroWordNet-lemon lexicon (3.0)"},{"description":{"en":"OBOE Extension for SBC-LTER"},"_id":"bioportal-oboe-sbc","title":"OBOE SBC"},{"description":{"en":"The catalog can be browsed at https://data.gov.cz"},"_id":"cz-nkod","title":"Czech National Open Data Catalog in DCAT-AP v1.1"},{"description":{"en":"DBpedia Japanese is a part of the DBpedia internationzation effort. Datasets of DBpedia Japanese are generated from dump data of Wikipedia in Japanese and include links to other DBpedia chapters and Wordnet-ja."},"_id":"dbpedia-ja","title":"DBpedia in Japanese"},{"description":{"en":"LinkedGeoData is an effort to add a spatial dimension to the Web of Data / Semantic Web. LinkedGeoData uses the information collected by the OpenStreetMap project and makes it available as an RDF knowledge base according to the Linked Data principles. It interlinks this data with other knowledge bases in the Linking Open Data initiative."},"_id":"linkedgeodata","title":"LinkedGeoData"},{"description":{"en":"In December 2017, an informal working group led by the Department of Economic and Social Affairs and the Secretariat of the United Nations High Level Committee on Management, and composed by technical experts from across the UN System, started working on a proposal to developed a system of Internationalized Resource Identifiers (IRIs) for Sustainable Development Goals, Targets, Indicators and related statistical series to support the development of a United Nations system-wide ecosystem of machine-readable data and documents based on Linked Open Data (LOD) principles.\n\nIn order to ensure their fullest possible use, the Identifiers and a formal Statement of Adoption were presented at the second regular session of the UN System Chief Executives Board for Coordination (CEB), in November 2019. At the CEB, the Secretary-General invited all UN organizations to use them to map their SDG-related resources and sign the Statement.\n\nUnique Identifiers for the sustainable development goals, targets and indicators\n\nThe system of Internationalized Resource Identifiers (IRIs) for Sustainable Development Goals, Targets, Indicators and related statistical series is now part of the Semantic Web infrastructure that the UN Dag Hammarskjold Library makes available to IT developers and the public at large under http://metadata.un.org/sdg/?lang=en. It formalizes links between the goals, targets, indicators and series, and two other crucial elements in the Linked Open Data infrastructure maintained by the United Nation System, namely: (1) the UN Bibliographic Information System maintained by the UN Dag Hammarskjold Library, and (2) the SDG Interface Ontology, maintained by UN Environment. \n\nThe identifiers allow the use of Semantic Web technologies to:\n\n• Provide a web-based mechanism to make SDG-related data and information assets accessible, inter-operable and re-usable,\n\n• Organically discover relevant and authoritative SDG data and information among the multitude of available sources on the web\n\n• Enable the development of applications that integrate authoritative data, concepts and definitions from a large number of formerly unknown sources.\n\nMetadata about the SDG Ontology/KOS in a machine-accessible VoID/LIME file is available at http://metadata.un.org/sdg/void.ttl"},"_id":"SDG","title":"A Knowledge Organization System for the United Nations Sustainable Development Goals"},{"description":{"en":"A structured controlled vocabulary for the anatomy of fungi."},"_id":"bioportal-fao","title":"Fungal gross anatomy"},{"description":{"en":"The NCBI taxonomy database contains the names of all organisms that are represented in the genetic databases with at least one nucleotide or protein sequence."},"_id":"bio2rdf-taxonomy","title":"Bio2RDF::Taxonomy"},{"description":{"en":"Results of R&D."},"_id":"cz-vavai-results","title":"Results of R&D"},{"description":{"en":"Road"},"_id":"http:data.linkedeodata.euroadidStateRoadD010Turkey-1","title":"RoadTrb"},{"description":{"en":"Sentence-layer annotation represents the most coarse-grained annotation in this\r\ncorpus. We adhere to definitions of objectivity and subjectivity introduced in\r\n(Wiebe et al., 2005). Additionally, we followed guidelines drawn from (Balahur &\r\nSteinberger, 2009). Their clarifications proved to be quite effective, raising\r\ninter-annotator agreement in a sentence-layer polarity annotation task from\r\nabout 50% to >80%. All sentences were annotated in two dimensions.\r\n\r\nThe first dimension covers the factual nature of the sentence, i.e. whether it\r\nprovides objective information or if it is intended to express an opinion,\r\nbelief or subjective argument. Therefore, it is either objective or subjective.\r\nThe second dimension covers the semantic orientation of the sentence, i.e. its\r\npolarity. Thus, it is either positive, negative or neutral.\r\n\r\nIn the second layer, we model the contextually interpreted sentiments on the\r\nlevels of words and NP/PP phrases. That is, the annotation decisions\r\nare based on the meaning of the words in the context of the sentence.\r\n\r\nWord sentiment markers:\r\nThe sentiments on the level of individual words are expressed by\r\nsingle character markers added at the end of the words.\r\n\r\nA word might be positive (+), negative(-), neutral(empty), a shifter\r\n(~), an intensifier (^), or a diminisher (%).\r\n\r\nIf a word ends with a hyphen (e.g., \"auf beziehungs-_ bzw.\r\npartnerschaftliche Probleme-\", an underscore is added to the word in\r\norder to prevent missinterpretations of the hyphen as a negative\r\nmarker.\r\n\r\nCurrently, only words that are part of an NP/PP are marked with\r\nsentiment markers. Annotated words are nouns, adjectives, negation\r\nparticles, prepositions, adverbs.\r\n\r\nThe world level annotation was done by 3 persons individually. The\r\nindividual results were harmonized into a single reference annotation.\r\n\r\n\r\nPhrase level markers:\r\n\r\nEach phrase is marked up textually by brackets, e.g. \"[auf\r\nbeziehungs-_ bzw. partnerschaftliche Probleme-]\". The type of a phrase\r\n(NP/PP) is not written to the brackets. We follow largely the\r\nannotation model of TIGER for structuring embedded NPs and PPs.\r\n\r\nCurrently, the following limitations with regard to TIGER exist: (1)\r\nAdjectival phrases are not marked up (2) Relative or infinitival\r\nsentences are not included in NPs/PPs if they appear at the end of a\r\nphrase or if the are discontiguous. We do not only annotate the\r\nphrases which immediately contain words that are marked up as polar.\r\nAny dependent subphrase (NP/PP) is integrated into all its dominating\r\nNPs/PPs, e.g. \"[Die tieferen Ursachen [der Faszination+]]\". Dependent\r\nsubphrases without any polar words are also included, however, there\r\nis no internal bracketing for them, e.g. \"[hohe+ Ansprüche an Qualität\r\nund Lage]\"\r\n\r\nAt the level of phrases, we distinguish the following markers:\r\npositive (+), negative (-), neutral(0), bipolar (#). The category\r\n'bipolar' is used mainly for coordinations where negative and positive\r\nsentiments of something are kept in balance by the writer. This is\r\nquite common for a lot of binomial constructions as \"Krieg und\r\nFrieden\"."},"_id":"mlsa","title":"MLSA - A Multi-layered Reference Corpus for German Sentiment Analysis"},{"description":{"en":"connection links of nug myanmar"},"_id":"nugmyanmar","title":"links"},{"description":{"en":"The Hellenic Fire Brigade project encompasses efforts to extract valuable information from Greek Open Data originating from the Ministry of Public Order & Citizen Protection and in particular from the Hellenic Fire Brigade Department. It involves mainly fire incident records that span over a ten year period, (2000-2010) and aims to exploit these in the best possible manner so as to form meaningful scenarios. The primary goal is to provide applications and services that would reveal potentials for the department to improve upon its management procedures, have economic benefits from cost reductions and improvements in its fire service efficiency.\r\nA secondary but equally important goal is to encourage additional contributions of Greek Open Data as well as of innovative applications and services based on the latter."},"_id":"hellenic-fire-brigade","title":"Hellenic Fire Brigade"},{"description":{"en":"SO-Pharm (Suggested Ontology for Pharmacogenomics) is a domain ontology implemented in OWL-DL, which proposes a formal description of pharmacogenomic knowledge. SO-Pharm articulates different ontologies that represent complementary sub-domains of pharmacogenomics, i.e. related to genotype, phenotype, drugs, and clinical trials. SO-Pharm enables to represent pharmacogenomic relationships between a drug, a genomic variation and a phenotype trait. In addition, it enables to represent patient and more largely panel included in trials, and populations. SO-Pharm enables the representation of measured items on this patients such as results from the observation of a phenotype trait or of genomic variations. SO-Pharm supports knowledge about pharmacogenomic hypothesis, case study, and investigations in pharmacogenomics. SO-Pharm is designed to facilitate data integration and knowledge discovery in pharmacogenomics. In addition it provides a consistent articulation of ontologies of pharmacogenomic sub-domains."},"_id":"bioportal-sopharm","title":"Suggested Ontology for Pharmacogenomics"},{"description":{"en":"This data set contains information about all EP patents, like applications, publications, technical classifications, citations, patent families and related non-EP patents.\nThe data set is updated weekly"},"_id":"European_Patent_Information","title":"EPO patents"},{"description":{"en":"The MeSH Browser is an online vocabulary look-up aid available for use with MeSH (Medical Subject Headings). It is designed to help quickly locate descriptors of possible interest and to show the hierarchy in which descriptors of interest appear."},"_id":"bio2rdf-mesh","title":"Bio2RDF::Mesh"},{"description":{"en":"Indian Biodiversity"},"_id":"https:data.bioontology.orgontologiesIBDsubmissions1downloadapikey=8b5b7825-538d-40e0-9e9e-5ab9274a9aeb","title":"Indian Biodiversity"},{"description":{"en":"Open Data Ecuador Linked Open Data includes data about intellectual production of Ecuador. The data was published in RDF format according to the design issues of Linked Open Data. Data can be accessed from a SPARQL endpoint. \r\n## Data: ##\r\n* Academic Articles: 6468\r\n* Affiliations: 3121\r\n* Authors: 22030 \r\n##Creator:##\r\nNelson Piedra @nopiedra\r\n##Collaborators:##\r\n* Elizabeth Cadme\r\n* Janneth Chicaiza\r\n* Eduardo Encalada\r\n* Richard Guaya\r\n* Jorge Lopez-Vargas\r\n* Diana Torres"},"_id":"opendataec","title":"Open Data of Ecuador"},{"description":{"en":null},"_id":"opendatascotland-graph-simd-rank","title":"opendatascotland-graph-simd-rank"},{"description":{"en":"The super ontology as is the theme of this paper describes the structure of the universe and \ndefines the concept of reality. Reality is defined to have an existence that is known as truth. All objects existing in this world come under the purview of this ontology. All entities belonging to this universe are permanent but undergo countless changes continuously. No destruction takes place during these changes. This ontology is a high-level and Domain independent upper ontology. This ontology is based on a unit of knowledge."},"_id":"upper-ontology","title":"Super Ontology"},{"description":{"en":"An ontology that represents the basic knowledge of physical, chemical and functional characteristics of nanotechnology as used in cancer diagnosis and therapy."},"_id":"bioportal-npo","title":"NanoParticle Ontology"},{"description":{"en":"National Drug Data File Plus Source Vocabulary"},"_id":"bioportal-nddf","title":"National Drug Data File"},{"description":{"en":"The Chinese wordnet as published as part of the Open Multilingual WordNet. The goal of Open Multilingual WordNet is to make it easy to use wordnets in multiple languages. The individual wordnets have been made by many different projects and vary greatly in size and accuracy. We have (i) extracted and normalized the data, (ii) linked it to Princeton WordNet 3.0 and (iii) put it in one place. The Open Multilingual Wordnet and its components are open: they can be freely used, modified, and shared by anyone for any purpose. The original URL for this project is http://lope.linguistics.ntu.edu.tw/cwn/"},"_id":"omwn-cwn","title":"Chinese WordNet (as part of Open Multilingual WordNet)"},{"description":{"en":"StatusNet instance hosted at http://rainbowdash.net"},"_id":"statusnet-rainbowdash-net","title":"statusnet-rainbowdash-net"},{"description":{"en":""},"_id":"rkb-explorer-courseware","title":"Resilient Computing Courseware (RKBExplorer)"},{"description":{"en":"Universal Dependencies is a project that seeks to develop cross-linguistically consistent treebank annotation for many languages, with the goal of facilitating multilingual parser development, cross-lingual learning, and parsing research from a language typology perspective. The annotation scheme is based on (universal) Stanford dependencies (de Marneffe et al., 2006, 2008, 2014), Google universal part-of-speech tags (Petrov et al., 2012), and the Interset interlingua for morphosyntactic tagsets (Zeman, 2008).\r\n\r\nThis dataset refers to UD's Italian treebank.\r\n"},"_id":"universal-dependencies-treebank-italian","title":"Universal Dependencies Treebank Italian"},{"description":{"en":"StatusNet instance hosted at http://alexandrefranke.com"},"_id":"statusnet-alexandrefranke-com","title":"statusnet-alexandrefranke-com"},{"description":{"en":"RDF version of the ChemPedia substances data.\r\n"},"_id":"chempedia-rdf","title":"ChemPedia RDF"},{"description":{"en":"Our xLiD-Lexica dataset in RDF (http://km.aifb.kit.edu/resources/xLiD-lexica.nt) contains about 300 million triples of cross-lingual groundings. It is extracted from Wikipedia dumps of July 2013 in English, German, Spanish, Catalan, Slovenian and Chinese, and based on the canonicalized datasets of DBpedia 3.8 containing triples extracted from the respective Wikipedia whose subject and object resource have an equivalent English article. Based on our xLiD-Lexica dataset, we provide a SPARQL endpoint (http://km.aifb.kit.edu/services/xlike-lexicon/) using OpenLink Virtuoso6 as the back-end database engine."},"_id":"xlid-lexica","title":"xLiD-Lexica"},{"description":{"en":"A dataset with Norwegian Administrative Divisions and their administrative centers."},"_id":"norwegian-geo-divisions","title":"Norwegian geo-divisions"},{"description":{"en":"Linked data about cultural-historical objects. This includes built and archaeological national monuments, finds, find locations, complexes, archaeological complexes, research areas and sites.\nThis dataset offers linked open data from the Archaeological Information System (Archis) and the National Monument Register. Both databases are maintained by the RCE.\nArchis contains data on archaeological sites and sites in the Netherlands. The National Monuments Register contains information about all monuments in the Netherlands that have been designated by the State as protected monuments. These are historical buildings, archaeological sites or green, landscaped buildings."},"_id":"ceo","title":"Linked Data Cultural Heritage Agency of the Netherlands"},{"description":{"en":"A formalization of concepts and relations relevant to evolutionary comparative analysis, such as phylogenetic trees, OTUs (operational taxonomic units) and compared characters (including molecular characters as well as other types). CDAO is being developed by scientists in biology, evolution, and computer science"},"_id":"bioportal-cdao","title":"Comparative Data Analysis Ontology"},{"description":{"en":"Groundbreaking biomedical research requires access to cutting edge scientific resources; however such resources are often invisible beyond the laboratories or universities where they were developed. eagle-i is a national research resource discovery platform to help biomedical scientists search for and find previously invisible, but highly valuable, resources. \r\nResource descriptions collected at each participating institution are freely available as linked open data.\r\nSee: http://www.eagle-i.net/"},"_id":"eagle-i-psm","title":"eagle-i @ Ponce School of Medicine"},{"description":{"en":"Data from http://trafficscotland.org converted to RDF regularly. Currently the data is only the current incidents, but hopefully this should expand."},"_id":"traffic-scotland","title":"Traffic Scotland"},{"description":{"en":"An ontology of affective phenomena such as emotions, moods, appraisals and subjective feelings, designed to support interdisciplinary research by providing unified annotations. The ontology is a domain specialisation of the broader Mental Functioning Ontology. "},"_id":"bioportal-mfoem","title":"Emotion Ontology"},{"description":{"en":"GOLD is an ontology for descriptive linguistics."},"_id":"gold","title":"General Ontology of Linguistic Description"},{"description":{"en":"A lightweight, reference structure of 28,000 subject concepts for the Web. UMBEL is jointly developed and maintained by [Structured Dynamics LLC](http://structureddynamics.com) and [Ontotext AD](http://www.ontotext.com/).\r\n\r\nThere is a total of 46,173 external data links."},"_id":"umbel","title":"UMBEL (Upper Mapping and Binding Exchange Layer)"},{"description":{"en":"An ontology that describes various concepts in quantitative imaging biomarkers. "},"_id":"bioportal-qibo","title":"Quantitative Imaging Biomarker Ontology"},{"description":{"en":"This dataset contains 126 licenses (suitable for general works, data, etc.) expressed as RDF. The official URI of the dataset is: \r\n\r\nhttp://purl.org/NET/rdflicense\r\n\r\n(it implements content negotiation).\r\nIndividual licenses can be also accessed directly. For example, the Creative Commons CC-BY 3.0 for Greece can be found as: http://purl.org/NET/rdflicense/cc-by-3.0-gr etc.)\r\n\r\nThis work is the joint effort of OEG-UPM (Víctor Rodríguez-Doncel) and INRIA (Serena Villata).\r\n\r\nThe editors have not acted in behalf of any of the license issuers, do not claim the legal value of this RDF-version of the licenses, and explicitly decline any responsibility in their use.\r\n"},"_id":"rdflicense","title":"RDFLicense"},{"description":{"en":null},"_id":"opendatacommunities-wellbeing-lsoa-happy-yesterday-mean","title":"opendatacommunities-wellbeing-lsoa-happy-yesterday-mean"},{"description":{"en":"The Smart Points of Interest dataset (SPOI) is the seamless and open resource of POIs that is available for all users to download, search or reuse in applications and services SPOI’s principal target is to provide information as Linked data together with other dataset containing road network. The added value of the Smart approach in comparison to other similar solutions consists in implementation of linked data, using of standardized and respected datatype properties and development of the completely harmonized dataset with uniform data model and common classification. The SPOI dataset is created as a combination of global data (selected points from OpenStreetMap) and local data provided by the SDI4Apps partners or data available on the web. The dataset can be reached by Sparql endpoint (http://data.plan4all.eu/sparql), for detailed information please follow: http://sdi4apps.eu/spoi."},"_id":"Smart_POI_dataset","title":"Smart Points Of Interest @PSNC"},{"description":{"en":"lobid-organisation is an Index of libraries and related organisations\r\nIt provides URIs for > 44 k *library-organisations* and *museums*.The URIs are based on the existing and well established International Standard Identifier for Libraries and Related Organizations (*ISIL*) which can also act as MARC Organization Codes. They are assigned to library institutions by national or institutional agencies. There are ca. **44.000** institutions described.\r\n\r\nYou can find additional information about this data [here](https://wiki1.hbz-nrw.de/pages/viewpage.action?pageId=1572888)."},"_id":"lobid-organisations","title":"lobid-organisations"},{"description":{"en":"A structured controlled vocabulary of the anatomy of <i>Caenorhabditis elegans</i>."},"_id":"bioportal-wbbt","title":"C. elegans gross anatomy"},{"description":{"en":"British National Bibliography (BNB) published as Linked Data by the British Library, linked to external sources including: [VIAF](http://viaf.org/), [ISNI](http://isni.org), [LCSH](http://id.loc.gov/authorities/), [Lexvo](http://www.lexvo.org/), [GeoNames](http://www.geonames.org/ontology/documentation.html), MARC [country](http://id.loc.gov/vocabulary/countries.html), and [language](http://id.loc.gov/vocabulary/languages.html), [Dewey.info](http://dewey.info/). Published to [this data model for books](https://www.bl.uk/bibliographic/pdfs/bldatamodelbook.pdf); [this data model for serials](https://www.bl.uk/bibliographic/pdfs/bldatamodelserial.pdf) and this data model for forthcoming books (http://www.bl.uk/bibliographic/pdfs/bldatamodelcip.pdf).\r\n\r\nCurrent release of approximately 3.9 million descriptions (146,901,135 triples) of books (including monographs published over time); forthcoming books and serials published in the UK over the last 60 years.The dataset, covering UK publications since 1950, is updated monthly."},"_id":"bluk-bnb","title":"British National Bibliography (BNB) - Linked Open Data"},{"description":{"en":"GeoLinkedData (.es) is an open initiative whose aim is to enrich the Web of Data with Spanish geospatial data. This initiative started off by publishing diverse information sources belonging to the National Geographic Institute of Spain. Such sources are made available as RDF (Resource Description Framework) knowledge bases according to the Linked Data principles. These data are interlinked with other knowledge bases belonging to the Linking Open Data Initiative."},"_id":"geolinkeddata","title":"GeoLinkedData"},{"description":{"en":"A CrunchBase wrapper to Linked Data"},"_id":"linked-crunchbase","title":"Linked Crunchbase"},{"description":{"en":"This ontology is used to describe the experimental conditions within cognitive/behavioral experiments, primarily in humans."},"_id":"bioportal-cogpo","title":"Cognitive Paradigm Ontology"},{"description":{"en":"Se trata de un vocabulario diseñado para conocer y exponer los vinos y sus principales características de la Denominación de Origen de Jerez (Sherry Wine).\n\n"},"_id":"Sherry_Wine_","title":"Sherry Wine"},{"description":{"en":"The OpenWN-PT wordnet as published as part of the Open Multilingual WordNet. The goal of Open Multilingual WordNet is to make it easy to use wordnets in multiple languages. The individual wordnets have been made by many different projects and vary greatly in size and accuracy. We have (i) extracted and normalized the data, (ii) linked it to Princeton WordNet 3.0 and (iii) put it in one place. The Open Multilingual Wordnet and its components are open: they can be freely used, modified, and shared by anyone for any purpose. "},"_id":"omwn-por","title":"OpenWN-PT WordNet (as part of Open Multilingual WordNet)"},{"description":{"en":"StatusNet instance hosted at http://mulestable.net"},"_id":"statusnet-mulestable-net","title":"statusnet-mulestable-net"},{"description":{"en":"Chiman Maru is an Indian entrepreneur and the founder and CEO of FynoX Inc., an IT company specializing in ERP solutions, web development, and digital marketing services. He is also a filmmaker, known for directing the documentary Madhavpur: A Cinematic Journey (2024)."},"_id":"ChimanMaru_Entrepreneur","title":"Chiman Maru"},{"description":{"en":"The plWordNet wordnet as published as part of the Open Multilingual WordNet. The goal of Open Multilingual WordNet is to make it easy to use wordnets in multiple languages. The individual wordnets have been made by many different projects and vary greatly in size and accuracy. We have (i) extracted and normalized the data, (ii) linked it to Princeton WordNet 3.0 and (iii) put it in one place. The Open Multilingual Wordnet and its components are open: they can be freely used, modified, and shared by anyone for any purpose. "},"_id":"omwn-pol","title":"plWordNet WordNet (as part of Open Multilingual WordNet)"},{"description":{"en":"StatusNet instance hosted at http://fcac.com"},"_id":"statusnet-fcac-com","title":"statusnet-fcac-com"},{"description":{"en":"LegalNERo is a manually annotated corpus for named entity recognition in the Romanian legal domain. \nIt provides gold annotations for organizations, locations, persons, time and legal resources mentioned in legal documents.\nAdditionally it offers GEONAMES codes for the named entities annotated as location (where a link could be established). "},"_id":"racai-legalnero","title":"Romanian Named Entity Recognition in the Legal domain (LegalNERo)"},{"description":{"en":"Whisky Circle dataset, built with WordLift for the https://www.whisky-circle.info/ website"},"_id":"whisky-circle-info","title":"Whisky Circle"},{"description":{"en":"bacteriophage and plasmid reproduction and maintenance processes"},"_id":"bioportal-mego","title":"MeGO"},{"description":{"en":"Controlled lists for the public sector in Europe"},"_id":"esd-toolkit","title":"ESD-Toolkit"},{"description":{"en":"StatusNet instance hosted at http://bka.li"},"_id":"statusnet-bka-li","title":"statusnet-bka-li"},{"description":{"en":"Bundesamt für Statistik - Swiss Federal Statistical Office data. Currently contains only the classifications."},"_id":"bfs-linked-data","title":"Bundesamt für Statistik (BFS) - Swiss Federal Statistical Office (FSO) Linked Data"},{"description":{"en":"AGROVOC is a controlled vocabulary covering all areas of interest of the Food and Agriculture Organization (FAO) of the United Nations, including food, nutrition, agriculture, forestry, fisheries, scientific and common names of animals and plants, environment, biological notions, techniques of plant cultivation and more.. It is published by FAO and edited by a community of experts.\n\nAGROVOC is an RDF/ SKOS-XL concept scheme, and a Linked Open Data (LOD) set edited by the VocBench tool. It is available in up to 41 languages. The basic notions for a concept scheme are: concepts and terms. Concepts are grouped into 25 broad subject areas. For more information on the structure of the thesaurus and its historical background please consult the thesaurus introduction.\n\nAGROVOC is widely used in specialized libraries as well as digital libraries and repositories to index content and for the purpose of text mining. It is also used as a specialized tagging resource for knowledge and content organization by FAO and other third-party stakeholders."},"_id":"agrovoc","title":"AGROVOC"},{"description":{"en":"thesaurus alternativa"},"_id":"bioportal-thesaurus","title":"thesaurus"},{"description":{"en":"Basque chapter of DBpedia. DBpedia is a \"community effort to extract structured information from Wikipedia and to make this information available on the Web. DBpedia allows you to ask sophisticated queries against Wikipedia, and to link other data sets on the Web to Wikipedia data. We hope this will make it easier for the amazing amount of information in Wikipedia to be used in new and interesting ways, and that it might inspire new mechanisms for navigating, linking and improving the encyclopedia itself.\""},"_id":"dbpedia-eu","title":"DBpedia in Basque"},{"description":{"en":"Coronavirus species dataset 6,128 Triples This dataset contains metadata about the species of coronavirus.\nCategory of coronavirus species dataset 714 Triples This dataset contains the species classification of coronavirus.\nCoronavirus strain dataset 7,124,947 Triples This dataset contains metadata about the strains of the coronavirus.\nCoronavirus nucleotide dataset 19,707,510 Triples This dataset contains the coronavirus nucleic acid metadata.\nCoronavirus gene dataset 18,891,854 Triples This dataset contains metadata about the genes of the coronavirus.\nCoronavirus protein dataset 25,018,370 Triples This dataset contains metadata about proteins of the coronavirus.\nCoronavirus structure dataset 10,751 Triples This dataset contains metadata about the structure of the coronavirus.\nCoronavirus antibody dataset 25,989 Triples This dataset contains metadata for antibodies to the coronavirus.\nCoronavirus literature dateset 56,840 Triples This dataset contains published literature related to the coronavirus.\ncoronavirus patent dataset 14,001 Triples This dataset contains published patents related to the coronavirus.\nDataset of topics in coronavirus literature 24 Triples This dataset contains the classification of research topics in the coronavirus literature.\nMedical classification dataset with coronavirus literature 12,516 Triples This dataset contains the medical subject classification of the coronavirus literature.\nCoronavirus distributed country dataset 540 Triples This dataset contains the countries where the coronavirus was collected.\n"},"_id":"micro-coronavirus","title":"Coronavirus dataset"},{"description":{"en":"WikiPathways is a resource providing an open and public collection of pathway maps created and curated by the community in a Wiki like style. All content is under the Creative Commons Attribution 3.0 Unported license."},"_id":"bio2rdf-wikipathways","title":"Bio2RDF::Wikipathways"},{"description":{"en":null},"_id":"bdgp","title":"Bdgp"},{"description":{"en":"These data correspond to the ontology DBpedia version 2014. "},"_id":"dbpedia-es","title":"DBpedia in Spanish"},{"description":{"en":"SNIK, the Semantic Network of Information Management in Hospitals, describes hospital information system management from a functional point of view: Who performs which function and which information is needed or updated by this function?\n\nLicensed under Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International."},"_id":"snik","title":"SNIK"},{"description":{"en":"This dataset provides information on the Lower Layer Super Output Areas for England and Wales, derived from information from the Office of National Statistics.\r\n\r\nThe data is in the form of Linked Data. Each area has a URI, name, centroid location as lat/long and easting/northing and a link to the corresponding local authority area.\r\n\r\nThese identifiers are used by the Index of Multiple Deprivation linked data datasets at http://opendatacommunities.org\r\n\r\n273128 triples"},"_id":"lower-layer-super-output-areas","title":"Lower Layer Super Output Areas"},{"description":{"en":"Open linked data from the Library and Museum of ARTIUM"},"_id":"datos-artium-org","title":"datos-artium-org"},{"description":{"en":"The original N-LEX is a portal developed by the EU publications office and EU governments. It offers a unified search form to national legislation databases, a multilingual dictionary (EUROVOC) as well as a context-sensitive help. The project started with 4 national databases and has grown to 23 databases today.\r\nBesides the unified search form (which is not very useful for extraction purposes), the website also contains links to the respective national websites of the databases. All national databases offer a non-standardized access to their data, which in all cases is HTML or worse (e.g. PDF documents). Given the fact, that there are also no dumps of raw data (e.g. CSV) available, there is no unified N-LEX dataset that can be converted and published as Linked Data. Rather each countries legislation database has to be treated as an autonomous dataset. Thus we have chosen one country, namely Germany and converted this database into Linked Data via scraping."},"_id":"n-lex-as-linked-data","title":"N-Lex as Linked Data"},{"description":{"en":"Ongoing quality revision of Minozzi's Latin WordNet linked to the LiLa Knowledge Base, mapped to version 3.0 of the Princeton WordNet (as opposed to Minozzi's original mapping to version 1.6). The latest release contains synsets for 1612 additional lemmas that were not included in the original selection performed by Minozzi."},"_id":"LatinWordnetLiLa","title":"Latin WordNet Revision in LiLa"},{"description":{"en":"SALDO, the Swedish Associative Thesaurus, a semantic lexicon in RDF."},"_id":"saldo-rdf","title":"SALDO-RDF"},{"description":{"en":"A SPARQL endpoint of Taiwan Indigenous People provides Taiwan Indigenous people information, including 6 major subjects : [Ethnic](http://lod.apc.gov.tw:8890/schemas/Ethnic_Introduction/), [Culture](http://lod.apc.gov.tw:8890/schemas/Cultural_Creative/), [Travel](http://lod.apc.gov.tw:8890/schemas/Travel/), [Gourmet](http://lod.apc.gov.tw:8890/schemas/Gourmet/), [Ceremony](http://lod.apc.gov.tw:8890/schemas/Ceremony/) and [Business] (http://lod.apc.gov.tw:8890/schemas/Business/).\r\n"},"_id":"tip","title":"TIP"},{"description":{"en":null},"_id":"opendatacommunities-transparency-impact-indicators-neighbourhood-plans","title":"opendatacommunities-transparency-impact-indicators-neighbourhood-plans"},{"description":{"en":"FrameBase is a linked open knowledge base meant to *uniformly represent a wide range of knowledge*, tackling semantic heterogeneity among various sources of structured knowledge, such as the ones in the Linked Open Data cloud. It provides a flexible and uniform way of capturing n-ary relationships by adapting and combining repositories of frames from the fields of linguistics and cognitive science (FrameNet and WordNet) to establish a large and wide-coverage vocabulary that can be used to represent complex knowledge and extended with more specific elements.\r\n\r\nThere are two interconnected representation levels in FrameBase:\r\n\r\n* A highly expressive layer where information is represented with explicit entities instantiating the frames, and representing specific situations, processes or events of any kind, organized into a rich hierarchy.\r\n\r\n* A less expressive but simpler layer based on direct binary predicates between the elements (participants, properties) of the frames. This level is more compact to store and query, and it is connected with the other layer by means Reification-Dereification (ReDer) rules. It can also be used to connect to similar predicates in other sources of structured knowledge or natural language.\r\n\r\nFrameBase is distributed in RDF (Resource Description Format), though it can be translated to other formats.\r\n\r\nFrameBase connects to other knowledge bases by means of integration rules that can link data in ways that cannot be implemented with existing binary properties like owl:sameAs and rdfs:subClassOf .\r\n\r\nFurthermore, because of FrameNet's ties to linguistic semantics, it offers additional possibilities for interfacing with natural language, both for querying and text mining."},"_id":"framebase-schema","title":"FrameBase schema"},{"description":{"en":null},"_id":"opendatacommunities-societal-wellbeing-deprivation-imd-rank-la-2010","title":"opendatacommunities-societal-wellbeing-deprivation-imd-rank-la-2010"},{"description":{"en":"Bookkeeping. --- Warning: educational upload since vacuum about accounting data on LOD web. I'm trying this resource..."},"_id":"https:raw.githubusercontent.comGVogelerbookkeepingmasterbookkeeping.ttl","title":"Bookkeeping"},{"description":{"en":"Ontology of environmental features and habitats"},"_id":"bioportal-envo","title":"Environment Ontology"},{"description":{"en":"DBpedia is a \"community effort to extract structured information from Wikipedia and to make this information available on the Web. DBpedia allows you to ask sophisticated queries against Wikipedia, and to link other data sets on the Web to Wikipedia data. We hope this will make it easier for the amazing amount of information in Wikipedia to be used in new and interesting ways, and that it might inspire new mechanisms for navigating, linking and improving the encyclopaedia itself.\" \r\n\r\nThe Greek DBpedia is the first step towards Linked Data Internationalization and the first successful attempt to serve Linked Data with de-referencable IRI?s that could form a guide for LOD publishing in non-Latin languages."},"_id":"dbpedia-el","title":"DBpedia in Greek"},{"description":{"en":"Concepts, definitions, terms, and resources for standardized description of a microarray experiment in support of MAGE v.1."},"_id":"bioportal-mo","title":"MGED Ontology"},{"description":{"en":"Provides structured controlled vocabularies for the annotation of gene products with respect to their molecular function, cellular component, and biological role. The Gene Ontology consists of three Vocabularies."},"_id":"bioportal-go_x2","title":"Gene Ontology"},{"description":{"en":"DBpedia in French dataset. Part of the DBpedia internationalisation effort. Data are extracted here from French speaking pages of wikipedia."},"_id":"dbpedia-fr","title":"DBpedia in French"},{"description":{"en":"Data exposed: Addgene catalog (tab delimited file)\r\n\r\nSize of dump and data set: 1.1 MB\r\n\r\nNotes: provided to Science Commons by Addgene\r\n\r\n### Openness: ?\r\n\r\nT&C here: http://www.addgene.org/pgvec1?f=a&cmd=showfile&file=terms\r\n\r\nHowever hard to work out what these mean ..."},"_id":"addgene","title":"Addgene"},{"description":{"en":"A structured controlled vocabulary for the annotation of mass spectrometry experiments. Developed by the HUPO Proteomics Standards Initiative."},"_id":"bioportal-ms","title":"Mass spectrometry"},{"description":{"en":"The Mammalian Phenotype Ontology is under development as a community effort to provide standard terms for annotating mammalian phenotypic data."},"_id":"bioportal-mp","title":"Mammalian phenotype"},{"description":{"en":"The Mental Functioning Ontology is an ontology for mental functioning, including mental processes such as cognition and traits such as intelligence, and related diseases and disorders. It is developed in the context of the Ontology for General Medical Science and the Basic Formal Ontology. The project is being developed in collaboration between the University of Geneva, Switzerland, and the University at Buffalo, USA.\n\nThe project is being developed with full involvement of all relevant communities, following best practices laid out by the OBO Foundry. Efforts are currently underway to align with related projects including the Behaviour Ontology, the Cognitive Atlas, the Cognitive Paradigm Ontology and the Neural Electro Magnetic Ontologies. "},"_id":"bioportal-mf","title":"Mental Functioning Ontology"},{"description":{"en":"The flickr wrappr extends DBpedia with RDF links to photos posted on flickr. For each of the 1.95 million DBpedia concepts, the wrappr generates a collection of flickr photos that depict the concept. "},"_id":"flickr-wrappr","title":"flickr? wrappr"},{"description":{"en":"Gene Ontology Extension"},"_id":"bioportal-go_x1","title":"Gene Ontology Extension"},{"description":{"en":"Concepts that cover the cultural heritage field in the Netherlands."},"_id":"cht","title":"Cultural Heritage Thesaurus"},{"description":{"en":"A structured controlled vocabulary for the annotation of experiments concerned with protein-protein interactions. Developed by the HUPO Proteomics Standards Initiative."},"_id":"bioportal-mi","title":"Protein-protein interaction"},{"description":{"en":"A structured controlled vocabulary of the adult anatomy of the mouse (Mus)."},"_id":"bioportal-ma","title":"Mouse adult gross anatomy"},{"description":{"en":"Ontology for Systems Chemical Biology and Chemogenomics"},"_id":"bioportal-chem2bio2owl","title":"Systems Chemical Biology/Chemogenomics"},{"description":{"en":"The FAO geopolitical ontology provides a master reference for geopolitical information, as it manages names in multiple languages (English, French, Spanish, Arabic, Chinese, Russian and Italian); maps standard coding systems (UN, ISO, FAOSTAT, AGROVOC, DBPedia, etc); provides relations among territories (land borders, group membership, etc); and tracks historical changes.\r\n\r\nThe ontology contains <br>\r\n*number of triples : 22495 triples <br>\r\n*links to other data sets: 195 links to DBPEDIA <br>\r\n\r\n\r\nThe Food and Agriculture Organization of the United Nations (FAO) leads international efforts to defeat hunger and serves as a knowledge network.\r\n\r\n"},"_id":"fao-geopolitical-ontology","title":"FAO geopolitical ontology"},{"description":{"en":"SmartLink exposes Linked Data about publicly available Web services and Web APIs. In particular, the SmartLink data set extends existing service description schemas with a light-weight schema for non-functional properties. "},"_id":"smartlink","title":"SmartLink: Linked Services Non-Functional Properties"},{"description":{"en":"The Corporate bodies name authority list (NAL) or Common Authority Table (CAT) is a controlled vocabulary listing corporate entities such as European institutions and bodies with their authority code and label(s) in the 24 official languages of the EU. The list covers as well subdivisions of the different institutions such as DG's. \nThe Corporate bodies NAL is part of the Core Metadata (CM) used in the data exchange between the institutions involved in the legal decision making process and the Publications Office of the EU. The NAL is under governance of the Interinstitutional Metadata Maintenance Committee (IMMC) and maintained by the Publications Office of the EU in its Metadata Registry (MDR).\nThis table provides the varying names of EU corporate bodies for a given time span. Some other corporate bodies are also included as far as they are used in the various systems in the Publications Office. They are classified accordingly in \"EU\" | \"INT (for international)\" | \"Other\". The traceability of the chronological modifications is ensured when possible.\nFor the EU Corporate bodies, the legal basis is also indicated.\nAs the official languages have changed over the time, the translations are provided in the existing official languages for a given period. The names are provided under the labels and in a longer form (e.g. Committee of the Regions | Committee of the Regions of the European Union)."},"_id":"corporate-body","title":"Corporate Body Named Authority List "},{"description":{"en":"The ICD is the international standard diagnostic classification for all general epidemiological, many health management purposes and clinical use."},"_id":"bioportal-icd9cm","title":"International Classification of Diseases"},{"description":{"en":"PRO provides an ontological representation of protein-related entities by explicitly defining them and showing the relationships between them. Each PRO term represents a distinct class of entities (including specific modified forms, orthologous isoforms, and protein complexes) ranging from the taxon-neutral to the taxon-specific. The ontology has a meta-structure encompassing three areas: proteins based on evolutionary relatedness (ProEvo); protein forms produced from a given gene locus (ProForm); and protein-containing complexes (ProComp)."},"_id":"bioportal-pr","title":"PRotein Ontology (PRO)"},{"description":{"en":"A controlled terminology of resources, which is used to improve the sensitivity and specificity of web searches."},"_id":"bioportal-bro_x1","title":"Biomedical Resource Ontology"},{"description":{"en":"A controlled vocabulary of plant morphological and anatomical structures representing organs, tissues, cell types, and their biological relationships based on spatial and developmental organization. Note that this has been subsumed into the PO."},"_id":"bioportal-po","title":"Plant Anatomy"},{"description":{"en":"Basic information about bans issued by the Czech Trade Inspection Authority"},"_id":"cz-ctia-bans","title":"Bans of the Czech Trade Inspection Authority"},{"description":{"en":"WHO Adverse Reaction Terminology, 1997"},"_id":"bioportal-who","title":"WHO Adverse Reaction Terminology"},{"description":{"en":"Context-based healthcare access-control policies"},"_id":"bioportal-sitbac","title":"Situation-Based Access Control"},{"description":{"en":"An ontology representing a causal model of smoking behavior risk, including genetic and environmental components. It also includes concepts for describing smoking-related phenotypes."},"_id":"bioportal-sbro","title":"Smoking Behavior Risk Ontology"},{"description":{"en":"Application ontology for entities related to insecticide resistance in mosquitos"},"_id":"bioportal-miro","title":"Mosquito insecticide resistance"},{"description":{"en":"SLI Galnet, the Galician wordnet, at version 3.0.26 (http://sli.uvigo.gal/galnet) in RDF (Resource Description Framework) format. This distribution includes linked multilingual lexical data for Galician, Catalan, Basque, Spanish, Portuguese and English, and integrates ontological knowledge from WordNet Domains, Adimen-SUMO, Top Ontology and Galnet Epinonyms"},"_id":"sli_galnet_rdf","title":"SLI Galnet, the Galician wordnet, at version 3.0.26, in RDF format"},{"description":{"en":"Foodista is a community edited recipe wiki, published under a Creative Common Attribution license. The wiki contains information on foods, tools, techniques, and recipes.\r\n\r\nThis dataset was based on a crawl of the Foodista website, extracting the metadata from the service. Since the crawl was completed the Foodista site has significantly changed, so refreshing the data is more difficult. \r\n\r\n*Note* this dataset is no longer updated, it was taken off-line during the shutdown of Kasabi. A dump of the dataset has been [uploaded to the Internet Archive](http://archive.org/details/kasabi)"},"_id":"foodista","title":"Foodista"},{"description":{"en":null},"_id":"greek-administrative-geography","title":"greek-administrative-geography"},{"description":{"en":"The text of Querolus, an anonymous Latin comedy dating back to V century AD, linked to the LiLa Knowledge Base."},"_id":"Querolus","title":"Querolus in LiLa"},{"description":{"en":"Norwegian parking in RDF form."},"_id":"norpark","title":"NorPark"},{"description":{"en":"This dataset, produced in the context of the ISSA project (https://issa.cirad.fr/), provides a semantic index of the articles of the Agritrop scientific archive. It is built by extracting thematic descriptors and named entities from the articles full-text, and linking them with resources from DBpedia, Wikidata and AGROVOC."},"_id":"issa-agritrop","title":"ISSA Agritrop Dataset"},{"description":{"en":"praca poświęcona przedstawieniu i omówieniu poglądów i spostrzeżeń Joachima Lelewela zawartych w pracach poświęconych bibliotekarstwu"},"_id":"ISSN:0080-3626","title":"Pierwszy polski podręcznik bibliotekarski"},{"description":{"en":"academic dataset of educational institution"},"_id":"dbacademic","title":"dbacademic"},{"description":{"en":"This dataset contains data from the registry of contracts of the Czech Republic - financial fulfillments"},"_id":"cz-fulfillments","title":"Registry of contracts of the Czech Republic - Financial fulfillments"},{"description":{"en":"This ontology defines the hierarchical display of the different rat strains as derived from the parental strains"},"_id":"bioportal-rs","title":"Rat Strain Ontology"},{"description":{"en":"RDF version of the Apertium bilingual dictionary OC-ES. The original dataset (in LMF) comes from <http://hdl.handle.net/10230/17124> . The RDF version of the lexica is modelled using lemon (http://lemon-model.net/) and the translation module (http://purl.org/net/translation). More about the Apertium RDF dictionaries at http://linguistic.linkeddata.es/apertium/\r\n"},"_id":"apertium-rdf-oc-es","title":"Apertium RDF OC-ES"},{"description":{"en":"### SPARQL access\r\n\r\nAccording to [this page](http://uberblic.org/developers/apis/sparql/), there should be a SPARQL endpoint at [this location](http://platform.uberblic.org/api/v1/sparql), but it refuses any request with a 403 Not Authorized error."},"_id":"uberblic","title":"Uberblic.org"},{"description":{"en":"WebIndex and OpenData Barometer from the World Wide Web Foundation"},"_id":"world-wide-web-foundation","title":"World Wide Web Foundation"},{"description":{"en":"Tesla Deaths is a digital record of Tesla accidents that involved a driver, occupant, cyclist, motorcyclist, or pedestrian death, whether or not the Tesla or its driver were at fault"},"_id":"Tesla_Deaths","title":"Tesla Deaths: A digital record of Tesla accidents that involved a fatality"},{"description":{"en":"This dataset created by the SADEI contains information about the populated places of my area, Asturias in the period 2005-2010, including:\r\n\r\n-Codes to identify the type of a populated place: CC/PP/EE (C: code of first level division called “Concejo”, P: code of second level division called Parroquia Rural and EE: code of third level division the real place)\r\n\r\n-Name in Spanish and Asturian\r\n\r\n-Statistics about: altitude, distance, area, men, women and number of apartments (main and not main)\r\n\r\nThe dataset has been transformed by WESO Research Group at the University of Oviedo."},"_id":"nomenclator-asturias","title":"Nomenclator Asturias"},{"description":{"en":"NIF Standard ontology (NIFSTD) is a core component of Neuroscience Information Framework (NIF) project (http://neuinfo.org), a semantically enhanced portal for accessing and integrating neuroscience data, tools and information. NIFSTD includes a set of modular ontologies that provide a comprehensive collection of terminologies to describe neuroscience data and resources."},"_id":"bioportal-nif","title":"NIFSTD"},{"description":{"en":"This dataset offers a structured framework for documenting and analyzing cases of violence against women, including types of violence, the involved parties, and legal outcomes. It captures detailed information about the incidents, providing a comprehensive view of the legal ramifications and facilitating in-depth research and analysis in the field of gender-based violence."},"_id":"PREJUST4WOMAN_PROJECT","title":"PREJUST4WOMEN"},{"description":{"en":"Statistical data about immigration in Italy and related topics.\r\nOriginal data comes from the National Statistical Institute of Italy (ISTAT, dati.istat.it) and has been put in RDF Data Cube format by Linked Open Data Italia association."},"_id":"istat-immigration","title":"ISTAT Immigration (LinkedOpenData.it)"},{"description":{"en":"Linked Open Data about every Nobel Prize since 1901, including information about the Nobel Prizes, the Nobel Laureates and related documentation."},"_id":"nobelprizes","title":"Nobel Prizes"},{"description":{"en":"PARSEME-Ro corpus is the v.1.2 Romanian corpus annotated with verbal multiword expressions according to version 1.2 of the PARSEME guidelines. It contains annotation for verbal idioms, light verb constructions and inherently reflexive verbs. The corpus belongs to the journalistic genre."},"_id":"racai-llod-parseme-ro","title":"PARSEME-Ro corpus"},{"description":{"en":"StatusNet instance hosted at http://ssweeny.net"},"_id":"statusnet-ssweeny-net","title":"statusnet-ssweeny-net"},{"description":{"en":"The National Drug Code (NDC) is a unique product identifier used in the United States for drugs intended for human use."},"_id":"bio2rdf-ndc","title":"Bio2RDF::Ndc"},{"description":{"en":null},"_id":"opendatacommunities-imd-environment-rank-2010","title":"opendatacommunities-imd-environment-rank-2010"},{"description":{"en":"StatusNet instance hosted at http://tekk.com.ar"},"_id":"statusnet-tekk-com-ar","title":"statusnet-tekk-com-ar"},{"description":{"en":null},"_id":"opendatacommunities-net-additional-dwellings","title":"opendatacommunities-net-additional-dwellings"},{"description":{"en":"The Chinese wordnet as published as part of the Open Multilingual WordNet. The goal of Open Multilingual WordNet is to make it easy to use wordnets in multiple languages. The individual wordnets have been made by many different projects and vary greatly in size and accuracy. We have (i) extracted and normalized the data, (ii) linked it to Princeton WordNet 3.0 and (iii) put it in one place. The Open Multilingual Wordnet and its components are open: they can be freely used, modified, and shared by anyone for any purpose. The original URL for this project is http://compling.hss.ntu.edu.sg/cow/"},"_id":"omwn-cow","title":"Chinese WordNet (as part of Open Multilingual WordNet)"},{"description":{"en":"The **LinkedDrugs** dataset with drug product data from different countries. \r\n\r\nThe current version of the dataset (version 2.1) holds data from twenty-three countries: Austria, Azerbaijan, Costa Rica, Cyprus, Egypt, Estonia, Ireland, Macedonia, Malta, Netherlands, New Zealand, Nigeria, Norway, Romania, Russia, Serbia, Slovakia, Slovenia, South African Republic, Spain, Uganda, Ukraine and USA.\r\n\r\nThe dataset is available via the SPARQL endpoint at http://linkeddata.finki.ukim.mk/sparql, in a named RDF graph: \"http://linkeddata.finki.ukim.mk/lod/data/drugs#\".\r\n\r\nThe current version of the dataset (version 2.1) contains 99,235,032 RDF triples for 248,746 drug products and is available for download as a dump in Turtle format.\r\n\r\n### Usage Scenarios (examples)\r\n\r\n#### User-centered Scenarios\r\n* [Get all available details for a specific drug product](http://seminant.com/queries/5816681573656d19eb929700)\r\n* [Get details for all related drug products from the dataset for a specific drug product](http://seminant.com/queries/58166adf73656d19eb989700)\r\n* [Get details for all related drugs from LOD for a specific drug product](http://seminant.com/queries/58166c8273656d19eb019900)\r\n#### Analytical Scenarios\r\n* [Get number of drug products per ATC category (level 3), per country](http://seminant.com/queries/58166d1f73656d19eb059900)\r\n* [Get average drug product price per ATC category (level 3), per country](http://seminant.com/queries/58166e4473656d19eb0ca900)\r\n\r\n### More Details\r\n* Project page: http://drugs.linkeddata.finki.ukim.mk/\r\n* Journal paper: https://jbiomedsem.biomedcentral.com/articles/10.1186/s13326-016-0111-z\r\n* Example project using the LinkedDrugs dataset: http://godd.finki.ukim.mk/"},"_id":"linked-drugs","title":"LinkedDrugs: Linked Drug Product Data on a Global Scale"},{"description":{"en":"Concept of realityUpper OntologyEHCPRSuper OntologyLivingMatterSpaceTimeMedium of restMedium of motion."},"_id":"Generalized_Super_Ontology","title":"Super Ontology"},{"description":{"en":"The Role Ontology (RoleO) is a ontology in the domain of role classification. RoleO aims to standardize role classification and support computer-assisted reasoning. RoleO is a community-based ontology, and its development follows the OBO Foundry principles."},"_id":"bioportal-roleo","title":"Role Ontology"},{"description":{"en":"The Framester resource is the main outcome of the framester project (https://w3id.org/framester). All the RDF files are serialized in TURTLE format. The corresponding triples can be also found uploaded on the Framester's SPARQL endpoint available at (https://w3id.org/framester/sparql).\r\nA series of statistics (e.g. number of triples, predicats, classes) are available at (https://w3id.org/framester/stats) of the dataset are available.\r\nThe void description of the dataset is available at https://w3id.org/framester/dataset"},"_id":"framester","title":"Framester"},{"description":{"en":"The Linked Data version of DrugBank which is a repository of almost 5000 FDA-approved small molecule and biotech drugs. It contains detailed information about drugs including chemical, pharmacological and pharmaceutical data; along with comprehensive drug target data such as sequence, structure, and pathway information\r\n\r\nlinks:bio2rdf-kegg 913\r\nlinks:bio2rdf-symbol 1533"},"_id":"fu-berlin-drugbank","title":"DrugBank"},{"description":{"en":"The goal of the Pathway Ontology is to capture the various kinds of biological networks, the relationships between them and the alterations or malfunctioning of such networks within a hierarchical structure. The five nodes are: classic metabolic pathways, regulatory pathways, signaling pathways, drug pathways and disease pathways for complex human conditions. KEGG and Reactome databases, as well as extensive literature searches have been used to choose terms and their position within the tree. A complex human disease pathway is viewed in the context of genetic and environmental attributes that can affect or impair the functioning of various molecular and cellular pathways; their combined, accumulated effect is manifested in the diseased phenotype. In many cases the identity of the malfunctioning dynamic entity is speculated rather than known. Metabolic, regulatory or signaling pathway terms have associated terms for the altered version of the pathway and the level at which the alteration(s) may occur. Proteins with mutations known to affect a particular pathway can be annotated to the normal and altered version(s) of the pathway and to a disease pathway, if known. The ontology provides a unified way to annotate gene products to any type of pathway as well as to deviant pathways. Its hierarchical structure offers the researcher a 'view' of the connections, if not the dependencies between individual pathways, of the possible link between alterations within these complex biological circuitries and diseases."},"_id":"bioportal-pw","title":"Pathway ontology"},{"description":{"en":"Comprehensive set of linked clean energy data including: \r\n\r\n* policy and regulatory country profiles, \r\n* key stakeholders (organisation profiles),\r\n* project outcome documents and a\r\n* thesaurus (SKOS format) on renewables, energy efficiency and climate change for public re-use. "},"_id":"clean-energy-data-reegle","title":"Linked Clean Energy Data (reegle.info)"},{"description":{"en":"<p>\r\n<a href=\"http://ineverycrea.net/\">IneveryCREA (Santillana)</a> is the community of educational creativity for teachers and education professionals to create, develop and share original educational resources in Spain.\r\n</p>\r\n<p>\r\nSantillana is the leading textbook and general-interest publishing group in Spain and Latin America, and the most prestigious publisher of literary works in Spanish. With more than 108 million books sold in 2010, the company has been synonymous with quality, innovation and service to teaching staff since its inception in 1960.\r\n</p>\r\n<p>\r\nIneveryCREA (Santillana) works with <a href=\"http://gnoss.com/\">GNOSS software (RIAM Intelearning Lab)</a>. RIAM is a company that develops semantic technology for the creation of specialized networks and linked markets. IneveryCREA offers a selection of 2,554 resources (November 2012). It includes a facet-based search engine and enriched contexts. Both are developments by GNOSS.\r\n</p>\r\n\r\n<p>\r\n<a href=\"http://ineverycrea.net/\">IneveryCREA (Santillana)</a> es la comunidad de la creatividad educativa para profesores y profesionales de la educación que crean, desarrollan y comparten recursos educativos originales.\r\n</p>\r\n<p> Santillana es el grupo editorial líder en texto escolar y ediciones generales en España y América Latina, y la referencia en el campo de la creación literaria en lengua española. Con más de 108 millones de libros vendidos en el año 2010, es sinónimo de calidad, innovación y servicio al profesorado desde su creación en 1960.</p>\r\n<p>\r\nIneveryCREA (Santillana) trabaja con <a href=\"http://gnoss.com/\">software de GNOSS (RIAM Intelearning Lab)</a>. RIAM es una compañía que desarrolla tecnología semántica para la creación de redes especializadas y mercados enlazados. IneveryCREA ofrece en este caso una selección de 2.554 recursos (Noviembre 2012). Incluye un buscador facetado y contextos enriquecidos. Ambos son desarrollos de GNOSS.\r\n</p>"},"_id":"ineverycrea","title":"IneveryCREA, la comunidad de la creatividad educativa"},{"description":{"en":"A collection of age models for the Deep Sea Drilling Program (DSDP), Ocean Drilling Program (ODP) and Integrated Ocean Drilling Program (IODP) drilling sites.\r\n\r\nThese can be used to convert depth measurement to geologic age. \r\n\r\nhttp://data.oceandrilling.org/linkeddata.html\r\n "},"_id":"oceandrilling-janusamp","title":"Ocean Drilling - Janus Age Models"},{"description":{"en":"The anatomy of the Tick, <i>Families: Ixodidae, Argassidae</i>"},"_id":"bioportal-tads","title":"Tick gross anatomy"},{"description":{"en":"Export of the ALPINO Dutch Treebank to RDF."},"_id":"alpino-rdf","title":"ALPINO RDF Treebank"},{"description":{"en":"Linked data for every UK Postcode.\r\n\r\n## License\r\n\r\nContent is licensed under the [OS OpenData License](http://www.ordnancesurvey.co.uk/oswebsite/opendata/licence/index.html)"},"_id":"uk-postcodes","title":"UK Postcodes"},{"description":{"en":"Standardized health outcome and health determinant indicators as maintained by the CDCâ??s National Center for Health Statistics"},"_id":"bioportal-hlth_indics","title":"HEALTH_INDICATORS"},{"description":{"en":"An academic domain ontology populated using IIT Bombay organization corpus, web and the linked open data. \r\n\r\nUsage: Information Extraction, Information Retrieval\t\r\n\r\nAvailability: Freely Avalable\t"},"_id":"acadonto","title":"AcadOnto"},{"description":{"en":"IMF data and metadata"},"_id":"imf-linked-data","title":"International Monetary Fund (IMF) Linked Data"},{"description":{"en":"Documentation of and links to data for wordnets in 20 languages (Albanian, Arabic, Danish, English, Persian, Finnish, French, Hebrew, Italian, Japanese, Basque, Catalan, Galician, Spanish, Indonesian, Malaysian, Norwegian (Bokmal and Nynorsk), Portuguese, Thai). Size, quality and license varies widely, but all licenses are open licenses that allow redistribution.\r\n\r\nThere is also an online search interface."},"_id":"xwn","title":"Open Multilingual Wordnet"},{"description":{"en":"A controlled vocabulary to describe phenotypic traits in plants. Each trait is a distinguishable feature, characteristic, quality or phenotypic feature of a developing or mature plant, or a plant part."},"_id":"bioportal-to","title":"Plant Trait Ontology"},{"description":{"en":"This dataset contains information about National Institute of Technology, Patna"},"_id":"NITP","title":"NIT Patna"},{"description":{"en":"StatusNet instance hosted at http://qdnx.org"},"_id":"statusnet-qdnx-org","title":"statusnet-qdnx-org"},{"description":{"en":"SciGraph is the Springer Nature Linked Data platform that collates information from across the research landscape, i.e. the things, documents, people, places and relations of importance to the science and scholarly domain. Metadata for millions of entities are available to explore online, as well as for downloading to reuse within your own application."},"_id":"springernaturescigraph","title":"Springer Nature SciGraph"},{"description":{"en":"FADN is an instrument for evaluating the income of agricultural holdings and the impacts of the Common Agricultural Policy. FADN consists of an annual survey carried out by the Member States of the European Union. The services responsible in the Union for the operation of the FADN collect every year accountancy data from a sample of the agricultural holdings in the European Union. Derived from national surveys, the FADN is the only source of microeconomic data that is harmonised, i.e. the bookkeeping principles are the same in all countries. Input data for this dataset was in the form of CSV files, which were first modeled and aligned by using ontologies like Data Cube Vocabulary and its SDMX ISO extensions. The source files can be downloaded from https://ec.europa.eu/agriculture/rica/database/consult_std_reports_en.cfm"},"_id":"FADN_(2019)","title":"Farm Accountancy Data Network (FADN) linked dataset from 2019 @PSNC"},{"description":{"en":"Cell lines are key experimental models to understand protein interactions and signaling pathways. With a large pool of such data coming from different cell lines of different origin -of normal and -pathological tissues, proper analysis requires segregating data pertaining to specific cell lines. The project envisaged brings together hierarchical trees of organs, mammalian cell lines and diseases in one platform. Certain specific terms from Cell Type (CL) ontology, Foundational Model of Anatomy (FMA) and DOID ontologies are mapped for searchability. Ontology is developed in both OBO and OWL. "},"_id":"bioportal-mccl_x1","title":"Cell line ontology"},{"description":{"en":"Business entities from ARES - business registry"},"_id":"cz-ares-or","title":"Data about business entities from the ARES system - business registry of the Czech Republic"},{"description":{"en":"StatusNet instance hosted at http://belfalas.org"},"_id":"statusnet-belfalas-org","title":"statusnet-belfalas-org"},{"description":{"en":"This has been screen scraped from the Glastonbury website."},"_id":"glastonbury-2011","title":"Glastonbury 2011 Programme"},{"description":{"en":"[myExperiment](http://www.myexperiment.org) is a social web site for researchers sharing scientific workflows and \"packs\" (aggregations of resources).\r\n\r\nAs of September 2010 it has several thousand members and a collection of around 1300 workflows, 350 files and 130 packs. It is the largest public collection of scientific workflows.\r\n\r\nmyExperiment contains user-generated content, The RDF description of the public content is available under PDDL, while the actual user-generated content has separate licenses on a per-item basis.\r\n\r\nThe site was the subject of the keynote \"[Repositories and Linked Open Data: the view from myExperiment](http://www.myexperiment.org/packs/131)\" by David De Roure at Open Repositories 2010 in Madrid, Spain.\r\n\r\nmyExperiment has three sister projects:\r\n\r\n* The [BioCatalogue](http://www.biocatalogue.org/) - see package:biocatalogue\r\n* [SysmoDB](http://www.sysmo-db.org/) - see package:sysmo-db\r\n* [MethodBox](http://www.methodbox.org/)"},"_id":"my-experiment","title":"myExperiment"},{"description":{"en":"Exposure Ontology. A draft ontology for exposure science."},"_id":"bioportal-exo","title":"ExO"},{"description":{"en":"DBpedia Commons provides the Wikimedia Commons dataset as Linked Data"},"_id":"dbpedia-commons","title":"DBpedia Commons"},{"description":{"en":"Groundbreaking biomedical research requires access to cutting edge scientific resources; however such resources are often invisible beyond the laboratories or universities where they were developed. eagle-i is a national research resource discovery platform to help biomedical scientists search for and find previously invisible, but highly valuable, resources. \r\nResource descriptions collected at each participating institution are freely available as linked open data."},"_id":"eagle-i-uccaribe","title":"eagle-i @ Universidad Central del Caribe"},{"description":{"en":"Gabriela Vulcu, Raul Lario Monje, Mario Munoz, Paul Buitelaar and Carlos A. Iglesias (2014), Linked-Data based Domain-Specific Sentiment Lexicons, In: Proceedings of the 3rd Workshop on Linked Data in Linguistics (LDL-2014), Reykjavik, Iceland, May 2014\r\n\r\n Resource Type: \tLexicon\r\n Resource Name: \tEUROSENTIMENT domain-specific sentiment lexicons\t\r\n Size: \t9160\t\r\n Resource Production Status: \tNewly created-in progress\t\r\n Language(s): \tW\t\r\n Modality: \tWritten\t\r\n Use of the Resource: \tEmotion Recognition/Generation\t\r\n Resource Availability: \tFreely Avalable\t\r\n Resource URL (if available): \thttp://140.203.155.231:8080/eurosentiment/\t\r\n Resource Description: \tPlease see the submitted article. It describes this language resource and all other involved. "},"_id":"eurosentiment","title":"EuroSentiment"},{"description":{"en":"A structured controlled vocabulary for the phenotypes of Ascomycete fungi"},"_id":"bioportal-apo","title":"Ascomycete phenotype ontology"},{"description":{"en":"The LOD dataset of ASCDC_The Chinese Television System Educational and Cultural Programs Digital Archive (CTS-TV-Programs) was created by the Academia Sinica Center for Digital Cultures (ASCDC) and based on the metadata from “The Chinese Television System Educational and Cultural Programs Digital Archive” (華視教育文化節目之數位典藏) in the “Taiwan Union Catalog” (數位典藏與數位學習聯合目錄, https://catalog.digitalarchives.tw/Organization/List.jsp?CID=61756). Originally, the metadata was established by the Multimedia & Game Science Department at the Lunghwa University of Science and Technology (龍華科技大學多媒體與遊戲發展科學系). The data includes collections of digital information about 5 educational and cultural programs, such as Nature Classroom, One Word a Day, Voices of the Hokkien, Harvest Season and Hometown Yearnings, which were produced by the Chinese Television System (CTS) in the 1980s. Containing 726 data records and 31,711 triples, the textual content within the LOD dataset is licensed under the Creative Commons Attribution (CC 0), while the digitized items are under CC-BY-NC-ND."},"_id":"ASCDC-CTS-TV-Programs","title":"The Chinese Television System Educational and Cultural Programs Digital Archive (CTS-TV-Programs)"},{"description":{"en":"The Amsterdam Museum dataset describes more than 70.000 cultural heritage objects related to the city of Amsterdam described by the museum. \r\n\r\nThe metadata was retrieved from an XML Web API of the museum's Adlib collection database and converted to RDF compliant with the Europeana Data Model (EDM). This makes the Amsterdam Museum data the first of its kind to be officially converted and made available in this format.\r\n\r\n"},"_id":"amsterdam-museum-as-edm-lod","title":"Amsterdam Museum as Linked Open Data in the Europeana Data Model"},{"description":{"en":"Source : [theses.fr](http://www.theses.fr)\r\n\r\ntheses.fr is the french dissertations search engine, maintained by ABES\r\n\r\n\r\nLicensing : not yet, but will be as open as possible\r\n\r\nNB : The RDFa of theses.fr is being tested and will be be fixed in next days."},"_id":"thesesfr","title":"theses.fr"},{"description":{"en":"ÉCOSYSTÈME CIRCULAIRE "},"_id":"Guillaume_Forget","title":"GUTSTOK "},{"description":{"en":"VIVO is a research-focused discovery tool that enables collaboration among scientists across all disciplines. VIVO contains information about researchers associated with the Clinical and Translational Science Center."},"_id":"vivo-weill-cornell-medical-college","title":"VIVO Weill Cornell Medical College"},{"description":{"en":"This co-reference store has been provided for use by the NoTube semantic television project."},"_id":"rkb-explorer-notube","title":"notube"},{"description":{"en":"DBpedia Portuguese is being constructed by a working group to internationalize DBpedia to the [Lusosphere](http://en.wikipedia.org/wiki/Lusosphere \"what is lusosphere?\").\r\n\r\nWe are actively collaborating with the [DBpedia Internationalization Team](http://wiki.dbpedia.org/Internationalization) to include knowledge from the [Portuguese Language Wikipedia](http://pt.wikipedia.org) into DBpedia. As a first step, we have performed a preliminary extraction (available at http://pt.dbpedia.org) and are editing several mappings and labels to the DBpedia Ontology. The activity is organized via the mailing list dbpedia-portuguese@lists.sourceforge.net\r\n\r\nhttp://pt.dbpedia.org"},"_id":"dbpedia-pt","title":"DBpedia in Portuguese"},{"description":{"en":"A collection of data about climbing routes, crags, and mountains, screen-scraped from UKClimbing.com"},"_id":"data-incubator-climb","title":"Climb Dataincubator"},{"description":{"en":"The Environmental Applications Reference Thesaurus (EARTh) has been compiled and is maintained by the CNR-IIA-EKOLab to facilitate the indexing, retrieval, harmonizing and integration of human- and machine-readable environmental information from disparate sources, across the cultural and linguistic barriers. Ownership of such material always remains with the CNR-IIA-EKOLab.\r\n\r\nEARTh has been firstly made available as linked data as an activity within the European Project NatureSDIPlus (ECP-2007-GEO-317007). It is currently maintained in the context of LusTRE, a framework under development within the EU project eENVplus (CIP-ICT-PSP grant No. 325232) that aims at combining existing thesauri to support the management of environmental resources. LusTRE considers the heterogeneity in scopes and levels of abstraction of environmental thesauri as an asset when managing environmental data, it exploits linked data best practices SKOS (Simple Knowledge Organization System) and RDF (Resource Description Framework) in order to provide a multi-thesauri solution for INSPIRE data themes related to the environment. \r\n"},"_id":"environmental-applications-reference-thesaurus","title":"EARTh"},{"description":{"en":"<p>\r\n<a href=\"http://museos.gnoss.com/en/community/mismuseos\">Museos de España</a>\r\n is a directory that allows facet-based searches on a collection with more than 1,500 dynamic pages of public and private Spanish museums. Museos de España works with \r\n<a href=\"http://gnoss.com/\">GNOSS software (RIAM Intelearning Lab)</a>\r\n</p>\r\n\r\n<p>\r\n<a href=\"http://museos.gnoss.com/comunidad/mismuseos\">Museos de España</a>\r\nes un directorio que permite realizar búsquedas facetadas sobre una colección que reúne las fichas de más de 1.500 museos públicos y privados españoles. Museos de España funciona sobre\r\n<a href=\"http://gnoss.com/\">software de GNOSS (RIAM Intelearning Lab)</a>\r\n</p>"},"_id":"museosespania-gnoss","title":"Museos de España, colección de museos públicos y privados españoles (GNOSS)"},{"description":{"en":"Groundbreaking biomedical research requires access to cutting edge scientific resources; however such resources are often invisible beyond the laboratories or universities where they were developed. eagle-i is a national research resource discovery platform to help biomedical scientists search for and find previously invisible, but highly valuable, resources. \r\nResource descriptions collected at each participating institution are freely available as linked open data.\r\nSee: https://www.eagle-i.net/"},"_id":"eagle-i-hawaii","title":"eagle-i @ University of Hawai’i at Mānoa"},{"description":{"en":"The Product Types Ontology provides GoodRelations-compatible OWL DL class definitions for ca. 300,000 types of product or services that have an entry in the English Wikipedia"},"_id":"productontology","title":"Product Types Ontology"},{"description":{"en":"A biomedical ontology in the vaccine domain"},"_id":"bioportal-vo","title":"Vaccine Ontology"},{"description":{"en":"The dataset provides prices of medicinal products marketed in Kingdom of Spain. The dataset was created on the base of information published by Ministerio de Sanidad, Servicios Sociales e Igualdad (http://www.msssi.gob.es/)."},"_id":"es-msssi-drug-prices","title":"List of prices of medicinal products marketed in Kingdom of Spain"},{"description":{"en":"Search for lists, modules & courses\r\n\r\n \r\nBrowse hierarchy | Recent changes"},"_id":"st-andrews-resource-lists","title":"St. Andrews University Resource Lists"},{"description":{"en":"The Vertebrate Trait Ontology is a controlled vocabulary for the description of traits (measurable or observable characteristics) pertaining to the morphology, physiology, or development of vertebrate organisms."},"_id":"bioportal-vt","title":"Vertebrate Trait Ontology"},{"description":{"en":""},"_id":"rkb-explorer-dotac","title":"dotAC (RKBExplorer)"},{"description":{"en":"Descriptors relevant to the experimental conditions of the Nuclear Magnetic Resonance (NMR) component in a metabolomics investigation."},"_id":"bioportal-nmr","title":"NMR-instrument specific component of metabolomics investigations"},{"description":{"en":"The Chemical Data Reporting (CDR) Rule, issued under the Toxic Substances Control Act (TSCA), requires manufacturers (including importers) to give EPA information on the chemicals they manufacture domestically or import into the United States. EPA uses the data to help assess the potential human health and environmental effects of these chemicals and makes the non-confidential business information it receives available to the public."},"_id":"epa-cdr","title":"EPA-CDR"},{"description":{"en":null},"_id":"opendatacommunities-societal-wellbeing-deprivation-imd-employment-score-2010","title":"opendatacommunities-societal-wellbeing-deprivation-imd-employment-score-2010"},{"description":{"en":null},"_id":"opendatacommunities-households-accommodated-per-1000","title":"opendatacommunities-households-accommodated-per-1000"},{"description":{"en":null},"_id":"opendatacommunities-transparency-impact-indicators-housing-starts","title":"opendatacommunities-transparency-impact-indicators-housing-starts"},{"description":{"en":null},"_id":"semanlink","title":"semanlink"},{"description":{"en":"Metrical units for use in conjunction with PATO"},"_id":"bioportal-uo","title":"Units of measurement"},{"description":{"en":"Universal Dependencies is a project that seeks to develop cross-linguistically consistent treebank annotation for many languages, with the goal of facilitating multilingual parser development, cross-lingual learning, and parsing research from a language typology perspective. The annotation scheme is based on (universal) Stanford dependencies (de Marneffe et al., 2006, 2008, 2014), Google universal part-of-speech tags (Petrov et al., 2012), and the Interset interlingua for morphosyntactic tagsets (Zeman, 2008).\r\n\r\nThis dataset refers to UD's Swedish treebank.\r\n"},"_id":"universal-dependencies-treebank-swedish","title":"Universal Dependencies Treebank Swedish"},{"description":{"en":"Organic Edunet Linked Open Data currently contains the metadata of collection of learning objects exposed through the Organic.Edunet portal. These objects come from organizations that have become providers of educational materials on the portal. The topics of the collection include organic agriculture and agroecology.\r\n"},"_id":"organic-edunet","title":"Organic Edunet Linked Open Data"},{"description":{"en":""},"_id":"rkb-explorer-curriculum","title":"ReSIST MSc in Resilient Computing Curriculum (RKBExplorer)"},{"description":{"en":"Phenotypic qualities (properties). This ontology can be used in conjunction with other ontologies such as GO or anatomical ontologies to refer to phenotypes. Examples of qualities are red, ectopic, high temperature, fused, small, edematous and arrested."},"_id":"bioportal-pato","title":"Phenotypic quality"},{"description":{"en":"StatusNet instance hosted at http://equestriarp.net"},"_id":"statusnet-equestriarp-net","title":"statusnet-equestriarp-net"},{"description":{"en":null},"_id":"rkb-explorer-photos","title":"photos"},{"description":{"en":"A knowledge forest is a domain-specific knowledge graph, describing the learning dependencies between topics in a given course. A knowledge forest is constructed by the combination of materialized facet trees of topics and learning dependencies between topics. A facet tree is a set of facets with facet hyponymy. Knowledge fragments from different sources are assembled to corresponding facets of the facet tree to form a materialized facet tree."},"_id":"KnowledgeFusion","title":"Knowledge Forest"},{"description":{"en":"RDF version of the Apertium bilingual dictionary OC-CA. The original dataset (in LMF) comes from http://hdl.handle.net/10230/17107 . The RDF version of the lexica is modelled using lemon (http://lemon-model.net/) and the translation module (http://purl.org/net/translation). More about the Apertium RDF dictionaries at http://linguistic.linkeddata.es/apertium/\r\n"},"_id":"apertium-rdf-oc-ca","title":"Apertium RDF OC-CA"},{"description":{"en":"DBpedia is a \"community effort to extract structured information from Wikipedia and to make this information available on the Web. DBpedia allows you to ask sophisticated queries against Wikipedia, and to link other data sets on the Web to Wikipedia data. We hope this will make it easier for the amazing amount of information in Wikipedia to be used in new and interesting ways, and that it might inspire new mechanisms for navigating, linking and improving the encyclopaedia itself.\" "},"_id":"dbpedia-nl","title":"DBpedia in Dutch"},{"description":{"en":"VA"},"_id":"Vehicule_Autonome","title":"VA"},{"description":{"en":"National Drug File - Reference Terminology Public Inferred Edition, 2008_03_11"},"_id":"bioportal-ndfrt","title":"National Drug File"},{"description":{"en":"The Linked User Feedback (LUF) dataset contains user-generated feedback in the form of ratings, comments and taggings, which are gathered via an API that third party applications can make use of."},"_id":"linked-user-feedback","title":"Linked User Feedback"},{"description":{"en":"Unlimited Access. Search for amazing Non Copyright Music. World-class royalty free music for YouTube videos, Twitch, Facebook, Games, Instagram"},"_id":"inaudio.org","title":"Royalty Free Music"},{"description":{"en":null},"_id":"opendatacommunities-societal-wellbeing-deprivation-imd-housing-rank-la-2010","title":"opendatacommunities-societal-wellbeing-deprivation-imd-housing-rank-la-2010"},{"description":{"en":"This corpus consists of *sentiment* annotations of Amazon reviews for different product categories in the languages German and English. The reviews themselves are not part of this data publication. The annotations are fine-grained, including aspects and subjective phrases. In addition, the relation of an aspect to be a target of a subjective phrase is provided as well as the polarity of the subjective phrase. The corpus consists of 622 English and 611 German reviews for coffee machines, cutlery, microwaves, toaster, trash cans, vacuum cleaner, washing machines and dishwasher. The English corpus is annotated with more than 8000 aspects and 5000 subjective phrases, the German part with more than 6000 aspects and around 5000 subjective phrases (depending on the annotator). Each review is independently annotated by two annotators."},"_id":"usage-review-corpus","title":"USAGE review corpus"},{"description":{"en":null},"_id":"opendatascotland-simd-income-rank","title":"opendatascotland-simd-income-rank"},{"description":{"en":"This dataset contains the probesets used in the Affymetrix microarrays."},"_id":"bio2rdf-affymetrix","title":"Bio2RDF::Affymetrix"},{"description":{"en":"Taxonomic classification of biological entities, data is maintained in ASFIS, by FAO. This model implements the ontology design patterns for taxonomic classifications. See http://ontologydesignpatterns.org. This ontology has been made for testing purposes and should not be used as official expressions of any of the classifications systems modelled. Source: NeOn project, creator: Caterina Caracciolo, KCEW - FA"},"_id":"FAO_species","title":"FAO ASFIS classification of biological entities @PSNC"},{"description":{"en":"A fiscal year is a period used for calculating annual (\"yearly\") financial statements in businesses and other organizations. This dataset lists the variety of fiscal years for different countries and different domains (corporate, government, personal). Based on the information at http://en.wikipedia.org/wiki/Fiscal_year"},"_id":"instance-hub-fiscal-years","title":"Instance Hub Fiscal Years"},{"description":{"en":"Universal Dependencies is a project that seeks to develop cross-linguistically consistent treebank annotation for many languages, with the goal of facilitating multilingual parser development, cross-lingual learning, and parsing research from a language typology perspective. The annotation scheme is based on (universal) Stanford dependencies (de Marneffe et al., 2006, 2008, 2014), Google universal part-of-speech tags (Petrov et al., 2012), and the Interset interlingua for morphosyntactic tagsets (Zeman, 2008).\r\n\r\nThis dataset refers to UD's Catalan treebank.\r\n"},"_id":"universal-dependencies-treebank-catalan","title":"Universal Dependencies Treebank Catalan"},{"description":{"en":"A taxonomy of Amphibia"},"_id":"bioportal-ato","title":"Amphibian taxonomy"},{"description":{"en":"### About\r\n\r\nA thesaurus in 20+ languages for terms related to the environment and environmental data. Published by the European Environment Agency.\r\n\r\nAvailable in RDF without reuse constraints. \r\n\r\n### Openness\r\n\r\n No explicit information found."},"_id":"gemet","title":"GEneral Multilingual Environmental Thesaurus"},{"description":{"en":"UIS data and metadata"},"_id":"uis-linked-data","title":"UNESCO Institute for Statistics (UIS) Linked Data"},{"description":{"en":"The LOD dataset of ASCDC_The Digital Collection of Taiwan's Fish Otoliths (NMMBA-Fish-Otoliths) was created by the Academia Sinica Center for Digital Cultures (ASCDC) and based on the metadata from “The Digital Collection of Taiwan's Fish Otoliths” (國立海洋生物博物館台灣耳石典藏計畫) in the “Taiwan Union Catalog” (數位典藏與數位學習聯合目錄, https://catalog.digitalarchives.tw/Organization/List.jsp?CID=57275). Originally, the metadata was established by the National Museum of Marine Biology and Aquarium (NMMBA, 國立海洋生物博物館) in Taiwan (ROC). It provides information on specimens of fish otoliths collected by the NMMBA and can serve as a database for the study of fish species in the coastal waters in and around Taiwan. Containing 1,804 data records and 191,464 triples, the textual content within the LOD dataset is licensed under the Creative Commons Attribution (CC 0), while the digitized items are under CC-BY-NC-SA."},"_id":"ASCDC-NMMBA-Fish-Otoliths","title":"The Digital Collection of Taiwan's Fish Otoliths (NMMBA-Fish-Otoliths)"},{"description":{"en":"The [Journal of Economic Literature (JEL) Classification System](http://www.aeaweb.org/econlit/jelCodes.php) was created and is maintained by the [American Economic Association](http://www.aeaweb.org/). The AEA provides this widely used resource freely for scholarly purposes.\r\n\r\nThe JEL dataset (as of 2012-09) is mirrored to mint preliminary identifiers for semantic web applications and to publish the translations from the original (English) version to German, French and Spanish which were created by André Davids, K.U. Leuven. This site and especially the translations are not authorized by AEA."},"_id":"jel-classification","title":"JEL Classification"},{"description":{"en":"Anatomy of Bilateria."},"_id":"bioportal-bila","title":"Bilateria anatomy"},{"description":{"en":"Linked TCGA is the RDF version of the Cancer Genome Atlas, a pilot project\r\nstarted in 2005 by the National Cancer Institute (NCI) and the National Human Genome Research Institute (NHGRI). The goal of this project is to catalogue the genomic alternations found in all cancers. Currently, Linked TCGA contains a total of 20.4 billion triples from 27 different cancer types. New data coming frequently. "},"_id":"linked-tcga","title":"Linked TCGA"},{"description":{"en":null},"_id":"opendatacommunities-transparency-input-indicators-local-authorities-working-with-troubled-families","title":"opendatacommunities-transparency-input-indicators-local-authorities-working-with-troubled-families"},{"description":{"en":"Monthly published data on expenditure over £500 including VAT of Lichfield District."},"_id":"lichfield-spending","title":"Lichfield District Council - Spending"},{"description":{"en":"A lodcloud diagram, automatically. Based on quality standards."},"_id":"the-living-lod-cloud","title":"The Living LOD Cloud"},{"description":{"en":"Data exposed: SKOS representation of the RAMEAU book indexing vocabulary, maintained by the French National Library (BnF)\r\nSize of dump and data set: 130 MB uncompressed\r\nNotes: aligned to LCSH and SWD via SKOS mapping links\r\n\r\nPublished as SKOS/RDF by the STITCH project.\r\n\r\nAs of February 2012, URIs of the RAMEAU concepts redirect to equivalent descriptions at data.bnf.fr, see http://data.bnf.fr/semanticweb-en"},"_id":"stitch-rameau","title":"RAMEAU subject headings (STITCH)"},{"description":{"en":"### Description\r\n\r\nArtist information for the [Moseley Folk Festival](http://www.moseleyfolk.co.uk/) from 2006-2009, in RDF.\r\n\r\n*Note* this dataset is no longer updated, it was taken off-line during the shutdown of Kasabi. A dump of the dataset has been [uploaded to the Internet Archive](http://archive.org/details/kasabi)"},"_id":"data-incubator-moseley","title":"Moseley Folk Festival Data"},{"description":{"en":"# A Queryable Dump of the LOD Cloud \r\n\r\nLOD-a-lot democratizes the access to the Linked Open Data (LOD) Cloud by serving more than 28 billion unique triples from 650K datasets over a single self-indexed file. This corpus can be queried online with a sustainable Linked Data Fragments interface, or downloaded and consumed locally: LOD-a-lot is easy to deploy and demands affordable resources (524 GB of disk space and 15.7 GB of RAM), enabling Webscale repeatable experimentation and research even by standard laptops."},"_id":"lod-a-lot","title":"LOD-a-lot"},{"description":{"en":"Collection of the datasets used by papers published in [IEEE VIS](http://ieeevis.org/) and related conferences, provided as [Linked Open Data](http://linkeddata.org/). This dataset is derived from the individual datasets listed in the [ieee-vis](http://datahub.io/group/ieee-vis) group. (Note that this LOD bubble should be connected to http://datahub.io/dataset/rkb-explorer-ieee/related)"},"_id":"twc-ieeevis","title":"IEEE VIS Source Data"},{"description":{"en":"Groundbreaking biomedical research requires access to cutting edge scientific resources; however such resources are often invisible beyond the laboratories or universities where they were developed. eagle-i is a national research resource discovery platform to help biomedical scientists search for and find previously invisible, but highly valuable, resources. \r\nResource descriptions collected at each participating institution are freely available as linked open data.\r\nSee: http://www.eagle-i.net/"},"_id":"eagle-i-utep","title":"eagle-i @ University of Texas at El Paso"},{"description":{"en":"The KUPKB is a collection of omics datasets that have been extracted from scientific publications and other related renal databases. The iKUP browser provides a single point of entry for you to query and browse these datasets. http://www.kupkb.org. SPARQL endpoint http://sparql.kupkb.org/sparql"},"_id":"kupkb","title":"Kidney and Urinary Pathway Knowledge Base"},{"description":{"en":"StatusNet instance hosted at http://quitter.se"},"_id":"statusnet-quitter-se","title":"statusnet-quitter-se"},{"description":{"en":"Universal Dependencies is a project that seeks to develop cross-linguistically consistent treebank annotation for many languages, with the goal of facilitating multilingual parser development, cross-lingual learning, and parsing research from a language typology perspective. The annotation scheme is based on (universal) Stanford dependencies (de Marneffe et al., 2006, 2008, 2014), Google universal part-of-speech tags (Petrov et al., 2012), and the Interset interlingua for morphosyntactic tagsets (Zeman, 2008).\r\n\r\nThis dataset refers to UD's Old_Church_Slavonic treebank.\r\n"},"_id":"universal-dependencies-treebank-old-church-slavonic","title":"Universal Dependencies Treebank Old_Church_Slavonic"},{"description":{"en":"Cadastre offices from Czech land registry"},"_id":"cz-cuzk-cadastre-offices","title":"Cadastre offices from Czech land registry"},{"description":{"en":"This is a dataset containing entities of symptoms and symptom-related facts. It is extracted from eight mainstream healthcare websites, three Chinese encyclopedia sites as well as Electronic Medical Records (EMRs). It also includes the link results between symptoms in our dataset and concepts in UMLS. We provide lookup interface and SPARQL endpoint for our dataset (http://dsc.nlp-bigdatalab.org:8081/search.html)."},"_id":"symptoms-in-chinese","title":"Symptoms in Chinese"},{"description":{"en":"Open Land Use Map is a composite map that is intended to create detailed land-use maps of various regions based on certain pan-Europen datasets such as CORINE Landcover, UrbanAtlas enriched by available regional data. The dataset is derived from available open datasources at different levels of detail and coverage. These data sources include: 1) Digital cadastral maps if available 2) Land Parcel Identification System if Available 3) Urban Atlas(European Environmental Agency) 4) CORINE Land Cover 2006 (European Environmental Agency) 5) Open Street Map The order of the data sources is according to the level of detail and, therefore, the priority for data integration. The dataset includes agriculture related lands (hilucs_code<200) from Czech, Poland, Spain & for few main cities in Czech Republic (centers of NUTS3 regions), Poland (agglomeration areas from Urban Atlas) and Spain (agglomeration areas from Urban Atlas)"},"_id":"OLU","title":"Open Land Use"},{"description":{"en":"### About\r\n\r\nData exposed: Select fields from Entrez Gene records\r\nSize of dump and data set: 7.7 MB\r\nNotes: NCBI Copyright and Disclaimers\r\n\r\n### Openness\r\n\r\nData appears to be in public domain. [Disclaimer](http://www.ncbi.nlm.nih.gov/About/disclaimer.html) says:\r\n\r\n> Information that is created by or for the US government on this site is within the public domain. Public domain information on the National Library of Medicine (NLM) Web pages may be freely distributed and copied. However, it is requested that in any subsequent use of this work, NLM be given appropriate acknowledgment."},"_id":"entrez_gene","title":"Entrez Gene"},{"description":{"en":"Deusto Knowledge Hub es un espacio web común a disposición de la comunidad universitaria de Deusto para descubrir y aportar el conocimiento que generan en la actividad diaria, tanto docentes, investigadores, personal de administración/servicios, como estudiantes. El espacio web permite que un usuario interrogue sobre aquello que quiere buscar obteniendo una información precisa para seguir interrogando. Tambien es posible comenzar la búsqueda atendiendo a las tres grandes áreas universitarias: investigación, docencia e información institucional. \r\n\r\nDeusto Knowledge Hub ha permitido una integración total de la información, sin ser invasivo ni sustituir los sistemas actualmente existentes, que siguen operando y gestionando procesos universitarios. Tras establecer y pensar el Modelo Digital Semántico Universitario se acometió un proceso de representación semántica de todos los contenidos, generando un gran grafo universitario y desplegando las opciones de búsqueda y recuperación de la información más acorde a las necesidades planteadas. \r\n\r\nEl establecimiento de una política de publicación en Linked Open Data por parte de la Universidad de Deusto permite hacer más transparente a la Universidad, generar sistemas de búsqueda que son sistemas de aprendizaje y de gestión en la medida en que el sistema de búsqueda facetada embebe o incorpora gran parte de los informes necesarios por parte de la gestión así como da facilidades a la hora de descubrir conocimiento oculto en las bases de datos y sistemas de gestión universitario que actualmente operan de forma aislada, fragmentada, dispersa, sin integración."},"_id":"dkh-deusto-knowledge-hub","title":"DKH (Deusto Knowledge Hub)"},{"description":{"en":"U.S. Congress data including all Members of Congress since the beginning of the United States, legislative data including bills, sponsorship, roll call votes since around 1990."},"_id":"govtrack","title":"GovTrack.us U.S Congress Legislative Data"},{"description":{"en":"Established in the year 2014 at Talala, Gujarat, India, Vihar Exports are Individual Entrepreneurship firm, involved as the Manufacturer, Retailer, and Wholesaler & Exporter of Indian Spices, Pulses, Seeds, Fresh Agriculture Products, and many more."},"_id":"Vihar_Exports","title":"Vihar Exports"},{"description":{"en":"Norwegian parking in RDF form."},"_id":"norpark2","title":"Parking Dataset"},{"description":{"en":"The semanticscience integrated ontology (SIO) provides a simple, integrated upper level ontology (types, relations) for consistent knowledge representation across physical, processual and informational entities. It provides vocabulary for the Bio2RDF (http://bio2rdf.org) and SADI (http://sadiframework.org) projects."},"_id":"bioportal-sio","title":"SemanticScience Integrated Ontology"},{"description":{"en":"Source : [Sudoc](http://www.sudoc.abes.fr)\r\n\r\nSudoc is the French academic union catalogue, maintained by ABES\r\n\r\nSize : 10 millions bibliographic records\r\n\r\n[Documentation](http://documentation.abes.fr/sudoc/manuels/administration/sudoc_rdf/index.html)\r\n\r\nVocabularies : Dublin Core, FOAF, BIBO, RDA, ISBD, etc.\r\n\r\nLicensing : Licence ouverte / Open licence (http://www.etalab.gouv.fr/pages/Licence_ouverte_Open_licence-5899923.html)\r\n"},"_id":"sudocfr","title":"Sudoc bibliographic data"},{"description":{"en":"An application ontology devoted to the standardized recording of phenotypic data related to hemorrhagic disorders."},"_id":"bioportal-bho","title":"Bleeding History Phenotype"},{"description":{"en":"Swedish Union Catalogue. Swedish National Bibliography and authority data. The National Bibliography and authority data is part of Libris, the Swedish Union Catalogue, and the long term goal is to release the whole database under an open license. The data contains links to Wikipedia, DBPedia, LC Authorities (names and subjects) and VIAF."},"_id":"libris","title":"LIBRIS"},{"description":{"en":"ThinkPhilecom is an online publishing Blog ,Content ,News and Media Platform . Helping you realize BIG things for your blog & side-hustle! Served with a complimentary side of snark and a smile.��"},"_id":"Thinkphile","title":"ThinkPhile (Publisher | Blog , Content ,News , and Media Website)"},{"description":{"en":"### About\r\n\r\nFrom website:\r\n\r\n> Open Energy Info is a platform to connect the world?s energy data. It is a linked open data platform bringing together energy information to provide improved analyses, unique visualizations, and real-time access to data. OpenEI follows guidelines set by the White House?s Open Government Initiative , which is focused on transparency, collaboration, and participation. OpenEI strives to provide open access to this energy information, which will spur creativity and drive innovation in the energy sector.\r\n\r\n### Openness\r\n\r\nProject representatives confirmed [via email](http://lists.w3.org/Archives/Public/public-egov-ig/2010Mar/0008.html):\r\n\r\n> The default license for all information in OpenEI I Creative Commons Zero (http://wiki.creativecommons.org/CC0_FAQ). You can see this documented in a notice shown in the site's editing interface for any page (e.g. http://en.openei.org/w/index.php?title=Colorado&action=edit).\r\n\r\n### Access\r\n\r\nProject representatives confirmed [via email](http://lists.w3.org/Archives/Public/public-egov-ig/2010Mar/0008.html):\r\n\r\n> As for bulk downloads of data... We currently offer the following:\r\n\r\n>> * \"Download CSV\" links are present on certain pages (e.g. http://en.openei.org/wiki/Map_of_Clean_Energy_Companies)\r\n>> * A SPARQL endpoint for querying data (http://en.openei.org/sparql), plus a few examples of its use (http://en.openei.org/resources/)\r\n>> * RDF Exports of any given page via the \"browse properties\" link (e.g. http://en.openei.org/wiki/Special:ExportRDF/Colorado)\r\n\r\n> We realize that we could be doing more in this area, though. A few things we're planning to do:\r\n\r\n>> * Provide a bulk download of our complete RDF (similar to how one can get complete dbpedia exports)\r\n>> * Provide a better way to find various datasets (and download them in various formats, such as RDF and CSV)\r\n>> * Provide a mechanism for submitting bulk datasets which is separate from, but complementary to, our Wiki)"},"_id":"open-energy-info-wiki","title":"OpenEI - Open Energy Info"},{"description":{"en":"Groundbreaking biomedical research requires access to cutting edge scientific resources; however such resources are often invisible beyond the laboratories or universities where they were developed. eagle-i is a national research resource discovery platform to help biomedical scientists search for and find previously invisible, but highly valuable, resources. \r\nResource descriptions collected at each participating institution are freely available as linked open data."},"_id":"eagle-i-montana","title":"eagle-i @ Montana State University"},{"description":{"en":"OBI is an ontology of investigations, the protocols and instrumentation used, the material used, the data generated and the types of analysis performed on it. <br><br>\nTo import,<br>\nLatest version (2011-07-20, OBI ICBO 2011 release): <a href=\"http://purl.obolibrary.org/obo/obi.owl\">http://purl.obolibrary.org/obo/obi.owl</a><br>\n2011-04-20, OBI San Diego 2011 release: <a href=\"http://purl.obolibrary.org/obo/obi/2011-04-20/obi.owl\">http://purl.obolibrary.org/obo/obi/2011-04-20/obi.owl</a>\n<br>\nRC2 2010-10-26: <a href=\"http://purl.obolibrary.org/obo/obi/2010-10-26/obi.owl\">http://purl.obolibrary.org/obo/obi/2010-10-26/obi.owl</a><br>\nRC1 2009-11-09: <a href=\"http://purl.obolibrary.org/obo/obi/2009-11-09/obi.owl\">http://purl.obolibrary.org/obo/obi/2009-11-09/obi.owl</a><br>\n<br>\nLatest release notes at <a href=\"http://purl.obolibrary.org/obo/obi/release-notes.html\">http://purl.obolibrary.org/obo/obi/release-notes.html</a><br>\n\nPlease note: The ontology metrics displayed by BioPortal are incorrect as of 5/19/2011. If you need accurate number you will need to compute them on your own, until further notice. In particular these metrics do not distinguish OBI-developed terms versus terms imported from other ontologies, and do not count existing author or definition annotations"},"_id":"bioportal-obi","title":"Ontology for Biomedical Investigations"},{"description":{"en":"user and blog data"},"_id":"typepad","title":"typepad"},{"description":{"en":"UK's Mortality data per region for the year 2008/09, delivered by the UK Home Office.\r\n\r\nProvenance of this dataset:\r\nhttp://www.statistics.gov.uk/downloads/theme_population/Table_3_Deaths_Area_Local_Authority.xls"},"_id":"enakting-mortality","title":"EnAKTing Mortality Dataset"},{"description":{"en":""},"_id":"zaragoza_turruta","title":"zaragoza_turruta"},{"description":{"en":"The Dataset describing the Shoah domain aims to formally describe concepts and relationships that characterize the process of persecution and deportation of Jews from Italy between 1943 and 1945."},"_id":"shoah-victims-names","title":"Shoah victims? names"},{"description":{"en":"Pleiades is a gazetteer for ancient world studies operated by NYU's Institute for the Study of the Ancient World and supported by the US National Endowment for the Humanities. It is derived originally from the Barrington Atlas of the Greek and Roman World and continually adds new resources. Features include:\r\n\r\n * 31,000+ ancient places\r\n * 26,000+ ancient names and name variants with time periods\r\n * 31,000+ ancient locations\r\n * Permanent, cool URIs for these resources (http://pleiades.stoa.org/places/912910 for example)\r\n * Maps and KML, GeoJSON, Turtle and RDF+XML variants of resources (http://pleiades.stoa.org/news/recently-modified.kml for example)\r\n * Spatial search\r\n * Daily tabular snapshots of location, name, and place data and metadata at http://atlantides.org/downloads/pleiades/dumps\r\n\r\nThere is a detailed [README.txt][readme] with the dumps.\r\n\r\n[readme]: http://atlantides.org/downloads/pleiades/dumps/README.txt\r\n\r\n\r\n#### Description of geodata from the [kml file][kml]\r\n\r\n> This KML file, for use with Google Earth and other compatible systems, contains basic coordinate and name information for ancient Greek and Roman places judged publication-ready by the Managing Editors of the Ancient World Mapping Center's Pleiades community ( http://pleiades.stoa.org ). In this edition, it comprises point features in Lycia/Pamphylia and Cyrenaica only, footprints corresponding to Barrington Atlas Maps 38 and 65. Future editions will expand the spatial coverage of this dataset, and will add more information to the individual placemark descriptions. \r\n> \r\n> This content is original work of the staff of the Ancient World Mapping Center and members of the Pleiades Community. It is built in part on information that was compiled by the American Philological Association's Classical Atlas Project (1988-2000), which was used during development with the permission of the APA.\r\n> \r\n> Despite our best efforts, Pleiades content may contain errors or omissions. These should be assumed to be the responsibility of the project director, and not to reflect the quality and completeness of Classical Atlas Project data nor the opinions of the Atlas Project's scholarly compilers and editors. Pleiades will open to public participation in early 2008. At this time, it will be easy for users to highlight and correct errors and omissions, and to update obsolete information.\r\n> \r\n> Coordinate accuracy and precision are discussed at http://icon.stoa.org/trac/pleiades/wiki/DataPrecisionAndAccuracy . \r\n\r\n### Openness: OPEN\r\n\r\n * License: cc-by (e.g. see bottom of <http://www.unc.edu/awmc/pleiades/bibliography/> or in [kml file][kml])\r\n * Access: bulk and search\r\n * geodata: kml (and single web page) <http://www.unc.edu/awmc/pleiades/data/kml/places-all.kml>\r\n * biblio: html <http://www.unc.edu/awmc/pleiades/bibliography/>\r\n * thesaurus: html <http://pleiades.stoa.org/names/all> with details on <http://pleiades.stoa.org/thesaurus>\r\n\r\n[kml]: http://www.unc.edu/awmc/pleiades/data/kml/places-all.kml\r\n\r\n\r\n"},"_id":"pleiades","title":"Pleiades"},{"description":{"en":null},"_id":"bio2rdf-taxon","title":"bio2rdf-taxon"},{"description":{"en":"RxNorm Vocabulary"},"_id":"bioportal-rxnorm","title":"RxNORM"},{"description":{"en":"dataset of bendev junior"},"_id":"bendevoficial","title":"Bendev Junior"},{"description":{"en":"Index of 1,763 Ancient Greek loanwords in Latin, mapped against the LiLa lemma bank."},"_id":"IGVLL","title":"Index Graecorum Vocabulorum in LiLa"},{"description":{"en":"A community-curated collection of namespace prefix mappings for use in RDF applications.\r\n\r\nFeatures a lookup API and bulk download."},"_id":"prefix-cc","title":"prefix.cc"},{"description":{"en":"This dataset contains the main Index of Multiple Deprivation rankings for 2010. The regions (Lower Super Output Areas) are ordered according to their IMD score, with a rank of 1 indicating the most deprived.\r\n\r\nIt was created from data provided by the Department of Communities and Local Government. See <a href=\"http://www.communities.gov.uk/publications/corporate/statistics/indices2010\">here</a> for details.\r\n\r\n194892 triples."},"_id":"english-index-of-multiple-deprivation-ranking-2010","title":"English Index of Multiple Deprivation Ranking 2010"},{"description":{"en":null},"_id":"bio2rdf-dataset","title":"bio2rdf-dataset"},{"description":{"en":"NeuroLex.org is a freely editable semantic wiki for community-based curation of the terms used in Neuroscience. It is a joint project of the Neuroscience Information Framework and the International Neuroinformatics Coordinating Facility.\r\n\r\nThis Wiki takes advantage of the Semantic Mediawiki software and the Halo Extension and has loaded all the NIF ontology classes. Many of the annotation properties associated with those classes have been tagged with properties here. Restrictions have not yet been ported over. However, in this current version, most classes just have the NIF id and the parent class/category associated with them.\r\n\r\nThe Wiki version of the NIF encodes classes as \"categories\", as in the standard Wikipedia. These class categories themselves have editable pages. This therefore allows anyone to update the definitions of the classes.\r\n\r\nThis Wiki also allows other \"instance\" articles to be tagged with those classes. Properties between classes or between \"instance\" articles can be defined as well. This allows individual terms within \"instance\" articles to be tagged with these properties. There are a few examples of this below.\r\n\r\nBy tagging parts of a page with a property, a query mechanism can reshuffle the data within those pages in tables or by generating dynamic lists. "},"_id":"neurolex-wiki","title":"NeuroLex Wiki"},{"description":{"en":null},"_id":"opendatacommunities-imd-crime-rank-2010","title":"opendatacommunities-imd-crime-rank-2010"},{"description":{"en":"StatusNet instance hosted at http://lydiastench.com"},"_id":"statusnet-lydiastench-com","title":"statusnet-lydiastench-com"},{"description":{"en":"COINS – the Combined On-line Information System – is used by the Treasury to collect financial data from across the public sector to support fiscal management, the production of Parliamentary Supply Estimates and public expenditure statistics, the preparation of Whole of Government Accounts (WGA) and to meet data requirements of the Office for National Statistics (ONS). Up to nine years of data are actively maintained : five historic (or outturn) years, the current year and up to three future (or plan) years depending on the timing of the latest spending review. COINS is a consolidation system rather than an accounts application, so it does not hold details of individual financial transactions by departments.\r\n\r\n\r\npart of package:openuplabs"},"_id":"coins-openuplabs","title":"OpenUpLabs COINS"},{"description":{"en":"Zapis korespondencji między Emilem Szramką a Janem Kuderą."},"_id":"0080-3626","title":"Korespondencja Emila Szramka z Janem Kuderą"},{"description":{"en":"<p>\r\n<p>\r\nDeusto Instituto de Tecnología, <a href=\"http://www.deustotech.deusto.es/\">DeustoTech</a>, anteriormente Tecnológico Fundación Deusto, es un instituto de investigación perteneciente a la Fundación Deusto y la Universidad de Deusto en la Facultad de Ingeniería. DeustoTech ha sido creado con la misión de realizar investigación básica y aplicada en tecnologías de la informática y la información, frente a la transferencia de tecnología y apoyo a las empresas, y fomentar la formación y la excelencia en la educación.\r\n</p>\r\n<p>\r\nDeustoTech trabaja con <a href=\"http://gnoss.com/\">software de GNOSS (RIAM Intelearning Lab)</a>. RIAM es una compañía que desarrolla tecnología semántica para la creación de redes especializadas y mercados enlazados. Este dataset presenta información sobre publicaciones, autores y proyectos de investigación de dos grupos pertenecientes a DeustoTech: <a title=\"DeustoTech Computing,\" href=\"http://gescon.deusto.es:7877/servlet/Satellite/Page/1280393105788/_cast/#1284619588939%231280393105788/c0/UniversidadDeusto/Page/PaginaAsociacionDTTPL\">DeustoTech Computing</a> centrada en la inteligencia computacional aplicada a la seguridad y la optimización de procesos industriales, entre otros campos y\r\n<a title=\"DeustoTech Internet\" href=\"http://www.deustotech.deusto.es/servlet/Satellite/Page/1280393105780/_ingl/#1284619588939%231280393105780/c0/UniversidadDeusto/Page/PaginaAsociacionDTTPL\">DeustoTech Internet</a>, centrada en las soluciones móviles, la computación ubicua y la inteligencia ambiental. Esta información esta publicada en las comunidades gnoss\r\n<a title=\"DeustoTech Internet\" href=\"http://deusto.gnoss.com/comunidad/futureinternet\">DeustoTech Internet</a>\r\ny <a href=\"http://deusto.gnoss.com/comunidad/deustotechcomputing\">DeustoTech Computing</a>.\r\n</p>\r\n\r\n<p>\r\nDeusto Institute of Technology,\r\n<a href=\"http://www.deustotech.deusto.es/\">DeustoTech</a>, Tecnológico Fundación Deusto previously, is a research institute belonging to the Fundación Deusto and the University of Deusto in the Faculty of Engineering. Deustotech has been created to conduct basic and apply research in information technologies, to transfer technology and business support, and to promote training and excellence in education.\r\n</p>\r\n<p>\r\nDeustoTech works with\r\n<a href=\"http://gnoss.com/\">GNOSS software (RIAM Intelearning Lab)</a>. RIAM is a company that develops semantic technology for the creation of specialized networks and linked markets. This dataset provides information about publications, authors and research projects of two groups belonging to Deustotech: DeustoTech Computing, that focus on computational intelligence applied to security and optimization of industrial processes, among other fields; and Deustotech Internet, that focus on mobile solutions, ubiquitous computing and ambient intelligence. This information is posted on the gnoss communities <a title=\"DeustoTech Internet\" href=\"http://deusto.gnoss.com/comunidad/futureinternet\">DeustoTech Internet</a> and <a href=\"http://deusto.gnoss.com/comunidad/deustotechcomputing\">DeustoTech Computing</a>.\r\n</p>"},"_id":"deustotech","title":"DeustoTech (Deusto Institute of Technology)"},{"description":{"en":"Universal Dependencies is a project that seeks to develop cross-linguistically consistent treebank annotation for many languages, with the goal of facilitating multilingual parser development, cross-lingual learning, and parsing research from a language typology perspective. The annotation scheme is based on (universal) Stanford dependencies (de Marneffe et al., 2006, 2008, 2014), Google universal part-of-speech tags (Petrov et al., 2012), and the Interset interlingua for morphosyntactic tagsets (Zeman, 2008).\r\n\r\nThis dataset refers to UD's Persian treebank.\r\n"},"_id":"universal-dependencies-treebank-persian","title":"Universal Dependencies Treebank Persian"},{"description":{"en":"US Embassy cables from Wikileaks"},"_id":"cablegate","title":"cablegate"},{"description":{"en":"Data scraped from [EU Whoiswho](http://europa.eu/whoiswho/public/index.cfm?lang=en), the official directory of the European Union. The dataset contains people, organisations and organisational hierarchy."},"_id":"eu-who-is-who","title":"EU Who Is Who"},{"description":{"en":"Vocabularios de los Códigos de Derecho de la Ciberseguridad en España"},"_id":"urn_webprotege_ontology_c0b8701e-374c-4d5a-bc60-970f0cba1976","title":"Vocabularios de los Códigos de Derecho de la Ciberseguridad en España"},{"description":{"en":"The Anthropological Notation Ontology (ANNO) allows the systematic and standardized classification of recovered bone finds into the skeletal system, the description of the skeletal pieces, and the definition of functions for the derivation of different phenotypes of humans in forensic and historical anthropology. ANNO consists of two components: ANNOdc, a domain-core ontology providing core entities such as basic anatomical categories, and ANNOds, a domain-specific ontology used for annotating structures of the human skeleton. ANNO is integrated into AnthroWorks3D, a photogrammetry pipeline and application for the creation and analysis of 3D-models of human skeletal remains. The integration is based on the three-ontology method with the General Formal Ontology as the top-level ontology, ANNOdc as the task ontology and ANNOds as the domain ontology. Thus, AnthroWorks3D only needs to implement access to the entities (classes and properties) of the task ontology, whereas the entities of the corresponding domain ontology are imported dynamically. ANNO supports the analysis of skeletal and bone finds in forensic and historical anthropology, facilitating the standardization of data annotation and ensuring accurate preservation of information for posterity."},"_id":"anno","title":"ANNO"},{"description":{"en":"Linked Data version of a number of eprints3 archives."},"_id":"rkb-explorer-eprints","title":"ePrints3 Institutional Archive Collection (RKBExplorer)"},{"description":{"en":"Mesure des polluants dans l'air à travers le monde"},"_id":"Qualité_de_l'air","title":"Qualité de l'air"},{"description":{"en":"SUNY Albany Center for Technology in Government I-Choose project"},"_id":"ichoose","title":"ichoose"},{"description":{"en":""},"_id":"rkb-explorer-jisc","title":"UK JISC (RKBExplorer)"},{"description":{"en":"Indian Biodiversity "},"_id":"http:www.semanticweb.orgmcaontologies20188untitled-ontology-47","title":"Indian Biodiversity"},{"description":{"en":"<p> Knowledge plataform launched by Corporate Excellence – Centre for reputation leadership, a new think tank to professionalize management of intangible assets and contribute to the development of strong brands with good reputation and able to compete in to the global market. In this community, members will be able to access to a lot of contents as article, thesis, insights, cases and so on, related to intangible management. In addition, It is possible to share knowledge and make comments.</p>\r\n<p>CE4R works with <a href=\"http://gnoss.com/\">GNOSS software (RIAM Intelearning Lab)</a>. RIAM is a company that develops semantic technology for the creation of specialized networks and linked markets. It includes a facet-based search engine and enriched contexts. Both are developments by GNOSS.</p>\r\n\r\n<p> Plataforma de conocimiento impulsada por Corporate Excellence – Centre for reputation leadership, un laboratorio de ideas para profesionalizar la gestión de los activos intangibles y para contribuir al desarrollo de marcas con una reputación excelente capaces de competir en los mercados globales. En la comunidad podrás acceder a numerosos contenidos (artículos, casos, noticias, tesis, insights, etc.) en torno a la gestión de intangibles, así como comentarlos y compartirlos.</p>\r\n<p>CE4R trabaja con <a href=\"http://gnoss.com/\">software de GNOSS (RIAM Intelearning Lab)</a>. RIAM es una compañía que desarrolla tecnología semántica para la creación de redes especializadas y mercados enlazados. El proyecto Incluye un buscador facetado y contextos enriquecidos. Ambos son desarrollos de GNOSS.</p>"},"_id":"ce4r","title":"CE4R Knowledge Centre Corporate Excellence – Centre for Reputation Leadership"},{"description":{"en":null},"_id":"opendatacommunities-societal-wellbeing-deprivation-imd-education-rank-la-2010","title":"opendatacommunities-societal-wellbeing-deprivation-imd-education-rank-la-2010"},{"description":{"en":"StatusNet instance hosted at http://sweetiebelle.net"},"_id":"statusnet-sweetiebelle-net","title":"statusnet-sweetiebelle-net"},{"description":{"en":"The LOD dataset of ASCDC_Database of Qing Official Titles (DQOT) was created by the Academia Sinica Center for Digital Cultures (ASCDC) and based on the metadata from the online “Database of Qing Official Titles” (清代職官資料庫, https://newarchive.ihp.sinica.edu.tw/officerc/officerkm2?@@0.21081762485249556), which was established and maintained by the Institute of History and Philology, Academia Sinica, Taipei, Taiwan (ROC). The data includes titles of the official positions in the Qing dynasty (1644-1911) and their detailed information, which can serve as authority files or controlled vocabularies for official positions in the study of Chinese history. Containing 6,846 data records and 164,733 triples, the textual content within the LOD dataset is licensed under the Creative Commons Attribution (CC BY)."},"_id":"ASCDC-DQOT","title":"Database of Qing Official Titles (DQOT)"},{"description":{"en":"Contains a comprehensive list of cell lines derived from breast tissue, both normal and pathological. The ontology in built in OWL with cross relation to classes- genetic variation, pathological condition, genes, chemicals and drugs. The relations built enable semantic query across different classes"},"_id":"bioportal-mcbcc","title":"Breast tissue cell lines"},{"description":{"en":"An ontology to describe the genetic interval, and the relations between genetic intervals."},"_id":"bioportal-ogi","title":"Ontology for Genetic Interval"},{"description":{"en":null},"_id":"opendatacommunities-imd-income-rank-la-2010","title":"opendatacommunities-imd-income-rank-la-2010"},{"description":{"en":"This dataset contains detailed information about every institution of public power in the Czech Republic"},"_id":"cz-ovm","title":"Institutions of public power of the Czech Republic"},{"description":{"en":"Hazardous waste information is contained in the Resource Conservation and Recovery Act Information (RCRAInfo), a national program management and inventory system about hazardous waste handlers."},"_id":"epa-rcra","title":"EPA-RCRA"},{"description":{"en":"This is one of several semantic repositories that contains and publishes RDF linked data and co-reference information, forming the underlying distributed storage model behind the RKB Explorer initiative.\r\n\r\nThe data published here comes from the dataset of [Wordnet](http://wordnet.princeton.edu/) published as part of the Billion Triple Challenge.\r\n\r\nServices offered ?\r\n\r\nAll URIs on this domain are resolvable, and deliver html or RDF, depending on content negotiation\r\nBrowse interface for viewing and navigating RDF triples\r\nQuery interface providing access via the SPARQL query language for RDF\r\nCoreference Resolution Service, which identifies and manages duplicate URIs\r\nThe URL of the RDF file in which each URI can be found is also available, under the \"Source\" column when browsing.\r\nThe semantic sitemap is available.\r\nA voiD description is available.\r\nA typical URI you can try resolving is http://wordnet.rkbexplorer.com/id/synset-odd-toed_ungulate-noun-1.\r\n\r\nThe RDF is presented in accordance with the AKT Reference Ontology.\r\n\r\nCurrent statistics for this RDF repository (http://wordnet.rkbexplorer.com/sparql/) ?\r\n\r\nLast data assertion 2011-04-13 00:14:43\r\nNumber of triples 2727068\r\nNumber of symbols 1306694\r\nSize of RDF dataset 851M\r\n \r\nCurrent statistics for this CRS (http://wordnet.rkbexplorer.com/crs/) ?\r\n\r\nLast data assertion 2009-11-14 17:25:07\r\nNumber of URIs 227\r\nNumber of bundles 416\r\nof which active 38\r\n\r\n \r\nThe major funding for the RKB Explorer Initiative was provided by the ReSIST EU-funded Network of Excellence (contract number 026764).\r\n\r\nThese services are hosted by the School of Electronics and Computer Science at the University of Southampton (UK).\r\n\r\nIf you have any enquiries, please email the administrator of this repository."},"_id":"rkb-explorer-wordnet","title":"WordNet (RKBExplorer)"},{"description":{"en":"The project provides a unified way of accessing UK Local Government information. It has information on (as per 2011-12-03):\r\n\r\n* 163 councils\r\n* 11,418 councillors\r\n* 6,728 committees\r\n* 77,830 committee meetings\r\n* 498 hyperlocal sites\r\n* 44,855 documents\r\n* Over 270,956 pieces of data\r\n* 2,368,794 financial transactions\r\n\r\nMost of the data is accessible as XML, JSON and RDF through a simple API (just add .json or .xml to the URL). There is also a Google Gadget, an app for Hyperlocal sites using Ning, and a javascript widget.\r\n\r\n### Openness\r\n\r\n * Open. CC-BY-SA and ODbL. See [license info](http://openlylocal.com/info/licence_info) page.\r\n * No bulk download though API access to most of the underlying data."},"_id":"openlylocal","title":"Openly Local :: Making Local Government More Transparent"},{"description":{"en":"The data is the catalogue records of the Mass Observation Archive, a Designated collection. The Mass Observation Archive is a written record of everyday life in Britain 1937-55. It's a unique insight in to life during the Second World War. \r\n\r\nhttp://data.lib.sussex.ac.uk/data/mass-observation/\r\n\r\nhttp://www.massobs.org.uk/a_brief_history.htm\r\n\r\nThe conversion to Linked Data was carried out as part of the JISC funded SALDA project by the University of Sussex Library with key support from Eduserv."},"_id":"massobservationarchivecatalogue","title":"Mass Observation Archive catalogue"},{"description":{"en":"AemetLinked Data (.es) is an open initiative of the Ontology Engineering Group (OEG) whose aim is to enrich the Web of Data with Spanish geospatial data. This initiative started off by publishing diverse information sources belonging to the Spanish Meteorological Agency."},"_id":"aemet","title":"AEMET metereological dataset"},{"description":{"en":"this is my intro"},"_id":"abhay_intro","title":"my intro"},{"description":{"en":"Foram data from the planktonic foram working group. Hosted at chronos.org. "},"_id":"oceandrilling-forams","title":"Ocean Drilling - Forams"},{"description":{"en":"The LAK dataset provides access to structured fulltext and metadata from key research publications in the field of learning analytics and educational data mining (see http://lak.linkededucation.org for details). It is regularly updated with data, for instance, from the LAK or EDM Conference series. "},"_id":"lak-dataset","title":"Learning Analytics and Knowledge (LAK) Dataset"},{"description":{"en":"NyOn aka Nyaya Ontology is a schema describing core legal concepts to annotate the legal named enitties as well as the concepts for structuring the legal court judgmenet documents that are common to different countries judicial judgments. "},"_id":"https:w3id.orgdefNyOnLegal#","title":"Legal Ontology"},{"description":{"en":"A Knowledge Graph of Relation Extraction Datasets"},"_id":"RELD","title":"RELD"},{"description":{"en":null},"_id":"opendatacommunities-households-2008","title":"opendatacommunities-households-2008"},{"description":{"en":"Indian publication house"},"_id":"Cine_Figure","title":"Cine Figure"},{"description":{"en":"Related to emergency response"},"_id":"Earthquake","title":"Emergency situation"},{"description":{"en":"A structured controlled vocabulary of stage-specific anatomical structures of the human. It has been designed to mesh with the mouse anatomy and incorporates each Carnegie stage of development (CS1-20). The abstract version of the human developmental anatomy ontology compresses all the tissues present over Carnegie stages 1-20 into a single hierarchy. The heart, for example, is present from Carnegie Stage 9 onwards and is thus represented by 12 EHDA IDs (one for each stage). In the abstract mouse, it has a single ID so that the abstract term given as just <i>heart</i> really means <i>heart (CS 9-20)</i>. Timing details will be added to the abstract version of the ontology in a future release."},"_id":"bioportal-ehdaa2","title":"Human developmental anatomy, abstract version, v2"},{"description":{"en":"Creating a comprehensive hierarchical controlled vocabulary for human disease representation."},"_id":"bioportal-doid","title":"Human disease ontology"},{"description":{"en":"StatusNet instance hosted at http://fcestrada.com"},"_id":"statusnet-fcestrada-com","title":"statusnet-fcestrada-com"},{"description":{"en":"StatusNet instance hosted at http://legadolibre.com.ar"},"_id":"statusnet-legadolibre-com-ar","title":"statusnet-legadolibre-com-ar"},{"description":{"en":"##Klappstuhlclub\r\nhttp://klappstuhlclub.de \r\nThe Klappstuhlclub (Folding chair club) is meeting every week (mostly Wednesday evening) in cities around the globe. The focus is on Germany currently (Leipzig over 300 meetings, Berlin over 200 meetings), but also Lisbon, France and USA.\r\n\r\n### Get involved\r\nPlease email if: \r\n1. You want to join the Klappstuhlclub or you want to create a Klappstuhlclub in your city . (kurzum@googlemail.com)\r\n2. You want to know how we made a simple Wordpress blog Linked Data ready and all that. (hellmann@informatik.uni-leipzig.de )\r\n\r\n### License \r\nData is protected for privacy issues.\r\n\r\n### Semantic Wiki Wordpress\r\nThe data was created with a Wordpress plugin see\r\nhttp://bitbucket.org/aksw/rdf2wp/overview\r\n\r\nEach Blogpost is available as Linked Data. User enter data the same way as in Wikipedia infoboxes (with a Wiki template)\r\n\r\nSPARQL endpoint (Virtuoso) is here:\r\nhttp://klappstuhlclub.de/sparql\r\n\r\n"},"_id":"klappstuhlclub","title":"Klappstuhlclub"},{"description":{"en":"imagery bailingniao"},"_id":"imagery_bailingniao","title":"imagery bailingniao"},{"description":{"en":"The National Tibetan Plateau Data Center (TPDC) is one of the first of 20 national data centers established in 2019 by the Ministry of Science and Technology and the Ministry of Finance of the People’s Republic of China. It is the only data center in China with the most complete scientific data for the Tibetan Plateau and surrounding regions. TPDC is hosted by the Institute of Tibetan Plateau Research of Chinese Academy of Sciences (ITPCAS), with support from Lanzhou University, Beijing Normal University, and Computer Network Information Center, Chinese Academy of Sciences. ITPCAS also hosts the Third Pole Environment (TPE) International Program Office.Observation dataset of forest ecosystems on the eastern margin of the Tibet Plateau (2005-2008) mainly contains the qinghai-tibet plateau edge site forest ecosystem experimental station observation data such as weather, soil, vegetation, mainly from 2005-2008."},"_id":"TP-data","title":"Observation dataset of forest ecosystems "},{"description":{"en":"A Latin-Portuguese dictionary linked to the LiLa Knowledge Base."},"_id":"VelezIndexTotiusArtis","title":"Velez (1744) Index Totius Artis in LiLa"},{"description":{"en":"Growth, trait and development ontology for soybean"},"_id":"bioportal-soy","title":"SoyOntology"},{"description":{"en":"The Global Agricultural Concept Space (GACS) is a hub for concepts related to agriculture, in multiple languages, for use in Linked Data. GACS Core is the first of potentially many concept schemes in this larger concept space. The idea for GACS emerged out of discussions at the World Congress of IAALD, the International Association of Agricultural Information Specialists, in July 2013. The Food and Agricultural Organization of the United Nations (FAO), CAB International (CABI), and the National Agricultural Library of the USA (NAL) agreed in October 2013 to explore the feasibility of developing a shared concept scheme by integrating their three thesauri: the AGROVOC Concept Scheme, the CAB Thesaurus (CABT), and NAL Thesaurus (NALT). In the GACS vision, the integration of these three thesauri is but the first step towards the realization of a hub that links to and from the concept schemes beyond the initial three, and in multiple language areas."},"_id":"GACS","title":"Global Agricultural Concept Space"},{"description":{"en":null},"_id":"opendatacommunities-impact-indicators-housing-starts","title":"opendatacommunities-impact-indicators-housing-starts"},{"description":{"en":"Observational Modeling"},"_id":"bioportal-oboe","title":"OBOE"},{"description":{"en":"An ontology for spider comparative biology including anatomical parts (e.g. leg, claw), behavior (e.g. courtship, combing) and products (i.g. silk, web, borrow)."},"_id":"bioportal-spd","title":"Spider Ontology"},{"description":{"en":"Semantic XBRL is a dataset that contains RDF generated from the data submitted as XBRL to the U.S Securities and Exchange Commission (SEC).\r\n\r\nSemantic data is generated by translating XBRL to RDF using [OWL ontologies derived from the XBRL XML Schemas](http://rhizomik.net/ontologies/bizontos)."},"_id":"semantic-xbrl","title":"Semantic XBRL Financial Data"},{"description":{"en":"StatusNet instance hosted at http://ourcoffs.org.au"},"_id":"statusnet-ourcoffs-org-au","title":"statusnet-ourcoffs-org-au"},{"description":{"en":"Medical Subjects Headings Thesaurus 2012, OWL version"},"_id":"bioportal-mesh-owl","title":"MESH Thesaurus (OWL version)"},{"description":{"en":"x"},"_id":"Rozprawa,_artykuł","title":"x"},{"description":{"en":"Dataset that was used for the Billion Triples Challenge 2010:\r\n\r\nSee: http://challenge.semanticweb.org/\r\n\r\nThe major part of the dataset was crawled from the Web of Linked Data during March/April 2010 based on datasets provided by Falcon-S, Sindice, Swoogle, SWSE, and Watson using the MultiCrawler/SWSE framework. We also included partial data from data.gov and data.gov.uk. \r\n\r\nThe downloaded content was parsed using the Redland toolkit with the rdfxml parser. We rewrote blank node identifiers to include the data source in order to provide unique blank nodes for each data source, and appended the data source to the output file. The data is encoded in NQuads format and split into chunks of 10m statements each. \r\n\r\nThe datasets of the Billion Triples Challenges 2008 and 2009 are also still available."},"_id":"billion_triples_challenge_dataset_2010","title":"Billion Triples Challenge Dataset 2010"},{"description":{"en":"The Systems Biology Ontology is a set of controlled, relational vocabularies of terms commonly used in Systems Biology, and in particular in computational modeling. The ontology consists of six orthogonal vocabularies defining: the roles of reaction participants (eg. \"substrate\"), quantitative parameters (eg. \"Michaelis constant\"), a precise classification of mathematical expressions that describe the system (eg. \"mass action rate law\"), the modeling framework used (eg. \"logical framework\"), and a branch each to describe entity (eg. \"macromolecule\") and interaction (eg. \"process\") types, and a branch to define the different types of metadata that may be present within a model.\n\nSBO terms can be used to introduce a layer of semantic information into the standard description of a model, or to annotate the results of biochemical experiments in order to facilitate their efficient reuse. SBO is an Open Biomedical Ontologies (OBO) candidate ontology, and is free for use. More information about SBO can be found from the project FAQ, at http://www.ebi.ac.uk/sbo/\n\nSBO is a project of the BioModels.net effort and is developed through community collaboration."},"_id":"bioportal-sbo","title":"Systems Biology"},{"description":{"en":"Linked Data representations of common entities and concepts that occur in many datasets."},"_id":"twc-hub","title":"Instance Hub (all)"},{"description":{"en":"ThIST is the Italian Thesaurus of Sciences of the Earth, which has been exposed as Linked Data in the context of LusTRE, a framework currently under development within the EU project eENVplus (CIP-ICT-PSP grant No. 325232) that aims at combining existing thesauri to support the management of environmental resources. LusTRE considers the heterogeneity in scopes and levels of abstraction of environmental thesauri as an asset when managing environmental data, it exploits linked data best practices SKOS (Simple Knowledge Organization System) and RDF (Resource Description Framework) in order to provide a multi-thesauri solution for INSPIRE data themes related to the environment. \r\nThe ThIST content is made available by Geological Survey of Italy in ISPRA (Istituto Superiore per la\r\nProtezione e la Ricerca Ambientale). It is the result of a nearly total revision of the thesaurus born by the integration among the terminological database of the former Library of the Italy Geological Service and the thesaurus published by the CNR in 1997. ThIST is already used for the cataloguing of the biblio-cartographic material (monographs, articles of periodicals, papers) possessed by the Library and the recovery of the related information.\r\nThe ThIST content is made available by ISPRA (Istituto Superiore per la\r\nProtezione e la Ricerca Ambientale). It is the result of a nearly total revision of the thesaurus born by the integration among the terminological database of the former Library of the Italy Geological Service and the thesaurus published by the CNR in 1997. ThIST is already used for the cataloguing of the biblio-cartographic material (monographs, articles of periodicals, papers) possessed by the Library and the recovery of the related information."},"_id":"thist","title":"ThIST"},{"description":{"en":"<p>\r\n<a href=\"http://researchgroups.gnoss.com/\">DBLP Research Groups (University of Deusto-GNOSS) </a>\r\nis the platform for creating research communities enriched with scientific contexts from\r\n<a href=\"http://www.informatik.uni-trier.de/~ley/db/\">DBLP</a>\r\n. The recommendation contexts of Deusto-GNOSS Research Groups are a part of an index with over two million scientific publications in IT developed by GNOSS in collaboration with the\r\n<a href=\"http://www.deusto.es/\">University of Deusto</a>\r\n. You can use the contexts for your community or research group.\r\n</p>\r\n<p>\r\n<a href=\"http://researchgroups.gnoss.com/\">DBLP Research Groups (University of Deusto-GNOSS) </a>\r\nworks with\r\n<a href=\"http://gnoss.com/\">GNOSS software (RIAM Intelearning Lab)</a>\r\n. RIAM is a company that develops semantic technology for the creation of specialized networks and linked markets. GNOSS works within the philosophy of Open Data and proposes a solution so that data can be linked (Linked Data). Data are expressed in OWL-RDF files. We are implementing semantic technology in Education (educational communities and social learning), semantic catalogs for companies, corporate e-commerce portals and platforms to realize the concept of Open Government and Enterprise 2.0 (corporate social networks).\r\n</p>"},"_id":"dblp-deusto-gnoss","title":"DBLP Research Groups (University of Deusto-GNOSS)"},{"description":{"en":"A mediator that translates original Eurostat files to RDF at lookup time. Total dataset size approx. 40 million triples. Updated twice daily.\r\n\r\nIncludes visualisation demos at http://estatwrap.ontologycentral.com/"},"_id":"linked-eurostat","title":"Linked Eurostat (OntologyCentral)"},{"description":{"en":"Open Dataspaces hosted at openlinksw.com"},"_id":"openlinksw-dataspaces","title":"openlinksw dataspaces"},{"description":{"en":"The Open Transport Map displays a road network which – is suitable for routing – – visualizes average daily Traffic Volumes for the whole EU – – visualizes time related Traffic Volumes (in OTN Pilot Cities - Antwerp, Birmingham, Issy-le-Moulineaux, Liberec region) – Talking technical, the Open Transport Map – can serve as a map itself as well as a layer embedded in your map – – is derived from the most popular open dataset - OpenStreetMap – – is accessible via both GUI and API – – covers the whole European Union .Presently the OTM linked dataset comprise data from Czech republic, Spain and Poland. RoadLinks only for 'FunctionalRoadClassValue' of type: (‘mainRoad’, ’firstClass’, ’secondClass’, ’thirdClass’, ’fourthClass’)"},"_id":"OTM","title":"Open Transport Map @PSNC"},{"description":{"en":"A vocabulary for clinical care, translational and basic research, and public information and administrative activities."},"_id":"bioportal-ncit","title":"NCI Thesaurus"},{"description":{"en":"The BioAssay Ontology (BAO) describes chemical biology screening assays and their results including high-throughput screening (HTS) data for the purpose of categorizing assays and data analysis. BAO is an extensible, knowledge-based, highly expressive (currently SHOIQ(D)) description of biological assays making use of descriptive logic based features of the Web Ontology Language (OWL). BAO currently has over 1000 classes and also makes use of several other ontologies. It describes several concepts related to biological screening, including Perturbagen, Format, Meta Target, Design, Detection Technology, and Endpoint. Perturbagens are perturbing agents that are screened in an assay; they are mostly small molecules. Assay Meta Target describes what is known about the biological system and / or its components interrogated in the assay (and influenced by the Perturbagen). Meta target can be directly described as a molecular entity (e.g. a purified protein or a protein complex), or indirectly by a biological process or event (e.g. phosphorylation). Format describes the biological or chemical features common to each test condition in the assay and includes biochemical, cell-based, organism-based, and variations thereof. The assay Design describes the assay methodology and implementation of how the perturbation of the biological system is translated into a detectable signal. Detection Technology relates to the physical method and technical details to detect and record a signal. Endpoints are the final HTS results as they are usually published (such as IC50, percent inhibition, etc.). BAO has been designed to accommodate multiplexed assays. All main BAO components include multiple levels of sub-categories and specification classes, which are linked via object property relationships forming an expressive knowledge-based representation."},"_id":"bioportal-bao","title":"BioAssay Ontology"},{"description":{"en":"Universal Dependencies is a project that seeks to develop cross-linguistically consistent treebank annotation for many languages, with the goal of facilitating multilingual parser development, cross-lingual learning, and parsing research from a language typology perspective. The annotation scheme is based on (universal) Stanford dependencies (de Marneffe et al., 2006, 2008, 2014), Google universal part-of-speech tags (Petrov et al., 2012), and the Interset interlingua for morphosyntactic tagsets (Zeman, 2008).\r\n\r\nThis dataset refers to UD's Spanish treebank.\r\n"},"_id":"universal-dependencies-treebank-spanish","title":"Universal Dependencies Treebank Spanish"},{"description":{"en":"SNP-Ontology is a domain ontology that provides a formal representation (OWL-DL) of genomic variations. Despite its name, SNP-Ontology, is not limited to the representation of SNPs but it encompasses genomic variations in a broader meaning. SNP-Ontology is general enough to enable the representation of variations observed in genome of various species. Latest versions of SNP-Ontology include the representation of haplotype and of CNV. The unambiguous representation of genomic variations provided by SNP-Ontology enables to integrate heterogeneous data related to genomic variations. To achieve this goal SNP-Ontology enables (1) to represent one variation in accordance with various ways that exist for describing it, (2) to represent the equivalence between two distinct descriptions of one variation, and (3) to represent correspondence between a genomic variation and its outcome at the transcriptome and proteome levels."},"_id":"bioportal-snpo","title":"SNP-Ontology"},{"description":{"en":null},"_id":"opendatacommunities-societal-wellbeing-deprivation-imd-health-score-2010","title":"opendatacommunities-societal-wellbeing-deprivation-imd-health-score-2010"},{"description":{"en":null},"_id":"flybase","title":"Flybase"},{"description":{"en":"TOPMODEL is a physically-based, semi-distributed, variable-source area rainfall-runoff model, and is based on the Topographic Wetness Index (TWI)."},"_id":"TOPMODEL","title":"Topography based Hydrological Model"},{"description":{"en":"The HGNC gives unique and meaningful names to every human gene. For each known human gene we approve a gene name and symbol (short-form abbreviation). All approved symbols are stored in the HGNC database."},"_id":"bio2rdf-hgnc","title":"Bio2RDF::Hgnc"},{"description":{"en":"The DanNet wordnet as published as part of the Open Multilingual WordNet. The goal of Open Multilingual WordNet is to make it easy to use wordnets in multiple languages. The individual wordnets have been made by many different projects and vary greatly in size and accuracy. We have (i) extracted and normalized the data, (ii) linked it to Princeton WordNet 3.0 and (iii) put it in one place. The Open Multilingual Wordnet and its components are open: they can be freely used, modified, and shared by anyone for any purpose. "},"_id":"omwn-dan","title":"DanNet WordNet (as part of Open Multilingual WordNet)"},{"description":{"en":"StatusNet instance hosted at http://kenzoid.com"},"_id":"statusnet-kenzoid-com","title":"statusnet-kenzoid-com"},{"description":{"en":"SAO describes structures from the dimensional range encompassing cellular and subcellular structure, supracellular domains, and macromolecules."},"_id":"bioportal-sao","title":"Subcellular Anatomy Ontology (SAO)"},{"description":{"en":"Linked Data version of STITCH which contains information on chemicals and proteins as well as their interactions and links. The links were derived from experiments, databases and the literature. STITCH contains interactions for over 68,000 chemicals and over 1.5 million proteins in 373 species."},"_id":"fu-berlin-stitch","title":"STITCH: Chemical-Protein Interactions"},{"description":{"en":"The ontology AVsOnto is built to represent knowledge in the context of autonomous vehicle systems designed for parcel delivery. AVsOnto follows a standardized process to identify and model the critical tasks, interactions, and relationships between entities such as vehicles, parcels, routes, traffic conditions, and environmental factors. This ontology enables the seamless transformation of real-time raw data, such as vehicle status and traffic updates, into a structured ontological model represented in the OWL language."},"_id":"AVsOnto","title":"AVsOnto"},{"description":{"en":"### About\r\n\r\nData exposed: Linguistic Data\r\nSize of dump and data set: ~40MB\r\n\r\n### Openness\r\n\r\nDownload dump: CC-BY-SA 3.0 license\r\n\r\nThe web service additionally provides some parts that are not fully open, e.g. English language names taken from the Ethnologue Language Codes database are subject to specific redistribution conditions. "},"_id":"lexvo","title":"Lexvo"},{"description":{"en":"The collection of data and image information obtained from a digitized plant specimen is called a digitized plant specimen record , which is generally composed of the collection, identification, collection and image data of the specimen. Plant photo data is the data generated in the process of collecting plant digital images by digital cameras or scanners for wild or cultivated plant groups, including plant images, identification species information, shooting time, location, habitat and other data. Plant image is the most direct way to understand plant characters, and it is also an important material for plant taxonomy and related research. Plant images can not only be used as research data in scientific research, scientific popularization, species identification and other fields, but also the time, location, habitat and other information recorded during shooting or collection can be used as important observation data to effectively supplement the shortcomings of traditional species information collection methods such as plant specimen collection in timeliness and completeness. In addition, the plant image of classification and identification can also be used as the basic data of computer vision technology research for the development of plant image intelligent recognition system and other rapid identification technology. The directory contains 115788 names, including 45063 accepted names and 70725 synonyms, belonging to 483 families, 4253 genera, 37689 species and 7374 species. It also contains the original published literature corresponding to each name and the provincial distribution information corresponding to each accepted name."},"_id":"plant-specimen","title":"digitized plant specimen"},{"description":{"en":"This dataset contains the triples linking the LASLA corpus to the LiLa LemmaBank.\nThe LASLA Latin corpus consists of a large amount of texts of Classical Latin, semi-automatically lemmatized and annotated with morphosyntactic information, with full manual verification. "},"_id":"LASLA","title":"LASLA corpus in LiLa"},{"description":{"en":"Linked Open Colors, dataset created for the April Fools' Day of 2011 as an informal initiative for promoting Linked Data. \r\nhttp://lists.w3.org/Archives/Public/public-lod/2011Apr/0003.html"},"_id":"loc","title":"Linked Open Colors"},{"description":{"en":"Data cube containing statistical data about average salaries in a given year and region of Czech Republic according to Czech Statistical Office."},"_id":"cz-czso-average-salaries","title":"Average salaries in regions of Czech republic"},{"description":{"en":"lists, modules & courses of the trent university of nottinghame"},"_id":"nottingham-trent-university-resource-lists","title":"Nottingham Trent University Resource Lists"},{"description":{"en":"An application ontology for the domain of Sleep Medicine"},"_id":"bioportal-sdo","title":"Sleep Domain Ontology"},{"description":{"en":"The FHHO facilitates representing the family health histories of persons related by biological and/or social family relationships (e.g. step, adoptive) who share genetic, behavioral, and/or environmental risk factors for disease. SWRL rules are included to compute 3 generations of biological relationships based on parentage and family history findings based on personal health findings."},"_id":"bioportal-fhho","title":"Family Health History Ontology"},{"description":{"en":"The Catalogue of Life in China 2023 edition includes a total of 148,637 species and 22,468 genus. Following the data standards of Species 2000, each species in the list contains data on scientific names, synonyms, aliases, literature, taxonomic systems, distribution areas, Chinese names, etc. The Catalogue of Life in China 2023 edition was released by the Institute of Zoology, Chinese Academy of Sciences (CAS), which is a research institution focusing on zoological studies. It maintains rich data resources, covering the following aspects:Species databases, Specimen and specimen collection data,Ecological monitoring data, Genetic information and genomic data,Literature and publications."},"_id":"CoLChina_sp2000","title":"Catalogue of Life in China 2003 Edition"},{"description":{"en":"Hidden "},"_id":"Names","title":"Usernames "},{"description":{"en":"The digitized historical manuscripts held in the special collections of the Norwegian university of science and technology (NTNU).\r\n\r\nThe data is a catalogue of manuscripts held by NTNU and these are catalogued directly as RDF.\r\n\r\nThe data is the usage catalogue for the Gunnerus Library Special Collections, and drives their web presences. The data is under constant development and the dataset is growing, and must be seen as unstable. Links to fulltext will be added as these are digitized\r\n\r\n"},"_id":"ntnusc","title":"NTNU special collections"},{"description":{"en":"The Cell Ontology is designed as a structured controlled vocabulary for cell types. This ontology was constructed for use by the model organism and other bioinformatics databases, where there is a need for a controlled vocabulary of cell types. This ontology is not organism specific; indeed it includes cell types from prokaryotes to mammals, including plants and fungi. A full description of the Cell Ontology can be found in <a href=\"http://genomebiology.com/2005/6/2/R21\">Bard, Rhee and Ashburner. 2005. An Ontology for Cell Types</a>."},"_id":"bioportal-cl","title":"Cell type"},{"description":{"en":"Lexin, a bilingual dictionary in RDF.\r\n"},"_id":"lexin-rdf","title":"LEXIN-RDF"},{"description":{"en":"The Adverse Event Reporting Ontology (AERO) is an ontology aimed at supporting clinicians at the time of data entry, increasing quality and accuracy of reported adverse events."},"_id":"bioportal-aero","title":"Adverse Event Reporting ontology"},{"description":{"en":"RDF version of the Apertium bilingual dictionary CA-IT. The original dataset (in LMF) comes from http://hdl.handle.net/10230/17105. The RDF version of the lexica is modelled using lemon (http://lemon-model.net/) and the translation module (http://purl.org/net/translation). More about the Apertium RDF dictionaries at http://linguistic.linkeddata.es/apertium/"},"_id":"apertium-rdf-ca-it","title":"Apertium RDF CA-IT"},{"description":{"en":"Universal Dependencies is a project that seeks to develop cross-linguistically consistent treebank annotation for many languages, with the goal of facilitating multilingual parser development, cross-lingual learning, and parsing research from a language typology perspective. The annotation scheme is based on (universal) Stanford dependencies (de Marneffe et al., 2006, 2008, 2014), Google universal part-of-speech tags (Petrov et al., 2012), and the Interset interlingua for morphosyntactic tagsets (Zeman, 2008).\r\n\r\nThis dataset refers to UD's Finnish treebank.\r\n"},"_id":"universal-dependencies-treebank-finnish","title":"Universal Dependencies Treebank Finnish"},{"description":{"en":"ABS data and metadata"},"_id":"abs-linked-data","title":"Australian Bureau of Statistics (ABS) Linked Data"},{"description":{"en":"The Global Hunger Index (GHI) offers a useful multidimensional overview of global hunger. The 2011 GHI is the sixth in an annual series that records the state of global, regional, and national hunger.\r\n\r\nThe GHI captures three dimensions of hunger: insufficient availability of calories, shortfalls in the nutritional status of children, and child mortality. Accordingly, the Index includes the following three equally weighted indicators: the proportion of people who are undernourished, as estimated by the Food and Agriculture Organization of the United Nations (FAO); the prevalence of underweight in children under the age of five, as compiled by the World Health Organization (WHO); and the under-five mortality rate, as reported by the United Nations Children’s Fund (UNICEF). The 2011 index includes GHI values for four time periods, recalculated using the latest source data, to allow an exploration of change over time. "},"_id":"global-hunger-index-2011","title":"Global Hunger Index (2011)"},{"description":{"en":""},"_id":"rkb-explorer-deepblue","title":"Deep Blue (RKBExplorer)"},{"description":{"en":"The Kalikratis municipalities project represents an attempt to retrieve useful information from Hellenic municipalities of Kalikratis program. Kalikratis program, is called the Greek law, which implements the administrative division of Greece into new municipalities. The main goal of this attempt is to gather all the related to these municipalities data to a united space, so as to be used by innovative applications and services. Another goal is to enrich Greek open data."},"_id":"kallikratis-municipalities","title":"Kallikratis municipalities"},{"description":{"en":"\"Freebase is an open database of the world?s information. It is built by the community and for the community?free for anyone to query, contribute to, built applications on top of, or integrate into their websites.\"\n\n### Openness: OPEN\n\n * License: CC-BY for data. Variety of open source licenses (or PD) for text blurbs & images.\n * Access: API + bulk.<http://www.freebase.com/view/allDomains>\n * bulk: yes. <http://download.freebase.com/>\n * api: yes. <http://www.freebase.com/view/freebase/api>\n\nTriple count and link statistics provided by Freebase contributor Tom Morris\n\n### RDF data and URIs\n\nFreebase has [an RDF service](http://rdf.freebase.com/) that exposes URIs and generates RDF descriptions for all Freebase topics."},"_id":"freebase","title":"1989shack Inc. E-Commerce "},{"description":{"en":"It is an ontology for engineering equipment"},"_id":"manish","title":"engineering equipment ontology"},{"description":{"en":"The [Fishes of Texas Project](http://www.fishesoftexas.org) is a multi-year research project that attempts to consolidate, standardize and fully georeference all of the known scientific information on the freshwater fishes of Texas. This package is the Linked Data version of the project's published data.\r\n\r\n### Not yet fully available\r\n\r\nThis dataset is only available from temporary URIs as of September 2010, see example resource links.\r\n\r\nA SPARQL endpoint is planned here: [http://data.fishesoftexas.org/sparql](http://data.fishesoftexas.org/sparql)"},"_id":"fishes-of-texas","title":"Fishes of Texas"},{"description":{"en":"A top-domain ontology that provides definitions for the foundational entities of biomedicine as a basic vocabulary to unambiguously describe facts in this domain."},"_id":"bioportal-bt","title":"BioTop"},{"description":{"en":"Multilingual (English and French) Heart Failure Terminology linked with SNOMED-CT and ICD-10. Contains also mappings with UMLS and ICPC2.\r\nEach Term Entry has several lexical representations, technical, lay-term and popular.\r\nThe terminology model is based on the Terminological Markup Framework (ISO 16642) and Data Categories from ISO 12620.\r\nThis is still a work-in-progress version of the resource\r\n\r\nThe license is Creative Commons Attribution Non-Commercial Share-Alike\r\nhttp://creativecommons.org/licenses/by-nc-sa/2.0/"},"_id":"heartfailure","title":"Meriterm Heart Failure Multilingual Terminology"},{"description":{"en":"StatusNet instance hosted at http://ludost.net"},"_id":"statusnet-ludost-net","title":"statusnet-ludost-net"},{"description":{"en":null},"_id":"ciard-ring","title":"ciard-ring"},{"description":{"en":"SIDER contains information on marketed medicines and their recorded adverse drug reactions. The information is extracted from public documents and package inserts. The available information include side effect frequency, drug and side effect classifications as well as links to further information, for example drug?target relations."},"_id":"bio2rdf-sider","title":"Bio2RDF::Sider"},{"description":{"en":"This is the Galician EuroWordNet-Lemon lexicon. The lexicon was created from the Spanish Word-Net-LMF lexicon which is part of the Multilingual Central Repository (MCR http://adimen.si.ehu.es/web/MCR). The lexicon conforms to the 'lemon' specification.\r\n\r\nGloss and rgloss relations between synsets are not included. For LexicalEntries and LexicalSenses, original ID's are encoded in dcterms:source and the URIs follow the pattern '../lemma-PoS'. For Synsets and Translations original IDs are used in the URIs (.../ID). Synset rdfs:labels were generated as follows:\r\n\r\nINSERT {?synset rdfs:label ?labels } WHERE {SELECT ?synset (GROUP_CONCAT(?label; separator = ' ; ') as ?labels) { ?sense lemon:reference ?synset; rdfs:label ?label . } GROUP BY ?synset }\r\n\r\nhttp://lodserver.iula.upf.edu/id/WordNetLemon/GL/"},"_id":"galician-eurowordnet-lemon-lexicon-3-0","title":"Galician EuroWordNet-lemon lexicon (3.0)"},{"description":{"en":"Aivaras Bacevičius"},"_id":"Bacevicius.lt","title":"Bacevicius.lt"},{"description":{"en":"Groundbreaking biomedical research requires access to cutting edge scientific resources; however such resources are often invisible beyond the laboratories or universities where they were developed. eagle-i is a national research resource discovery platform to help biomedical scientists search for and find previously invisible, but highly valuable, resources. \r\nResource descriptions collected at each participating institution are freely available as linked open data.\r\nSee: http://www.eagle-i.net/"},"_id":"eagle-i-tsu","title":"eagle-i @ Texas Southern University"},{"description":{"en":"Dataset includes initial set of interlinked authority records at work, subject heading and personal name level, which is supposed to be expanded in future to represent catalogue of the National Library of Russia."},"_id":"nlr-dataset-mod","title":"National Library of Russia BibCore Dataset"},{"description":{"en":"The BioPAX ontology (www.biopax.org) is a standard language for formally representing biological pathways. BioPAX Level 3 supports the representation of metabolic pathways, signal transduction pathways, protein-protein interaction networks, gene regulatory networks and genetic interactions."},"_id":"bioportal-bp","title":"BioPAX"},{"description":{"en":"FMA is a domain ontology that represents a coherent body of explicit declarative knowledge about human anatomy. The description of how this OWL version was generated is in \"Pushing the Envelope: Challenges in a Frame-Based Representation of Human Anatomy\" by N. F. Noy, J. L. Mejino, C. Rosse, M. A. Musen: \nhttp://bmir.stanford.edu/publications/view.php/pushing_the_envelope_challenges_in_a_frame_based_representation_of_human_anatomy"},"_id":"bioportal-fma","title":"Foundational Model of Anatomy"},{"description":{"en":"The isiXhosa Lexicon is an RDF dataset that consists of lexical and morphological data and English translations that are linked to WordNet RDF. The data is based on tabular noun and verb data, that was provided by Prof. Sonja Bosch (University of South Africa) and manually compiled by a linguist. The dataset is based on the Bantu Language Model, i.e. an ontology that is mainly based on the OntoLex-Lemon and MMoOn vocabularies.\r\n\r\nFor more information, please refer to the publication: Sonja Bosch, Thomas Eckart, Bettina Klimek, Dirk Goldhahn and Uwe Quasthoff (2018): Preparation and Usage of Xhosa Lexicographical Data for a Multilingual, Federated Environment at 11th Edition of the Language Resources and Evaluation Conference LREC 2018, Miyazaki (Japan)."},"_id":"open-bantu-isixhosa-lexicon","title":"Open Bantu isiXhosa Lexicon"},{"description":{"en":"RDF version of the Apertium bilingual dictionary FR-ES. The original dataset (in LMF) comes from http://hdl.handle.net/10230/17090. The RDF version of the lexica is modelled using lemon (http://lemon-model.net/) and the translation module (http://purl.org/net/translation). More about the Apertium RDF dictionaries at http://linguistic.linkeddata.es/apertium/"},"_id":"apertium-rdf-fr-es","title":"Apertium RDF FR-ES"},{"description":{"en":"it is an ontology for equipment."},"_id":"akash","title":" equipment ontology"},{"description":{"en":"FYPO is a formal ontology of phenotypes observed in fission yeast. FYPO is being developed to support the comprehensive and detailed representation of phenotypes in PomBase, the new online fission yeast resource (www.pombaes.org). Its scope is similar to that of the Ascomycete Phenotype Ontology (APO), but FYPO includes more detailed pre-composed terms as well as computable definitions."},"_id":"bioportal-fypo","title":"Fission Yeast Phenotype Ontology"},{"description":{"en":"Data exposed: Linked Data about Movies\r\nSize of data set: 6,148,121 triples.\r\n\r\n### Openness: Open\r\n\r\nMixture of material from Wikipedia, Freebase and Geonames and states on http://wiki.linkedmdb.org/Main/Licensing:\r\n\r\n> Content created by (or contributed to) LinkedMDB (interlinking data, in particular) is licensed under the Creative Commons Attributions License(CC-BY). You are free to use CC-BY content as long as you provide proper attribution back to the source (LinkedMDB). Attribution should be given with a link or a reference to LinkedMDB. "},"_id":"linkedmdb","title":"Linked Movie DataBase"},{"description":{"en":"im@s + sparql = im@sparql\n\n広がるアイマスワールドをオープンデータ化\nWebやアプリからSPARQLで検索・利用可能なエンドポイント"},"_id":"im@sparql","title":"im@sparql"},{"description":{"en":"Provides structured controlled vocabularies for the annotation of expressed sequences with respect to anatomical system, cell type, developmental stage, experimental technique, microarray platform, pathology, pooling, tissue preparation and treatment."},"_id":"bioportal-ev","title":"eVOC (Expressed Sequence Annotation for Humans)"},{"description":{"en":"The Content Wrangler dataset, built with WordLift from the website https://thecontentwrangler.com/"},"_id":"thecontentwrangler-com","title":"The Content Wrangler"},{"description":{"en":"We are using an Anime Dataset to get information about our favorite anime. Anime is computer generated Animation originating from Japan. Our Dataset contains unique identifiers for each Anime. Title of the anime, Synopsis of the Anime which is the brief summary of the anime. The Genre of the anime, along with the Air Date of the Anime,no. Episodes, members, popularity, ranking, score, image_url and Anime link on the most famous Anime Website MyAnimeList.com."},"_id":"Anime","title":"Anime Dataset"},{"description":{"en":"A structured controlled vocabulary for the representation of plant environmental conditions."},"_id":"bioportal-eo","title":"Plant environmental conditions"},{"description":{"en":"The result of extracting and interlinking data from various institutional repositories of the [Open University](http://www.open.ac.uk/) and making it available for reuse.\r\n\r\n\r\n#### RDF statistics\r\n\r\n1.6 Million triples, updated daily. \r\n\r\n#### Links\r\n\r\nCourse descriptions link to geonames for availability and price validity. \r\n\r\nURI from the Open University linked to the corresponding URI in education.data.gov.uk\r\n\r\nBuildings are linked to their postcode in ordnancesurvey.co.uk\r\n\r\nSome links to DBPedia, with various levels of validity. \r\n"},"_id":"data-open-ac-uk","title":"data.open.ac.uk, Linked Data from the Open University"},{"description":{"en":"The Cardiac Electrophysiology Ontology contains terms describing single-channel electrophysiological experiments and data obtained using voltage-clamp, current clamp and fluorescence imaging techniques applied at the cell level and multi-channel fluorescence imaging techniques applied at the cell, tissue and whole heart levels."},"_id":"bioportal-ep","title":"Cardiac Electrophysiology Ontology"},{"description":{"en":"The European Union Publications Office (OP) publishes a series of Authority tables (also known as Named Authority Lists or NALs) that are used to harmonise and standardise the codes and associated labels used in various environments (web platforms, systems and applications) and in facilitating data exchanges between the institutions involved in decision-making process across the EU and not only.\nThe NALs catalogue contain over 150 lists of values covering everything from Address types to Languages, Corporate bodies, Currencies, File types or Countries. Every list is made available in SKOS/RDF and several other formats depending on the specific particularity of the subject"},"_id":"publications_office_authority_tables","title":"Publications Office Authority tables"},{"description":{"en":"alles "},"_id":"God_","title":"1121"},{"description":{"en":"Nomisma.org is an international collaborative project to define the intellectual concepts of numismatics following the principles of Linked Open Data"},"_id":"nomisma_org","title":"Nomisma.org "},{"description":{"en":"StatusNet instance hosted at http://kathryl.fr"},"_id":"statusnet-kathryl-fr","title":"statusnet-kathryl-fr"},{"description":{"en":"A structured controlled vocabulary for the annotation of sample processing and separation techniques in scientific experiments, such as, and including, gel electrophoresis, column chromatography, capillary electrophoresis, centrifugation and so on. Developed jointly by the HUPO Proteomics Standards Initiative and The Metabolomics Standards Initiative."},"_id":"bioportal-sep","title":"Sample processing and separation techniques"},{"description":{"en":"StatusNet instance hosted at http://morphtown.de"},"_id":"statusnet-morphtown-de","title":"statusnet-morphtown-de"},{"description":{"en":"Groundbreaking biomedical research requires access to cutting edge scientific resources; however such resources are often invisible beyond the laboratories or universities where they were developed. eagle-i is a national research resource discovery platform to help biomedical scientists search for and find previously invisible, but highly valuable, resources. \r\nResource descriptions collected at each participating institution are freely available as linked open data.\r\nSee: http://www.eagle-i.net/"},"_id":"eagle-i-xula","title":"eagle-i @ Xavier University of Louisiana"},{"description":{"en":"Groundbreaking biomedical research requires access to cutting edge scientific resources; however such resources are often invisible beyond the laboratories or universities where they were developed. eagle-i is a national research resource discovery platform to help biomedical scientists search for and find previously invisible, but highly valuable, resources. \r\nResource descriptions collected at each participating institution are freely available as linked open data.\r\nSee: http://www.eagle-i.net/"},"_id":"eagle-i-utsa","title":"eagle-i @ University of Texas at San Antonio"},{"description":{"en":"RDF version of WordNet from Princeton"},"_id":"wordnet-rdf","title":"WordNet-RDF"},{"description":{"en":"Stock data from Norway, transformed and published as Linked Data. Data source was the list of all stocks for all years retrieved in XML (transformed initially to JSON), collected from service: http://standardgraphs.ices.dk/StandardGraphsWebServices.asmx/getListStocks?year=0."},"_id":"Norway_Fishery_","title":"Norway fishery stocks dataset"},{"description":{"en":"Requirements on the COMSODE project based on selected datasets"},"_id":"comsode-d3-2","title":"Requirements on the COMSODE project based on selected datasets"},{"description":{"en":"The Hebrew wordnet as published as part of the Open Multilingual WordNet. The goal of Open Multilingual WordNet is to make it easy to use wordnets in multiple languages. The individual wordnets have been made by many different projects and vary greatly in size and accuracy. We have (i) extracted and normalized the data, (ii) linked it to Princeton WordNet 3.0 and (iii) put it in one place. The Open Multilingual Wordnet and its components are open: they can be freely used, modified, and shared by anyone for any purpose. "},"_id":"omwn-heb","title":"Hebrew WordNet (as part of Open Multilingual WordNet)"},{"description":{"en":"Starting in the fall of 2007, a collaborative group of influenza researchers have established an influenza ontology. The influenza ontology is an application ontology. \n\nConsolidated influenza sequence and surveillance terms from resources such as the BioHealthBase (BHB), a Bioinformatics Resource Center (BRC) for Biodefense and Emerging and Re-emerging Infectious Diseases, the Centers for Excellence in Influenza Research and Surveillance (CEIRS)"},"_id":"bioportal-flu","title":"Influenza Ontology"},{"description":{"en":"The Bone Dysplasia ontology provides a comprehensive and formal representation of the different domain concepts involved in documenting the full complexity of the skeletal dysplasia domain. It captures and combines the genetic features that discriminate the bone dysplasias with the multitude of phenotypic characteristics manifested by patients and required to be taken into account in order to support the diagnosis process."},"_id":"bioportal-bdo","title":"Bone Dysplasia Ontology"},{"description":{"en":"[Dutch lexical database](http://www2.let.vu.nl/oz/cltl/cornetto/), similar to WordNet but with more semantic relations.\r\nLinks to package:vu-wordnet and package:w3c-wordnet .\r\n\r\nWhen this dataset is used for research purposes, please cite:\r\n\r\nVossen, P., Maks, I., Segers, R., van der Vliet, H.: Integrating lexical units, synsets and ontology in the Cornetto database. In: (ELRA), E.L.R.A. (ed.) Proceedings of the Sixth International Language Resources and Evaluation (LREC?08) (2008)"},"_id":"cornetto","title":"Cornetto1.2"},{"description":{"en":"The official website of the European Union contains a section about agencies and decentralized bodies in the EU. This data is provided as a set of lists, which provide the name of the institutions, as well as links to a detail page about each of them. Most of these pages are available in different languages. If you want to browse the data, please use the links in the \"navigation box\" on the left side. Furthermore, it is possible to create your own SPARQL queries for obtaining lists of combined information.\r\nThis dataset (http://agencies.publicdata.eu/) was triplified and published by the research group AKSW (Agile Knowledge Engineering and Semantic Web). For further information about AKSW please visit our website."},"_id":"eu-agencies-bodies","title":"EU Agencies and decentralized bodies (Agencies)"},{"description":{"en":"The data contained in this dataset was extracted from An API for European Union legislation and is provided as Linked Data here.\r\n\r\nEUR-Lex provides access to documents published in the Official Journal of the European Union. It contains more than 2.8 million documents with such dating back to the year 1951. The original website provides only access to the original documents via search, whereas the extracted data also contains metadata for better filtering and querying possibilities."},"_id":"eur-lex-rdf","title":"EUR-Lex as Linked Data"},{"description":{"en":"Universal Dependencies is a project that seeks to develop cross-linguistically consistent treebank annotation for many languages, with the goal of facilitating multilingual parser development, cross-lingual learning, and parsing research from a language typology perspective. The annotation scheme is based on (universal) Stanford dependencies (de Marneffe et al., 2006, 2008, 2014), Google universal part-of-speech tags (Petrov et al., 2012), and the Interset interlingua for morphosyntactic tagsets (Zeman, 2008).\r\n\r\nThis dataset refers to UD's Chinese treebank.\r\n"},"_id":"universal-dependencies-treebank-chinese","title":"Universal Dependencies Treebank Chinese"},{"description":{"en":"StatusNet instance hosted at http://sebseb01.net"},"_id":"statusnet-sebseb01-net","title":"statusnet-sebseb01-net"},{"description":{"en":"<p>\r\n<a href=\"http://didactalia.net/\">Didactalia.net</a>\r\n is a K-12 global community and an storage place for teachers, students and parents to create, share and find open educational resources that has currently more than 50,000 items with semantic contexts. In Didactalia.net, users can create, share and discover content and promote educational spaces where they can use lessons with facet based searches and enriched contexts. The project also offers a Personal Learning Environment (PLE) that includes an online reputation management service and a space where learners take control, communicate and cope with their own learning upgraded with personalized contexts. The Semantic Technology, the use of Linked Open Data and the creation of an ecosystem of learning communities in the context of Social Learning form the core of Didactalia.net. In this sense, the community aims to build an educational graph that gives meaning to distributed education and fragmented work of many teachers. This knowledge is managed on learning patterns and sequences that make sense for the educational community.\r\n</p>\r\n<p>\r\n<a href=\"http://gnoss.com/\">GNOSS (RIAM Intelearning Lab)</a>\r\npromotes Didactalia.net.\r\n</p>\r\n<p>\r\n<a href=\"http://didactalia.net/\">Didactalia.net</a>\r\n es una comunidad educativa global para profesores, padres y estudiantes desde la Educación Infantil hasta el Bachillerato que incluye una colección con más de 50.000 recursos educativos abiertos. En ella, los usuarios pueden crear, compartir y descubrir contenidos educativos y promover clases y comunidades de aprendizaje en las que trabajar lecciones en un espacio social con búsquedas facetadas y contextos enriquecidos. En cuanto a identidad digital, Didactalia.net propone un Entorno Personal de Aprendizaje (PLE), que incluye herramientas semánticas y sociales para gestionar la reputación y un espacio en el que el usuario recoge, expone y comparte sus contenidos de aprendizaje. La tecnología semántica, el aprovechamiento de los datos abiertos enlazados (\r\n<a href=\"http://linkeddata.org/\">Linked Data</a>\r\n) y la creación de un ecosistema de comunidades de aprendizaje en un contexto de Social Learning configuran el núcleo de Didactalia.net. En este sentido, la comunidad aspira a la construcción de un grafo educativo que dé sentido al trabajo distribuido y atomizado de muchos profesores y que esté organizado sobre patrones y secuencias de aprendizaje que tengan sentido para la comunidad educativa.\r\n</p>\r\n<p>\r\n<a href=\"http://gnoss.com/\">GNOSS (RIAM Intelearning Lab)</a>\r\npromueve Didactalia.net.\r\n</p>"},"_id":"didactalia","title":"Didactalia, índice de recursos educativos para profesores, padres y alumnos (GNOSS)"},{"description":{"en":"The goal of SHR project is to develop an ontology for the description of student health records. Student health records are created for entering college students in order to provide better health services will be formed. This file contains various sections such as history of disease, family history of disease, public examinations and ... ."},"_id":"bioportal-shr","title":"Student Health Record"},{"description":{"en":"Data about European Higher Education Institutions, including statistics from 2008 regarding numbers of students, foreign students, PhD students etc. Based on the EUMIDA report."},"_id":"eumida-linked-data","title":"EUMIDA as Linked Data"},{"description":{"en":"Linked SQ: a Linked Dataset describing SPARQL queries extracted from the logs of a variety of prominent public SPARQL endpoints. We argue that this dataset has a variety of uses for the SPARQL research community, be it, for example, to generate benchmarks on-the-fly by selecting real-world queries with specific characteristics that we describe, or to conduct analysis of what SPARQL (1.1) query features are most often used to interrogate endpoints, or to characterise the behaviour of the different types of agents that are using these endpoints, or to find out what queries agents are asking about a given resource, etc."},"_id":"lsq","title":"LSQ"},{"description":{"en":null},"_id":"rkb-explorer-gdlc","title":"gdlc"},{"description":{"en":"OntoOrpha is an ontology of Rare Diseases that includes clinical signs (phenotypes) and genes. The full Orphanet nomenclature (labels, synonyms) is provided in six languages with external references annotations (ICD, OMIM, HGNC, Genatlas, Swissprot). This version now includes epidemiology data related to rare diseases in Europe (class of prevalence, average age of onset, average age at death) extracted from the literature.\r\n<br />\r\nPart of an ongoing research project, this ontology is developed to support editorial procedures of <a href=\"http://www.orpha.net\">Orphanet knowledge bases and services</a>. Current alpha version is under active development. The version provided on bioportal contains only the main english labels. A version on the ontology with the full nomenclature of rare diseases (labels and synonyms in 6 languages based on skos annotations) is available on demand.\r\n<br /><br />\r\n<img src=\"http://i.creativecommons.org/l/by-nc-nd/3.0/88x31.png\" alt=\"Creative Commons : Attribution - Non Commercial - No Derivs \" />\r\n<br />\r\n<a href=\"http://creativecommons.org/licenses/by-nc-nd/3.0/\">OntoOrpha is available under Creative Commons license ''Attribution-Non-Commercial-No Derivative Works 3.0''</a>"},"_id":"bioportal-ontoorpha","title":"Orphanet Ontology of Rare Diseases"},{"description":{"en":null},"_id":"oreilly","title":"oreilly"},{"description":{"en":"RDF version of the Apertium bilingual dictionary FR-CA. The original dataset (in LMF) comes from http://hdl.handle.net/10230/17097 . The RDF version of the lexica is modelled using lemon (http://lemon-model.net/) and the translation module (http://purl.org/net/translation). More about the Apertium RDF dictionaries at http://linguistic.linkeddata.es/apertium/\r\n"},"_id":"apertium-rdf-fr-ca","title":"Apertium RDF FR-CA"},{"description":{"en":"Brucellosis Ontology is a biomedical ontology in the domain of zoonotic disease brucellosis that is caused by Brucella, a facultative intracellular baterium."},"_id":"bioportal-idobru","title":"Brucellosis Ontology"},{"description":{"en":"The Ontology of Adverse Events (OAE) is a biomedical ontology in the domain of adverse events. OAE aims to standardize adverse event annotation, integrate various adverse event data, and support computer-assisted reasoning. AEO is a community-based ontology. Its development follows the OBO Foundry principles. "},"_id":"bioportal-oae","title":"Ontology of Adverse Events (OAE)"},{"description":{"en":"Metadata about public domain works available at Project Gutenberg.\r\n\r\nData last updated in 2007."},"_id":"fu-berlin-project-gutenberg","title":"Project Gutenberg in RDF (FU Berlin)"},{"description":{"en":"Linked Data conversion of the metadata about the texts in the ECCO-TCP Eighteenth Century Collections Online Texts dataset.\r\n\r\nThe conversion was done from the csv and plain text files linked to from http://ckan.net/package/tcp-ecco-18th-century-texts"},"_id":"ecco-tcp-linked-data","title":"ECCO-TCP Eighteenth Century Texts Linked Data"},{"description":{"en":"Substance Registry Services (SRS) is the Environmental Protection Agency's (EPA) central system for information about substances that are tracked or regulated by EPA or other sources. It is the authoritative resource for basic information about chemicals, biological organisms, and other substances of interest to EPA and its state and tribal partners."},"_id":"epa-srs","title":"EPA-SRS"},{"description":{"en":"StatusNet instance hosted at http://schiessle.org"},"_id":"statusnet-schiessle-org","title":"statusnet-schiessle-org"},{"description":{"en":"StatusNet instance hosted at http://exdc.net"},"_id":"statusnet-exdc-net","title":"statusnet-exdc-net"},{"description":{"en":null},"_id":"opendatacommunities-dev-local-authority-services","title":"opendatacommunities-dev-local-authority-services"},{"description":{"en":"Basic information about confiscations performed by the Czech Trade Inspection Authority"},"_id":"cz-ctia-confiscations","title":"Confiscations of the Czech Trade Inspection Authority"},{"description":{"en":"The Thesaurus for the Social Sciences (Thesaurus Sozialwissenschaften) contains about 12,000 entries, of which more than 8,000 are descriptors (authorised keywords) and about 4,000 non-descriptors. Topics in all of the social science disciplines are included. This SKOS version of the thesaurus uses also SKOS-XL and additionally defined extensions.\r\n"},"_id":"gesis-thesoz","title":"TheSoz Thesaurus for the Social Sciences (GESIS)"},{"description":{"en":"Healthcare Common Procedure Coding System"},"_id":"bioportal-hcpcs","title":"HCPCS"},{"description":{"en":"The LOD dataset of ASCDC_Database of Names and Biographies (DNB) was created by the Academia Sinica Center for Digital Cultures (ASCDC) and based on the metadata from the online “Database of Names and Biographies” (人名權威人物傳記資料庫, http://archive.ihp.sinica.edu.tw/ttsweb/html_name/), which was established and maintained by the Institute of History and Philology, Academia Sinica, Taipei, Taiwan (ROC). The data includes the names of Chinese historical persons, mostly from the Ming to Qing dynasty, and their biographical information, which can serve as authority files or controlled vocabularies for names in the study of Chinese history. Containing 35,251 data records and 2,819,864 triples, the textual content within the LOD dataset is licensed under the Creative Commons Attribution (CC BY)."},"_id":"ASCDC_-_DNB","title":"Database of Names and Biographies (DNB)"},{"description":{"en":"Overview of worldwide data catalogues."},"_id":"ctic-public-dataset","title":"CTIC Public Dataset Catalogs"},{"description":{"en":"BFO grows out of a philosophical orientation which overlaps with that of DOLCE and SUMO. Unlike these, however, it is narrowly focused on the task of providing a genuine upper ontology which can be used in support of domain ontologies developed for scientific research, as for example in biomedicine within the framework of the OBO Foundry. Thus BFO does not contain physical, chemical, biological or other terms which would properly fall within the special sciences domains."},"_id":"bioportal-bfo","title":"Basic Formal Ontology"},{"description":{"en":"Universal Dependencies is a project that seeks to develop cross-linguistically consistent treebank annotation for many languages, with the goal of facilitating multilingual parser development, cross-lingual learning, and parsing research from a language typology perspective. The annotation scheme is based on (universal) Stanford dependencies (de Marneffe et al., 2006, 2008, 2014), Google universal part-of-speech tags (Petrov et al., 2012), and the Interset interlingua for morphosyntactic tagsets (Zeman, 2008).\r\n\r\nThis dataset refers to UD's Spanish-AnCora treebank.\r\n"},"_id":"universal-dependencies-treebank-spanish-ancora","title":"Universal Dependencies Treebank Spanish-AnCora"},{"description":{"en":"FHIR STU3"},"_id":"FHIR_STU3","title":"FHIR STU3"},{"description":{"en":null},"_id":"openbiomed-flyatlas","title":"flyatlas"},{"description":{"en":"This dataset contains Unified Foundational Ontology (UFO), a top-level ontology biased towards conceptual modeling support. The ontology is represented in OWL."},"_id":"ufo","title":"Unified Foundational Ontology"},{"description":{"en":"A dataset that describes staff, publications and proyects of MoreLab, an ICT research group within the Deusto Institute of Technology (DeustoTech) at University of Deusto.\r\n\r\nData is available in RDF format through resolvable URIs and a SPARQL endpoint."},"_id":"morelab","title":"MORElab"},{"description":{"en":"<a href=\"http://athelia.com/\">Athelia Solutions</a>\r\n, a company specialized in tracking solutions based on RFID technology (Radio Frequency Identification) and Mobile Data Capture, renewed its digital identity with a global knowledge network designed to share content and opinion about RFID technology in Oil & Gas, Food & Beverage, Energy & Utilities and Healthcare. The online global network of Athelia includes a professional community, called\r\n<a href=\"http://community.athelia.com/en/community/atheliacommunity\">Athelia Community</a>\r\n, and a\r\n<a href=\"http://athelia.com/en/community/atheliasolutions\">portfolio of services and solutions</a>\r\nof the company.\r\n</p>\r\n<p>\r\n<p> It is focused on specialists in this field: users of technologies for traceability solutions, suppliers, technicians, engineers, researchers, consultants and journalists, among others, of those sectors in which Athelia is reference in identification and traceability.</p>"},"_id":"athelia-rfid","title":"Athelia RFID, a global knowledge network of RFID technology"},{"description":{"en":"<p>\r\n<a href=\"http://red.gnoss.com/en/community/prospectivatecnologica\">Prospects and Trends</a> is a tracking service of prospects and trends that will affect our society, markets and businesses. It is a meeting place for the community of researchers, institutes prospective with the professionals of innovation, marketing, new product development and business. Prospects and Trends is based on the search, collection, analysis and interpretation of prospective papers, articles, reports, prospective studies on emerging science, technology, economy and society and its impact on the possible generation of social, new consumption, new industries, businesses, products and opportunities. Prospects and Trends aims to publish documents that can be easily used by those who have to make strategic decisions in the company or institutions, and provide professional knowledge service about trends for companies and institutions that need it.\r\n</p>\r\n<p> In Prospects and Trends, we’ve defined a systematic exploration of the future of science, technology, economy, society. We want to identify early changes in society, consumption and markets emerging technologies and other changes likely to produce structural order that allows convert anticipation economic or social benefits.</p>\r\n<p> You can find in this community good materials in the field of advance and identifying scenarios, produced by the best think tanks, prospective institutes, international organizations…</p>\r\n<p>\r\nProspects and Trends works with <a href=\"http://gnoss.com/\">GNOSS software (RIAM Intelearning Lab)</a>. RIAM is a company that develops semantic technology for the creation of specialized networks and linked markets. Prospects and Trends offers a selection of 508 resources (November 2012). It includes a facet-based search engine and enriched contexts. Both are developments by GNOSS.\r\n</p>\r\n\r\n<p>\r\n<a href=\"http://red.gnoss.com/comunidad/prospectivatecnologica\">Prospects and Trends</a> es un servicio de seguimiento prospectivo de las tendencias que afectarán a nuestra sociedad, mercados y negocios. Es punto de encuentro de la comunidad de investigadores, institutos de prospectiva con los profesionales de la innovación, el marketing, el desarrollo de nuevos productos y negocios. Prospects and Trends se basa en la búsqueda, compilación, análisis e interpretación prospectiva de papers, artículos, informes, estudios prospectivos sobre emergentes de la ciencia, la tecnología, la economía y la sociedad y su impacto en la posible generación de cambios sociales, nuevos consumos, nuevos sectores, negocios, productos y oportunidades. Prospective Trends tiene como objetivo que los documentos públicos puedan ser fácilmente utilizados por quienes han de tomar decisiones estratégicas en la empresa o las instituciones; y prestar un servicio profesional ad hoc de conocimiento sobre tendencias para la empresas e instituciones que lo necesiten.\r\n</p>\r\n<p> En Prospects and Trends se ha definido un proceso sistemático de exploración del futuro de la ciencia, la tecnología, la economía, la sociedad, con el propósito de identificar anticipadamente los cambios en la sociedad, el consumo y los mercados que las tecnologías emergentes y otros cambios estructurales probablemente producirán con objeto de que la anticipación permita convertirlos en beneficios económicos o sociales.</p>\r\n<p> En Prospects and Trends se pueden encontrar todos los buenos materiales que en el campo de la anticipación y la identificación de escenarios, producen los mejores Think Tank, Institutos e Instituciones de Prospectiva internacionales y el análisis y conclusiones que de esos contenidos realizamos en Prospects and Trends.</p>\r\n<p>\r\nProspects and Trends trabaja con <a href=\"http://gnoss.com/\">software de GNOSS de RIAM Intelearning Lab</a>. RIAM es una compañía que desarrolla tecnología semántica para la creación de redes especializadas y mercados enlazados. Prospective Trends ofrece en este caso una selección de 508 recursos (Noviembre 2012). Incluyendo un buscador facetado y contextos enriquecidos, ambos son desarrollos de GNOSS. \r\n</p>"},"_id":"prospects-and-trends-gnoss","title":"Prospects and Trends (GNOSS)"},{"description":{"en":"Universal Dependencies is a project that seeks to develop cross-linguistically consistent treebank annotation for many languages, with the goal of facilitating multilingual parser development, cross-lingual learning, and parsing research from a language typology perspective. The annotation scheme is based on (universal) Stanford dependencies (de Marneffe et al., 2006, 2008, 2014), Google universal part-of-speech tags (Petrov et al., 2012), and the Interset interlingua for morphosyntactic tagsets (Zeman, 2008).\r\n\r\nThis dataset refers to UD's Dutch treebank.\r\n"},"_id":"universal-dependencies-treebank-dutch","title":"Universal Dependencies Treebank Dutch"},{"description":{"en":"StatusNet instance hosted at http://chromic.org"},"_id":"statusnet-chromic-org","title":"statusnet-chromic-org"},{"description":{"en":"PSI-MOD is an ontology consisting of terms that describe protein chemical modifications, logically linked by an is_a relationship in such a way as to form a direct acyclic graph (DAG). The PSI-MOD ontology has more than 45 top-level nodes, and provides alternative hierarchical paths for classifying protein modifications either by the molecular structure of the modification, or by the amino acid residue that is modified."},"_id":"bioportal-mod","title":"Protein modification"},{"description":{"en":"GenDR is a database of genes associated with dietary restriction (DR). GenDR includes two datasets: 1) genes inferred from experiments in model organisms in which genetic manipulations cancel out or disrupt the life-extending effects of DR; 2) genes robustly altered due to DR, derived from a meta-analysis of microarray DR studies in mammals"},"_id":"bio2rdf-gendr","title":"Bio2RDF::Gendr"},{"description":{"en":"Universal Dependencies is a project that seeks to develop cross-linguistically consistent treebank annotation for many languages, with the goal of facilitating multilingual parser development, cross-lingual learning, and parsing research from a language typology perspective. The annotation scheme is based on (universal) Stanford dependencies (de Marneffe et al., 2006, 2008, 2014), Google universal part-of-speech tags (Petrov et al., 2012), and the Interset interlingua for morphosyntactic tagsets (Zeman, 2008).\r\n\r\nThis dataset refers to UD's English treebank.\r\n"},"_id":"universal-dependencies-treebank-english","title":"Universal Dependencies Treebank English"},{"description":{"en":"Groundbreaking biomedical research requires access to cutting edge scientific resources; however such resources are often invisible beyond the laboratories or universities where they were developed. eagle-i is a national research resource discovery platform to help biomedical scientists search for and find previously invisible, but highly valuable, resources. \r\nResource descriptions collected at each participating institution are freely available as linked open data.\r\nSee: http://www.eagle-i.net/"},"_id":"eagle-i-ccny-cuny","title":"eagle-i @ The City College of New York"},{"description":{"en":"Wrapper for SEC Edgar data, (which are the legal submissions, usually by publicly floated companies, to the Securities and Exchanges Commission, USA). Currently providing XBRL forms (10-Q, 10-K, 8-K, S4-A, 6-K, 10-Q/A) and form 4. "},"_id":"linked-edgar","title":"Linked EDGAR (OntologyCentral)"},{"description":{"en":""},"_id":"rkb-explorer-risks","title":"RISKS Digest (RKBExplorer)"},{"description":{"en":"StatusNet instance hosted at http://doomicile.de"},"_id":"statusnet-doomicile-de","title":"statusnet-doomicile-de"},{"description":{"en":"Basic information about sanctions of the Czech Trade Inspection Authority"},"_id":"cz-ctia-sanctions","title":"Sanctions of the Czech Trade Inspection Authority"},{"description":{"en":null},"_id":"opendatacommunities-housing-market","title":"opendatacommunities-housing-market"},{"description":{"en":"RDF version of the Apertium bilingual dictionary ES-AST. The original dataset (in LMF) comes from http://hdl.handle.net/10230/17116 . The RDF version of the lexica is modelled using lemon (http://lemon-model.net/) and the translation module (http://purl.org/net/translation). More about the Apertium RDF dictionaries at http://linguistic.linkeddata.es/apertium/\r\n"},"_id":"apertium-rdf-es-ast","title":"Apertium RDF ES-AST"},{"description":{"en":"The IATE Dataset in RDF, converted from TBX"},"_id":"iate-rdf","title":"IATE RDF"},{"description":{"en":"A structured controlled vocabulary of pathway centric biological processes. This ontology is a INOH pathway annotation ontology, one of a set of ontologies intended to be used in pathway data annotation to ease data integration. This ontology is used to annotate biological processes, pathways, sub-pathways in the INOH pathway data.<br>INOH is part of the BioPAX working group."},"_id":"bioportal-iev","title":"Event (INOH pathway ontology)"},{"description":{"en":null},"_id":"opendatacommunities-impact-indicators-planning-applications-granted","title":"opendatacommunities-impact-indicators-planning-applications-granted"},{"description":{"en":"The Index Thomisticus Treebank linked to the LiLa Knowledge Base is a corpus that contains Latin texts of Thomas Aquinas (Medieval Latin) enhanced with complex and interlinked morphological, syntactic and semantic/pragmatic annotation.\n"},"_id":"IndexThomisticusTreebank","title":"Index Thomisticus Treebank in LiLa"},{"description":{"en":"Linked Open Data from the Universidad Técnica Particular de Loja (UTPL), Loja, Ecuador includes data about its academic structure. The data was published in RDF format according to the design issues of Linked Open Data. Data can be accessed from a SPARQL endpoint. \r\n## Data: ##\r\n* Institution: 1\r\n* Person: 19\r\n* Campus: 86\r\n* skos:Concept: 395\r\n* School: 31\r\n* Faculty: 7\r\n* Research Group: 59\r\n* Department: 17\r\n* Course: 1749\r\n* Programme: 233\r\n* Organizational Unit: 17\r\n* Study Program: 101\r\n##Collaborators:##\r\n* Elizabeth Cadme\r\n* Janneth Chicaiza\r\n* Eduardo Encalada\r\n* Jorge Landacay\r\n* Jorge Lopez-Vargas\r\n* Diana Torres\r\n"},"_id":"utpl-lod","title":"Universidad Técnica Particular de Loja - Linked Open Data"},{"description":{"en":"LinkLion is an open-source central repository for the storage of links among resources in the Linked Open Data web. The main goal of LinkLion is to facilitate the publication, retrieval and use of links between knowledge bases. Our repository thus provides dedicated functionality for the upload, storage, querying and download of large sets of links.\r\n\r\n[Example URI](http://www.linklion.org/mapping/0098a704694143bfa0540687a4b0f0a9) of the LinkLion dataset.\r\n\r\n\"LinkLion: A Link Repository for the Web of Data\" by Markus Nentwig, Tommaso Soru, Axel-Cyrille Ngonga Ngomo, and Erhard Rahm. Proceedings of ESWC, (2014) [PDF](http://2014.eswc-conferences.org/sites/default/files/eswc2014pd_submission_56.pdf)"},"_id":"linklion","title":"LinkLion - A Link Repository for the Web of Data"},{"description":{"en":null},"_id":"opendatacommunities-wellbeing-happy-yesterday-standard-deviation","title":"opendatacommunities-wellbeing-happy-yesterday-standard-deviation"},{"description":{"en":"Data cube containing statistical data about social service facilities and nursing in a given year and district of Czech republic according to Czech Statistical Office."},"_id":"cz-czso-social-service-facilities","title":"Social service facilities and nursing in districts of Czech republic"},{"description":{"en":"From their web site: JRC-Names is a highly multilingual named entity resource for person and organisation names (called 'entities'). It consists of large lists of names and their many spelling variants (up to hundreds for a single person), including across scripts (Latin, Greek, Arabic, Cyrillic, Japanese, Chinese, etc.). "},"_id":"jrc-names-mlode","title":"JRC-Names-MLODE"},{"description":{"en":"Data exposed: various dumps\r\nSize of dump and data set: 1 billion triples"},"_id":"billion_triples_challenge_dataset2008","title":"Billion Triples Challenge Dataset 2008"},{"description":{"en":"Master Drug Data Base, 2009_08_05"},"_id":"bioportal-mddb","title":"Master Drug Data Base"},{"description":{"en":"UK's Road Transportation consumption data provided by the UK Department for Business, Enterprise and Regulatory Reform ( BERR). This data covers the whole UK territory from 2002 to 2007.\r\n"},"_id":"enakting-energy","title":"EnAKTing Energy Dataset"},{"description":{"en":"An RDF translation of the original CEDICT , which is written in\n its own tabular format.\nOriginal source: https://www.mdbg.net/chinese/export/cedict/cedict_1_0_ts_utf-8_mdbg.txt.gz, from https://www.mdbg.net/chinese/dictionary?page=cedict"},"_id":"http:rdf.naturallexicon.orgzhontCedict","title":"CEDICT"},{"description":{"en":"Providing information on market indices as Linked Data. "},"_id":"linked-stockindex","title":"Linked Index"},{"description":{"en":"RDF version of the Apertium bilingual dictionary ES-PT. The original dataset (in LMF) comes from http://hdl.handle.net/10230/17101. The RDF version of the lexica is modelled using lemon (http://lemon-model.net/) and the translation module (http://purl.org/net/translation). More about the Apertium RDF dictionaries at http://linguistic.linkeddata.es/apertium/"},"_id":"apertium-rdf-es-pt","title":"Apertium RDF ES-PT"},{"description":{"en":"Sears (sears.com) has GoodRelations markup in all > 15,000,000 item pages"},"_id":"sears","title":"sears.com"},{"description":{"en":"A Latin Dictionary by Charlton T. Lewis and Charles Short is a popular English-language lexicographical work of the Latin language, published by Harper and Brothers of New York in 1879 and printed simultaneously in the United Kingdom by Oxford University Press. The version published in LiLa is derived from the digital one provided by the Perseus Digital Library (in XML format)."},"_id":"LewisShort","title":"Lewis and Short Latin-English Dictionary in LiLa"},{"description":{"en":"Linked Data provenance and explanation."},"_id":"provenanceweb","title":"provenanceweb"},{"description":{"en":"The collaborative interlingual index maintains the data for a single interlingual index of concept for wordnets. This respository contains all the data that is available in the Interlingual Index as well as mappings to other resources."},"_id":"gwa-ili","title":"Global WordNet Association Interlingual Index"},{"description":{"en":"This is one of several semantic repositories that contains and publishes RDF linked data and co-reference information, forming the underlying distributed storage model behind the RKB Explorer initiative."},"_id":"rkb-explorer-webscience","title":"Web Science Conference (RKBExplorer)"},{"description":{"en":""},"_id":"rkb-explorer-dblp","title":"DBLP Computer Science Bibliography (RKBExplorer)"},{"description":{"en":"Transport-related linked data from data.gov.uk.\r\n\r\n* Namespace for roads\r\n* Namespace for stations\r\n* Namespace for airports\r\n* Road traffic statistics (SCOVO)"},"_id":"transport-data-gov-uk","title":"transport.data.gov.uk"},{"description":{"en":"Surface boisée de chaque pays (ou groupe de pays, e.g UE ou continents), en pourcentage de leur superficie totale, entre 1990 et 2016. Les régions boisées sont des terres naturelles ou plantées abritant des arbres d’au moins 5 mètres in situ, qu’elles soient productives ou pas, et excluent les zones boisées des systèmes de production agricole (par exemple, dans les plantations fruitières et les systèmes d’agrosylviculture) et les arbres des parcs et jardins urbains."},"_id":"Suface_Forestière_Mondiale_1990-2016","title":"Suface Forestière Mondiale 1990-2016"},{"description":{"en":"This dataset is a Linked Data conversion of the European Central Bank Statistical Warehouse. It consists of SPARQLable metadata, and URIs to the individual /series/ that dereference to on-the-fly conversion to RDFa."},"_id":"ecb-statistics-linked-data","title":"European Central Bank Statistics (PublicData.eu)"},{"description":{"en":"SentimentWortschatz, or SentiWS for short, is a publicly available German-language resource for sentiment analysis, opinion mining etc. It lists positive and negative polarity bearing words weighted within the interval of [-1; 1] plus their part of speech tag, and if applicable, their inflections. The current version of SentiWS (v1.8b) contains 1,650 positive and 1,818 negative words, which sum up to 15,649 positive and 15,632 negative word forms incl. their inflections, respectively. It not only contains adjectives and adverbs explicitly expressing a sentiment, but also nouns and verbs implicitly containing one.\r\n\r\nSee: R. Remus, U. Quasthoff & G. Heyer: SentiWS - a Publicly Available German-language Resource for Sentiment Analysis.\r\nIn: Proceedings of the 7th International Language Ressources and Evaluation (LREC'10), 2010"},"_id":"sentiws","title":"SentimentWortschatz"},{"description":{"en":"StatusNet instance hosted at http://johndrinkwater.name"},"_id":"statusnet-johndrinkwater-name","title":"statusnet-johndrinkwater-name"},{"description":{"en":"Universal Dependencies is a project that seeks to develop cross-linguistically consistent treebank annotation for many languages, with the goal of facilitating multilingual parser development, cross-lingual learning, and parsing research from a language typology perspective. The annotation scheme is based on (universal) Stanford dependencies (de Marneffe et al., 2006, 2008, 2014), Google universal part-of-speech tags (Petrov et al., 2012), and the Interset interlingua for morphosyntactic tagsets (Zeman, 2008).\r\n\r\nThis dataset refers to UD's Basque treebank.\r\n"},"_id":"universal-dependencies-treebank-basque","title":"Universal Dependencies Treebank Basque"},{"description":{"en":"Vertebrate anatomy ontology. Currently covers the skeletal system"},"_id":"bioportal-vao","title":"Vertebrate Anatomy Ontology"},{"description":{"en":"The tags2con dataset has been manually created by a group of human annotators that linked del.icio.us tags to their real meaning.\r\n\r\nA subset of a delicious dump has been used to create the tags2con dataset, a set of 500 user-bookmarks pairs have been selected randomly and all the tags used by these pairs have been manually cleaned and disambiguated to WordNet synsets.\r\n\r\nMore user-bookmark are being currently annotated."},"_id":"tags2con-delicious","title":"tags2con delicious"},{"description":{"en":"<p>\r\n<a href=\"http://mismuseos.net/en/community/museos\">MisMuseos.net</a> is a semantic index of artistic resources (museums, artists and artwork) powered by <a href=\"http://gnoss.com/\">GNOSS</a>. MisMuseos.net structures, organizes and offers you, in accordance with the principles promoted by the Linked Data Project, an extensive catalog of works of art that museums publish on the Web. MisMuseos.net connects them with educational recommendations and contexts. <p> The information on public cultural goods comes from data published in the Europeana dataset as RDF (Resource Description Framework), CER.ES Collection (Red Digital de Colecciones de Museos de España) and online public museums collections in Spain not included in CER.ES. MisMuseos.net offers a selection of 8,947 resources (November 2012).</p>\r\n</p>\r\n\r\n<p>\r\nMuseos, Obras de Arte y Artistas componen la colección de <a href=\"http://mismuseos.net/\">MisMuseos.net</a>, el gran índice de recursos artísticos en Internet promovido por \r\n<a href=\"http://gnoss.com/\">GNOSS</a> y destinado al enriquecimiento de la Web Semántica. MisMuseos.net estructura, organiza y pone a tu alcance, de acuerdo con los principios promovidos por el Linked Data Project, un extenso catálogo de las obras de arte que los museos publican en la Red conectándolo con otras bases de conocimiento educativas existentes en la iniciativa Linking Open permitiendo la generación de contextos educativos relacionados con los bienes culturales. </p>\r\n<p> La información sobre bienes culturales públicos procede de los datos publicados en el Europeana dataset como RDF (Resource Description Framework), de la colección CER.ES (Red Digital de Colecciones de Museos de España), y de las colecciones online de los museos públicos de España no incluidos en CER.ES. MisMuseos.net dispone en la actualidad de 8.947 obras de arte (Noviembre 2012)</p>"},"_id":"mismuseos-gnoss","title":"Mis Museos, índice semántico de museos, artistas y obras de arte (GNOSS)"},{"description":{"en":"The BioSamples database aggregates sample information for reference samples (e.g. Coriell Cell lines) and samples for which data exist in one of the EBI's assay databases such as ArrayExpress, the European Nucleotide Archive or PRoteomics Identificates DatabasE. It provides links to assays an specific samples, and accepts direct submissions of sample information."},"_id":"biosamples-rdf","title":"BioSamples RDF"},{"description":{"en":"Taxons of the French Water Information System (SIE)"},"_id":"sandre","title":"Taxons "},{"description":{"en":"RDF version of the Apertium bilingual dictionary ES-RO. The original dataset (in LMF) comes from http://hdl.handle.net/10230/17122 . The RDF version of the lexica is modelled using lemon (http://lemon-model.net/) and the translation module (http://purl.org/net/translation). More about the Apertium RDF dictionaries at http://linguistic.linkeddata.es/apertium/\r\n"},"_id":"apertium-rdf-es-ro","title":"Apertium RDF ES-RO"},{"description":{"en":"This is an RDF representation of the personal name authorities in the BIBSYS authority file, the dataset was created with funding from the Norwegian Archive, Library and Museum Authority (ABM-utvikling) by BIBSYS and NTNU University Library.\r\n\r\nSee also [http://brinxmat.posterous.com/bibsys-personal-name-linked-open-data-publish](http://brinxmat.posterous.com/bibsys-personal-name-linked-open-data-publish)."},"_id":"radatana","title":"Rådata nå!"},{"description":{"en":"R4R is a light-weight ontology for representing general relationships of resource for publication and reusing."},"_id":"http:guava.iis.sinica.edu.twr4r","title":"Relations for Reusing (R4R) Ontology"},{"description":{"en":"Interpretation of Land Use Data in Ordos City"},"_id":"ILUSOC","title":"Interpretation of Land Use Data in Ordos City"},{"description":{"en":"The BIRN Project lexicon will provide entities for data and database annotation for the BIRN project, covering anatomy, disease, data collection, project management and experimental design."},"_id":"bioportal-birnlex","title":"BIRNLex"},{"description":{"en":"This dataset is about the soccer leagues "},"_id":"http:www.msm.com","title":"Soccer Dataset"},{"description":{"en":"ISO 12620 provides a framework for defining data categories compliant with the ISO/IEC 11179 family of standards. According to this model, each data category is assigned a unique administrative identifier, together with information on the status or decision-making process associated with the data category. In addition, data category specifications in the DCR contain linguistic descriptions, such as data category definitions, statements of associated value domains, and examples. Data category specifications can be associated with a variety of data element names and with language-specific versions of definitions, names, value domains and other attributes.\r\n\r\nThe RDF dumps of different profiles are dynamically generated at query time over the https://catalog.clarin.eu/isocat/rest/profile/$x.rdf with $x being the profile number.\r\n\r\nTriple counts on May 16, 2014:\r\n3.rdf 2647\r\n5.rdf 12358\r\n6.rdf 4492\r\n7.rdf 366\r\n10.rdf 2629\r\n11.rdf 712\r\n13.rdf 58\r\n14.rdf 572\r\n15.rdf 131\r\n16.rdf 76\r\n17.rdf 149\r\n19.rdf 383\r\n20.rdf 561\r\n22.rdf 6"},"_id":"isocat","title":"ISOcat"},{"description":{"en":"The LOD dataset of Linked Taiwan Artists (LTA) was created by the Academia Sinica Center for Digital Cultures (ASCDC) and based on the online database of “Starting Out from 23.5°N: Chen Cheng-po” (從北緯23.5°出發 陳澄波, https://chenchengpo.asdc.sinica.edu.tw/main_en). It provides information on the biographical and work information of the renowned Taiwanese artists of the early 20th centuries and could be served as foundation for the study of Taiwan’s art history at that period. Containing 311 data records and 17,298 triples, the textual content within the LOD dataset is licensed under the Creative Common Attribution (CC 0)."},"_id":"ASCDC-Linked-Taiwan-Artists","title":"Linked Taiwan Artists (LTA)"},{"description":{"en":"YSA is a general thesaurus in Finnish which covers all fields of research and knowledge, which contains the most common terms and geographical names used in content description. YSA is a tool for providing index terms for printed and electronic materials as well as subject-based information retrieval. The thesaurus works as a shared language between information depositaries and searchers, which improves the ease of finding information. "},"_id":"ysa","title":"YSA - General Finnish Thesaurus"},{"description":{"en":"This dataset collects information on the thermochemical properties and basic physicochemical properties of compounds at gaseous state and condensed state, including heat capacity, standard entropy and standard enthalpy, et. al."},"_id":"chemdb-thermochemistry","title":"chemdb thermochemistry dataset"},{"description":{"en":"This is an RDF conversion of DBLP. The DBLP database provides bibliographic information on major computer science journals and conference proceedings including the WWW2006. The database contains more than 800.000 articles and 400.000 authors. \r\n\r\nThis RDF conversion hasn't been updated since 2007.\r\n\r\nOther RDF conversions of DBLP are available as package:l3s-dblp and package:rkb-explorer-dblp"},"_id":"fu-berlin-dblp","title":"DBLP Bibliography Database in RDF (FU Berlin)"},{"description":{"en":null},"_id":"opendatascotland-simd-employment-rank","title":"opendatascotland-simd-employment-rank"},{"description":{"en":"Medical Subject Headings (MeSH);National Library of Medicine; 2011"},"_id":"bioportal-msh","title":"Medical Subject Headings"},{"description":{"en":"IMGT-ONTOLOGY is the first ontology for immunogenetics and immunoinformatics. It provides a semantic specification of the terms to be used in immunogenetics and immunoinformatics and manages the related knowledge, thus allowing the standardization for immunogenetics data from genome, proteome, genetics, two-dimensional (2D) and three-dimensional (3D) structures.\r\nIMGT-ONTOLOGY manages the knowledge through diverse facets relying on seven axioms, \"IDENTIFICATION\", \"CLASSIFICATION\", \"DESCRIPTION\", \"NUMEROTATION\", \"LOCALIZATION\", \"ORIENTATION\" and \"OBTENTION\". These axioms postulate that any object, any process and any relation can be identified, classified, described, numbered, localized and orientated, and the way it is obtained can be characterized. The axioms constitute the Formal IMGT-ONTOLOGY, also designated as IMGT-Kaleidoscope. As the same axioms can be used to generate concepts for multi-scale level approaches, the Formal IMGT-ONTOLOGY represents a paradigm for system biology ontologies, which need to identify, to classify, to describe, to number, to localize and to orientate objects, processes and relations at the molecule, cell, tissue, organ, organism or population levels.\r\nIMGT®, the international ImMunoGeneTics information system®, has been built on IMGT-ONTOLOGY.\r\nThe version 1.0.1 of IMGT-ONTOLOGY, edited with Protégé (v4.2.0), includes the concepts of IDENTIFICATION which are \"ChainType\", \"Classtype\", \"ConfigurationType\", \"EntityType\", \"FormatType\", \"FunctionalityType\", \"GeneType\", \"LevelChainType\", \"LocationType\", \"MolecularComponent\", \"MoleculeType\", \"MoleculeUnit\", \"StructureType\", and \"TaxonRank\"."},"_id":"bioportal-imgt","title":"IMGT-ONTOLOGY"},{"description":{"en":"SALDO morphology, a morphological Swedish lexicon in RDF."},"_id":"saldom-rdf","title":"SALDOM-RDF"},{"description":{"en":"SABIO-RK is a database for biochemical reactions, their kinetic equations with their parameters, and the experimental conditions under which these parameters were measured. "},"_id":"bio2rdf-sabiork","title":"Bio2RDF::Sabiork"},{"description":{"en":"Reading lists of the university of Manchester"},"_id":"manchester-university-reading-lists","title":"Manchester University Reading Lists"},{"description":{"en":"The Electrocardiography (ECG) Ontology is a Driving Biological Project of the NCBO. The ECG Ontology will contain terms for describing electrocardiograms, their capture method(s) and their waveforms."},"_id":"bioportal-ecg","title":"Electrocardiography Ontology"},{"description":{"en":"Metadata about digitalised manuscripts coming from the DM2E project (http://dm2e.eu). "},"_id":"dm2e","title":"DM2E"},{"description":{"en":"General Finnish Ontology YSO is a trilingual ontology consisting mainly of general concepts. YSO has been founded on the basis of concepts in Finnish cultural sphere. As an indexing tool it is best applicable when indexed material is interdiscliplinary and its themes vary to a great extent."},"_id":"yso","title":"YSO - General Finnish Ontology"},{"description":{"en":"sergsge"},"_id":"hongse","title":"gseg"},{"description":{"en":"### About\r\n\r\n> Now it is even easier to use the rich and diverse collection of real-world concepts in OpenCyc to bring meaning to your semantic web applications! The full OpenCyc content is now available both as downloadable OWL ontologies as well as via semantic web endpoints (i.e., permanent URIs). These URIs return RDF representations of each Cyc concept as well as a human-readable version when accessed via a Web Browser.\r\n\r\nData exposed: OpenCyc Ontology\r\nSize of dump and data set: ~1.6 million triples, ~150MB uncompressed\r\n\r\n### Openness\r\n\r\n[License](http://www.opencyc.org/license) states:\r\n\r\n> These files contain an OWL representation of information contained in the OpenCyc Knowledge Base. The content of these OWL files are licensed under the Creative Commons Attribution 3.0 license whose text can be found at . The content of these OWL files, including the OpenCyc content they represent, constitutes the \"Work\" referred to in the Creative Commons license. The terms of this license equally apply to, without limitation, renamings and other logically equivalent reformulations of the content of these OWL files (or portions thereof) in any natural or formal language, as well as to derivations of this content or inclusion of it in other ontologies."},"_id":"opencyc","title":"OpenCyc"},{"description":{"en":"The Plant Ontology is a structured vocabulary and database resource that links plant anatomy, morphology and growth and development to plant genomics data. The PO is under active development to expand to encompass terms and annotations from all plants."},"_id":"bioportal-po_x2","title":"Plant Ontology"},{"description":{"en":"A controlled vocabulary of growth and developmental stages in various plants. Note that this has been subsumed into the PO."},"_id":"bioportal-po_x1","title":"Plant Growth and Development Stage"},{"description":{"en":"A rich ontology for experimental and other evidence statements."},"_id":"bioportal-eco","title":"Evidence codes"},{"description":{"en":"The dbSNP database is a repository for both single base nucleotide subsitutions and short deletion and insertion polymorphisms."},"_id":"bio2rdf-dbsnp","title":"Bio2RDF::Dbsnp"},{"description":{"en":"RDF version of the official case law dataset of the Netherlands Council of the Judiciary (at [http://www.rechtspraak.nl](http://www.rechtspraak.nl)). It contains approximately 145k descriptions of court proceedings, linked to DBPedia and Geonames (places mentioned in cases). It contains all Dutch courts and their locations.\r\n\r\nURIs are dereferenceable.\r\n\r\nExample: [http://linkeddata.few.vu.nl/rechtspraak/uitspraak/BM4461](http://linkeddata.few.vu.nl/rechtspraak/uitspraak/BM4461)\r\n\r\nThis dataset was developed within the BEST project at the VU University Amsterdam."},"_id":"rechtspraak","title":"Rechtspraak.nl"},{"description":{"en":"Janus LOD is a test of exposing Janus data using a linked data application.\r\n\r\nhttp://data.oceandrilling.org/januslod/\r\n\r\nData in Janus comes from the Deep Sea Drilling Program and Ocean Drilling Program. Authority for this data is at Texas A&M implementing organization (ref: http://www-odp.tamu.edu/database/)"},"_id":"oceandrilling-janus","title":"Ocean Drilling - Janus LOD"},{"description":{"en":"Structured data extracted and integrated from three major web-based Chinese-language encyclopaedias:\r\n\r\n* [Chinese Wikipedia](http://zh.wikipedia.org/)\r\n* [Hudong Baike](http://www.hudong.com/)\r\n* [Baidu Baike](http://baike.baidu.com/)\r\n\r\nEach page is available in an RDF version. There is a SPARQL endpoint (although it only returns HTML, no machine-readable data, at the moment).\r\n\r\n[An ISWC2011 paper](iswc2011.semanticweb.org/fileadmin/iswc/Papers/In-Use/70320209.pdf) describes technical aspects of the project in detail."},"_id":"zhishi-me","title":"Zhishi.me"},{"description":{"en":"Open bibliographic linked data from the Spanish National LIbrary including 4 million authority records, 2.4 million bibliographic records resulting in over 58 million triples.\r\n\r\nThe Spanish data are modelled using IFLA vocabularies. For the migration and linkage, we used Marimba, a particular tool developed by us and designed for being used by librarians.\r\n\r\n### Data\r\n\r\n* 4 Million authority records\r\n* 2.4 million of bibliographic records\r\n* 58 million of RDF triples\r\n* 600K links with other resources (VIAF, SUDOC, GND (German national library), Libris, DBpedia)\r\n\r\nMore detail is provided at: <http://www.bne.es/es/Catalogos/DatosEnlazados/FuentesDatos/>\r\n\r\n> The data are taken from the catalog bibliographic and authority of the National Library of Spain. 3,900,000 have been extracted bibliographic resource records, papers belonging to modern, old, electronic resources, manuscripts, periodicals, maps, prints, photographs, printed music, sound and audiovisual recordings.\r\n> \r\n> Have also been extracted 4,200,000 authority records of persons, entities, conferences, uniform titles and subjects, which are used in bibliographic records. Both sets of records are coded according to the MARC21 format.\r\n> \r\n> So far it has become a very representative subset of the library catalog, consisting of 2.4 million bibliographic records of monographs modern formats, old printed music and sound recordings."},"_id":"datos-bne-es","title":"datos.bne.es"},{"description":{"en":"RDF version of the Brown Corpus (W. N. Francis, H. Kucera; Brown University; 1979). 1,014,312 words in 500 documents, taken from newspapers texts on diverse topics, non-fiction and fiction books as well as government documents.\r\n\r\nOriginal corpus contains manually annotated sentence and token boundaries as well as word class annotations(such as POS, inflectional morphemes, such as noun plural, verb tense and adjective comparison and special tags for foreign words and proper nouns).\r\n\r\nConverted corpus contains complete texts reconstructed from TEI/XML version of the Brown corpus. Word classes where linked via OLiA to ontological categories for aggregated querying.\r\n"},"_id":"brown-corpus-in-rdf-nif","title":"Brown Corpus in RDF/NIF"},{"description":{"en":"Test"},"_id":"test","title":"test"},{"description":{"en":"Government"},"_id":"The_Central_Bank_of_the_Republic_of_Uzbekistan","title":"Open data of Uzbekistan"},{"description":{"en":"Universal Dependencies is a project that seeks to develop cross-linguistically consistent treebank annotation for many languages, with the goal of facilitating multilingual parser development, cross-lingual learning, and parsing research from a language typology perspective. The annotation scheme is based on (universal) Stanford dependencies (de Marneffe et al., 2006, 2008, 2014), Google universal part-of-speech tags (Petrov et al., 2012), and the Interset interlingua for morphosyntactic tagsets (Zeman, 2008).\r\n\r\nThis dataset refers to UD's Romanian treebank.\r\n"},"_id":"universal-dependencies-treebank-romanian","title":"Universal Dependencies Treebank Romanian"},{"description":{"en":"The Combined Nomenclature 2012 is a product scheme classification used to extract statistics.\r\n\r\nAuthors:\r\n\r\nJose María Alvarez Rodríguez & Jose Emilio Labra Gayo \r\n\r\nWESO-University of Oviedo"},"_id":"combined-nomenclature-2012","title":"CN 2012"},{"description":{"en":"OLiA Discourse Extensions"},"_id":"olia-discourse","title":"OLiA Discourse"},{"description":{"en":"The Linked Periodicals Database is a data set from the [Data Incubator](http://dataincubator.org/) which aggregates journal metadata provided by [CrossRef](http://crossref.org), [Highwire Press](http://highwire.stanford.edu/) and the [National Library of Medicine](http://www.nlm.nih.gov).\r\n\r\nIncluded in the data are resources for journals and publishers which are available as RDF and JSON. "},"_id":"linked-periodicals","title":"Linked Periodicals Database"},{"description":{"en":"Universal Dependencies is a project that seeks to develop cross-linguistically consistent treebank annotation for many languages, with the goal of facilitating multilingual parser development, cross-lingual learning, and parsing research from a language typology perspective. The annotation scheme is based on (universal) Stanford dependencies (de Marneffe et al., 2006, 2008, 2014), Google universal part-of-speech tags (Petrov et al., 2012), and the Interset interlingua for morphosyntactic tagsets (Zeman, 2008).\r\n\r\nThis dataset refers to UD's Swedish-LinES treebank.\r\n"},"_id":"universal-dependencies-treebank-swedish-lines","title":"Universal Dependencies Treebank Swedish-LinES"},{"description":{"en":"Public Library of Veroia Linked Open Data Project. This is the first effort of a Greek Library to expose it's Bibliographic Data as Linked Open Data."},"_id":"libver","title":"Public Library of Veroia"},{"description":{"en":""},"_id":"rkb-explorer-pisa","title":"Università di Pisa (RKBExplorer)"},{"description":{"en":"This corpus comprises 100 German news articles from the online news platform news.de. All of the articles were published in the year of 2010 and contain the word Golf. This word is a homonym that can have the following meanings:\r\n* A gulf like the Gulf of Mexico or the Persian Gulf, \r\n* the ball sport or\r\n* a car model produced by the German manufacturer Volkswagen.\r\n\r\nOne researcher annotated the documents manually. Another researcher resolved occurring conflicts after supervising the corpus. Although the sport golf as well as the car are not within the class range of NER, they are kept for evaluation purposes"},"_id":"news-100-nif-ner-corpus","title":"News-100 NIF NER Corpus"},{"description":{"en":"A lexical database documenting translations among lexemes of language varieties."},"_id":"panlex","title":"PanLex"},{"description":{"en":"StatusNet instance hosted at http://freelish.us"},"_id":"statusnet-freelish-us","title":"statusnet-freelish-us"},{"description":{"en":"Europeana EDM data loaded to OWLIM, with SPARQL and visualization. \r\nContinuing development as part of @eCreativeEU"},"_id":"europeana-sparql","title":"Europeana SPARQL"},{"description":{"en":"#### dati.isprambiente.it - ISPRA Linked Open Data - The administrative divisions of Italy (regions/provinces/municipalities) + shape of municipalities + link to istat + link to geoname/dbpedia"},"_id":"ispra-lod-place","title":"ISPRA - The administrative divisions of Italy (regions/provinces/municipalities)"},{"description":{"en":"ASJP collects 40 words from 5500 languages in a simplified phonetic representation. More background can be found at http://email.eva.mpg.de/~wichmann/ASJPHomePage.htm"},"_id":"asjp","title":"Automated Similarity Judgment Program lexical data"},{"description":{"en":"StatusNet instance hosted at http://imirhil.fr"},"_id":"statusnet-imirhil-fr","title":"statusnet-imirhil-fr"},{"description":{"en":"A structured controlled vocabulary of concrete protein names and generic (abstract) protein names. This ontology is a INOH pathway annotation ontology, one of a set of ontologies intended to be used in pathway data annotation to ease data integration. This ontology is used to annotate protein names, protein family names, generic/concrete protein names in the INOH pathway data.<br>INOH is part of the BioPAX working group."},"_id":"bioportal-imr","title":"Molecule role (INOH Protein name/family name ontology)"},{"description":{"en":"The Multilingual wordnet as published as part of the Open Multilingual WordNet. The goal of Open Multilingual WordNet is to make it easy to use wordnets in multiple languages. The individual wordnets have been made by many different projects and vary greatly in size and accuracy. We have (i) extracted and normalized the data, (ii) linked it to Princeton WordNet 3.0 and (iii) put it in one place. The Open Multilingual Wordnet and its components are open: they can be freely used, modified, and shared by anyone for any purpose. The original URL for this project is http://adimen.si.ehu.es/web/MCR/"},"_id":"omwn-mcr","title":"Multilingual Central Repository (as part of Open Multilingual WordNet)"},{"description":{"en":"It is ontology based dataset. developed by Ronak Panchal"},"_id":"AISHE","title":"All India Survey of Higher Education"},{"description":{"en":"This dataset collects information on the commonly used chemical identifiers (e.g. CAS-RN, SMILES, InChIKey, et. al.) and basic information (e.g. Name, Formulas, et. al.) of compounds and on the thermochemical properties and basic physicochemical properties of compounds at gaseous state and condensed state, including heat capacity, standard entropy and standard enthalpy, et. al.This dataset also collects information on the entropy, enthalpy, temperature, pressure,et. al. that associated with phase change of compounds.And critical properties for compounds are also collected. And this dataset collects information on the estimated properties of compounds, including ALogP,ALogP_MR, Minimized_Energy,et. al. via the law of corresponding states (LCS), the method of group contributions (GC), and the like."},"_id":"chemdb-basicInfo","title":"chemdb dataset"},{"description":{"en":"This dataset is generated by SPARQL endpoints status tool: http://labs.mondeca.com/sparqlEndpointsStatus/index.html\r\n\r\nIt contains availability information (availability, time response, accessibility information, etc.) about all public SPARQL endpoints described in CKAN. HTTP test along with SPARQL protocol compliance are tested. Since availability report (and data) are generated every hour, SPARQL endpoints status dataset is continually increasing. \r\n"},"_id":"sparql-endpoint-status","title":"SPARQL Endpoint Status"},{"description":{"en":"This dataset contains data from the registry of contracts of the Czech Republic - orders"},"_id":"cz-orders","title":"Registry of contracts of the Czech Republic - Orders"},{"description":{"en":"International Aid Transparancy Initiative model and data from IATIRegistry as Linked Open Data. \r\n\r\nFor more information see: http://iati2lod.appspot.com\r\n\r\nIt is widely recognized that the effectiveness of aid can be improved by providing transparant insight into aid activities. The International Aid Transparency Initiative (IATI), a multi-stakeholder initiative that seeks to improve the transparency of aid, has developed an open standard for the publication of aid information. As of 2013, over 150 donors, NGOs and governments have registered to the IATI registry for publishing their aid activities in this XML standard. Based on the IATI data, we have created a Linked Data model and converted the open data to Linked Data. In order to show the added benefits of Linked Data, we have linked the IATI dataset to various other datasets such as World Bank indicators and DBPedia information. Finally, we have created several applications which combine the information from the IATI dataset and the datasets it was linked to. As a result, we have shown that creating Linked Data for the IATI dataset and linking it to other datasets give new valuable insights in aid transparency. Based on actual information needs and use cases of IATI users, we were able to show that linking IATI data adds significant value to the data and is able to fulfill the needs of IATI users."},"_id":"iati-as-linked-data","title":"IATI as Linked Data"},{"description":{"en":"Kronika"},"_id":"Kronika_naukowa_Biblioteki_Jagiellońskiej","title":"Kronika naukowa Biblioteki Uniwersyteckiej w Łodzi"},{"description":{"en":"The Ontos News Portal extracts facts (objects as e. g. persons or organizations as well as relations between them, e. g. a person is working for an organization or living at a location). The facts are merged together and build a huge information-network including references to the respective articles. The portal can manually be searched at news.ontos.com. For all objects, Ontos provides dereferencable GUIDs. The interface at www.ontosearch.com allows to easily generate RDF/XML or HTML information. "},"_id":"ontos-news-portal","title":"Ontos News Portal"},{"description":{"en":"The Atlante Sintattico d'Italia, Syntactic Atlas of Italy (ASIt) enterprise builds on a long standing tradition of collecting and analysing linguistic corpora, which has originated different efforts and projects over the years. ASIt accounts for minimally different variants within a sample of closely related languages, thus it does not need a thorough part of speech (POS) disambiguation, since the \"trivial\" identification of basic POS (e.g. Nouns vs Verbs) is not enough to capture cross-linguistic differences between closely related languages. Secondly, the linguistic variants cannot be reduced to lexical distinctions only, i.e. syntactic differences are in general unpredictable on the basis of the properties of single lexical items. A specific tag set designed to capture sentence-level phenomena without taking into consideration POS tags is needed. As a consequence, while other tag sets are designed to carry out a gross linguistic analysis of a vast corpus, the ASIt tag set aims to capture fine-grained grammatical differences by comparing various dialectal translations of the same sentence. Moreover, in order to pin down these subtle asymmetries, the linguistic analysis must be carried out manually.\r\n\r\nTo explain why the needs for ASIt are so special we have to take into consideration two different aspects: the nature of Italian dialects, and the kind of linguistic theory ASIt aims to interact with. The Italian dialectal area presents a kind of variation that involves parametric choices affecting many general aspects of syntax, morphology, and phonology. The kind of information we want to gather involves not only the presence of a certain element, but also the absence of an element; an element can be omitted only in some constructions and in conjunction with specific characteristics of the language. For this reason, ASIt proposed the creation of a specific set of tags starting from a universal core shared by all languages (on the basis of the work done by DynaSAND), and subsequently developing a language-specific periphery which is compatible with other projects.\r\n\r\nDialectal data stored in the ASIt were gathered during a twenty-year-long survey investigating the distribution of several grammatical phenomena across the dialects of Italy. These data and information were collected by means of questionnaires formed by sets of Italian sentences: dialectal speakers were asked to translate them into their dialects and write their translations in the questionnaire; therefore, each questionnaire is associated with many parallel dialectal translations. At present, there are eight different questionnaires written in Italian and almost 500 questionnaires, corresponding to the eight Italian questionnaires, written in more than 240 different dialects, for a total of more than 54,000 sentences and more than 40,000 tags stored in the data resource managed by the ASIt digital library system."},"_id":"asit","title":"Atlante Sintattico d'Italia (ASIt)"},{"description":{"en":""},"_id":"rkb-explorer-unlocode","title":"UN/LOCODE (RKBExplorer)"},{"description":{"en":"Various data sets in RDF format collected by the [European Environment Agency](http://www.eea.europa.eu/) as part of the [European Environment Information and Observation Network](http://eionet.europa.eu/) (EIONET).\r\n\r\nAn overview of available datasets can be obtained from the [VoID file](http://rdfdata.eionet.europa.eu/void.rdf)."},"_id":"eionet-rdf","title":"EIONET RDF Data"},{"description":{"en":"The SRCMF contains the 15 Old French texts with about 280000 words. It has a high-quality manual annotation, based on a linguistically adequate dependency grammar. Annotation data is provided as RDF/XML. Available export formats are CONLL and TigerXML. The final revision of the texts is ongoing and will be finished by the end of 2013. The project was funded by the Agence Nationale de la Recherche (ANR, France) and the Deutsche Forschungsgemeinschaft (DFG, Germany) 2009-2012."},"_id":"srcmf","title":"Syntactic Reference Corpus of Medieval French (SRCMF)"},{"description":{"en":"The Hellenic Police project encompasses efforts to extract valuable information from Greek Open Data originating from the Ministry of Public Order & Citizen Protection and in particular from the Hellenic Police Department. It involves mainly crime incidents and aims to exploit these in the best possible manner so as to form meaningful scenarios. The primary goal is to provide applications and services that would reveal potentials for the department to improve upon its management procedures, have economic benefits from cost reductions and improvements in its crime prevention efficiency.\r\nA secondary but equally important goal is to encourage additional contributions of Greek Open Data as well as of innovative applications and services based on the latter."},"_id":"hellenic-police","title":"Hellenic Police"},{"description":{"en":"Universal Dependencies is a project that seeks to develop cross-linguistically consistent treebank annotation for many languages, with the goal of facilitating multilingual parser development, cross-lingual learning, and parsing research from a language typology perspective. The annotation scheme is based on (universal) Stanford dependencies (de Marneffe et al., 2006, 2008, 2014), Google universal part-of-speech tags (Petrov et al., 2012), and the Interset interlingua for morphosyntactic tagsets (Zeman, 2008).\r\n\r\nThis dataset refers to UD's Latin-PROIEL treebank.\r\n"},"_id":"universal-dependencies-treebank-latin-proiel","title":"Universal Dependencies Treebank Latin-PROIEL"},{"description":{"en":"Interconnecting computer vision datasets"},"_id":"locv","title":"Linked Open Computer Vision"},{"description":{"en":"Contains addresses, type, contacts and other info about more 50.000 public schools in italy.\r\n\r\nThe dataset is currently in alpha stage: its quality needs to be improved and schools are not yet georeferenced.\r\n\r\nMore information at [http://www.linkedopendata.it/datasets/scuole](http://www.linkedopendata.it/datasets/scuole)"},"_id":"italian-public-schools-linkedopendata-it","title":"Italian public schools (LinkedOpenData.it)"},{"description":{"en":"RDF representation of the Geological Timescale, as described in the International Chronostratigraphic Chart from the International Commission on Stratigraphy."},"_id":"GTS","title":"Geological Timescale"},{"description":{"en":null},"_id":"opendatacommunities-societal-wellbeing-deprivation-imd-rank-2010","title":"opendatacommunities-societal-wellbeing-deprivation-imd-rank-2010"},{"description":{"en":"Groundbreaking biomedical research requires access to cutting edge scientific resources; however such resources are often invisible beyond the laboratories or universities where they were developed. eagle-i is a national research resource discovery platform to help biomedical scientists search for and find previously invisible, but highly valuable, resources. \r\nResource descriptions collected at each participating institution are freely available as linked open data.\r\nSee: http://www.eagle-i.net/"},"_id":"eagle-i-msm","title":"eagle-i @ Morehouse School of Medicine"},{"description":{"en":"This country codes authority table is intended to provide a code related to the names of the countries – in a short and in a long form – in the 24 official languages of the European Union.These codes are used for the documentary metadata and may present slight differences with those used for the production of documents at a stylistic level.\n\nThe \"Authority code\" relays on the ISO 3166-1/alpha-3 positions. If the ISO code doesn't exist, an alpha-numeric code is created. A traceability of this codes creation is ensured and historical relationships are also offered as from 1950 till now with the date(s) of event(s).\n\nA country code comparison is provided between ISO codes, IANA codes (Internet ccTLDS – Country-code Top-level Domains), and TIR (Transport International par la Route) Vehicle system codes.\n\nCodes marked in italic are obsolete and should not be used, excepted in the case of back-log work.\n\nISO 3166 is the International standard for country codes. The purpose of ISO 3166 is to establish codes for the representation of names of countries. This standard exists in three forms:\n\n ISO 3166-1 (2006) contains a two-letter code which is recommended as the general purpose code, a three-letter code which has better mnenomic properties and a numeric-3 code which can be useful if script independence of the codes is important.\n ISO 3166-2 (2007) gives codes for the names of the principal subdivisions (e.g provinces or states) of all countries coded in ISO 3166-1. This code is based on the two-letter code element from ISO 3166-1 followed by a separator and a further string of up to three alphanumeric characters.\n ISO 3166-3 (1999) contains a four-letter code for those country names which have been deleted from ISO 3166-1 since its first publication in 1974. The code elements for formerly used country names have a length of four alphabetical characters (alpha-4 code elements).\n\nThe ISO 3166-1 is also used by the EU Geonomenclature of the Statistical Office, the UN/LOCODE, the World Intellectual Property Organisation (WIPO), the International Atomic Energy Agency (IAEA), the Internet Assigned Authority Numbers (IANA) and more other organisations."},"_id":"country-authority-list","title":"Country Name Authority List"},{"description":{"en":"ClinicalTrials.gov is a registry and results database of publicly and privately supported clinical studies of human participants conducted around the world. "},"_id":"bio2rdf-clinicaltrials","title":"Bio2RDF::Clinicaltrials"},{"description":{"en":"Covid19 Impact on Banking Ontology (Covid19-IBO) provides semantic information about the impact of the Covid-19 on the banking sector of India"},"_id":"Bioportal","title":"Covid19 Impact on Banking ontology (Covid19-IBO)"},{"description":{"en":"The iProClass database provides value-added information reports for UniProtKB and unique UniParc proteins, with links to over 90 biological databases, including databases for protein families, functions and pathways, interactions, structures and structural classifications, genes and genomes, ontologies, literature, and taxonomy."},"_id":"bio2rdf-iproclass","title":"Bio2RDF::Iproclass"},{"description":{"en":"### Description\r\n\r\nData exposed: Information about airports, originally from package:ourairports, here re-published as RDF.\r\n\r\nNotes: Dump available by contact\r\n\r\n### Issues\r\n\r\nThe dataset does not appear to be actively maintained. There are quality issues with the owl:sameAs links."},"_id":"data-incubator-our-airports","title":"Airport data from Our Airports published as RDF"},{"description":{"en":"ICD-10-PCS, 2009"},"_id":"bioportal-icd10pcs","title":"ICD-10-PCS"},{"description":{"en":"This dataset contains the geographical resource, geonames, in a wordnet-like picture. They are 657 concepts extracted from the GLOSS Project. Available in English and Italian. \r\nAlso a lemonization (lemon model) "},"_id":"geodomainwn","title":"geodomainwn"},{"description":{"en":"This package contains BEACON files linking [http://lobid.org/organisation] (ISIL-URIs) to international DBpedia and German DBpedia. An ISIL is an \"International Standard Identifier for Libraries and Related Organisations\".\r\nThe BEACON was constructed using the [file which automatically extracts the ISIL in the wikipdia infobox](http://ws.gbv.de/wpextract/dewiki-isil.beacon) and some more relations computated through simple pattern matching of the name of the institution and some further heuristics, see https://gist.github.com/2910449 . \r\n\r\n"},"_id":"isil-dbpedia","title":"ISIL->DBpedia"},{"description":{"en":"European Commission services have selected around 60 indicators, divided into thematic groups, which illustrate some key dimensions of the European information society."},"_id":"scoreboard","title":"The Digital Agenda Scoreboard of the European Commission"},{"description":{"en":"Universal Dependencies is a project that seeks to develop cross-linguistically consistent treebank annotation for many languages, with the goal of facilitating multilingual parser development, cross-lingual learning, and parsing research from a language typology perspective. The annotation scheme is based on (universal) Stanford dependencies (de Marneffe et al., 2006, 2008, 2014), Google universal part-of-speech tags (Petrov et al., 2012), and the Interset interlingua for morphosyntactic tagsets (Zeman, 2008).\r\n\r\nThis dataset refers to UD's Russian treebank.\r\n"},"_id":"universal-dependencies-treebank-russian","title":"Universal Dependencies Treebank Russian"},{"description":{"en":"![data.persee.fr](http://data.persee.fr/cropped-Logo-data.persee_petit.png)\r\n\r\n[data.persee.fr](http://data.persee.fr) is a triplestore opened in 2017. It gathers all the metadata produced by Persée and makes it available in a structured way (RDF graph) according to the semantic web principles (DCMI, FRBR, FOAF, CITO, BIBO, SKOS). The mapping between Persée’s data and international information systems enables the researchers to explore Persée database and to link to data offered by the library community (IdRef, data.bnf.fr, etc.), the scientific community (the Cairo Gazetteer, the Global Biodiversity Information Facility - GBIF) and other crowded sources (DBpedia)"},"_id":"data-persee-fr","title":"Persée in RDF"},{"description":{"en":null},"_id":"opendatacommunities-societal-wellbeing-deprivation-imd-rank-2007","title":"opendatacommunities-societal-wellbeing-deprivation-imd-rank-2007"},{"description":{"en":"test-svu"},"_id":"test-svu","title":"test-svu"},{"description":{"en":"National Assembly"},"_id":"http:pakistan.com","title":"Polictical History of Pakistan"},{"description":{"en":"Data cube containing data about evaluation of results in VaVaI for 2013."},"_id":"cz-vavai-evaluation-2013","title":"Evaluation of VaVaI results for 2013"},{"description":{"en":"This is a Linked Data version of the publically available data dumps from the Yahoo! GeoPlanet database. GeoPlanet helps bridge the gap between the real and virtual worlds by providing an open, permanent, and intelligent infrastructure for geo-referencing data on the Internet. By exposing it as Linked Data we enable additional cross-linking between more data sources.\r\n\r\n*Note* this RDF version of the dataset is no longer updated, it was taken off-line during the shutdown of Kasabi. A dump of the dataset has been [uploaded to the Internet Archive](http://archive.org/details/kasabi)"},"_id":"yahoo_geoplanet","title":"Yahoo Geoplanet RDF"},{"description":{"en":"A structured controlled vocabulary of stage-specific anatomical structures of the human. It has been designed to mesh with the mouse anatomy and incorporates each Carnegie stage of development (CS1-20). The abstract version of the human developmental anatomy ontology compresses all the tissues present over Carnegie stages 1-20 into a single hierarchy. The heart, for example, is present from Carnegie Stage 9 onwards and is thus represented by 12 EHDA IDs (one for each stage). In the abstract mouse, it has a single ID so that the abstract term given as just <i>heart</i> really means <i>heart (CS 9-20)</i>. Timing details will be added to the abstract version of the ontology in a future release."},"_id":"bioportal-ehdaa","title":"Human developmental anatomy, abstract version"},{"description":{"en":"This dataset contains the main Index of Multiple Deprivation scores for 2010. It was created from data provided by the Department of Communities and Local Government. See <a href=\"http://www.communities.gov.uk/publications/corporate/statistics/indices2010\">here</a> for details.\r\n\r\n194892 triples."},"_id":"english-index-of-multiple-deprivation-score-2010","title":"English Index of Multiple Deprivation Score 2010"},{"description":{"en":"Use this site to explore descriptions of our unique holdings at the Princeton University Libraries, which include manuscripts, archival collections, images, ephemera, and much more one-of-a-kind material."},"_id":"princeton-library-findingaids","title":"Princeton Library FindingAids"},{"description":{"en":"VIVO is a research-focused discovery tool that enables collaboration among scientists across all disciplines.\r\n\r\nBrowse or search information on people, departments, courses, grants, and publications."},"_id":"vivo-wustl","title":"VIVO WUSTL"},{"description":{"en":"A structured controlled vocabulary of the anatomy and development of the Japanese medaka fish, <i>Oryzias latipes</i>."},"_id":"bioportal-mfo","title":"Medaka fish anatomy and development"},{"description":{"en":"Digital Object Idenfiers (DOI) are a persistent identifier strategy used by around 3,000 publishers to identify their documents: mostly scholarly publications. An example of a DOI is\r\n\r\n> doi:10.1038/171737a0\r\n\r\nwhich identifies:\r\n\r\n> Watson JD, Crick FH (April 1953). \"Molecular structure of nucleic acids; a structure for deoxyribose nucleic acid\" (PDF). Nature 171 (4356): 737?738. \r\n\r\n[CrossRef](http://crossref.org) maintains one of the largest DOI registries, and has minted URLs for every DOI they manage. For example the DOI above can also be expressed as the URL:\r\n\r\n> http://dx.doi.org/10.1038/171737a0\r\n\r\nWhen resolved this URL will redirect to the publisher's page for the document that is identified. The dx.doi.org service will content negotiate to make available alternate representations of the citation metadata:\r\n\r\n* application/rdf+xml\r\n* text/turtle\r\n* application/atom+xml\r\n* application/unixref+xml (CrossRef's homegrown XML format)\r\n\r\nFor example:\r\n\r\n> curl --location --header \"Accept: application/rdf+xml\" http://dx.doi.org/10.1038/171737a0\r\n\r\nDetailed information about journals, pages, authors can be found in the data, as well as links to journals in the [Linked Periodicals](http://periodicals.dataincubator.org/.html) dataset. More about the service can be found on a CrossRef \r\n[blog post](http://www.crossref.org/CrossTech/2011/04/content_negotiation_for_crossr.html)."},"_id":"doi","title":"CrossRef DOI Resolver"},{"description":{"en":""},"_id":"rkb-explorer-cordis","title":"Community R&D Information Service (CORDIS) (RKBExplorer)"},{"description":{"en":"Universal Dependencies is a project that seeks to develop cross-linguistically consistent treebank annotation for many languages, with the goal of facilitating multilingual parser development, cross-lingual learning, and parsing research from a language typology perspective. The annotation scheme is based on (universal) Stanford dependencies (de Marneffe et al., 2006, 2008, 2014), Google universal part-of-speech tags (Petrov et al., 2012), and the Interset interlingua for morphosyntactic tagsets (Zeman, 2008).\r\n\r\nThis dataset refers to UD's Czech-CAC treebank.\r\n"},"_id":"universal-dependencies-treebank-czech-cac","title":"Universal Dependencies Treebank Czech-CAC"},{"description":{"en":"The Lemma Bank is a collection of approximately 200,000 canonical forms for Latin that is used to interlink the linguistic resources in the LiLa Knowledge Base. The canonical forms are modeled using the Ontolex ontology."},"_id":"LemmaBank","title":"LiLa Lemma Bank"},{"description":{"en":"[PeriodO](http://perio.do) is a gazetteer of scholarly definitions of historical, art-historical, and archaeological periods. It eases the task of linking among datasets that define periods differently. It also helps scholars and students see where period definitions overlap or diverge."},"_id":"periodo","title":"PeriodO Period Gazetteer"},{"description":{"en":""},"_id":"w3c","title":"W3C"},{"description":{"en":"The Drug Interaction Knowledge Base (DIKB) is clinically-oriented, evidence-based, knowledge base designed to support pharmacoepidemiology and clinical decision support. It contains quantitative and qualitative assertions about drug mechanisms and pharmacokinetic drug-drug interactions for over 60 drugs; primarily psychotropics and HMG-CoA reductase inhibitors (statins). The linked-data version of the DIKB was implemented using emerging practices from the W3C HCLS SIG Linking Open Drug Data and Scientific Discource task forces."},"_id":"the-drug-interaction-knowledge-base","title":"The Drug Interaction Knowledge Base"},{"description":{"en":"Knowledge Graph of the Erasmus+ funded project ENTICE (https://entice.eu)"},"_id":"entice-graph","title":"ENTICE Educational Episodes Knowledge Graph"},{"description":{"en":"StatusNet instance hosted at http://hii.co.il"},"_id":"statusnet-hii-co-il","title":"statusnet-hii-co-il"},{"description":{"en":"A set of data about photos of the view from various places"},"_id":"the-view-from","title":"The View From"},{"description":{"en":"Face"},"_id":"Face_Link","title":"Face Link"},{"description":{"en":"GovWILD integrates Open Government Data about politicians, parties, government agencies, funds, companies, and industrial leaders into a clean and consistent data set. This interlinked data is visualized on a Web interface to be explored by citizens and is available for download and further analysis. It can be used to uncover hidden connections between individuals in government and industry, to aggregate financial data, and to deep-dive into the network of politics and industry."},"_id":"government-web-integration-for-linked-data","title":"GovWILD - Government Web Integration for Linked Data"},{"description":{"en":"The Community Research and Development Information Service (CORDIS) contains information on all EU programmes and projects."},"_id":"fu-berlin-cordis","title":"Community Research and Development Information Service (CORDIS)"},{"description":{"en":"This resource provides 3 groups of RDF datasets. 1. Esoteric subjects such as tarot and alchemy. These all interlink and the Horoscope, Tarot, Planets and Elements sets link into DBPedia resources for Starsigns, Metals, Tarot Suits, Planets, Gems, and the Narnia novels(!)\r\n\r\n2. Descriptions of Game States such as tic-tac-toe and chess. Do not attmpt to spider these as they are effectively infinite.\r\n\r\n3. Deliberately perverse datasets including Daily Mail cancer. Where possible, the causes and preventions of cancer are linked to their DBPedia indentifiers. Other perverse datasets are considered 'toys' and not linked here. They are listed on the homepage."},"_id":"temple-ov-thee-lemur-datasets","title":"Temple ov thee Lemur"},{"description":{"en":"Cell types from NIFSTD"},"_id":"bioportal-nif_cell","title":"NIF Cell"},{"description":{"en":"Vocabulary about Sherry Wine"},"_id":"Sherry_Wine","title":"Sherry Wine Vocabulary"},{"description":{"en":"R&D Projects from http://www.isvav.cz/ ."},"_id":"cz-vavai-projects","title":"R&D Projects"},{"description":{"en":"The Information Artifact Ontology (IAO) is a new ontology of information entities, originally driven by work by the OBI digital entity and realizable information entity branch.<p>\n\n<p><b>To import</b><p>\n\nLatest released version: <a href=\"http://purl.obolibrary.org/obo/iao.owl\">http://purl.obolibrary.org/obo/iao.owl</a><p>\n\n<b>Other versions</b><p>\n\nDeveloper (live) version: <a href=\"http://purl.obolibrary.org/obo/iao/dev/iao.owl\">http://purl.obolibrary.org/obo/iao/dev/iao.owl</a><p>\n\nOntology metadata properties and classes only: <a href=\"http://purl.obolibrary.org/obo/iao/dev/ontology-metadata.owl\">http://purl.obolibrary.org/obo/iao/dev/iao.owl</a><p>\n\n<b>Dated versions</b>\n<ul>\n<li><a href=\"http://purl.obolibrary.org/obo/iao/2009-11-06/iao.owl\">http://purl.obolibrary.org/obo/iao/2009-11-06/iao.owl</a>\n<li><a href=\"http://purl.obolibrary.org/obo/iao/2010-09-14/iao.owl\">http://purl.obolibrary.org/obo/iao/2010-09-14/iao.owl</a>\n<li><a href=\"http://purl.obolibrary.org/obo/iao/2010-10-26/iao.owl\">http://purl.obolibrary.org/obo/iao/2010-10-26/iao.owl</a>\n<li><a href=\"http://purl.obolibrary.org/obo/iao/2011-05-09/iao.owl\">http://purl.obolibrary.org/obo/iao/2011-05-09/iao.owl</a>\n</ul><p>\n\n<p>Please note: The ontology metrics displayed by BioPortal are incorrect as of 7/23/2011. If you need accurate number you will need to compute them on your own, until further notice. In particular these metrics do not distinguish IAO-developed terms versus terms imported from other ontologies, and do not count existing author or definition annotations\n\n<p><b>Tracker</b>: <a href=\"http://purl.obolibrary.org/obo/iao/tracker\">http://purl.obolibrary.org/obo/iao/tracker</a><br>\n<b>Discussion group</b>: <a href=\"http://groups.google.com/group/information-ontology\">http://groups.google.com/group/information-ontology</a>"},"_id":"bioportal-iao","title":"Information Artifact Ontology"},{"description":{"en":"During the entire 20th century, the press archives now held at the German National Library of Economics (ZBW) - Leibniz Information Centre for Economics have compiled more than 30 million documents, mostly press clippings about individual persons, companies and other corporate bodies, products and a wide variety of economics-related topics. The first articles go back to the 19th century; the last were selected and indexed in 2005. These holdings provide a unique basis from which to study German and international (economic) history of the 20th century from a German perspective.\r\n\r\nThe historic press archives of the Hamburgisches Welt-Wirtschafts-Archiv (Institute of International Economics) and the Wirtschaftsarchiv des Instituts für Weltwirtschaft in Kiel (Economic Archives of the Kiel Institute for the World Economy) for the years until the currency reform of 1948 or rather the founding of the Federal Republic in 1949 were digitised during a project funded by the German Research Foundation (DFG). The digitised material, sourced mostly from roll film, is being gradually prepared for publication.\r\n\r\nAt present, we can provide online access to 250,000 documents relating to persons and companies. \r\n\r\nLicensing information can be found at http://webopac0.hwwa.de/digiview/digi_eigenesache.html (currently only in German - sorry)."},"_id":"zbw-pressemappe20","title":"20th Century Press Archives"},{"description":{"en":"GWR4 is a new release of a Microsoft Windows-based application software for calibrating geographically weighted regression (GWR) models, which can be used to explore geographically varying relationships between dependent/response variables and independent/explanatory variables. A GWR model can be considered a type of regression model with geographically varying parameters."},"_id":"GWR","title":"Geographically Weighted Regression Model"},{"description":{"en":"### Description\r\n\r\nThe package holds data from package:jamendo converted to RDF, available under the same license than the raw Jamendo data itself.\r\n\r\nThe package also holds links towards Geonames and Musicbrainz. The links are available under a Creative Commons Attribution-Noncommercial-Share Alike 3.0 License] (subject to change).\r\n\r\nThis is part of package:dbtune."},"_id":"jamendo-dbtune","title":"DBTune.org Jamendo RDF Server"},{"description":{"en":null},"_id":"opendatacommunities-households-social-lettings-general-needs-lettings-prp-household-composition","title":"opendatacommunities-households-social-lettings-general-needs-lettings-prp-household-composition"},{"description":{"en":"StatusNet instance hosted at http://mamalibre.com.ar"},"_id":"statusnet-mamalibre-com-ar","title":"statusnet-mamalibre-com-ar"},{"description":{"en":"The MaHCO contains terms necessary for describing and categorizing concepts related to MHC, in general, and for a number of model species, and also for humans. "},"_id":"bioportal-mhc","title":"MaHCO - An MHC Ontology"},{"description":{"en":"Indian actor"},"_id":"Shutterstock","title":"Jishnu Raghavan (1976-2016)"},{"description":{"en":"English WordNet is a new wordnet for English based on the Princeton WordNet, but developed under an open-source model. In particular, this version of WordNet has been developed by multiple people around the world through GitHub, fixes many errors in previous wordnets for English."},"_id":"english-wordnet","title":"English WordNet"},{"description":{"en":"The dataset is derived from the data aggregated by The European Library. It is comprised of all the aggregated data that is made openly available by the data providing libraries (European national and research libraries). The dataset includes national bibliographies, library catalogues, and research collections including both digital and physical resources. The data is made available under open licensing terms, which allow the unrestricted use of the data for any purpose by anyone, including commercial use."},"_id":"the-european-library-open-dataset","title":"The European Library Open Dataset"},{"description":{"en":"Tenders in R&D from http://www.isvav.cz/ ."},"_id":"cz-vavai-tenders","title":"Tenders in R&D"},{"description":{"en":"This data set contains the Cooperative Patent Classification scheme. It is a hierarchical ontology with skos:narrower and skos:broader relations between its about 250 000 nodes (aka \"CPC symbols\") covering the complete technical domain. It is a refinement of the older International Patent Classification (IPC). CPC is used by major patent offices to classify patent documents.\nFor more details see https://www.cooperativepatentclassification.org/"},"_id":"CPC","title":"Cooperative Patent Classification"},{"description":{"en":"The dataset provides maximal prices of reimbursed medicinal products marketed in Czech republic. The dataset was created on the base of information published by Czech State Institute for Drug Control"},"_id":"cz-sidc-drug-prices","title":"List of prices of reimbursed medicinal products marketed in Czech republic"},{"description":{"en":"National raw and geodata catalog of the United States.\r\n\r\nSee also package:twc-logd for an RDF version that features dereferenceable URIs and is more interlinked."},"_id":"data-gov","title":"Data.gov"},{"description":{"en":"This dataset contains the protein data offered by neXtProt."},"_id":"bio2rdf-nextprot","title":"Bio2RDF::neXtProt"},{"description":{"en":"Universal Dependencies is a project that seeks to develop cross-linguistically consistent treebank annotation for many languages, with the goal of facilitating multilingual parser development, cross-lingual learning, and parsing research from a language typology perspective. The annotation scheme is based on (universal) Stanford dependencies (de Marneffe et al., 2006, 2008, 2014), Google universal part-of-speech tags (Petrov et al., 2012), and the Interset interlingua for morphosyntactic tagsets (Zeman, 2008).\r\n\r\nThis dataset refers to UD's English-LinES treebank.\r\n"},"_id":"universal-dependencies-treebank-english-lines","title":"Universal Dependencies Treebank English-LinES"},{"description":{"en":"lobid-resources is a service which offers access to metadata in RDF about bibliographic resources (books, articles, pdfs etc.) with more than 19 million frbr:manifestations with more than 40 million frbr:items.\r\nWe also provide a raw data dump at http://thedatahub.org/dataset/hbz_unioncatalog .\r\n\r\nLinks to other datasets are provided in separate files, see below.\r\n\r\nYou can find additional information about this data [here](https://wiki1.hbz-nrw.de/display/SEM/2010/08/31/Linked-Open-hbz-Data).\r\n"},"_id":"lobid-resources","title":"lobid-Bibliographic Resources"},{"description":{"en":"Ecuadorian geospatial LD dataset"},"_id":"geoecuador","title":"GeoEcuador"},{"description":{"en":null},"_id":"opendatacommunities-wellbeing-worthwhile-mean","title":"opendatacommunities-wellbeing-worthwhile-mean"},{"description":{"en":"### About\r\n\r\nFrom website:\r\n\r\n> For the last 150 years, The New York Times has maintained one of the most authoritative news vocabularies ever developed. In 2009, we began to publish this vocabulary as linked open data."},"_id":"nytimes-linked-open-data","title":"New York Times - Linked Open Data"},{"description":{"en":"Groundbreaking biomedical research requires access to cutting edge scientific resources; however such resources are often invisible beyond the laboratories or universities where they were developed. eagle-i is a national research resource discovery platform to help biomedical scientists search for and find previously invisible, but highly valuable, resources. \r\nResource descriptions collected at each participating institution are freely available as linked open data.\r\nSee: http://www.eagle-i.net/"},"_id":"eagle-i-dartmouth","title":"eagle-i @ Dartmouth College"},{"description":{"en":"International Standard Industrial Classification of All Economic Activities, United Nations Statistics Division is a product scheme classification used by the United Nations to create statistics. \r\n\r\nAuthors:\r\n\r\nJose María Alvarez Rodríguez & Jose Emilio Labra Gayo \r\n\r\nWESO-University of Oviedo"},"_id":"isic-v4","title":"ISIC V4"},{"description":{"en":"Universal Dependencies is a project that seeks to develop cross-linguistically consistent treebank annotation for many languages, with the goal of facilitating multilingual parser development, cross-lingual learning, and parsing research from a language typology perspective. The annotation scheme is based on (universal) Stanford dependencies (de Marneffe et al., 2006, 2008, 2014), Google universal part-of-speech tags (Petrov et al., 2012), and the Interset interlingua for morphosyntactic tagsets (Zeman, 2008).\r\n\r\nThis dataset refers to UD's Russian-SynTagRus treebank.\r\n"},"_id":"universal-dependencies-treebank-russian-syntagrus","title":"Universal Dependencies Treebank Russian-SynTagRus"},{"description":{"en":"This is a store that contains the email archive of the University of Southampton Digital Economy mailing list.\r\nIt mostly uses the SIOC ontology.\r\nThe mbox2rdf translator was provided by Toby Inkster."},"_id":"rkb-explorer-digitaleconomy","title":"digitaleconomy"},{"description":{"en":"StatusNet instance hosted at http://gomertronic.com"},"_id":"statusnet-gomertronic-com","title":"statusnet-gomertronic-com"},{"description":{"en":"This project shows the use of linked data to provide a way to represent and consume information about unmissing people retrieved from non-governamental organization's sites. A tool was created to mark as spam messages about unmissing people on Facebook, using a database that implements the linked data principles."},"_id":"desaparecidos","title":"Projeto Desaparecidos"},{"description":{"en":"Information about Indiana University faculty and staff across, available as RDF dump and Linked Data. Currently populated with information about members of the VIVO team at IU, it will eventually be expanded to contain information about other participating researchers, departments, and centers at IU. This is a part of package:vivo."},"_id":"vivo-indiana-university","title":"VIVO Indiana"},{"description":{"en":null},"_id":"rkb-explorer-roni","title":"roni"},{"description":{"en":"Name authorities and subject headings of Japan's National Library are provided as Linked Data. Each record is described with such vocabularies as SKOS, SKOS-XL, DC and RDA Elements G2. Records are linked to LCSH, VIAF etc. with SKOS mapping properties where applicable."},"_id":"national-diet-library-authorities","title":"Web NDL Authorities - National Diet Library of Japan"},{"description":{"en":"Ontology\t\r\nMetadata as LOD\t\r\n\r\nAvailability: Freely Avalable\t\r\n\r\nUsage: \tStatus:Newly created-in progress\r\n\r\nDescription: \tLOD prelimnary version of the MetaShare metadata model.\r\n\r\n(http://www.resourcebook.eu/shareyourlr/index.php#)"},"_id":"metashare","title":"MetaShare metadata model"},{"description":{"en":"Open Land Use Map is a composite map that is intended to create detailed land-use maps of various regions based on certain pan-Europen datasets such as CORINE Landcover, UrbanAtlas enriched by available regional data. The dataset is derived from available open datasources at different levels of detail and coverage. These data sources include: 1) Digital cadastral maps if available 2) Land Parcel Identification System if Available 3) Urban Atlas(European Environmental Agency) 4) CORINE Land Cover 2006 (European Environmental Agency) 5) Open Street Map The order of the data sources is according to the level of detail and, therefore, the priority for data integration. The dataset includes agriculture related lands (hilucs_code<200) from Czech, Poland, Spain & for few main cities in Czech Republic (centers of NUTS3 regions), Poland (agglomeration areas from Urban Atlas) and Spain (agglomeration areas from Urban Atlas)."},"_id":"Open_Land_Use","title":"Open Land Use @PSNC"},{"description":{"en":"Statistical Office of the Republic of Serbia\r\n"},"_id":"sors","title":"SORS"},{"description":{"en":"Descriptions of pictures showing species"},"_id":"taxonconcept-assets","title":"taxonconcept-assets"},{"description":{"en":null},"_id":"opendatacommunities-households-social-lettings-general-needs-lettings-prp-number-bedrooms","title":"opendatacommunities-households-social-lettings-general-needs-lettings-prp-number-bedrooms"},{"description":{"en":"Published Subject Identifiers (URIs) for languages defined in ISO 639. This list is published by OASIS.\r\n\r\nIt is available in HTML, RDF/XML, and XTM.\r\n\r\nThe list was last updated in 2005 and was considered experimental at that time."},"_id":"iso-639-oasis","title":"Published subjects for languages in ISO 639"},{"description":{"en":"A proof-of-concept application was created to automatically cross-link publications that were written by the same person through harvesting linked open data from institution-based research networking systems. This is important because it (1) helps people identify related articles when exploring the biomedical literature, (2) gives scientists appropriate credit for the work they have done, and (3) makes it easier to find experts in a subject area.\r\n\r\nThis project was funded by NSF SciSIP Award #1238469, NIH grants 8UL1TR000170 and 1UL1TR001102, and Harvard University and its affiliated academic health centers."},"_id":"vivo2doi","title":"vivo2doi"},{"description":{"en":"AAT notes"},"_id":"Altawil","title":"AAT-atawil"},{"description":{"en":"Linked Open Financial Data"},"_id":"lofd","title":"lofd"},{"description":{"en":"StatusNet instance hosted at http://deuxpi.ca"},"_id":"statusnet-deuxpi-ca","title":"statusnet-deuxpi-ca"},{"description":{"en":"Indian Biodiversity"},"_id":"https:bioportal.bioontology.orgontologiesIBIO","title":"Indian Biodiversity"},{"description":{"en":"We provide the Microsoft Academic Knowledge Graph (MAKG), a large RDF data set with over eight billion triples with information about scientific publications and related entities, such as authors, institutions, journals, and fields of study. The data set is based on the Microsoft Academic Graph and licensed under the Open Data Attributions license. Furthermore, we provide entity embeddings for all 210M represented scientific papers. "},"_id":"makg","title":"Microsoft Academic Knowledge Graph"},{"description":{"en":"Semantic repository that contains and publishes co-reference information, forming the underlying distributed storage model behind the RKB Explorer initiative."},"_id":"rkb-explorer-ecs","title":"School of Electronics and Computer Science, University of Southampton"},{"description":{"en":"The Croatian wordnet as published as part of the Open Multilingual WordNet. The goal of Open Multilingual WordNet is to make it easy to use wordnets in multiple languages. The individual wordnets have been made by many different projects and vary greatly in size and accuracy. We have (i) extracted and normalized the data, (ii) linked it to Princeton WordNet 3.0 and (iii) put it in one place. The Open Multilingual Wordnet and its components are open: they can be freely used, modified, and shared by anyone for any purpose. "},"_id":"omwn-hrv","title":"Croatian WordNet (as part of Open Multilingual WordNet)"},{"description":{"en":"LOC (Linked Open Commerce) is a collaboration of OpenLink Software, Hepp Research GmbH and Linktegration that delivers a structured Linked Data space on the Web for finding products and services related offers, with precision.\r\n\r\nThis project seeks to provide a Linked Data substrate that delivers a foundation for new kinds of e-commerce applications and services.\r\n\r\n### Issues\r\n\r\nThe SPARQL endpoint also contains other, not e-Commerce related, RDF data collected from the Web."},"_id":"linked-open-commerce","title":"Linked Open Commerce"},{"description":{"en":"This dataset contains the MASC 3.0 corpus, a large English corpus covering a wide range of genres of written and spoken text, enhanced with semantic annotations, both word senses and named entities. Annotations are drawn from the sense/entity inventory derived from BabelNet 2.0, a multilingual semantic network which integrates both lexicographic and encyclopedic knowledge."},"_id":"masc-bn-nif","title":"MASC-BN-NIF"},{"description":{"en":"The Measurement Method Ontology is designed to represent the variety of methods used to make qualitative and quantitative clincial and phenotype measurements both in the clinic and with model organisms."},"_id":"bioportal-mmo","title":"Measurement Method Ontology"},{"description":{"en":"Representation of types of dendritic cell. Note that the domain of this ontology is wholly subsumed by the domain of the Cell ontology (CL)."},"_id":"bioportal-dc_cl","title":"Dendritic cell"},{"description":{"en":"The aim of this project, called DATATURCYL, is to reuse and redistribute open data provided by the Junta de Castilla y León to enrich and enhance information services about tourism in the community. To provide them with an added value, this project embraces the Linked Open Data philosophy. In our particular case, the information for tourism (bars, restaurants, hotels, etc.) is converted to RDF and enriched with geographic data sources and open knowledge in Dbpedia."},"_id":"dataturcyl-lod-for-tourists-in-castilla-y-leon-spain","title":"DATATURCYL - LOD for tourists in Castilla y León (Spain)"},{"description":{"en":"Universal Dependencies is a project that seeks to develop cross-linguistically consistent treebank annotation for many languages, with the goal of facilitating multilingual parser development, cross-lingual learning, and parsing research from a language typology perspective. The annotation scheme is based on (universal) Stanford dependencies (de Marneffe et al., 2006, 2008, 2014), Google universal part-of-speech tags (Petrov et al., 2012), and the Interset interlingua for morphosyntactic tagsets (Zeman, 2008).\r\n\r\nThis dataset refers to UD's Portuguese-Bosque treebank.\r\n"},"_id":"universal-dependencies-treebank-portuguese-bosque","title":"Universal Dependencies Treebank Portuguese-Bosque"},{"description":{"en":"Data cube containing statistical data with selected public health indicators in regions of Czech republic according to Czech Statistical Office."},"_id":"cz-czso-selected-indicators-of-public-health","title":"Selected public health indicators in regions of Czech republic"},{"description":{"en":"StatusNet instance hosted at http://davidhaberthuer.ch"},"_id":"statusnet-davidhaberthuer-ch","title":"statusnet-davidhaberthuer-ch"},{"description":{"en":"InterPro is an integrated database of predictive protein 'signatures' used for the classification and automatic annotation of proteins and genomes. InterPro classifies sequences at superfamily, family and subfamily levels, predicting the occurrence of functional domains, repeats and important sites."},"_id":"bio2rdf-interpro","title":"Bio2RDF::Interpro"},{"description":{"en":"This DataSet is Taken from UCI Machine Learning Repository. It's domain is Sports and this data is about The Grand Slam tournament of Tennis for year 2013. "},"_id":"http:www.fateh_fahad_adeel.comgrandSlam","title":"Grand Slam Knowledge Graph"},{"description":{"en":"ECB data and metadata"},"_id":"ecb-linked-data","title":"European Central Bank (ECB) Linked Data"},{"description":{"en":"The Verrijkt Koninkrijk Data concerns Dr Loe de Jong?s Het Koninkrijk der Nederlanden in de Tweede Wereldoorlog and was based on the PDFs as provided by NIOD at http://www.niod.knaw.nl/koninkrijk/ . The books have been OCRed and transformed to structured XML by researchers from the Universiteit van Amsterdam. This data is available through www.loedejongdigitaal.nl.\r\n\r\nThis dataset contains a data dump of the Verrijkt Koninkrijk semantic layer (live at http://semanticweb.cs.vu.nl/verrijktkoninkrijk/ ). The files are in SKOS (www.w3.org/2004/02/skos/)\r\nThere are 15 main files/named graphs that make up 3 categories of data:\r\n1. The back of the book index in SKOS format, plus schema and SKOS linksto internal and external datasets\r\n2. The named entities index into the book in SKOS format, plus schema and SKOS links to internal and external datasets\r\n3. The NIOD thesaurus in SKOS format, plus the hierarchy, used for links from Back of the Book and Named Entity links."},"_id":"verrijktkoninkrijk","title":"Verrijkt Koninkrijk"},{"description":{"en":"This is a dataset that represents triples in a videogame domain. It connects a game with its most important attributes such as publisher, developer, genre, etc."},"_id":"http:www.RAG.comgameonto#","title":"Game Ontology"},{"description":{"en":"The Romanian Wordnet in JSON format"},"_id":"racai-llod-romanian-wordnet-json","title":"JSON Romanian Wordnet"},{"description":{"en":"This server generates Linked Data versions of the data present on Eventseer.net"},"_id":"eventseer","title":"Eventseer"},{"description":{"en":"iServe is the place on the Web where linked data meets services. In a nutshell, iServe is a platform for publishing Semantic Web Services as linked data, no matter their original format."},"_id":"iserve","title":"iServe: Linked Services Registry"},{"description":{"en":"Based on P. N. Mendes, M. Jakob, A. García-Silva, and C. Bizer. DBpedia Spotlight: shedding light on the web of documents. In Proc. of the 7th Int. Conf. on Semantic Systems, 2011.\r\n\r\nIt contains 60 natural language sentences from ten different New York Times articles with overall 249 annotated DBpedia entities, i. e. the entities are not explicitely bound to mentions within the texts, which causes a certain lack of clarity. Therefore, we (in all conscience) retroactively have allocated the entities to their positions within the texts.\r\nThe entities dbp:Markup_Language and dbp:PBC_CSKA_Moscow could not be linked in the texts, since there was also a more specific entity enlisted occupying their solely possible location, e. g. hypertext markup language has been annotated with dbp:HTML rather than dbp:Markup_language."},"_id":"dbpedia-spotlight-nif-ner-corpus","title":"DBpedia Spotlight NIF NER Corpus"},{"description":{"en":"The IDO ontologies are designed as a set of interoperable ontologies that will together provide coverage of the infectious disease domain. At the core of the set is a general Infectious Disease Ontology (IDO-Core) of entities relevant to both biomedical and clinical aspects of most infectious diseases. Sub-domain specific extensions of IDO-Core complete the set providing ontology coverage of entities relevant to specific pathogens or diseases. \n\n<br><br>\nTo import,<br>\nLatest version: <a href=\"http://purl.obolibrary.org/obo/ido.owl\">http://purl.obolibrary.org/obo/ido.owl</a><br>\nThis version (2010-12-02): <a href=\"http://purl.obolibrary.org/obo/ido/2010-12-02/ido.owl\">http://purl.obolibrary.org/obo/ido/2010-12-02/ido.owl</a><br>\nPrevious versions:<br>\n2010-05-26 <a href=\"http://purl.obolibrary.org/obo/ido/2010-05-26/ido.owl\">http://purl.obolibrary.org/obo/ido/2010-05-26/ido.owl</a><br>\n2009-08-14 <a href=\"http://purl.obolibrary.org/obo/ido/2009-08-14/ido.owl\">http://purl.obolibrary.org/obo/ido/2009-08-14/ido.owl</a><br>\n<br>\n<br>\nLatest release notes at <a href=\"http://infectiousdiseaseontology.org/page/Download\">http://infectiousdiseaseontology.org/page/Download</a><br>\n\n\nPlease note: The ontology metrics displayed by BioPortal are incorrect as of 8/11/2011. If you need accurate number you will need to compute them on your own, until further notice. In particular these metrics do not distinguish OBI-developed terms versus terms imported from other ontologies, and do not count existing author or definition annotations\n"},"_id":"bioportal-ido","title":"Infectious Disease Ontology"},{"description":{"en":"Linked Data Provenance for OPeNDAP data processing."},"_id":"twc-opendap","title":"twc-opendap"},{"description":{"en":"Data exposed: ontology focused on bibliography data of publications from DBLP with additions that include affiliations, universities, and publishers\r\n\r\nSize of dump and data set: 11M triples (1.1GB)\r\n\r\n\r\nNo dereferenceable URIs found."},"_id":"sweto-dblp","title":"SwetoDblp"},{"description":{"en":"dbpedia lite takes some of the structured data in Wikipedia and presents it as Linked Data. It contains a small subset of the data that dbpedia contains; it does not attempt to extract data from the Wikipedia infoboxes. Data is fetched live from the Wikipedia API. It uses Wikipedia pageIds in its URIs to attempt to mitigate the problems of article titles changing over time.\r\n\r\nAs the data comes from WIkipedia, the licensing is the same.\r\n\r\nThis project is not affiliated with DBpedia.\r\n"},"_id":"dbpedia-lite","title":"dbpedia lite"},{"description":{"en":"List of geo-referenced italian museums. Places are linked to Geonames. Museum categories are linked to dbpedia.\r\nMore info at [http://www.linkedopendata.it/datasets/musei](http://www.linkedopendata.it/datasets/musei)"},"_id":"museums-in-italy","title":"Italian Museums"},{"description":{"en":"The Mouse Genome Database (MGD) project includes data on gene characterization, nomenclature, mapping, gene homologies among mammals, sequence links, phenotypes, allelic variants and mutants, and strain data."},"_id":"bio2rdf-mgi","title":"Bio2RDF::Mgi"},{"description":{"en":"The Linked Data version of DailyMed which is published by the National Library of Medicine, and provides high quality information about marketed drugs. DailyMed provides much information including general background on the chemical structure of the compound and its therapeutic purpose, details on the compound's clinical pharmacology, indication and usage, contraindications, warnings, precautions, adverse reactions, overdosage, and patient counseling."},"_id":"fu-berlin-dailymed","title":"DailyMed"},{"description":{"en":"Metathesaurus CPT Hierarchical Terms"},"_id":"bioportal-mthch","title":"Metathesaurus CPT Hierarchical Terms"},{"description":{"en":"A structured controlled vocabulary of the anatomy and development of the Zebrafish (<i>Danio rerio</i>)."},"_id":"bioportal-zfa","title":"Zebrafish anatomy and development"},{"description":{"en":"La Biblioteca Nacional Escolar (BNEscolar) es una colección de más de 8.500 documentos digitalizados de la Biblioteca Digital Hispánica. Está constituida por un conjunto de contenidos elegidos, además de por su indudable valor cultural, por su utilidad para enriquecer y complementar los contenidos educativos del currículo de enseñanzas medias. \r\n\r\nLa BNEscolar nació en el marco de la colaboración entre la Bliblioteca Nacional de España (BNE) y GNOSS en el proyecto Spanish Culture in Linked Open Data: Explotación semántica y valorización educativa de los bienes culturales españoles.\r\n\r\nEstá estructurada en tres secciones: Arte, Dibujos de los niños de la guerra y Otras colecciones. La primera de ellas engloba más de 2400 obras de arte de las colecciones de Grabados de Durero, Obras de Goya, Estampas Japonesas, Grabados flamencos y holandeses...de gran riqueza cultural. La segunda de ellas comprende íntegramente la colección de Dibujos de los niños de la guerra. Un conjunto de cerca de 1200 dibujos, pintados por niños acogidos en diversas instituciones de España y Francia, que representa la mirada infantil del conflicto bélico y de escenas de la vida cotidiana en esa época. La tercera de ellas, Otras Colecciones, incluye más de 5.000 obras culturales sobre diversas disciplinas pertenecientes a quince diferentes colecciones de la BNE como: Teatro del Siglo de Oro, Quijotes, Material Cartográfico Manuscrito, Historia de la Ciencia, entre otras.\r\n\r\n\r\nNational School Library\r\n\r\nThe National School Library (BNEscolar) is a collection of over 8,500 digitalized documents of the Hispanic Digital Library. It is constituted for a set of chosen contents, in addition to its indubitable cultural value, because of its usefulness to enrich and complement educational contents of the intermediate education curriculum.\r\n\r\nThe BNEscolar was born in the context of teamwork between Spanish School Library BNE and GNOSS on the project Spanish Culture in Linked Open Data: semantic exploitation and educational valorization of Spanish cultural goods.\r\n\r\nIt is structured into three sections: Art, Children’s drawings of war and Other collections. The first of them includes more than 2,400 artworks from collections of Engravings by Dürer, Works of Goya, Japanese Prints, Flemish and Dutch Engravings … culturally rich. The second of them includes entirely the collection of Children’s drawings of war. A whole of about 1,200 drawings, painted by fostered children by different institutions of Spain and France, which represents childish look of the war conflict and scenes of daily life at this time. The third of them, Other collections, includes over 5,000 artworks about several disciplines belonging to fifteen different collections of BNE like: Spanish Golden Age Theatre, Quijotes, Manuscript Cartographic Material, History of Science, among other artworks.\r\n\r\nBibliothèque National Scolaire\r\n\r\nLa Bibliothèque National Scolaire (BNEscolar) est une collection de plus de 8.500 documents digitalisés de la Bibliothèque National Hispanique. Elle est constituée d’un ensemble de contenus sélectionnés, en plus de son indubitable valeur culturelle, pour son utilité pour enrichir et complémenter les contenus éducatifs du curriculum d’enseignements secondaires.\r\n\r\nLa BNEscolar est né dans le cadre de collaboration entre la Bibliothèque Nationale Espagnole BNE et GNOSS dans le projet Spanish Culture in Linked Open Data : exploitation sémantique et valorisation éducative des biens culturels espagnols.\r\n\r\nElle est divisée en trois sections : Art, Dessins des enfants de la guerre et Autres collections. La première comprend plus de 2.400 œuvres d’art des collections des Gravures de Dürer, des Ouvres de Goya, des Estampes japonaises, des Gravures flamands et hollandais … d’une grande richesse culturelle. La deuxième comprend entièrement la collection des Dessins des enfants de la guerre. Un ensemble d’environ 1.200 dessins, peint par des enfants accueillis par des institutions d’Espagne et de la France, que représente le regard enfantin de la guerre et des scènes de la vie quotidienne dans cette époque. La troisième, Autres collections, comprend plus de 5.000 œuvres culturelles sur diverses disciplines dans quinze différents collections de la BNE comme : Théâtre de l’Age d’Or, Quijotes, Matériel Cartographique Manuscrit, Histoire de la Science, entre autres. "},"_id":"biblioteca-nacional-escolar-bnescolar","title":"Biblioteca Nacional Escolar (BNEscolar)"},{"description":{"en":"This repository contains data supplied from Fundação da Faculdade de Ciencas da Universidade de Lisboa."},"_id":"rkb-explorer-lisbon","title":"Fundação da Faculdade de Ciencas da Universidade de Lisboa (RKBExplorer)"},{"description":{"en":"Source : [Calames](http://www.calames.abes.fr)\r\n\r\nCalames is the French academic union catalogue of archives and manuscripts, maintained by ABES\r\n\r\nLicensing : not yet, but will be as open as possible\r\n\r\nNB : in order to extract the RDFa, please use the URL as it is given in the following example, not as it is resolved by the application and displayed in the address bar. (Ajax trick)"},"_id":"calames","title":"Calames"},{"description":{"en":"Terms associated with pediatrics, representing information related to child health and development from pre-birth through 21 years of age; contributed by the National Institute of Child Health and Human Development."},"_id":"bioportal-pedterm","title":"Pediatric Terminology"},{"description":{"en":"Universal Dependencies is a project that seeks to develop cross-linguistically consistent treebank annotation for many languages, with the goal of facilitating multilingual parser development, cross-lingual learning, and parsing research from a language typology perspective. The annotation scheme is based on (universal) Stanford dependencies (de Marneffe et al., 2006, 2008, 2014), Google universal part-of-speech tags (Petrov et al., 2012), and the Interset interlingua for morphosyntactic tagsets (Zeman, 2008).\r\n\r\nThis dataset refers to UD's Slovak treebank.\r\n"},"_id":"universal-dependencies-treebank-slovak","title":"Universal Dependencies Treebank Slovak"},{"description":{"en":null},"_id":"opendatascotland-simd-crime-rank","title":"opendatascotland-simd-crime-rank"},{"description":{"en":"StatusNet instance hosted at http://shnoulle.net"},"_id":"statusnet-shnoulle-net","title":"statusnet-shnoulle-net"},{"description":{"en":"RadLex is a controlled terminology for radiology-a single unified source of radiology terms for radiology practice, education, and research. For license information see : <a href=\"http://www.rsna.org/uploadedFiles/RSNA/Content/Informatics/radlex_public_license_version_1-0-1.pdf\">http://www.rsna.org/uploadedFiles/RSNA/Content/Informatics/radlex_public_license_version_1-0-1.pdf</a>"},"_id":"bioportal-rid","title":"RadLex"},{"description":{"en":"Course reading lists from Manchester Metropolitan University."},"_id":"aspire-mmu","title":"Talis Aspire - Manchester Metropolitan University"},{"description":{"en":"Najvisi Cin-Legija-\nU ime Legije"},"_id":"Uros_Susa","title":"Legija"},{"description":{"en":"My ontology test"},"_id":"myontologytest","title":"My ontology test"},{"description":{"en":"StatusNet instance hosted at http://recit.org"},"_id":"statusnet-recit-org","title":"statusnet-recit-org"},{"description":{"en":"The MultiWordNet wordnet as published as part of the Open Multilingual WordNet. The goal of Open Multilingual WordNet is to make it easy to use wordnets in multiple languages. The individual wordnets have been made by many different projects and vary greatly in size and accuracy. We have (i) extracted and normalized the data, (ii) linked it to Princeton WordNet 3.0 and (iii) put it in one place. The Open Multilingual Wordnet and its components are open: they can be freely used, modified, and shared by anyone for any purpose. "},"_id":"omwn-ita","title":"MultiWordNet WordNet (as part of Open Multilingual WordNet)"},{"description":{"en":"SkinPhoniqa "},"_id":"11","title":"113322"},{"description":{"en":"Business-related data from data.gov.uk:\r\n\r\n* [Namespace for companies](http://business.data.gov.uk/doc/company); this appears to have entries for all companies registered at Companies House.\r\n\r\nPart of package:data-gov-uk."},"_id":"business-data-gov-uk","title":"business.data.gov.uk"},{"description":{"en":"RDF version of the Apertium bilingual dictionary ES-CA. The original dataset (in LMF) comes from http://hdl.handle.net/10230/17127 . The RDF version of the lexica is modelled using lemon (http://lemon-model.net/) and the translation module (http://purl.org/net/translation). More about the Apertium RDF dictionaries at http://linguistic.linkeddata.es/apertium/"},"_id":"apertium-rdf-es-ca","title":"Apertium RDF ES-CA"},{"description":{"en":"The GoogleArtProject is a place to explore museums from around the world, seeing and learning about the artwork they contain. It is a cool service, offering very high res images of the paintings, but not providing a machine-friendly access to the data shown. This server provides a wrapper around the HTML page for paintings and museums. It exposes part of the information using FOAF and Dublin Core ontologies and links the resource to DBpedia"},"_id":"googleart-wrapper","title":"GoogleArt wrapper"},{"description":{"en":null},"_id":"opendatacommunities-homelessness-households-accommodated-temporary-housing-types","title":"opendatacommunities-homelessness-households-accommodated-temporary-housing-types"},{"description":{"en":"Data about Ruben Verborgh's professional activities, including metadata about publications, blog posts, and people."},"_id":"rubenverborgh","title":"Ruben Verborgh's data"},{"description":{"en":"The IceWordNet wordnet as published as part of the Open Multilingual WordNet. The goal of Open Multilingual WordNet is to make it easy to use wordnets in multiple languages. The individual wordnets have been made by many different projects and vary greatly in size and accuracy. We have (i) extracted and normalized the data, (ii) linked it to Princeton WordNet 3.0 and (iii) put it in one place. The Open Multilingual Wordnet and its components are open: they can be freely used, modified, and shared by anyone for any purpose. "},"_id":"omwn-isl","title":"IceWordNet WordNet (as part of Open Multilingual WordNet)"},{"description":{"en":"BioModels Database is a reliable repository of computational models of biological processes. It hosts models described in peer-reviewed scientific literature and models generated automatically from pathway resources (Path2Models). A large number of models collected from literature are manually curated and semantically enriched with cross-references from external data resources.\r\n\r\nBioModels Linked Dataset captures the content of the models in BioModels Database (primarilly encoded in the SBML format) in RDF."},"_id":"biomodels-rdf","title":"BioModels RDF"},{"description":{"en":"StatusNet instance hosted at http://jonkman.ca"},"_id":"statusnet-jonkman-ca","title":"statusnet-jonkman-ca"},{"description":{"en":"RoLEX is a Romanian lexicon in which for each entry there is information about its lemma, part of speech, phonetic transcription, syllabification and lexical stress."},"_id":"racai-llod-rolex","title":"RoLEX"},{"description":{"en":"Universal Dependencies is a project that seeks to develop cross-linguistically consistent treebank annotation for many languages, with the goal of facilitating multilingual parser development, cross-lingual learning, and parsing research from a language typology perspective. The annotation scheme is based on (universal) Stanford dependencies (de Marneffe et al., 2006, 2008, 2014), Google universal part-of-speech tags (Petrov et al., 2012), and the Interset interlingua for morphosyntactic tagsets (Zeman, 2008).\r\n\r\nThis dataset refers to UD's Ancient_Greek-PROIEL treebank.\r\n"},"_id":"universal-dependencies-treebank-ancient-greek-proiel","title":"Universal Dependencies Treebank Ancient_Greek-PROIEL"},{"description":{"en":"Data box is a verified electronic mailbox mandatory for all companies and voluntary for individuals for communication with the Czech public administration."},"_id":"cz-list-of-databoxes","title":"List of Czech data boxes"},{"description":{"en":"Data exposed: selected OBO ontologies, downloaded ~21 April 2007, augmented with inferred relations\r\nSize of dump and data set: 2.6 MB\r\nNotes: released without contract"},"_id":"bbop-selected","title":"BBOP"},{"description":{"en":"Linked data for every time interval and instant into the past and future, from years down to seconds. This is an infinite set of linked data. It includes government years and properly handles the transition to the Gregorian calendar within the UK.\r\n\r\nPart of package:reference-data-gov-uk"},"_id":"data-gov-uk-time-intervals","title":"data.gov.uk Time Intervals"},{"description":{"en":"AI/RHEUM is used for the diagnosis of rheumatologic diseases. AI/RHEUM contains findings, such as clinical signs, symptoms, laboratory test results, radiologic observations, tissue biopsy results, and intermediate diagnosis hypotheses. Findings and hypotheses, which include definitions, are used to reach diagnostic conclusions with definite, probable, or possible certainty. AI/RHEUM is used by clinicians and informatics researchers."},"_id":"bioportal-air","title":"AI/RHEUM"},{"description":{"en":"Overview of organizations active in R&D from http://www.isvav.cz/ ."},"_id":"cz-vavai-organizations","title":"Organizations active in R&D"},{"description":{"en":"The data here comes from harvesting ePrints Open Archives, as listed at [http://roar.eprints.org](http://roar.eprints.org).\r\n\r\nThere is a [list of the 190 repositories](http://foreign.rkbexplorer.com/models/sites.html) we have managed to harvest.\r\n\r\nWe can't provide a typical URI to resolve, as none of the URIs are ours. You can use this URI to do a SPARQL query: http://researchrepository.napier.ac.uk/id/eprint/1615"},"_id":"eprints-harvest-rkbexplorer","title":"ePrints Harvest (RKBExplorer)"},{"description":{"en":"People, organisations, applications and technologies etc. relevant for the area of the Social Semantic Web"},"_id":"socialsemweb-thesaurus","title":"Social Semantic Web Thesaurus"},{"description":{"en":"APiCS Online published by the CLLD project"},"_id":"clld-apics","title":"CLLD-APICS"},{"description":{"en":"Data extracted from the census data provided by UK's Office for National Statistics grouped by parliamentary constituencies.\r\n\r\nDates from mid 2001 to mid 2007."},"_id":"enakting-population","title":"EnAKTing Population Dataset"},{"description":{"en":"RDF version of the Apertium bilingual dictionary ES-AN. The original dataset (in LMF) comes from http://hdl.handle.net/10230/22869 . The RDF version of the lexica is modelled using lemon (http://lemon-model.net/) and the translation module (http://purl.org/net/translation). More about the Apertium RDF dictionaries at http://linguistic.linkeddata.es/apertium/\r\n"},"_id":"apertium-rdf-es-an","title":"Apertium RDF ES-AN"},{"description":{"en":"Airports producing METAR weather reports with URI scheme based on (pseudo-)ICAO (and IATA) codes (with raw original codes as skos:notation) interlinked with OurAirports, Geonames and DBPedia airports"},"_id":"los_metar","title":"Weather Stations"},{"description":{"en":"The World Loanword Database, edited by Martin Haspelmath and Uri Tadmor, is a scientific publication by the Max Planck Digital Library, Munich (2009). \r\n\r\nIt provides vocabularies (mini-dictionaries of about 1000-2000 entries) of 41 languages from around the world, with comprehensive information about the loanword status of each word. It allows users to find loanwords, source words and donor languages in each of the 41 languages, but also makes it easy to compare loanwords across languages. \r\n\r\nEach vocabulary was contributed by an expert on the language and its history. An accompanying book is being published by Mouton de Gruyter (Loanwords in the World's Languages: A Comparative Handbook, edited by Martin Haspelmath & Uri Tadmor). \r\n\r\nThe World Loanword Database 2009 consists of vocabularies contributed by 41 different authors or author teams. When citing material from the database, please cite the corresponding vocabulary (or vocabularies). \r\n\r\nThe database can be accessed by language, by meaning, by author, or by reference. \r\n\r\nThe World Loanword Database 2009 is the result of a collaborative project coordinated by Uri Tadmor and Martin Haspelmath between 2004 and 2008, called the Loanword Typology Project (LWT). Most of the contributors took part in workshops at which the procedures for selecting and annotating words were discussed extensively. The list of 1460 meanings on which the vocabularies are based is called the Loanword Typology meaning list, and it is in turn based on the list of the Intercontinental Dictionary Series., LOD"},"_id":"wold","title":"World Loanword Database"},{"description":{"en":"ONTOLOGY OF TERRORIST ATTACK"},"_id":"ROSHANI","title":"ontology terrorist attack"},{"description":{"en":"Collection of RDF metadata about SADI services. Services registered at http://sadiframework.org/registry/register/ are dereferenced and the RDF returned is available in the SPARQL endpoint http://biordf.net/sparql in named graph http://sadiframework.org/registry/.\r\n\r\nThis CKAN entry was not created by the SADI development group, but by an interested third party."},"_id":"sadi-semantic-web-services-framework-registry","title":"SADI Semantic Web Services framework registry"},{"description":{"en":"The COURAGE project was founded to investigate strategies for socialist-era cultural resistance during 1950-1990 and to highlight the variety of alternative cultural scenes that flourished in Eastern Europe before 1989, despite rigorous government control. The project has compiled a registry of historical collections, people, groups, events, and collection items. This registry is an online RDF store containing scholar-curated linked data on the cultural heritage of the former 'Eastern bloc'. It has been used to create virtual and real exhibitions, scientific publications, and learning materials (see http://cultural-opposition.eu/)."},"_id":"http:cultural-opposition.eu","title":"COURAGE Dataset"},{"description":{"en":"We aim to provide a open-source framework (based on DBpedia) to extract semantic lexical resources (a ontology about language use) from Wiktionary. The data currently includes language, part of speech, senses, definitions, synonyms, taxonomies (hyponyms, hyperonyms, synonyms, antonyms) and translations for each lexical word."},"_id":"wiktionary-dbpedia-org","title":"wiktionary.dbpedia.org"},{"description":{"en":"Publishes RDF for a number of bibliographic resources:\r\n\r\n* Bibliograhic data of the Südwestdeutscher Bibliotheksverbund (SWB)\r\n* Bibliographic data of the Hessisches Bibliotheksinformationssystem (HeBIS)\r\n* Classifications of the Regensburger Verbundklassifikation (RVK)\r\n* Bibliographic data of the Hochschulbibliothekszentrum des Landes Nordrhein-Westfalen (HBZ)"},"_id":"ub-mannheim-linked-data","title":"Linked Data Service der Universitätsbibliothek Mannheim"},{"description":{"en":"Linked Open Drug Data from the Health Insurance Fund of the Republic of Macedonia. \r\n\r\nThe dataset provides data about the referent (nominal) prices of drugs in Macedonia, along with the generic drug name, brand name, packaging, manufacturer, etc. The drugs from the dataset are linked among themselves with a \"similar to\" relation, and with an \"owl:seeAlso\" relation with corresponding drugs from the [DrugBank dataset](http://wifo5-03.informatik.uni-mannheim.de/drugbank/ \"DrugBank\"). Both relations are based on the drug ATC code.\r\n\r\nThe drug data from the Fund is described using a custom HIFM ontology, along with relations from the DrugBank dataset. \r\n\r\nFor more info on the dataset, please refer to [this paper](http://e-tnc.com/etnc/Portals/3/papers/loddhifm-ciit2013.pdf \"LODD from the HIFM\")."},"_id":"drug-data-hifm","title":"Drug Data from the Health Insurance Fund of Macedonia"},{"description":{"en":"This is the Catalan EuroWordNet-Lemon lexicon. The lexicon was created from the Catalan Word-Net-LMF lexicon which is part of the Multilingual Central Repository (MCR http://adimen.si.ehu.es/web/MCR). The lexicon conforms to the 'lemon' specifications and it is linked to the Catalan Parole/Simple lemon lexicon (http://lod.iula.upf.edu/resources/metadata_SimpleParole-Catalanv2)."},"_id":"catalan-eurowordnet-lemon-lexicon-3-0","title":"Catalan EuroWordNet-lemon lexicon (3.0)"},{"description":{"en":"The data presented here is a linked data representation of the street-level crime reports first released for England and Wales in 2011.\r\n\r\nInitial data exports cover December 2010, with monthly updates added when available, usually released one to two months in arrears.\r\n\r\nEntries exist for each individual crime report. These have been enriched by linking to the nearest postcode for the position at which the crime was reported, which hooks you into the Ordnance Survey administrative geography dataset.\r\n\r\nIn addition, aggregate statistics have been computed for each crime type at Ward, County and European Region level. These include not only cumulative values for these regions, appropriately identified in the OS dataset, but also include densities by area and population. These statistics are extensively used in the See UK application."},"_id":"rkb-explorer-crime","title":"Street level crime reports for England and Wales"},{"description":{"en":"EURAXESS Jobs is a website for research job vacancies, funding opportunities and fellowships throughout Europe."},"_id":"fu-berlin-euraxess","title":"EURAXESS - Researchers in Motion"},{"description":{"en":"O projeto está inserido no Plano Ação 3 - Bases estruturantes para constituição de uma Rede de MQCC na Embrapa,\ndo Projeto Governança do Arranjo AgroMQCC. Este estudo tem o objetivo de estabelecer diretrizes organizacionais\nde métodos quantitativos e computação científica (MQCC) para a Empresa Brasileira de Pesquisa Agropecuária\n(Embrapa), uma instituição pública vinculada ao Ministério da Agricultura, Pecuária e Abastecimento (MAPA), do\ngoverno federal brasileiro. O estudo será realizado a partir de uma perspectiva estratégica e sistêmica e co.ntribuirá\npara viabilizar a governança da área de pesquisa,, desenvolvimento e inovaçaão (PD&I) da Empresa."},"_id":"https:orcid.org0000-0002-6194-9354","title":"Diretrizes organizacionais de métodos quantitativos e computação científica"},{"description":{"en":"- about 146,126 datasets (and their metadata) provided by various data portals in Korea\n- 2,298,017 triples provided"},"_id":"datahub-kr-datamap","title":"Open Datasets in South Korea"},{"description":{"en":"PGxLOD groups data related to pharmacogenomics (PGx) from various sources such as PharmGKB, DrugBank, ClinVar, DisGeNET, but also the scientific literature. Central elements of PGxLOD are pharmacogenomic relationships, which are n-ary relationships linking drugs, genetic factors and drug-response phenotypes. Such relationships state the atomic elements of knowledge in PGx, i.e., a patient with a specified genetic factor and being treated with a specified drug is likely to experience the specified drug-response phenotypes (such as an adverse effect, no effect, etc.). PGxLOD is developed in the ANR PractiKPharma project (http://practikpharma.loria.fr/)."},"_id":"PGxLOD","title":"PGxLOD"},{"description":{"en":null},"_id":"wordpress","title":"wordpress"},{"description":{"en":"This ontology describes a degree of higher education and the direction of bachelor's and master's degrees in the Russian Federation and their compliance with the various official lists. It is assumed that a given ontology can be used in various applications of the Semantic Web in Russian higher education."},"_id":"russian-universities-specialities","title":"Russian Universities Specialities"},{"description":{"en":"Metadata of linguistic resources participating in Open Language Archives Community."},"_id":"olac","title":"OLAC Metadata"},{"description":{"en":"Data from package:musicbrainz re-published as RDF."},"_id":"dbtune-musicbrainz","title":"DBTune.org Musicbrainz D2R Server"},{"description":{"en":"Open linked data from the Museum of Fine Arts Budapest"},"_id":"data-szepmuveszeti-hu","title":"data-szepmuveszeti-hu"},{"description":{"en":"OMIM is a comprehensive, authoritative, and timely compendium of human genes and genetic phenotypes. The full-text, referenced overviews in OMIM contain information on all known mendelian disorders and over 12,000 genes. OMIM focuses on the relationship between phenotype and genotype."},"_id":"bio2rdf-omim","title":"Bio2RDF::Omim"},{"description":{"en":"<a href=\"http://miguiadeviajes.net/\">MiGuiadeViajes.net</a>\r\nis a semantic collection of travel guides, sightseeing tours and trips especially recommended for tourists, travellers and backpackers. The community allows you to find where to go, where to eat or sleep in different countries, regions and cities with the GNOSS facet-based search engine.\r\n<a href=\"http://gnoss.com/\">GNOSS</a>\r\npromotes this community based on the standards of the Semantic Web and Linked Open Data. MiGuiadeViajes.net offers a selection of 3,533 resources (November 2012). The content of Miguiadeviajes.net belongs to \r\n<a href=\"http://thedatahub.org/dataset/webnmasunotraveler\">El Viajero's tourism dataset</a>\r\n, that integrates the various contents from newspapers and digital platforms belonging to the Prisa Digital Group in the domain of news and blogs about travel.\r\n</p>\r\n\r\n<p>\r\nGuías de viaje, rutas turísticas y escapadas componen \r\n<a href=\"http://miguiadeviajes.net/\">MiGuiadeViajes.net</a>\r\n, una selección de recomendaciones para viajeros, turistas y aventureros. La comunidad permite buscar dónde ir, dónde\r\n<strong> </strong>\r\ncomer o dónde dormir por países, regiones y ciudades gracias al \r\n<a href=\"http://gnoss.com/comunidad/nextweb/recurso/Busquedas-facetadas-o-razonadas/13fd22d5-704d-412c-b35f-31ddc4b7238e\">buscador facetado de GNOSS</a>\r\n.\r\n</p>\r\n<p>\r\n<a href=\"http://gnoss.com/\">GNOSS</a>\r\n promueve esta comunidad desarrollada y fundamentada en los estándares de la Web Semántica y de los Datos Abiertos Enlazados (Linked Open Data). MiGuiadeViajes.net dispone en la actualidad de 3.533 recursos (Noviembre 2012). El contenido procede del\r\n<a href=\"http://thedatahub.org/dataset/webnmasunotraveler\">dataset de El Viajero</a>\r\n, que integra artículos, guías y reportajes turísticos de los periódicos y plataformas digitales del Grupo Prisa.\r\n</p>"},"_id":"miguiadeviajes-gnoss","title":"Mi Guía de Viajes, colección de guías de viaje para viajeros (GNOSS)"},{"description":{"en":"Linked Data version of the US Patent and Trademark Office (USPTO) data.\r\nNumber of triples: 212,234,735. Number of resources: 3,215,768\r\nLinks to other datasets: DBpedia, EUPatents, WorldBank and LinkedGeoData"},"_id":"linked-uspto-patent-data","title":"USPTO Patent data"},{"description":{"en":"Chartered Institute of Public Finance and Accountancy"},"_id":"cipfa","title":"CIPFA"},{"description":{"en":null},"_id":"opendatascotland-simd-education-rank","title":"opendatascotland-simd-education-rank"},{"description":{"en":"This ontology models research resources such instruments. protocols, reagents, animal models and biospecimens. It has been developed in the context of the eagle-i project (http://eagle-i.net/)."},"_id":"bioportal-ero","title":"eagle-i research resource ontology"},{"description":{"en":"This corpus contains a conversion of Wikipedia abstracts in six languages (dutch, english, french, german, italian and spanish) into the I used the NLP Interchange Format (NIF). The corpus contains the abstract texts, as well as the position, surface form and linked article of all links in the text. As such, it contains entity mentions manually disambiguated to Wikipedia/DBpedia resources by native speakers, which predestines it for NER training and evaluation.\r\n\r\nFurthermore, the abstracts represent a special form of text that lends itself to be used for more sophisticated tasks, like open relation extraction. Their encyclopedic style, following Wikipedia guidelines on opening paragraphs adds further interesting properties. The first sentence puts the article in broader context. Most anaphers will refer to the original topic of the text, making them easier to resolve. Finally, should the same string occur in different meanings, Wikipedia guidelines suggest that the new meaning should again be linked for disambiguation. In short: The type of text is highly interesting.\r\n\r\nAcknowledgments: The conversion of this corpus was supported by the [FREME H2020 project](http://www.freme-project.eu/)."},"_id":"dbpedia-abstract-corpus","title":"DBpedia abstract corpus"},{"description":{"en":"A partial RDF conversion of the CIA World Factbook, package:cia-world-factbook."},"_id":"world-factbook-fu-berlin","title":"World Factbook (FU Berlin)"},{"description":{"en":"Search for lists, modules & courses\r\n\r\n \r\nBrowse hierarchy | Recent changes"},"_id":"university-plymouth-reading-lists","title":"University of Plymouth Reading Lists"},{"description":{"en":"BibBase.org facilitates the dissemination of scientific publications over the Internet. BibBase makes it easy for scientists to maintain their publications pages. As a scientist, you simply maintain a bibtex-file of your publications, including links to the papers, and BibBase does the rest. When a web user visits your publications page, BibBase dynamically generates an always up-to-date HTML page from the bibtex file, and even allows the user to sort the publications by other than the default ordering (e.g. year, author, keywords, research area, publication type). BibBase has been used by several scientists and research groups since 2006."},"_id":"bibbase","title":"BibBase"},{"description":{"en":"RDF version of the Apertium bilingual dictionary ES-GL. The original dataset (in LMF) comes from http://hdl.handle.net/10230/17121 . The RDF version of the lexica is modelled using lemon (http://lemon-model.net/) and the translation module (http://purl.org/net/translation). More about the Apertium RDF dictionaries at http://linguistic.linkeddata.es/apertium/\r\n"},"_id":"apertium-rdf-es-gl","title":"Apertium RDF ES-GL"},{"description":{"en":"AGRIS is one of the most important world-wide information systems in the area of the agricultural sciences. AGRIS is an initiative that was set up by FAO of the United Nations in 1974 to make information on agriculture research globally available. The historical overall objective of AGRIS is to improve access and exchange of information serving “the information needs of developed and developing countries on a partnership basis”."},"_id":"agris","title":"AGRIS"},{"description":{"en":"Extracted data from the 'NHS Jargon Buster? site (http://www.ic.nhs.uk/jargon-buster). Contains definitions for commonly used acronyms in NHS (British National Health Service) documents."},"_id":"nhs-jargon","title":"NHS Jargon RDF"},{"description":{"en":"1200 words in 200 languages"},"_id":"ids","title":"Intercontinental Dictionary Series"},{"description":{"en":"Driggu, Multi-artist, model and visual artist"},"_id":"Driggu","title":"Driggu Florentino"},{"description":{"en":"Universal Dependencies is a project that seeks to develop cross-linguistically consistent treebank annotation for many languages, with the goal of facilitating multilingual parser development, cross-lingual learning, and parsing research from a language typology perspective. The annotation scheme is based on (universal) Stanford dependencies (de Marneffe et al., 2006, 2008, 2014), Google universal part-of-speech tags (Petrov et al., 2012), and the Interset interlingua for morphosyntactic tagsets (Zeman, 2008).\r\n\r\nThis dataset refers to UD's Norwegian treebank.\r\n"},"_id":"universal-dependencies-treebank-norwegian","title":"Universal Dependencies Treebank Norwegian"},{"description":{"en":"<p>\r\nSemantic catalog of the <a href=\"http://www.agrupaciontextil.org/\">Spanish Textile and Clothing Association (AEGP) companies</a>. AEGP is a voluntary professional national association that promotes the competitiveness of its companies through the promotion, defense and representation of their professional, economic and work interests. It offers specialized services that enhance their position in the environment. The catalog includes 2,500 textile and clothing companies.\r\n</p>\r\n<p>\r\nAEGP works with <a href=\"http://gnoss.com/\">GNOSS software (RIAM Intelearning Lab)</a>. RIAM is a company that develops semantic technology for the creation of specialized networks and linked markets. The project includes a faceted-based search engine and enriched contexts. Both are developments by GNOSS.\r\n</p>\r\n\r\n<p>\r\nCatálogo semántico de las empresas de la <a href=\"http://www.agrupaciontextil.org/\">Agrupación Española del Género de Punto (AEGP)</a>. AEGP es una asociación profesional voluntaria de ámbito estatal cuyo objetivo es impulsar la competitividad de las empresas asociadas, a través del fomento, la defensa y la representación de sus intereses laborales, profesionales y económicos y, mediante una oferta de servicios especializados que les permitan mejorar su posición en el entorno. El catálogo recoge 2500 empresas del sector.\r\n</p>\r\n<p>\r\nAEGP trabaja con <a href=\"http://gnoss.com/\">software de GNOSS (RIAM Intelearning Lab)</a>. RIAM es una compañía que desarrolla tecnología semántica para la creación de redes especializadas y mercados enlazados. El proyecto incluye un buscador facetado y contextos enriquecidos.\r\n</p>"},"_id":"aegp-spanish-textile-and-clothing-association","title":"AEGP, Spanish Textile and Clothing Association"},{"description":{"en":"Royalty Free Music & Copyright Free Music ✔️ Unlimited Downloads\nSearch 100% Claim-Free ☝ royalty free music & copyright free music for ⭐ youtube, games, commercial use;Unlimited Downloads tracks from our library"},"_id":"Copyright_Free_Music","title":"Copyright Free Music"},{"description":{"en":"Linked Data version of the metadata and data listed at http://hub.healthdata.gov."},"_id":"twc-healthdata","title":"HealthData.gov Platform (HDP) on the Semantic Web"},{"description":{"en":"The submission is the pointer to papers and to authors"},"_id":"lremap-sub","title":"A collection of Submissions for LREC2014 and related Workshops"},{"description":{"en":""},"_id":"rkb-explorer-irit","title":"Université Paul Sabatier - Toulouse 3 (RKB Explorer)"},{"description":{"en":"Groundbreaking biomedical research requires access to cutting edge scientific resources; however such resources are often invisible beyond the laboratories or universities where they were developed. eagle-i is a national research resource discovery platform to help biomedical scientists search for and find previously invisible, but highly valuable, resources. \r\nResource descriptions collected at each participating institution are freely available as linked open data.\r\nSee: http://www.eagle-i.net/"},"_id":"eagle-i-alaska","title":"eagle-i @ University of Alaska Fairbanks"},{"description":{"en":"A structured controlled vocabulary of stage-specific anatomical structures of the mouse (Mus)."},"_id":"bioportal-emap","title":"Mouse gross anatomy and development"},{"description":{"en":"Contractors and suppliers of the chamber of deputies in italy in 2010.\r\n\r\nMore details are available at [http://www.linkedopendata.it/datasets/loc](http://www.linkedopendata.it/datasets/loc)\r\n\r\nThe ontology is documented at [http://purl.org/net7/locs/v1](http://purl.org/net7/locs/v1)\r\n"},"_id":"linked-open-camera","title":"Linked Open Camera (LinkedOpenData.it)"},{"description":{"en":"The Manually Annotated Sub-Corpus (MASC) consists of approximately 500,000 words of contemporary American English written and spoken data drawn from the OPEN AMERICAN NATIONAL CORPUS (OANC).\r\n\r\n\r\nAll of MASC includes manually validated annotations for sentence boundaries, token, lemma and POS; noun and verb chunks; and named entities (person, location, organization, date). Additional manually produced or validated annotations have been produced by the MASC project for portions of the sub-corpus, including full-text annotation for FrameNet frame elements, WordNet sense tags, and Penn Treebank syntactic annotation. Annotations of all or portions of the sub-corpus for a wide variety of other linguistic phenomena have been contributed by other projects.\r\n\r\n\r\nUnlike most freely available corpora including a wide variety of linguistic annotations, MASC contains texts from a broad range of genres.\r\n\r\n\r\nMASC is an OPEN LANGUAGE DATA resource that can be downloaded by anyone for any purpose. At the same time, it is a resource that will be enhanced by the community, through its contributions of annotations and derived data.\r\n\r\nThe RDF conversion from GrAF is still in preparation. Below, you can find a preliminary OWL2/DL representation of the PennTreebank syntax (60.000 tok) in OWL, generated out of the original annotations, instead. Triple counts and links refer to this fragment. The conversion follows POWLA specifications (http://sourceforge.net/projects/powla/) and includes links to OLiA Annotation Models for PTB morphosyntax and syntax.\r\n"},"_id":"masc","title":"Manually Annotated Sub-Corpus (MASC) of the Open American National Corpus"},{"description":{"en":"Groundbreaking biomedical research requires access to cutting edge scientific resources; however such resources are often invisible beyond the laboratories or universities where they were developed. eagle-i is a national research resource discovery platform to help biomedical scientists search for and find previously invisible, but highly valuable, resources. \r\nResource descriptions collected at each participating institution are freely available as linked open data."},"_id":"eagle-i-upr","title":"eagle-i@ University of Puerto Rico - Medical Sciences Campus"},{"description":{"en":"Open Data NoiPA is a project created to make available, transparent and fully usable the extensive information assets managed by the Information and Innovation Systems Department of the Ministry of Economy and Finance."},"_id":"NoiPA","title":"NoiPA"},{"description":{"en":"The ontology contains a hierarchy of people in a university, lecturers and students. Some properties associated with them like which subject they teach or study etc."},"_id":"PersonOnto","title":"Ontology of University People"},{"description":{"en":"RDF data about the canon of Western Classical Music, aggregated and to some extent hand curated by Chris Cannam of the Centre for Digital Music at Queen Mary University of London. Includes information about composers, compositions, performers, relationships of influence, and more.\r\n\r\nCurrently the composer data is reasonably reliable, but the other data is highly provisional, unreliable, and subject to change.\r\n\r\nThis resource provides inter-linking via owl:sameAs to appropriate resources in package:dbpedia, package:dbtune-musicbrainz, and package:bbc-music."},"_id":"dbtune-classical","title":"DBTune.org/classical"},{"description":{"en":""},"_id":"rkb-explorer-ulm","title":"Universität Ulm (RKBExplorer)"},{"description":{"en":"taxonomy animal invertebrates"},"_id":"bioportal-invertebrata","title":"Hewan Invertebrata"},{"description":{"en":"The Naturopathy knowledge Graph (Ontology and Dataset) describes relationships between foods, their nutrients, their color, mood, diseases, diets, and allergies. The Naturopathy knowledge Graph (Ontology and Dataset) has been extended to describe food as beneficial to boost the immune system."},"_id":"http:sensormeasurement.appspot.comdatasetnaturopathy-dataset","title":"Naturopathy knowledge Graph (Ontology and Dataset) - RDF distribution of the naturopathy dataset."},{"description":{"en":"The present data set contains all the versions of the NUTS statistical regions in linked data format. For the UK the NUTS3 level is further aligned to the local administrative units (or LAU) geography provided by http://statistics.data.gov.uk. \r\n\r\nThe NUTS regions are described along with their temporal validity. Changes in the coding reflect both the changes in the composition of the European Union and the internal reorganization of some areas. Such changes have been extracted by the Eurostat site and represented in linked data format.\r\n\r\nThe regions belonging to the current version of NUTS has additional links to the shape files (geoJson and KML format) describing their phisical extent.\r\n\r\nThe number of links to statistics.data.gov.uk is estimated by assuming 200 NUTS codes in the UK with 50 spacerel:contains links each.\r\n\r\nThe number of triples is estimated as 15 triples for each of the 2000 NUTS codes, plus an extra 10,000 for the spacerel:contains triples in the UK."},"_id":"linked-nuts","title":"Linked NUTS"},{"description":{"en":"This service exposes the data from openthesaurus.de as Linked Data."},"_id":"thesaurus-datenwissen","title":"Thesaurus Datenwissen"},{"description":{"en":"Polythematic Structured Subject Headings System (PSH) is a bilingual (Czech/English) structured subject heading system."},"_id":"psh-subject-headings","title":"Polythematic Structured Subject Heading System"},{"description":{"en":"This dataset describes the 'Lower layer Super Output Areas' used by the Office for National Statistics for many of its statistical outputs. \r\n\r\nExample resource:\r\nhttp://opendatacommunities.org/id/geography/lsoa/E01000001\r\n\r\nDownload\r\nhttp://opendatacommunities-downloads.s3.amazonaws.com/lsoa.ttl.zip"},"_id":"odc-lsoa","title":"Open Data Communities - Lower layer Super Output Areas"},{"description":{"en":"Overview: \r\n\r\nProject Gutenberg is the first and largest single collection of free electronic books, or eBooks.\r\n\r\nStatistics: \r\nOver 100,000 titles, some duplication, of course.\r\n\r\nLicense:\r\nMajority of works in public domain. Works posted with permission from copyright holders are licensed under the Project Gutenberg license.\r\n\r\nFormats:\r\nMost Project Gutenberg eBooks are available in plain text,\r\njust so they can be used with nearly any hardware/software,\r\nand many are also available in a variety of other formats.\r\n\r\nOver 30,000 eBooks in over 50 languages at gutenberg.org\r\n\r\nOver 75,000 eBooks in over 100 languages at gutenberg.cc\r\n\r\n\r\nThis is my first attempt to rewrite this little blurb,\r\nso I will keep it brief for now to see what happens.\r\n\r\n\r\nMichael S. Hart\r\nFounder\r\nProject Gutenberg,\r\nInventor of eBooks\r\nhttp://www.gutenberg.org/wiki/Michael_S._Hart"},"_id":"gutenberg","title":"Project Gutenberg"},{"description":{"en":"International Statistical Classification of Diseases and Related Health Problems (ICD-10). 10th rev. Geneva "},"_id":"bioportal-icd10","title":"ICD10"},{"description":{"en":"Universal Dependencies is a project that seeks to develop cross-linguistically consistent treebank annotation for many languages, with the goal of facilitating multilingual parser development, cross-lingual learning, and parsing research from a language typology perspective. The annotation scheme is based on (universal) Stanford dependencies (de Marneffe et al., 2006, 2008, 2014), Google universal part-of-speech tags (Petrov et al., 2012), and the Interset interlingua for morphosyntactic tagsets (Zeman, 2008).\r\n\r\nThis dataset refers to UD's Dutch-LassySmall treebank.\r\n"},"_id":"universal-dependencies-treebank-dutch-lassysmall","title":"Universal Dependencies Treebank Dutch-LassySmall"},{"description":{"en":"This ontology contains the former BIRNLex-Disease, version 1.3.2. -- The BIRN Project lexicon will provide entities for data and database annotation for the BIRN project, covering anatomy, disease, data collection, project management and experimental design. It is built using the organizational framework provided by the foundational Basic Formal Ontology (BFO). It uses an abstract biomedical layer on top of that - OBO-UBO which has been constructed as a proposal to the OBO Foundry. This is meant to support creating a sharable view of core biomedical objects such as biomaterial_entity, and organismal_entity that all biomedical ontologies are likely to need and want to use with the same intended meaning. The BIRNLex biomaterial entities have already been factored to separately maintained ontology - BIRNLexBiomaterialEntity.owl which this BIRNLex-Main.owl file imports. The Ontology of Biomedical Investigation (OBI) is also imported and forms the foundation for the formal description of all experiment-related artifacts. The BIRNLex will serve as the basis for construction of a formal ontology for the multiscale investigation of neurological disease."},"_id":"bioportal-nif_dysfunction","title":"NIF Dysfunction"},{"description":{"en":"UN Numbers are categories of harzardous materials. See http://en.wikipedia.org/wiki/UN_numbers for more details."},"_id":"un-hazardous-numbers","title":"UN Hazardous Materials Numbers"},{"description":{"en":"Linked data about administrative areas used within UK government official statistics.\r\n\r\nThe various areas are typed using classes in the following namespaces:\r\n\r\n* http://data.ordnancesurvey.co.uk/ontology/admingeo/\r\n* http://statistics.data.gov.uk/def/administrative-geography/\r\n* http://statistics.data.gov.uk/def/geography/"},"_id":"statistics-data-gov-uk","title":"statistics.data.gov.uk"},{"description":{"en":"?????????????????????????????????????????????atmc.jp????????????1???2011-03-16?2012-03-15??RDF????????????????3??????????????\r\n\r\nThis is an experimantal RDF data of radioactivity statistics, observed at 47 prefectures hourly, from 2011-03-16 to 2012-03-15. Source data is text data at atmc.jp converted from the daily announcements by the Ministry of Education, which have been compiled based on reports from each prefecture. Some data from Fukushima and Miyagi in March missing"},"_id":"japan-radioactivity-stat","title":"National Radioactivity Stat as Linked Data"},{"description":{"en":"A structured controlled vocabulary of <i>Caenorhabditis elegans</i> phenotypes"},"_id":"bioportal-wbphenotype","title":"C. elegans phenotype"},{"description":{"en":"Czech statistical classification of economic activities in the European Community (CZ-NACE)"},"_id":"cz-nace","title":"Czech statistical classification of economic activities in the European Community (CZ-NACE)"},{"description":{"en":"WOLD published by the CLLD project"},"_id":"clld-wold","title":"CLLD-WOLD"},{"description":{"en":"RDF version of the Apertium bilingual dictionary EO-FR. The original dataset (in LMF) comes from http://hdl.handle.net/10230/22867 . The RDF version of the lexica is modelled using lemon (http://lemon-model.net/) and the translation module (http://purl.org/net/translation). More about the Apertium RDF dictionaries at http://linguistic.linkeddata.es/apertium/\r\n"},"_id":"apertium-rdf-eo-fr","title":"Apertium RDF EO-FR"},{"description":{"en":"OPAC and Digital Library and the corresponding authority data as Linked Open Data.\r\n\r\nThe used vocabularies are\r\n\r\n * RDFDC for bibliographic data,\r\n * FOAF for name authority entries, and\r\n * SKOS for subject terms and geographical names. \r\n * BIBO for bibliographic terms\r\n\r\n\r\nNSZL uses CoolURIs. Every resource has both RDF and HTML representation.\r\n\r\nRDFDC, FAOF and SKOS statements are linked together. The name authority is matched with the DBPedia name files, and URI aliases are handled as owl:sameAs statements. The name authority dataset also contains links to Virtual International Authority File (VIAF) and VIAF links back to NSZL's data.\r\n\r\nNSZL also supports the HTML link auto-discovery. "},"_id":"hungarian-national-library-catalog","title":"Hungarian National Library (NSZL) catalog"},{"description":{"en":"Toxics Release Inventory (TRI) is a resource for learning about toxic chemical releases and pollution prevention activities reported by industrial and federal facilities. TRI data support informed decision-making by communities, government agencies, companies, and others."},"_id":"epa-tri","title":"EPA-TRI"},{"description":{"en":"Chapter VIII of Liber Abbaci (also known as Liber Abaci) linked to the LiLa Knowledge Base, a historic 1202 treaty on arithmetic by Leonardo Fibonacci, manually annotated with tokenization, lemmatization and part of speech tagging following the Universal Dependencies (UD) formalism. "},"_id":"CorpusFibonacci","title":"Corpus Fibonacci in LiLa"},{"description":{"en":"StatusNet instance hosted at http://hackerposse.com"},"_id":"statusnet-hackerposse-com","title":"statusnet-hackerposse-com"},{"description":{"en":"The LOD dataset of ASCDC_Taiwan Fauna Database Research: Taiwan Digital Fish Species Database (AS-TFD-Fish-Species) was created by the Academia Sinica Center for Digital Cultures (ASCDC) and based on the metadata from the “Taiwan fauna database research: Taiwan digital fish species database” (臺灣動物相典藏之研究:臺灣魚類相之數位典藏) in the “Taiwan Union Catalog” (數位典藏與數位學習聯合目錄, https://catalog.digitalarchives.tw/Organization/List.jsp?CID=17509). Originally, the metadata was established by the Biodiversity Research Center, Academia Sinica (中央研究院生物多樣性研究中心) in Taiwan (ROC). It provides information on the fish species data collected by the Biodiversity Research Center at the Academia Sinica and can serve as database for the study of fish species in the coastal waters in and around the Taiwan Island. Containing 41,861 data records and 1,477,259 triples, the textual content within the LOD dataset is licensed under the Creative Commons Attribution (CC 0), while the digitized items are under CC-BY-NC-SA."},"_id":"ASCDC-AS-TFD-Fish-Species","title":"Taiwan Fauna Database Research: Taiwan Digital Fish Species Database (AS-TFD-Fish-Species)"},{"description":{"en":"The value set for the Signs and Symptoms property of the International Classification of Traditional Medicine (ICTM)."},"_id":"bioportal-tm-signs-and-sympts","title":"Traditional Medicine Signs and Symptoms Value Set"},{"description":{"en":"The Gene Expression Atlas RDF provides information on gene expression patterns under different biological conditions. Gene expression data is re-analysed in-house to detect genes showing interesting baseline and differential expression patterns."},"_id":"gene-expression-atlas-rdf","title":"Gene Expression Atlas RDF"},{"description":{"en":""},"_id":"rkb-explorer-ibm","title":"IBM Research GmbH (RKBExplorer)"},{"description":{"en":"Groundbreaking biomedical research requires access to cutting edge scientific resources; however such resources are often invisible beyond the laboratories or universities where they were developed. eagle-i is a national research resource discovery platform to help biomedical scientists search for and find previously invisible, but highly valuable, resources. \r\nResource descriptions collected at each participating institution are freely available as linked open data."},"_id":"eagle-i-cdrewu","title":"eagle-i @ Charles R. Drew University"},{"description":{"en":"StatusNet instance hosted at http://qth.fr"},"_id":"statusnet-qth-fr","title":"statusnet-qth-fr"},{"description":{"en":"The OpenMobileNetwork is a dataset for mobile networks and devices, which is semantically modeled using the Linked Data principles. It provides structured RDF data describing mobile networks, their topology and components (e.g., base stations, mobile devices or WiFi access points). Utilizing this dataset in combination with interlinked information that is present in the LOD Cloud, various applications can be realized that depend on mobile network and positioning data (e.g., Semantic Location-based Services or Power Management in Mobile Networks)."},"_id":"openmobilenetwork","title":"OpenMobileNetwork"},{"description":{"en":"Universal Dependencies is a project that seeks to develop cross-linguistically consistent treebank annotation for many languages, with the goal of facilitating multilingual parser development, cross-lingual learning, and parsing research from a language typology perspective. The annotation scheme is based on (universal) Stanford dependencies (de Marneffe et al., 2006, 2008, 2014), Google universal part-of-speech tags (Petrov et al., 2012), and the Interset interlingua for morphosyntactic tagsets (Zeman, 2008).\r\n\r\nThis dataset refers to UD's Bulgarian treebank.\r\n"},"_id":"universal-dependencies-treebank-bulgarian","title":"Universal Dependencies Treebank Bulgarian"},{"description":{"en":"<p>\r\n<a href=\"http://red.gnoss.com/comunidad/nextweb/\">Next Web</a>\r\nis a global knowledge network designed to share content and opinion on semantic technology and Web 3.0. In Next Web people explore and discuss on opportunities related to web 2.0, semantic web and semantic technologies applied to the web, Web 3.0 and, in general, evolution and future of the Internet. \r\nThe community discusses the future of the web and the way in which the set of technologies enabling internet will influence the development of the socio-digital life, the building of the digital identity of people and organizations, and the acceleration of learning social processes. \r\n</p>\r\n<p>\r\nCompanies, venture capitalists, institutions, researchers, professors, start-ups, bloggers, advanced internet users, internet activists and, on the whole, anybody who believes in the technology power of social transformation, have their new space in Next Web, a community promoted by <a href=\"http://gnoss.com/\">GNOSS</a>.\r\n</p>\r\n<p>\r\nNext Web works with <a href=\"http://gnoss.com/\">GNOSS software (RIAM Intelearning Lab)</a>. RIAM is a company that develops semantic technology for the creation of specialized networks and linked markets. NextWeb offers a selection of 1,904 resources (November 2012). It includes a facet-based search and enriched contexts. Both are developments by GNOSS.\r\n</p>\r\n\r\n<p>\r\n<a href=\"http://red.gnoss.com/comunidad/nextweb/\">Next Web</a> es una red global de conocimiento orientada a compartir contenidos y opinión sobre tecnología semántica y Web 3.0. En NextWeb se explora y se debate sobre las oportunidades relacionadas con la web 2.0, la web semántica y las tecnologías semánticas aplicadas a la web, la web 3.0 y, en general, sobre la evolución y el futuro de internet. La comunidad analiza el futuro de la web y el modo en el que el conjunto de tecnologías que hace posible internet van a influir en el desarrollo de la vida socio-digital, la construcción de la identidad digital de las personas y las organizaciones y la aceleración de los procesos sociales de aprendizaje.\r\n</p>\r\n<p>\r\nEmpresas, agentes de capital riesgo, instituciones, investigadores, profesores, ‘start-ups’, ‘bloggers’, internautas avanzados, activistas en internet y, en general, todos aquellos que crean en el poder de transformación social de la tecnología, tienen su espacio en NextWeb, comunidad promovida por <a href=\"http://gnoss.com/\">GNOSS</a>.\r\n</p>\r\n<p>\r\nNext Web trabaja con <a href=\"http://gnoss.com/\">software de GNOSS (RIAM Intelearning Lab)</a>. RIAM es una compañía que desarrolla tecnología semántica para la creación de redes especializadas y mercados enlazados. NextWeb ofrece en este caso una selección de 1.904 recursos (Noviembre 2012). Incluye un buscador facetado y contextos enriquecidos. Ambos son desarrollos de GNOSS.\r\n</p>"},"_id":"nextweb-gnoss","title":"Next Web, a global knowledge network of semantic technology and Web 3.0 (GNOSS)"},{"description":{"en":"Database on human origins in Africa and Eurasia between 3,000,000 and 20,000 years ago covering prehistoric archaeology, paleoanthropology, paleoenvironment and geography."},"_id":"roceeh-road","title":"ROCEEH Out of Africa Database (ROAD)"},{"description":{"en":"The Interaction Network Ontology (INO) is an ontology in the domain of interaction network. INO aims to standardize interaction network annotation, integrate various interaction network data, and support computer-assisted reasoning. It is aimed to represent general interactions (e.g., molecular interactions) and interaction networks (e.g., Bayesian network). INO was initiated by supporting literature mining related to interactions and interaction networks. INO has been initiated and led by by Dr. Yongqun \"Oliver\" He at the University of Michigan Medical School. INO aligns with BFO. INO is a community-based ontology, and its development follows the OBO Foundry principles."},"_id":"bioportal-ino","title":"Interaction Network Ontology"},{"description":{"en":"The Experimental Factor Ontology (EFO) is an application focused ontology modelling the experimental variables in the Gene Expression Atlas, EBI. The ontology has been developed to increase the richness of the annotations that are currently made in the ArrayExpress repository, to promote consistent annotation, to facilitate automatic annotation and to integrate external data. The ontology describes cross-product classes from reference ontologies in area such as disease, cell line, cell type and anatomy. Contact James Malone for info: malone@ebi.ac.uk"},"_id":"bioportal-efo","title":"Experimental Factor Ontology"},{"description":{"en":null},"_id":"opendatacommunities-transparency-impact-indicators-affordable-housing-starts","title":"opendatacommunities-transparency-impact-indicators-affordable-housing-starts"},{"description":{"en":"List of laws used in inspection reports of the Supreme Audit Office of the Czech Republic"},"_id":"cz-sao-check-actions-law","title":"List of laws used in inspection reports of SAO"},{"description":{"en":"StatusNet instance hosted at http://ced117.net"},"_id":"statusnet-ced117-net","title":"statusnet-ced117-net"},{"description":{"en":"The Wordnet wordnet as published as part of the Open Multilingual WordNet. The goal of Open Multilingual WordNet is to make it easy to use wordnets in multiple languages. The individual wordnets have been made by many different projects and vary greatly in size and accuracy. We have (i) extracted and normalized the data, (ii) linked it to Princeton WordNet 3.0 and (iii) put it in one place. The Open Multilingual Wordnet and its components are open: they can be freely used, modified, and shared by anyone for any purpose. "},"_id":"omwn-msa","title":"Wordnet WordNet (as part of Open Multilingual WordNet)"},{"description":{"en":"The FRSR vocabulary contains terms useful for finding out more about social roles of a family relation. The approach taken is to describe roles of a person in a society in which he/she is living. this roles could be a father, mother,son or daughter. These social roles are different from occupational roles. these roles are based on relations. Another purpose of this vocabulary is to show the metamodeling feature through punning. Like Father is a class as well is an instance of class socialroles."},"_id":"SocialRoles","title":"FamilyRelations as SocialRole"},{"description":{"en":"StatusNet instance hosted at http://dtdns.net"},"_id":"statusnet-dtdns-net","title":"statusnet-dtdns-net"},{"description":{"en":"Word embeddings from the representative corpus of contemporary Romanian language (CoRoLa)"},"_id":"racai-llod-corola-we","title":"Romanian CoRoLa Word Embeddings"},{"description":{"en":null},"_id":"opendatacommunities-societal-wellbeing-deprivation-imd-income-rank-la-2010","title":"opendatacommunities-societal-wellbeing-deprivation-imd-income-rank-la-2010"},{"description":{"en":"Covid19 impact on Banking ontology (Covid19-IBO) that provides semantic information about the impact of the Covid-19 on the banking sector of India. "},"_id":"http:www.semanticweb.orgambrishontologies202010untitled-ontology-24","title":"Covid19 Impact on Banking ontology (Covid19-IBO)"},{"description":{"en":"YSO places is a bi-lingual general geographic gazetteer. It includes administrative and other regions as well as natural locations and places based on the needs of GLAM organistions . Places refer to Finnish and external both modern and historic places. Hierarchies are built by partOf relationships."},"_id":"yso-paikat","title":"YSO places"},{"description":{"en":"A dataset of the natural numbers. Published on April 1st, 2010."},"_id":"linked-open-numbers","title":"Linked Open Numbers"},{"description":{"en":"The ontology I4.0-Onto, is built to represents knowledge in a standard process that identifies the tasks that must be completed when it is built. It enables the transformation of raw data into an ontological model represented in the OWL language."},"_id":"fatimazahra","title":"I4.0-Onto"},{"description":{"en":"### About\r\n\r\nData exposed: Yale Senselab\r\nSize of dump and data set: 216 KB\r\nNotes: released without contract\r\n\r\n> The Semantic Web development of SenseLab involves exporting data from NeuronDB, ModelDB, and BrainPharm to RDF and/or OWL format. The overall goal is to facilitate neuroscience data aggregation, integration, and reasoning using Semantic Web technologies.\r\n\r\n> This project is part of the current and ongoing SenseLab effort including the following SenseLab team members: Kei Cheung, Huajun Chen, Ernest Lim, Matthias Samwald, Peter Masiar, Luis Marenco, Tom Morse, Nian Liu, Chiquito Crasto, Perry Miller, and Gordon Shepherd.\r\n\r\n### Openness\r\n\r\nNo information found."},"_id":"yale_senselab","title":"Yale Senselab"},{"description":{"en":"Universal Dependencies is a project that seeks to develop cross-linguistically consistent treebank annotation for many languages, with the goal of facilitating multilingual parser development, cross-lingual learning, and parsing research from a language typology perspective. The annotation scheme is based on (universal) Stanford dependencies (de Marneffe et al., 2006, 2008, 2014), Google universal part-of-speech tags (Petrov et al., 2012), and the Interset interlingua for morphosyntactic tagsets (Zeman, 2008).\r\n\r\nThis dataset refers to UD's Greek treebank.\r\n"},"_id":"universal-dependencies-treebank-greek","title":"Universal Dependencies Treebank Greek"},{"description":{"en":"A structured controlled vocabulary of the anatomy of Amphibians."},"_id":"bioportal-aao","title":"Amphibian gross anatomy"},{"description":{"en":"Individuals and legal entities audited by Supreme Audit Office of the Czech Republic"},"_id":"cz-sao-audited-subjects","title":"Audited subjects of Supreme Audit Office of the Czech Republic"},{"description":{"en":"HOM-HARVARD demographics for i2b2"},"_id":"bioportal-hom_harvard","title":"HOM-HARVARD"},{"description":{"en":"A coding system for reporting adverse events that occur in the course of cancer therapy. It was derived from the Common Toxicity Criteria (CTC) v2.0 and is maintained by the Cancer Therapy Evaluation Program (CTEP) at the National Cancer Institution (NCI)."},"_id":"bioportal-ctcae","title":"Common Terminology Criteria for Adverse Events"},{"description":{"en":"Clinical Terms Version 3 (CTV3) (Read Codes) (Q199): National Health Service National Coding and Classification Centre"},"_id":"bioportal-rcd","title":"Read Codes, Clinical Terms Version 3 (CTV3)"},{"description":{"en":"Farming statistics (farm sizes, land use, livestock) on local authority level, represented in RDF. This is a conversion of the [June 2008 DEFRA survey on land use and livestock](http://www.defra.gov.uk/evidence/statistics/foodfarm/landuselivestock/junesurvey/index.htm). The source Excel file is listed in the resources.\r\n\r\nThe data is modelled using the SCOVO vocabulary as six SCOVO datasets with a total of ~26000 SCOVO items.\r\n\r\nThe data was loaded on 2009-09-30.\r\n\r\nPart of package:data-gov-uk\r\n\r\n## Issues\r\n\r\nDespite being in the Linked Data part of data.gov.uk, the data cannot be accessed via resolving of URIs. This might be because of the use of hash URIs."},"_id":"environment-data-gov-uk","title":"environment.data.gov.uk"},{"description":{"en":null},"_id":"opendatacommunities-societal-wellbeing-deprivation-imd-employment-rank-la-2010","title":"opendatacommunities-societal-wellbeing-deprivation-imd-employment-rank-la-2010"},{"description":{"en":"R&D Programmes from http://www.isvav.cz/."},"_id":"cz-vavai-programmes","title":"R&D Programmes"},{"description":{"en":"StatusNet instance hosted at http://spip.org"},"_id":"statusnet-spip-org","title":"statusnet-spip-org"},{"description":{"en":"Sentiment lexicons linked to the LiLa Knowledge Base. Gold: prior polarity lexicon of Latin lemmas created by two experts of Latin language and culture following a multi-stage process and an extensive reconciliation phase. It follows a five-way classification: 1 (fully positive), 0.5 (somewhat positive), 0 (neutral), -0.5 (somewhat negative), -1 (fully negative) Silver: prior polarity lexicon built by deriving new entries through synonym, antonym and derivational relations with the entries in the gold standard."},"_id":"LatinAffectus","title":"LatinAffectus in LiLa"},{"description":{"en":"Food and Agriculture Organization of the United Nations datasets and classifications."},"_id":"fao-linked-data","title":"Food and Agriculture Organization of the United Nations (FAO) Linked Data"},{"description":{"en":"RDF version of the Apertium bilingual dictionary EO-EN. The original dataset (in LMF) comes from http://hdl.handle.net/10230/22863 . The RDF version of the lexica is modelled using lemon (http://lemon-model.net/) and the translation module (http://purl.org/net/translation). More about the Apertium RDF dictionaries at http://linguistic.linkeddata.es/apertium/\r\n"},"_id":"apertium-rdf-eo-en","title":"Apertium RDF EO-EN"},{"description":{"en":"Muestra térmnos relacionados con el turismo"},"_id":"revistas_turismo","title":"Revista Excelencias Turísticas"},{"description":{"en":"StatusNet instance hosted at http://panda.id.au"},"_id":"statusnet-panda-id-au","title":"statusnet-panda-id-au"},{"description":{"en":"RDF version of the Apertium bilingual dictionary EO-ES. The original dataset (in LMF) comes from http://hdl.handle.net/10230/22865 . The RDF version of the lexica is modelled using lemon (http://lemon-model.net/) and the translation module (http://purl.org/net/translation). More about the Apertium RDF dictionaries at http://linguistic.linkeddata.es/apertium/\r\n"},"_id":"apertium-rdf-eo-es","title":"Apertium RDF EO-ES"},{"description":{"en":"PDEV is a dictionary which provides insight\r\ninto how verbs collocate with nouns and other words\r\nusing an empirically well-founded apparatus of syntactic\r\nand semantic categories. PDEV is a valuable resource for\r\nNLP because it specifies in detail the contextual conditions\r\nthat determine meaning of a word. Thus the main motivation\r\nfor building a Semantic-Web-compliant resource is to\r\nprovide the Semantic Web and the NLP communities with\r\nan easier access to PDEV."},"_id":"pdev-lemon","title":"PDEV-Lemon"},{"description":{"en":"A dataset of productions put on by the Edinburgh University Theatre Company past and present, including linked cast & crew lists."},"_id":"eutc-productions","title":"Edinburgh University Theatre Company Productions"},{"description":{"en":"eWAVE published by the CLLD project"},"_id":"clld-ewave","title":"CLLD-EWAVE"},{"description":{"en":"The Parole/Simple 'lemon' Ontology is the OWL version of the Parole/Simple model (defined during the PAROLE LE2-4017 and SIMPLE LE4-8346 projects) once mapped to the lemon model.\r\n\r\nThe goal of SIMPLE project was to add semantic information, selected for its relevance for LE applications, to the set of harmonised multifunctional lexica built for 12 European languages by the PAROLE consortium. PAROLE +SIMPLE lexicons \r\ncontain morphological, syntactic and semantic information, organised according to a common model and to common linguistic specifications. \r\n\r\nThe original Parole/Simple model expressed in the parole DTD has been mapped into the lemon model (http://lemon-model.net/lemon#). \r\nThus the resulting Parole/Simple Ontology imports the Lexinfo+lemon Ontology and adds 'parole elements' (classes and/or properties)\r\nwhenever these cannot be mapped to any 'lexinfo element'. \r\n\r\nThe Spanish lexicon includes 7572 entries fully annotated with syntactic and semantic information.\r\n\r\nThe Catalan lexicon includes 20545 entries annotated with syntactic information half of which are also annotated with semantic information. The latest version of the Catalan lexicon includes links to the Catalan EuroWordNet lemon lexicon (http://lod.iula.upf.edu/resources/WordNetLemonCAT).\r\n\r\nThese resources were developed with the support of METANET4U: Enhancing the European Linguistic Infrastructure, (2011-2013), funded by UNER - Competitiveness and Innovation Framework Program, (CIP-PSP-270893).\r\n\r\nSources can be found at https://github.com/martavillegas/ParoleSimpleLemon"},"_id":"parole-simple-lexinfo-ontology-lexicons","title":"Parole/Simple 'lexinfo' Ontology & lexicons"},{"description":{"en":"Codices: Drill Site and Expedition Data\r\n\r\nCodices exposes general site data (location, depth, recovery, etc) along with publication links and other associated data.\r\n\r\n\r\nWe are still in a development mode and working in particular and the namespace URI's and their hosting. So some elements here will change as we tweak responsibility for maintaining namespaces and curating them. You are welcome (encouraged) to explore our sparql endpoint (http://data.oceandrilling.org/sparql) and engage us, comment and criticize. (Doug)\r\n\r\nThis site is guided by the linked data pattern (http://linkeddata.org/). Information on this effort and the steps being taken to expose data in this approach are described here.\r\n\r\nThis data represents only a small percentage of the data available but is sufficient for testing at this time. Additional data related to log files from LDEO, timescales from CHRONOS and data from TAMU are yet to be loaded. \r\n\r\nhttp://data.oceandrilling.org/linkeddata.html"},"_id":"oceandrilling-codices","title":"Ocean Drilling - Codices"},{"description":{"en":"The Mathematics Subject Classification (MSC2010) as a Linked Open Dataset using SKOS - Simple Knowledge Organization System.\r\nThe Mathematics Subject Classi?cation (MSC) is a widely used scheme for classifying documents in mathematics by subject. The Final MSC2010 revision was made public here in May 2009, and deployed in production in July 2009 by Zbl for ZMATH and MR for MathSciNet.\r\n\r\nThe license is CC-BY-NC-SA."},"_id":"msc","title":"Mathematics Subject Classification"},{"description":{"en":"Universal Dependencies is a project that seeks to develop cross-linguistically consistent treebank annotation for many languages, with the goal of facilitating multilingual parser development, cross-lingual learning, and parsing research from a language typology perspective. The annotation scheme is based on (universal) Stanford dependencies (de Marneffe et al., 2006, 2008, 2014), Google universal part-of-speech tags (Petrov et al., 2012), and the Interset interlingua for morphosyntactic tagsets (Zeman, 2008).\r\n\r\nThis dataset refers to UD's Irish treebank.\r\n"},"_id":"universal-dependencies-treebank-irish","title":"Universal Dependencies Treebank Irish"},{"description":{"en":"Data exposed: Linked Clinical Trials\r\n\r\nSize of dump and data set: ~25 million triples as of April 2011. 4.8GB NTriples dump\r\n\r\n###CC by-nc-sa license\r\n\r\nYou are free to copy, distribute, transmit, and adapt the work for non-commercial purposes. However, you need to follow the terms and conditions available at http://www.clinicaltrials.gov/ct2/info/terms\r\n\r\nAccording to OKD (http://www.opendefinition.org/okd/) the data is not considered open."},"_id":"linkedct","title":"LinkedCT"},{"description":{"en":"The Ontologies of Linguistic Annotations (OLiA) provide an OWL/DL taxonomy of data categories as a reference for linguistic annotation (OLiA Reference Model), plus OWL/DL models for a large number of annotation schemes (OLiA Annotation Models) and their relationship to reference data categories (OLiA Linking Models).\r\nThe OLiA Reference Model itself is linked to community-maintained repositories such as GOLD (http://linguistics-ontology.org/) and ISOcat (http://www.isocat.org)\r\n\r\nThe OLiA ontologies were originally developed as part of an infrastructure for the sustainable maintenance of linguistic resources (http://www.sfb441.uni-tuebingen.de/c2/index-engl.html), their fields of application include the formalization of annotation schemes, concept-based querying over heterogeneously annotated corpora, and the development of interoperable NLP pipelines."},"_id":"olia","title":"OLiA"},{"description":{"en":"The [Achievement Standards Network](http://asn.jesandco.org \"Achievement Standards Network\") (ASN) provides open access to machine-readable representations of learning objectives published by education agencies and organizations. This is the ASN:US dataset of \"published\" learning objectives. The ASN is also used in Australia [(ASN:AU)](http://www.australiancurriculum.edu.au/Technical/Introduction \"ASN:AU\").\r\n\r\nThe ASN is is funded in part by the [Bill & Melinda Gates Foundation](http://gatesfoundation.org \"Bill & Melinda Gates Foundation\") and was initially funded by the [National Science Foundation](http://www.nsf.gov/ \"National Science Foundation\")."},"_id":"asn-us","title":"ASN:US"},{"description":{"en":"<p>\r\nThe competitiveness and the green economy should be a collective idea of organizing industrial production and, therefore, a business space, not a thought exercise or a radical practice.\r\n<a href=\"http://red.gnoss.com/en/community/greencompetitiveness\">Green Competitiveness</a>\r\nis a global knowledge network designed to share content and opinion about the opportunities for economic growth and social well-being related to the promotion and growth of the green economy.\r\n</p>\r\n<p>\r\nGreen Competitiveness works with \r\n<a href=\"http://gnoss.com/\">GNOSS software (RIAM Intelearning Lab)</a>\r\n. RIAM is a company that develops semantic technology for the creation of specialized networks and linked markets. Green Competitiveness offers a selection of 189 resources (November 2012). It includes facet-based searches and enriched contexts. Both are developments by GNOSS.\r\n</p>\r\n<p>\r\n<br>\r\nLa competitividad y economía verdes deberían llegar a ser un idea colectiva organizadora de la producción industrial y, por tanto, un espacio de negocios y no un ejercicio de pensamiento en los márgenes o una práctica radical. La comunidad\r\n<a href=\"http://red.gnoss.com/comunidad/greencompetitiveness\">Green Competitiveness</a>\r\ntiene como objetivo mostrar las oportunidades de crecimiento económico y bienestar social relacionados con la promoción y el crecimiento de la economía verde.\r\n</p>\r\n<p>\r\nGreen Competitiveness trabaja con software de \r\n<a href=\"http://gnoss.com/\">GNOSS software (RIAM Intelearning Lab)</a>\r\n. RIAM es una compañía que desarrolla tecnología semántica para la creación de redes especializadas y mercados enlazados. NextWeb ofrece en este caso una selección de 189 recursos (Noviembre 2012). Incluye un buscador facetado y contextos enriquecidos. Ambos son desarrollos de GNOSS.\r\n</p>"},"_id":"green-competitiveness-gnoss","title":"Green Competitiveness (GNOSS)"},{"description":{"en":"This is a 21 class land use image dataset meant for research purposes.\n\nThere are 100 images for each of the following classes:\n\nagricultural\nairplane\nbaseballdiamond\nbeach\nbuildings\nchaparral\ndenseresidential\nforest\nfreeway\ngolfcourse\nharbor\nintersection\nmediumresidential\nmobilehomepark\noverpass\nparkinglot\nriver\nrunway\nsparseresidential\nstoragetanks\ntenniscourt\nEach image measures 256x256 pixels.\n\nThe images were manually extracted from large images from the USGS National Map Urban Area Imagery collection for various urban areas around the country. The pixel resolution of this public domain imagery is 1 foot."},"_id":"remote_Sensing","title":"Land use merced dataset"},{"description":{"en":"Getty Thesaurus of Geographic Names® (TGN) is a structured vocabulary of geographic names intended to provide terminology and other information important to various diciplines that specialize in art, architecture and material culture. The TGN includes names and associated information about places. Places in TGN include administrative political entities (e.g., cities, nations) and physical features (e.g., mountains, rivers). Current and historical places are included. Like all of the Getty Vocabularies, the TGN is compliant with international standards and grows through contribution. \r\n\r\n** Openness **\r\nTGN data is released under Open Data Commons Attribution License. Adherence to ODC Attribution instructions for the correct assertion of attribution is encouraged. The preferred form of attribution for TGN is:\r\n\r\n\"*This [title or report or article or dataset] contains information from the Getty Thesaurus of Geographic Names® (TGN) which is made available under the ODC Attribution License.*\"\r\n\r\nSpecial Case: In circumstances where providing the full attribution statement above is not technically feasible, the use of canonical TGN URIs is adequate to satisfy Section 4.3 of the ODC Attribution License."},"_id":"getty-tgn","title":"The Getty Thesaurus of Geographic Names"},{"description":{"en":"INTERVALUE data using LOD principle.\r\nINTERVALUE project (http://www.urenio.org/intervalue/) aims to bridge the gap between R&D creators, producers, financiers and marketers by creating a trans-national mechanism that facilitates the valorization of research results. In other words INTERVALUE aims to connect R&D Institutions and their projects with the business sector and the market. "},"_id":"intervalue","title":"intervalue"},{"description":{"en":""},"_id":"rkb-explorer-ieee","title":"IEEE Papers (RKBExplorer)"},{"description":{"en":"NITP_PROFESSORS_DATA"},"_id":"notIdentifier","title":"NITP"},{"description":{"en":"Universal Dependencies is a project that seeks to develop cross-linguistically consistent treebank annotation for many languages, with the goal of facilitating multilingual parser development, cross-lingual learning, and parsing research from a language typology perspective. The annotation scheme is based on (universal) Stanford dependencies (de Marneffe et al., 2006, 2008, 2014), Google universal part-of-speech tags (Petrov et al., 2012), and the Interset interlingua for morphosyntactic tagsets (Zeman, 2008).\r\n\r\nThis dataset refers to UD's Hebrew treebank.\r\n"},"_id":"universal-dependencies-treebank-hebrew","title":"Universal Dependencies Treebank Hebrew"},{"description":{"en":"This dataset groups all the Apertium RDF bilingual dictionaries (see the whole list at http://datahub.ckan.io/dataset?q=apertium+rdf&organization=oeg-upm). The dictionaries were converted into RDF from their LMF version, which can be found in Meta-Share (http://metashare.upf.edu/). The RDF version of the lexica is modelled using lemon (http://lemon-model.net/) and the translation module (http://purl.org/net/translation). \r\nThe Apertium RDF version has been generated by OEG (Universidad Politécnica de Madrid) jointly with IULA (Universitat Pompeu Fabra).\r\nMore about the Apertium RDF dictionaries at http://linguistic.linkeddata.es/apertium/"},"_id":"apertium-rdf","title":"Apertium RDF"},{"description":{"en":"Note: The number of triple is a wild guess based on the 2600 RDF documents found in Sindice and an assumption of ~20 triples per page.http://rdf.ecs.soton.ac.uk/ontology/ecs#"},"_id":"ecs","title":"School of Electronics and Computer Science, University of Southampton"},{"description":{"en":"Data about business entities that pollute the environment."},"_id":"cz-cenia-pollution","title":"Integrated pollution registry"},{"description":{"en":"### Description\r\n\r\nLingvoj means languages in Esperanto. From the frontpage of <http://www.lingvoj.org/>:\r\n\r\nSince the launch of lingvoj.org in 2007, the linked data cloud has grown at a steady pace, and a growing number of URI sets have been published to identify human languages. Lexvo.org is providing the most exhaustive of those so far, in which URIs for languages are integrated in a global approach of terminology. Through exchanges with Gerard de Melo, editor at Lexvo.org, it has been decided to redirect and deprecate lingvoj.org URIs for individual languages to the benefit of the more stable and exhaustive publication at Lexvo.org.\r\n\r\nMost lingvoj.org URIs for individual languages are redirected to lexvo.org URIs through content negotiation. A few exceptions are URIs of languages with no ISO 639-3 codes, since lexvo URIs are built on those codes, and languages with a regional tag, such as en-us. \r\n\r\nThe lingvoj-to-lexvo RDF file provides the mappings and equivalence between lingvo and lexvo URIs. Applications using the lingvoj.org URIs are invited to change their references accordingly, although the redirection mechanism should avoid any breakdown of applications using lingvoj.org URIs. \r\n\r\n### Openness: OPEN\r\n\r\n * License: not specified but Open Data logo prominently displayed and part of the Linked Data effort so assumed to be open.\r\n * Access: Good.\r\n * bulk. (download of rdf file)"},"_id":"lingvoj","title":"lingvoj ? Languages of the World (Multilingual RDF Descriptions)"},{"description":{"en":"Schemantra Website"},"_id":"Schemantra","title":"Schemantra"},{"description":{"en":"Ontology for Corona virus infected cases according to WHO. It is open-source ontology in the area of corona virus infectious disease. The WHOnto provide information about active cases, total number of death across the country. WHOnto is developed to provide standardized human- and computer interpret able annotation and representation of various corona virus infectious diseases, including their etiology, transmission, diagnosis, prevention, and treatment. "},"_id":"WHOnto","title":"Corona Virus Infected Cases Ontology"},{"description":{"en":"File with all Czech business entity names and their identification numbers"},"_id":"cz-ic","title":"Czech Business Entity identification numbers and names"},{"description":{"en":"This is a Taiwan geographic name(台灣地名) linked open data service. This service aims to provide a unique ID for linking Taiwan place names."},"_id":"taiwan-geographic-names","title":"Taiwan geographic names"},{"description":{"en":"Allen Brain Atlas P56 Mouse Ontology"},"_id":"bioportal-aba","title":"ABA Adult Mouse Brain"},{"description":{"en":"Catch records data from Norway (2014-2019), transformed and published as Linked Data. The source data is in CSV format which has been processed, transformed and published as Linked Data, enabling their integration with other datasets in the LOD datasets. The catch record data involves the catch amount in tonnes for each year, along with the species caught and vessel and fishermen data. fishing regions and catch area data is also included in the respective years in the dataset. The dataset is already linked with some of these datasets, including FAO species, FAO fishing areas, and the ISO-3166 standard codes. The source CSV files can be found in https://www.fiskeridir.no/Tall-og-analyse/AApne-data/AApne-datasett/Fangstdata-koblet-med-fartoeydata."},"_id":"Catch_Record_(2014-_2019)","title":"Norway catch records dataset @PSNC"},{"description":{"en":"StatusNet instance hosted at http://thornton2.com"},"_id":"statusnet-thornton2-com","title":"statusnet-thornton2-com"},{"description":{"en":"2000 U.S. Census converted into over a billion RDF triples.\r\n\r\nPopulation statistics at various geographic levels, from the U.S. as a whole, down through states, counties, sub-counties (roughly, cities and incorporated towns)\r\n\r\nNotes: also found in the of SPARQL Endpoints.\r\n\r\nFrom home page:\r\n\r\n> * For the detailed Census statistics, you'll have to download the raw Census data files from the Census Bureau, my Perl script and the patch file below and run it yourself because the files are too big for me to offer as a download!\r\n> \r\n> * The data and scripts can be reused under Creative Commons Attribution-NonCommercial-ShareAlike.\r\n"},"_id":"2000-us-census-rdf","title":"2000 U.S. Census in RDF (rdfabout.com)"},{"description":{"en":"Pathway Commons is a convenient point of access to biological pathway information collected from public pathway databases"},"_id":"bio2rdf-pathwaycommons","title":"Bio2RDF::Pathwaycommons"},{"description":{"en":"The European Environment Agency (EEA) is an agency of the European Union. Our task is to provide sound, independent information on the environment. We are a major information source for those involved in developing, adopting, implementing and evaluating environmental policy, and also the general public.\r\n\r\nThe dataset contains metadata for various items published on the portal; reports, articles, speeches, datasets, indicators etc."},"_id":"eea","title":"European Environment Agency Published Products"},{"description":{"en":"### About\r\n\r\nFrom website:\r\n\r\n>STEAK (Super Terminology system for the Evaluation and Analysis of Knowledge) is an integrated management tool for multilingual lexical resources. To accomplish this goal, semantic text mining techniques and resource convergence techniques which extract meaningful data from big data resources are implemented as fundamental functions. Moreover, in order to give data readability, an intelligent interface including concept navigation and visualization is additionally provided. The main processes of the STEAK are collecting multilingual lexical resources, extracting patterns appropriate for the resources, explicitly constructing semantic relations, and expressing these outcomes based on SKOS (Simple Knowledge Organization System) type for information sharing and reusability."},"_id":"steak","title":"Super Terminology System(STEAK) - Linked Open Data"},{"description":{"en":"AEO is an ontology of anatomical structures that expands CARO, the Common Anatomy Reference Ontology, to about 200 classes using the is_a relationship; it thus provides a detailed type classification for tissues. The new classes were chosen for their use in categorizing the major vertebrate and invertebrate anatomy ontologies at a granularity adequate for tissues of a single cell type. The ontology should be useful in increasing the amount of knowledge in anatomy ontologies, facilitating annotation and enabling interoperability across anatomy ontologies"},"_id":"bioportal-aeo","title":"Anatomical Entity Ontology"},{"description":{"en":"BIS data and metadata"},"_id":"bis-linked-data","title":"Bank for International Settlements (BIS) Linked Data"},{"description":{"en":"LDEO log files as data (TEST leg 218 only)\r\n\r\n\r\nWe are still in a development mode and working in particular and the namespace URI's and their hosting. So some elements here will change as we tweak responsibility for maintaining namespaces and curating them. You are welcome (encouraged) to explore our sparql endpoint (http://data.oceandrilling.org/sparql) and engage us, comment and criticize. (Doug)\r\n\r\nThis site is guided by the linked data pattern (http://linkeddata.org/). Information on this effort and the steps being taken to expose data in this approach are described here.\r\n\r\nThis data represents only a small percentage of the data available but is sufficient for testing at this time. Additional data related to log files from LDEO, timescales from CHRONOS and data from TAMU are yet to be loaded. "},"_id":"oceandrilling-ldeo","title":"Ocean Drilling - LDEO log files as data (TEST leg 218 only)"},{"description":{"en":"RDF representation of the Medline catalogue. Information about 19 million articles linked to http://dx.doi.org/ with article identifiers and http://crossref.org/ with journal identifiers."},"_id":"medline","title":"medline"},{"description":{"en":"This dataset contains data obtained through an automatic extraction process from Aragopedia (http://opendata.aragon.es/aragopedia/), and contains information about all the municipalities, boroughs, and provinces of the region of Aragón, in Spain. "},"_id":"aragodbpedia","title":"AragoDBpedia - aragon open data"},{"description":{"en":"The JITA Classification Schema has been developed starting from a merger of NewsAgentTopic Classification Scheme (maintained by Mike Keen at Aberystwyth, UK, until 31st March 1998) and the RIS classification scheme of the (now defunct) Review of Information Science originally conceived by Dagobert Soergel (University of Maryland). JITA is an acronym of the authors' first names: \"J\"osé Manuel Barrueco Cruz, \"I\"mma Subirats Coll, \"T\"homas Krichel and \"A\"ntonella De Robbio. The authors thank Michael Keen, University of Wales Aberystwyth and Andy Powell, UKOLN for the permission of the using NewsAgentTopic Classification Scheme in the development of this schema. In addition, the authors are grateful for comments by Lorcan Dempsey (OCLC) and Sophie Rigny (Library of Congress)."},"_id":"jita","title":"JITA Classification System of Library and Information Science"},{"description":{"en":"StatusNet instance hosted at http://bonifaz.ec"},"_id":"statusnet-bonifaz-ec","title":"statusnet-bonifaz-ec"},{"description":{"en":"FAO water areas classification, including inland and marine codes, published as linked data."},"_id":"Water_Areas_Classification","title":"FAO water areas classification as linked data @PSNC"},{"description":{"en":"This data contains the water buffer and water body related data from Czech republic. The source data was in shapefiles which is transformed into linked data."},"_id":"Water_Buffer","title":"Water buffer dataset from Czech Republic @PSNC"},{"description":{"en":"REX is an ontology of physico-chemical processes, i.e. physico-chemical changes occurring in course of time. REX includes both microscopic processes (involving molecular entities or subatomic particles) and macroscopic processes. Some biochemical processes from Gene Ontology (GO Biological process) can be described as instances of REX."},"_id":"bioportal-rex","title":"Physico-chemical process"},{"description":{"en":"StatusNet instance hosted at http://postblue.info"},"_id":"statusnet-postblue-info","title":"statusnet-postblue-info"},{"description":{"en":"Esis is an institute university of democratic republic of congo."},"_id":"esislearning","title":"Dataset Esis"},{"description":{"en":"RDF conversion of a dataset released by the BBC, about the [John Peel sessions](http://en.wikipedia.org/wiki/John_Peel#Peel_sessions), a long-lived series of live music performances on BBC Radio 1, hosted by DJ John Peel."},"_id":"dbtune-john-peel-sessions","title":"DBTune.org John Peel sessions RDF server"},{"description":{"en":"<p>\r\n<a href=\"http://deusto.gnoss.com/comunidad/deustoentrepreneurship\">Deusto Entrepreneurship: sharing business knowledge</a>, promoted by the Deusto Entrepreneurship Center at the University of Deusto, aims to update and connect knowledge of entrepreneurs, researchers and professionals on entrepreneurship and business. \r\n</p>\r\n<p>\r\nDeusto Entrepreneurship works with <a href=\"http://gnoss.com/\">GNOSS software (RIAM Intelearning Lab)</a>. RIAM is a company that develops semantic technology for the creation of specialized networks and linked markets. Deusto Entrepreneurship is a source of information and opinion especially recommended for people who visualize an opportunity and need inspiration, approach and support to launch a business. It offers a selection of 257 resources on entrepreneurship (September 2012).\r\n</p>"},"_id":"deustoentrepreneurship","title":"Deusto Entrepreneurship: sharing business knowledge"},{"description":{"en":"An ontology for animal life history and natural history characteristics suitable for populations and higher taxonomic entities."},"_id":"bioportal-adw","title":"Animal natural history and life history"},{"description":{"en":"An RDF conversion of the PostgreSQL database dumps made available by the MusicBrainz project (package:musicbrainz) and hosted under the Talis Connected Commons scheme. It contains RDF representations of albums, artists, tracks, labels and their relationships.\r\n\r\nNote: this dataset is no longer available."},"_id":"data-incubator-musicbrainz","title":"Data Incubator: MusicBrainz"},{"description":{"en":"Universal Dependencies is a project that seeks to develop cross-linguistically consistent treebank annotation for many languages, with the goal of facilitating multilingual parser development, cross-lingual learning, and parsing research from a language typology perspective. The annotation scheme is based on (universal) Stanford dependencies (de Marneffe et al., 2006, 2008, 2014), Google universal part-of-speech tags (Petrov et al., 2012), and the Interset interlingua for morphosyntactic tagsets (Zeman, 2008).\r\n\r\nThis dataset refers to UD's Uyghur treebank.\r\n"},"_id":"universal-dependencies-treebank-uyghur","title":"Universal Dependencies Treebank Uyghur"},{"description":{"en":"The International Classification of Primary Care (ICPC). Denmark: World Organisation of Family Doctors, 1993."},"_id":"bioportal-icpc","title":"International Classification of Primary Care"},{"description":{"en":"The GOA (Gene Ontology Annotation) project provides high-quality Gene Ontology (GO) annotations to proteins in the UniProt Knowledgebase (UniProtKB) and International Protein Index (IPI). This involves electronic annotation and the integration of high-quality manual GO annotation from all GO Consortium model organism groups and specialist groups."},"_id":"bio2rdf-goa","title":"Bio2RDF::Goa"},{"description":{"en":null},"_id":"opendatacommunities-transparency-impact-indicators-troubled-families","title":"opendatacommunities-transparency-impact-indicators-troubled-families"},{"description":{"en":"Microarray technologies allow the identification of large numbers of expression differences within and between species. Although environmental and physiological stimuli are clearly responsible for changes in the expression levels of many genes, it is not known whether the majority of changes of gene expression fixed during evolution between species and between various tissues within a species are caused by Darwinian selection or by stochastic processes. We find the following: (1) expression differences between species accumulate approximately linearly with time; (2) gene expression variation among individuals within a species correlates positively with expression divergence between species; (3) rates of expression divergence between species do not differ significantly between intact genes and expressed pseudogenes; (4) expression differences between brain regions within a species have accumulated approximately linearly with time since these regions emerged during evolution. These results suggest that the majority of expression differences observed between species are selectively neutral or nearly neutral and likely to be of little or no functional significance. Therefore, the identification of gene expression differences between species fixed by selection should be based on null hypotheses assuming functional neutrality. Furthermore, it may be possible to apply a molecular clock based on expression differences to infer the evolutionary history of tissues."},"_id":"arrayexpress-e-afmx-1","title":"Transcription profiling of human, chimp and mouse brain"},{"description":{"en":"<p> The arthroscopy community is the adecuate space for all those who take part on the arthroscopic surgical procedures of the locomotor system. Its meaning is to create and share knowledge concerning the answers to the current and effective matters on these kind of arthroscopic proceedings: surgical, anesthesic, rehabilitative or even organizing ones.</p>\r\n<p>The arthroscopy community works with <a href=\"http://gnoss.com/\">GNOSS software (RIAM Intelearning Lab)</a>. RIAM is a company that develops semantic technology for the creation of specialized networks and linked markets. It includes a facet-based search engine and enriched contexts. Both are developments by GNOSS.</p>\r\n\r\n<p> Portal de Artroscopia es un espacio de aprendizaje para todas las personas que participan en los procedimientos quirúrgicos artroscópicos del aparato locomotor. El propósito es generar y compartir conocimiento sobre las soluciones a los problemas reales y concretos en este tipo procedimientos, sean estos quirúrgicos, de anestesia, de rehabilitación o de organización. </p><p> Portal de Artroscopia trabaja con <a href=\"http://gnoss.com/\">software de GNOSS (RIAM Intelearning Lab)</a>. RIAM es una compañía que desarrolla tecnología semántica para la creación de redes especializadas y mercados enlazados. El proyecto Incluye un buscador facetado y contextos enriquecidos. Ambos son desarrollos de GNOSS.\r\n</p>"},"_id":"arthroscopy","title":"Arthroscopy community"},{"description":{"en":"A collection of Authors for LREC2014 and related Workshops"},"_id":"lremap-auth","title":"A collection of Authors for LREC2014 and related Workshops"},{"description":{"en":"Can find out location of any place."},"_id":"Location_Ontology","title":"Location Ontology"},{"description":{"en":"Linked data on all Pokemon franchise"},"_id":"pokepedia-fr","title":"Poképédia"},{"description":{"en":"Dutch Ships and Sailors brings together four Dutch maritime historical datasets. The datasets are modeled as Linked Data, with internal and external links and a schema mapping to a common DSS schema. The four RDF datasets are:\r\n\r\n1. The Northern Monsterrollen databases, which contain elaborate data on the crew composition of ships from the Northern Netherlands (c. 1800-1930) and provide information on the sailors involved,such as the places of origin, wage and age.\r\n2. The VOC Opvarenden database, providing extensive data on crews of VOC ships leaving the Dutch Republic.\r\n3. The Dutch-Asiatic Shipping (DAS) database, providing data on all inter-continental voyages of VOC ships.\r\n4. The Generale Zeemonsterrollen (GZM) database, providing data on the crew composition and sometimes location of VOC ships stationed in Asia and not engaged in inter-continental shipping."},"_id":"dutch-ships-and-sailors","title":"Dutch Ships and Sailors"},{"description":{"en":"Este nuevo recurso informático que la Dirección General de Libro, Archivos y Bibliotecas pone a disposición del ciudadano supone un importante avnace tecnologico pueste que implica la tranformación de la Lista de Encabezamietos de Materia (LEM) al Simple Knowledge Organization System SKOS, uno de los pilares del Linked Open Data y de su adaptación a Europeana como uno de los namespaces constitutivos del Europeana Data Model. \r\nSe ha establecido ademas, siempre que ha sido posible, un skos:closeMatch con los LCSH y se está progresando para proporcionar una funcionalidad análoga con RAMEAU o SWD.\r\nIncorpora además un fichero en zip de los registros MARC dea utoridades de materia, es decir aquellos basados en el campo 150 en los que se ha añadido las URI de las LEM y las del LCSH.\r\n\r\n---\r\n\r\nThis new digital resource that the Dirección General del Libro, Archivos y Bibliotecas offers to its users represents a huge technological step forward, for it means the transformation of the Subject Headings List (Lista de Encabezamientos de Materia, LEM) to the Simple Knowledge Organization System (SKOS), one of the main pillars of Linked Open Data and of its adaptation to Europeana as one of the Europeana Data Model primary namespaces.\r\nskos:closeMatch links to LCSH have been defined whenever possible, and work is being done towards establishing similar links to RAMEAU and SWD.\r\nThe list is also presented in a zipped MARC file of subject authorities (those based on field 150 in which LEM and LCSH URIs have been added)."},"_id":"lista-encabezamientos-materia","title":"Lista de Encabezamientos de Materia as Linked Open Data"},{"description":{"en":"The Open wordnet as published as part of the Open Multilingual WordNet. The goal of Open Multilingual WordNet is to make it easy to use wordnets in multiple languages. The individual wordnets have been made by many different projects and vary greatly in size and accuracy. We have (i) extracted and normalized the data, (ii) linked it to Princeton WordNet 3.0 and (iii) put it in one place. The Open Multilingual Wordnet and its components are open: they can be freely used, modified, and shared by anyone for any purpose. The original URL for this project is http://wordpress.let.vupr.nl/odwn/"},"_id":"omwn-nld","title":"Open WordNet (as part of Open Multilingual WordNet)"},{"description":{"en":"Ontology network about Patient Safety Incident. This work has been carried out by the Ontological Engineering Group, using sources from the University of Saint Etienne and the Australian Patient Safety Foundation, and supported by the World Health Organisation under the International Classification for Patient Safety programme."},"_id":"bioportal-icps","title":"ICPS Network"},{"description":{"en":"HELLO EVERONE"},"_id":"A1","title":"ITS TEST DATASET"},{"description":{"en":"StatusNet instance hosted at http://20100.org"},"_id":"statusnet-20100-org","title":"statusnet-20100-org"},{"description":{"en":"this dataset contains linked data from agriculture related lands (hilucs_code<200) & for main cities in Czech Republic (centers of NUTS3 regions), Poland (agglomeration areas from Urban Atlas) and Spain (agglomeration areas from Urban Atlas)."},"_id":"Corine_linked_dataset","title":"Corine linked dataset @PSNC"},{"description":{"en":"British Library British National Bibliography package, with records of all new books published in the UK since 1950.\r\n\r\nUse of Data: This data is being made available under a Creative Commons CC0 1.0 Universal Public Domain Dedication licence. This means that the British Library Board makes no copyright, related or neighbouring rights claims to the data and does not apply any restrictions on subsequent use and reuse of the data. The British Library accepts no liability for damages from any use of the supplied data. For more detail please see the terms of the licence.\r\n\r\nSupport: The British Library is committed to providing high quality services and accurate data. If you have any queries or identify any problems with the data please contact metadata@bl.uk.\r\n\r\nShare knowledge: We are also very interested to hear the ways in which you have used this data so we can understand more fully the benefits of sharing it and improve our services. Please contact metadata@bl.uk if you wish to share your experiences with us and those that are using this service.\r\n\r\nGive Credit Where Credit is Due: The British Library has a responsibility to maintain its bibliographic data on the nation’s behalf. Please credit all use of this data to the British Library and link back to www.bl.uk/bibliographic/datafree.html in order that this information can be shared and developed with today’s Internet users as well as future generations.\r\n\r\nDuplicate of package:bluk-bnb"},"_id":"jiscopenbib-bl_bnb-1","title":"JISC Open Bibliography British National Bibliography dataset"},{"description":{"en":"Indian Publishing Website"},"_id":"Prior_Panel","title":"Prior Panel"},{"description":{"en":"Bathing water quality assessment data for England and Wales from the Environment Agency."},"_id":"environment-agency-bathing-water-quality","title":"Environment Agency Bathing Water Quality"},{"description":{"en":"The Near dataset provides \"near\" links connecting points of interest that are geographically close to each other. The data set currently cross-links items in DBpedia, Geonames and Edubase.\r\n\r\n*Note* this dataset is no longer updated, it was taken off-line during the shutdown of Kasabi. A dump of the dataset has been [uploaded to the Internet Archive](http://archive.org/details/kasabi)"},"_id":"near","title":"Near"},{"description":{"en":"An ontology of amino acids and their properties. Inferred version."},"_id":"bioportal-amino-acid","title":"Amino Acid"},{"description":{"en":"Predicate Model For Ontologies (2018a version)"},"_id":"premon","title":"PreMOn"},{"description":{"en":"Universal Dependencies is a project that seeks to develop cross-linguistically consistent treebank annotation for many languages, with the goal of facilitating multilingual parser development, cross-lingual learning, and parsing research from a language typology perspective. The annotation scheme is based on (universal) Stanford dependencies (de Marneffe et al., 2006, 2008, 2014), Google universal part-of-speech tags (Petrov et al., 2012), and the Interset interlingua for morphosyntactic tagsets (Zeman, 2008).\r\n\r\nThis dataset refers to UD's Polish treebank.\r\n"},"_id":"universal-dependencies-treebank-polish","title":"Universal Dependencies Treebank Polish"},{"description":{"en":"Linked Data version of Diseasome publishes a network of 4,300 disorders and disease genes linked by known disorder-gene associations for exploring all known phenotype and disease gene associations, indicating the common genetic origin of many diseases. The list of disorders, disease genes, and associations between them was obtained from the Online Mendelian Inheritance in Man (OMIM), a compilation of human disease genes and phenotypes.\r\n\r\nOMIM Data Use from http://www.ncbi.nlm.nih.gov/Omim/restrictions.html\r\n\r\nCopyright © 1966-2008 Johns Hopkins University.\r\n\r\nThe OMIM® database including the collective data contained therein is the property of the Johns Hopkins University, which holds the copyright thereto.\r\n\r\nThe OMIM database is made available to the general public subject to certain restrictions. You may use the OMIM database and data obtained from this site for your personal use, for educational or scholarly use, or for research purposes only. The OMIM database may not be copied, distributed, transmitted, duplicated, reduced or altered in any way for commercial purposes, or for the purpose of redistribution, without a license from the Johns Hopkins University.\r\n\r\nRequests for information regarding a license for commercial use or redistribution of the OMIM database may be sent via e-mail to JHTT-Communications@jhmi.edu.\r\n\r\n\r\nlinks:bio2rdf-symbol: 9743"},"_id":"fu-berlin-diseasome","title":"Diseasome"},{"description":{"en":"Ponce School of Medicine is a private medical school located in the city of Ponce in Puerto Rico, U.S. The school is accredited by the Liaison Committee on Medical Education (LCME), and classified as a United States Medical School. It holds nationally accredited graduate programs in the disciplines of Medicine, Clinical Psychology, and Biomedical Sciences, and Public Health. Ponce School of Medicine is also distinguished by its strong support of graduate medical education through several consortia agreements in south eastern Puerto Rico."},"_id":"vivo-ponce","title":"VIVO Ponce"},{"description":{"en":"TV & Radio programme broadcasted by the BBC"},"_id":"bbc-programmes","title":"BBC Programmes"},{"description":{"en":"KORE 50[1] (AIDA) is a subset of the larger AIDA corpus, which is based\r\non the dataset of the CoNLL 2003 NER task. The dataset aims to capture hard to disambiguate mentions of entities and it contains a large number of first names referring to persons, whose identity needs to be deduced from the given context. It comprises 50 sentences from different domains, such as music, celebrities, and business and is provided in a clear TSV format.\r\n\r\nThe corpus was converted to NLP Interchange Format (NIF).\r\n\r\n[1] J. Hoffart, S. Seufert, D. B. Nguyen, M. Theobald, and G. Weikum. KORE: Keyphrase overlap relatedness for entity disambiguation. In Proc. of the 21st ACM international conference on Information and knowledge management, pages 545{554. ACM, 2012"},"_id":"kore-50-nif-ner-corpus","title":"KORE 50 NIF NER Corpus"},{"description":{"en":"Linked Digital Collection \"Rainis and Aspazija\" created by the National Library of Latvia.\r\n\r\nIt is a cultural heritage collection (containing information about two famous Latvian cultural personalities - Rainis and Aspazija) that emphasizes links between collection objects. A subset of objects are transcribed and annotated with mentions of named entities, adding these entities as new collection objects.\r\n\r\nThe collection is published as Linked Data. See dataset resources for further information about it.\r\n\r\nPublication: http://ceur-ws.org/Vol-1608/paper-04.pdf"},"_id":"rainis-and-aspazija-linked-digital-collection","title":"\"Rainis and Aspazija\" Linked Digital Collection"},{"description":{"en":"neXtProt is an innovative knowledge platform dedicated to human proteins. This resource contains a wealth of high-quality data on all the human proteins that are produced by the 20'000 protein-coding genes found in the human genome. The content of neXtProt is continuously extended so as to provide many more carefully selected data sets and analysis tools."},"_id":"nextprot","title":"neXtProt"},{"description":{"en":"The VIVO ontology represents researchers in the context of their experience, outputs, interests, accomplishments, and associated institutions."},"_id":"bioportal-vivo","title":"VIVO"},{"description":{"en":"A Linked Data wrapper around some of the last.fm API."},"_id":"rdfize-lastfm","title":"Last.FM RDFization of Events, Artists, and Users"},{"description":{"en":"ChEMBL is a database of bioactive compounds, their quantitative properties and bioactivities (binding constants, pharmacology and ADMET, etc). The data is abstracted and curated from the primary scientific literature."},"_id":"bio2rdf-chembl","title":"Bio2RDF::Chembl"},{"description":{"en":"The Thesaurus of the Geological Survey of Austria is a bilingual (de/en) controlled vocabulary for the semantic harmonisation of geoscientific map-based geodata. Currently there are four thematic subjects available : \r\n\r\n* lithology\r\n* geologic timescale\r\n* geologic units\r\n* tectonic units & classification"},"_id":"geological-survey-of-austria-thesaurus","title":"Geological Survey of Austria (GBA) - Thesaurus"},{"description":{"en":"The Ookaboo RDF dump contains metadata for nearly 1,000,000 public domain and Creative Commons images of more than 500,000 precise topics such as places, people and organism classifications linked to DBpedia and Freebase.\r\n\r\nExpressed in industry standard RDF, the Ookaboo dump is available with a CC-BY-SA/3.0 license that is friendly for both academic and commercial use. Precision is in excess of 0.98, enabling a new range of applications for image search and classification. See the latest release for downloads and documentation."},"_id":"ookaboo-rdf-dump","title":"Ookaboo RDF dump"},{"description":{"en":"Scholarometer is a social tool for citation analysis, which provides a service to scholars by computing citation-based impact measures. Scholarometer data provides information about authors and disciplines based on citation analysis."},"_id":"scholarometer","title":"Scholarometer"},{"description":{"en":"The WASABI RDF Knowledge Graph provides an RDF representation of the WASABI song corpus, a corpus of 2M+ songs enriched with metadata extracted from music databases on the Web, and resulting from the processing of song lyrics and from audio analysis."},"_id":"wasabi","title":"WASABI RDF Knowledge Graph"},{"description":{"en":"Indian Biodiversity"},"_id":"_https:data.bioontology.orgontologiesBOFdownloadapikey=8b5b7825-538d-40e0-9e9e-5ab9274a9aeb&download_format=rdf","title":"Indian Biodiversity"},{"description":{"en":"### Description\r\n\r\nThis service provides an RDF representation of music artists and their similar artists based on the Last.fm API. Responses are linked with identifiers from package:bbc-music as well as with package:dbtune-musicbrainz.\r\n\r\nRDF representations are designed using the Music Ontology and MuSim the music similarity ontology.\r\n\r\n### Statistics\r\n\r\nThe size and link statistics are wild guesses. Googling for Last.fm artist pages yields ~5M results. We assume that each one has ~50 triples and one outlink each to package:dbtune-musicbrainz and package:bbc-music."},"_id":"dbtune-artists-last-fm","title":"DBTune.org Artists: Last.fm"},{"description":{"en":"Creating the largest comprehensive knowledge base of terrorism and related activities, people and agencies involved, and extremist movements; and providing a platform to the society, the government, and the military personnel in order to combat the evolving threat of the global menace of terrorism."},"_id":"Bioportal_link","title":"Indian Terrorism Ontology (InTO)"},{"description":{"en":"International Classification for Nursing Practice"},"_id":"bioportal-icnp","title":"International Classification for Nursing Practice"},{"description":{"en":"Glottolog 2.7 published by the CLLD project"},"_id":"clld-glottolog","title":"CLLD-GLOTTOLOG"},{"description":{"en":"WordLift Blog for English resources, built with WordLift from the website https://wordlift.io/blog/en/"},"_id":"wordlift-io-blog-en","title":"WordLift Blog EN"},{"description":{"en":"A structured controlled vocabulary of stage-specific anatomical structures of the human. It has been designed to mesh with the mouse anatomy and incorporates each Carnegie stage of development (CS1-20). The timed version of the human developmental anatomy ontology gives all the tissues present at each Carnegie Stage (CS) of human development (1-20) linked by a part-of rule. Each term is mentioned only once so that the embryo at each stage can be seen as the simple sum of its parts. Users should note that tissues that are symmetric (e.g. eyes, ears, limbs) are only mentioned once."},"_id":"bioportal-ehda","title":"Human developmental anatomy, timed version"},{"description":{"en":"List of postal codes in Italy. Includes street names, city and administrative regions."},"_id":"cap-italy-rdf","title":"Postal codes Italy (LinkedOpenData.it)"},{"description":{"en":"StatusNet instance hosted at http://skilledtests.com"},"_id":"statusnet-skilledtests-com","title":"statusnet-skilledtests-com"},{"description":{"en":"This site contains links to metadata about all types of publications (print media, E-books, E-journals,online resources) originating from the central union database of HeBIS. HeBIS - The Hessische BibliotheksInformationsSystem is one of the six regional library unions in Germany. It is the electronic information and service union of academic libraries in Hessen and parts of the Rhineland Palatinate. The metadata was catalogued by 27 independent cataloging libraries/library systems which are active within the union.\r\n\r\nAdditional information about the producer of this data can be found here:\r\n\r\nhttp://www.hebis.de/eng/englisch_index.php"},"_id":"hebis-bibliographic-resources","title":"HeBIS - Bibliographic Resources of the Library Union Catalogues of Hessen and parts of the Rhineland Palatinate"},{"description":{"en":"Covid19 Impact on Banking Ontology (Covid19-IBO) provides semantic information about the impact of the Covid-19 on the banking sector of India"},"_id":"http:www.semanticweb.orgarchanaontologies20215untitled-ontology-6","title":"Covid19 Impact on Banking ontology (Covid19-IBO 1.5)"},{"description":{"en":"StatusNet instance hosted at http://kaimi.cc"},"_id":"statusnet-kaimi-cc","title":"statusnet-kaimi-cc"},{"description":{"en":"This dataset includes all the summer Olympics medalists from 1896-2014 and information about them"},"_id":"abc","title":"SummerOlympics"},{"description":{"en":"The Arabic wordnet as published as part of the Open Multilingual WordNet. The goal of Open Multilingual WordNet is to make it easy to use wordnets in multiple languages. The individual wordnets have been made by many different projects and vary greatly in size and accuracy. We have (i) extracted and normalized the data, (ii) linked it to Princeton WordNet 3.0 and (iii) put it in one place. The Open Multilingual Wordnet and its components are open: they can be freely used, modified, and shared by anyone for any purpose. "},"_id":"omwn-arb","title":"Arabic WordNet (as part of Open Multilingual WordNet)"},{"description":{"en":"Logical Observation Identifier Names and Codes (LOINC);Version 2.26;January 2, 2009"},"_id":"bioportal-lnc","title":"Logical Observation Identifier Names and Codes"},{"description":{"en":"Ontologies provide a common platform of controlled vocabulary for researchers who need to share information across a particular domain, inclusive of machine-interpretable definitions of basic concepts in the domain and relations among them. The need for ontologies that provide a systematic arrangement of available data and allow cross talk across various related domains is gaining momentum. In this backdrop, we have developed a comprehensive ontology on primary and established cell lines-both normal and pathologic. It covers around 400 cell lines. This ontology has been built to include the major domains in the field of biology like anatomy, bio-molecules, chemicals and drugs, pathological conditions and genetic variations around the cell lines. An extensive network of relations has been built across these concepts to enable different combinations of queries. The ontology covers all cell lines from major sources like ATCC, DSMZ, ECACC, ICLC etc. and is built in OWL format."},"_id":"bioportal-mccl","title":"Cell line ontology"},{"description":{"en":"A structured classification of chemical compounds of biological relevance."},"_id":"bioportal-chebi","title":"Chemical entities of biological interest"},{"description":{"en":""},"_id":"rkb-explorer-nsf","title":"National Science Foundation (RKBExplorer)"},{"description":{"en":"The BOOTStrep Ontology is a conceptual model for the domain of gene regulation. It covers processes that are linked to the regulation of gene expression as well as physical entities that are involved in these processes (such as genes and transcription factors) in terms of ontology classes and semantic relations between classes. GRO is intended to represent common knowledge about gene regulation in a formal way rather than representing extremely fine-grained classes as can be found in ontologies such as the Gene Ontology (GO) (created for data base annotation purposes) and various relevant databases. The main purpose of the ontology is to support NLP applications. It has a particular focus on the relations between processes and the molecules (participants) involved. The basic structure of the GRO is a direct acyclic graph (DAG) with ontology classes as nodes and is-a relations between classes as edges. The taxonomic backbone is further enriched by several semantic relation types (part-of, from-species, participates-in with the two sub-relations agent-of and patient-of)."},"_id":"bioportal-bootstrep","title":"Gene Regulation Ontology"},{"description":{"en":"This glossary linked to the LiLa Knowledge Base collects the Latin loanwords attested in the four Italian works by XIIIth Century writer and poet Dante Alighieri (Rime, Vita Nova, Convivio and Commedia)"},"_id":"DanteLatinLoanwords","title":"Dante Latin Loanwords in LiLa"},{"description":{"en":"VIVO is a resource of the University of Florida that provides information on people, departments, facilities, courses, grants, and publications. Information is available as Linked Data and RDF dump. A SPARQL Endpoint can be used at http://vivo.ufl.edu:2020\r\n"},"_id":"vivo-university-of-florida","title":"VIVO University of Florida"},{"description":{"en":"This dataset contains data from the seoul, Korea about bike rental et al."},"_id":"seoul-bike-data","title":"seoul-bike-data"},{"description":{"en":"Lexvo.org brings information about languages, words, characters, and other human language-related entities to the Linked Data Web and Semantic Web. The Linked Data Web is a worldwide initiative to create a Web of Data that exposes the relationships between entities in our world. Lexvo.org adds a new perspective to this Web by exposing how everything in our world is connected in terms of language, e.g. by considering semantic relationships between multilingual labels (like book or New York). Lexvo not only defines global IDs (URIs) for language-related objects, but also ensures that these identifiers are dereferenceable and highly interconnected as well as externally linked to a variety of resources on the Web. "},"_id":"lexvo-org","title":"Lexvo.org"},{"description":{"en":"The books are those listed in the English language section of Dutch printed book auction catalogues of collections of scholars and religious ministers. In some cases, the prior owner of the books listed was from England; in others they were of dutch nationality. For more information about printed book auction catalogues, see http://bibliopolis.nl"},"_id":"printed-book-auction-catalogues","title":"English Language Books listed in Printed Book Auction Catalogues from 17th Century Holland"},{"description":{"en":"Extracts of wiktionary data for several languages, structured as an RDF graph, based mainly on the ontolex-lemon model. Bulgarian, Chinese, Dutch, English, Finnish, French, German, Greek, Indonesian, Italian, Japanese, Kurdish, Latin, Lithuanian, Malagasy, Norwegian, Polish, Portuguese, Russian, Serbo-Croatian, Spanish, Swedish and Turkish."},"_id":"dbnary","title":"DBnary"},{"description":{"en":"Data about Czech business entities from the ARES system - Trade Licensing Register"},"_id":"cz-ares-rzp","title":"Data about Czech business entities from the ARES system - Trade Licensing Register"},{"description":{"en":"A database of abbreviations and long forms utilized in Lifesciences. It provides a solution to the issue that many abbreviations are used in the literature, and polysemous or synonymous abbreviations appear frequently, making it difficult to read and understand scientific papers that are not relevant to the reader's expertise. Allie contains abbreviations and their corresponding long forms extracted from titles and abstracts in the entire MEDLINE®, a database of the U.S. National Library of Medicine. MEDLINE stores over 20 million bibliographic information in life science and is suitable for extracting domain specific abbreviations and their long forms appearing in actual literature. "},"_id":"allie-abbreviation-and-long-form-database-in-life-science","title":"Allie Abbreviation And Long Form Database in Life Science"},{"description":{"en":"Nuvem de dados gerados a partir da transcrição do entrevistado E1"},"_id":"E1","title":"E1 - Nuvem dados"},{"description":{"en":"Research-related data from data.gov.uk:\r\n\r\n* [Namespace for research projects](http://research.data.gov.uk/doc/project)\r\n* Engineering and Physical Sciences Research Council (EPSRC) funded projects\r\n* Medical Research Council (MRC) funded projects\r\n* Technology Strategy Board (TSB) funded projects\r\n* Grant schemes\r\n* People associated with projects\r\n\r\nThe data is from the BIS dataset.\r\n\r\nPart of package:data-gov-uk"},"_id":"research-data-gov-uk","title":"research.data.gov.uk"},{"description":{"en":"dataspaces at myopenlink.net"},"_id":"myopenlink-dataspaces","title":"myopenlink dataspaces"},{"description":{"en":"Lexical resources (word lists, etymological dictionaries) for Germanic languages in different historical stages:\r\n\r\npre 1100 (incl. Gothic, Old High German, Old English), \r\n1100-1600 (incl. Middle English, Middle Dutch, Early Modern High German), post 1600 (Modern English, Modern High German).\r\n\r\nIncludes links to Wiktionary and lexvo.\r\n\r\nWe are currently negotiating with the original author to publish our RDF version of the Old Germanic Etymological Dictionaries from http://www.koeblergerhard.de/wikiling/.\r\n\r\nThe full data set comprises the following components:\r\n\r\na) RDF version of Gerhard Köbler's Old Germanic dictionaries, incl. links to lemonUby (Wiktionary) and lexvo [not included yet]\r\n\r\nb) bilingual word lists generated from historical Germanic bible translations using the GIZA++ translation tables, 349021 triples, incl. links to lemonUby (Wiktionary, 773) and lexvo (34824)\r\n\r\nc) bilingual word lists generated from historical Germanic bible translations using diagnostic context pairs (i.e., verses overlapping in exactly one word), inkl. links to lexvo"},"_id":"germlex","title":"Linked Old Germanic Dictionaries"},{"description":{"en":"Universal Dependencies is a project that seeks to develop cross-linguistically consistent treebank annotation for many languages, with the goal of facilitating multilingual parser development, cross-lingual learning, and parsing research from a language typology perspective. The annotation scheme is based on (universal) Stanford dependencies (de Marneffe et al., 2006, 2008, 2014), Google universal part-of-speech tags (Petrov et al., 2012), and the Interset interlingua for morphosyntactic tagsets (Zeman, 2008).\r\n\r\nThis dataset refers to UD's Coptic treebank.\r\n"},"_id":"universal-dependencies-treebank-coptic","title":"Universal Dependencies Treebank Coptic"},{"description":{"en":"Test Präsi"},"_id":"Test","title":"Test"},{"description":{"en":"Covid19 Impact on Banking Ontology (Covid19-IBO) provides semantic information about the impact of the Covid-19 on the banking sector of India"},"_id":"Biop","title":"Covid19 Impact on Banking ontology (Covid19-IBO 1.5)"},{"description":{"en":"duplicate:national-diet-library-authorities"},"_id":"national-diet-library-subject-headings","title":"National Diet Library of Japan subject headings"},{"description":{"en":"SNOMED Clinical Terms"},"_id":"bioportal-snomedct","title":"SNOMED Clinical Terms"},{"description":{"en":""},"_id":"fu-berlin-medicare","title":"MediCare"},{"description":{"en":"Linked Logainm is a collaborative project undertaken by the Digital Repository of Ireland (DRI), the Digital Enterprise Research Institute (DERI), Fiontar at Dublin City University, the National Library of Ireland and the Place names Branch of the Department of Arts, Heritage and the Gaeltacht. The Linked Logainm project has created a new open dataset, which allows Irish place names to be linked across the world by cutting edge technologies developed in Ireland. The new Linked Data version of the authoritative bilingual database of Irish place names logainm.ie, is an open resource to be widely used by web developers, computer scientists, researchers, the heritage community and librarians and archivists."},"_id":"linked-logainm","title":"Linked Logainm"},{"description":{"en":"A sensor based Health Care Ontology"},"_id":"HealthCare_Ontology","title":"HealthCare Ontology"},{"description":{"en":"Universal Dependencies is a project that seeks to develop cross-linguistically consistent treebank annotation for many languages, with the goal of facilitating multilingual parser development, cross-lingual learning, and parsing research from a language typology perspective. The annotation scheme is based on (universal) Stanford dependencies (de Marneffe et al., 2006, 2008, 2014), Google universal part-of-speech tags (Petrov et al., 2012), and the Interset interlingua for morphosyntactic tagsets (Zeman, 2008).\r\n\r\nThis dataset refers to UD's Gothic treebank.\r\n"},"_id":"universal-dependencies-treebank-gothic","title":"Universal Dependencies Treebank Gothic"},{"description":{"en":"RDF version of the Apertium bilingual dictionary EO-CA. The original dataset (in LMF) comes from http://hdl.handle.net/10230/22861 . The RDF version of the lexica is modelled using lemon (http://lemon-model.net/) and the translation module (http://purl.org/net/translation). More about the Apertium RDF dictionaries at http://linguistic.linkeddata.es/apertium/\r\n"},"_id":"apertium-rdf-eo-ca","title":"Apertium RDF EO-CA"},{"description":{"en":"DHSVM numerically represents with high spatial resolution (typically on the order of 100 m) the effects of local weather, topography, soil type, and vegetation on the hydrology within watersheds. The model is used to study the impacts of climate change, land use change, forest management practices, flooding, glacier dynamics, stream temperature and stream quality."},"_id":"DHSVM","title":"Distributed Hydrology Soil Vegetation Model"},{"description":{"en":"Polish Land Parcel Information System (LPIS) data (land parcel and cadastral data), including all the voivodeships. The input data was in the form of geospatial data in shapefile format."},"_id":"LPIS_(Poland)","title":"Polish Land Parcel Information System (LPIS) dataset @PSNC"},{"description":{"en":"Data source of this content; PDBj (Protein Data Bank Japan)<br>\r\nGo to <a href=\"http://www.pdbj.org/index.html\">source site</a>.\r\n"},"_id":"biolod-pdb","title":"BioLOD for Protein Data Bank Japan"},{"description":{"en":"Heritage Informatics"},"_id":"Kumar,_Gireesh__and_Singh,_Anand","title":"Informatics Studies"},{"description":{"en":"Maritime piracy event descriptions from the International Chamber of Commerce International Maritime Bureau\r\n\r\n## Accessing the dataset\r\n\r\n* SPARQL query form\r\n* No dereferenceable URIs for the RDF data"},"_id":"linked-open-piracy","title":"Linked Open Piracy"},{"description":{"en":"GenAge is a database of human and model organism genes related to longevity and aging, maintained by the Human Ageing Genomics Resources (HAGR) group. "},"_id":"bio2rdf-genage","title":"Bio2RDF::Genage"},{"description":{"en":"A corpus resulting from an object arrangement game using a computer-mediated setting."},"_id":"chat-game-corpus","title":"Chat Game corpus"},{"description":{"en":"StatusNet instance hosted at http://spraci.org"},"_id":"statusnet-spraci-org","title":"statusnet-spraci-org"},{"description":{"en":"HomoloGene is a system for automated detection of homologs among the annotated genes of several completely sequenced eukaryotic genomes."},"_id":"bio2rdf-homologene","title":"Bio2RDF::Homologene"},{"description":{"en":"The LOD dataset of ASCDC_Database of the Qing Secret Societies (Sect of the Shifokou Wangs' Clan) is created by the Academia Sinica Center for Digital Cultures (ASCDC) and based on the research project of the “The Secret Societies in Qing Dynasty” (清代檔案與數位人文研究──以官方查辦民間教門為核心). From 2022 to 2025, this project is funded by the National Science and Technology Council in Taiwan (NSTC 112-2423-H-001-002). The dataset is established and maintained by ASCDC at Academia Sinica in Taipei, Taiwan (ROC). The data includes the archives, persons, religious sects, sect events and place names related to the Chinese secret societies in the Jiaqing era (1796-1820), which can be served as authority files or controlled vocabularies for the study of the Chinese history. In particular, the data triples of the sect event of the Shifokou Wang’s Clan (石佛口王姓教案) will be focused in this dataset. Containing 8,810 data triples, the textual content within the LOD dataset is licensed under the Creative Commons Attribution (CC BY)."},"_id":"ASCDC-Qing-Secret-Societies","title":"Dataset of the Qing Secret Societies (Sect of the Shifokou Wangs' Clan)"},{"description":{"en":"Swedish FrameNet (SweFN), a lexical-semantic in RDF. "},"_id":"swefn-rdf","title":"SweFN-RDF"},{"description":{"en":"The Terminology of the European Migration Network in RDF"},"_id":"emn","title":"EMN"},{"description":{"en":"## About\r\n\r\n> One web page for every book ever published. It's a lofty, but achievable, goal.\r\n\r\n> To build it, we need hundreds of millions of book records, a brand new database infrastructure for handling huge amounts of dynamic information, a wiki interface, multi-language support, and people who are willing to contribute their time, effort, and book data.\r\n\r\n> To date, we have gathered about 30 million records (13.4 million are available through the site now), and more are on the way. We have built the database infrastructure and the wiki interface, and you can search millions of book records, narrow results by facet, and search across the full text of 230,000 scanned books. \r\n\r\n## Openness\r\n\r\nAll Open Library contributions are in the public domain. See <http://openlibrary.org/about/license>.\r\n\r\n## Data\r\n\r\n * Dump of author records: <http://openlibrary.org/data/ol_dump_authors_latest.txt.gz>\r\n\r\n * Dump of edition records: <http://openlibrary.org/data/ol_dump_editions_latest.txt.gz>\r\n\r\n * API documentation: <http://openlibrary.org/developers/api>\r\n\r\n## Issues\r\n\r\nThe content negotiation on entity URIs is buggy. Asking for only application/rdf xml works, but asking for multiple types doesn't.\r\n\r\nThe triple count is a wild guess based on the numbers of 13 million records and 30 triples per record."},"_id":"open-library","title":"Open Library"},{"description":{"en":"Ontology of Beef created within ProOptiBeef project \r\n([www.prooptibeef.pl](http://www.prooptibeef.pl/ \"ProOptiBeef\")).\r\n\r\nLinks with LOD datasets (27.06.2013): \r\n\r\n- 797 links with AGROVOC, \r\n- 211 links with GEMET, \r\n- 546 links with NAL and \r\n- 119 links with STW.\r\n"},"_id":"ontobeef-domain","title":"OntoBeef Domain"},{"description":{"en":"The Albanet wordnet as published as part of the Open Multilingual WordNet. The goal of Open Multilingual WordNet is to make it easy to use wordnets in multiple languages. The individual wordnets have been made by many different projects and vary greatly in size and accuracy. We have (i) extracted and normalized the data, (ii) linked it to Princeton WordNet 3.0 and (iii) put it in one place. The Open Multilingual Wordnet and its components are open: they can be freely used, modified, and shared by anyone for any purpose. "},"_id":"omwn-als","title":"Albanet WordNet (as part of Open Multilingual WordNet)"},{"description":{"en":"The Renewable Energy Federation maintains an online database of renewable energy generators located in the United Kingdom. The dataset consists of over 5500 generators around the UK, including both on-shore and off-shore installations. The generators have all been categorized based on type and many of them include details of their address, geographic location, and details of the organizations that developed, operate, or own the site. Some wind turbine installations also include details on the number, size and type of turbines.\r\n\r\n*Note* this dataset is no longer updated, it was taken off-line during the shutdown of Kasabi. A dump of the dataset has been [uploaded to the Internet Archive](http://archive.org/details/kasabi)"},"_id":"renewable_energy_generators","title":"Renewable Energy Generators"},{"description":{"en":"StatusNet instance hosted at http://soucy.cc"},"_id":"statusnet-soucy-cc","title":"statusnet-soucy-cc"},{"description":{"en":"From the web site: Version 4 of the MULTEXT-East resources, a multilingual dataset for language engineering research and development. This dataset contains, for Bulgarian, Croatian, Czech, English, Estonian, Hungarian, Lithuanian, Macedonian, Persian, Polish, Resian, Romanian, Russian, Serbian, Slovak, Slovene, Ukrainian, some or all of the following resources:\r\n\r\n"},"_id":"multext-east","title":"Multext-East"},{"description":{"en":"This Linked Hypernym dataset attaches entity articles in English, German and Dutch Wikipedia with a DBpedia resource or a DBpedia ontology concept as their type. The types are hypernyms mined from articles' free text using hand-crafted lexicosyntactic patterns.\r\n\r\nThe dataset contains 2.8 million entity-type assignments, out of which nearly 2.5 million are novel with respect to DBpedia and 2 million w.r.t. Yago 2s and DBpedia."},"_id":"linked-hypernyms","title":"linked hypernyms"},{"description":{"en":null},"_id":"opendatascotland-simd-geographic-access-rank","title":"opendatascotland-simd-geographic-access-rank"},{"description":{"en":"assigns a grade to a tumor starting from the 3 criteria of the NGS"},"_id":"bioportal-bcgo","title":"Breast Cancer Grading Ontology"},{"description":{"en":"Pakistan Stock Market Data"},"_id":"http:www.atif-sajjad.comSemster-Project#","title":"Pakistan Stock Market Data"},{"description":{"en":"ProductDB is the Linked Data view of ProductWiki a resource for free, unbiased product reports written by a dedicated community. ProductDB extracts structured information from ProductWiki and makes this information freely available on the Web."},"_id":"productdb","title":"ProductDB"},{"description":{"en":"SemanticTweet is a simple web service that generates a FOAF RDF document for you from your list of Twitter friends and followers (or more specifically, from the 100 most recent of each of your friends and followers). It does this using the Twitter REST API. This service uses public Twitter data only, and so doesn?t need your Twitter username or password."},"_id":"semantictweet","title":"SemanticTweet"},{"description":{"en":"FAST (Faceted Application of Subject Terminology) is an enumerative, faceted subject heading schema derived from the Library of Congress Subject Headings (LCSH). Its purpose is to be easier to understand, control, apply, and use than LCSH. Any valid set of LC subject headings can be converted to FAST headings.\r\n\r\nFAST contains 1.6M authority records.\r\n\r\nThe triple count (30M) is a rough estimate based on the number of authority records. The LCSH link count is based on the observation that many but not all of the authority records have LCSH links. The Geonames link count is based on [this account](http://www.oclc.org/nextspace/018/research.htm) that states 100k total geographic entities with 60% matched to Geonames."},"_id":"oclc-fast","title":"Faceted Application of Subject Terminology"},{"description":{"en":"The Romanian wordnet as published as part of the Open Multilingual WordNet. The goal of Open Multilingual WordNet is to make it easy to use wordnets in multiple languages. The individual wordnets have been made by many different projects and vary greatly in size and accuracy. We have (i) extracted and normalized the data, (ii) linked it to Princeton WordNet 3.0 and (iii) put it in one place. The Open Multilingual Wordnet and its components are open: they can be freely used, modified, and shared by anyone for any purpose. "},"_id":"omwn-ron","title":"Romanian WordNet (as part of Open Multilingual WordNet)"},{"description":{"en":"English Heritage Periods List"},"_id":"english-heritage-periods-list","title":"English Heritage Periods List"},{"description":{"en":"Latin Vallex 2.0 is a valency lexicon for Latin built according to the same style of the VALLEX lexicon for Czech.\nLatin Vallex 2.0 works in connection with the Latin WordNet (LWN). Each Synset in LWN is paired with a LV Valency Frame. The two resources are linked together to the LiLa Lemma Bank."},"_id":"Latin_Vallex2.0","title":"Latin Vallex 2.0 in LiLa"},{"description":{"en":"RTASC is a Romanian bi-modal corpus (text and speech) of read sentences, containing recordings from 6 speakers (3 males and 3 females). It was designed to serve the need of training the robot Pepper to interact with customers in the laptop department of a computer store."},"_id":"racai-llod-rtasc","title":"ROBIN Technical Acquisition Speech Corpus"},{"description":{"en":"The GeoNames Ontology makes it possible to add geospatial semantic information to the Word Wide Web. All over 6.2 million geonames toponyms now have a unique URL with a corresponding RDF web service. Other services describe the relation between toponyms.\r\n\r\nSPARQL endpoints for this data are made available by third parties. [Geonames at Kasabi](http://kasabi.com/dataset/geonames/), and [FactForge](http://factforge.net/sparql) has it loaded as well."},"_id":"geonames-semantic-web","title":"GeoNames Semantic Web"},{"description":{"en":"Has RDF descriptions of featured artists and tracks, derived from package:musicbrainz"},"_id":"surge-radio","title":"Surge Radio"},{"description":{"en":"Universal Dependencies is a project that seeks to develop cross-linguistically consistent treebank annotation for many languages, with the goal of facilitating multilingual parser development, cross-lingual learning, and parsing research from a language typology perspective. The annotation scheme is based on (universal) Stanford dependencies (de Marneffe et al., 2006, 2008, 2014), Google universal part-of-speech tags (Petrov et al., 2012), and the Interset interlingua for morphosyntactic tagsets (Zeman, 2008).\r\n\r\nThis dataset refers to UD's Japanese-KTC treebank.\r\n"},"_id":"universal-dependencies-treebank-japanese-ktc","title":"Universal Dependencies Treebank Japanese-KTC"},{"description":{"en":"This version is the first update to Normative RIM, Release 3. It is based on changes approved in Harmonization in November 2010. This release of the RIM is bound to HL7 Abstract Data Types Release 2."},"_id":"bioportal-hl7","title":"Health Level Seven"},{"description":{"en":"Inspections of the Supreme Audit Office of the Czech Republic"},"_id":"cz-sao-check-actions","title":"Inspections of the Supreme Audit Office of the Czech Republic"},{"description":{"en":"StatusNet instance hosted at http://scoffoni.net"},"_id":"statusnet-scoffoni-net","title":"statusnet-scoffoni-net"},{"description":{"en":""},"_id":"rkb-explorer-rae2001","title":"Research Assessment Exercise 2001 (RKBExplorer)"},{"description":{"en":"This is the dataset corresponding to the ItalWordNet as created at the Institute of Computational Linguistic \"A. Zampolli\" in Pisa.\r\nThe resource contains single instances such as single synset and single word/wordsense and collective files to list all synsets and word(sense)s.\r\n\r\nThe resource has been created according to the WN2.0 specification, http://www.w3.org/2006/03/wn/wn20/"},"_id":"iwn","title":"IWN"},{"description":{"en":"All Eurostat statistics, converted to RDF and re-published using [Linked Data principles](http://linkeddata.org/). This service is operated by [DERI](http://www.deri.ie/). For the license, see [Eurostat's](http://epp.eurostat.ec.europa.eu/portal/page/portal/about_eurostat/policies/copyright_licence_policy) copyright policy."},"_id":"the-eurostat-linked-data","title":"The Eurostat Linked Data"},{"description":{"en":"THis ontology allows the user to be able to link Football (Soccer for my American people) matches with players who played in the match, From which team the players are. Also allows to query/store player statistics and team statistics.\nKindly download the OWL/RDF file provided and load it onto tools like protege or GraphDB or AllegroGraph (depending on your use case). We have tested the ontology on the tools mentioned. It can be visualized and queried easily."},"_id":"KG:Course_Submission","title":"EU Soccer League"},{"description":{"en":"The OGOLOD system, an extension of the OGO Knowledge Base, publishes ortholog/diseases information using Linked Data. This gives the scientists the ability to query the structured information in connection with other Linked\r\nData and to discover new information in the cloud, related to orthologs and human diseases."},"_id":"ogolod","title":"Orthology and Diseases Information - OGO"},{"description":{"en":"Veterans Health Administration National Drug File"},"_id":"bioportal-vandf","title":"VANDF"},{"description":{"en":"Computer Retrieval of Information on Scientific Projects (CRISP)"},"_id":"bioportal-csp","title":"CRISP Thesaurus, 2006"},{"description":{"en":"Government"},"_id":"The_Respublic_of_Uzbekistan","title":"Open data of Uzbekistan"},{"description":{"en":"Universal Dependencies is a project that seeks to develop cross-linguistically consistent treebank annotation for many languages, with the goal of facilitating multilingual parser development, cross-lingual learning, and parsing research from a language typology perspective. The annotation scheme is based on (universal) Stanford dependencies (de Marneffe et al., 2006, 2008, 2014), Google universal part-of-speech tags (Petrov et al., 2012), and the Interset interlingua for morphosyntactic tagsets (Zeman, 2008).\r\n\r\nThis dataset refers to UD's Hindi treebank.\r\n"},"_id":"universal-dependencies-treebank-hindi","title":"Universal Dependencies Treebank Hindi"},{"description":{"en":"Coding Symbols for Thesaurus of Adverse Reaction Terms (COSTART). 5th ed. Rockville (MD). COSTART is used for coding, filing, and retrieving post-marketing adverse drug and biologic experience reports. COSTART is organized in body system and pathophysiology hierarchies, as well as a separate fetal/neonatal category of less than 20 terms.\n\nCOSTART has been superseded by the Medical Dictionary for Regulatory Activities (MedDRA) Terminology. For more information about MedDRA in the Metathesaurus, see the MedDRA source synopsis.\n\nCOSTART was last updated in the Metathesaurus in 1999."},"_id":"bioportal-cst","title":"COSTART"},{"description":{"en":"The Portfolio Management Application (PMA) is a system for tracking grants and producing reports - Users can access grant data through a query interface and a variety of pre-defined forms and reports"},"_id":"bioportal-pma","title":"PMA 2010"},{"description":{"en":null},"_id":"opendatascotland-simd-housing-rank","title":"opendatascotland-simd-housing-rank"},{"description":{"en":"The purpose of the OMIT ontology is to facilitate the identification and characterization of important roles microRNAs (miRNAs) played in human cancer. To be more specific, it aims to assist cancer biologists in unraveling important roles of miRNAs in human cancer."},"_id":"bioportal-omit","title":"Ontology for MicroRNA Target Prediction"},{"description":{"en":""},"_id":"rkb-explorer-citeseer","title":"CiteSeer (Research Index) (RKBExplorer)"},{"description":{"en":"The Semantic Quran dataset is a multilingual RDF representation of translations of the Quran. The dataset was created by integrating data from two different semi-structured sources. The dataset were aligned to an ontology designed to represent multilingual data from sources with a hierarchical structure. The resulting RDF data encompasses 43 different languages which belong to the most under represented languages in Linked Data, including Arabic, Amharic and Amazigh. We designed the dataset to be easily usable in natural-language processing applications with the goal of facilitating the development of knowledge extraction tools for these languages. In particular, the Semantic Quran is compatible with the Natural-Language Interchange Format and contains explicit morpho-syntactic information on the utilized terms."},"_id":"semanticquran","title":"Semantic Quran"},{"description":{"en":"BabelNet is both a multilingual encyclopedic dictionary, with lexicographic and encyclopedic coverage of terms, and an ontology which connects concepts and named entities in a very large network of semantic relations, made up of 13,801,844 millions of nodes, called Babel synsets. Each Babel synset represents a given meaning and contains all the synonyms which in different languages express that meaning. The BabelNet resource is made available under the Creative Commons Attribution-NonCommercial-ShareAlike 3.0 Unported license. The different resources from which BabelNet originates are made available under different licenses, as follows: WordNet: http://wordnet.princeton.edu/wordnet/license/, Wikipedia: Creative Commons Attribution-ShareAlike 3.0 Unported license, Wiktionary: Creative Commons Attribution-ShareAlike 3.0 Unported license, OmegaWiki: Creative Commons Attribution 2.5 Generic license or higher, ItalWordNet: Open Data Commons Attribution 1.0 License, and Open Multilingual WordNet: different licenses according to the language, as indicated at http://compling.hss.ntu.edu.sg/omw/. When applicable, specific license rights are specified through the property dcterms:license. Please make sure of using data in compliance with their respective licenses."},"_id":"babelnet","title":"BabelNet"},{"description":{"en":"Knowledge representation related to computer-based decision support in rehabilitation; concepts and relationships in the rehabilitation domain, integrating clinical practice, the ICD (specifically its 11th revision), the clinical investigator record ontology, the ICF and SNOMED CT."},"_id":"bioportal-pmr","title":"Physical Medicine and Rehabilitation"},{"description":{"en":"ACORN-SAT, the Australian Climate Observations Reference Network - Surface Air Temperature data set, is a homogenized daily maximum and minimum temperature data set containing data from 112 locations across Australia extending from 1910 to the present."},"_id":"acorn-sat","title":"Australian Climate Observations Reference Network - Surface Air Temperature Dataset"},{"description":{"en":"### About\r\n\r\nData exposed: Metadata (papers, presentations, people) for several semantic web related conferences and workshops, including the most recent ISWC, ESWC and WWW events.\r\n\r\nNotes: The dump locations can be found in the site's semantic sitemap\r\n\r\n### Openness\r\n\r\nNo information found."},"_id":"semantic-web-dog-food","title":"Semantic Web Dog Food Corpus"},{"description":{"en":"Test Präsi"},"_id":"Test_","title":"Test"},{"description":{"en":"Sample linked data converted from Union Catalog of Digital Archives Taiwan."},"_id":"iislod-test","title":"Test Site, LOD Lab 317"},{"description":{"en":"First not-normalized set of language resources from LREC2014, including workshops"},"_id":"lremap-ri","title":"First not-normalized set of language resources from LREC2014"},{"description":{"en":"ChEMBL is a database of bioactive drug-like small molecules, it contains 2-D structures, calculated properties (e.g. logP, Molecular Weight, Lipinski Parameters, etc.) and abstracted bioactivities (e.g. binding constants, pharmacology and ADMET data). The data is abstracted and curated from the primary scientific literature, and cover a significant fraction of the SAR and discovery of modern drugs.\r\n\r\nIt is available in RDF form through EMBL-EBI's RDF Platform."},"_id":"chembl-rdf","title":"ChEMBL RDF"},{"description":{"en":""},"_id":"czech_addresses","title":"Czech addresses – Adresy v České republice"},{"description":{"en":"StatusNet instance hosted at http://status.net"},"_id":"statusnet-status-net","title":"statusnet-status-net"},{"description":{"en":"Universal Dependencies is a project that seeks to develop cross-linguistically consistent treebank annotation for many languages, with the goal of facilitating multilingual parser development, cross-lingual learning, and parsing research from a language typology perspective. The annotation scheme is based on (universal) Stanford dependencies (de Marneffe et al., 2006, 2008, 2014), Google universal part-of-speech tags (Petrov et al., 2012), and the Interset interlingua for morphosyntactic tagsets (Zeman, 2008).\r\n\r\nThis dataset refers to UD's Portuguese-BR treebank.\r\n"},"_id":"universal-dependencies-treebank-portuguese-br","title":"Universal Dependencies Treebank Portuguese-BR"},{"description":{"en":"In order to solve the theoretical problems of spatial surface modeling such as error, multi-scale, nonlinearity, operation speed and big data processing, Yue Tianxiang's team has organically combined surface theory, system theory, optimization cybernetics and modern computer technology. A high-precision surface modeling (HASM) method integrating extrinsic data (such as satellite remote sensing information) and intrinsic data (such as ground observation information) is created, and then the basic theorems of Earth surface system modeling and ecological environment surface modeling are refined and their inferences and algorithms concerning spatial interpolation, scale transformation, data fusion and model-data assimilation are derived."},"_id":"HASM","title":"High Accuracy Surface Modeling"},{"description":{"en":"The Teleost taxonomy ontology is being used to facilitate annotation of phenotypes, particularly for taxa that are not covered by NCBI because no submissions of molecular data have been made. Taxonomy ontologies can also be valuable in annotating legacy data, where authors make phenotype or ecological assertions (e.g., host-parasite associations) that refer to groups that are reorganized or no longer recognized. The taxonomy ontology serves as the source of taxa for our project's use for identifying evolutionary changes that match the phenotype of a zebrafish mutant."},"_id":"bioportal-tto","title":"Teleost taxonomy"},{"description":{"en":"This dataset aims at publishing the contents of Hungarian archives as Linked Open Data based on the National Digital Data Archive of Hungary. The dataset contains information about books, movies, articles published in Hungary and some of its resources are linked to other datasets (e.g. DBpedia, VIAF, NSZL)."},"_id":"sztaki-lod","title":"National Digital Data Archive of Hungary (partial)"},{"description":{"en":"The Swift Vocabulary is an SKOS-based vocabulary about the Swift programming language."},"_id":"Swift","title":"Swift Vocabulary"},{"description":{"en":"curriculum vitae"},"_id":"Nordine_Bittich","title":"Curriculum Vitae"},{"description":{"en":"StatusNet instance hosted at http://m-kuttner.com"},"_id":"statusnet-m-kuttner-com","title":"statusnet-m-kuttner-com"},{"description":{"en":"The first dataset submitted by the philosopher, writer and inventor Luigi Usai."},"_id":"https:www.luigiusai.itlinked-dataluigiusai","title":"Writer Luigi Usai"},{"description":{"en":"Ontology Based Data Access and Integration for Improving the Effectiveness of Farming in Nepal"},"_id":"agrinepaldata","title":"AgriNepalData"},{"description":{"en":"The LOD dataset of ASCDC_Database of the Han Wooden Slips Character Dictionary (WCD) was created by the Academia Sinica Center for Digital Cultures (ASCDC) and based on the metadata from the “Han Wooden Slips Character Dictionary” (簡牘字典―史語所藏居延漢簡資料庫, https://wcd-ihp.ascdc.sinica.edu.tw/woodslip/), which was established and maintained by the Institute of History and Philology, Academia Sinica, Taipei, Taiwan (ROC). The data includes information on the archaeological objects of Han Wooden Slips, which were created in the Han dynasty (206 B.C.-220 A.D.) and excavated in the early 1930s during the Sino-Swedish Scientific Expedition. The data can serve as a profound source for the digital study of ancient Chinese history. Containing 207 data records and 143,264 triples, the textual content within the LOD dataset is licensed under the Creative Commons Attribution (CC 0), while the digitized images are under CC-BY-NC-ND 3.0."},"_id":"ASCDC-IHP-WCD","title":"Database of the Han Wooden Slips Character Dictionary (WCD)"},{"description":{"en":"A structured controlled vocabulary of the anatomy of mosquitoes."},"_id":"bioportal-tgma","title":"Mosquito gross anatomy"},{"description":{"en":"WormBase is an online bioinformatics database of the biology and genome of the model organism Caenorhabditis elegans and related nematodes. It is used by the C. elegans research community both as an information resource and as a mode to publish and distribute their results."},"_id":"bio2rdf-wormbase","title":"Bio2RDF::Wormbase"},{"description":{"en":"The Pharsalia is an epic poem in 10 books written by Lucan in 1st century AD. It portrays the civil war between Caesar and the Senate's forces, led by Pompey. The digital text of the 10 books of the Pharsalia by Lucan is taken from Perseus collection. The original text was lemmatized and PoS tagged with the UDPipe tool, using an in-house built trained model based on different UD Latin treebanks. The output of UDPipe was then checked manually at the CIRCSE Research Centre of the Università Cattolica del Sacro Cuore, Milan, Italy. The linking of the text to the Lemma Bank of the LiLa Knowledge Base was also performed at CIRCSE."},"_id":"LucaniPharsalia","title":"Lucani Pharsalia in LiLa"},{"description":{"en":"Joint Union Catalogue of 200 academic libraries in the german states of Bavaria, Berlin and Brandenburg. The data contains descriptions of 28Mio. titles and 69Mio. holdings available in these libraries. The available data dump in Turtle is approx. 9GB. "},"_id":"b3kat","title":"B3Kat - Library Union Catalogues of Bavaria, Berlin and Brandenburg"},{"description":{"en":"BibSonomy is a social bookmarking system. The dataset contains user-generated metadata about web pages and scholarly publications, specifically, tags, that is, freely chosen keywords. BibSonomy provides metadata to web pages using owl:sameAs links as well links to DBLP."},"_id":"BibSonomy","title":"BibSonomy - The blue social bookmark and publication sharing system."},{"description":{"en":"Traditional Korean medicine (Hangul: 한의학, Hanja: 韓醫學) developed with the influence of other traditional medicine. Its techniques in treatment and diagnosis are both similar and unique to other traditional medicine. (Visit Wikipedia, http://en.wikipedia.org/wiki/Traditional_Korean_medicine.)\r\n\r\n\"Ontology-based Traditional Korean Medicine Knowledge Framework\" project is systematization of core knowledge of TKM and enhancing the applicability of the knowledge. This project is supported by Korean government and Korea Institute of Oriental Medicine is pursuing this project since 2009.\r\n\r\nTo achieve this, our group is constructing ontology for TKM, in particular, patient status and medicinal treatment for them. The center is conceptualizing disease, pattern, symptom and medical test result to define patient status and medicinal materials, formulas, acupuncture and moxibustion for treatment method.\r\n\r\nFor information about terms of traditional medicine in the area of East Asia, read this WHO standard, http://tkm.kiom.re.kr/ontology/doc/WHO-IST.pdf. This paper can be found at http://www.wpro.who.int/publications/PUB_9789290612487.htm. (Last check: Dec. 17th, 2009)\r\n\r\nAs a first step for construction, the center is focusing on medicinal materials including biological materials (plants and animals), minerals (stone and metal resources)."},"_id":"traditional-korean-medicine","title":"Traditional Korean Medicine Ontology"},{"description":{"en":"A sample dataset of descriptions of archive collections held on the Archives Hub, a UK aggregator, and output as Linked Data. \r\n\r\nThe Hub Linked Data provides a perspective on the people, organisations, subjects and places connected with the archives that are described. External links are provided to other datasets, such as the Virtual International Authority File and Library of Congress Subject Headings.\r\n\r\nA stylesheet is available to convert EAD data (XML for archives) into RDF XML. \r\n\r\nhttp://data.archiveshub.ac.uk/"},"_id":"archiveshub-linkeddata","title":"Archives Hub Linked Data"},{"description":{"en":"This is the official list of registered political parties sourced from the Electoral Commission's website. The Resource URI refers to the linked-data resource URI that should be used to identify parties in a linked-data context, such as when making election results available as data.\r\n\r\nOpenness: Open data logo but no explicit license mentioned."},"_id":"open-election-data-project","title":"Open Election Data Project"},{"description":{"en":"Ontology for livestock reproductive traits and phenotypes"},"_id":"bioportal-repo","title":"Reproductive trait and phenotype ontology"},{"description":{"en":"Salzburgerland dataset for English resources, built with WordLift from the website https://www.salzburgerland.com/en/"},"_id":"salzburgerland-com-en","title":"Salzburgerland EN"},{"description":{"en":"The International Classification of Functioning, Disability and Health, known more commonly as ICF, is a classification of health and health-related domains. These domains are classified from body, individual and societal perspectives by means of two lists: a list of body functions and structure, and a list of domains of activity and participation. Since an individual's functioning and disability occurs in a context, the ICF also includes a list of environmental factors.\n<br><br>\nSource: <a href=\"http://www.who.int/classifications/icf/en/\">http://www.who.int/classifications/icf/en/</a>"},"_id":"bioportal-icf_x1","title":"International Classification of Functioning, Disability and Health (ICF)"},{"description":{"en":"The central aim of the RNA Ontology Consortium (ROC) is to develop an ontology to capture all aspects of RNA - from primary sequence to alignments, secondary and tertiary structure from base pairing and base stacking to sophisticated motifs."},"_id":"bioportal-rnao","title":"RNA ontology"},{"description":{"en":"Universal Dependencies is a project that seeks to develop cross-linguistically consistent treebank annotation for many languages, with the goal of facilitating multilingual parser development, cross-lingual learning, and parsing research from a language typology perspective. The annotation scheme is based on (universal) Stanford dependencies (de Marneffe et al., 2006, 2008, 2014), Google universal part-of-speech tags (Petrov et al., 2012), and the Interset interlingua for morphosyntactic tagsets (Zeman, 2008).\r\n\r\nThis dataset refers to UD's Turkish treebank.\r\n"},"_id":"universal-dependencies-treebank-turkish","title":"Universal Dependencies Treebank Turkish"},{"description":{"en":"The ontology represents CTX phenotypes, genetic variants, and bidirectional relationships between them though a patient model. The CTX ontology was build reusing the Human Phenotype Ontology (HPO) and the Snomed ct ontologies. \nThree groups of SQWRL queries were designed to query phenotype-genotype bidirectional relationships."},"_id":"bioportal-ctx","title":"Cerebrotendinous xanthomatosis"},{"description":{"en":"FRB data and metadata"},"_id":"frb-linked-data","title":"Federal Reserve Board (FRB) Linked Data"},{"description":{"en":""},"_id":"rkb-explorer-southampton","title":"School of Electronics and Computer Science, University of Southampton (RKBExplorer)"},{"description":{"en":"Online Mendelian Inheritance in Man, OMIM (TM). McKusick-Nathans Institute for Genetic Medicine, Johns Hopkins University (Baltimore, MD) and National Center for Biotechnology Information, National Library of Medicine"},"_id":"bioportal-omim","title":"Online Mendelian Inheritance in Man"},{"description":{"en":"The Netherlands Institute for Sound and Vision\r\n<http://portal.beeldengeluid.nl/> is the Dutch archive for public broadcast television. They employ the GTAA, which is a Dutch acronym for Common Thesaurus [for] Audiovisual Archives, to index and disclose their\r\naudiovisaul documents.\r\n\r\nThe GTAA closely follows the ISO-2788 standard for\r\nthesaurus structures. The thesaurus consists of several facets for describing TV programs: subjects; people mentioned; named entities (Corporation names, music bands etc); locations; genres; makers and presentators.\r\n\r\nThe GTAA contains approximately 160.000 terms: ~3800 Subjects, ~97.000 Persons, ~27.000 Names, ~14.000 Locations, 113 Genres and ~18.000 Makers, and is continually updated as new concepts emerge on TV.\r\n"},"_id":"gemeenschappelijke-thesaurus-audiovisuele-archieven","title":"Gemeenschappelijke Thesaurus Audiovisuele Archieven ? Common Thesaurus Audiovisual Archives"},{"description":{"en":"Glottolog provides information about descriptive literature for all the world's languages. It also provides a language classification as well as knowledge bases for names, codes, and locations.\r\nThe licence is CC-SA"},"_id":"glottolog","title":"Glottolog"},{"description":{"en":"The \"mEducator - Linked Educational Resources\" exposes linked data about publicly available educational Web resources. A light-weight RDF schema is exploited together with clustering and enrichment techniques to gradually interlink educational resources with entities in established LOD datasets."},"_id":"meducator","title":"mEducator: Linked Educational Resources"},{"description":{"en":"Authority data used in the ([RISM catalogue](https://opac.rism.info \"RISM Opac\"), [dataset description](http://datahub.io/dataset/rism \"Dataset description for RISM Opac\")). It contains information about persons, organisations and literary works. "},"_id":"rism-authorities","title":"RISM Authority data"},{"description":{"en":"LREC2014 and related Workshops"},"_id":"lremap-conf","title":"LREC2014 and related Workshops"},{"description":{"en":"OECD data and metadata for OECD countries and selected non-member economies."},"_id":"oecd-linked-data","title":"Organisation for Economic Co-operation and Development (OECD) Linked Data"},{"description":{"en":"[Magnatune](http://magnatune.com) is an independent music label, allowing people to buy records for as much as they want. This package contains the Magnatune catalog in RDF format.\r\n\r\nThe converted RDF data is available under the same license as the Magnatune data. The links to DBpedia are available as CC-BY-NC-SA.\r\n\r\nThis is a part of package:dbtune."},"_id":"dbtune-magnatune","title":"DBTune.org Magnatune RDF server"},{"description":{"en":"<p>\r\n<a href=\"http://red.gnoss.com/comunidad/Interactivos\">Entornos Interactivos. Arte en los nuevos medios</a>\r\n is a community promoted by Jaime Munárriz Ortiz, Professor and Associate Dean for Research and Graduate School of Fine Arts at the University Complutense of Madrid, for the subject Image Synthesis and Interactive Environments, of the Research Master in Art and Creation. The community works with \r\n<a href=\"http://gnoss.com/\">GNOSS software (RIAM Intelearning Lab)</a>\r\n. RIAM is a company that develops semantic technology for the creation of specialized networks and linked markets. Green Competitiveness offers a selection of 135 resources (November 2012). It includes a facet-based engine search and enriched contexts. Both are developments by GNOSS.\r\n</p>\r\n\r\n<p>\r\n<a href=\"http://red.gnoss.com/comunidad/Interactivos\">Entornos Interactivos. Arte en los nuevos medios</a>\r\n es una comunidad promovida por Jaime Munárriz Ortiz, profesor y Vicedecano de Investigación y Posgrado de la\r\n<a href=\"http://www.bellasartes.ucm.es/\">Facultad de Bellas Artes</a>\r\nde la Universidad Complutense de Madrid, para la asignatura Imagen de Síntesis y Entornos Interactivos, del Máster en Investigación en Arte y Creación. La comunidad trabaja con software de \r\n<a href=\"http://gnoss.com/\">GNOSS software (RIAM Intelearning Lab)</a>\r\n. RIAM es una compañía que desarrolla tecnología semántica para la creación de redes especializadas y mercados enlazados. NextWeb ofrece en este caso una selección de 135 recursos (Noviembre 2012). Incluye un buscador facetado y contextos enriquecidos. Ambos son desarrollos de GNOSS.\r\n</p>"},"_id":"artenuevosmedios-gnoss","title":"Entornos interactivos. Arte en los nuevos medios (GNOSS)"},{"description":{"en":"A Taiwan Linked Data Platform (data.odw.tw) build by the Institute of Information Science, Academia Sinica. The LOD site using CKAN (The Comprehensive Knowledge Archive Network) to curate more than 840,000 semantically enriched catalogue records (CC0 licensed) across multiple subject areas. Two types of linked data resources are generated: one type is simply described by Dublin Core 15 elements (DC Version), and the other type is enriched by W3C recommendations (csvw, dcat, org, prov, skos, time), general upper vocabularies (cc, dc, dct, event, foaf, r4r, and schema.org) as well as domain vocabularies (aat, dwc, geo, gn and txn). Datasets are further linked to external knowledge bases including Wikidata, GeoNames, and Encyclopedia of Life(EOL)."},"_id":"data.odw.tw","title":"Open Data Web"},{"description":{"en":"This dataset contains agriculture related lands (hilucs_code<200) & for main cities in Czech Republic (centers of NUTS3 regions), Poland (agglomeration areas from Urban Atlas) and Spain (agglomeration areas from Urban Atlas)."},"_id":"Urban_Atlas_","title":"Urban Atlas dataset"},{"description":{"en":"BBC Music is a team working in the department of Audio and Music Interactive at the BBC. Responsible for the BBC Music website - the portal site to music content across the BBC website. It is also the location of the BBC's album reviews, covering all major releases in every genre on a monthly basis and written by a wide range of music experts. Contributors include Andrew Mueller, Nick Barraclough, David Quantick, Barney Hoskyns and Paul Lester. Music reviews are edited by former Drowned in Sound and Clash magazine online editor Mike Diver."},"_id":"bbc-music","title":"BBC Music"},{"description":{"en":"The taxonomy of the family <i>Drosophilidae</i> (largely after Baechli) and of other taxa referred to in FlyBase."},"_id":"bioportal-fbsp","title":"Fly taxonomy"},{"description":{"en":"The Princeton wordnet as published as part of the Open Multilingual WordNet. The goal of Open Multilingual WordNet is to make it easy to use wordnets in multiple languages. The individual wordnets have been made by many different projects and vary greatly in size and accuracy. We have (i) extracted and normalized the data, (ii) linked it to Princeton WordNet 3.0 and (iii) put it in one place. The Open Multilingual Wordnet and its components are open: they can be freely used, modified, and shared by anyone for any purpose. "},"_id":"omwn-eng","title":"Princeton WordNet (as part of Open Multilingual WordNet)"},{"description":{"en":"Greek lexical database. Links to package:vu-wordnet and package:w3c-wordnet ."},"_id":"greek-wordnet","title":"Greek Wordnet"},{"description":{"en":"A structured controlled vocabulary of the anatomy of the Hymenoptera (bees, wasps, sawflies and ants)"},"_id":"bioportal-hao","title":"Hymenoptera Anatomy Ontology"},{"description":{"en":null},"_id":"yso-fi-allars","title":"yso-fi-allars"},{"description":{"en":"<h2>My Family Lineage</h2>\r\n<h3>Note: We have added Content Negotiation</h3>\r\n<p>The addition of content negotiation, allows for serving RDF to clients that request RDF and HTML for clients that request html pages.</p> \r\n<p><strong>\"My Family Lineage\"</strong> is a Genealogy Application using MediaWiki and the Semantic MediaWiki Bundle. In addition, we use the Fuseki Triple Store which has a SPARQL query form available at: http://futurewavehosting.com:3030 \r\nwhere one would use the Control Panel and select the dataset my-family-lineage. The website is community driven and through the import of GEDCOM files (Genealogical Data Communication) wiki pages are created, an accompanying RDF file is created and the data is added to the triple store. </p><br />\r\n<p> We use the latest GEDCOM standard version 5.5 which is used by various Genealogy software applications. </p>\r\n\r\n<p>We have a void file available at: http://my-family-lineage.com/void.ttl \r\nwhich provides information about vocabularies used, licensing, example resources, and link sets. </p>\r\n\r\n<p>We collect information about Places that correspond to events in an individual/person's life or in the life of a family. It is here that there are the most triples linking to other data sets that are part of the current LOD Cloud. Nearly 50,000 triples describe Places, of those over 7300 triples are links to external data sets, including dbpedia, geonames, freebase and yago.</p>\r\n\r\n<p>We have included a great deal of information from public genealogy (GEDCOM) files including the genealogy of famous people, e.g. royalty, US Presidents, Authors like Stephen King and more. </p>"},"_id":"my-family-lineage","title":"My Family Lineage"},{"description":{"en":"The Tetherless World Constellation (TWC) at Rensselaer Polytechnic Institute (RPI) maintains Linked Open Government Data (LOGD), an RDF version of the datasets published by package:data-gov and other government-related sources.\r\n\r\nLOGD replaces the old TWC Data-gov Corpus published in May 2010."},"_id":"twc-logd","title":"TWC: Linking Open Government Data"},{"description":{"en":"Yovisto is a video search engine specialized in academic lecture recordings and conference talks. Unlike other video search engines, Yovisto provides a time based video index,\r\nwhich allows to search within the videos? content. Automated analysis techniques such as scene detection\r\nand intelligent character recognition are used for metadata generation. Time dependent collaborative annotation enables the user to annotate tags and comments at any\r\npoint within a video."},"_id":"yovisto","title":"Yovisto - academic video search"},{"description":{"en":"Universal Dependencies is a project that seeks to develop cross-linguistically consistent treebank annotation for many languages, with the goal of facilitating multilingual parser development, cross-lingual learning, and parsing research from a language typology perspective. The annotation scheme is based on (universal) Stanford dependencies (de Marneffe et al., 2006, 2008, 2014), Google universal part-of-speech tags (Petrov et al., 2012), and the Interset interlingua for morphosyntactic tagsets (Zeman, 2008).\r\n\r\nThis dataset refers to UD's Latin-ITTB treebank.\r\n"},"_id":"universal-dependencies-treebank-latin-ittb","title":"Universal Dependencies Treebank Latin-ITTB"},{"description":{"en":"BioModels Database is a data resource that allows biologists to store, search and retrieve published mathematical models of biological interests."},"_id":"bio2rdf-biomodels","title":"Bio2RDF::Biomodels"},{"description":{"en":"A wrapper for the Library of Congress' LCCN Permalink service which models the MARCXML output as linked data in RDF.\r\n\r\n"},"_id":"linkedlccn","title":"LinkedLCCN"},{"description":{"en":null},"_id":"opendatacommunities-homelessness-acceptances-per-1000","title":"opendatacommunities-homelessness-acceptances-per-1000"},{"description":{"en":"The Soil & Water Assessment Tool is a small watershed to river basin-scale model used to simulate the quality and quantity of surface and ground water and predict the environmental impact of land use, land management practices, and climate change. SWAT is widely used in assessing soil erosion prevention and control, non-point source pollution control and regional management in watersheds."},"_id":"SWAT","title":"Soil & Water Assessment Tool"},{"description":{"en":"Linked Structured Product Labels (LinkedSPLs) publishes all sections of FDA-approved prescription and over the counter drug package inserts from DailyMed for use by NLP and Semantic Web researchers. Currently, only data from the product labels of prescription drugs and a subset of over the counter medications is provided. A powerful feature of LinkedSPLs is that all active moieties and product labels are mapped to RxNORM PURLs provided by the NCBO Bioportal SPARQL endpoint. Also, this site's SPL data is updated weekly and all SPLs retain DailyMed versioning data so that researchers can record the provenance of the text and sections they work with. LinkedSPLs is provided as a service as part of the Drug Interaction Knowledge Base (DIKB) project.\r\n\r\nNOTE: This resource shows content present in the Structured Product Labels provided by the National Library of Medicine's (NLM) DailyMed resource. The NLM requests that all users of DailyMed content to provide attribution to the NLM and DailyMed as is requested on the following page http://www.nlm.nih.gov/copyright.html."},"_id":"linked-structured-product-labels","title":"Linked Structured Product Labels"},{"description":{"en":"The ItalWordnet wordnet as published as part of the Open Multilingual WordNet. The goal of Open Multilingual WordNet is to make it easy to use wordnets in multiple languages. The individual wordnets have been made by many different projects and vary greatly in size and accuracy. We have (i) extracted and normalized the data, (ii) linked it to Princeton WordNet 3.0 and (iii) put it in one place. The Open Multilingual Wordnet and its components are open: they can be freely used, modified, and shared by anyone for any purpose. "},"_id":"omwn-iwn","title":"ItalWordnet WordNet (as part of Open Multilingual WordNet)"},{"description":{"en":"Case database of antitrust cases, cartels, mergers, and state aid, maintained by the European Commission. Republished as Linked Data."},"_id":"fu-berlin-ec-competition","title":"European Commission Competition data set (FU Berlin)"},{"description":{"en":"The Statistical classification of products by activity (CPA) is a product scheme classification used to extract statistics. It was a previous attempt to CPV.\r\n\r\nAuthors:\r\n\r\n-Jose María Alvarez Rodríguez & Jose Emilio Labra Gayo\r\n\r\nWESO-University of Oviedo"},"_id":"cpa-2008","title":"CPA 2008"},{"description":{"en":"A demonstration of ontology construction as a general technique for coding ethograms and other descriptions of behavior into machine understandable forms. An ontology for Loggerhead sea turtle (<i>Caretta caretta</i>) nesting behavior, based on the published ethogram of Hailman and Elowson."},"_id":"bioportal-lhn","title":"Loggerhead nesting"},{"description":{"en":"UK Crime statistics per region for the year 2008/09, provided by the UK Home Office."},"_id":"enakting-crime","title":"EnAKTing Crime Dataset"},{"description":{"en":"Muziekweb is the music library of the Netherlands. Musicweb aims to offer music and the information about music accessible to everyone. Muziekweb has since 1961 built a collection of 600,000 CDs, 300,000 LPs and 30,000 music DVDs. The site is a source of information about music that has been released in the Netherlands during the past fifty years, and an ideal place to get to know more music.\n\nOn Muziekweb you will find:\nInformation about pop, classical, jazz and world music. \nLinks to streaming services to fully listen to music. \nObjective and reliable descriptions of albums, artists and music styles. \nCollections of historical value made accessible digitally via the special collections page. \nIn-depth and accessible pieces on numerous musical topics, written by experts. \n\n"},"_id":"muziekweb","title":"Muziekweb"},{"description":{"en":"The newly proposed FLUS model is an integrated model for multi-type land use scenario simulations by coupling human and natural effects. At the same time, the spatial simulation module of the FLUS model was made into GUI software named GeoSOS-FLUS . The GeoSOS-FLUS was developed as an extension of the previous GeoSOS software to facilitate the multiple land use change simulations. The software provides a multiple CA allocation model for simulating land use change and scenario analysis."},"_id":"FLUS","title":"Future land use simulation model"},{"description":{"en":"This dataset includes harmonized data of different kinds concerning the Second World War in Finland, separated in different graphs representing events, actors, places, photographs, and other aspects and documentation of the war. To test and demonstrate its usefulness, this data service is in use in the semantic portal [WarSampo](http://sotasampo.fi/en/) explained in more detail in the [project page](http://seco.cs.aalto.fi/projects/sotasampo)."},"_id":"warsampo","title":"WarSampo"},{"description":{"en":"The Sequence Ontology provides a structured controlled vocabulary for sequence annotation, for the exchange of annotation data and for the description of sequence objects in databases. <a href=\"http://obo.cvs.sourceforge.net/*checkout*/song/ontology/sofa.obo\">SOFA</a> is a minimal version of SO for use in data exchange."},"_id":"bioportal-so_x1","title":"Sequence types and features"},{"description":{"en":"YAGO3 is a huge semantic knowledge base, derived from Wikipedia WordNet and GeoNames. Currently, YAGO3 has knowledge of more than 10 million entities (like persons, organizations, cities, etc.) and contains more than 120 million facts about these entities."},"_id":"yago","title":"YAGO"},{"description":{"en":"U ime Legije"},"_id":"Uros_Legija_Susa","title":"Legija Stranaca"},{"description":{"en":"A compendium of RDF schemas and vocabularies, including various metadata and examples."},"_id":"schemapedia","title":"Schemapedia: RDF schema compendium"},{"description":{"en":"Groundbreaking biomedical research requires access to cutting edge scientific resources; however such resources are often invisible beyond the laboratories or universities where they were developed. eagle-i is a national research resource discovery platform to help biomedical scientists search for and find previously invisible, but highly valuable, resources. \r\nResource descriptions collected at each participating institution are freely available as linked open data."},"_id":"eagle-i-jsu","title":"eagle-i @ Jackson State University"},{"description":{"en":"Enipedia is an active exploration into the applications of wikis and the semantic web for energy and industry issues. Through this we seek to create a collaborative environment for discussion, while also providing the tools that allow for data from different sources to be connected, queried, and visualized from different perspectives. \t"},"_id":"enipedia","title":"Enipedia - Energy Industry Data"},{"description":{"en":"This dataset concerns a collection of 21 antique cars owned by different organizations around the world. It has been used in a proof-of-concept Semantic Web application (demonstrating Web components and JSON-LD data).\nCreated by Markopoulos Athanasios, student of the University of the Aegean, Dept. of Cultural Technology and Communication, 2021 (as part of his graduate thesis)."},"_id":"AntiqueCarsCollection","title":"Antique Cars Collection (Linked Cars)"},{"description":{"en":"ReLoad project will foster experimentation with the technology and methods of linked open data for archival resources and its goal is the creation of a web of linked archival data"},"_id":"reload","title":"Repository for Linked Open Archival Data"},{"description":{"en":"The Greek wordnet as published as part of the Open Multilingual WordNet. The goal of Open Multilingual WordNet is to make it easy to use wordnets in multiple languages. The individual wordnets have been made by many different projects and vary greatly in size and accuracy. We have (i) extracted and normalized the data, (ii) linked it to Princeton WordNet 3.0 and (iii) put it in one place. The Open Multilingual Wordnet and its components are open: they can be freely used, modified, and shared by anyone for any purpose. "},"_id":"omwn-ell","title":"Greek WordNet (as part of Open Multilingual WordNet)"},{"description":{"en":"WordLift dataset for Italian resources, built with WordLift from the website https://wordlift.io/blog/it/\n"},"_id":"wordlift-io-blog-it","title":"WordLift IT"},{"description":{"en":"Linked Stage Graph is a Knowledge Graph using a dataset by the Archive of Baden-Wuerttemberg, Germany. It contains black and white photographs and metadata about the Stuttgart State Theaters from the 1890s to the 1940s. The original EAD-XML files were converted to RDF and named entities were extracted and linked to Wikidata and the German Authority Files (GND)."},"_id":"slod","title":"Linked Stage Graph"},{"description":{"en":"StatusNet instance hosted at http://timttmy.co.uk"},"_id":"statusnet-timttmy-co-uk","title":"statusnet-timttmy-co-uk"},{"description":{"en":"CTD includes manually curated data describing cross-species chemical-gene/protein interactions and chemical- and gene-disease relationships to illuminate molecular mechanisms underlying variable susceptibility and environmentally influenced diseases."},"_id":"bio2rdf-ctd","title":"Bio2RDF::Ctd"},{"description":{"en":"Data on all Debian packages is available as RDF via content negotiation from the Debian QA website. This uses the ADMS.SW standard.\r\n\r\nMore background in [this blog post](http://www-public.telecom-sudparis.eu/~berger_o/weblog/2012/08/29/debian-package-tracking-system-now-produces-rdf-description-of-source-packages/)."},"_id":"debian-package-tracking-system","title":"Debian Package Tracking System"},{"description":{"en":"This dataset contains strictly quality-controlled rich information on events, actors and places related to the First World War. As such, it is meant to be used as a reference dataset to which other datasets (e.g. museum or library collections dealing with WW1 topics) can be linked."},"_id":"ww1lod","title":"World War 1 as Linked Open Data"},{"description":{"en":"UK CO2 Emission data extracted from the spreadsheet 'Local and Regional CO2 Emissions Estimates for 2005-2007', produced by the UK's Department of Energy and Climate Change."},"_id":"enakting-co2emission","title":"EnAKTing CO2 Emission Dataset"},{"description":{"en":"In this collection we publish the Danish agricultural data sets integrated with the central company registry (CVR) data and make it available to the public via SPARQL endpoint. This integration makes it possible to query across this data. The endpoint is hosted on OpenLink Virtuoso. The original open data sets are provided from: [Central Business Registry of Denmark (CVR)](http://cvr.dk/ \"cvr.dk\"), [The Danish Ministry of the Environment](http://gst.dk/ \"gst.dk\"), [The Ministry of Food, Agriculture, and Fisheries of Denmark](http://fvm.dk/ \"fvm.dk\").\r\n"},"_id":"govagribus-denmark","title":"GovAgriBus Denmark"},{"description":{"en":"Himanshu Mahawar is a business magnate, Digital Marketer, and Web Developer. He is the founder, CEO, of Wewhost, Dope Entrepreneurs and Zooxper Media & Marketing."},"_id":"Himanshu_Mahawar","title":"Himanshu Mahawar"},{"description":{"en":"Salzburgerland dataset for Italian resources, built with WordLift from the website https://www.salzburgerland.com/it/"},"_id":"salzburgerland-com-it","title":"Salzburgerland IT"},{"description":{"en":"Currently provides the MARC codes (http://www.loc.gov/standards/valuelist/) for languages, geographic areas, countries and forms of musical composition."},"_id":"marc-codes","title":"MARC Codes List"},{"description":{"en":"This dataset provides data about active ingredients contained in medicinal products available in Czech republic. The dataset was created on the base of information published on the web site of Czech State Institute for Drug Control."},"_id":"cz-sidc-drug-ingredients","title":"Active ingredients of medicinal products available in Czech Republic"},{"description":{"en":"The GNIS contains information about physical and cultural geographic features in the United States and associated areas, both current and historical (not including roads and highways). The database holds the Federally recognized name of each feature and defines the location of the feature by state, county, USGS topographic map, and geographic coordinates."},"_id":"geographic-names-information-system-gnis","title":"Geographic Names Information System (GNIS)"},{"description":{"en":"StatusNet instance hosted at http://thelovebug.org"},"_id":"statusnet-thelovebug-org","title":"statusnet-thelovebug-org"},{"description":{"en":"Dataset about depression characteristics."},"_id":"Psychology","title":"Depression"},{"description":{"en":""},"_id":"rkb-explorer-era","title":"ERA - Australian Research Council publication ratings (RKBExplorer)"},{"description":{"en":"StatusNet instance hosted at http://lebsanft.org"},"_id":"statusnet-lebsanft-org","title":"statusnet-lebsanft-org"},{"description":{"en":"Ontology of Terrorist attack"},"_id":"Terrorist_attack","title":"Ontology"},{"description":{"en":"State funding providers for R&D from http://www.isvav.cz/ ."},"_id":"cz-vavai-funding-providers","title":"State funding providers"},{"description":{"en":"Many vulnerabilities, attacks and controls semantic data of knowledge collected from OWASP, CWE and CAPEC communities.\r\nOur main objective is to improve the security that is managed in organizations, encouraging people to use security knowledge in all the application lifecycle stages and in their daily work. The use of semantic in security data generates security knowledge that improves the security processes and strategies to follow.\r\nFirstly, we must collect the data from the three web-reputed security-specialized communities. Later, we extract the enclosed knowledge following an ontology. Finally, we integrate all resources in this knowledge base."},"_id":"vulnerapedia","title":"vulnerapedia"},{"description":{"en":"Groundbreaking biomedical research requires access to cutting edge scientific resources; however such resources are often invisible beyond the laboratories or universities where they were developed. eagle-i is a national research resource discovery platform to help biomedical scientists search for and find previously invisible, but highly valuable, resources. \r\nResource descriptions collected at each participating institution are freely available as linked open data.\r\nSee: http://www.eagle-i.net/"},"_id":"eagle-i-tuskegee","title":"eagle-i @ Tuskegee University"},{"description":{"en":"This dataset contains land parcel and cadastral data collected from czech republic . the initial data source was in shapefiles which are transformed into linked data."},"_id":"LPIS_Czech_Republic","title":"Land parcel dataset (LPIS) from Czech Republic @PSNC"},{"description":{"en":"Universal Dependencies is a project that seeks to develop cross-linguistically consistent treebank annotation for many languages, with the goal of facilitating multilingual parser development, cross-lingual learning, and parsing research from a language typology perspective. The annotation scheme is based on (universal) Stanford dependencies (de Marneffe et al., 2006, 2008, 2014), Google universal part-of-speech tags (Petrov et al., 2012), and the Interset interlingua for morphosyntactic tagsets (Zeman, 2008).\r\n\r\nThis dataset refers to UD's Estonian treebank.\r\n"},"_id":"universal-dependencies-treebank-estonian","title":"Universal Dependencies Treebank Estonian"},{"description":{"en":"An application ontology for malaria extending the infectious disease ontology (IDO).\nVersion 1.22 reshapes the \"parasite organism\" section."},"_id":"bioportal-idomal","title":"Malaria Ontology"},{"description":{"en":""},"_id":"rkb-explorer-resex","title":"ReSIST Resilience Mechanisms (RKBExplorer.com)"},{"description":{"en":""},"_id":"rkb-explorer-laas","title":"LAAS-CNRS (RKBExplorer)"},{"description":{"en":"Universal Dependencies is a project that seeks to develop cross-linguistically consistent treebank annotation for many languages, with the goal of facilitating multilingual parser development, cross-lingual learning, and parsing research from a language typology perspective. The annotation scheme is based on (universal) Stanford dependencies (de Marneffe et al., 2006, 2008, 2014), Google universal part-of-speech tags (Petrov et al., 2012), and the Interset interlingua for morphosyntactic tagsets (Zeman, 2008).\r\n\r\nThis dataset refers to UD's Swedish_Sign_Language treebank.\r\n"},"_id":"universal-dependencies-treebank-swedish-sign-language","title":"Universal Dependencies Treebank Swedish_Sign_Language"},{"description":{"en":"Human Genome Organisation (HUGO) Gene Nomenclature Committee at the European Bioinformatics Institute approves a gene name and symbol (short-form abbreviation) for each known human gene. All approved symbols are stored in the HGNC database."},"_id":"bioportal-hugo","title":"HUGO"},{"description":{"en":"Universal Dependencies is a project that seeks to develop cross-linguistically consistent treebank annotation for many languages, with the goal of facilitating multilingual parser development, cross-lingual learning, and parsing research from a language typology perspective. The annotation scheme is based on (universal) Stanford dependencies (de Marneffe et al., 2006, 2008, 2014), Google universal part-of-speech tags (Petrov et al., 2012), and the Interset interlingua for morphosyntactic tagsets (Zeman, 2008).\r\n\r\nThis dataset refers to UD's Czech treebank.\r\n"},"_id":"universal-dependencies-treebank-czech","title":"Universal Dependencies Treebank Czech"},{"description":{"en":"International Classification of Diseases, 10th Edition, Clinical Modification, 2011_01"},"_id":"bioportal-icd10cm","title":"ICD10CM"},{"description":{"en":"Groundbreaking biomedical research requires access to cutting edge scientific resources; however such resources are often invisible beyond the laboratories or universities where they were developed. eagle-i is a national research resource discovery platform to help biomedical scientists search for and find previously invisible, but highly valuable, resources. \r\nResource descriptions collected at each participating institution are freely available as linked open data.\r\nSee: http://www.eagle-i.net/"},"_id":"eagle-i-howard","title":"eagle-i @ Howard University"},{"description":{"en":"There are four financial statement tables for every year in the 2013-2018 interval - Rb-27s contains detailed information about revenues, Rb-28s contains expenditures data, Rb-Z contains data about debt and Rb-NDS contains aggregated financial data, like total revenues, total expenditures, change indebt etc."},"_id":"Rb_PL_LGU","title":"Polish LGU financial statements"},{"description":{"en":""},"_id":"rkb-explorer-os","title":"Ordnance Survey (RKBExplorer)"},{"description":{"en":"A lexicon from Pali to English."},"_id":"pali-english-lexicon","title":"Pali English Lexicon"},{"description":{"en":"VIAF (Virtual International Autority File) is an OCLC dataset and service -- built in cooperation with national libraries and other partners -- that virtually combines multiple LAM (Library Archives Museum) name authority files into a single name authority service. Put simply it is a large database of people and organizations that occur in library catalogs.\r\n\r\n\r\nVIAF is a joint project of 20 national libraries, implemented and hosted by OCLC. The project's goal is to lower the cost and increase the utility of library authority files by matching and linking the authority files of national libraries, and then making that information available on the Web.\r\n\r\n### Openness\r\n\r\nThe data is released under Open Data Commons Attribution license. Attribution is requested as follows:\r\n\r\n> Adherence to ODC Attribution instructions for the correct assertion of attribution is encouraged. The preferred form of attribution for VIAF is:\r\n>\r\n> \"This [title of report or article or dataset] contains information from VIAF (Virtual International Authority File) which is made available under the ODC Attribution License.\"\r\n> \r\n> Special cases: In circumstances where providing the full attribution statement above is not technically feasible, the use of canonical VIAF URIs is adequate to satisfy Section 4.3 of the ODC Attribution License.\r\n\r\n#### Older information preserved for archival purposes\r\n\r\nOCLC is currently in discussion with partners about how to license material. [Message from Thom Hickey, OCLC Chief Scientist](http://groups.google.com/group/nyt_linked_open_data/browse_thread/thread/46ea00276e3d5a2e#) on public Google Groups mailing list in January 2010 states:\r\n\r\n> VIAF is a joint project with the contributing institutions and OCLC doesn?t claim any rights to the data beyond what the group has. Unfortunately the group as a whole has problems coming up with a statement of exactly what is permitted. In lieu of that, our position is that the data on the site is freely available for use through the APIs, although if someone wants a copy of the whole thing they would have to apply to the VIAF consortium (they could do that through me or Barbara Tillett at LC). Along those same lines, if someone is going to have substantial activity against VIAF (multiple queries/second) we?d like to know about it ahead of time. \r\n\r\n> Over the next few months we will be working on a better statement of what?s permitted, but our intention is to make the data as freely available as possible (even to the NYT). \r\n\r\n\r\nFurther update from Thom Hickey:\r\n(http://outgoing.typepad.com/outgoing/2011/03/use-of-viaf.html)\r\n\r\n> I responded to a recent blog post on LibraryThing which mentioned restrictions on the use of VIAF and its relationship to the LC authority file.\r\n\r\n> In fact, VIAF is open for use by anyone. Here's what I said about the use of VIAF:\r\n\r\n> VIAF is a project led by LC, the French and German national libraries and OCLC. There are no restrictions on its use. Dumps of the complete file are available, but need the approval of the project leaders.\r\n\r\n> VIAF is not designed to replace the LC/NACO authority file, but rather is built from it and a number of similar files.\r\n\r\n> I hope that is clear. We really do want people to use VIAF!\r\n\r\nGood news, but no explicit license or complete dumps freely available without asking, so not (yet) OKD compliant "},"_id":"viaf","title":"VIAF: The Virtual International Authority File"},{"description":{"en":"[data.europeana.eu](http://data.europeana.eu)</a> started as an experimental pilot in February 2012 with a small number of data providers who committed at an early stage to Europeana's initiative of promoting more open data and new data exchange agreements.\r\n\r\nThe current version of data.europeana.eu contains all the data available on the [Europeana Portal](www.europeana.eu/). Check the description of the data at [http://datahub.io/dataset/europeana-lod](http://datahub.io/dataset/europeana-lod)\r\n\r\nThe first version of data.europeana.eu as used in the W3C Library Linked Data group contained [open](http://creativecommons.org/publicdomain/zero/1.0/) metadata on 2.4 million texts, images, videos and sounds gathered by Europeana. These collections came from 8 direct Europeana providers encompassing over 200 cultural institutions from 15 countries. They cover a great variety of heritage objects, such as this [slovenian version of O Sole Mio](http://data.europeana.eu/item/92056/BD9D5C6C6B02248F187238E9D7CC09EAF17BEA59) from the National Library of Slovenia, or Neil Robson's [memories of the herring business](http://data.europeana.eu/item/09405f/533F9A826CB038D02C05A9814CF97E5D1B49BBEE) from the Tyne and Wear Archives & Museums. \r\nHere is an example URI to get started with:\r\nhttp://data.europeana.eu/item/92037/25F9104787668C4B5148BE8E5AB8DBEF5BE5FE03\r\n\r\nThe project has been described in a [paper](http://dcevents.dublincore.org/index.php/IntConf/dc-2011/paper/view/55) presented at the Dublin Core 2011 conference.\r\n"},"_id":"europeana-lod-v1","title":"Europeana Linked Open Data V1.0"},{"description":{"en":"Phonetics Information Base and Lexicon (PHOIBLE) is a data set of phonological inventories with additional linguistic and non-linguistic information."},"_id":"phoible","title":"Phonetics Information Base and Lexicon (PHOIBLE)"},{"description":{"en":"The Parallel Ice Sheet Model PISM v1.2 is open source and capable of high resolution. It has been widely adopted as a tool for doing science."},"_id":"PISM","title":"Parallel ice sheet model"},{"description":{"en":"Universal Dependencies is a project that seeks to develop cross-linguistically consistent treebank annotation for many languages, with the goal of facilitating multilingual parser development, cross-lingual learning, and parsing research from a language typology perspective. The annotation scheme is based on (universal) Stanford dependencies (de Marneffe et al., 2006, 2008, 2014), Google universal part-of-speech tags (Petrov et al., 2012), and the Interset interlingua for morphosyntactic tagsets (Zeman, 2008).\r\n\r\nThis dataset refers to UD's Ukrainian treebank.\r\n"},"_id":"universal-dependencies-treebank-ukrainian","title":"Universal Dependencies Treebank Ukrainian"},{"description":{"en":"Names, positions, state, party, and congress number of members of US Congress 1774-present.\r\n\r\nScraped from http://bioguide.congress.gov/biosearch/biosearch.asp \r\nby https://scraperwiki.com/scrapers/biographical_directory_usc/#"},"_id":"biographical-directory-of-the-united-states-congress","title":"Biographical Directory of the United States Congress"},{"description":{"en":null},"_id":"opendatacommunities-transparency-impact-indicators-households-in-temporary-accommodation","title":"opendatacommunities-transparency-impact-indicators-households-in-temporary-accommodation"},{"description":{"en":"EI2A emerges as the framework in which the open data and in general the information of the Aragon Government can begin to be automated in a much more profound way. The EI2A has to have a number of technical, organizational and legal elements that need to be developed. EI2A describes basic data from the Aragon Government domain, intended to support data interoperability with the aim of standardizing information and exploiting it in the future. "},"_id":"ei2a","title":"Aragon Interoperable Information Structure EI2A - aragon open data"},{"description":{"en":"AfBo: A world-wide survey of affix borrowing published by the CLLD project"},"_id":"clld-afbo","title":"CLLD-afbo"},{"description":{"en":"LCSH has been actively maintained since 1898 to catalog materials held at the Library of Congress. By virtue of cooperative cataloging other libraries around the United States also use LCSH to provide subject access to their collections. In addition LCSH is used internationally, often in translation."},"_id":"lcsh","title":"Library of Congress Subject Headings"},{"description":{"en":"Groundbreaking biomedical research requires access to cutting edge scientific resources; however such resources are often invisible beyond the laboratories or universities where they were developed. eagle-i is a national research resource discovery platform to help biomedical scientists search for and find previously invisible, but highly valuable, resources. \r\nResource descriptions collected at each participating institution are freely available as linked open data.\r\nSee: http://www.eagle-i.net/"},"_id":"eagle-i-famu","title":"eagle-i @ Florida Agricultural and Mechanical University"},{"description":{"en":"A collection of associations and mapping to DBpedia entities. Currently consisting of 780000 human associations from the Edinburgh Associative Thesaurus (as RDF) and a verified mapping of 790 strong distinct associations (corresponding to ~25000 human associations) to DBpedia entities.\r\n\r\nSee https://w3id.org/associations for more information."},"_id":"associations","title":"associations"},{"description":{"en":"A structured controlled vocabulary of the development of <i>Drosophila melanogaster</i>."},"_id":"bioportal-fbdv","title":"Drosophila development"},{"description":{"en":""},"_id":"rkb-explorer-roma","title":"Università degli studi di Roma \"La Sapienza\" (RKBExplorer)"},{"description":{"en":"Superseded by dataset:eionet-rdf\r\n\r\nVocabularies used by EEA Linked Data: countries, biogeographical regions, DPSIR codes, languages.\r\n"},"_id":"eea-vocabularies","title":"EEA Vocabularies"},{"description":{"en":""},"_id":"rkb-explorer-darmstadt","title":"Technische Universität Darmstadt (RKBExplorer)"},{"description":{"en":"This is a medical corpus annotated morphologically, syntactically and with 4 types of Named Entities from the medical domain: ANAT (body parts), CHEM (Chemicals and Drugs), DISO (disorders), and PROC (procedures)."},"_id":"racai-llod-simonero","title":"SiMoNERo - the Romanian medical treebank"},{"description":{"en":"[Lemon](http://www.lemon-model.net) data extracted from Wiktionary"},"_id":"lemonwiktionary","title":"LemonWiktionary"},{"description":{"en":"RDFohloh is a RDFizer of Ohloh. It provides Linked Data from Ohloh. Using content negotiation, the RDF data can be founded serialized in XHTML+RDFa, RDF/XML and N3, and interlinked with DBpedia concepts.\r\n\r\nPlease, introduce here your project/user information:"},"_id":"rdfohloh","title":"RDFohloh"},{"description":{"en":"EuroVoc is a multilingual, multidisciplinary thesaurus covering the activities of the EU, the European Parliament in particular. It contains terms in 23 EU languages (Bulgarian, Croatian, Czech, Danish, Dutch, English, Estonian, Finnish, French, German, Greek, Hungarian, Italian, Latvian, Lithuanian, Maltese, Polish, Portuguese, Romanian, Slovak, Slovenian, Spanish and Swedish), plus in three languages of countries which are candidates for EU accession: македонски (mk), shqip (sq) and cрпски (sr)."},"_id":"eurovoc","title":"EuroVoc"},{"description":{"en":"Lark is a Lexicon for Adjective Representations over Knowledge bases. It specifies how to transform adjectives in natural language questions to SPARQL query patterns over knowledge bases (currently we focus on DBpedia-202105). For example, the adjective “Chinese” in “Chinese artists” is represented as “?x dbo:nationality dbr:China”, taking the meaning that a Chinese artist should have a fact about his/her nationality with value dbr:China. The adjective “tall” in “tall people” is represented as “?x dbo:height ?y . filter (?y>V)”, taking the meaning that a tall person should have a large value of dbo:height. \nCurrently, Lark contains about 22.4K SPARQL query patterns for 2.7K adjectives over DBpedia, in Ontolex-lemon (https://www.w3.org/2016/05/ontolex/) format. All representations have been manually checked before publication. Besides, an online interface for searching adjective representations in Lark is available at http://ws.nju.edu.cn/lark/interface/ . We will enlarge Lark and consider other knowledge bases such as Freebase and Wikidata in future work."},"_id":"LARK","title":"Lark"},{"description":{"en":"Focus of the Czech Trade Inspection Authority's inspections"},"_id":"cz-ctia-focus","title":"Focus of the Czech Trade Inspection Authority's inspections"},{"description":{"en":"StatusNet instance hosted at http://macno.org"},"_id":"statusnet-macno-org","title":"statusnet-macno-org"},{"description":{"en":"StatusNet instance hosted at http://atari-frosch.de"},"_id":"statusnet-atari-frosch-de","title":"statusnet-atari-frosch-de"},{"description":{"en":""},"_id":"chem2bio2rdf","title":"Chem2Bio2RDF"},{"description":{"en":"Romanian Wordnet in XML/LMF format"},"_id":"racai-llod-romanian-wordnet-lmf","title":"LMF Romanian Wordnet"},{"description":{"en":"Bricklink is an unofficial lego marketplace. Essentially it is the EBay for lego, where you can buy or sell anything to do with Lego. The lego community maintain a number of fantastic resources that catalogue all of the Lego products, often down to the detail of the number, colour and type of each part in a lego set. The catalogue that powers the Bricklink website is available for download and reuse and has been used to create this dataset.\r\n\r\nCurrently the dataset consists of descriptions of over 9000 Lego sets and over 23,000 Lego parts. A number of the lego sets have detailed inventories including number, type and colour of parts. There are also links to sets, instructions and part images.\r\n\r\n*Note* this dataset is no longer updated, it was taken off-line during the shutdown of Kasabi. A dump of the dataset has been [uploaded to the Internet Archive](http://archive.org/details/kasabi)\r\n"},"_id":"bricklink","title":"Bricklink"},{"description":{"en":"Universal Dependencies is a project that seeks to develop cross-linguistically consistent treebank annotation for many languages, with the goal of facilitating multilingual parser development, cross-lingual learning, and parsing research from a language typology perspective. The annotation scheme is based on (universal) Stanford dependencies (de Marneffe et al., 2006, 2008, 2014), Google universal part-of-speech tags (Petrov et al., 2012), and the Interset interlingua for morphosyntactic tagsets (Zeman, 2008).\r\n\r\nThis dataset refers to UD's Ancient_Greek treebank."},"_id":"universal-dependencies-treebank-ancient-greek","title":"Universal Dependencies Treebank Ancient_Greek"},{"description":{"en":"Indian Biodiversity"},"_id":"https:data.bioontology.orgontologiesIBIOsubmissions1downloadapikey=66c2aec1-4044-4900-979d-6f529857554a","title":"Indian Biodiversity"},{"description":{"en":"terrorrist ontology graph"},"_id":"somya_omer","title":"terrorrist ontology"},{"description":{"en":"The TErminology for the Description of DYnamics (TEDDY) project aims to provide an ontology for dynamical behaviours, observable dynamical phenomena, and control elements of bio-models and biological systems in Systems Biology and Synthetic Biology."},"_id":"bioportal-teddy","title":"Terminology for the Description of Dynamics"},{"description":{"en":"LinkedSPL is a Linked Data version of DailyMed"},"_id":"bio2rdf-linkedspl","title":"Bio2RDF::Linkedspl"},{"description":{"en":"Linked Data version of the data supplied from Budapest University of Technology and Economics."},"_id":"rkb-explorer-budapest","title":"Budapest University of Technology and Economics (RKBExplorer)"},{"description":{"en":"Register of Infrastructure (RINF) Knowledge graph. \n It enables the Search of information regarding the characteristics and capabilities of operational points and sections of lines that belong to the static rail network, and the Route Compatibility Check (RCC) where the objective is to check if a certain railway vehicle can travel the route between two operational points. Vehicle type information is originated from the European Registry Authorized Type of Vehicle (ERATV).\n "},"_id":"ERAKG","title":"Railway Infrastructure KG"},{"description":{"en":"Land-use/land-cover information is the basis of global-change research and regional governmental management. Automatic approaches are always required to update land maps for large-scale areas, and change detection techniques are the most important component of land-updating methods. Previous research has confirmed that simple change detection based on Landsat images from two different years with two different phenophases yields unsatisfactory results and may induce many misclassifications and pseudo-change identifications because of the phenological differences between remote sensing images. With the support of the Google Earth Engine (GEE), we propose a land-use/land-cover type discrimination method based on a classification and regression tree (CART), apply change-vector analysis in posterior probability space (CVAPS) and the best histogram maximum entropy method for change detection, and further improve the accuracy of the land-updating results in combination with NDVI timing analysis, which indicates the annual growth of ground vegetation. In the case study, we select western China as the research area and obtain a 2014 land map based on the ESA GlobCover 2009 dataset. The results confirm that the accuracy of the land-renewal results based on the CART-CVAPS-NDVI method reach 78.6-88.2%, which is 4-10% higher than that of the CART-CVPAS method without NDVI timing analysis. The CART-CVAPS-NDVI method has more detailed and accurate resolutions for land-change detection."},"_id":"model1","title":"An automatic approach for land-change detection and land updates based on integrated NDVI timing analysis and the CVAPS method with GEE support"},{"description":{"en":"NCBI Gene provides information for genes from a wide range of species. A record may include nomenclature, Reference Sequences (RefSeqs), maps, pathways, variations, phenotypes, and links to genome-, phenotype-, and locus-specific resources worldwide."},"_id":"bio2rdf-ncbigene","title":"Bio2RDF::Ncbigene"},{"description":{"en":"This is one of several semantic repositories that contains and publishes RDF linked data and co-reference information, forming the underlying distributed storage model behind the RKB Explorer initiative."},"_id":"rkb-explorer-webconf","title":"webconf"},{"description":{"en":"Semantic Universe has begun producing linked data for its Enterprise Data World and Semantic Technology Conferences.\r\n\r\nWith these as starting points, it is easy to start to navigate the datasets or query directly against the appropriate RDF endpoint using SPARQL.\r\n\r\nhttp://semanticuniverse.com/blogs-semantic-universe-linked-data-part-i-rdfification.html"},"_id":"semantic-universe","title":"Semantic Universe Data"},{"description":{"en":"PubMed is a service of the U.S. National Library of Medicine that includes citations from MEDLINE and other life science journals for biomedical articles back to the 1950s."},"_id":"bio2rdf-pubmed","title":"Bio2RDF::Pubmed"},{"description":{"en":"Universal Dependencies is a project that seeks to develop cross-linguistically consistent treebank annotation for many languages, with the goal of facilitating multilingual parser development, cross-lingual learning, and parsing research from a language typology perspective. The annotation scheme is based on (universal) Stanford dependencies (de Marneffe et al., 2006, 2008, 2014), Google universal part-of-speech tags (Petrov et al., 2012), and the Interset interlingua for morphosyntactic tagsets (Zeman, 2008).\r\n\r\nThis dataset refers to UD's Slovenian-SST treebank.\r\n"},"_id":"universal-dependencies-treebank-slovenian-sst","title":"Universal Dependencies Treebank Slovenian-SST"},{"description":{"en":"The Clarity program introduces for the first time in Greece the obligation to publish all the decisions on the Internet, with the exception of decisions that contain sensitive personal data and/or information on national security. It is quite an innovative program, even by European standards, aiming first of all to bring about the maximum publicity of the government policy and administrative action. The use of Internet guarantees wide publicity and access to information, progressively contributing to a culture change in the whole of the Public Administration."},"_id":"diavgeia","title":"Diavgeia"},{"description":{"en":"The dataset is a German-English financial ontology-lexicon with 728 bilingual annotated phrases with Constituent and Part-Of-Speech Tags in <a href=\"http://lexinfo.net/\">lexinfo</a>/<a href=\"http://lemon-model.net/\">lemon</a> format. The ontology lexicon was generated from the rdf version (using xbrl2rdf by Dennis Spohr) of the German <a href=\"http://xbrl.de\">XBRL</a> HGB Taxonomy V4.1 which describes financial concepts used in German reporting. Special thanks to Noëmi Aepli for the part-of-speech annotions. All work was done within the <a href=\"http://monnet-project.eu/\">MONNET (Multilingual Ontologies for Networked Knowledge Project</a>.The ontology-lexicon and its ontology be downloaded here."},"_id":"de-gaap-ontology-lexicon","title":"de-gaap-ontology-lexicon"},{"description":{"en":"ZBW Labs projects exposed as Linked Open Data.\r\n\r\nZBW Labs gives you insight into some of the latest software developments of ZBW Leibniz Information Cenre for Economis. Through this platform, ZBW's department for Innovative Information Systems and Publishing Technologies is constantly presenting applications and (web)services in an experimental or 'beta' state."},"_id":"zbw-labs","title":"ZBW Labs"},{"description":{"en":null},"_id":"opendatacommunities-input-indicators-local-authority-funding-from-government-grant","title":"opendatacommunities-input-indicators-local-authority-funding-from-government-grant"},{"description":{"en":"The LOV dataset contains the description of RDFS vocabularies or OWL ontologies defined for and used by datasets in the Linked Data Cloud. Whenever available each vocabulary includes references to the datasets using it, in particular those listed in CKAN. The descriptions use in particular the VOAF vocabulary to state different ways such vocabularies can rely on, extend, specify, annotate or otherwise link to each other, and reuse a lot of vocabularies it describes, such as Dublin Core, voiD, BIBO, and many more."},"_id":"linked-open-vocabularies-lov","title":"Linked Open Vocabularies (LOV)"},{"description":{"en":"At this moment FOODpedia contains information about only Russian food products and ingredients that was crawled from [GoodsMatrix](http://goodsmatrix.ru/) web site. Also it has links to ingredients from [AGROVOC](http://datahub.io/dataset/agrovoc-skos)."},"_id":"foodpedia","title":"FOODpedia - Linked Data Dataset about Food Products and Ingredients"},{"description":{"en":"Artist/Producer"},"_id":"Inztrow","title":"Inztrow"},{"description":{"en":"The Naturopathy Knowledge Graph (Ontology and Dataset) describes relationships between foods, their nutrients, their color, mood, diseases, diets, and allergies. The Naturopathy Knowledge Graph (Ontology and Dataset) has been extended to describe food as beneficial to boost the immune system. RDF distribution of naturopathy dataset. \nLatest use case is to boost the immune system with food because of the COVID-19 pandemic crisis."},"_id":"Naturopathy","title":"Naturopathy Knowledge Graph (Ontology and Dataset) - RDF distribution of the naturopathy dataset."},{"description":{"en":"The Languages name authority list (NAL) or Common Authority Table (CAT) is a controlled vocabulary listing languages with their authority code and label(s) in the 24 official languages of the EU (when available).\n\nThe language code table is based on ISO 639 standard which is issued in several parts:\n\n ISO 639-1 contains strictly two alphabetic letters, called α-2,\n ISO 639-2/B \"B\" = bibliographic – α-3 is used for bibliographic purpose,\n ISO 639-2/T \"T\" = terminology – α-3 is used for technical purpose,\n ISO 639-3 α-3 covers all the languages and macro-languages of the world; the values are compliant with ISO 639-2/T.\n\nThe Languages NAL is part of the Core Metadata (CM) used in the data exchange between the institutions involved in the legal decision making process and the Publications Office of the EU. The NAL is under governance of the Interinstitutional Metadata Maintenance Committee (IMMC) and maintained by the Publications Office of the EU in its Metadata Registry (MDR)."},"_id":"language-authority-list","title":" Language Name Authority List "},{"description":{"en":"Probando los servicio web de replicación de database"},"_id":"yordhis","title":"test-dapp-2"},{"description":{"en":"A subset of more than 1M tokens of a Latin corpus featuring more than 4000 texts spanning from the 2nd to the 15th Century.\nThe subset is linked to the LiLa Lemma Bank"},"_id":"CompHistSem","title":"Computational Historical Semantics in LiLa"},{"description":{"en":"Ontology that describes the medical information necessary for early detection of the oral cancer reoccurrence extracted from the NeoMark Project."},"_id":"bioportal-neomark","title":"Neomark Oral Cancer Ontology"},{"description":{"en":"spatial stratified heterogeneity is widespread, such as land type, climate zoning, Hu Huanyong line, remote sensing classification, etc., which is the embodiment of world law in geographical space. In order to analyze the spatial differentiation of nature and its driving force, Wang Jinfeng and his team proposed a new statistical method: GeoDetector, which realized the measurement of spatial differentiation degree, significance test and attribution analysis. This method has no linear assumption and has elegant form and clear geological meaning. The axiom is that if X causes Y, then the spatial differentiation of the two variables tends to be coupled. This method has been used by scholars in different fields of natural and social sciences, and many results have been published in international professional and comprehensive journals."},"_id":"GeoDetector","title":"Geographic detector model"},{"description":{"en":"OpenCalais is a web service that extracts semantic metadata from text content, such as web pages."},"_id":"opencalais","title":"OpenCalais"},{"description":{"en":"<p>\r\n<a href=\"http://mapasinteractivos.didactalia.net/\">Mapas interactivos</a> is a collection of interactive flash maps developed by \r\n<a href=\"http://mapasinteractivos.didactalia.net/comunidad/mapasflashinteractivos/perfil/Enrique-Alonso-Guti%C3%A9rrez/\">Enrique Alonso</a>\r\n to facilitate the physical and political geography learning. It includes maps of Spain and its autonomies, Europe and its countries, the European Union, Asia, Africa, and America and countries of America. The project, with maps in 10 languages, is part of <a href=\"http://didactalia.net/\">Didactalia (GNOSS)</a>.\r\n</p>\r\n<p>\r\nMapas interactivos works with \r\n<a href=\"http://gnoss.com/\">GNOSS software (RIAM Intelearning Lab)</a>\r\n. RIAM is a company that develops semantic technology for the creation of specialized networks and linked markets. Mapas interactivos offers a selection of 841 maps (November 2012). It includes a facet-based search engine and enriched contexts. Both are developments by GNOSS.\r\n</p>\r\n\r\n<p>\r\n<a href=\"http://mapasinteractivos.didactalia.net/\">Mapas interactivos</a>\r\n es una colección de mapas en flash elaborados por <a href=\"http://mapasinteractivos.didactalia.net/comunidad/mapasflashinteractivos/perfil/Enrique-Alonso-Guti%C3%A9rrez/\">Enrique Alonso</a> para facilitar el aprendizaje de Geografía (física y política). Incluye mapas de España y sus Comunidades Autónomas; países de Europa, Europa y la Unión Europea; Asia; África; y países de América y América. El proyecto forma parte de <a href=\"http://didactalia.net/\">Didactalia (GNOSS)</a> y está en 10 idiomas.\r\n</p>\r\n<p>\r\nMapas interactivos trabaja con \r\n<a href=\"http://gnoss.com/\">software de GNOSS (RIAM Intelearning Lab)</a>. RIAM es una compañía que desarrolla tecnología semántica para la creación de redes especializadas y mercados enlazados. Mapas interactivos ofrece en este caso una colección con 841 mapas en flash (Octubre 2012). Incluye un buscador facetado y contextos enriquecidos. Ambos son desarrollos de GNOSS.\r\n</p>"},"_id":"interactivemaps-gnoss","title":"Interactive Maps, a collection of interactive flash maps (GNOSS)"},{"description":{"en":"EU Election Results from 2009."},"_id":"european-election-results","title":"European Election Results"},{"description":{"en":"StatusNet instance hosted at http://otbm.fr"},"_id":"statusnet-otbm-fr","title":"statusnet-otbm-fr"},{"description":{"en":"Mapping from IETF language tags (aka. RFC 4646 or BCP 47) to Lexvo, Glottolog, WALS, IDS and ontologi.es"},"_id":"ietflang","title":"ietflang"},{"description":{"en":"The Japanese wordnet as published as part of the Open Multilingual WordNet. The goal of Open Multilingual WordNet is to make it easy to use wordnets in multiple languages. The individual wordnets have been made by many different projects and vary greatly in size and accuracy. We have (i) extracted and normalized the data, (ii) linked it to Princeton WordNet 3.0 and (iii) put it in one place. The Open Multilingual Wordnet and its components are open: they can be freely used, modified, and shared by anyone for any purpose. "},"_id":"omwn-jpn","title":"Japanese WordNet (as part of Open Multilingual WordNet)"},{"description":{"en":"Linked Open Data from Multimedia Lab, a research group of Ghent University ? iMinds, Belgium."},"_id":"multimedia-lab","title":"Multimedia Lab"},{"description":{"en":null},"_id":"semantic-web-grundlagen","title":"semantic-web-grundlagen"},{"description":{"en":"The NUTS (Nomenclature of Territorial Units for Statistics) is a classification defined by the Eurostat office of the European Union. Here we present the NUTS regions along with geographic information as a sample use of the NeoGeo RDF Vocabulary for GeoData. "},"_id":"nuts-geovocab","title":"NUTS (GeoVocab)"},{"description":{"en":"UD treebank of Dante Alighieri’s Latin works linked to the LiLa Knowledge Base "},"_id":"UDante","title":"UDante in LiLa"},{"description":{"en":"Universal Dependencies is a project that seeks to develop cross-linguistically consistent treebank annotation for many languages, with the goal of facilitating multilingual parser development, cross-lingual learning, and parsing research from a language typology perspective. The annotation scheme is based on (universal) Stanford dependencies (de Marneffe et al., 2006, 2008, 2014), Google universal part-of-speech tags (Petrov et al., 2012), and the Interset interlingua for morphosyntactic tagsets (Zeman, 2008).\r\n\r\nThis dataset refers to UD's Portuguese treebank.\r\n"},"_id":"universal-dependencies-treebank-portuguese","title":"Universal Dependencies Treebank Portuguese"},{"description":{"en":"An ontology for data retrieval and exchange in the fields of multiple DNA/RNA alignment, protein sequence and protein structure alignment."},"_id":"bioportal-mao","title":"Multiple alignment"},{"description":{"en":"Minimal set of terms for anatomy"},"_id":"bioportal-mat","title":"Minimal anatomical terminology"},{"description":{"en":"A Large-Scale Semantic Knowledge Graph compiled from Wikipedia Categories and List Pages"},"_id":"CaLiGraph","title":"CaLiGraph"},{"description":{"en":"The FinnWordNet wordnet as published as part of the Open Multilingual WordNet. The goal of Open Multilingual WordNet is to make it easy to use wordnets in multiple languages. The individual wordnets have been made by many different projects and vary greatly in size and accuracy. We have (i) extracted and normalized the data, (ii) linked it to Princeton WordNet 3.0 and (iii) put it in one place. The Open Multilingual Wordnet and its components are open: they can be freely used, modified, and shared by anyone for any purpose. "},"_id":"omwn-fin","title":"FinnWordNet WordNet (as part of Open Multilingual WordNet)"},{"description":{"en":"BioPAX representation of the Reactome database"},"_id":"reactome-rdf","title":"Reactome RDF"},{"description":{"en":"StatusNet instance hosted at http://chickenkiller.com"},"_id":"statusnet-chickenkiller-com","title":"statusnet-chickenkiller-com"},{"description":{"en":"The Interaction ontology (IxnO) was developed to enable curation of chemical-gene and chemical-protein interactions for the Comparative Toxicogenomics Database (CTD). CTD is a freely available resource that aims to promote understanding and novel hypothesis development about the effects of the environment on human health."},"_id":"bioportal-ixno","title":"IxnO"},{"description":{"en":"EUNIS consists of information on species, habitat types and sites."},"_id":"eunis","title":"European Nature Information System"},{"description":{"en":"Data cube containing statistical data aboutunemployment rate in regions of Czech republic according to Czech Statistical Office."},"_id":"cz-czso-unemployment-rate","title":"Unemployment rate in regions of Czech republic"},{"description":{"en":"Research outputs of Eastern University Sri Lanka"},"_id":"EUSL-Research-Data-Sri_Lanka","title":"Research outputs of Eastern University Sri Lanka"},{"description":{"en":"LinkedMarkMail is a simple Linked Data interface for accessing the MarkMail archives."},"_id":"linkedmarkmail","title":"LinkedMarkMail"},{"description":{"en":"The conversion of OpenSpending to LinkedSpending, which provides more than five million financial transactions in 955 data sets from\nall over the world as RDF Data Cubes."},"_id":"linkedspending","title":"LinkedSpending"},{"description":{"en":"Salzburgerland dataset for German resources, built with WordLift from the website https://www.salzburgerland.com/de/"},"_id":"salzburgerland-com-de","title":"Salzburgerland DE"},{"description":{"en":"[Zhishi.me](http://zhishi.me/) is an effort to build Chinese Linking Open Data. Currently, it covers three largest Chinese encyclopedias: Baidu Baike, Hudong Baike and Chinese Wikipedia. Additional information about Zhishi.me can be found in this [published paper](http://iswc2011.semanticweb.org/fileadmin/iswc/Papers/In-Use/70320209.pdf)\r\n\r\n[Zhishi.lemon](http://lemon.zhishi.me/) is a newly developed dataset based on the lemon model that constitutes the lexical realization of Zhishi.me. It combines the [lemon core](http://www.lemon-model.net/) with the [lemon translation module](http://linguistic.linkeddata.es/def/translation-content/index.html) in order to build a linked data lexicon in Chinese with translations into Spanish and English. Links to BabelNet (a vast multilingual encyclopedic resource) have been provided as well. The license of the dataset is CC-BY.\r\n\r\nWe also present a [SPARQL endpoint](http://lemon.zhishi.me/sparql.html) for user to query our dataset. For more information, we provide two detailed schema diagrams with several instance examples to help users better understand the dataset and create more valuable SPARQL queries. You can download them from the following two dois: [Chinese Lexicalization Module](https://dx.doi.org/10.6084/m9.figshare.3438545.v1), [Multilingual Translation Module](https://dx.doi.org/10.6084/m9.figshare.3438548.v1)."},"_id":"zhishi-lemon","title":"zhishi.lemon"},{"description":{"en":""},"_id":"rkb-explorer-eurecom","title":"Institut Eurécom (RKBExplorer)"},{"description":{"en":"QBAirbase is a multidimensional provenance-augmented version of the Airbase dataset. AirBase is the European air quality dataset maintained by the EEA (Environmental European Agency). The dataset is publicly available on the Web, and contains air quality monitoring data for 40 European countries. QBOAirbase represents air pollution information as an RDF data cube, which has been linked to the YAGO and DBpedia knowledge bases. QBOAirbase is based on the version 8 of the Airbase dataset."},"_id":"qboairbase","title":"QBOAirbase"},{"description":{"en":"Medical Dictionary for Regulatory Activities Terminology (MedDRA)"},"_id":"bioportal-mdr","title":"MedDRA"},{"description":{"en":"Linked Data version of publications of the Association for Computing Machinery (ACM), along with details of their authors."},"_id":"rkb-explorer-acm","title":"Association for Computing Machinery (ACM) (RKBExplorer)"},{"description":{"en":"Information about Cornell faculty and staff across all disciplines, departments and colleges. Available as RDF dump and Linked Data. This is a part of package:vivo."},"_id":"vivo-cornell-university","title":"VIVO Cornell"},{"description":{"en":"This dataset contains several product scheme classifications that have been transformed to linked data. This dataset is a “catalogue” dataset; the individual classifications are:\r\n\r\n* dataset:combined-nomenclature-2012\r\n* dataset:isic-v4\r\n* dataset:cpa-2008\r\n* dataset:cpc-2008\r\n* dataset:cpv-2003\r\n* dataset:cpv-2008\r\n* dataset:naics-2007\r\n* dataset:naics-2012\r\n* dataset:sitc-v4\r\n\r\nAuthors:\r\n\r\n-Jose María Alvarez Rodríguez & Jose Emilio Labra Gayo\r\n\r\nWESO-University of Oviedo"},"_id":"pscs-catalogue","title":"Product Scheme Classifications Catalogue"},{"description":{"en":"The LOD dataset of the archive of “Chen Cheng-po’s Paintings and Documents” (陳澄波畫作與文書檔) in the Taiwan Archive Information System at the Institute of Taiwan History (ITH), Academia Sinica was created by the Academia Sinica Center for Digital Cultures (ASCDC) and based on the metadata from the online database of the “Taiwan Archive Information System” (臺灣史檔案資源系統, http://tais.ith.sinica.edu.tw/sinicafrsFront/browsingLevel1.jsp?xmlId=0000283891), which was established and maintained by the Institute of Taiwan History, Academia Sinica, in Taipei, Taiwan (ROC). The data includes hierarchically structured archival resources and is focused on the creations of Chen Cheng-po, such as his works, personal objects and collections of books, collages, postcards, etc. related to his personal life. Containing 1,522 data records and 44,647 triples, the textual content within the LOD dataset is licensed under the Creative Commons Attribution (CC0)."},"_id":"ASCDC_-_CCP_Archive","title":"Dataset of the Chen Cheng-po’s Paintings and Documents (CCP) in the Taiwan Archive Information System (TAIS- ITH/ASCDC) at the Institute of Taiwan History, Academia Sinica"},{"description":{"en":"Information about people and publications from the Research Group Data and Web Science at University of Mannheim"},"_id":"dws-group","title":"DWS-Group"},{"description":{"en":"Nomenclature for Museum Cataloging is a structured and controlled list of object terms organized in a classification system to provide a basis for indexing and cataloging collections of human-made objects. Nomenclature is fully bilingual (English and French) and includes illustrations and definitions to help with identification of concepts. Nomenclature is used in the creation and management of object records in human history collections within museums and other organizations, and it focuses on objects relevant to North American history and culture. "},"_id":"nom","title":"Nomenclature for Museum Cataloging"},{"description":{"en":"Linking encyclopediae on Jewish culture and history."},"_id":"judaicalink","title":"JudaicaLink"},{"description":{"en":"The Common Procurement Vocabulary (CPV) establishes a single classification system for public procurement aimed at standardising the references used by contracting authorities and entities to describe the subject of procurement contracts.\r\n\r\nThe dataset created is comprised of CPV 2008 and CPV 2003 codes and the mappings between them. \r\n\r\nAuthors:\r\n\r\nAuthors:\r\n\r\nJose María Alvarez Rodríguez & Jose Emilio Labra Gayo \r\n\r\nWESO-University of Oviedo"},"_id":"cpv-2008","title":"CPV 2008"},{"description":{"en":"hongsejingdiangequ"},"_id":"baixue_imagery","title":"红色经典歌曲"},{"description":{"en":"Universal Dependencies is a project that seeks to develop cross-linguistically consistent treebank annotation for many languages, with the goal of facilitating multilingual parser development, cross-lingual learning, and parsing research from a language typology perspective. The annotation scheme is based on (universal) Stanford dependencies (de Marneffe et al., 2006, 2008, 2014), Google universal part-of-speech tags (Petrov et al., 2012), and the Interset interlingua for morphosyntactic tagsets (Zeman, 2008).\r\n\r\nThis dataset refers to UD's Slovenian treebank.\r\n"},"_id":"universal-dependencies-treebank-slovenian","title":"Universal Dependencies Treebank Slovenian"},{"description":{"en":"StatusNet instance hosted at http://ilikefreedom.ro"},"_id":"statusnet-ilikefreedom-ro","title":"statusnet-ilikefreedom-ro"},{"description":{"en":"Data cube containing statistical data about job applicants and unemployment rate in regions of Czech Republic according to Czech Statistical Office."},"_id":"cz-czso-job-applicants-and-unemployment-rate","title":"Job applicants and unemployment rate in regions of Czech Republic"},{"description":{"en":"Universal Dependencies is a project that seeks to develop cross-linguistically consistent treebank annotation for many languages, with the goal of facilitating multilingual parser development, cross-lingual learning, and parsing research from a language typology perspective. The annotation scheme is based on (universal) Stanford dependencies (de Marneffe et al., 2006, 2008, 2014), Google universal part-of-speech tags (Petrov et al., 2012), and the Interset interlingua for morphosyntactic tagsets (Zeman, 2008).\r\n\r\nThis dataset refers to UD's Vietnamese treebank.\r\n"},"_id":"universal-dependencies-treebank-vietnamese","title":"Universal Dependencies Treebank Vietnamese"},{"description":{"en":"The Common Procurement Vocabulary (CPV) establishes a single classification system for public procurement aimed at standardising the references used by contracting authorities and entities to describe the subject of procurement contracts.\r\n\r\nThe dataset created is comprised of CPV 2008 and CPV 2003 codes and the mappings between them. \r\n\r\nAuthors:\r\n\r\nAuthors:\r\n\r\nJose María Alvarez Rodríguez & Jose Emilio Labra Gayo \r\n\r\nWESO-University of Oviedo"},"_id":"cpv-2003","title":"CPV 2003"},{"description":{"en":"<p>\r\n<a href=\"http://www.ineverycrea.com.ar/\">IneveryCREA Argentina (Santillana) </a>\r\nis the community of educational creativity for teachers and education professionals to create, develop and share original educational resources in Argentina.\r\n</p>\r\n<p>\r\nSantillana is the leading textbook and general-interest publishing group in Spain and Latin America, and the most prestigious publisher of literary works in Spanish. With more than 108 million books sold in 2010, the company has been synonymous with quality, innovation and service to teaching staff since its inception in 1960.\r\n</p>\r\n<p>\r\nIneveryCREA Argentina (Santillana) works with \r\n<a href=\"http://gnoss.com/\">GNOSS software (RIAM Intelearning Lab)</a>. RIAM is a company that develops semantic technology for the creation of specialized networks and linked markets. IneveryCREA offers a selection of 592 resources (November 2012). It includes a facet-based search engine and enriched contexts. Both are developments by GNOSS.\r\n</p>\r\n\r\n<p>\r\n<a href=\"http://www.ineverycrea.com.ar/\">IneveryCREA Argentina (Santillana)</a> es la comunidad de la creatividad educativa para profesores y profesionales de la educación que crean, desarrollan y comparten recursos educativos originales en Argentina.\r\n</p>\r\n<p> Santillana es el grupo editorial líder en texto escolar y ediciones generales en España y América Latina, y la referencia en el campo de la creación literaria en lengua española. Con más de 108 millones de libros vendidos en el año 2010, es sinónimo de calidad, innovación y servicio al profesorado desde su creación en 1960.</p>\r\n<p>\r\nIneveryCREA Argentina (Santillana) trabaja con \r\n<a href=\"http://gnoss.com/\">software de GNOSS (RIAM Intelearning Lab)</a>. RIAM es una compañía que desarrolla tecnología semántica para la creación de redes especializadas y mercados enlazados. IneveryCREA ofrece en este caso una selección de 592 recursos (Noviembre 2012). Incluye un buscador facetado y contextos enriquecidos. Ambos son desarrollos de GNOSS.\r\n</p>"},"_id":"ineverycrea-argentina","title":"IneveryCREA Argentina, la comunidad de la creatividad educativa"},{"description":{"en":"Universal Dependencies is a project that seeks to develop cross-linguistically consistent treebank annotation for many languages, with the goal of facilitating multilingual parser development, cross-lingual learning, and parsing research from a language typology perspective. The annotation scheme is based on (universal) Stanford dependencies (de Marneffe et al., 2006, 2008, 2014), Google universal part-of-speech tags (Petrov et al., 2012), and the Interset interlingua for morphosyntactic tagsets (Zeman, 2008).\r\n\r\nThis dataset refers to UD's Danish treebank.\r\n"},"_id":"universal-dependencies-treebank-danish","title":"Universal Dependencies Treebank Danish"},{"description":{"en":"Répertoire International des Sources Musicales (RISM) is an international, non-profit organization with the aim of comprehensively documenting extant musical sources anywhere in the world. \r\n\r\nThe dataset offered here contains over 870,000 records, mostly for music manuscripts. These records hand down the works of some 27,000 composers, whose sources are preserved in the libraries and archives of 36 countries."},"_id":"rism","title":"Répertoire International des Sources Musicales - RISM"},{"description":{"en":"Controlled vocabularies for the MIxS family of metadata checklists. See http://gensc.org/gc_wiki/index.php/MIxS for details on the MIxS checklists."},"_id":"bioportal-mcv","title":"MIxS Controlled Vocabularies"},{"description":{"en":"Semantified version of the [NPM respository](https://www.npmjs.com/)"},"_id":"npm","title":"NPM"},{"description":{"en":"Weather forecast data screenscraped from pages like http://www.metoffice.gov.uk/weather/uk/os/kirkwall_forecast_weather.html and converted to Linked Data\r\n\r\nNew forecasts for every area in the UK are scraped every hour (the metoffice update the forecasts hourly). This means the triple count is continually rising by circa 2,000,000 (240 triples * 413 areas) an hour. "},"_id":"data-incubator-metoffice","title":"Metoffice Weather Forecasts"},{"description":{"en":"Species are known by many different names. The TaxonConcept Knowledge Base provides informative Linked Open Data URI's for species concepts that improve the quality and stability of links between a species and data about that species. There are currently 108,175 species concepts and a and 1,000 records for species occurrences. There are also a few examples of references, and image galleries. I have added links below for an insect, mammal, bird and tree to serve as examples of the interlinking etc. The occurrence records are interlinked with GeoNames. \r\n\r\nA species can have several different classifications, for instance it's classification in NCBI and DBpedia, are different. To allow multiple classifications, the species model is separate from any specific classification. However many want these two aspects connected together. To make this easy, I have created an additional owl:sameAs RDF dump file which makes the #Taxonomy the same as the #Species. This is particularly useful for browsing SPARQL query results with Microsoft Pivot. In addition, it is also possible to create similar mapping files that can be used to \r\ntie the species to alternative classifications.\r\n\r\nThe data set and related vocabularies have been changed as of June 11, 2013. See the sitemap.xml or void file for the full list of RDF dumps"},"_id":"taxonconcept","title":"TaxonConcept Knowledge Base"},{"description":{"en":"The Indian Biodiversity"},"_id":"https:bioportal.bioontology.orgontologiesIBIOp=summary","title":"Indian Biodiversity"},{"description":{"en":"StatusNet instance hosted at http://orangeseeds.org"},"_id":"statusnet-orangeseeds-org","title":"statusnet-orangeseeds-org"},{"description":{"en":"OWL ontology for the RDF representation of the Geologic Timescale."},"_id":"GTS-ont","title":"Geological Timescale Ontology"},{"description":{"en":"Universal Dependencies is a project that seeks to develop cross-linguistically consistent treebank annotation for many languages, with the goal of facilitating multilingual parser development, cross-lingual learning, and parsing research from a language typology perspective. The annotation scheme is based on (universal) Stanford dependencies (de Marneffe et al., 2006, 2008, 2014), Google universal part-of-speech tags (Petrov et al., 2012), and the Interset interlingua for morphosyntactic tagsets (Zeman, 2008).\r\n\r\nThis dataset refers to UD's Indonesian treebank.\r\n"},"_id":"universal-dependencies-treebank-indonesian","title":"Universal Dependencies Treebank Indonesian"},{"description":{"en":"The names of the beneficiaries of ca. ?10 billion of grants and other forms of support, awarded (in budgetary terms: 'committed') by the Commission every year, either directly or through 'executive agencies' set up to help it run EU funded programmes. The site also contains certain procurement contracts, excluding for the moment those linked to administrative expenditure of the Commission.\r\nThis information is separate from information on funds managed by EU or non-EU national governments or other parties on the behalf of the Commission.\r\nThe original site of the European Commission shows only lists of awarded amounts and beneficiaries - it does not provide amounts consolidated per country, budget line, etc. .\r\nThe original dataset can be found at EU Commission Financial Transparency System which is also listed at ckan."},"_id":"beneficiaries-of-the-european-commission","title":"EU: fintrans.publicdata.eu"},{"description":{"en":"Code lists of the legal relationships and documents in the Land register information system"},"_id":"cz-cuzk-legal-relationships-documents","title":"Code lists of the legal relationships and documents"},{"description":{"en":"StatusNet instance hosted at http://datenfahrt.org"},"_id":"statusnet-datenfahrt-org","title":"statusnet-datenfahrt-org"},{"description":{"en":"Details about how this dataset was built are described in the article: Are SKOS concept schemes ready for multilingual retrieval applications? — Diana Tanase and Epaminondas Kapetanios"},"_id":"gemet-annotated","title":"gemet-annotated"},{"description":{"en":"This dataset contains the scores for the Living Environment Deprivation Domain of the Index of Multiple Deprivation, 2010. This indicator measures the quality of individuals’ immediate surroundings both within and outside the home. A high number indicates a high level of deprivation. \r\n\r\n\r\nExample:\r\nhttp://opendatacommunities.org/id/IMD/2010/IMD-environment-score/LSOA/E01000001\r\n\r\nDownload:\r\nhttp://opendatacommunities-downloads.s3.amazonaws.com/imd-2010-environment-score.ttl.zip"},"_id":"odc-imd-environment-score","title":"Index of Multiple Deprivation, Living Environment Deprivation Domain, Scores 2010"},{"description":{"en":null},"_id":"opendatacommunities-societal-wellbeing-deprivation-imd-score-2010","title":"opendatacommunities-societal-wellbeing-deprivation-imd-score-2010"},{"description":{"en":"This is live data produced by the EPrints server since its upgrade to EPrints v3.2.1 and is distinct from the service provided by RKB Explorer."},"_id":"southampton-ecs-eprints","title":"ECS Southampton EPrints"},{"description":{"en":"IHE Concepts extracted from IHE Technical Frameworks published by IHE International (https://www.ihe.net/ihe_domains/, https://profiles.ihe.net/)"},"_id":"IHE","title":"3LGM² IHE Ontology"},{"description":{"en":"<p>\r\n<a href=\"http://reduno-internacional.com/comunidad/unoi\">Red UNO Internacional (Santillana) </a> is a support community for teachers of Sistema UNO, an educational project that manages the digitization of school, the training of the entire school community and the evaluation of their actions. The proposal provides everything needed to satisfy the standard parameters set by UNESCO and achieves the highest levels of educational quality indicators as PISA ranking.\r\n</p>\r\n<p>\r\nRed Uno Internacional (Grupo Santillana) works with <a href=\"http://gnoss.com/\">GNOSS software (RIAM Intelearning Lab)</a>. RIAM is a company that develops semantic technology for the creation of specialized networks and linked markets. Red Uno Internacional (Santillana) offers a selection of 69 resources (November 2012). It includes a facet-based search engine and enriched contexts. Both are developments by GNOSS.\r\n</p>\r\n\r\n<p>\r\n<a href=\"http://reduno-internacional.com/comunidad/unoi\">Red UNO Internacional (Santillana)</a>\r\nes un comunidad de apoyo a los docentes que participan en <a href=\"http://www.sistemauno.com\">Sistema UNO</a>, proyecto educativo que gestiona la digitalización de la escuela, la formación permanente de toda la comunidad educativa y la evaluación constante de sus acciones. La propuesta provee de todo lo necesario para cumplir con los parámetros establecidos por la UNESCO y alcanzar los más altos niveles de calidad educativa que marcan los indicadores internacionales como PISA.\r\n</p>\r\n<p>\r\nRed Uno Internacional (Santillana) trabaja con <a href=\"http://gnoss.com/\">software de GNOSS (RIAM Intelearning Lab)</a>. RIAM es una compañía que desarrolla tecnología semántica para la creación de redes especializadas y mercados enlazados. Red Uno Internacional (Santillana) ofrece en este caso una selección de 69 recursos (Noviembre 2012). Incluye un buscador facetado y contextos enriquecidos. Ambos son desarrollos de GNOSS.\r\n</p>"},"_id":"red-uno-internacional-santillana","title":"Red Uno Internacional (Santillana)"},{"description":{"en":"Ontology of lexical categories"},"_id":"lexinfo","title":"lexinfo"},{"description":{"en":""},"_id":"rkb-explorer-kisti","title":"Korean Institute of Science Technology and Information (RKBExplorer)"},{"description":{"en":"Publish information about datasets"},"_id":"datahub","title":"datahub"},{"description":{"en":"Universal Dependencies is a project that seeks to develop cross-linguistically consistent treebank annotation for many languages, with the goal of facilitating multilingual parser development, cross-lingual learning, and parsing research from a language typology perspective. The annotation scheme is based on (universal) Stanford dependencies (de Marneffe et al., 2006, 2008, 2014), Google universal part-of-speech tags (Petrov et al., 2012), and the Interset interlingua for morphosyntactic tagsets (Zeman, 2008).\r\n\r\nThis dataset refers to UD's Latin treebank.\r\n"},"_id":"universal-dependencies-treebank-latin","title":"Universal Dependencies Treebank Latin"},{"description":{"en":"free knowledge database project hosted by Miraheze and edited by volunteers"},"_id":"famedata","title":"FAMEData"},{"description":{"en":"Serendipity Linked Open Data includes data about OpenCourseWare and Open Educational Resources. The data was published in RDF format according to the design issues of Linked Open Data. Data can be accessed from a SPARQL endpoint. \r\n## Data: ##\r\n* OCW Institutions: 262\r\n* OCW Repositories: 80\r\n* Localities: 221\r\n* OCW: 15000\r\n* OER: 70000\r\n## Demographics: ##\r\n* Open Educational Resources are in different languages: English, Spanish, Catalan, Arabic, Chinese, Danish, Dutch, Finnish, French, German, Greek, Hebrew, Hindi, Indonesian, Italian, Japanese, Korean, Macedonian, Persian, Polish, Portuguese, Russian, Slovenian, Swedish, Thai, Turkish, Vietnamese\r\n* OER Providers are from different countries: Afghanistan, Australia, Belgium, Brazil, Canada, Chile, China, Colombia, Costa Rica, Denmark, Dominican Republic, Ecuador, Finland, France, Germany, Greece, India, Indonesia, Iran, Israel, Italy, Japan, Kenya, Malaysia, Mexico, Netherlands, Nigeria, Oman, Pakistan, Panama, Peru, Poland, Portugal, Puerto Rico, Republic of Macedonia, Russia, Saudi Arabia, Slovenia, South Africa, South Korea, Spain, Sweden, Switzerland, Taiwan, Thailand, Turkey, United Arab Emirates, United Kingdom, United States, Venezuela and Vietnam."},"_id":"serendipity","title":"Serendipity"},{"description":{"en":"Solanaceae crop phenotypes and traits, developed in collaboration with the research community, especially for breeder traits of agronomic importance."},"_id":"bioportal-spto","title":"Solanaceae Phenotype Ontology"},{"description":{"en":""},"_id":"rkb-explorer-ft","title":"France Telecom Recherche et Développement (RKBExplorer)"},{"description":{"en":null},"_id":"opendatacommunities-service-expenditure","title":"opendatacommunities-service-expenditure"},{"description":{"en":"A resource of principal parts of Latin words linked to the LiLa Knowledge Base."},"_id":"PrinParLat","title":"PrinParLat in LiLa"},{"description":{"en":"CaLiGraph - A Knowledge Graph from Wikipedia Categories and Lists"},"_id":"caligraph","title":"CaLiGraph"},{"description":{"en":"知识包"},"_id":"_data2.odw.tw","title":"土地利用模型"},{"description":{"en":"The \"LD-project\" deals with the creation of cultural Open Linked Data (LOD), based on the artifacts of Greek Children Art Museum, in Greece, Athens. It was created in the frame of Master Thesis of MSc. students, Marini Efstathia and Chondrogianni Maria, in Cultural Informatics postgraduate program at the Department of Cultural Technology and Communication of the University of the Aegean.\n\nDCAT Description: https://www.childrensartmuseum.gr/LD-project/"},"_id":"https:www.childrensartmuseum.grLD-project","title":"Greek Children Art Museum dataset"},{"description":{"en":"Presents a standard conversion of Princeton WordNet to RDF/OWL. It describes how it was converted and gives examples of how it may be queried for use in Semantic Web applications.\r\n\r\nEditors:\r\nMark van Assem, Vrije Universiteit Amsterdam\r\nAldo Gangemi, ISTC-CNR, Rome\r\nGuus Schreiber, Vrije Universiteit Amsterdam"},"_id":"w3c-wordnet","title":"WordNet 2.0 (W3C)"},{"description":{"en":"The Standard International Trade Classification V4 is used by the United Nations to create statistics. \r\n\r\nAuthors of the linked data version:\r\n\r\n-Jose María Alvarez Rodríguez & Jose Emilio Labra Gayo\r\n\r\nWESO-University of Oviedo\r\n"},"_id":"sitc-v4","title":"SITC-V4"},{"description":{"en":"The goal of DDI project is to develop an ontology for the description of drug discovery investigations. DDI aims to follow to the OBO (Open Biomedical Ontologies) Foundry principles, uses relations laid down in the OBO Relation Ontology, and be compliant with Ontology for biomedical investigations (OBI)."},"_id":"bioportal-ddi","title":"Ontology for Drug Discovery Investigations"},{"description":{"en":"RDF-ized controlled vocabulary of Norwegian terms with Universal Decimal Classification numbers; library metadata from the Norwegian University of Science and Technology."},"_id":"tekord","title":"TEKORD"},{"description":{"en":"Linked Open Data of Ecology ([LODE][]) is a prototype to integrate the data of ecology by linked data approach. So far the subjects include most of [wildfire][], [taxonomy][], biodiversity data of [plants][] and [insects][] in Taiwan. \r\n\r\n2011/07/20: Recently we added a new dataset about measurements of DBH(diameters breast height) of tree entities in Nansi forest dynamics plot ([FDP-NS][]).\r\n\r\n[LODE]: http://ecowlim.tfri.gov.tw/lode\r\n[wildfire]: http://ecowlim.tfri.gov.tw/lode/resource/firedb/ForestFireEvent\r\n[taxonomy]: http://ecowlim.tfri.gov.tw/lode/page/taibnet/Species\r\n[plants]: http://ecowlim.tfri.gov.tw/lode/page/taif/Species\r\n[insects]: http://ecowlim.tfri.gov.tw/lode/page/flyhorse/Species\r\n[FDP-NS]: http://ecowlim.tfri.gov.tw/lode/resource/fdp/NansiForestDynamicsPlotCensus/01"},"_id":"linked-open-data-of-ecology","title":"Linked Open Data of Ecology"},{"description":{"en":"A social network of active Lotico Semantic Web community members, provided as RDF via resolvable URIs and a SPARQL endpoint."},"_id":"lotico","title":"Lotico"},{"description":{"en":"EURES (European Employment Services) is a cooperation network designed to facilitate the free movement of workers within the European Economic Area (Switzerland is also involved). It publishes Job vacancies in 31 European countries. Partners in the network include public employment services, trade union and employers' organisations. The network is coordinated by the European Commission."},"_id":"fu-berlin-eures","title":"European Employment Services (EURES)"},{"description":{"en":"FoaF"},"_id":"card","title":"person"},{"description":{"en":"Simulation of desertification dynamics in Ordos City from 2000 to 2030 with coupled natural-human factors"},"_id":"SDDEC","title":"Simulation of desertification dynamics in Ordos City from 2000 to 2030 with coupled natural-human factors"},{"description":{"en":"Cada ZIP contiene las farmacias de una provincia: Bizkaia, Gipuzkoa y Álava.\r\n\r\nFarmacias existentes en Euskadi. Los datos incluyen, entre otros, dirección, datos de contacto, horarios y coordenadas GPS.\r\n"},"_id":"euskadi-farmacias","title":"Farmacias en Euskadi"},{"description":{"en":"StatusNet instance hosted at http://fragdev.com"},"_id":"statusnet-fragdev-com","title":"statusnet-fragdev-com"},{"description":{"en":"WoodTrick is a brand of 3d puzzles for adults made of natural wood by professional engineers. These are cars and trucks, devices, machinery, weaponry and other amazing mechanisms that you assemble with your own hands using the laser-cut parts and your clever mind."},"_id":"woodtrick","title":"Wood Trick LLC"},{"description":{"en":"An ontology for describing biological activities of natural products."},"_id":"bioportal-natpro","title":"Natural Products Ontology"},{"description":{"en":"Spanish Linguistic Datasets (SLD) is an open initiative to expose as Linked Data available Spanish Linguistic resources maintained at OEG. It is worth noting that we host Spanish multilingual resources.\r\nAt the moment, the collection of SLDs are (1) NC geo dictionary. Nomeclator Conciso; (2) BCN geo dictionary. Base Cartogrófica Numérica; (3) Badele lexical database. and (4) BNE thesaurus. "},"_id":"spanish-linguistic-datasets","title":"Spanish Linguistic Datasets"},{"description":{"en":"The CLaSSES corpus linked to the LiLa Knowledge Base is a digital resource which gathers non-literary Latin texts (inscriptions, writing tablets, letters) of different periods and provinces of the Roman Empire. Each text is tagged with linguistic and extra-linguistic information that allows to analyze the spelling variations in Latin non-literary sources in the light of the sociolinguistic context of the Roman world."},"_id":"CLaSSES","title":"Corpus for Latin Sociolinguistic Studies on Epigraphic textS (CLaSSES) in LiLa"},{"description":{"en":"RDF version of the Apertium bilingual dictionary EN-GL. The original dataset (in LMF) comes from http://hdl.handle.net/10230/17109 . The RDF version of the lexica is modelled using lemon (http://lemon-model.net/) and the translation module (http://purl.org/net/translation). More about the Apertium RDF dictionaries at http://linguistic.linkeddata.es/apertium/\r\n"},"_id":"apertium-rdf-en-gl","title":"Apertium RDF EN-GL"},{"description":{"en":"This ontology represents concepts related to homology, as well as other concepts used to describe similarity and non-homology."},"_id":"bioportal-hom","title":"Ontology of homology and related concepts in biology"},{"description":{"en":"DBTropes.org is a Linked Data wrapper for the TVTropes.org community wiki. It contains descriptions of numerous movies, books, and other items, and associates these with tropes (writing devices and conventions)."},"_id":"dbtropes","title":"DBTropes"},{"description":{"en":"RDF version of the CC-SA-BY ChEMBL database by the team of John Overington at the EBI, Hinxton/UK (http://www.ebi.ac.uk/chembl/)."},"_id":"farmbio-chembl","title":"ChEMBL-RDF (@ Uppsala University)"},{"description":{"en":"Free knowledge base hosted by Cinémathèque québécoise about movies."},"_id":"cinematheque-quebecoise-linked-open-data","title":"Cinémathèque québécoise Linked Open Data"},{"description":{"en":"Open linked data from the Hungarian National Museum. \r\nThe following datasets and subsets are available:\r\n\r\n* Collections (dataset, short name: colls)\r\n * Bibliographic Data of the Central Library (subset, short name: colls-lib-bib)\r\n\r\nThe Bibliographic Data of the Central Library contains the entire online catalogue of the library in BIBFRAME format and provides links to external sources including: [BNF](http://data.bnf.fr), [ISNI](http://isni.org), [LC NAF](http://id.loc.gov/authorities/names.html), [VIAF](http:viaf.org) and [Wikidata](http://wikidata.org).\r\n\r\nOne of the aims of this publication is to make Hungarian librarians more familiar with BIBFRAME. In order to achieve this the BIBFRAME and the MARC descriptions are cross linked. Knowing the BIBFRAME URI of an instance:\r\n\r\n[http://data.hnm.hu/id/colls/lib/bib/Instance/MNMKVT19563](http://data.hnm.hu/id/colls/lib/bib/Instance/MNMKVT19563)\r\n\r\none can get the MARC description by appending \".opac\" to the URI:\r\n\r\n[http://data.hnm.hu/doc/colls/lib/bib/Instance/MNMKVT19563.opac](http://data.hnm.hu/doc/colls/lib/bib/Instance/MNMKVT19563.opac).\r\n\r\nKnowing the permalink of an OPAC record \r\n\r\n[http://link.hnm.hu/lib/bib/MNMKVT19563](http://link.hnm.hu/lib/bib/MNMKVT19563)\r\n\r\none can get the BIBRAME description in HTML format by appending .rdf to it:\r\n\r\n[http://link.hnm.hu/lib/bib/MNMKVT19563.rdf](http://link.hnm.hu/lib/bib/MNMKVT19563.rdf).\r\n\r\nOther formats can also be invoked by appending the following extensions:\r\n.rdf-ttl, .rdf-nt, .rdf-json, .rdf-jsonld, and .rdf-rdf. The .rdf-rdf extentsion gives back the rdf-xml format.\r\n\r\nClicking the BIBFRAME icon in the OPAC also leads to the BIBFRAME description.\r\n\r\nThe OPAC pages also support the link rel discovery service in order for the crawlers and other programs to find the RDF descriptions in different formats automatically.\r\n\r\nThe project was carried out in partnership with @Cult srl., Italy (MARC BIBFRAME conversion) and Monguz Ltd., Hungary (OPAC modification). We also used some parts of the ALIADA open source tool.\r\n\r\nThe @Cult MARC21 BIBFRAME conversion have the following main features:\r\n\r\n- Work recognition\r\n- Entity recognition\r\n- Name entities are linked to external datasets.\r\n\r\nThe BIBFRAME dataset will be updated periodically as BIBFRAME and the conversion evolves. "},"_id":"data-hnm-hu","title":"data-hnm-hu - Hungarian National Museum Datasets"},{"description":{"en":"Information about:\r\n\r\n- wildlife biota (kingdom > Species)\r\n- habitats\r\n- adaptations\r\n- ecozones\r\n\r\nData includes: \r\n\r\n- IUCN conservation status\r\n- background descriptions\r\n- photos\r\n- BBC news stories and \r\n- video clips from the BBC archive."},"_id":"bbc-wildlife-finder","title":"BBC Wildlife Finder"},{"description":{"en":"Vineyard powdery mildew (Uncinula necator), dead arm (Phomopsis viticola) and vineyard downy mildew (Plasmopara viticola) diseases are frequently seen in the vineyards in the Gediz River Basin, West Anatolia of Turkey and cause significant damage to the crop. These diseases can be detected early using artificial intelligence- based systems that can contribute to crop yields and also reduce the labor of the farmer and the amount of pesticides used. This article presents a dataset, namely Hermos, for use in such AI-based systems. The dataset, namely Hermos, contains four classes of grapevine images; leaves with dead root, leaves with powdery mildew, leaves with downy mildew and healthy leaves. "},"_id":"Hermos","title":"Hermos"},{"description":{"en":"The Persian wordnet as published as part of the Open Multilingual WordNet. The goal of Open Multilingual WordNet is to make it easy to use wordnets in multiple languages. The individual wordnets have been made by many different projects and vary greatly in size and accuracy. We have (i) extracted and normalized the data, (ii) linked it to Princeton WordNet 3.0 and (iii) put it in one place. The Open Multilingual Wordnet and its components are open: they can be freely used, modified, and shared by anyone for any purpose. "},"_id":"omwn-fas","title":"Persian WordNet (as part of Open Multilingual WordNet)"},{"description":{"en":" This is a Linked Data representation of a digital archive of 'Scottish Mountaineering Club Journal Issues 1 to 36, 1890-1901', which was created by Alan Dawson, Centre for Digital Library Research, University of Strathclyde, with funding from the Scottish Mountaineering Trust.\r\n The Linked Data representation currently covers the relationships between places, people, journal issues and articles gathered from the Cumulative Indexes of Authors, Hills, People and Articles.\r\n \r\n TODO:\r\n \r\n (from the Cumulative Indexes)\r\n Events\r\n Illustrations\r\n Reviews\r\n Topics \r\n\r\n And:\r\n\r\n \"The SMC in 1894: Rules, officers, members\" (http://gdl.cdlr.strath.ac.uk/smcj/smc1894.htm)\r\n\r\n"},"_id":"data-incubator-smcjournals","title":"Scottish Mountaineering Council Journals Issues 1-36"},{"description":{"en":""},"_id":"rkb-explorer-wiki","title":"ReSIST Project Wiki (RKBExplorer)"},{"description":{"en":"## About\r\n\r\nFrom website:\r\n\r\n> The London Gazette, Official Newspaper of Record for the United Kingdom plays a major role in the information infrastructure for government, with 175,000 notices published in 2007.\r\n\r\n> A wide range of notices, the majority of which are mandatory by law appear in the following broad categories (bold = very high numbers of notices): State, Parliament, Ecclesiastical, Public Finance, Transport, Planning, Health, Environment, Water, Agriculture & Fisheries, Energy, Post & Telecom., Other Notices, Competition, Corporate Insolvency, Personal Insolvency, Companies & Financial Regulation, Partnerships, Societies Regulation, Personal Legal.\r\n\r\n> Plans are in place to further upgrade the tagging but any change in mark up for the London Gazette (and sister newspapers the Edinburgh and Belfast Gazettes) will be backwards compatible. Different types of notice presently have very different degrees of mark up.\r\n\r\n> The quality of the information in the London Gazette is excellent. Content is published primarily on behalf of solicitors, government, insolvency practitioners and other known stakeholders. Accuracy is absolutely key.\r\n\r\n> Data can be made available on an ongoing basis in XML, Excel and other formats. RDFa will launch shortly for some categories.\r\n\r\n> The two files on this web page enable you to explore the content:\r\n\r\n> 1. An XML file of all published notices from mid February 2007 to end May 2008.\r\n> 2. A list and order of notice types.\r\n\r\n## Format\r\n\r\nXML\r\n\r\n## Re-use\r\n\r\nWebsite says \"Please treat the data as Crown Copyright.\""},"_id":"london-gazette","title":"The London Gazette - Gazettes Data"},{"description":{"en":"Welcome to this Linked Data and SPARQL service. It provides access to the same collection data available through the Museum?s web presented Collection Online, but in a computer readable format. The use of the W3C open data standard, RDF, allows the Museum?s collection data to join and relate to a growing body of linked data published by other organisations around the world interested in promoting accessibility and collaboration.\r\n\r\nThe data has also been organised using the CIDOC-CRM (Conceptual Reference Model) crucial for harmonising with other cultural heritage data. The current version is beta and development work continues to improve the service. We hope that the service will be used by the community to develop friendly web applications that are freely available to the community. \r\n\r\nLicence available at http://collection.britishmuseum.org/Licensing"},"_id":"british-museum-collection","title":"British Museum Collection"},{"description":{"en":"RDF for artists, records, performances etc., generated from package:musicbrainz."},"_id":"zitgist-musicbrainz","title":"MusicBrainz (zitgist.com)"},{"description":{"en":"Word Formation Latin is a derivational lexicon for Latin. This dataset is linked to the LiLa Knowledge Base"},"_id":"WordFormationLatin","title":"Word Formation Latin (WFL) in LiLa"},{"description":{"en":"MExiCo (short for \"Multimodal Experiment Corpora\") is a data model for data collections containing multimodal linguistic and interaction annotations."},"_id":"mexico","title":"MExiCo"},{"description":{"en":"The ontology for the original papers investigating the relations between genetic factors and disease."},"_id":"bioportal-odgi","title":"Ontology for disease genetic investigation"},{"description":{"en":"A structured controlled vocabulary for the phenotypes of budding yeast."},"_id":"bioportal-ypo","title":"Yeast phenotypes"},{"description":{"en":"A structured controlled vocabulary of the anatomy of <i>Drosophila melanogaster</i>."},"_id":"bioportal-fbbt","title":"Drosophila gross anatomy"},{"description":{"en":"Personal website of Ruben Taelman annotated with RDFa."},"_id":"rubentaelman","title":"Ruben Taelman's Data"},{"description":{"en":"The LOD dataset of ASCDC_Database of Chinese Rare Books (CRB) was created by the Academia Sinica Center for Digital Cultures (ASCDC) and based on the metadata from the online database of the “Digital Library of Chinese Rare Books” (古漢籍善本數位化資料庫, http://rarebookdl.ihp.sinica.edu.tw/rarebook/Search/index.jsp). This digital library was established and maintained by the Fu Ssu-nien Library at the Institute of History and Philology, Academia Sinica, Taipei, Taiwan (ROC). The data includes titles and information on more than 900 Chinese rare books and manuscripts collected by the Library of Congress, Princeton University Library, Harvard–Yenching Library and Fu Ssu-nien Library. Containing 39,911 data records and 140,638 triples, the textual content within the LOD dataset is licensed under the Creative Commons Attribution (CC0), while the digital images are under the CC-BY-NC-SA 3.0 license."},"_id":"ASCDC-CRB","title":"Database of Chinese Rare Books (CRB)"},{"description":{"en":"Includes terms for the descriptors commonly used in cheminformatics software applications and the algorithms which generate them."},"_id":"bioportal-cheminf","title":"Chemical Information Ontology"},{"description":{"en":"The Statistical Office of Cantabria (Instituto Cántabro de Estadística, ICANE) is the public agency in charge of production and diffusion of statistical data about all aspects of society and economy in Cantabria.\r\n\r\nThis publication contains all metadata (both structural and descriptive) and data that ICANE produces according to the Linked Open Data principles.\r\n\r\nTime series are classified into sections (parent SKOS Concept Schemes), subsections (child SKOS Concept Schemes), categories (a special type defined by ICANE) and subjects (SKOS concepts, which appear as folders on the website, and are organized hierarchically). \r\n\r\nA [custom ICANE vocabulary](http://www.icane.es/opendata/vocab) was created to aid in the task of navigating the publication, and is used along other well-known and widely used vocabularies (RDFS, DCTerms, SKOS, FOAF and VOiD).\r\n\r\nMetadata is presented, when possible, embedded into XHTML as RDFa, and links for live data dumps are provided for all series, which use the RDF Data Cube Vocabulary.\r\n\r\nA [publicly accessible SPARQL endpoint](http://www.icane.es/opendata/sparql) is also provided, with [a form for easily submitting queries](http://www.icane.es/semantic-web) present on the intro page (in Spanish)."},"_id":"icane","title":"ICANE"},{"description":{"en":"Medical Devices as downloaded from the FDA site in Jan. 2011"},"_id":"bioportal-fda-meddevice","title":"FDA Medical Devices (2010)"},{"description":{"en":"Ontology about the epilepsy domain and epileptic seizures. Based on the diagnosis proposed by the International League Against Epilepsy (ILAE)."},"_id":"bioportal-epileponto","title":"Epilepsy"},{"description":{"en":"A small ontology for anatomical spatial references, such as dorsal, ventral, axis, and so forth."},"_id":"bioportal-bspo","title":"Spatial Ontology"},{"description":{"en":"This dataset contains the conversion of the Italian SIMPLE lexicon in different formats including RDF, TTL and a Lemon version of lexical entries with their pointers to senses."},"_id":"simple","title":"SIMPLE"},{"description":{"en":"TCGA Roadmap provides an index of the files listed in the [TCGA's open access HTTP site](tcga-data.nci.nih.gov/tcgafiles/ftp_auth/distro_ftpusers/anonymous/tumor/) as Linked Data.\r\n\r\n## Schema\r\n\r\nThe Schema used to represent resources in the TCGA is available as a [Turtle File](http://purl.org/tcga/core).\r\n\r\nAs used below, the prefix ``tcga`` represents ``http://purl.org/tcga/core``, while ``tcgaRoot`` represents ``https://tcga-data.nci.nih.gov/tcgafiles/ftp_auth/distro_ftpusers/anonymous/tumor/``.\r\n\r\n[Class](https://docs.google.com/open?id=0Bzu4cytkv4B8Y1VMVXNOMFhvaGM) and [Instance](https://docs.google.com/open?id=0Bzu4cytkv4B8V3lsc0VzQWE2c28) diagrams of the schema are also available.\r\n\r\n### Types\r\n\r\nSee the [TCGA Data Primer](https://wiki.nci.nih.gov/display/TCGA/TCGA+Data+Primer) and [Code Tables](https://tcga-data.nci.nih.gov/datareports/codeTablesReport.htm?codeTable=center) for details on these types.\r\n\r\n* ``tcga:DiseaseStudy``\r\n* ``tcga:CenterType``\r\n* ``tcga:CenterDomain``\r\n* ``tcga:Platform``\r\n* ``tcga:DataType``\r\n* ``tcga:Archive``\r\n* ``tcga:File``\r\n\r\nData Types correspond to the directory structure:\r\n\r\n``tcgaRoot:DiseaseStudy/CenterType/CenterDomain/Platform/DataType/Archive/File``\r\n\r\ne.g.\r\n\r\n``tcgaRoot:gbm/cgcc/mdanderson.org/mda_rppa_core/protein_exp/mdanderson.org_GBM.MDA_RPPA_Core.Level_2.1.0.0/mdanderson.org_GBM.MDA_RPPA_Core.SuperCurve.Level_2.00da2077-778c-418a-9c92-01febd970ed8.txt``\r\n\r\n### Properties\r\n\r\nEntities of all types may have the following properties.\r\n\r\n* ``rdfs:label``\r\n* ``rdf:type``\r\n* ``tcga:url``\r\n* ``tcga:lastModified``\r\n* ``tcga:firstSeen``\r\n* ``tcga:lastSeen``\r\n\r\n### Properties Exclusive to ``tcga:File`` Resources\r\n\r\nOnly entities of type ``tcga:File`` have the following properties.\r\n\r\n* ``tcga:diseaseStudy``\r\n* ``tcga:centerType``\r\n* ``tcga:centerDomain``\r\n* ``tcga:platform``\r\n* ``tcga:dataType``\r\n* ``tcga:archive``"},"_id":"tcga-roadmap","title":"TCGA Roadmap"},{"description":{"en":"The LOD dataset of ASCDC_Research on the Aquatic Animals in Taiwan and its Neighborhood Area (NMMBA-Aquatic-Animals-in- Taiwan) was created by the Academia Sinica Center for Digital Cultures (ASCDC) and based on the metadata from the “Research on the Aquatic Animals in Taiwan and its Neighborhood Area” (臺灣及鄰近地區水域動物相典藏之研究:魚類及蝦、蟹類計畫) in the “Taiwan Union Catalog” (數位典藏與數位學習聯合目錄, https://catalog.digitalarchives.tw/Organization/List.jsp?CID=4892). Originally, the metadata was established by the National Museum of Marine Biology and Aquarium (NMMBA, 國立海洋生物博物館) in Taiwan (ROC). It provides information on specimens of aquatic animals collected by the NMMBA and can serve as a database for the study of species in the coastal waters in and around Taiwan. Containing 7,311 data records and 73,696 triples, the textual content within the LOD dataset is licensed under the Creative Commons Attribution (CC 0), while the digitized items are under CC-BY-NC-SA."},"_id":"ASCDC-NMMBA-Aquatic-Animals-in-Taiwan","title":"Research on the Aquatic Animals in Taiwan and its Neighborhood Area (NMMBA-Aquatic-Animals-in-Taiwan)"},{"description":{"en":"WALS Online published by the CLLD project"},"_id":"clld-wals","title":"CLLD-WALS"},{"description":{"en":"Dataset from University of Southampton Open Data Service. A catalog of known websites, web widgets, phone apps and other tools using our datasets."},"_id":"southampton-ac-uk-apps","title":"Apps using our data (University of Southampton)"},{"description":{"en":"Structure of regions of Czech Republic according to Czech Statistical Office on 1.1.2015"},"_id":"cz-czso-regions","title":"Structure of regions of Czech Republic according to Czech Statistical Office"},{"description":{"en":"Standard controlled vocabularies used within the UK public sector."},"_id":"esd-standards","title":"ESD Standards: Controlled lists for the UK public sector"},{"description":{"en":"National Health Service (waiting times) performance data published by the UK Department of Health for the year 2008/09. "},"_id":"enakting-nhs","title":"EnAKTing NHS Dataset"},{"description":{"en":"Norwegian classification of scientific disciplines as linked data (2003 edition)."},"_id":"nvd","title":"Norsk inndeling av vitenskapsdisipliner"},{"description":{"en":"We developed and evaluated an ontology\nspecifically for Randomized Controlled Trials in order to facilitate the production of systematic reviews and metaanalysis."},"_id":"bioportal-rctontology","title":"Randomized Controlled Trials (RCT) Ontology"},{"description":{"en":"Japanese Course of Study Linked Open Data (LOD) is a dataset which covers codes, contents, and related information for course of studies published by the Ministry of Education, Culture, Sports, Science and Technology (MEXT). The target of LOD is the latest version of code tables from the past and present course of studies (including some revisions) for all school types. Specifically, it includes 18 published course of studies code tables."},"_id":"jp-cos","title":"Japanese Course of Study LOD"},{"description":{"en":"Twarql encodes information from microblog posts as Linked Open Data in order to enable flexibility for those interested in collectively analyzing microblog data for sensemaking. Our approach can be summarized as follows:\r\n\r\n* extract content (e.g. entity mentions, hashtags and URLs) from microposts streamed from Twitter;\r\n* encode content in RDF using shared and well-known vocabularies (FOAF, SIOC, MOAT, etc.);\r\n* enable structured querying of microposts with SPARQL;\r\nenable subscription to a stream of microposts that match a given query; and\r\n* enable scalable real-time delivery of streamed but annotated data using sparqlPuSH.\r\n\r\nThis dataset is an example created for a brand tracking scenario involving the Apple IPad."},"_id":"twarql","title":"Twarql"},{"description":{"en":"Information about chemicals reported to the Integrated register of pollution and methods of their measurement"},"_id":"cz-cenia-irz-chemicals","title":"Chemicals reported to the Integrated register of pollution"},{"description":{"en":"A structured controlled vocabulary of mutant and transgenic mouse pathology phenotypes"},"_id":"bioportal-mpath","title":"Mouse pathology"},{"description":{"en":"The NERC Vocabulary Server provides access to lists of standardised terms that cover a broad spectrum of disciplines of relevance to the oceanographic and wider community.\r\n\r\nUsing standardised sets of terms (otherwise known as \"controlled vocabularies\") in metadata and to label data solves the problem of ambiguities associated with data markup and also enables records to be interpreted by computers. This opens up data sets to a whole world of possibilities for computer aided manipulation, distribution and long term reuse.\r\n\r\nAll of the vocabularies are fully versioned and a permanent record is kept of all changes made."},"_id":"nvs","title":"NERC Vocabulary Server 2.0"},{"description":{"en":"Past Earthquake case detail"},"_id":"Earthquake_case","title":"ESO"},{"description":{"en":"A structured controlled vocabulary used for various aspects of annotation by FlyBase.<br>This ontology is maintained by FlyBase for various aspects of annotation not covered, or not yet covered, by other OBO ontologies. If and when community ontologies are available for the domains here covered FlyBase will use them."},"_id":"bioportal-fbcv","title":"FlyBase Controlled Vocabulary"},{"description":{"en":"The [Wikilinks corpus](http://www.iesl.cs.umass.edu/data/wiki-links) is a coreference resolution corpus of very large scale. It contains over 40 million mentions of over 3 million entities. Mentions are manually labeled links to respective Wikipedia pages in natural language text. They are obtained via a web crawl and aggregated together with the pages' source in the extended corpus of over 180GB in size.\r\n\r\nWe took the corpus and converted it into the [NLP Interchange Format (NIF)](http://nlp2rdf.org/), publishing it here in Linked Open Data, RDF dumps and an accompanying CSV. \r\n\r\nEvery webpage in the corpus was parsed. The text of the html element surrounding the individual Wikipedia links was extracted and concatenated together, if there was more than one link on the page. The position of the links in these texts was located and annotated via string offsets. The position of the html elements containing the links was annotated with Xpath expressions. For every link to Wikipedia, the respective [DBpedia](http://dbpedia.org) page was included as a link. The [DBpedia ontology classes](http://wiki.dbpedia.org/Ontology) of the linked resource were added as well. If a mapping exists, [NERD core classes](http://nerd.eurecom.fr/) were added, too.\r\n\r\nThe data is available in the Apache file system under [http://wiki-link.nlp2rdf.org/data/](http://wiki-link.nlp2rdf.org/data/). However, for ease of use, it is also available in a number of [gzipped Dumpfiles](http://wiki-link.nlp2rdf.org/dumps/). Additionally, there is a [gzipped CSV file](http://wiki-link.nlp2rdf.org/wikilink_ne.csv.tar.gz) containing the core of the data. "},"_id":"wikilinks-rdf-nif","title":"Wikilinks RDF/NIF"},{"description":{"en":"MedlinePlus Health Topics;National Library of Medicine;June 14, 2008;Bethesda, MD"},"_id":"bioportal-medlineplus","title":"MedlinePlus Health Topics"},{"description":{"en":"StatusNet instance hosted at http://mrblog.nl"},"_id":"statusnet-mrblog-nl","title":"statusnet-mrblog-nl"},{"description":{"en":"A list of most Senior Civil Service posts in the Thurrock Thames Gateway Development Corporation including title, contact details, their line manager, and where disclosed, the name of the officer. Vacant posts are listed as \"Vacant\", and posts where the jobholder is not disclosed are listed as \"N/D\". Note that a number of officers are not listed for security reasons.\r\n\r\nAuthorization required:\r\nhttp://organogram.data.gov.uk/data/thurrocktgdc/2011-03-31/government-staff-and-salary-data---March-2011---ThurrockTGDC#totalPay4\r\n\r\n"},"_id":"staff-organograms-and-pay-thurrock-thames-gateway-development-corporation","title":"Organogram and staff pay data for Thurrock Thames Gateway Development Corporation"},{"description":{"en":"The **OSM Semantic Network** is a Semantic Web resource extracted from the [OpenStreetMap Wiki website](http://wiki.openstreetmap.org), encoded as a SKOS vocabulary. It contains a machine-readable representation of the tags (i.e. terms) used to describe [map features](http://wiki.openstreetmap.org/wiki/Map_Features) in OSM, and several semantic relations between them. The OSM terms are linked to [LinkedGeoData](http://datahub.io/dataset/linkedgeodata) and WordNet.\r\n\r\nAuthor & Maintaner: [Andrea Ballatore](https://sites.google.com/site/andreaballatore)"},"_id":"osm-semantic-network","title":"OSM Semantic Network"},{"description":{"en":"Universal Dependencies is a project that seeks to develop cross-linguistically consistent treebank annotation for many languages, with the goal of facilitating multilingual parser development, cross-lingual learning, and parsing research from a language typology perspective. The annotation scheme is based on (universal) Stanford dependencies (de Marneffe et al., 2006, 2008, 2014), Google universal part-of-speech tags (Petrov et al., 2012), and the Interset interlingua for morphosyntactic tagsets (Zeman, 2008).\r\n\r\nThis dataset refers to UD's French treebank.\r\n"},"_id":"universal-dependencies-treebank-french","title":"Universal Dependencies Treebank French"},{"description":{"en":"The Resource Registry is a curated collection of datasets and terminologies used in the life sciences"},"_id":"bio2rdf-lsr","title":"Bio2RDF::Lsr"},{"description":{"en":"Analiza pracy Lelewela poświęconej bibliotekoznawstwu i porównanie jej do współczesnych osiągnięć bibliotekoznawstwa. "},"_id":"ISSN:_0080-3626","title":"Pierwszy polski podręcznik bibliotekarski"},{"description":{"en":"This repository contains data supplied from Vytautas Magnus University."},"_id":"rkb-explorer-kaunas","title":"Vytautas Magnus University, Kaunas (RKBExplorer)"},{"description":{"en":"This ontology defines traits of the International Wheat Information System (IWIS) database and wheat descriptor."},"_id":"bioportal-co_wheat","title":"Wheat trait"},{"description":{"en":"The RDF representation of TCGA was achieved by representing data elements from the TCGA dataset as statements from the S3DB Core Model (see S3DB Core Model for more information on the S3DB Core Model). As such, the RDF graph that fuels this endpoint is structured according the S3DB Core Model entities: Collections, Items, Rules and Statements. The advantage of this annotation is that entities that belong to the description of the domain are annotated as \"Collections\" (for example, \"Sample\" is a Collection) or Rules (for example, \"GenomicCharacterization-obtainedFrom-Sample\" is a Rule) and their instances are annotated as Items (for example, \"TCGA-01-0001\" is an Item of the collection \"Samples) or Statements (for example, \"TCGA-01-0001\"-\"provided\"-\"GC1234\" is as Statement that uses the Rule \"GenomicCharacterization-obtainedFrom-Sample\"). For more information see Deus HF, DF Veiga, PR Freire, JN Weinstein, GB Mills, JS Almeida (2010) Exposing The Cancer Genome Atlas as a SPARQL endpoint. Journal Biomedical Informatics [PMID 20851208]."},"_id":"tcga","title":"The Cancer Genome Atlas"},{"description":{"en":"Semantic Wiki of PlanetData Project"},"_id":"planetdata-project-wiki","title":"PlanetData Project Wiki"},{"description":{"en":"A linked open data set created from the original entries of the Orlando Project, an ongoing collaborative experiment in the use of computers to engage in women's literary history."},"_id":"orlando-womens-writing-linked-open-data-set","title":"The Orlando Women's Writing Linked Open Data Set"},{"description":{"en":"StatusNet instance hosted at http://uni-siegen.de"},"_id":"statusnet-uni-siegen-de","title":"statusnet-uni-siegen-de"},{"description":{"en":"Groundbreaking biomedical research requires access to cutting edge scientific resources; however such resources are often invisible beyond the laboratories or universities where they were developed. eagle-i is a national research resource discovery platform to help biomedical scientists search for and find previously invisible, but highly valuable, resources. \r\nResource descriptions collected at each participating institution are freely available as linked open data."},"_id":"eagle-i-harvard","title":"eagle-i @ Harvard University"},{"description":{"en":"Universal Dependencies is a project that seeks to develop cross-linguistically consistent treebank annotation for many languages, with the goal of facilitating multilingual parser development, cross-lingual learning, and parsing research from a language typology perspective. The annotation scheme is based on (universal) Stanford dependencies (de Marneffe et al., 2006, 2008, 2014), Google universal part-of-speech tags (Petrov et al., 2012), and the Interset interlingua for morphosyntactic tagsets (Zeman, 2008).\r\n\r\nThis dataset refers to UD's Hungarian treebank.\r\n"},"_id":"universal-dependencies-treebank-hungarian","title":"Universal Dependencies Treebank Hungarian"},{"description":{"en":"Rozprawa Mikołaja Dzikowskiego na temat typów oraz katalogów dotyczących map"},"_id":"ISSN:_0080-3626.","title":"Aktualne zagadnienia klasyfikacji map"},{"description":{"en":"Linked rules description"},"_id":"Luminaires_senlis","title":"Linked rules"},{"description":{"en":"TAXREF-LD is the Linked Data knowledge graph representing TAXREF (https://inpn.mnhn.fr/programme/referentiel-taxonomique-taxref?lg=en), the French national taxonomical register for fauna, flora and fungus, that covers mainland France and overseas territories. In version 15, TAXREF-LD registers 657,000+ scientific names and 199,000+ species.\n\nTAXREF-LD is a joint initiative of the National Museum of Natural History (http://www.mnhn.fr/) and the I3S laboratory (http://www.i3s.unice.fr/) (University Côte d'Azur, CNRS, Inria). The model is described in [1].\n\n[1] Michel F., Gargominy O., Tercerie S. & Faron-Zucker C. (2017). A Model to Represent Nomenclatural and Taxonomic Information as Linked Data. Application to the French Taxonomic Register, TAXREF. In _Proceedings of the 2nd International Workshop on Semantics for Biodiversity (S4BioDiv) co-located with ISWC 2017_ vol. 1933. Vienna, Austria. CEUR."},"_id":"taxref-ld","title":"TAXREF-LD: Knowledge Graph of the French taxonomic registery"},{"description":{"en":null},"_id":"opendatacommunities-imd-rank-2010","title":"opendatacommunities-imd-rank-2010"},{"description":{"en":"RDF conversion of Princeton's package:wordnet, version 3.0. With many links to package:w3c-wordnet, package:lexvo and the Dutch package:cornetto ."},"_id":"vu-wordnet","title":"WordNet 3.0 (VU Amsterdam)"},{"description":{"en":"StatusNet instance hosted at http://somsants.net"},"_id":"statusnet-somsants-net","title":"statusnet-somsants-net"},{"description":{"en":"The Norwegian wordnet as published as part of the Open Multilingual WordNet. The goal of Open Multilingual WordNet is to make it easy to use wordnets in multiple languages. The individual wordnets have been made by many different projects and vary greatly in size and accuracy. We have (i) extracted and normalized the data, (ii) linked it to Princeton WordNet 3.0 and (iii) put it in one place. The Open Multilingual Wordnet and its components are open: they can be freely used, modified, and shared by anyone for any purpose. "},"_id":"omwn-nor","title":"Norwegian WordNet (as part of Open Multilingual WordNet)"},{"description":{"en":"Data exposed: Traditional Chinese medicine, gene and disease association dataset and a linkset mapping TCM gene symbols to Extrez Gene IDs created by Neurocommons\r\n\r\nSize of dump and data set: 288kb compressed\r\n\r\nNotes: Creative Commons with Attributions"},"_id":"tcmgenedit_dataset","title":"TCMGeneDIT Dataset"},{"description":{"en":"Source : [IdRef](http://www.idref.fr)\r\n\r\nIdRef is a Web application dedicated to Sudoc authority data.\r\n[Sudoc](http://www.sudoc.abes.fr) is the French academic union catalogue, maintained by ABES.\r\nIdRef promotes the use of these authority data beyond Sudoc, in other French Higher Education applications.\r\n\r\nSize : more than 2 millions authority records\r\n\r\nVocabularies : Dublin Core, FOAF, BIBO, etc.\r\n\r\nLicensing : not yet, but will be as open as possible\r\n"},"_id":"idreffr","title":"IdRef: Sudoc authority data"},{"description":{"en":"### Description\r\n\r\nLinked data on all Pokemon in the [Pokedex](http://www.upokecenter.com/dex/)\r\n\r\n*Note* this dataset is no longer updated, it was taken off-line during the shutdown of Kasabi. A dump of the dataset has been [uploaded to the Internet Archive](http://archive.org/details/kasabi)"},"_id":"data-incubator-pokedex","title":"Pokedex data in RDF"},{"description":{"en":"Linked Data from brazilian politicians including personal data, election data, disclosure of assets, parliamentary data, leaderships, missions, mandates, clearances, speeches, commissions, proposals and legal occurrences were collected."},"_id":"brazilian-politicians","title":"Brazilian Politicians"},{"description":{"en":"This repository contains data from the UK's EPSRC Grants on the Web Data, but only up to 2003. Thus it contains data about many scientific researchers in the UK, and the projects they were funded to undertake."},"_id":"rkb-explorer-epsrc","title":"epsrc"},{"description":{"en":"A structured controlled vocabulary of sample preparation, visualization and imaging methods used in biomedical research."},"_id":"bioportal-fbbi","title":"Biological imaging methods"},{"description":{"en":null},"_id":"opendatacommunities-imd-score-2010","title":"opendatacommunities-imd-score-2010"},{"description":{"en":"An evidence taxonomy that, when combined with a set of inclusion criteria, enable drug experts to specify what their confidence in a drug mechanism assertion would be if it were supported by a specific set of evidence.\n\nBoyce R, Collins C, Horn J, Kalet I. Computing with evidence Part I: A drug-mechanism evidence taxonomy oriented toward confidence assignment. J Biomed Inform. 2009 Dec;42(6):979-89. Epub 2009 May 10. PubMed PMID: 19435613; PubMed Central PMCID: PMC2783801. "},"_id":"bioportal-dikb-evidence","title":"DIKB-Evidence-Ontology"},{"description":{"en":"Chronicling America provides access to information about historic newspapers and select digitized newspaper pages.\r\n\r\n140,000 newspapers, 3.2 million pages.\r\n\r\n### Issues\r\n\r\nThe statistics below are complete guesses. Link information is incomplete."},"_id":"chronicling-america","title":"Chronicling America"},{"description":{"en":"Ontology that describes the medical information necessary for early detection of the oral cancer reoccurrence extracted from the NeoMark Project."},"_id":"bioportal-neomarkontology","title":"Neomark Oral Cancer-Centred Ontology"},{"description":{"en":"De gegevens bestaan uit BAG-panden en een deelselectie van BAG-gegevens van deze panden en de zich daarin bevindende verblijfsobjecten. Ook de ligplaatsen en standplaatsen zijn hierin opgenomen met een deelselectie van BAG-gegevens. De gegevens van de nummeraanduiding zijn in deze services onderdeel van de adresseerbare objecten, hierbij wordt slechts 1 adres opgenomen, dus objecten met meerdere adressen (hoofd- en nevenadressen) zijn niet compleet. In deze services zitten dus niet alle BAG adressen."},"_id":"bag","title":"Basisregistratie Adressen en Gebouwen"},{"description":{"en":"SAILS Online published by the CLLD project"},"_id":"clld-sails","title":"CLLD-SAILS"},{"description":{"en":"The intention of the ACGT Master Ontology (MO) is to represent the domain of cancer research and management in a computationally tractable manner."},"_id":"bioportal-acgt","title":"Cancer Research and Management ACGT Master Ontology"},{"description":{"en":"The Muninn Project is a multi-disciplinary, multi-national, academic research project investigating millions of records pertaining to the First World War in archives around the world."},"_id":"muninn-world-war-i","title":"Muninn World War I"},{"description":{"en":""},"_id":"bio2rdf-sgd-resources","title":"bio2rdf-sgd-resources"},{"description":{"en":"LDT@Library provides human readable and machine access to broadly used controlled vocabularies and ontologies between libraries in Taiwan including \"List of Chinese Subject Terms\", \"New Classification Scheme For Chinese Libraries Tables\", and Chinese Names and Title Authorities."},"_id":"ldt@library","title":"Linked Open Data Taiwan @ Library"},{"description":{"en":null},"_id":"uniprot-metadata","title":"uniprot-metadata"},{"description":{"en":"Linked data about schools, nurseries and universities within the UK:\r\n\r\n* [Namespace for research institutionhttp://education.data.gov.uk/doc/institutions](http://education.data.gov.uk/doc/institution); populated with institutions that recently received BIS research funding\r\n* Edubase data on schools, nurseries\r\n* 2009 school statistics on local authority level: number of teachers; vacancies; pupil-teacher ratios (SCOVO)\r\n\r\nPart of package:data-gov-uk.\r\n\r\n### REST API\r\n\r\nThe Edubase data is also available [through a REST API](http://education.data.gov.uk/doc/school). See also [Jeni Tennison's blog post](http://data.gov.uk/blog/guest-post-developers-guide-linked-data-apis-jeni-tennison)."},"_id":"education-data-gov-uk","title":"education.data.gov.uk"},{"description":{"en":"This corpus has been created using a dataset comprising a\r\nlist of 1,457 RSS feeds as compiled in (Goldhahn et al. 2012). The list includes all major worldwide newspapers\r\nand a wide range of topics, e.g.,\r\nWorld\r\n,\r\nU.S.\r\n,\r\nBusiness\r\n,\r\nSci-\r\nence\r\netc. The RSS list has been compiled using a 76-hour\r\ncrawl, which resulted in a corpus of about 11.7 million sen-\r\ntences. A subset of this corpus has been created by ran-\r\ndomly selecting 1% of the contained sentences.\r\nFinally, one researcher annotated 500 randomly chosen\r\nsentences manually. These sentences were a subset of\r\nthose which contained a natural language representation\r\nof a formal relation, like “. . . , who was born in. . . ” for\r\ndpo:birthPlace\r\n(see (Gerber and Ngomo, 2012)). The\r\nrelations had to occur more than 5 times in the 1% corpus.\r\nIn case the mentioned entity is not contained in a new URI\r\nhas been generated. This corpus has been used for evalua-\r\ntion purposes in (Gerber et al., 2013)"},"_id":"rss-500-nif-ner-corpus","title":"RSS-500 NIF NER CORPUS"},{"description":{"en":"红色经典歌曲关联数据集"},"_id":"红色经典歌曲关联数据集","title":"红色经典歌曲关联数据集"},{"description":{"en":"El premio anual \"Edublogs\" pretende valorar la importancia y repercusión de los blogs en ​​la educación, como herramienta didáctica para el desarrollo de contenidos curriculares y motivación de los alumnos . Otros objetivos son : reconocer el trabajo del profesorado en la red demostrando su utilidad pedagógica ; servir de escaparate motivador de una corriente educativa dentro de la blogosfera , que ayuda a la generalización del uso de las TIC en la aula y favorecer espacios de opinión y debate sobre la necesidad de avanzar en el uso de los blogs en el entorno educativo . Las categorías del premio se organizan en : bloque de profesores, bloques colectivos de profesorado, blogs de centros educativos, blogs de aula y bloques de asesoramiento, formación y asociaciones educativas. A este premio pueden presentarse bloques de cualquier país siempre y cuando estén escritos en alguna de las lenguas oficiales del Estado Español: castellano, catalán, euskera y gallego. Además, también se admiten bloques escritos en otra lengua que forme parte de las asignaturas cursadas en los centros educativos de España ."},"_id":"edublogs","title":"Edublogs"},{"description":{"en":"Universal Dependencies Treebank Romanian in Turtle-RDF and CONLL-U format."},"_id":"racai-llod-romanian-treebank","title":"Universal Dependencies Treebank Romanian"},{"description":{"en":"Rat bladder cancer cells (AY-27 cell line) were inoculated intravesically into syngeneic female Fischer rats. The bladder was analyzed by histology and Affymetrix GeneChips and compared to bladders from sham operated and normal rats."},"_id":"arrayexpress_e-mtab-104","title":"Transcription profiling of rat bladder after inoculation with bladder cancer cells"},{"description":{"en":"The European Pollutant Release and Transfer Register (E-PRTR) is a Europe-wide register that provides easily accessible key environmental data from industrial facilities in European Union Member States and in Iceland, Liechtenstein, Norway, Serbia and Switzerland."},"_id":"eprtr","title":"European Pollutant Release and Transfer Register (E-PRTR)"},{"description":{"en":"The Experimental Conditions Ontology is designed to represent the conditions under which physiological and morphological measurements are made both in the clinic and in studies involving humans or model organisms."},"_id":"bioportal-xco","title":"Experimental Conditions Ontology"},{"description":{"en":"an ontology to describe the entities and relationships in SysMO-DB, a Systems Biology environment for the sharing and exchange of data and models."},"_id":"bioportal-jerm","title":"SysMO-JERM"},{"description":{"en":"StatusNet instance hosted at http://tschlotfeldt.de"},"_id":"statusnet-tschlotfeldt-de","title":"statusnet-tschlotfeldt-de"},{"description":{"en":"Terrorist"},"_id":"Terrorist_Attack_1","title":"Terrorist Attack1"},{"description":{"en":"The PHArmacogenomic RElationships Ontology (or PHARE) proposes concepts and roles to represent relationships of pharmacogenomics interest."},"_id":"bioportal-phare","title":"PHARE"},{"description":{"en":"Courts thesaurus is structuring German and European courts in a hierarchical fashion and includes e.g. address information. This thesaurus is not only dedicated to parties interested in legal matters, but also to developers developing geo data applications. Information concerning courts and their roles and responsibilities can become an interesting aspect of many applications in the future."},"_id":"courts-thesaurus","title":"Courts thesaurus"},{"description":{"en":"The Swedish wordnet as published as part of the Open Multilingual WordNet. The goal of Open Multilingual WordNet is to make it easy to use wordnets in multiple languages. The individual wordnets have been made by many different projects and vary greatly in size and accuracy. We have (i) extracted and normalized the data, (ii) linked it to Princeton WordNet 3.0 and (iii) put it in one place. The Open Multilingual Wordnet and its components are open: they can be freely used, modified, and shared by anyone for any purpose. "},"_id":"omwn-swe","title":"Swedish WordNet (as part of Open Multilingual WordNet)"},{"description":{"en":"<p>\r\n<a href=\"http://bibliotecaescolardigital.es\">Biblioteca Escolar Digital</a> is an educational tool for teachers, students, parents, educators and researchers in the world of education created by the <a href=\"http://cita.fundaciongsr.com/\">Centro Internacional de Tecnologías Avanzadas (CITA)</a> of the foundation in Peñaranda de Bracamonte (Salamanca, España).\r\n</p>\r\n<p>\r\nThe Biblioteca Escolar Digital’s repository works with <a href=\"http://products.gnoss.com/\">GNOSS software (RIAM Intelearning Lab)</a>. RIAM is a company that develops semantic technology for the creation of specialized networks and linked markets. The project includes a faceted-based search engine and enriched contexts. Both are developments by GNOSS.\r\n</p>\r\n\r\n<p>\r\nLa <a href=\"http://bibliotecaescolardigital.es\">Biblioteca Escolar Digital</a> es una herramienta didáctica para profesores, alumnos, padres, pedagogos e investigadores del mundo de la educación creada por el <a href=\"http://cita.fundaciongsr.com/\">Centro Internacional de Tecnologías Avanzadas (CITA)</a> de la Fundación en Peñaranda de Bracamonte (Salamanca, España).\r\n</p>\r\n<p>\r\nEl repositorio trabaja con <a href=\"http://products.gnoss.com/\">software de GNOSS (RIAM Intelearning Lab)</a>. RIAM es una compañía que desarrolla tecnología semántica para la creación de redes especializadas y mercados enlazados. El proyecto incluye un buscador facetado y contextos enriquecidos.\r\n</p>"},"_id":"biblioteca-escolar-digital-cita","title":"Biblioteca Escolar Digital CITA"},{"description":{"en":"Stammbuch"},"_id":"Stammbuch","title":"Stammbuch"},{"description":{"en":"Amer Nejma (born November 13,1989) is an Irish-Tunisian Record Producer Based in Ireland. Amer is also known as founder of El Distro Network, Records and Publishing Inc."},"_id":"Amer_Nejma","title":"Amer Nejma"},{"description":{"en":"The Human Phenotype Ontology is being developed to provide a structured and controlled vocabulary for the phenotypic features encountered in human hereditary and other disease. Our goal is to provide resource for the computational analysis of the human phenome, with a current focus on monogenic diseases listed in the Online Mendelian Inheritance in Man (OMIM) database, for which annotations are also provided."},"_id":"bioportal-hp_x1","title":"Human Phenotype Ontology"},{"description":{"en":"The BulTreeBank wordnet as published as part of the Open Multilingual WordNet. The goal of Open Multilingual WordNet is to make it easy to use wordnets in multiple languages. The individual wordnets have been made by many different projects and vary greatly in size and accuracy. We have (i) extracted and normalized the data, (ii) linked it to Princeton WordNet 3.0 and (iii) put it in one place. The Open Multilingual Wordnet and its components are open: they can be freely used, modified, and shared by anyone for any purpose. The original URL for this project is http://www.bultreebank.org/"},"_id":"omwn-bul","title":"BulTreeBank WordNet (as part of Open Multilingual WordNet)"},{"description":{"en":"Data about John Goodwin's family tree."},"_id":"john-goodwins-family-tree","title":"John Goodwin's Family Tree"},{"description":{"en":"Test"},"_id":"ABC","title":"Test_m"},{"description":{"en":"h"},"_id":"baixue_imagery1","title":"红色经典歌曲"},{"description":{"en":"Linked Data version of DisGeNET-RDF, which is a Resource Description Framework (RDF) representation of the DisGeNET database, integrating gene, and variant-disease associations from a variety of authoritative sources on human genetics and text mining. The Linked Data version of DisGeNET is an alternative way to access DisGeNET and provides new opportunities for data integration, querying and linking DisGeNET data with other external RDF datasets.\nThere are four main components in the RDF dataset: GDA content, VDA content, metadata description of the RDF dataset (VoID description), and linkouts to other Linked Datasets. The current RDF representation of DisGeNET (v7.0.0) has 99,057,987 triples serialized in Turtle syntax. The triples annotate 1,134,942 gene-disease associations (GDAs), 21,671 genes, and 30,170 diseases, disorders, traits, and clinical or abnormal human phenotypes and 369,554 variant-disease associations (VDAs), between 194,515 variants and 14,155 diseases, traits, and phenotypes. The RDF graph model is centered around two concepts the GDA concept and the VDA concept and their attributes.\n\nweb: http://rdf.disgenet.org/"},"_id":"disgenet","title":"DisGeNET"},{"description":{"en":null},"_id":"opendatascotland-graph-education-pupils-by-school-and-datazone","title":"opendatascotland-graph-education-pupils-by-school-and-datazone"},{"description":{"en":"The Pattern Dictionary of English Verbs (PDEV) describes English verbs according to usage patterns found in corpora (British National Corpus) using a technique called Corpus Pattern Analysis, invented by senior lexicographer Patrick Hanks.\r\n\r\nPDEV provides insight into how verbs collocate with nouns and other words using an empirically well-founded apparatus of syntactic and semantic categories. PDEV is a valuable resource for NLP and text processing because it specifies in detail the contextual conditions that determine meaning of a word.\r\n\r\nPDEV is work in progress, created manually by lexicographers, and converted to RDF using the lemon model by Ismail El Maarouf. The RDF resource is called PDEV-lemon and is available under a CC-by-SA licence.\r\n"},"_id":"pdevlemon","title":"pdevlemon"},{"description":{"en":"The standard Eurobarometer was established in 1973. Each survey consists of approximately 1000 face-to-face interviews per country. Reports are published twice yearly. Reproduction is authorized, except for commercial purposes, provided the source is acknowledged. \r\n\r\nThis dataset represents the results of these questionnaires as Linked Data using the RDF Datacube Vocabulary. "},"_id":"eurobarometer-standard","title":"Standard Eurobarometer"},{"description":{"en":"List of accommodations in Piedmont, Italy. The dataset uses GoodRelations and vcard and includes addresses, contact information (where available) and geo-reference. Note: geo-reference is provided in a best effort way, might contain errors."},"_id":"grrp","title":"Accommodations in Piedmont (LinkedOpenData.it)"},{"description":{"en":"List of accommodations in Tuscany, Italy.\r\nThe dataset uses GoodRelations and vcard and includes addresses, contact information (where available) and geo-reference. Note: geo-reference is provided in a best effort way, might contain errors."},"_id":"grrt","title":"Accommodations in Tuscany (LinkedOpenData.it)"},{"description":{"en":"H"},"_id":"_data.odw.tw","title":"Open Data Web"},{"description":{"en":"D2R Server publishing the DBLP Bibliography Database, hosted at L3S Research Center"},"_id":"l3s-dblp","title":"DBLP in RDF (L3S)"},{"description":{"en":"A comprehensive proteomics data and process provenance ontology."},"_id":"bioportal-propreo","title":"Proteomics data and process provenance"},{"description":{"en":null},"_id":"southampton-ac-uk","title":"southampton-ac-uk"},{"description":{"en":"The Linked Data version of SIDER which contains information on marketed drugs and their adverse effects. The information is extracted from public documents and package inserts.\r\n\r\nLicensing\r\n\r\nThe data is available under a mix of Creative Commons Zero and Creative SA-BY-NC."},"_id":"fu-berlin-sider","title":"SIDER: Side Effect Resource"},{"description":{"en":"Basic information about inspections of the Czech Trade Inspection Authority"},"_id":"cz-ctia-inspections","title":"Inspections of the Czech Trade Inspection Authority"},{"description":{"en":"The Saccharomyces Genome Database (SGD) collects and organizes information about the molecular biology and genetics of the yeast Saccharomyces cerevisiae. SGD contains a variety of biological information and tools with which to search and analyze it."},"_id":"bio2rdf-sgd","title":"Bio2RDF::Sgd"},{"description":{"en":"收集了135首歌曲的相关数据。"},"_id":"baixue","title":"红色经典歌曲"},{"description":{"en":"A vocabulary of taxonomic ranks intended to replace the sets of rank terms found in the Teleost Taxonomy Ontology, the OBO translation of the NCBI taxonomy and similar OBO taxonomy ontologies. It provides terms for taxonomic ranks drawn from both the NCBI taxonomy database and from a rank vocabulary developed for the TDWG biodiversity information standards group. Cross references to appearances of each term in each source are provided. Consistent with its intended use as a vocabulary of labels, there is no relation specifying an ordering of the rank terms."},"_id":"bioportal-taxrank","title":"Taxonomic rank vocabulary"},{"description":{"en":"This service provides a live RDF representation of [Myspace](http://myspace.com/) users. If the user is also an artist, then the corresponding tracks in the streaming audio cache are included in the RDF. Note that only the top friends of the target Myspace user are included in the RDF.\r\n\r\nThis representations is designed using the Music Ontology, FOAF, and a small Myspace Ontology.\r\n\r\n### Issues\r\n\r\nTriple count is a wild guess based on assumption of 10 triples for each of the 66M MySpace users.\r\n\r\nAll the links are down, marking for removal.\r\n\r\nAs of July 21, 2011:\r\nUnfortunately due to changes in the MySpace pages, the DBtune MySpace service will be down indefinitely. Sorry for inconvenience. If you have time to help fix the service you can join the MoTools project of SF or email kurtjx at gmail."},"_id":"dbtune-myspace","title":"DBTune.org MySpace RDF Service"},{"description":{"en":"Universal Dependencies is a project that seeks to develop cross-linguistically consistent treebank annotation for many languages, with the goal of facilitating multilingual parser development, cross-lingual learning, and parsing research from a language typology perspective. The annotation scheme is based on (universal) Stanford dependencies (de Marneffe et al., 2006, 2008, 2014), Google universal part-of-speech tags (Petrov et al., 2012), and the Interset interlingua for morphosyntactic tagsets (Zeman, 2008).\r\n\r\nThis dataset refers to UD's Galician-TreeGal treebank.\r\n"},"_id":"universal-dependencies-treebank-galician-treegal","title":"Universal Dependencies Treebank Galician-TreeGal"},{"description":{"en":"The EventKG is a novel multilingual resource incorporating event-centric information extracted from several large-scale knowledge graphs such as Wikidata, DBpedia and YAGO, as well as less structured sources such as Wikipedia Current Events and Wikipedia event lists in five languages. The EventKG is an extensible event-centric resource modeled in RDF. It relies on Open Data and best practices to make event data spread across different sources available through a common representation and reusable for a variety of novel algorithms and real-world applications."},"_id":"eventkg","title":"EventKG"},{"description":{"en":"A searchable digital database of temples (loosely defined) constructed in the Classical World (also loosely defined).\n"},"_id":"classical_temples","title":"Temples of the Classical World"},{"description":{"en":"Universal review site. RDF-based API, SPARQL endpoint."},"_id":"revyu","title":"Revyu.com - Review Anything"},{"description":{"en":"African Traditional Medicine Ontology (ATMO) describes the actors' function (healer, fetishist or soothsayer); the different types of proposed process treatment, the symptom's roles and the disease consideration."},"_id":"bioportal-atmo","title":"African Traditional Medicine"},{"description":{"en":"OntoDM is a generic ontology for the domain of data mining. The ontology includes the information processing processes that occur in the domain of data mining, participants in the processes and their specifications. OntoDM is highly transferable and extendable due to its adherence to accepted standards, and compliance with existing ontology resources. The generality in scope allows wide number of applications of the ontology, such as semantic annotation of data mining scenarios, ontology based support for QSARs, etc."},"_id":"bioportal-ontodm","title":"Ontology of Data Mining"},{"description":{"en":"The Facility Registry Service (FRS) provides quality facility data to support EPA's mission of protecting human health and the environment."},"_id":"epa-frs","title":"EPA-FRS"},{"description":{"en":"Neural ElectroMagnetic Ontologies (NEMO) describe classes of event-related brain potentials (ERP) and their properties, including spatial, temporal, and functional (cognitive/behavioral) attributes, and data-level attributes (acquisition and analysis parameters). Working (unstable), Release (stable), and Old (archival) versions of NEMO can be found on sourceforge: http://nemoontologies.svn.sourceforge.net/viewvc/nemoontologies/ontologies/."},"_id":"bioportal-nemo_x1","title":"Neural ElectroMagnetic Ontologies"},{"description":{"en":"RDF version of the Apertium bilingual dictionary EN-ES. The original dataset (in LMF) comes from http://hdl.handle.net/10230/17110 . The RDF version of the lexica is modelled using lemon (http://lemon-model.net/) and the translation module (http://purl.org/net/translation). More about the Apertium RDF dictionaries at http://linguistic.linkeddata.es/apertium/\r\n\r\n"},"_id":"apertium-rdf-en-es","title":"Apertium RDF EN-ES"},{"description":{"en":"Covid-on-the-Web Dataset is an RDF dataset that provides two main knowledge graphs produced by analyzing the scholarly articles of the COVID-19 Open Research Dataset (CORD-19, https://www.semanticscholar.org/cord19), a resource of articles about COVID-19 and the coronavirus family of viruses:\n\n(1) the CORD-19 Named Entities Knowledge Graph describes named entities identified and disambiguated by NCBO BioPortal annotator, Entity-fishing and DBpedia Spotlight.\n(2) the CORD-19 Argumentative Knowledge Graph describes argumentative components and PICO elements extracted from the articles by the Argumentative Clinical Trial Analysis platform (ACTA).\n\nA description of the dataset, in the Turtle format, as well as examples are provided in https://github.com/Wimmics/CovidOnTheWeb/tree/master/dataset.\n\nCovid-on-the-Web Dataset is an initiative of the Wimmics team, I3S laboratory, University Côte d'Azur, Inria, CNRS."},"_id":"Covid-on-the-Web","title":"Covid-on-the-Web Dataset"},{"description":{"en":"Groundbreaking biomedical research requires access to cutting edge scientific resources; however such resources are often invisible beyond the laboratories or universities where they were developed. eagle-i is a national research resource discovery platform to help biomedical scientists search for and find previously invisible, but highly valuable, resources. \r\nResource descriptions collected at each participating institution are freely available as linked open data."},"_id":"eagle-i-ohsu","title":"eagle-i @ Oregon Health and Science University"},{"description":{"en":"VIVO has been funded by NIH to create a semantic Facebook for scientist. It utilizes Semantic Web technologies to model scientists and provides federated search to enhance the discovery of researchers and collaborators across the country. The PI is the lead for the VIVO ontology team that is developing a core ontology for modeling scientists, publications, resources, grants, locations, and services. There are 236 classes in VIVO core version 1.0 ontology with 278 object properties and 222 data properties, incorporating classes from popular ontologies, such as BIBO, Dublin Core, Event, FOAF, geopolitical, and SKOS. VIVO data is based on high quality personnel data for VIVO partner institutions (i.e., University of Florida, Cornell University, Indiana University, Washington University, Weill Cornell Medical College, Scripps, and Ponce School of Medicine) that comes primarily from faculty annual reports, with additional publication data from Scopus and PubMed. VIVO data is for scientists with a focus on research (i.e., educational background, publications, expertise, grants), teaching (i.e., courses, seminars, training), and service (i.e., organizing conferences, editorial boards, other community services).\r\n\r\nIndividual packages are available:\r\n\r\n* package:vivo-cornell-university\r\n* package:vivo-indiana-university\r\n* package:vivo-university-of-florida"},"_id":"vivo","title":"VIVO"},{"description":{"en":"StatusNet instance hosted at http://my-status.tk"},"_id":"statusnet-my-status-tk","title":"statusnet-my-status-tk"},{"description":{"en":"Mesures de certains polluants dans des villes à travers le monde"},"_id":"Qualité_de_l'air_dans_le_monde","title":"Qualité de l'air dans le monde"},{"description":{"en":"Groundbreaking biomedical research requires access to cutting edge scientific resources; however such resources are often invisible beyond the laboratories or universities where they were developed. eagle-i is a national research resource discovery platform to help biomedical scientists search for and find previously invisible, but highly valuable, resources. \r\nResource descriptions collected at each participating institution are freely available as linked open data.\r\nSee: http://www.eagle-i.net/"},"_id":"eagle-i-hunter-cuny","title":"eagle-i @ Hunter College"},{"description":{"en":"Reference data for linked UK government data:\r\n\r\n* People\r\n* Departments\r\n* Namespace for various time intervals (separate sub-package package:data-gov-uk-time-intervals)\r\n\r\n### Linked Data API\r\n\r\nRoots:\r\n\r\nhttp://reference.data.gov.uk/doc/department\r\nhttp://reference.data.gov.uk/doc/mp"},"_id":"reference-data-gov-uk","title":"reference.data.gov.uk"},{"description":{"en":"This ontology contains entities such as: datatype, datatype generator, datatype qualiy and others giving the possibility to represent arbitrary complex datatypes. This is an important fact for a general data mining ontology that wants to represent and query over modelling algorithms for mining structured data. \n\nThe ontology was first developed under the OntoDM (Ontology of Data Mining is available at http://kt.ijs.si/panovp/OntoDM) ontology, but for generality and reuse purpose it was decided to export it as a separate ontology. Additionaly, the OntoDT ontology is based on and ISO/IEC 11404 (http://www.iso.org/iso/catalogue_detail.htm?csnumber=39479) standard and can be reused used independently by any domain ontology that requires representation and reasoning about general purpose datatypes."},"_id":"bioportal-ontodt","title":"Ontology of General Purpose Datatypes"},{"description":{"en":"The General Formal Ontology (GFO) is a top-level ontology integrating objects and processes."},"_id":"bioportal-gfo","title":"General Formal Ontology"},{"description":{"en":"A basic vertebrate anatomy derived mainly from FMA. "},"_id":"bioportal-basic-vertebrate-gross-anatomy","title":"Basic Vertebrate Anatomy"},{"description":{"en":"The IPTC not only provides news exchange formats to the news industry but also creates and maintains sets of concepts to be assigned as metadata values to news objects like text, photographs, graphics, audio- and video files and streams. This allows for a consistent coding of news metadata over the course of time - that's the reason why we call them IPTC NewsCodes.\n\nThe universe of NewsCodes is currently split into many different sets - taxonomies - for increased manageability as topics usually relate to a specific area. A taxonomy is also likely to be used exclusively in a specific metadata property of a news exchange format.\n\nTo provide an easy overview of our taxonomies further we grouped them into four main areas:\n\n* Descriptive NewsCodes: This is a group of taxonomies to describe the content of news items, including the key subject classification, IPTC Media Topics (which takes over from the previous IPTC Subject Codes).\n* Administrative NewsCodes: This is a group of taxonomies for proper administration of news items.\n* Transmission NewsCodes: This is a group of taxonomies with controlled values for the transmission process.\n* Exchange Format NewsCodes: This is a group of taxonomies with values to support specific functionalities of the different IPTC news exchange format standards. NewsML 1.x, NewsML-G2, EventsML-G2 and SportsML-G2 make use of this feature. \n\nEach NewsCodes vocabulary can be referenced via our site, downloaded as a NewsML-G2 Knowledge Item, or downloaded in SKOS format (with IKOS extensions) in RDF/XML , RDF/Turtle and JSON-LD.\n\nFind more details about our taxonomies on the [Overview page](https://iptc.org/standards/newscodes/).\n\nAny NewsCode provided by the IPTC can be used at any stage of a news workflow without any royalty fee. But if one includes IPTC NewsCodes into an application the intellectual property and the copyright of the IPTC must be explicitly included.\n"},"_id":"iptc-newscodes","title":"IPTC NewsCodes"},{"description":{"en":"This site defines Linked Data compatible URIs for major institutions and bodies of the European Union that can be used as identifiers in EU-related datasets. \r\n\r\nhttp://institutions.publicdata.eu/\r\n\r\n"},"_id":"eu-institutions","title":"Institutions and Bodies of the European Union"},{"description":{"en":"Presents some of the results of the LOD2 PUBLINK activity in cooperation with the AKSW group and the group of the Neue Deutsche Biographie of the Historical Commission at the Bavarian Academy of Sciences and Humanities. Within this project meta-data about 46,000 biographies and related 42,000 additional people and 12,000 locations has been made available as Linked Data and RDF triple. We used the vocabulary of the German National Library for the GND and adapted it by a few additional classes and relations. In addition to the representation in RDF, we offer a OntoWiki instance to provide the ability for browsing an querying the dataset. With the help of the Relationshipfinder tool relations between two or more persons, may visualized using this SPARQL endpoint. "},"_id":"deutsche-biographie","title":"Deutsche Biographie"},{"description":{"en":null},"_id":"opendatacommunities-households-projections-population","title":"opendatacommunities-households-projections-population"},{"description":{"en":""},"_id":"webnmasunotraveler","title":"webnmasunotraveler"},{"description":{"en":"Universal Dependencies is a project that seeks to develop cross-linguistically consistent treebank annotation for many languages, with the goal of facilitating multilingual parser development, cross-lingual learning, and parsing research from a language typology perspective. The annotation scheme is based on (universal) Stanford dependencies (de Marneffe et al., 2006, 2008, 2014), Google universal part-of-speech tags (Petrov et al., 2012), and the Interset interlingua for morphosyntactic tagsets (Zeman, 2008).\r\n\r\nThis dataset refers to UD's Finnish-FTB treebank.\r\n"},"_id":"universal-dependencies-treebank-finnish-ftb","title":"Universal Dependencies Treebank Finnish-FTB"},{"description":{"en":"RDF version of the Apertium bilingual dictionary EN-ES The original dataset (in LMF) comes from http://hdl.handle.net/10230/17096. The RDF version of the lexica is modelled using lemon (http://lemon-model.net/) and the translation module (http://purl.org/net/translation). More about the Apertium RDF dictionaries at http://linguistic.linkeddata.es/apertium/"},"_id":"apertium-rdf-en-ca","title":"Apertium RDF EN-CA"},{"description":{"en":"Agendas of institutions of public power"},"_id":"cz-ovm-agendas","title":"Agendas of institutions of public power of the Czech Republic"},{"description":{"en":"[Namespace for patent applications](http://patents.data.gov.uk/doc/application) from data.gov.uk. This data comes from the BIS dataset.\r\n\r\nPart of package:data-gov-uk"},"_id":"patents-data-gov-uk","title":"patents.data.gov.uk"},{"description":{"en":"Mirror of various RDF and Linked Data from around the Web, as well as data extracted using Virtuoso Sponger from web pages. Primarily GoodRelations data."},"_id":"openlink-lod-cache","title":"OpenLink Software LOD Cache"},{"description":{"en":"Categories and terms used to classify content (documents, images, etc) in electronic content repositories for life science / BioPharma. Initial version contains content model for use with clinical trial electronic Trial Master Files or eTMF's. A Content model contains content classification categories (classes) and metadata properties (data properties). Metadata Properties are shown as a class for convenience. In implementation, metadata properties should be assigned to each Content Type. Instances of Content Types can contain actual content items (documents, etc). The CareLex Ontology is described in specification published at www.CareLex.org/publications."},"_id":"bioportal-carelex","title":"CareLex"},{"description":{"en":"Data cube containing statistical data about job applicants in regions of Czech republic according to Czech Statistical Office."},"_id":"cz-czso-job-applicants","title":"Job applicants in regions of Czech Republic"},{"description":{"en":null},"_id":"yso-fi-ysa","title":"yso-fi-ysa"},{"description":{"en":"sbregrsg"},"_id":"fv","title":"fvdb"},{"description":{"en":"CAOontology is designed for supporting the COG enrichment study by using Fisher's exact test"},"_id":"bioportal-cao","title":"CAO"},{"description":{"en":"Universal Dependencies is a project that seeks to develop cross-linguistically consistent treebank annotation for many languages, with the goal of facilitating multilingual parser development, cross-lingual learning, and parsing research from a language typology perspective. The annotation scheme is based on (universal) Stanford dependencies (de Marneffe et al., 2006, 2008, 2014), Google universal part-of-speech tags (Petrov et al., 2012), and the Interset interlingua for morphosyntactic tagsets (Zeman, 2008).\r\n\r\nThis dataset refers to UD's Japanese treebank.\r\n"},"_id":"universal-dependencies-treebank-japanese","title":"Universal Dependencies Treebank Japanese"},{"description":{"en":"Universal Dependencies is a project that seeks to develop cross-linguistically consistent treebank annotation for many languages, with the goal of facilitating multilingual parser development, cross-lingual learning, and parsing research from a language typology perspective. The annotation scheme is based on (universal) Stanford dependencies (de Marneffe et al., 2006, 2008, 2014), Google universal part-of-speech tags (Petrov et al., 2012), and the Interset interlingua for morphosyntactic tagsets (Zeman, 2008).\r\n\r\nThis dataset refers to UD's Kazakh treebank.\r\n"},"_id":"universal-dependencies-treebank-kazakh","title":"Universal Dependencies Treebank Kazakh"},{"description":{"en":"aA collection of accepted Papers at LREC2014 and related Workshops"},"_id":"a-collection-of-papers-for-lrec2014-and-related-workshops","title":"A collection of Papers for LREC2014 and related Workshops"},{"description":{"en":"Multispecies fish anatomy ontology. Originally seeded from ZFA, but intended to cover terms relevant to other taxa"},"_id":"bioportal-tao","title":"Teleost Anatomy Ontology"},{"description":{"en":"Betonavimo darbai, namu statyba, pamatu irengimas, stogu dengimas"},"_id":"Vyvasta","title":"Statybu imone - Vyvasta"},{"description":{"en":"Data extracted from facebook interest groups of roadkilled and moth observation."},"_id":"crowdsourcing-fb","title":"crowdsourcing-fb"},{"description":{"en":"The catalogue of the Biblioteca Virtual Miguel de Cervantes contains about 200,000 records which were originally created in compliance with the MARC21 standard.\n\nThe database content has been later mapped to RDF triples which employ mainly the RDA vocabulary (Resource Description and Access) to describe the entities, as well as their properties and relationships."},"_id":"BVMC","title":"Biblioteca Virtual Miguel de Cervantes"},{"description":{"en":"ICPC-2 PLUS"},"_id":"bioportal-icpc2p","title":"ICPC-2 PLUS"},{"description":{"en":"Published in 2009, t4gm.info was a Linked Data rendering in RDFa of the Library of Congress' Thesaurus for Graphic Materials. It is now an early example of [a linked data set that has been permanently removed from the Web][1], since it has been superceded by the U.S. Library of Congress' own [Thesaurus for Graphic Materials][2], now provided as part of the Library of Congress's linked data services. t4gm.info was unpublished in 2012.\r\n\r\n[This page][3] provides a brief [VoiD][4] description of the t4gm.info dataset and its relationship to the equivalent information at id.loc.gov, expressed in RDFa. In addition, this site provides a specific mapping of resources from t4gm.info to id.loc.gov as [a VoiD linkset][5]. Both the VoiD dataset and linkset descriptions can be retrieved through content negotiation in a variety of linked data formats (i.e., in either RDF/XML, Turtle, or N-Triples.) GET requests for t4gm.info concept resources are redirected as 301 Moved Permanently to the equivalent resource at id.loc.gov. GET requests for any other resources that were part of the original t4gm.info site are returned as 410 Gone.\r\n\r\n [1]: http://patterns.dataincubator.org/book/unpublish.html\r\n [2]: http://id.loc.gov/vocabulary/graphicMaterials.html\r\n [3]: http://www.t4gm.info\r\n [4]: http://www.w3.org/TR/void/\r\n [5]: http://www.t4gm.info/linkset\r\n [6]: http://bradleypallen.org\r\n [7]: http://thedatahub.org/en/dataset/t4gm-info"},"_id":"t4gm-info","title":"Thesaurus for Graphic Materials (t4gm.info)"},{"description":{"en":"Gipuzkoako zenbait herriren populazioaren jatorria"},"_id":"gipuzkoademografia","title":"Gipuzkoa Demografia"},{"description":{"en":"New etymological dictionary by Brill that covers the entire Latin lexicon of Indo-European origin. It consists of nearly 1900 entries, which altogether discuss about 8000 Latin lemmata. Only some information about P-I.E. and Proto-Italic roots is accessible via the LiLa Knowledge Base."},"_id":"EtymologicalDictionaryofLatin","title":"Etymological Dictionary of Latin in LiLa"},{"description":{"en":"PreLex provides access to documents regarding inter-institutional law of the European Union. The original website provides only access to the documents via search, whereas the extracted data also contains metadata for better filtering and querying possibilities. The data that was published as Linked Data in this task was not extracted from the original source, but from an already existing API for European Union legislation. If you want to browse the data, please use the links in the \"navigation box\" on the left side. Furthermore, it is possible to create your own SPARQL queries for obtaining lists of combined information.\r\nThis dataset (http://prelex.publicdata.eu/) was triplified and published by the research group AKSW (Agile Knowledge Engineering and Semantic Web). For further information about AKSW please visit our website."},"_id":"prelex","title":"PreLex"},{"description":{"en":"StatusNet instance hosted at http://keuser.fr"},"_id":"statusnet-keuser-fr","title":"statusnet-keuser-fr"},{"description":{"en":"An ontology showing ah hierarchy of persons in a university and subjects. It specifies a relationship between teachers and subjects and students and subjects."},"_id":"Shripriya_Dubey","title":"Person"},{"description":{"en":"Red songs are precious historical materials, reflecting the face of Chinese people in a specific historical period, praising the glorious achievements of the party and the motherland, praising the noble spirit of the people of all ethnic groups who are not afraid of hardships and hard struggle, and expressing their yearning for their hometown. At the same time, many songs reflect the historical events experienced by the party and the state in the development process, and praise a large number of proletarian revolutionaries and ordinary workers who have made great contributions to the prosperity of the country and the happiness of the people. At the same time, it attacked the oppression of imperialism and feudalism. These are still worth learning."},"_id":"Chinese_Red_Classic_Song_Linked_Data_Dataset","title":"Chinese Red Song Linked Data Dataset"},{"description":{"en":"The 2011 US congress people data, with ntriples format. Could benefit from connections to http://thedatahub.org/dataset/congresspedia"},"_id":"congresspeople","title":"2011 US Congress People"},{"description":{"en":"The Open Data Thesaurus is a collection of key concepts and entities, their definitions and semantic links. Following the principle of ?eat your own dog food? this thesaurus is available in machine-readable form based on open W3C standards and under a Creative Commons license. The thesaurus can thus be integrated into other applications, such as for creating mashups, or for indexing of documents. The thesaurus is available in English and German."},"_id":"open-data-thesaurus","title":"Open Data Thesaurus"},{"description":{"en":"**dati.camera.it - Linked Open Data della Camera dei deputati** \r\n A complete catalogue of digital data and documents of all legislatures, from I legislature of the Kingdom of Sardinia (1848) to the current legislature of the Republic.\r\n\r\n* Biographical data of persons\r\n* Deputies\r\n* Parliamentary Mandates\r\n* Parliamentary Bodies of the Chamber\r\n* Parliamentary Groups\r\n* Draft Bills\r\n* Acts of direction and control\r\n* Verbatim reports\r\n* Reports of the Councils and Committees\r\n* Votes"},"_id":"ocd","title":"Italian Chamber of Deputies - official dataset"},{"description":{"en":"duplicate of package:twc-logd"},"_id":"twc-data-gov","title":"TWC Data-gov"},{"description":{"en":"The SSO encodes agreement among experts about how Emergency Department (ED) chief complaints are grouped into syndromes of public health importance (consensus definitions). "},"_id":"bioportal-sso","title":"Syndromic Surveillance Ontology"},{"description":{"en":"This model corrects the proximity effect of the GF-1 satellite image with different proximity effect Windows, and analyzes the corrected image according to the spectral characteristics and image details."},"_id":"model","title":"Atmospheric Correction of High Resolution Optical Images model"},{"description":{"en":"Three RDF datasets:\r\n\r\n* Eurostat country codes\r\n* Eurostat NUTS statistical regions (2008)\r\n* Database of Eurostat-related legal acts\r\n\r\nEach is available as an RDF dump. URIs resolve directly into the RDF dump. The country codes are linked to Geonames, to package:fu-berlin-eurostat, and to Telegraphis (40 links each)."},"_id":"eurostat-rdf","title":"Eurostat RDF datasets"},{"description":{"en":"ROD is the EEA's reporting obligations database. It contains records describing environmental reporting obligations that countries have towards international organisations.\r\n\r\nROD is part of Reportnet. Reportnet is group of web applications and processes developed by the EEA to support international environmental reporting. \r\n"},"_id":"eea-rod","title":"EEA Reporting Obligations Database"},{"description":{"en":"RDF version of the Apertium bilingual dictionary EU-EN. The original dataset (in LMF) comes from http://hdl.handle.net/10230/22870 . The RDF version of the lexica is modelled using lemon (http://lemon-model.net/) and the translation module (http://purl.org/net/translation). More about the Apertium RDF dictionaries at http://linguistic.linkeddata.es/apertium/\r\n"},"_id":"apertium-rdf-eu-en","title":"Apertium RDF EU-EN"},{"description":{"en":"JRC-Names is a highly multilingual named entity resource for person and organisation names developed by the European Commission’s Joint Research Centre (JRC). JRC-Names consists of large lists of names and their many spelling variants (up to hundreds for a single person), including across scripts (Latin, Greek, Arabic, Cyrillic, Japanese, Chinese, etc.).\r\n\r\nThe resource is the by-product of the [Europe Media Monitor](http://emm.newsbrief.eu/overview.html) (EMM)) family of applications, which has been analysing up to 220,000 news reports per day, since 2004. EMM recognises names mentioned in the news in over twenty languages and decides automatically for each newly found name whether it belongs to a new entity or whether it is a spelling variant of a previously known entity. This resource allows EMM users to display news about people or organisations even if their names are spelt differently or if the news articles are written in different languages and scripts.\r\n\r\nThe new linked data edition, accessible through the European Union’s [Open Data Portal](https://open-data.europa.eu/en/data/dataset/jrc-names), offers more information compared to the previously released resource and tool, including: titles and function names that have been historically found next to the person mentions; information about the time period during which name variants and their titles were found; various frequency counts; as well as links to other linked datasets such as DBPedia.\r\n\r\nThe JRC-Names RDF representation is based on [lemon](http://lemon-model.net/) (Lexicon Model for Ontologies) and includes links towards [DBpedia](http://dbpedia.org/), [New York Times Open Data](http://data.nytimes.com/) and [Talk of Europe](http://linkedpolitics.ops.few.vu.nl). \r\n\r\nPrevious editions includes: the [original release](https://ec.europa.eu/jrc/en/language-technologies/jrc-names) by the JRC since September 2011 (consisting of name variant lists and accompanying software) and a first [linked data version](https://datahub.io/dataset/jrc-names-mlode) produced during the [MLODE](http://sabre2012.infai.org/mlode) 2012 workshop."},"_id":"jrc-names-ec","title":"JRC-Names"},{"description":{"en":"RDF version of the Apertium bilingual dictionary EU-ES. The original dataset (in LMF) comes from <http://hdl.handle.net/10230/17095> . The RDF version of the lexica is modelled using lemon (http://lemon-model.net/) and the translation module (http://purl.org/net/translation). More about the Apertium RDF dictionaries at http://linguistic.linkeddata.es/apertium/\r\n"},"_id":"apertium-rdf-eu-es","title":"Apertium RDF EU-ES"},{"description":{"en":"The e-government Ontology, submitted by Stamatis Theocharis, in partial fulfiment of the requirements for the degree of Doctor of Philosophy "},"_id":"EGovOntology","title":"E-Government Ontology"},{"description":{"en":"Analytics India Magazine (AIM) is a digital publication established in 2012, based in Bengaluru, India. It specializes in the domain of analytics, artificial intelligence, data science, and big data, providing a platform for deep technical knowledge and insights into the broader implications of technological advancements. AIM features a variety of content including articles, interviews, news, events, and research. It also supports a job portal specifically targeted at the analytics sector. The magazine has a substantial following and is recognized for its contribution to the analytics and technology community in India"},"_id":"AIM","title":"Analytics India Magazine"},{"description":{"en":"Groundbreaking biomedical research requires access to cutting edge scientific resources; however such resources are often invisible beyond the laboratories or universities where they were developed. eagle-i is a national research resource discovery platform to help biomedical scientists search for and find previously invisible, but highly valuable, resources. \r\nResource descriptions collected at each participating institution are freely available as linked open data."},"_id":"eagle-i-vanderbilt","title":"eagle-i @ Vanderbilt University"},{"description":{"en":null},"_id":"taxonconcept-occurences","title":"taxonconcept-occurences"},{"description":{"en":"An alternative to http://id.loc.gov/: includes a SPARQL endpoint, faceted search"},"_id":"lcsubjects","title":"LCSubjects.org Library of Congress Subject Headings"},{"description":{"en":"StatusNet instance hosted at http://glou.org"},"_id":"statusnet-glou-org","title":"statusnet-glou-org"},{"description":{"en":"Towards Knowledge Graph Creation from Thousands of Wikis"},"_id":"dbkwik","title":"DBkWik"},{"description":{"en":"Japanese Textbook LOD project provides a LOD dataset for textbooks published in Japan up to now since the 7th curriculum guideline enforced in 1992, as well as the related information such as the subject areas, the subjects, and the curriculum guidelines. As of March 2018, the dataset contains bibliographic information for about 8,000 textbook titles."},"_id":"jp-textbook","title":"Japanese Textbook LOD"},{"description":{"en":"Irish Government Data. Includes:\r\n\r\n* Irish Census Data from Central Statistics Office\r\n* Service Indicators of Ireland"},"_id":"data-gov-ie","title":"DataGovIE - Irish Government Data"},{"description":{"en":"StatusNet instance hosted at http://samnoble.org"},"_id":"statusnet-samnoble-org","title":"statusnet-samnoble-org"},{"description":{"en":"Universal Dependencies is a project that seeks to develop cross-linguistically consistent treebank annotation for many languages, with the goal of facilitating multilingual parser development, cross-lingual learning, and parsing research from a language typology perspective. The annotation scheme is based on (universal) Stanford dependencies (de Marneffe et al., 2006, 2008, 2014), Google universal part-of-speech tags (Petrov et al., 2012), and the Interset interlingua for morphosyntactic tagsets (Zeman, 2008).\r\n\r\nThis dataset refers to UD's Arabic treebank.\r\n"},"_id":"universal-dependencies-treebank-arabic","title":"Universal Dependencies Treebank Arabic"},{"description":{"en":"Universal Dependencies is a project that seeks to develop cross-linguistically consistent treebank annotation for many languages, with the goal of facilitating multilingual parser development, cross-lingual learning, and parsing research from a language typology perspective. The annotation scheme is based on (universal) Stanford dependencies (de Marneffe et al., 2006, 2008, 2014), Google universal part-of-speech tags (Petrov et al., 2012), and the Interset interlingua for morphosyntactic tagsets (Zeman, 2008).\r\n\r\nThis dataset refers to UD's Croatian treebank.\r\n"},"_id":"universal-dependencies-treebank-croatian","title":"Universal Dependencies Treebank Croatian"},{"description":{"en":"Bezpłatny i wygodny serwis poszukiwań korepetytora w Polsce. Znajdź nauczyciela w swoim mieście lub ucz się online. Korepetycje – Łatwy wybór korepetytora!"},"_id":"12323","title":"Korepetycje Buki"},{"description":{"en":"StatusNet instance hosted at http://russwurm.org"},"_id":"statusnet-russwurm-org","title":"statusnet-russwurm-org"},{"description":{"en":"Taiwan geographic name (台灣地名) is obtained from Taiwanese Open Data Platform. The dataset links are http://data.gov.tw/node/40281, http://data.gov.tw/node/40456, http://data.gov.tw/node/40454. This service aims to provide unique IDs for referencing Taiwan place names"},"_id":"linked-taiwan-geo-names","title":"Linked Taiwan Geo-Names"},{"description":{"en":"This dataset contains agriculture related lands (hilucs_code<200) & for main cities in Czech Republic (centers of NUTS3 regions), Poland (agglomeration areas from Urban Atlas) and Spain (agglomeration areas from Urban Atlas) \n"},"_id":"Urban_Atlas_Dataset","title":"Urban Atlas dataset @PSNC"},{"description":{"en":"South China Botanical Garden of the Chinese Academy of Sciences, formerly known as the National Sun Yat-sen University Institute of Agricultural and Forestry Botany, by the famous botanist Chen Huanyong academician founded in 1929. On May 30, 2022, the State Council approved the establishment of the South China National Botanical Garden based on the South China Botanical Garden of the Chinese Academy of Sciences. The whole garden consists of three parks.\nGuangdong Botanical Journal Electronic Edition 92,027 Triples The dataset is compiled by the Key Laboratory of Data Botanical Garden of Guangdong Province through the electronic \"Guangdong Botanical Record\", including Latin name, Chinese name, family and genus information, plant description, distribution, origin, and use, and then collated, audited, and analyzed, and standardized the plant name information, processed the geographic location information, and added the geographic coordinate information, in order to achieve the data standard associated with other data, and to share the data free of charge.\nDongguan Forest Economy Plant List 8,285 Triples On the basis of a comprehensive survey of Dongguan's municipal area, 735 species of new and superior understory economic plants in Guangdong Province were collected, listing the botanical names, Latin names, families, genera, uses, and so on.\nChina Energy Plant Dataset 57,099 Triples The South China Botanical Garden, part of the Chinese Academy of Sciences, has gathered valuable scientific data resources over 50 years, particularly through the \"Scientific and Technological Fundamental Special Project - Survey, Collection, and Preservation of Non-food Diesel Energy Plants and Related Microbial Resources.\" This data is essential for establishing China's non-food biodiesel feedstock plant feasibility system and oil utility standards. It will play a pivotal role in identifying high-quality energy plant resources, ensuring energy security, and supporting China's economic and environmental goals."},"_id":"SCBG-Data","title":"SCBG Data"},{"description":{"en":"The Slovak wordnet as published as part of the Open Multilingual WordNet. The goal of Open Multilingual WordNet is to make it easy to use wordnets in multiple languages. The individual wordnets have been made by many different projects and vary greatly in size and accuracy. We have (i) extracted and normalized the data, (ii) linked it to Princeton WordNet 3.0 and (iii) put it in one place. The Open Multilingual Wordnet and its components are open: they can be freely used, modified, and shared by anyone for any purpose. "},"_id":"omwn-slk","title":"Slovak WordNet (as part of Open Multilingual WordNet)"},{"description":{"en":"A dataset that provides metadata information about anime."},"_id":"betweenourworlds","title":"Between Our Worlds"},{"description":{"en":"Institutional research plans of R&D from http://www.isvav.cz/ ."},"_id":"cz-vavai-research-plans","title":"Institutional research plans"},{"description":{"en":"Dataset contains linked data version of the registry of territorial identification, addresses and real estate of the Czech Republic"},"_id":"cz-ruian","title":"Registry of territorial identification, addresses and real estate of the Czech Republic"},{"description":{"en":"Romanian Wordnet in Turtle-RDF format"},"_id":"racai-llod-romanian-wordnet-ttl","title":"Turtle-RDF Romanian Wordnet"},{"description":{"en":"The United Nations office on Drugs and Crime (UNODC) provides statistical data on criminal justice on a regular basis. The data is provided as Excel sheets, which can be downloaded from the website.\r\nIf you want to browse the data, please use the links in the \"navigation box\" on the left side. Furthermore, it is possible to create your own SPARQL queries for obtaining lists of combined information.\r\nThis dataset (http://unodc.publicdata.eu/) was triplified and published by the research group AKSW (Agile Knowledge Engineering and Semantic Web). For further information about AKSW please visit our website."},"_id":"unodc","title":"UNODC - Statistics on criminal justice"},{"description":{"en":"The \"LD-project\" deals with the creation of cultural Open Linked Data (LOD), based on the artifacts of Greek Children Art Museum, in Greece, Athens. It was created in the frame of Master Thesis of MSc. students, Marini Efstathia and Chondrogianni Maria, in Cultural Informatics postgraduate program at the Department of Cultural Technology and Communication of the University of the Aegean.\n\nLinks to published datasets : \nWikidata: 151 links,\nDBpedia: 489 links,\nWikiArt: 17 links,\nMoMA: 2 links,\nOthers (Wikimedia Commons, Benaki Museum, SearchCulture.org, etc.) with 1 link each: 15 links,\nTotal 674,\n\nDCAT Description: https://www.childrensartmuseum.gr/LD-project/"},"_id":"greekchildrensartmuseum","title":"Greek Children Art Museum dataset"},{"description":{"en":"#### dati.isprambiente.it - ISPRA Linked Open Data - The Italian Data Buoy Network (Rete Ondametrica Nazionale - RON) \r\n"},"_id":"ispra-lod-ron","title":"ISPRA - The Italian Data Buoy Network (RON)"},{"description":{"en":"Tharawat dataset, Knowledge Graph built using WordLift from the website https://www.tharawat-magazine.com/"},"_id":"tharawat-magazine-com","title":"tharawat magazine"},{"description":{"en":"Contains descriptions of a variety of photographic images, using properties defined by the Lightweight Image Ontology."},"_id":"imagesnippets","title":"Imagesnippets Image Descriptions"},{"description":{"en":"A German-centric thesaurus about environmental protection, maintained by the Federal Environment Agency, Germany. Includes English translations of most terms."},"_id":"umthes","title":"German environmental thesaurus UMTHES"},{"description":{"en":"The World Bank data published using the Linked Data design principles. Contains statistical observations and code lists from World Development Indicators, World Bank Finances, World Bank Projects and Operations, and World Bank Climate Change data."},"_id":"world-bank-linked-data","title":"World Bank Linked Data"},{"description":{"en":"Medicinal products marketed in Czech Republic according to the State Institute for Drug Control in Czech Republic"},"_id":"cz-sidc-drugs","title":"Medicinal products marketed in Czech Republic"},{"description":{"en":"### Description\r\n\r\nAn API for [Slideshare.net](http://slideshare.net/), it provides RDF metadata for the presentations uploaded to Slideshare. The RDF representation uses the SIOC ontology.\r\n\r\n"},"_id":"slideshare2rdf","title":"Slideshare2RDF Server"},{"description":{"en":"EuroSciVoc is a multilingual taxonomy that represents all the main fields of science that were discovered from CORDIS content and organised through a semi-automatic process based on NLP techniques. It contains more than 1000 categories in 6 languages (English, French, German, Italian, Polish and Spanish) and each category is enriched with relevant keywords extracted from the textual description of CORDIS projects.\n\nEuroSciVoc is managed by the Publications Office of the EU, and is currently used by the CORDIS website. It is specifically developed as a reference vocabulary for the Open Science community and is aligned with Linked Open Data standards."},"_id":"ESV","title":"The European Science Vocabulary (EuroSciVoc)"},{"description":{"en":"VIVO is a research-focused discovery tool that enables collaboration among scientists across all disciplines.\r\n\r\nBrowse or search information on people, departments, courses, grants, and publications."},"_id":"vivo-scripps-research-institute","title":"VIVO Scripps Research Institute"},{"description":{"en":"### Description\r\n\r\nConversion of various NASA datasets into RDF, starting \r\nwith the spacecraft data from the NSSDC master catalog.\r\n\r\nThis dataset consists of a conversion of the NASA NSSDC Master Catalog and extracts of the Apollo By Numbers statistics.\r\n\r\nCurrently the data consists of all of the Spacecraft from the NSSDC database which is a comprehensive list of orbital, suborbital, and interplanetary spacecraft launches dataing from the 1950s to the present day. Entries are not limited to NASA missions, but include spacecraft launched by various agencies from around the globe.\r\n\r\n*Note* this dataset is no longer updated, it was taken off-line during the shutdown of Kasabi. A dump of the dataset has been [uploaded to the Internet Archive](http://archive.org/details/kasabi)"},"_id":"data-incubator-nasa","title":"NASA Space Flight & Astronaut data in RDF"},{"description":{"en":"The DrugBank database is a bioinformatics and chemoinformatics resource that combines detailed drug (i.e. chemical, pharmacological and pharmaceutical) data with comprehensive drug target (i.e. sequence, structure, and pathway) information."},"_id":"bio2rdf-drugbank","title":"Bio2RDF::Drugbank"},{"description":{"en":"COLINDA -COnference LInked DAta \r\nThis data set is linked to GeoNames, DBPedia and DBLP (L3S).\r\nIncludes information about scientific conferences and their location including start and end times\r\n"},"_id":"colinda","title":"COLINDA - Conference Linked Data"},{"description":{"en":"Groundbreaking biomedical research requires access to cutting edge scientific resources; however such resources are often invisible beyond the laboratories or universities where they were developed. eagle-i is a national research resource discovery platform to help biomedical scientists search for and find previously invisible, but highly valuable, resources. \r\nResource descriptions collected at each participating institution are freely available as linked open data.\r\nSee: http://www.eagle-i.net/"},"_id":"eagle-i-cau","title":"eagle-i @ Clark Atlanta University"},{"description":{"en":"The sloWNet wordnet as published as part of the Open Multilingual WordNet. The goal of Open Multilingual WordNet is to make it easy to use wordnets in multiple languages. The individual wordnets have been made by many different projects and vary greatly in size and accuracy. We have (i) extracted and normalized the data, (ii) linked it to Princeton WordNet 3.0 and (iii) put it in one place. The Open Multilingual Wordnet and its components are open: they can be freely used, modified, and shared by anyone for any purpose. "},"_id":"omwn-slv","title":"sloWNet WordNet (as part of Open Multilingual WordNet)"},{"description":{"en":"Information about performing arts related content"},"_id":"eclap","title":"ECLAP"},{"description":{"en":""},"_id":"rkb-explorer-newcastle","title":"University of Newcastle upon Tyne (RKBExplorer)"},{"description":{"en":"Anatomical Therapeutic Chemical Classification System"},"_id":"cz-eh-1-atc","title":"ATC groups"},{"description":{"en":"vHOG is a multi-species anatomical ontology for the vertebrate lineage, developed as part of the Bgee project.\nThe mapping to species-specific anatomical ontologies is provided as a separated file:\nhttp://bgee.unil.ch/download/organ_association_vHOG.txt\nThis mapping represents homology-strict relationships, in the sense of HOM:0000007 \"historical homology\". Each mapping has been manually reviewed, and we provide confidence codes and references when available."},"_id":"bioportal-vhog","title":"vertebrate Homologous Organ Groups"},{"description":{"en":"The Software Ontology (SWO) has the scope of describing types of software used in Bioinformatics. The SWO covers areas such as the software type, the manufacturer of the software, the input and output data types and the uses (i.e. objectives) the software can be put to. The SWO intends to use BFO as an upper level ontolgoy and subclasses types from the Ontology of Biomedical Investigations. Contact James Malone for info: malone@ebi.ac.uk"},"_id":"bioportal-swo","title":"Software Ontology"},{"description":{"en":"The Santillana Guide dataset represents the content of the Santillana guide (owned by Prisa Digital) as Linked Data. The guide contains information about more than 1500 Spanish restaurants and more than 1500 Spanish hotels. The ontology that has been used for publishing the dataset models the tourist domain represented in the project, and partially reuses the Infutur ontology. The dataset has been published within the WEBN+1 project and it constitutes a complement to El Viajero's tourism dataset. Some restaurants from the Open Data Euskadi initiative have been integrated in the dataset. "},"_id":"santillana_guide_dataset","title":"Santillana Guide Dataset"},{"description":{"en":"This dataset contains summary types of Czech institutions of public power"},"_id":"cz-souhrnne-typy-ovm","title":"Summary types of Czech institutions of public power"},{"description":{"en":"The statistical data published on riese was originally published by Eurostat. \r\n\r\n### Openness: Open (?)\r\n\r\n[About page](http://riese.joanneum.at/about.html) has cc-by on page but not clear whether this applies to data. Page also states:\r\n\r\n> The statistical data published on riese was originally published by Eurostat. Provided that the source is acknowledged, Eurostat data may be reproduced under the conditions specified in the general copyright notice."},"_id":"riese","title":"RDFizing and Interlinking the EuroStat Data Set Effort"},{"description":{"en":"Export of UBY to lemon format"},"_id":"lemonuby","title":"lemonUby"},{"description":{"en":"StatusNet instance hosted at http://tl1n.com"},"_id":"statusnet-tl1n-com","title":"statusnet-tl1n-com"},{"description":{"en":"The Cancer Chemoprevention Ontology constitutes a vocabulary that is able to describe and semantically interconnect the different paradigms of the cancer chemoprevention domain."},"_id":"bioportal-canco","title":"Cancer Chemoprevention Ontology"},{"description":{"en":"Ontology for host pathogen interactions in farmed animals"},"_id":"bioportal-hpio","title":"Host Pathogen Interactions Ontology"},{"description":{"en":"Data cube containing statistical data with with deaths by selected causes of death in regions of Czech republic according to Czech Statistical Office."},"_id":"cz-czso-deaths-by-selected-causes-of-death","title":"Deaths by selected causes of death in regions of Czech Republic"},{"description":{"en":"The WOLF wordnet as published as part of the Open Multilingual WordNet. The goal of Open Multilingual WordNet is to make it easy to use wordnets in multiple languages. The individual wordnets have been made by many different projects and vary greatly in size and accuracy. We have (i) extracted and normalized the data, (ii) linked it to Princeton WordNet 3.0 and (iii) put it in one place. The Open Multilingual Wordnet and its components are open: they can be freely used, modified, and shared by anyone for any purpose. "},"_id":"omwn-fra","title":"WOLF WordNet (as part of Open Multilingual WordNet)"},{"description":{"en":"StatusNet instance hosted at http://ldn-fai.net"},"_id":"statusnet-ldn-fai-net","title":"statusnet-ldn-fai-net"},{"description":{"en":"Geo Spatial World dataset for English resources, built with WordLift from the website https://www.geospatialworld.net/"},"_id":"geospatialworld-net","title":"Geospatial World "},{"description":{"en":"A structured controlled vocabulary for the source of an enzyme. It comprises terms for tissues, cell lines, cell types and cell cultures from uni- and multicellular organisms."},"_id":"bioportal-bto","title":"BRENDA tissue / enzyme source"},{"description":{"en":"A taxonomic classification of living organisms and associated artifacts for their controlled description within the context of databases."},"_id":"bioportal-ncbitaxon","title":"NCBI organismal classification"},{"description":{"en":"Open linked data from the Library and Museum of ARTIUM"},"_id":"aliada-scanbit-net","title":"aliada-scanbit-net"},{"description":{"en":"Linked Life Data is aggregation of more than 25 popular biomedical data sources.\r\n\r\n### DOWNLOADS\r\nhttp://linkedlifedata.com/sources\r\n\r\n### SPARQL\r\nhttp://linkedlifedata.com/sparql"},"_id":"linked-life-data","title":"Linked Life Data"},{"description":{"en":"EO metadata collected from the public Lesproject Micka registry (https://micka.lesprojekt.cz/en/), which includes information of over 100K geospatial datasets. Micka is a software for spatial data / services metadata management according to ISO, OGC and INSPIRE standards. It allows to retrieve the metadata in RDF forms using Geo-DCAT (an extension of DCAT) for the representation of geographic metadata compliant with the DCAT application profile for European data portals. As such metadata cannot be queried as Linked Data therefore the goal was to make it available in the form of Linked Data in order to enable its integration with other datasets, e.g., Open Land Use (OLU). The process for publication was straightforward: a dump of all the metadata in RDF format was generated from Micka, which was then loaded into the Virtuoso triplestore. Some exemplary SPARQL queries were then generated to identify connection points for integration, e.g., get OLU entries and their metadata given a municipal code and type of area (e.g., agricultural lands). "},"_id":"EO_metadata","title":"Micka (EO metadata) @PSNC"},{"description":{"en":"Lipid research is increasingly integrated within systems level biology such as lipidomics where lipid classification is required before appropriate annotation of chemical functions can be applied. The ontology describes the LIPIDMAPS nomenclature classification explicitly using description logics (OWL-DL). Lipid classes are organized hierarchically with the super-classes restricted by generic necessary conditions. More specific necessary conditions are used to define membership requirements for sub classes of lipid according to appropriate functional groups."},"_id":"bioportal-lipro","title":"Lipid Ontology"},{"description":{"en":"StatusNet instance hosted at http://linuxwrangling.com"},"_id":"statusnet-linuxwrangling-com","title":"statusnet-linuxwrangling-com"},{"description":{"en":"SECOLD contains structured source code facts from open source projects. It is developed to service source code mining, search and traceability research and tools by providing structural source code search over open source code on the Internet.\r\n\r\nIt has 1.5 billion facts extracted from more than 1 million source code file. SECOLD is connected to DBpedia, freebase and opencyc.\r\n\r\nIt extracts fine-grained facts from source code in several levels (e.g. presentation, syntax, and semantic).\r\n"},"_id":"secold","title":"Source Code Ecosystem Linked Data"},{"description":{"en":"The Prelinger Archives is a collection of films relating to U.S. cultural history, the evolution of the American landscape, everyday life and social history. It was physically located in New York City from 1982-2002 and is now in San Francisco.\r\n\r\nThe Archives was founded by Rick Prelinger in 1982 in order to preserve what he calls \"ephemeral\" films: films sponsored by corporations and organizations, educational films, and amateur and home movies. Typically, ephemeral films were produced to fulfill specific purposes at specific times, and many exist today only by chance or accident. About 65% of the Archive's holdings are in the public domain because their copyrights have expired, or because they were U.S. productions that were published without proper copyright notice.\r\n\r\nThis dataset consists of metadata about more than 2,000 public domain films that the Prelinger Archives have made available for unrestricted use via the Internet Archive.\r\n\r\n*Note* this dataset is no longer updated, it was taken off-line during the shutdown of Kasabi. A dump of the dataset has been [uploaded to the Internet Archive](http://archive.org/details/kasabi)"},"_id":"prelinger_archives","title":"Prelinger Archives"},{"description":{"en":"This dataset collects information on the entropy, enthalpy, temperature, pressure,et. al. that associated with phase change of compounds.And critical properties for compounds are also collected."},"_id":"chemdb-phaseTransition","title":"chemdb phase transition dataset"},{"description":{"en":"The Neural-Immune Gene Ontology (NIGO) is a subset of GO directed for neurological and immunological systems. NIGO was created by clipping those GO terms that are not associated to any gene in human, rat and mouse, and by clipping terms not found to be relevant to the neural and/or immune domains."},"_id":"bioportal-nigo","title":"Neural-Immune Gene Ontology"},{"description":{"en":" The primary focus of Enslaved.org is people—individuals who were enslaved, owned slaves, were connected to the slave trade, and worked to emancipate slaves."},"_id":"enslaved.org","title":"Enslaved.org"},{"description":{"en":"Labor law thesaurus covers all main areas of labor law, like the roles of employee and employer; legal aspects around labor contracts and dismissal; also co-determination and industrial action. Therefore, this thesaurus is interesting and relevant for all parties, who are dealing with labor law – professionals like specialized lawyers as well as for employees looking for definitions of legal terms. Linking to thematically similar thesauri (Linked Open Data paradigm) has already taken place and is therefore available as well. Thesauri are linked with\r\n\r\n* Standard Thesaurus für Wirtschaft, ZBW (zbw.eu/stw/)\r\n* Wikipedia / DBpedia\r\n* TheSoz from Leibniz Gesellschaft für Sozialwissenschaften (www.gesis.org)\r\n* EuroVoc - Multilingual Thesaurus of the European Union\r\n"},"_id":"german-labor-law-thesaurus","title":"German labor law thesaurus"},{"description":{"en":"This ontology was designed to help integrate species concepts with species occurrences, gene sequences, images, references and geographical information. See also Taxonconcept.org"},"_id":"bioportal-geospecies","title":"GeoSpecies Ontology"},{"description":{"en":"UniProtKB is the central hub for the collection of functional information on proteins, with accurate, consistent and rich annotation. In addition to capturing the core data mandatory for each UniProtKB entry (mainly, the amino acid sequence, protein name or description, taxonomic data and citation information), as much annotation information as possible is added. This includes widely accepted biological ontologies, classifications and cross-references, and clear indications of the quality of annotation in the form of evidence attribution of experimental and computational data.\r\n\r\n"},"_id":"uniprotkb","title":"UniProtKB"},{"description":{"en":"We built a computational diagnostic ontology containing 91 elements, including classes and sub-classes, which are required to conduct SR-MA (Systematic Review - Meta Analysis) for diagnostic studies, that will assist in standardized reporting of diagnostic articles. We also report high percentage of agreement among five observers as a result of the inter-observer agreement that we conducted among them to tag 13 articles using the diagnostic ontology. Moreover, we extend our existing repository CERR-N (Center of Excellence in Research Reporting in Neurosurgery) to include diagnostic studies."},"_id":"bioportal-diagnosticont","title":"Diagnostic Ontology"},{"description":{"en":""},"_id":"rkb-explorer-deploy","title":"DEPLOY (RKBExplorer)"},{"description":{"en":"**dati.camera.it - Linked Open Data della Camera dei deputati** \r\n**The BPR - Bibliografia del Parlamento italiano e degli studi elettorali** (Bibliography of the Italian Parliament and Electoral Studies) is a database of bibliographic references of books and articles in periodical journals addressing the history of the Italian Parliament and the history of elections. In particular the BPR provides references to studies on: \r\n\r\n* the Italian Parliament, from the concession of the Statuto Albertino (Albertine Statute) in 1848, the National Consultative Assembly and the Constituent Assembly;\r\n* elections (laws, procedures, results), with reference to general elections as from 1848. \r\n\r\nThe BPR addresses primarily studies in law, plus studies in political science, organisational science, political sociology, as well as related historiographical literature. In 2002 the BPR started reporting documents posted on the leading juridical websites. \r\nEach bibliographic reference is assigned one or more classification codes, which are taken from a directory of over 100 classifications organized into seven major fields. \r\nThe BPR is also a digital library updated non-stop. By using documents in the public domain or available thanks to agreements with private publishers, it provides a selection of full-text documents (monographs, judgements, articles from periodicals, contributions to miscellaneous works) attached to the bibliographic reference. "},"_id":"bpr","title":"BPR ? Bibliography of the Italian Parliament and electoral studies"},{"description":{"en":"This ontology covers the domain of social entities that are related to health care, such as demographic information (social entities for recording gender (but not sex) and marital status, for example) and the roles of various individuals and organizations (patient, hospital,etc.)"},"_id":"bioportal-omrse","title":"Ontology of Medically Related Social Entities"},{"description":{"en":"RDF version of the PubChem database."},"_id":"PubChem_RDF","title":"PubChem RDF"},{"description":{"en":"Digital media have enabled the access to unprecedented literary knowledge. Authors, readers, and scholars are now able to discover and share an increasing amount of information about books and their authors. However, these sources of knowledge are fragmented and do not adequately represent non-Western writers and their works. In this paper we present The World Literature Knowledge Graph, a semantic resource containing 194 , 346 writers and 965, 210 works, specifically designed for\nexploring facts about literary works and authors from different parts of the world. The knowledge graph integrates information about the reception of literary works gathered from 3 different communities of readers, aligned according to a single semantic model. The resource is accessible through an online visualization platform, which can be found at the following URL: https://literaturegraph.di.unito.it/3. This platform has been rigorously tested and validated by 3 distinct categories of experts who have found it to be highly beneficial for their respective work domains. These categories include teachers, researchers in the humanities, and professionals in the publishing industry. The feedback received from these experts confirms that they can effectively utilize the platform to enhance their work processes and achieve valuable outcomes."},"_id":"wl-kg","title":"The World Literature Knowledge Graph"},{"description":{"en":"Universal Dependencies is a project that seeks to develop cross-linguistically consistent treebank annotation for many languages, with the goal of facilitating multilingual parser development, cross-lingual learning, and parsing research from a language typology perspective. The annotation scheme is based on (universal) Stanford dependencies (de Marneffe et al., 2006, 2008, 2014), Google universal part-of-speech tags (Petrov et al., 2012), and the Interset interlingua for morphosyntactic tagsets (Zeman, 2008).\r\n\r\nThis dataset refers to UD's English-ESL treebank.\r\n"},"_id":"universal-dependencies-treebank-english-esl","title":"Universal Dependencies Treebank English-ESL"},{"description":{"en":"Au nom Legion Etrangere"},"_id":"LEGIJA_STRANACA","title":"U ime Legije"},{"description":{"en":"A structured controlled vocabulary of the anatomy and development of the African clawed frog (<i>Xenopus laevis</i>)."},"_id":"bioportal-xao","title":"Xenopus anatomy and development"},{"description":{"en":"The Ontology for Parasite LifeCycle (OPL) models the life cycle stage details of various parasites, including Trypanosoma sp., Leishmania major, and Plasmodium sp., etc. In addition to life cycle stages, the ontology also models necessary contextual details, such as host information, vector information, and anatomical location. OPL is based on the Basic Formal Ontology (BFO) and follows the rules set by the OBO Foundry consortium."},"_id":"bioportal-opl","title":"Ontology for Parasite LifeCycle"},{"description":{"en":null},"_id":"bio2rdf-omim-resources","title":"bio2rdf-omim-resources"},{"description":{"en":"StatusNet instance hosted at http://opensim-chat.eu"},"_id":"statusnet-opensim-chat-eu","title":"statusnet-opensim-chat-eu"},{"description":{"en":"An RDF vocabulary describing Finnish municipalities and many regional classifications, including \r\n\r\n* Centres for Economic Development, Transport and the Environment\r\n* Provinces\r\n* Regional State Administrative Agencies\r\n* Regions\r\n* Major regions\r\n* Statistical grouping of municipalities\r\n* Employment and economic development centres\r\n\r\nThe data is based on classifications by Statistics Finland. The format is SKOS-based, but extends SKOS by defining separate classes (subclasses of skos:Concept) for each entity type and similarly uses subproperties of SKOS properties to relate the entities.\r\n\r\nLinks to DBpedia and Wikipedia are also provided for the municipalities."},"_id":"finnish-municipalities","title":"Finnish municipalities and regional classifications"},{"description":{"en":"Ontology contains over 70.000 lexical entries of Croatian language. The ontology is daily improved in a cooperation with a Mathematical department of the University of Osijek in Croatia"},"_id":"ssf","title":"Lexicon of Syntactic and Semantic Framework"},{"description":{"en":"Physician Data Query (PDQ) Terminology is part of NCI's comprehensive cancer information database, which contains expert summaries on a wide range of cancer topics, a listing of some 30,000 cancer clinical trials from around the world, a directory of genetics services professionals, the NCI Dictionary of Cancer Terms, and the NCI Drug Dictionary."},"_id":"bioportal-pdq","title":"Physician Data Query"},{"description":{"en":"An annotated history of empirical studies on human cooperation in social dilemmas. Social Dilemmas are situations that involve a conflict of interests and people must choose between a behavior that is best for themselves and a behavior that is best for the collective. Cooperation is choosing to do a behavior that is best for the collective. CoDa contains six decades of studies on individual decision making in dyads and groups facing social dilemmas.The databank contains studies on human cooperation published in Chinese, English, and Japanese. Experts annotated these studies for 275 variables, including the quantitative results (effect sizes). We developed an ontology that defines and relates concepts in cooperation research and that can represent the relationships between individual study results. We have created an application that allows users to search the databank, and enables users to retrieve studies that test the relation of variables with cooperation, visualize these study results, and perform (1) meta-analyses, (2) meta-regressions, (3) estimates of publication bias, and (4) statistical power analyses for future studies."},"_id":"CoDa","title":"Cooperation Databank"},{"description":{"en":"Dewey.info is an experimental space for linked DDC data. The intention of the dewey.info prototype is to be a platform for Dewey data on the Web.\r\n\r\nIncluded as linked data are the DDC Summaries (the top three levels of the DDC) of Edition 22 in 11 languages and all assignable numbers of Abridged Edition 14 in three languages. Classification semantics are encoded in RDF using SKOS and other element vocabularies. \r\n\r\nEvery class also has an HTML representation (XHTML+RDFa) and several RDF serializations (RDF/XML, Turtle, JSON).\r\n\r\nA SPARQL endpoint is available.\r\n\r\nThe data is reusable under the Creative Commons BY-NC-ND license.\r\n"},"_id":"dewey_decimal_classification","title":"Dewey Decimal Classification (DDC)"},{"description":{"en":"Data exposed: Countries, continents, capitals, currencies collected from GeoNames and Wikipedia data.\r\n\r\nSize of dump and data set: <10k triples a piece\r\n\r\nNotes: Also has several SPARQL endpoints.\r\n\r\n### Openness\r\n\r\nSounds like the project is currently trying to resolve licensing issues:\r\n\r\n> We are looking into publishing data about country subdivisions, airports, and airlines, but it is dependent on resolving licensing issues (country subdivisions need to be scraped from Wikipedia, as ISO source data poses licensing issues; airports and airlines are licensed under AGPL, rather than a sensible data license)."},"_id":"telegraphis","title":"Telegraphis Linked Data"},{"description":{"en":"The Thai wordnet as published as part of the Open Multilingual WordNet. The goal of Open Multilingual WordNet is to make it easy to use wordnets in multiple languages. The individual wordnets have been made by many different projects and vary greatly in size and accuracy. We have (i) extracted and normalized the data, (ii) linked it to Princeton WordNet 3.0 and (iii) put it in one place. The Open Multilingual Wordnet and its components are open: they can be freely used, modified, and shared by anyone for any purpose. "},"_id":"omwn-tha","title":"Thai WordNet (as part of Open Multilingual WordNet)"},{"description":{"en":"Freeyork dataset, built with WordLift from the website https://freeyork.org/"},"_id":"freeyork-org","title":"Freeyork"},{"description":{"en":"A bibliographic dataset about the publications of Hedatuz database, mantained by Euskomedia Fundazioa (foundation that shares cultural and research contents in basque language). It contains the publications published by RIEV and Eusko Ikaskuntza since 1907 and 1918 respectively.\r\n\r\nThe Linked Data has been generated by DeustoTech - Internet research group."},"_id":"hedatuz","title":"Hedatuz"},{"description":{"en":"Semantic model for publishing COVID-19 data on the Web as a Graph. \nThe ontology focuses to represent COVID-19 cases: Create a COVID-19 knowledge space (e.g.,new cases, total active, recovered, deceased, new deceased in a day) and provide the statistic of cases int Geo-location (district, state, country and continent) on daily basis."},"_id":"whonto","title":"COvid-19 statistics Ontology"},{"description":{"en":"The Cognitive Atlas is a collaborative knowledge building project that aims to develop an ontology that characterizes the state of current thought in cognitive science. It defines a set of mental concepts along with a set of mental tasks, and the measurement relations between those classes."},"_id":"bioportal-cogat","title":"Cognitive Atlas"},{"description":{"en":"Orphanet is a database of information on rare diseases and orphan drugs for all publics. Its aim is to contribute to the improvement of the diagnosis, care and treatment of patients with rare diseases."},"_id":"bio2rdf-orphanet","title":"Bio2RDF::Orphanet"},{"description":{"en":"Projekt Wiki of the LOD2 EU Project"},"_id":"lod2-project-wiki","title":"LOD2 Project Wiki"},{"description":{"en":"This project focuses on the development of a high level patient-centric ontology for the pharmaceutical industry. The ontology should enable silos in discovery research, hypothesis management, experimental studies, compounds, formulation, drug development, market size, competitive data, population data, etc. to be brought together. This would enable scientists to answer new questions, and to answer existing scientific questions more quickly. This will help pharmaceutical companies to model patient-centric information, which is essential for the tailoring of drugs, and for early detection of compounds that may have sub-optimal safety profiles. The ontology should link to existing publicly available domain ontologies."},"_id":"bioportal-tmo","title":"Translational Medicine Ontology"},{"description":{"en":"Integration of biomedical, basic medicine, clinical medicine, pharmacy, public health, traditional Chinese medicine, population and reproductive health and other aspects of scientific data resources.NCMI is integration of biomedical, basic medicine, clinical medicine, pharmacy, public health, traditional Chinese medicine, population and reproductive health and other aspects of scientific data resources. This covid-19 Data contains clinical trail and drug data related with covid-19 virus."},"_id":"NCMI-COVID-19","title":"COVID-19 Data"},{"description":{"en":"A structured controlled vocabulary of the anatomy of the slime-mould <i>Dictyostelium discoideum</i>."},"_id":"bioportal-ddanat","title":"Dictyostelium discoideum anatomy"},{"description":{"en":"A structured controlled vocabulary for describing cereal plant development and growth stages. Please note that this ontology has now been superseded by the Plant Ontology.\r\n"},"_id":"bioportal-gro","title":"Cereal Plant Development"},{"description":{"en":"### About\r\n\r\nOpen Data Euskadi is a catalogue of public data of the Basque Government in reusable format.\r\n\r\nCatalog and multiple datasets are availabe in multiple formats (including RDF). \r\n\r\n### Useful URL\r\n\r\nDirect link to catalogue http://opendata.euskadi.net/w79-buscador/es/contenidos/informacion/form_busquedas/es_form/formulario_busqueda.html"},"_id":"open-data-euskadi","title":"Open Data Euskadi"},{"description":{"en":"This site offers information of the conversion process of a 5% sampling of the 2001 Spanish census from a plain useless format to RDF, a semantic representation supported by different products, services and protocols."},"_id":"2001-spanish-census-to-rdf","title":"2001 Spanish Census to RDF"},{"description":{"en":"EOKP, as the governance object of the Earth Observation Knowledge Hub (EOKH), is designed for a specific knowledge landscape with organic coupling of domain knowledge, applications, relationships and processes. The EOKH is governed by the Knowledge Package, which is an organic coupling of knowledge, applications, relationships and processes for a specific knowledge field, and is used to present the various elements required in a complete application case in a structured way. This is an organic coupling of domain knowledge, applications, relationships and processes in a specific knowledge landscape, which is used to structurally present the various elements and relationships required in a complete application case. The knowledge in these packages is organised and provided by the knowledge producers, and includes most of the knowledge, resources and methods required to complete an application. These packages are organised and provided by the knowledge producers and contain most of the knowledge, resources and methodologies required to complete an application, enabling other researchers and practitioners to learn and use the knowledge at a low cost. This enables other researchers and domain practitioners to learn and reproduce the knowledge, resources and methodologies at low cost, and then use them in other similar application scenarios. application scenarios.\nThis document shares the RDF file, which contains detailed metadata, and collates some of the knowledge packages for distribution at LOD, a list of which is available at https://github.com/cks1999/EOKP"},"_id":"EOKP-Datasets","title":"Earth Observation Knowledge Packages"},{"description":{"en":"The RDF book mashup demonstrates how Web 2.0 data sources like Amazon, \r\nGoogle or Yahoo can be integrated into the Semantic Web. \r\n\r\nThe RDF book mashup makes information about books, their authors, \r\nreviews, and online bookstores available on the Semantic Web. This \r\ninformation can be used by RDF tools and you can link to it from your \r\nown Semantic Web data.\r\n"},"_id":"rdf-book-mashup","title":"RDF Book Mashup"},{"description":{"en":null},"_id":"rkb-explorer-fun","title":"fun"},{"description":{"en":"it is the ontology of equipment"},"_id":"rk","title":"engineering equipment ontology"},{"description":{"en":"Universal Dependencies is a project that seeks to develop cross-linguistically consistent treebank annotation for many languages, with the goal of facilitating multilingual parser development, cross-lingual learning, and parsing research from a language typology perspective. The annotation scheme is based on (universal) Stanford dependencies (de Marneffe et al., 2006, 2008, 2014), Google universal part-of-speech tags (Petrov et al., 2012), and the Interset interlingua for morphosyntactic tagsets (Zeman, 2008).\r\n\r\nThis dataset refers to UD's German treebank.\r\n"},"_id":"universal-dependencies-treebank-german","title":"Universal Dependencies Treebank German"},{"description":{"en":"The MIUR is the Italian Ministry of Education, University and Research and each year publishes a set of useful information about the University student data.\r\nThe LOIUS project represents an attempt towards the adoption of semantic standards in publishing statistical data coming from MIUR Government. "},"_id":"loius","title":"Linking Italian University Statistics Project"},{"description":{"en":"The Universal Protein Resource (UniProt) is a comprehensive resource for protein sequence and annotation data. The UniProt databases are the UniProt Knowledgebase (UniProtKB), the UniProt Reference Clusters (UniRef), and the UniProt Archive (UniParc). The UniProt consortium and host institutions EMBL-EBI, SIB and PIR are committed to the long-term preservation of the UniProt databases."},"_id":"UniProt","title":"UniProt"},{"description":{"en":"A data set containing all disasters recorded to have occurred in Uganda. Created by GI members of Makerere University, Kampala, Uganda."},"_id":"Uganda-Disasters-rdf-data_","title":"Uganda Disasters"},{"description":{"en":"The Spanish National Library (Biblioteca Nacional de España, BNE) and the Ontology Engineering Group of Universidad Politécnica de Madrid are working on the joint project “Preliminary Study of Linked Data”, whose aim is to enrich the Web of Data with the BNE authority and bibliographic records. To this end, they are transforming the BNE information to RDF following the Linked Data principles proposed by Tim Berners Lee."},"_id":"culturalinkeddata","title":"CulturaLinkedData"},{"description":{"en":"Groundbreaking biomedical research requires access to cutting edge scientific resources; however such resources are often invisible beyond the laboratories or universities where they were developed. eagle-i is a national research resource discovery platform to help biomedical scientists search for and find previously invisible, but highly valuable, resources. \r\nResource descriptions collected at each participating institution are freely available as linked open data."},"_id":"eagle-i-meharry","title":"eagle-i @ Meharry Medical College"},{"description":{"en":"StatusNet instance hosted at http://integralblue.com"},"_id":"statusnet-integralblue-com","title":"statusnet-integralblue-com"},{"description":{"en":"The Clinical Measurement Ontology is designed to be used to standardize morphological and physiological measurement records generated from clinical and model organism research and health programs"},"_id":"bioportal-cmo","title":"Clinical Measurement Ontology"},{"description":{"en":"An Ontology describing Resources having different formats. This Ontology can be used to annotate and describe Terminological, Ontological Knowledge resources."},"_id":"bioportal-tok","title":"TOK_Ontology"},{"description":{"en":"This English corpus is based on the well known Reuters-21578 corpus which contains economic news articles. In particular, we chose 128 articles containing at least one NE. Compared to the News-100 corpus the documents of Reuters-128 are significantly shorter and thus carry a smaller context.\r\n\r\nTo create the annotation of NEs with URIs, we implemented a supporting judgement tool.\r\n.\r\nThe input for the tool was a subset of more than 150 Reuters-21578 news articles sampled randomly. First, FOX (Ngonga Ngomo et al., 2011) was used for recognizing a first set of NEs. This reduced the amount of work to a feasible portion regarding the size of this dataset. Afterwards, the domain experts corrected the mistakes of FOX manually using the annotation tool. Therefore, the tool highlighted the entities in the texts and added initial URI candidates via simple string matching algorithms. Two scientists determined the correct URI for each named entity manually with an initial voter agreement of 74%. This low\r\ninitial agreement rate hints towards the difficulty of the disambiguation task.\r\nIn some cases judges did not agree initially, but came to an agreement shortly after reviewing the cases. While annotating, we left out ticker symbols of companies (e.g., GOOG for Google Inc.), abbreviations and job descriptions be-\r\ncause those are always preceded by the full company name respectively a person’s name."},"_id":"reuters-128-nif-ner-corpus","title":"Reuters-128 NIF NER Corpus"},{"description":{"en":"StatusNet instance hosted at http://piana.eu"},"_id":"statusnet-piana-eu","title":"statusnet-piana-eu"},{"description":{"en":"The Neolatin Wordlist (Neulateinische Wortliste; NLW) is a lexical resource linked to the LiLa Knowledge Base that collects entries from Latin texts written in Europe between 1300 and 1600. The wordlist consists of circa 22000 lemmas. The data published in LiLa were provided by the author Johann Ramminger."},"_id":"NLW","title":"Neulateinische Wortliste in LiLa"},{"description":{"en":"The Parasite Experiment Ontology (PEO) models provenance metadata associated with experiment protocols used in parasite research. The PEO extends the upper-level Provenir ontology (http://knoesis.wright.edu/provenir/provenir.owl) to represent parasite domain-specific provenance terms.\n\nThe PEO (v 1.0) includes Proteome, Microarray, Gene Knockout, and Strain Creation experiment terms along with other terms that are used in pathway."},"_id":"bioportal-peo","title":"Parasite Experiment Ontology"},{"description":{"en":"Hoa Thịnh Phát là đơn vị đi đầu trong lĩnh vực cung cấp và thi công các loại cỏ nhân tạo cho sân vườn, xây hồ bơi, thiết kế hồ cá koi, sân bóng đá, cát trắng sân chơi trẻ em,… chuyên nghiệp nhất cả nước."},"_id":"Hoa_Thinh_Phat","title":"Hoa Thịnh Phát"},{"description":{"en":"GND stands for \"Gemeinsame Normdatei\" (Integrated Authority File) and offers a broad range of elements to describe authorities. The GND originates from the German library community and aims to solve the name ambiguity problem in the library world. Corresponding data is usually expressed in a customized MARC 21 Authority Format (GND MARC Format) which is quite domain specific and is not used beyond the library and publisher world. The GND ontology tries to bridge this gap by providing a format specification for the usage in the semantic web.\n\nThe need for name disambiguity and entries having an authoritative character is an issue that concerns a lot more communities than the library world. In a growing information society the unique identification and linking of persons, places and other authorities becomes more and more important. The GND Ontology aims to transfer the made experience from libraries to the web community by providing a vocabulary for the description of differentiated and undifferentiated persons, conferences or events, corporate bodies, places or geographic names, subject headings, and works.\n\nTo ensure compatibility aspects the GND ontology aligns a number of already established vocabularies like the FOAF vocabulary.\n\nThe GND is a young specification that probably will underlie certain smaller changes. However, the currently defined classes and properties have a status of stability. But we also expect the introduction of additional elements caused by newly upcoming requirements within the community. From January 2014 on, the Linked Data Service of the German National Library (DNB) will issue scheduled releases and will be integrated in the export releases of the other formats. Changes to the conversion and to the data modelling will be made in January, May and September. Changes will be notified in advance via the Linked Data Service mailing list (http://lists.dnb.de/mailman/listinfo/lds) and the Integrated\nAuthority File GND Ontology mailing list (http://lists.dnb.de/mailman/listinfo/gnd-ontology). Please subscribe if you are interested in receiving information about future developments in DNB Linked Data Services.\nIn a schedule corresponding to the export releases, updated dumps of the authority and bibliographic data in RDF/XML and Turtle will be available for download in February, June and October.\n\nThe authors welcome comments on this document, preferably via the public GND ontology list; public archives are available. \n\nThe Integrated Authority File\n\nThe \"Gemeinsame Normdatei\" (GND, Integrated Authority File) brings together the content of the former Corporate Body Authority File GKD (Gemeinsame Körperschaftsdatei), the Name Authority File PND (Personennamendatei), the Subject Headings Authority File SWD (Schlagwortnormdatei) and the Uniform Title File of the Deutsches Musikarchiv EST file (Einheitssachtitel-Datei ) to form an integrated authority file.\n\nThe target has therefore been reached of setting up an authority file which covers all types of entities and which serves as a common, authoritative reference system for libraries' bibliographic data and for the cataloging data of other authority file users such as archives, museums, projects, scientific and cultural institutions. All library networks in the German-speaking countries and the German Union Catalogue of Serials (ZDB) are involved in the GND project alongside the German National Library.\n\nThe GND should consign to the past problems arising from different formats, parallel storage of data records and different rules for descriptive and subject cataloging.\n\nThe objective of the GND is to form a modern, web-compatible authority file which is capable of networking the wide range of resources and information held by libraries and other cultural institutions in the German-speaking countries and making these accessible to users. To approach a web-compatible authority file we also provide the GND as linked data. Therefore we developed an independent GND specific vocabulary (GND Ontology) that almost completely covers the offered GND concepts provided in MARC 21. "},"_id":"dnb-gemeinsame-normdatei","title":"Gemeinsame Normdatei (GND)"},{"description":{"en":"This repository contains data supplied from diverse Italian institutions."},"_id":"rkb-explorer-italy","title":"Diverse Italian ReSIST Partner Institutions (RKBExplorer)"},{"description":{"en":"The Cell Line Ontology (CLO) is a community-based ontology in domain of biological cell lines with a focus on permanent cell lines from culture collections. Upper ontology structures that frame the skeleton of CLO include Basic Formal Ontology and Relation Ontology. Cell lines contained in CLO are associated with terms from other ontologies such as Cell Type Ontology, NCBI Taxonomy, and Ontology for Biomedical Investigation. A common design pattern for the cell line is used to model cell lines and their attributes, the Jurkat cell line provides ane xample. Currently CLO contains over 36,000 cell line entries obtained from ATCC, HyperCLDB, Coriell, and bymanual curation. The cell lines are derived from 194 cell types, 656 anatomical entries, and 217 organisms. The OWL-based CLO is machine-readable and can be used in various applications."},"_id":"bioportal-clo","title":"Cell Line Ontology"},{"description":{"en":"The LOD dataset of ASCDC_The Tibetan Collection Audio Archive Research Project (Tibetan Audio Archive) was created by the Academia Sinica Center for Digital Cultures (ASCDC) and based on the metadata from “The Tibetan Collection Audio Archive Research Project” (西藏珍藏語音檔案研究計畫) in the “Taiwan Union Catalog” (數位典藏與數位學習聯合目錄, https://catalog.digitalarchives.tw/Organization/List.jsp?CID=38949). Originally, the metadata was established by the Dharma Drum Institute of Liberal Arts (法鼓文理學院). The audio archive includes information on sound recordings of Buddhist preaching in the Tibetan language. Containing 1,962 data records and 112,628 triples, the textual content within the LOD dataset is licensed under the Creative Commons Attribution (CC 0), while the digitized items are under the Open Government Data License, version 1.0 (CC BY)."},"_id":"ASCDC-Tibetan-Audio-Archive","title":"The Tibetan Collection Audio Archive Research Project (Tibetan Audio Archive)"},{"description":{"en":"The Gene Regulation Ontology (GRO) is a conceptual model for the domain of gene regulation. It covers processes that are linked to the regulation of gene expression as well as physical entities that are involved in these processes (such as genes and transcription factors) in terms of ontology classes and semantic relations between classes."},"_id":"bioportal-gro_x2","title":"Gene Regulation Ontology"},{"description":{"en":"A structured controlled vocabulary for the anatomy of Gramineae. Please note that this ontology has now been superseded by the <a http://bioportal.bioontology.org/ontologies/1587> Plant Ontology</a>."},"_id":"bioportal-gro_x1","title":"Cereal plant gross anatomy"},{"description":{"en":"StatusNet instance hosted at http://1w6.org"},"_id":"statusnet-1w6-org","title":"statusnet-1w6-org"},{"description":{"en":"StatusNet instance hosted at http://cooleysekula.net"},"_id":"statusnet-cooleysekula-net","title":"statusnet-cooleysekula-net"},{"description":{"en":"The North American Industry Classification System (NAICS) is the standard used by Federal statistical agencies in classifying business establishments for the purpose of collecting, analyzing, and publishing statistical data related to the U.S. business economy.\r\n\r\nAuthors of the linked data version:\r\n\r\n-Jose María Alvarez Rodríguez & Jose Emilio Labra Gayo\r\n\r\nWESO-University of Oviedo"},"_id":"naics-2007","title":"NAICS 2007"},{"description":{"en":"Linked Crowdsourced Data is - as the name implies - a crowdsourced dataset for real user location preferences. People using the CDCApp contribute to this dataset by checking into different locations. This information is accompanied by contextual information, such as the weather condition during the check-in, the WiFi access points that were measured in this area or whether the check-in occured during a regional holiday."},"_id":"linkedcrowdsourceddata","title":"Linked Crowdsourced Data"},{"description":{"en":"The thesaurus provides vocabulary on any economic subject: about 6,000 standardized subject headings and about 18,000 entry terms to support individual keywords. You can also find technical terms used in law, sociology, or politics, and geographic names. A systematic part faclitates access to the descriptors. Links to the ZBW library holdings are provided, too.\r\n\r\nSize of dump and data set: 12 MB uncompressed,\r\npublished as RDFa pages, RDF/XML, NT and Turtle dataset, licensed under Creative Commons (by-nc-sa)"},"_id":"stw-thesaurus-for-economics","title":"STW Thesaurus for Economics"},{"description":{"en":"包含2001年湖北丹江口、咸宁及秭归三个地区的土地利用图及属性表。项目来源:国家重点基础研究项目“中国主要水蚀区土壤侵蚀过程与调控研究”。用于研究水土流失规律,服务对象为从事水土流失研究的学生和科研人员。数据收集时间为2009年,数据采集地点湖北咸宁、丹江口、秭归,经度最大115.67;最小109.72。 纬度最大32.55;最小29.85 采用krasovsky_1940_albers投影"},"_id":"10.12041geodata.290864223.ver1.db_","title":"土地利用图"},{"description":{"en":"OCRe is an ontology designed to support systematic description of, and interoperable queries on, human studies and study elements."},"_id":"bioportal-ocre","title":"Ontology of Clinical Research (OCRe)"},{"description":{"en":""},"_id":"rkb-explorer-oai","title":"Open Archive Initiative Harvest over OAI-PMH (RKBExplorer)"},{"description":{"en":""},"_id":"apache","title":"apache"},{"description":{"en":"SOCH is a set of 10 million cultural heritage objects harvested from a large number of museums and other local, regional and national cultural heritage organizations.\n\nDifferent Creative Commons licenses are used for different datasets in SOCH. The main goal is to provide as open licenses as possible."},"_id":"swedish-open-cultural-heritage","title":"Swedish Open Cultural Heritage"},{"description":{"en":"BioPortal is an open repository of biomedical ontologies that provides access via Web services and Web browsers to ontologies developed in OWL, RDF, OBO format and Protege frames. BioPortal functionality includes the ability to browse, search and visualize ontologies."},"_id":"bio2rdf-bioportal","title":"Bio2RDF::Bioportal"},{"description":{"en":null},"_id":"opendatascotland-simd-health-rank","title":"opendatascotland-simd-health-rank"},{"description":{"en":"SudershanTech is a Multinational Educational Technology Company, Headquarters in Delhi, India. And operates as one of Sudershan Industries's subsidiaries."},"_id":"SudershanTech","title":"SudershanTech"},{"description":{"en":"This dataset contains information about audio recordings, including commercial releases, promotional releases and bootleg or off-label releases. Discogs is one of the largest online databases of electronic music releases and of releases on vinyl media. The source data comes from submissions contributed by users who have registered accounts on discogs.com. This version is based on the regularly monthly data releases from the website which have been placed into the Public Domain.\r\n\r\n*Note* this RDF version of Discogs is no longer updated, it was taken off-line during the shutdown of Kasabi. A dump of the dataset has been [uploaded to the Internet Archive](http://archive.org/details/kasabi)"},"_id":"data-incubator-discogs","title":"Discogs in RDF"},{"description":{"en":"<p> <a href=\"http://red.gnoss.com/comunidad/MPV-APADRINA\">Proyecto Apadrina</a> is a learning community of students of Higher Grade in Business Management and Marketing from the <a href=\"http://www.iesprofesormaximotrueba.es/\">IES Profesor Máximo Trueba</a> (Boadilla del Monte, Madrid, Spain) and <a href=\"http://www.educa.madrid.org/portal/c/portal/layout?p_l_id=953.1\">IES Icaro</a> (Getafe, Madrid, Spain). The students have worked on topics of marketing at the point of sale or merchandising with companies and shops in Madrid. They have even created two virtual companies operating in both centers: ICI merchandising and Truemark. Proyecto Apadrina has been directed by Laura Cristanchi and Carolina Colorado.\r\n\r\n\r\nProyecto Apadrina works with <a href=\"http://gnoss.com/\">GNOSS software (RIAM Intelearning Lab)</a>. RIAM is a company that develops semantic technology for the creation of specialized networks and linked markets. Proyecto Apadrina offers a selection of 1,235 resources (November 2012). It includes a facet-based search engine and enriched contexts. Both are developments by GNOSS.\r\n\r\n</p>\r\n\r\n<p>\r\n<a href=\"http://red.gnoss.com/comunidad/MPV-APADRINA\">Proyecto Apadrina</a> es una comunidad de aprendizaje de los alumnos de Grado Superior de Gestión Comercial y Marketing de los <a href=\"http://www.iesprofesormaximotrueba.es/\">IES Profesor Máximo Trueba</a> (Boadilla del Monte, Madrid; España) e <a href=\"http://www.educa.madrid.org/portal/c/portal/layout?p_l_id=953.1\">IES Icaro</a> (Getafe, Madrid; España) en la que han trabajado de manera colaborativa. Consiste en el asesoramiento en prácticas sobre temas de marketing en el punto de venta o merchandising a comercios y empresas de la Comunidad de Madrid por parte de los propios alumnos, que incluso han constituido dos empresas virtuales que funcionan en ambos centros: ICI merchandising y TrueMark. El Proyecto Apadrina ha sido dirigido por las profesoras Carolina Cristanchi y Laura Colorado. Proyecto Apadrina trabaja con <a href=\"http://gnoss.com/\">software de GNOSS (RIAM Intelearning Lab)</a>. RIAM es una compañía que desarrolla tecnología semántica para la creación de redes especializadas y mercados enlazados. Proyecto Apadrina ofrece en este caso una selección de 1.235 recursos (Noviembre 2012). Incluye un buscador facetado y contextos enriquecidos.\r\n\r\n</p>"},"_id":"proyectoapadrina","title":"Proyecto Apadrina, Marketing Punto de Venta"},{"description":{"en":"CNO is a controlled vocabulary of terms used in Computational Neurosciences to describe models of the nervous system.\r\nThis first release of CNO is an alpha version and should be further aligned with other ontologies accessible on Bioportal and should be made compliant with the OBO foundry recommendations.\r\nThis work is licensed under the Creative Commons Attribution-NonCommercial-ShareAlike 3.0 Unported License. To view a copy of this license, visit http://creativecommons.org/licenses/by-nc-sa/3.0/ or send a letter to Creative Commons, 444 Castro Street, Suite 900, Mountain View, California, 94041, USA.\r\nIf you have any comments, questions or suggestions, please contact Yann Le Franc at ylefranc(at)gmail.com."},"_id":"bioportal-cno","title":"Computational Neuroscience Ontology"},{"description":{"en":"Data exposed: corporate ownership\r\n\r\nSize of dump and data set: 1.8 million triples\r\n\r\nNotes: also found in the of SPARQL Endpoints"},"_id":"sec-rdfabout","title":"U.S. Securities and Exchange Commission Corporate Ownership RDF Data (rdfabout)"},{"description":{"en":"Universal Dependencies is a project that seeks to develop cross-linguistically consistent treebank annotation for many languages, with the goal of facilitating multilingual parser development, cross-lingual learning, and parsing research from a language typology perspective. The annotation scheme is based on (universal) Stanford dependencies (de Marneffe et al., 2006, 2008, 2014), Google universal part-of-speech tags (Petrov et al., 2012), and the Interset interlingua for morphosyntactic tagsets (Zeman, 2008).\r\n\r\nThis dataset refers to UD's Galician treebank.\r\n"},"_id":"universal-dependencies-treebank-galician","title":"Universal Dependencies Treebank Galician"},{"description":{"en":"Open Database of corporate entities. As of 2011-04-09 has information on 7,841,828 companies from around the world. Jurisdictions covered include:\r\n\r\n * 41,292 Bermuda\r\n * 3,886,733 United Kingdom\r\n * 96,104 Gibraltar\r\n * 105,640 Isle of Man\r\n * 77,693 Iceland\r\n * 60,827 Jersey\r\n * 92,795 Luxembourg\r\n * 2,188,873 Netherlands\r\n * 97,653 Alaska (US) \r\n * 197,798 District of Columbia (US)\r\n * 996,420 Michigan (US)\r\n\r\nThere is good API access but currently but no bulk availablitity.\r\n\r\n### License\r\n\r\nSee <http://opencorporates.com/info/licence>. However, should note that most data in OpenCorporates is scraped from elsewhere so this license only covers the 'IP' that OpenCorporates has obtained as a result of their efforts (and license of original databases, e.g. Companies House in the UK, is unclear)."},"_id":"opencorporates","title":"OpenCorporates - The Open Database Of The Corporate World"},{"description":{"en":"The LOD dataset of ASCDC_The National Taiwan Museum's Formosan Aborigines Collections Digitizing Project (NTM- Formosan-Aborigines) was created by the Academia Sinica Center for Digital Cultures (ASCDC) and based on the metadata from “The National Taiwan Museum's Formosan Aborigines Collections Digitizing Project” (國立台灣博物館原住民文物典藏數位化計畫) in the “Taiwan Union Catalog” (數位典藏與數位學習聯合目錄, https://catalog.digitalarchives.tw/Organization/List.jsp?CID=38973). Originally, the metadata was established by the History & Ethnic Groups of National Taiwan Museum (NTM, 國立台灣博物館) in Taipei. It provides information on Taiwanese indigenous people’s cultural heritages collected by the NTM and can serve as a database for the study of the indigenous people in Taiwan. Containing 3,767 data records and 118,549 triples, the textual content within the LOD dataset is licensed under the Creative Commons Attribution (CC 0), while the rights of the digitized item are reserved by the National Taiwan Museum."},"_id":"ASCDC-_NTM-Formosan-Aborigines","title":"The National Taiwan Museum's Formosan Aborigines Collections Digitizing Project (NTM-Formosan-Aborigines)"},{"description":{"en":"baixue composer"},"_id":"baixue_composer","title":"baixue composer"},{"description":{"en":"Transparency International data published using the Linked Data design principles. It contains Corruption Perceptions Index and Sources data."},"_id":"transparency-linked-data","title":"Transparency International Linked Data"},{"description":{"en":"Linked Open Data about Chile and the political environment of the country. Some important graphs published are: Legislative norms, International treaties (linking countries to dbpedia and geonames), geographical data and parliamentary biographies, and we are publishing every day more."},"_id":"datos-bcn-cl","title":"Datos.bcn.cl"},{"description":{"en":""},"_id":"ckan","title":"Comprehensive Knowledge Archive Network"},{"description":{"en":"We present SocialLink, a publicly available Linked Open Data dataset that matches social media accounts on Twitter to the corresponding entities in multiple language chapters of DBpedia. By effectively bridging the Twitter social media world and the Linked Open Data cloud, SocialLink enables knowledge transfer between the two: on the one hand, it supports Semantic Web practitioners in better harvesting the vast amounts of valuable, up-to-date information available in Twitter; on the other hand, it permits Social Media researchers to leverage DBpedia data when processing the noisy, semi-structured data of Twitter. "},"_id":"SocialLink","title":"SocialLink"},{"description":{"en":"### About\r\n\r\nData exposed: a large life sciences data set about proteins and their function.\r\n\r\n### Openness\r\n\r\nNot open. [Copyright page](ftp://ftp.uniprot.org/pub/databases/uniprot/current_release/rdf/README) states:\r\n\r\nCopyright 2007-2012 UniProt Consortium. We have chosen to apply the Creative Commons Attribution-NoDerivs License (http://creativecommons.org/licenses/by-nd/3.0/) to all copyrightable parts (http://sciencecommons.org/) of our databases. This means that you are free to copy, distribute, display and make commercial use of these databases, provided you give us credit. However, if you intend to distribute a modified version of one of our databases, you must ask us for permission first. All databases and documents in the UniProt FTP directory may be copied and redistributed freely, without advance permission, provided that this copyright statement is reproduced with each copy."},"_id":"uniprot","title":"UniProt"},{"description":{"en":"LODAC BDLS (Building Dictionary for Life Sciense) provides two types of datasets. One is relationships between scientific names and common names of species. Another is relationships of Japanese and English scientific terms in Life Science. Datasets also include links to DBpedia, DBpedia Japanese and LODAC Species.\r\n\r\n\r\n\r\n"},"_id":"lodac-bdls","title":"LODAC BDLS"},{"description":{"en":"This dataset contains numbers of inhabitants in districts of Czech Republic in age categories splited in 5year intervals with a distinguished category 0 years. The last age category is 90-94 years. All older categories are aggregated to 95 years and more. The dataset distinguishes males and females."},"_id":"cz-czso-demography-in-regions-czech-republic-age-categories","title":"Number of inhabitants in districts of Czech Republic in 5year age categories"},{"description":{"en":"StatusNet instance hosted at http://coreyavis.com"},"_id":"statusnet-coreyavis-com","title":"statusnet-coreyavis-com"},{"description":{"en":"Providing Hypernymy Relations extracted from the Web as Linked Open Data"},"_id":"webisalod","title":"WebIsALOD"},{"description":{"en":"The Polymath Virtual Library aims to bring together the works of the most important Hispanic polymaths and to establish semantic relationships between them, expressing the different schools of thought, from Seneca to Octavio Paz. The aim is to bring together information, data, digital texts and web resources about Spanish, Hispano-American, Brazilian and Portuguese polymaths from all times. These datasets consists of polymath authority data (Spanish, Latin American, Brasilian and Portuguese) expressed in <a href=\"http://pro.europeana.eu/web/guest/edm-documentation\" title=\"Europeana Data Model\">\r\nEuropeana Data Model</a>. Links to VIAF and DBpedia in progress. "},"_id":"polymath-virtual-library","title":"Polymath Virtual Library (Authority data) - Fundación Ignacio Larramendi"},{"description":{"en":"We built an ontology to help the systematic review and meta-analysis process of non randomized clinical trials."},"_id":"bioportal-nonrctontology","title":"Non Randomized Controlled Trials Ontology"},{"description":{"en":"<p>\r\n<a href=\"http://www.garnicaplywood.com/\">Garnica Plywood</a>\r\n is the first international poplar plywood manufacturer in terms of volume (and combinations with other tropical species). The company owns 4 factories in Spain and 1 in France, with more than 500 employees, and the annual production capacity exceeds 200,000m3 plywood. The group offers the widest product range in the market with over 2000 references, present in different areas such as Marine, Caravan, Construction, Furniture, Decoration, Toys, etc., produced under the most demanding international quality labels. Garnica Plywood exports 80% of the total production to more than 25 countries in the world.\r\n</p>\r\n<p>\r\nGarnica Plywood’s LOD project works with\r\n<a href=\"http://gnoss.com/\">GNOSS software (RIAM Intelearning Lab)</a>. RIAM is a company that develops semantic technology for the creation of specialized networks and linked markets.\r\n<a href=\"http://products.garnicaplywood.com/comunidad/garnicacatalogo\">Garnica offers a product catalogue</a>\r\nwith a facet-based search engine and enriched contexts. Both are developments by GNOSS. The catalogue has 42 products (November 2012).\r\n</p>\r\n\r\n<p>\r\n<a href=\"http://www.garnicaplywood.com/\">Garnica Plywood</a>\r\nes el primer productor internacional de tablero contrachapado de chopo (y combinaciones con especies tropicales). La compañía consta de 4 fábricas en España y 1 en Francia, con más de 500 empleados, y una capacidad productiva anual superior a los 200,000m3 de contrachapado. El grupo ofrece la mayor gama del mercado con más de 2000 referencias, presentes en sectores como Náutica, Caravana, Construcción, Mobiliario, Decoración, Juguetes, etc., producidos con los certificados internacionales de calidad más exigentes. Garnica Plywood exporta el 80% de su producción a más de 25 países del mundo.\r\n</p>\r\n<p>\r\nEl proyecto de Garnica Plywood en la Web de los Datos trabaja con\r\n<a href=\"http://gnoss.com/\">software de GNOSS (RIAM Intelearning Lab)</a>. RIAM es una compañía que desarrolla tecnología semántica para la creación de redes especializadas y mercados enlazados. Garnica ofrece en este caso\r\n<a href=\"http://products.garnicaplywood.com/\">un catálogo de productos</a>\r\ncon un buscador facetado y contextos enriquecidos. Ambos son desarrollos de GNOSS. El catálogo incluye 42 productos (Noviembre 2012).\r\n</p>"},"_id":"garnicaplywood","title":"Garnica Plywood Catalogue"},{"description":{"en":"Uberon is a multi-species anatomy ontology created to facilitate comparison of phenotypes across multiple species, and for GO cross-products. Each uberon class is the superclass of all the classes stated as xrefs. The deployed version of uberon is generated from the editors version by stripping out external links and materializing inferred links via the oboedit reasoner."},"_id":"bioportal-uberon","title":"Uber anatomy ontology"},{"description":{"en":"about terrorist"},"_id":"varsha","title":"terrorist attack"},{"description":{"en":"This data contains the erosion endangered soil maps from Czech republic. The source data was in shapefiles which is transformed into linked data."},"_id":"Soil_maps","title":"Erosion-endangered soil zones dataset from Czech Republic @PSNC"},{"description":{"en":"We are still in a development mode and working in particular and the namespace URI's and their hosting. So some elements here will change as we tweak responsibility for maintaining namespaces and curating them. You are welcome (encouraged) to explore our sparql endpoint (http://data.oceandrilling.org/sparql) and engage us, comment and criticize. (Doug)\r\n\r\nThis site is guided by the linked data pattern (http://linkeddata.org/). Information on this effort and the steps being taken to expose data in this approach are described here.\r\n\r\nThis data represents only a small percentage of the data available but is sufficient for testing at this time. Additional data related to log files from LDEO, timescales from CHRONOS and data from TAMU are yet to be loaded. "},"_id":"oceandrilling-dbseabed","title":"Ocean Drilling - dbSEABED"},{"description":{"en":"This is the National Library of Greece Authority Records Dataset in Linked Data form. "},"_id":"national-library-of-greece-authority-records","title":"National Library of Greece Authority Records"},{"description":{"en":"The Central Product Classification (CPC) is a product scheme classification used to extract statistics. It was a previous attempt to CPV.\r\n\r\nAuthors of the linked data version:\r\n\r\n-Jose María Alvarez Rodríguez & Jose Emilio Labra Gayo\r\n\r\nWESO-University of Oviedo"},"_id":"cpc-2008","title":"CPC 2008"},{"description":{"en":"Semantic Wiki about the Semantic Web community"},"_id":"semanticweb-org","title":"semanticweb.org"},{"description":{"en":"Testing"},"_id":"bioportal-pko","title":"PKO_Re"},{"description":{"en":"FiESTA (short for \"Format for extensive spatiotemporal annotations\") is a generic format for linguistic and behavioral annotations."},"_id":"fiesta","title":"FiESTA"},{"description":{"en":"The dataset provides prices of medicinal products marketed in Italian republic. The dataset was created on the base of information published by Italian Medicines Agency (http://www.agenziafarmaco.gov.it/)."},"_id":"it-aifa-drug-prices","title":"List of prices of medicinal products marketed in Italian Republic"},{"description":{"en":"Universal Dependencies is a project that seeks to develop cross-linguistically consistent treebank annotation for many languages, with the goal of facilitating multilingual parser development, cross-lingual learning, and parsing research from a language typology perspective. The annotation scheme is based on (universal) Stanford dependencies (de Marneffe et al., 2006, 2008, 2014), Google universal part-of-speech tags (Petrov et al., 2012), and the Interset interlingua for morphosyntactic tagsets (Zeman, 2008).\r\n\r\nThis dataset refers to UD's Tamil treebank.\r\n"},"_id":"universal-dependencies-treebank-tamil","title":"Universal Dependencies Treebank Tamil"},{"description":{"en":"PHOIBLE Online published by the CLLD project"},"_id":"clld-phoible","title":"CLLD-PHOIBLE"},{"description":{"en":"Universal Dependencies is a project that seeks to develop cross-linguistically consistent treebank annotation for many languages, with the goal of facilitating multilingual parser development, cross-lingual learning, and parsing research from a language typology perspective. The annotation scheme is based on (universal) Stanford dependencies (de Marneffe et al., 2006, 2008, 2014), Google universal part-of-speech tags (Petrov et al., 2012), and the Interset interlingua for morphosyntactic tagsets (Zeman, 2008).\r\n\r\nThis dataset refers to UD's Czech-CLTT treebank.\r\n"},"_id":"universal-dependencies-treebank-czech-cltt","title":"Universal Dependencies Treebank Czech-CLTT"},{"description":{"en":"The North American Industry Classification System (NAICS) is the standard used by Federal statistical agencies in classifying business establishments for the purpose of collecting, analyzing, and publishing statistical data related to the U.S. business economy.\r\n\r\nAuthors of the linked data version:\r\n\r\n-Jose María Alvarez Rodríguez & Jose Emilio Labra Gayo\r\n\r\nWESO-University of Oviedo"},"_id":"naics-2012","title":"NAICS 2012"},{"description":{"en":"A mapping that was created between WordNet and DBpedia"},"_id":"wn-wiki-instances","title":"Wordnet-Wikipedia/DBpedia instance mapping"},{"description":{"en":"Current Procedural Terminology"},"_id":"bioportal-cpt","title":"Current Procedural Terminology"},{"description":{"en":"dsfsdfsdf"},"_id":"rgsdfg","title":"sdafsadf"},{"description":{"en":"包含2001年湖北丹江口、咸宁及秭归三个地区的土地利用图及属性表。项目来源:国家重点基础研究项目“中国主要水蚀区土壤侵蚀过程与调控研究”。用于研究水土流失规律,服务对象为从事水土流失研究的学生和科研人员。数据收集时间为2009年,数据采集地点湖北咸宁、丹江口、秭归,经度最大115.67;最小109.72。 纬度最大32.55;最小29.85 采用krasovsky_1940_albers投影"},"_id":"_data1.odw.tw","title":"土地利用"},{"description":{"en":"This dataset contains several statistical indicators for European countries and NUTS Level-2 Regions (NUTS: Nomenclature of Territorial Units for Statistics). Most statistical data are time series, therefore only the latest availabe value is provided here.\r\n\r\n### Issues\r\n\r\nDate of extraction: 06-14-2007; hence this dataset is seriously outdated.\r\n\r\nlinks:ontologycentral-eurostat: 424"},"_id":"fu-berlin-eurostat","title":"Eurostat in RDF (FU Berlin)"},{"description":{"en":"A service that delivers RDF-based structured descriptions of Web addressable resources in a variety of formats through Generic HTTP URIs.\r\n\r\nThe underlying technology is Virtuoso's Sponger, which takes an existing Web-accessible resource (webpage, media) and generates an RDF graph of its metadata using existing well-known ontologies as well as site-specific knowledge. URIBurner then re-presents this data as either a new HTML webpage, or directly as RDF in a variety of serializations (RDF/XML, text/n3, turtle, JSON).\r\n\r\n### Issues\r\n\r\nThe linking information is incomplete and the numbers are guesswork."},"_id":"uriburner","title":"URIBurner"},{"description":{"en":null},"_id":"flyted","title":"Flyted"},{"description":{"en":"data.cnr.it is an initiative of the Italian National Research Council aimed to provide public access to the information of the CNR organization.\r\n\r\nKeywords are: transparency, interoperability, open data.\r\n\r\nThe technologies of the data.cnr.it are based on RDF and follows the paradygm of the Linked Data initiative.\r\n\r\n\r\nDocumentation of the ontology is in OWL-Doc format\r\n\r\nThe CNR ontology can be queried through the SPARQL Endpoint by selecting http://data.cnr.it/ as graph."},"_id":"data-cnr-it","title":"Open Data from the Italian National Research Council"},{"description":{"en":"xxx"},"_id":"xx","title":"xxx"},{"description":{"en":"<p>\r\n<a href=\"http://gnoss.com/\">gnoss.com</a>\r\nis a society on the Net: it enables people, companies and any human group or organization to connect, interact and work according to their interests in a linked open knowledge network. The project is in public beta phase since September 2009. It already has 150,000 subscribers and a knowledge network of more than 3,000 communities (November 2012) on topics related to innovation, technology, business and education, among others. gnoss.com works within the philosophy of Open Data and proposes a solution so that data can be linked (Linked Data). Data are expressed in OWL-RDF files.\r\n</p>\r\n<p> Currently, more than 100,000 resources have been published in the platform. For each resource, the platform enables to download an RDF document describing its content and metadata. Different languages such as FOAF, SIOC and SKOS are used in this description. Our whole dataset has about 4,500,000 RDF Triples. In addition, most of these resources are linked to one or more resources of the Freebase and New York Time datasets. We have about 20,000 links to these datasets.</p>\r\n<p>\r\n<a href=\"http://www.gnoss.com/\">GNOSS</a>\r\n is a software platform, created by RIAM Intelearning LAB S.L., to build specialized online social networks with dynamic semantic publishing. GNOSS integrates knowledge management, informal learning and collaborative work in a \r\n<a href=\"http://linkeddata.org/\">Linked Data</a>\r\n environment. Every GNOSS space incorporates semantic facet-based searches and semantic context creation which drastically improves user experience. GNOSS runs on technologies and standards of the semantic web, which makes it possible to structure and link all kinds of content, among them and with other Open Data (Linked Data), and to reinforce and to amplify the knowledge management processes with facet-based searches and generation of documentary and personal contexts for specific information. GNOSS provides people, groups and organizations with the necessary tools to create and develop their digital identity, connect their intelligences, create communities based on their interests and motivations, and activate thriving processes of collective creativity, brainpower, debate and thinking.\r\n</p>\r\n<p>\r\nFor further information:\r\n<a href=\"http://noticias.gnoss.com/\">http://noticias.gnoss.com</a>\r\n</p>\r\n\r\n<p>\r\n<a href=\"http://gnoss.com/\">gnoss.com</a>\r\nes una sociedad en la Red: permite a personas, empresas y a cualquier colectivo conectar, interactuar y trabajar de acuerdo con sus intereses en una red abierta de conocimiento. El proyecto está en beta pública desde septiembre de 2009. Gnoss.com tiene 27.000 miembros registrados y una red de conocimiento de más de 3.000 comunidades (Octubre 2012) en temas como innovación, tecnología, negocios y educación, entre otros. gnoss.com trabaja con la filosofía de Datos Abiertos y propone una solución en la que los datos puedan ser vinculados (Linked Data). Los datos se expresan en ficheros OWL-RDF.\r\n</p>\r\n<p> En la actualidad, se han publicado más de 100.000 recursos en la plataforma. Para cada recurso, la plataforma ofrece un archivo RDF que describe su contenido y metadatos. Diferentes lenguajes como FOAF, SIOC y SKOS se usan en esta descripción. Nuestra base de datos tiene más de 4.500.000 triples. Además, la mayoría de los recursos de gnoss.com están vinculados con otros recursos de Freebase y The New York Times. Tenemos más de 20.000 enlaces de estos datasets.</p>\r\n<p> </p>\r\n<p>\r\n<a href=\"http://www.gnoss.com/\">GNOSS</a>\r\n es una plataforma de software, creada por RIAM Intelearning LAB SL, para construir redes sociales especializadas a través de la publicación semántica dinámica de contenidos (dynamic semantic publishing). GNOSS integra gestión del conocimiento, aprendizaje informal y trabajo colaborativo en un entorno de datos enlazados (\r\n<a href=\"http://linkeddata.org/\">Linked Data</a>\r\n). Cada espacio GNOSS incorpora búsquedas semánticas facetadas y la generación semántica de contextos lo que se permite mejorar considerablemente la experiencia del usuario.\r\n</p>\r\n<p> GNOSS funciona sobre las tecnologías y estándares de la web semántica, lo que hace posible, por un lado, estructurar y enlazar entre sí y con los intereses de las personas toda clase de contenidos (Linked Data), y por otro refuerza y amplifica los procesos de gestión del conocimiento con búsquedas facetadas y la generación de contextos documentales y personales para una determinada información.</p>\r\n<p> GNOSS provee a las personas, grupos y organizaciones de las herramientas necesarias para crear y desplegar su identidad digital; conectar inteligencias; crear comunidades basadas en sus intereses y motivaciones; y activar robustos procesos de creatividad, inteligencia, deliberación y pensamiento colectivo.</p>\r\n<p>\r\nÚltimas novedades de GNOSS: \r\n<a href=\"http://noticias.gnoss.com/\">http://noticias.gnoss.com</a>\r\n</p>"},"_id":"gnoss-com-a-social-and-semantic-platform","title":"GNOSS.com, a Social and Semantic Platform"},{"description":{"en":"<p>\r\nThe <a href=\"http://red.gnoss.com/en/community/OpenData\">Open Data RISP / Spanish Open Data Community</a> is a space to discuss issues related to the opening of the public data and reuse. This group is open to any participant with a minimum of interest in the subject. The community is being coordinated by the W3C with the help of the main initiatives in Spain and its re-users (citizens and companies). Open Data RISP offers a selection of 30 resources (November 2012).\r\n</p>\r\n\r\n<p>\r\nLa <a href=\"http://red.gnoss.com/comunidad/OpenData\">comunidad de Trabajo Open Data en España / Open Data RISP</a> es un espacio para discutir temas relacionados con la apertura de datos de la administración pública y sobre su reutilización. Este grupo es abierto a cualquier participante con un mínimo de interés sobre el tema y está siendo coordinado desde la Oficina del W3C y con el impulso de las principales iniciativas RISP en España y sus reutilizadores (ciudadanía y empresas infomediarias). Open Data RISP ofrece una selección de 30 recursos (Noviembre 2012).\r\n</p>"},"_id":"open-data-risp","title":"Open Data RISP, the Spanish Open Data community"},{"description":{"en":"## Description\r\n\r\nssss sssssssssssssss ssssssssssssssssssssssssssssss"},"_id":"testee","title":"xxxxx"},{"description":{"en":"See also package:ordnance_survey.\r\n\r\n### Published data\r\n\r\n* Geographical data about England, Wales, and Scotland\r\n* Provides identifiers for counties, cities, wards, census areas\r\n* Provides identifiers for postcodes\r\n* Relationships between geographical areas (containment, borders)\r\n\r\n### Licence\r\n\r\nOS Open Data Licence\r\n\r\n> The following attribution statement applies to this licence:\r\n> Contains Ordnance Survey data © Crown copyright and database right 2010\r\n> These terms have been aligned to be interoperable with any Creative Commons Attribution 3.0\r\nLicence.\r\n"},"_id":"ordnance-survey-linked-data","title":"Ordnance Survey Linked Data"},{"description":{"en":"A structured controlled vocabulary of the development of <i>Caenorhabditis elegans</i>."},"_id":"bioportal-wbls","title":"C. elegans development"},{"description":{"en":"Terminology on copyright and related concepts"},"_id":"copyrighttermbank","title":"CopyrightTermBank"},{"description":{"en":"Universal Dependencies is a project that seeks to develop cross-linguistically consistent treebank annotation for many languages, with the goal of facilitating multilingual parser development, cross-lingual learning, and parsing research from a language typology perspective. The annotation scheme is based on (universal) Stanford dependencies (de Marneffe et al., 2006, 2008, 2014), Google universal part-of-speech tags (Petrov et al., 2012), and the Interset interlingua for morphosyntactic tagsets (Zeman, 2008).\r\n\r\nThis dataset refers to UD's Latvian treebank.\r\n"},"_id":"universal-dependencies-treebank-latvian","title":"Universal Dependencies Treebank Latvian"},{"description":{"en":"Linked Data from the \"Universidad de Cuenca, Cuenca, Ecuador\" includes data about its academic structure and researchers. "},"_id":"universidad-de-cuenca-linkeddata","title":"Universidad de Cuenca - LinkedData"},{"description":{"en":"data.bnf.fr gathers data from the different databases of the Bibliothèque nationale de France, so as to create Web pages about Works, Authors, Subjects and Places together with a RDF view on the extracted data. \r\n\r\nThere are links to id.loc.gov for languages and nationalities, to dewey.info for subjects, and to DCMI type for types.\r\n\r\nThe authors and subjects are matched to Agrovoc,Geonames, DBpedia, Wikipedia, VIAF, Stitch, Dewey, ISNI, the library of Congress, and the German national library.\r\n\r\nWe use SKOS, FOAF, DC and RDA vocabularies, in a FRBR model."},"_id":"data-bnf-fr","title":"data.bnf.fr - Bibliothèque nationale de France"},{"description":{"en":"A Health IT Ontology for systematically describing application systems and software products in health IT."},"_id":"hito","title":"HITO"},{"description":{"en":" The linguistics community is building a metadata-based infrastructure for the description of its research data and tools. At its core is the ISOcat registry ISOcat.org, a collaborative platform to hold a (to be standardized) set of data catgories (i.e., field descriptors). Descriptors have definitions in natural language and little explicit interrelations. With the registry growing to many hundred entries, authored by many, it is becoming increasingly apparent that the rather informal definitions and their glossary-like design make it hard for users to grasp, exploit and manage the registry’s content. Here we take a large subset of the ISOcat term set and reconstruct from it a tree structure following the footsteps of schema.org. Our ontological re-engineering yields a representation that gives users a hierarchical view of linguistic, metadata-related terminology. The new representation adds to the precision of all definitions by making explicit information which is only implicitly given in the ISOcat registry. It also helps uncovering and addressing potential inconsistencies in term definitions as well as gaps and redundancies in the overall ISOcat term set. The new representation can serve as a complement to the existing ISOcat model, providing additional support for authors and users in browsing, (re-)using, maintaining, and further extending the community’s terminological metadata repertoire.\r\n\r\nThe set of data categories has been taken from the TDG Metadata of the ISOcat data category registry. As the ISOcat registry changes over time, we give a snapshot of all data in this RDF representation, as generated automatically from the registry's export functionality in Dec 2011. Note that this data is a flat representation of the TDG Metadata entries. Each entry is only represented in RDF with its mnemonic identifier, name, persistent identifier and natural language definition. No other information, in particular, no structural information is given.\r\n(http://www.sfs.uni-tuebingen.de/nalida/en/docu/isocat-hierarchy.html)\r\n\r\nFree for academic and research use.\r\n(http://www.sfs.uni-tuebingen.de/nalida/images/isocat/isocatOWL.owl)"},"_id":"isocat-metadata","title":"ISOcat-metadata"},{"description":{"en":"An application ontology integrating knowledge about the eukaryotic cell cycle."},"_id":"bioportal-cco","title":"Cell Cycle Ontology"},{"description":{"en":"This datasource seems to be permanently down. A potential pointer might be this tweet from the maintainer: https://twitter.com/#!/bengee/status/90414011685941248:\r\n\r\n\"another dependency (before #job search) removed: semsol.com now redirects to bnowack.de\""},"_id":"semsol-crunchbase","title":"Semantic CrunchBase"},{"description":{"en":"ontology"},"_id":"ROSHANI_SAHU","title":"TERRORIST ATTACK ONTOLOGY"},{"description":{"en":"This is the Ontology that defines the structure of universe and concept of reality. In super ontology there is a distinction between defining and characteristic features. The devised super ontology and hence the domain ontologies can be reused across applications because of the generalized representation scheme used that is an EHCPR. An Extended Hierarchical Censored Production Rules (EHCPRs) system is a knowledge representation system for reasoning with real life problems and a step towards a generalized representation system."},"_id":"Upper_Ontology","title":"Sup_Ont: An Upper Ontology"},{"description":{"en":"The data of the Shanghai Institute of Organic Chemistry serves chemical and scientific research and development, providing information on compound structure and identification, natural product and medicinal chemistry, safety and environmental protection, chemical literature, chemical reactions and synthesis.Medicine and Natural Product Data 3,127,633 Triples The medicine and natural product dataset contains mainly medicine and natural product information for compounds. In particular, it is composed of the following 2 aspects: drug information: physicochemical properties, pharmacological toxicity, uses, etc.; natural product information: applications, development status, decomposition coefficients, toxicity test data, etc."},"_id":"Organchem-Data","title":"Medicine and Natural Product Data"},{"description":{"en":"This dataset contains information about multi-media content published by the European Parliament at http://audiovisual.europarl.europa.eu/. Media assets of type video, audio and image are contained. All assests are annotated with primary metadata (e.g., length, resolution, size, etc.), as well as topic metadata. Where topics are people, those are represented as complex resources in their own right, with names, roles in organisations, etc. Organisations are located in countries according to the Kasabi country dataset.\r\n"},"_id":"eu-parliament-media","title":"EU Parliament Media Library"},{"description":{"en":"The complete (99% of all points of interest), quality-controlled (60% updated within the last 4 weeks) GoodRelations-based description of shopping and trade in a major German city, with a unique data density.\r\n\r\n"},"_id":"ravensburg-local-shopping-graph","title":"Ravensburg Local Shopping Graph"},{"description":{"en":"PharmGKB curates primary genotype and phenotype data, annotates gene variants and gene-drug-disease relationships via literature review, and summarizes important PGx genes and drug pathways."},"_id":"bio2rdf-pharmgkb","title":"Bio2RDF::Pharmgkb"},{"description":{"en":null},"_id":"opendatacommunities-societal-wellbeing-deprivation-imd-health-rank-la-2010","title":"opendatacommunities-societal-wellbeing-deprivation-imd-health-rank-la-2010"},{"description":{"en":"DBpedia.org is a community effort to extract structured information from Wikipedia and to make this information available on the Web. DBpedia allows you to ask sophisticated queries against Wikipedia and to link other datasets on the Web to Wikipedia data.\r\n\r\nThe English version of the DBpedia knowledge base currently describes 6.0M entities of which 4.6M have abstracts, 1.53M have geo coordinates and 1.6M depictions. In total, 5.2M resources are classified in a consistent ontology, consisting of 1.5M persons, 810K places (including 505K populated places), 490K works (including 135K music albums, 106K films and 20K video games), 275K organizations (including 67K companies and 53K educational institutions), 301K species and 5K diseases. The total number of resources in English DBpedia is 16.9M that, besides the 6.0M resources, includes 1.7M skos concepts (categories), 7.3M redirect pages, 260K disambiguation pages and 1.7M intermediate nodes.\r\n \r\nAltogether the DBpedia 2016-04 release consists of 9.5 billion (2015-10: 8.8 billion) pieces of information (RDF triples) out of which 1.3 billion (2015-10: 1.1 billion) were extracted from the English edition of Wikipedia, 5.0 billion (2015-04: 4.4 billion) were extracted from other language editions and 3.2 billion (2015-10: 3.2 billion) from DBpedia Commons and Wikidata. In general, we observed a growth in mapping-based statements of about 2%.\r\n \r\nThorough statistics can be found on the DBpedia website and general information on the DBpedia datasets here."},"_id":"dbpedia","title":"DBpedia"},{"description":{"en":"Vocabularios de los Códigos de Derecho de la Ciberseguridad en España"},"_id":"file:C:UsersaDesktopurn_webprotege_ontology_c0b8701e-374c-4d5a-bc60-970f0cba1976.owl","title":"Vocabularios de los Códigos de Derecho de la Ciberseguridad en España"},{"description":{"en":"RDF version of the Apertium bilingual dictionary PT-GL. The original dataset (in LMF) comes from http://hdl.handle.net/10230/17115 . The RDF version of the lexica is modelled using lemon (http://lemon-model.net/) and the translation module (http://purl.org/net/translation). More about the Apertium RDF dictionaries at http://linguistic.linkeddata.es/apertium/\r\n"},"_id":"apertium-rdf-pt-gl","title":"Apertium RDF PT-GL"},{"description":{"en":"StatusNet instance hosted at http://planet-libre.org"},"_id":"statusnet-planet-libre-org","title":"statusnet-planet-libre-org"},{"description":{"en":"Describes people, research groups and publications within the Department of Computer Science based at the University of Sheffield.\r\n\r\nPublishes Linked Data in RDF."},"_id":"dcs-sheffield","title":"data.dcs"},{"description":{"en":null},"_id":"opendatacommunities-households-projections-totalhouseolds","title":"opendatacommunities-households-projections-totalhouseolds"},{"description":{"en":"This dataset offers objects (persons, places, works of art, bibliographic items as well as their relations) from an online edition of Joachim von Sandrart’s “Teutsche Academie der Bau-, Bild- und Mahlerey-Künste”, a German three-volume book from the late 17th century.\r\n\r\nPlease note: Data is not yet complete."},"_id":"sandrart-net","title":"sandrart.net"},{"description":{"en":null},"_id":"opendatacommunities-transparency-input-indicators-local-authority-funding-from-government-grant","title":"opendatacommunities-transparency-input-indicators-local-authority-funding-from-government-grant"},{"description":{"en":"A Lexicon of Sanskrit to English"},"_id":"sanskrit-english-lexicon","title":"Sanskrit English Lexicon"},{"description":{"en":"Contains data from personal homepages, such as foaf profiles etc. \r\n\r\nA list of files can be found in the appended text file"},"_id":"personal-homepages","title":"Personal_Homepages"},{"description":{"en":null},"_id":"oceandrilling-borehole","title":"oceandrilling-borehole"},{"description":{"en":"Semantic ISVU (SISVU) aims to thoroughly describe study programmes offered by ISVU - The Information System of Higher Education (Croatian acronym: ISVU). ISVU integrates data on universities, polytechnics and academies located in Croatia. It contains data on organisations, institutions, programmes, courses, lecturers and every other aspect of educational system. Part of the data that describes study programmes is publicly accessible through the web page www.isvu.hr. SISVU semantically describes that part of data."},"_id":"educationalprograms_sisvu","title":"Educational programs - SISVU"},{"description":{"en":"A small ontology for the units of measurement developed during the development of the Sleep Domain Ontology (SDO). It supports the use of SDO within the PhysioMIMI application."},"_id":"bioportal-unitsontology","title":"Units Ontology"},{"description":{"en":"The Linked Data Service of the German National Library (Deutsche Nationalbibliothek, DNB) includes bibliographic data since January 2012. As a first step, the bibliographic data of the DNB’s main collection (apart from the collection of the Deutsches Exilarchiv) and the serials \n(magazines, newspapers and series of the German Union Catalogue of serials (ZDB)) have been converted. \nFor more information see https://www.dnb.de/lds\nFrom January 2014 on, the Linked Data Service of the German National Library (DNB) will issue scheduled releases and will be integrated in the export releases of the other formats. Changes to the conversion and to the data modelling will be made in January, May and September. Changes will be notified in advance via the Linked Data Service mailing list (http://lists.dnb.de/mailman/listinfo/lds). Please subscribe if you are interested in receiving information about future developments in DNB Linked Data Services. In a schedule corresponding to the export releases, updated dumps of the authority and bibliographic data in RDF/XML and Turtle will be available for download in February, June and October. \n\n**Documentation** of the data model and used vocabularies: [https://d-nb.info/1241844151/34](https://d-nb.info/1241844151/34)"},"_id":"deutsche-nationalbibliografie-dnb","title":"Deutsche Nationalbibliografie (DNB)"},{"description":{"en":"Google’s Easter Egg is just one of a huge number of gaming-themed treats that are hidden in the search engine. But over time, many of them have become ineffective(not working), AKA \"Killed by Google\".\n\nOn @elgooG we restore, discover and also create interactive Google Easter Eggs - we provide one-stop exclusive Google Easter Eggs experience services, so you can explore and enjoy almost all the best interactive Google Easter Eggs(Up to 2022), secret Google Tricks, mini Google Doodle Games, funny Google Jokes, Google Pranks, Google Hacks, etc. Just play online, free for all!\n\nWe are NOT affiliated with Google in any way. Just for fun."},"_id":"ElgooG_","title":"Google’s Easter Egg i"},{"description":{"en":"Including the disease names. phenotypes and their classifications involved in Glucose Metabolism Disorder, Diabetes. (OBO and OWL format are available in sourceforge.)"},"_id":"bioportal-ogmd","title":"Ontology of Glucose Metabolism Disorder"},{"description":{"en":"The Time Event Ontology (TEO) is an ontology for representing events, time, and their relationships."},"_id":"bioportal-teo","title":"Time Event Ontology"},{"description":{"en":"The “publingspending” initiative is a free, open, neutral and objective web application. It aims to provide efficient visualizations along with research data of the Hellenic public expenditure."},"_id":"public-spending-in-greece","title":"Public Spending in Greece"},{"description":{"en":"This dataset contains almost all Dutch national regulations in the CEN MetaLex XML, RDF Linked Data and Pajek Network formats. Current coverage is in the order of 27k documents, practically all regulations hosted at [http://overheid.wetten.nl](http://overheid.wetten.nl).\r\n\r\nThe regulations are automatically converted on a daily basis by means of a (hopefully) generic conversion script, that is able to perform a similar conversion for any 'legislative' XML based on a standard mapping from legacy XML elements to CEN MetaLex.\r\n\r\nMetadata follows the guidelines of the CEN MetaLex standard. Legislative events are represented both by means of the MetaLex ontology, as well as using the Open Provenance Model vocabulary (OPMV) and the Simple Event Model (SEM)\r\n\r\nAll URIs are resolvable following the Linked Data principles for Cool URIs."},"_id":"dutch-national-regulations-metalex","title":"MetaLex Document Server"},{"description":{"en":"GFO-Bio is a biological core ontology built on the General Formal Ontology."},"_id":"bioportal-gfo-bio","title":"General Formal Ontology: Biology"},{"description":{"en":"### Description\r\n\r\nThis service provides a live RDF representation of your last 10 tracks submitted to [AudioScrobbler/Last.fm](http://www.audioscrobbler.net/). There are many AudioScrobbler clients for a wide range of media players. It now also provides you with the list of your friends (using their URI on this service, allowing to access their friends and scrobbles).\r\n\r\nThis representations is designed using the Music Ontology, FOAF and a small AudioScrobble ontology. Moreover, it is interlinked with corresponding dereferencable URIs in the Musicbrainz repository (see this quick explanation of why this is important).\r\n\r\n### Statistics\r\n\r\nThe triple count and MusicBrainz link count are based on estimates of total user numbers."},"_id":"dbtune-audioscrobbler","title":"DBTune.org AudioScrobbler RDF Service"},{"description":{"en":"API access to UK primary and secondary legislation. The API provides access to legislation from the UK Statute Law Database and the OPSI website in HTML, XML and RDF formats. The data is not available for download as an entire set. See the documentation in the developer zone for further details."},"_id":"uk-legislation-api","title":"UK Legislation"},{"description":{"en":"The LOD dataset of ASCDC_Archive of the Art Textbooks of Elementary and Public Schools in the Japanese Colonial Period (AS-NTUE-School-Art-Textbooks) was created by the Academia Sinica Center for Digital Cultures (ASCDC) and based on the metadata from the “Archive of the Art Textbooks of Elementary and Public Schools in the Japanese Colonial Period” (日治時代台灣小公學校美術教課書數位典藏收集計畫) in the “Taiwan Union Catalog” (數位典藏與數位學習聯合目錄, https://catalog.digitalarchives.tw/Organization/List.jsp?CID=55514). Originally, the metadata was established by the National Taipei University of Education Department of Digital Technology Design (國立臺北教育大學數位科技設計學系) in Taiwan (ROC). It provides information on the art textbooks of elementary schools published during Japanese Rule and can serve as a database for the study of Taiwan’s art education in the public schools of the early 20th century. Containing 1,849 data records and 59,209 triples, the textual content within the LOD dataset is licensed under the Creative Commons Attribution (CC 0), while the digitized items are under CC-BY-NC-SA."},"_id":"ASCDC-AS-NTUE-School-Art-Textbooks","title":"Archive of the Art Textbooks of Elementary and Public Schools in the Japanese Colonial Period (AS-NTUE-School-Art-Textbooks)"},{"description":{"en":"The Ontology for General Medical Science (OGMS) is based on the papers Toward an Ontological Treatment of Disease and Diagnosis and On Carcinomas and Other Pathological Entities. The ontology attempts to address some of the issues raised at the Workshop on Ontology of Diseases (Dallas, TX) and the Signs, Symptoms, and Findings Workshop(Milan, Italy). OGMS was formerly called the clinical phenotype ontology. Terms from OGMS hang from the Basic Formal Ontology. See http://ontology.buffalo.edu/medo/Disease_and_Diagnosis.pdf"},"_id":"bioportal-ogms","title":"Ontology for General Medical Science"},{"description":{"en":null},"_id":"opendatacommunities-impact-indicators-affordable-housing-starts","title":"opendatacommunities-impact-indicators-affordable-housing-starts"},{"description":{"en":"The Art & Architecture Thesaurus® (AAT) is a structured, multilingual vocabulary including terms, descriptions, and other information for generic concepts related to art, architecture, and other cultural heritage, and conservation. For decades now, the AAT as been used as a primary reference by museums, art libraries, archives, visual resource catalogers, conservation specialists, archaeological projects, bibliographic projects, researchers, and information specialists who are dealing with the needs of these users. Like all of the Getty Vocabularies, the AAT is compliant with international standards and grows through contribution. \r\n\r\n** Openness **\r\nAAT data is released under Open Data Commons Attribution License. Adherence to ODC Attribution instructions for the correct assertion of attribution is encouraged. The preferred form of attribution for AAT is:\r\n\r\n\"*This [title or report or article or dataset] contains information from the Art & Architecture Thesaurus® (AAT) which is made available under the ODC Attribution License.*\"\r\n\r\nSpecial Case: In circumstances where providing the full attribution statement above is not technically feasible, the use of canonical AAT URIs is adequate to satisfy Section 4.3 of the ODC Attribution License."},"_id":"getty-aat","title":"Art & Architecture Thesaurus"},{"description":{"en":"The Confessiones are a prose work in 13 books by Augustine of Hippo written in the 4th century AD. It contains autobiographical narrative and meditations on religious matters, which become prevalent in the last books (X-XIII). The digital text is taken from The Latin Library. The original text was lemmatized and PoS tagged with the UDPipe tool, using an in-house built trained model based on different UD Latin treebanks. The output of UDPipe was then checked manually at the CIRCSE Research Centre of the Università Cattolica del Sacro Cuore, Milan, Italy. The linking of the text to the Lemma Bank of the LiLa Knowledge Base was performed at CIRCSE, too.\n\n"},"_id":"AugustiniConfessiones","title":"Augustini Confessiones in LiLa"},{"description":{"en":"This dataset includes four authority lists (subject headings, historical contexts, actions and document types) used to describe material in French local archives."},"_id":"thesaurus-w","title":"Thesaurus W for Local Archives"},{"description":{"en":"The Kinetic Simulation Algorithm Ontology aims at providing support in unambiguously referring to simulation algorithms when describing a\nsimulation experiment. It describes and classifies existing algorithms and their inter-relationships through the algorithm characteristics and parameters."},"_id":"bioportal-kisao","title":"Kinetic Simulation Algorithm Ontology"},{"description":{"en":"Austrian top-skiers active in world cup. "},"_id":"austrian_ski_racers","title":"Alpine Ski Racers of Austria"},{"description":{"en":null},"_id":"opendatacommunities-impact-indicators-energy-efficiency-new-builds","title":"opendatacommunities-impact-indicators-energy-efficiency-new-builds"},{"description":{"en":"Universal Dependencies is a project that seeks to develop cross-linguistically consistent treebank annotation for many languages, with the goal of facilitating multilingual parser development, cross-lingual learning, and parsing research from a language typology perspective. The annotation scheme is based on (universal) Stanford dependencies (de Marneffe et al., 2006, 2008, 2014), Google universal part-of-speech tags (Petrov et al., 2012), and the Interset interlingua for morphosyntactic tagsets (Zeman, 2008).\r\n\r\nThis dataset refers to UD's Sanskrit treebank.\r\n"},"_id":"universal-dependencies-treebank-sanskrit","title":"Universal Dependencies Treebank Sanskrit"},{"description":{"en":"RDF version of the Apertium bilingual dictionary PT-CA. The original dataset (in LMF) comes from http://hdl.handle.net/10230/17120 . The RDF version of the lexica is modelled using lemon (http://lemon-model.net/) and the translation module (http://purl.org/net/translation). More about the Apertium RDF dictionaries at http://linguistic.linkeddata.es/apertium/\r\n"},"_id":"apertium-rdf-pt-ca","title":"Apertium RDF PT-CA"},{"description":{"en":"The CORE dataset contains information about similarities between scientific papers stored across Open Access repositories. The similarities are calculated using Natural Language Processing techniques based on the full-text. The similarities are provided only for research articles with an accessible and machine readable full-text. More information about the data structure can be found at:http://core-project-local.kmi.open.ac.uk/data-description.\r\n\r\n#### RDF Statistics\r\n\r\nAt the moment we expose more than 92 million RDF triples describing similarities calculated on a set of more than 400k full-text articles harvested from over 230 Open Access repositories.\r\n\r\n#### Links\r\n\r\nThe data about the similarities are represented using the MuSIM ontology (http://kakapo.dcs.qmul.ac.uk/ontology/musim/0.2/musim.html) BIBO ontologies (http://bibliontology.com/) with links to the OAI (RKBExplorer) repository available in the Linked Data cloud. "},"_id":"core","title":"CORE - Semantic Similarity of Open Access publications"},{"description":{"en":null},"_id":"dev8d","title":"dev8d"},{"description":{"en":"Data exposed: Information on Biological Orders, Families, Species as well as species occurrence records and related data\r\n\r\nThe data set currently contains information and linked data for: 19,230 Species, 1,671 Familes, 221 Orders. We have approximately 6,500 species observations, but are awaiting release on the majority of those.\r\n\r\nAlso see TaxonConcept, where species are modeled differently.\r\n\r\nSize of dump and data set: 6.7 MB gzip"},"_id":"geospecies","title":"GeoSpecies Knowledge Base"},{"description":{"en":"StatusNet instance hosted at http://gegeweb.org"},"_id":"statusnet-gegeweb-org","title":"statusnet-gegeweb-org"},{"description":{"en":"this is a test dataset"},"_id":"SATAR_test","title":"SATAR test "},{"description":{"en":"Modeled using the JSON data dumps from the Open Library (http://openlibrary.org/data/ol_dump_latest.txt.gz). Provides a SPARQL endpoint and OpenSearch interface (with RSS 1.0 output).\r\n\r\nThe data model is slightly different than that of the Open Library's native RDF output: it is designed to link out to more resources in the LOD Cloud. "},"_id":"talis-openlibrary","title":"Open Library data mirror in the Talis Platform"},{"description":{"en":null},"_id":"berlios","title":"berlios"},{"description":{"en":"To find and access your readings:\r\nSearch using the course title or course code\r\nFollow the links through to a reading list provided for your course\r\nClick on individual items to show library availability and/or full text of online resources\r\nSign in with your ITS username and password to add personal study notes to items in your list\r\nIf your reading list is not available, check your Study Direct course site."},"_id":"university-sussex-reading-lists","title":"University of Sussex Reading Lists"},{"description":{"en":"Datasets for sensors and sensor observations, created at Kno.e.sis Center, and converted from weather data at Mesowest. Contains descriptions of 20 thousand weather stations and 160 million observations."},"_id":"knoesis-linked-sensor-data","title":"Linked Sensor Data (Kno.e.sis)"},{"description":{"en":"This dataset contains data from the registry of contracts of the Czech Republic - contracts"},"_id":"cz-contracts","title":"Registry of contracts of the Czech Republic - Contracts"},{"description":{"en":"IrefIndex (Interaction Reference Index) provides an index of protein interactions available in a number of primary interaction databases including BIND, BioGRID, CORUM, DIP, HPRD, IntAct, MINT, MPact, MPPI and OPHID. This index includes multiple interaction types including physical and genetic (mapped to their corresponding protein products) as determined by a multitude of methods. "},"_id":"bio2rdf-irefindex","title":"Bio2RDF::Irefindex"},{"description":{"en":"StatusNet instance hosted at http://maymay.net"},"_id":"statusnet-maymay-net","title":"statusnet-maymay-net"},{"description":{"en":"This dataset is composed of events and media descriptions associated with these events. It is obtained from three large public event directories (last.fm, eventful and upcoming) represented with the LODE ontology and from large media directories (flickr, youtube) represented with the W3C Media Ontology. It is interlinked with the larger Linked Open Data cloud and in particular with DBpedia, Freebase, Geonames. It also contains links to numerous related web pages, including MusicBrainz, Geonames, Last.fm, Eventful, Upcoming and Foursquare.\r\n\r\n"},"_id":"event-media","title":"EventMedia"},{"description":{"en":"The Thesaurus of the Bibliography of Linguistic Literature (BLL Thesaurus) represents a comprehensive bilingual vocabulary for indexing and documentation of linguistically relevant publications. Since 1971, it has been continuously developed and enhanced. The BLL Thesaurus covers the field in its entirety: language identifiers, levels of language description, sub-domains and sub-disciplines as well as theoretical frameworks.\r\nThe BLL Thesaurus is hosted and maintained by the University Library Johann Christian Senckenberg in Frankfurt, Germany. The dataset is published as RDF/XML, NT and Turtle and licensed under Creative Commons Attribution (CC-BY)."},"_id":"bll-thesaurus","title":"Bibliography of Linguistic Literature (BLL) Thesaurus"},{"description":{"en":"Nuovo soggettario (NS), edited by the National Central Library of Florence, is the Italian subject indexing tool for various types of resources. It has been developed in compliance with the IFLA recommendations, and other international standards in the field of subject indexing. This tool has been created for general and specialized Italian libraries, and for museums, multimedia libraries, archives and documentation centres. The main component of the NS is a general thesaurus available on the web since 2007 (http://thes.bncf.firenze.sbn.it/ricerca.php). The thesaurus comprises nowadays approximately 73.800 terms and it is updated on a regular basis.\nAll metadata can be used, in accordance with Creative Commons Attribution 4.0 licence."},"_id":"bncf-ns","title":"Thesaurus BNCF"},{"description":{"en":"This dataset collects information on the estimated properties of compounds, including ALogP,ALogP_MR, Minimized_Energy,et. al. via the law of corresponding states (LCS), the method of group contributions (GC), and the like."},"_id":"chemdb-estimatedProperties","title":"chemdb estimated properties dataset"},{"description":{"en":"Datos Abiertos Zaragoza es una iniciativa del Ayuntamiento de Zaragoza para el fomento de la reutilización de la información publicada en su web por parte de la ciudadanía, las empresas y otros organismos, lo que ofrece un aumento de la transparencia de la administración, el incremento de la participación ciudadana y la posibilidad de crecimiento económico en distintos sectores."},"_id":"zaragoza-datosabiertos","title":"Datos Abiertos de Zaragoza"},{"description":{"en":"Shivani Goyal is a Mumbai based Newborn Photographer, Maternity photoshoot, Baby photoshoot, Child Photographer and Family Photographer and has travelled across India for Newborn and Maternity Photoshoot."},"_id":"newborn-photography-maternity-photoshoot-shivani-goyal","title":"Shivani Goyal Photography"},{"description":{"en":"LIME (LInguistic MEtadata) is a vocabulary for expressing linguistic metadata about linguistic resources and linguistically grounded datasets. \r\n\r\nThe metadata vocabulary has been initially presented at the LDL conference and then contributed as the metadata module of the OntoLex suite of Ontology-Lexicon vocabularies. The last publication about it has been presented at ESWC2015\r\n\r\nMore info about its current status of development, its related scientific publications and software, and future evolutions, can be gathered here: http://art.uniroma2.it/lime/\r\n\r\nThe LIME section of the Final model specification of OntoLex contains the latest version of the vocabulary: https://www.w3.org/community/ontolex/wiki/Final_Model_Specification#Metadata_.28lime.29"},"_id":"lime","title":"Linguistic Metadata (LIME) vocabulary"},{"description":{"en":"Datasets regarding the Influence Tracker (http://www.influencetracker.com) service.\r\nThe SPARQL endpoint can be found at http://www.influencetracker.com:8890/sparql ."},"_id":"influence-tracker-dataset","title":"Influence Tracker Dataset"},{"description":{"en":"El Viajero's tourism dataset integrates the various contents from newspapers and digital platforms belonging to the Prisa Digital Group in the domain of news and blogs about travel. \r\nIt relies on the Open Provenance Model to capture the provenance of each resource, and it gathers information about more than 20.000 travel guides, pictures, videos and posts belonging to the platforms."},"_id":"elviajero","title":"El Viajero's tourism dataset"},{"description":{"en":"GeoWordNet is a semantic resource built from the full integration of WordNet, GeoNames and the Italian part of MultiWordNet.\r\n\r\nGeoWordNet Public Dataset contains 3,698,238 entities, 3,698,237 part-of relations between entities, 334 concepts, 182 relations between concepts, 3,698,238 relations between instances and concepts, and 13,562 (English and Italian) alternative entity names.\r\n\r\nCC-BY licence, please refer to \r\nGiunchiglia, Fausto and Maltese, Vincenzo and Farazi, Feroz and Dutta, Biswanath. GeoWordNet: A Resource for Geo-spatial Applications. Technical Report DIT-09-071, Department of Information Engineering and Computer Science, University of Trento. In Proc. of 7th Extended Semantic Web Conference, ESWC 2010, Heraklion, Crete, Greece, pp. 121-136."},"_id":"geowordnet","title":"GeoWordNet"},{"description":{"en":"Stock data from Norway, transformed and published as Linked Data. Data source was the list of all stocks for all years retrieved in XML (transformed initially to JSON), collected from service: http://standardgraphs.ices.dk/StandardGraphsWebServices.asmx/getListStocks?year=0. "},"_id":"Fishery_Stock_Dataset","title":"Norway fishery stocks dataset @PSNC"},{"description":{"en":"The Intergovernmental Science-Policy Platform on Biodiversity and Ecosystem Services (IPBES) is an intergovernmental organisation that assesses both the status of biodiversity and the ecosystem services it provides to society at the request of decision-makers. To this end, IPBES works with a wide range of experts, scientists and policy-makers from different backgrounds and nationalities to produce regular regional, national and global assessment reports. Currently, there is no established ontology to represent intergovernmental reports and the wide range of topics and information they contain. In response, we have developed the IPBES ontology as a basic framework for representing such data as Linked Open Data (LOD) and facilitating their accessibility for further study and analysis."},"_id":"ipbes","title":"IPBES Assessments Ontology"},{"description":{"en":"Podorozhnyk - сеть аптек в Украине"},"_id":"podorozhnyk","title":"podorozhnyk.com"},{"description":{"en":"free knowledge database project hosted by Wikimedia and edited by volunteers"},"_id":"wikidata","title":"Wikidata"}],"datasetsToShow":[]}} var app = new Vue({ el: '#app', data: data(), created: function () { this.datasets = this.datasets.sort((a,b) => (a._id > b._id) ? 1 : ((b._id > a._id) ? -1 : 0)); this.datasetsNarrowed = this.datasets; this.setPage(1); // get current page of items this.datasetsToShow = this.datasetsNarrowed.slice(this.pager.startIndex, this.pager.endIndex + 1); }, methods: { getPager: function (totalItems, currentPage) { var pageSize = 10; // calculate total pages var totalPages = Math.ceil(totalItems / pageSize); var startPage, endPage; if (totalPages <= 10) { // less than 10 total pages so show all startPage = 1; endPage = totalPages; } else { // more than 10 total pages so calculate start and end pages if (currentPage <= 6) { startPage = 1; endPage = 10; } else if (currentPage + 4 >= totalPages) { startPage = totalPages - 9; endPage = totalPages; } else { startPage = currentPage - 5; endPage = currentPage + 4; } } // calculate start and end item indexes var startIndex = (currentPage - 1) * pageSize; var endIndex = Math.min(startIndex + pageSize - 1, totalItems - 1); // create an array of pages to ng-repeat in the pager control //var pages = _.range(startPage, endPage + 1); var pages = [] for(i = startPage; i < endPage + 1; i++) { pages.push(i); } // return object with all pager properties required by the view return { totalItems: totalItems, currentPage: currentPage, pageSize: pageSize, totalPages: totalPages, startPage: startPage, endPage: endPage, startIndex: startIndex, endIndex: endIndex, pages: pages }; }, setPage: function (page) { // get pager object from service this.pager = this.getPager(this.datasetsNarrowed.length, page); if(this.pager.totalPages == 0) { this.datasetsToShow = []; } // check page isn't out of range if (page < 1 || page > this.pager.totalPages) { return; } // get current page of items this.datasetsToShow = this.datasetsNarrowed.slice(this.pager.startIndex, this.pager.endIndex + 1); }, onSearchChange: function (query) { this.lastQuery = query; filteredDatasets = this.datasets.filter(function (t) { return(t._id.includes(query) || t.title.includes(query)/* || (t.description && t.description.en && t.description.en.includes(query))*/ ); }).sort(); ////this.apiMessage = td.message; this.datasetsNarrowed = filteredDatasets; this.setPage(1); }, /** Debounce search input by 100 ms */ onSearchInput () { clearTimeout(this.searchDebounce) this.searchDebounce = setTimeout(async () => { this.searchOffset = 0 this.searchResults = await this.search() }, 100) }, /** Call API to search for inputted term */ async search () { console.log(`${window.location.pathname}?search=`+this.searchQuery); window.location.href = `${window.location.pathname}?search=`+this.searchQuery; }, AddDataset: function (dataset) { if (!dataset) { return; } this.datasetService.createDataset(dataset) .then(function (td) { console.log(td); this.datasets.push(td.dataset); //update search this.onSearchChange(this.lastQuery); }); }, showDeleteDataset: function (dataset) { this.datasetToDelete = dataset; this.apiMessage = ""; }, deleteDataset: function (dataset) { if (!dataset) { return; } var datasetId = dataset._id; this.datasetService.deleteDataset(dataset) .then(function (td) { filteredDatasets = this.datasets.filter(function (t) { t._id !== datasetId }); //const filteredDatasetsToShow = this.datasetsToShow.filter(t => t._id !== datasetId); this.apiMessage = td.message; this.datasets = filteredDatasets; //this.datasetsToShow = filteredDatasetsToShow; //update search this.onSearchChange(this.lastQuery); }); } } }); </script> <script>[].forEach.call(document.querySelectorAll('input[type="tags"]'), tagsInput);</script> </body> </html>

Pages: 1 2 3 4 5 6 7 8 9 10