Revision: 3250
http://dl-learner.svn.sourceforge.net/dl-learner/?rev=3250&view=rev
Author: lorenz_b
Date: 2011-09-13 09:52:14 +0000 (Tue, 13 Sep 2011)
Log Message:
-----------
Added map for prefixes based on the list at prefix.cc.
Added Paths:
-----------
trunk/components-core/src/main/java/org/dllearner/utilities/PrefixCCMap.java
trunk/components-core/src/main/resources/prefixes.csv
Added: trunk/components-core/src/main/java/org/dllearner/utilities/PrefixCCMap.java
===================================================================
--- trunk/components-core/src/main/java/org/dllearner/utilities/PrefixCCMap.java (rev 0)
+++ trunk/components-core/src/main/java/org/dllearner/utilities/PrefixCCMap.java 2011-09-13 09:52:14 UTC (rev 3250)
@@ -0,0 +1,103 @@
+package org.dllearner.utilities;
+
+import java.io.BufferedReader;
+import java.io.File;
+import java.io.FileNotFoundException;
+import java.io.FileOutputStream;
+import java.io.FileReader;
+import java.io.FileWriter;
+import java.io.IOException;
+import java.io.PrintWriter;
+import java.net.URL;
+import java.nio.channels.Channels;
+import java.nio.channels.ReadableByteChannel;
+import java.util.HashMap;
+import java.util.HashSet;
+import java.util.Set;
+
+public class PrefixCCMap extends HashMap<String, String>{
+
+ private static final String LOCAL_FILE = "prefixes.csv";
+
+ private static PrefixCCMap instance;
+
+ private PrefixCCMap(){
+ fillMap();
+ }
+
+ private void fillMap() {
+ try {
+ BufferedReader bufRdr = new BufferedReader(new FileReader(new File(this.getClass().getClassLoader().getResource(LOCAL_FILE).getPath())));
+ String line = null;
+ String key = null;
+ String value = null;
+ while ((line = bufRdr.readLine()) != null) {
+ String[] entry = line.split(",");
+ if(entry.length == 2){
+ key = entry[0].trim();
+ value = entry[1].trim();
+
+ put(key, value);
+ }
+ }
+ } catch (FileNotFoundException e) {
+ e.printStackTrace();
+ } catch (IOException e) {
+ e.printStackTrace();
+ }
+ }
+
+ public static PrefixCCMap getInstance(){
+ if(instance == null){
+ instance = new PrefixCCMap();
+ }
+ return instance;
+ }
+
+ /**
+ * This main methods updates the local prefix file by loading latest prefix list from prefix.cc.
+ * @param args
+ * @throws IOException
+ */
+ public static void main(String[] args) throws IOException {
+ //load latest file from prefix.cc
+ String target = "src/main/resources/prefixes.csv";
+ URL google = new URL("http://prefix.cc/popular/all.file.csv");
+ ReadableByteChannel rbc = Channels.newChannel(google.openStream());
+ File file = new File(target);
+ if(!file.exists()){
+ file.createNewFile();
+ }
+ FileOutputStream fos = new FileOutputStream(file);
+ fos.getChannel().transferFrom(rbc, 0, 1 << 24);
+ fos.close();
+
+ //Reload file and filter entries where second argument is empty
+ File tmpFile = new File(target + ".tmp");
+ File inFile = new File(target);
+ PrintWriter pw = new PrintWriter(new FileWriter(tmpFile));
+ BufferedReader br = new BufferedReader(new FileReader(inFile));
+ String line = null;
+ Set<String> values = new HashSet<String>();
+ while ((line = br.readLine()) != null) {
+ String[] entry = line.split(",");
+ if(entry.length == 2){
+ String key = entry[0];
+ String value = entry[1];
+ value = value.substring(1);
+ value = value.substring(0, value.length()-1);
+ if(!value.trim().isEmpty() && !values.contains(value)){
+ values.add(value);
+ pw.println(entry[0] + "," + value);
+ pw.flush();
+ }
+ }
+ }
+ pw.close();
+ br.close();
+
+ inFile.delete();
+ tmpFile.renameTo(inFile);
+ }
+
+}
Property changes on: trunk/components-core/src/main/java/org/dllearner/utilities/PrefixCCMap.java
___________________________________________________________________
Added: svn:mime-type
+ text/plain
Added: trunk/components-core/src/main/resources/prefixes.csv
===================================================================
--- trunk/components-core/src/main/resources/prefixes.csv (rev 0)
+++ trunk/components-core/src/main/resources/prefixes.csv 2011-09-13 09:52:14 UTC (rev 3250)
@@ -0,0 +1,612 @@
+yago,http://dbpedia.org/class/yago/
+rdf,http://www.w3.org/1999/02/22-rdf-syntax-ns#
+foaf,http://xmlns.com/foaf/0.1/
+dbp,http://dbpedia.org/property/
+owl,http://www.w3.org/2002/07/owl#
+dc,http://purl.org/dc/elements/1.1/
+dbo,http://dbpedia.org/ontology/
+rdfs,http://www.w3.org/2000/01/rdf-schema#
+sc,http://umbel.org/umbel/sc/
+rss,http://purl.org/rss/1.0/
+fb,http://rdf.freebase.com/ns/
+geonames,http://www.geonames.org/ontology#
+skos,http://www.w3.org/2004/02/skos/core#
+cyc,http://sw.opencyc.org/concept/
+geo,http://www.w3.org/2003/01/geo/wgs84_pos#
+sioc,http://rdfs.org/sioc/ns#
+akt,http://www.aktors.org/ontology/portal#
+dbpedia,http://dbpedia.org/resource/
+admin,http://webns.net/mvcb/
+gr,http://purl.org/goodrelations/v1#
+swrc,http://swrc.ontoware.org/ontology#
+xsd,http://www.w3.org/2001/XMLSchema#
+xhtml,http://www.w3.org/1999/xhtml/vocab#
+doap,http://usefulinc.com/ns/doap#
+vcard,http://www.w3.org/2006/vcard/ns#
+content,http://purl.org/rss/1.0/modules/content/
+bill,http://www.rdfabout.com/rdf/schema/usbill/
+dcterms,http://purl.org/dc/terms/
+mo,http://purl.org/ontology/mo/
+wot,http://xmlns.com/wot/0.1/
+wn20schema,http://www.w3.org/2006/03/wn/wn20/schema/
+d2rq,http://www.wiwiss.fu-berlin.de/suhl/bizer/D2RQ/0.1#
+gen,http://www.w3.org/2006/gen/ont#
+nie,http://www.semanticdesktop.org/ontologies/2007/01/19/nie#
+void,http://rdfs.org/ns/void#
+test2,http://this.invalid/test2#
+org,http://www.w3.org/ns/org#
+movie,http://data.linkedmdb.org/resource/movie/
+ex,http://example.com/
+rel,http://purl.org/vocab/relationship/
+bio,http://purl.org/vocab/bio/0.1/
+http,http://www.w3.org/2006/http#
+dcmit,http://purl.org/dc/dcmitype/
+reco,http://purl.org/reco#
+cc,http://creativecommons.org/ns#
+nfo,http://www.semanticdesktop.org/ontologies/2007/03/22/nfo#
+ac,http://umbel.org/umbel/ac/
+xfn,http://vocab.sindice.com/xfn#
+earl,http://www.w3.org/ns/earl#
+og,http://opengraphprotocol.org/schema/
+air,http://dig.csail.mit.edu/TAMI/2007/amord/air#
+ical,http://www.w3.org/2002/12/cal/ical#
+media,http://purl.org/media#
+rev,http://purl.org/stuff/rev#
+cv,http://rdfs.org/resume-rdf/
+tag,http://www.holygoat.co.uk/owl/redwood/0.1/tags/
+swc,http://data.semanticweb.org/ns/swc/ontology#
+botany,http://purl.org/NET/biol/botany#
+bibo,http://purl.org/ontology/bibo/
+xf,http://www.w3.org/2002/xforms/
+factbook,http://www4.wiwiss.fu-berlin.de/factbook/ns#
+days,http://ontologi.es/days#
+cfp,http://sw.deri.org/2005/08/conf/cfp.owl#
+sism,http://purl.oclc.org/NET/sism/0.1/
+vann,http://purl.org/vocab/vann/
+osag,http://www.ordnancesurvey.co.uk/ontology/AdministrativeGeography/v2.0/AdministrativeGeography.rdf#
+owlim,http://www.ontotext.com/trree/owlim#
+dir,http://schemas.talis.com/2005/dir/schema#
+cld,http://purl.org/cld/terms/
+afn,http://jena.hpl.hp.com/ARQ/function#
+book,http://purl.org/NET/book/vocab#
+fn,http://www.w3.org/2005/xpath-functions#
+musim,http://purl.org/ontology/similarity/
+akts,http://www.aktors.org/ontology/support#
+cs,http://purl.org/vocab/changeset/schema#
+aiiso,http://purl.org/vocab/aiiso/schema#
+ad,http://schemas.talis.com/2005/address/schema#
+mu,http://www.kanzaki.com/ns/music#
+sd,http://www.w3.org/ns/sparql-service-description#
+po,http://purl.org/ontology/po/
+biblio,http://purl.org/net/biblio#
+event,http://purl.org/NET/c4dm/event.owl#
+dv,http://rdf.data-vocabulary.org/#
+drugbank,http://www4.wiwiss.fu-berlin.de/drugbank/resource/drugbank/
+uniprot,http://purl.uniprot.org/core/
+memo,http://ontologies.smile.deri.ie/2009/02/27/memo#
+dcn,http://www.w3.org/2007/uwa/context/deliverycontext.owl#
+rdfg,http://www.w3.org/2004/03/trix/rdfg-1/
+log,http://www.w3.org/2000/10/swap/log#
+co,http://purl.org/ontology/co/core#
+qb,http://purl.org/linked-data/cube#
+ome,http://purl.org/ontomedia/core/expression#
+af,http://purl.org/ontology/af/
+giving,http://ontologi.es/giving#
+swanq,http://purl.org/swan/1.2/qualifiers/
+cmp,http://www.ontologydesignpatterns.org/cp/owl/componency.owl#
+lomvoc,http://ltsc.ieee.org/rdf/lomv1p0/vocabulary#
+rif,http://www.w3.org/2007/rif#
+ir,http://www.ontologydesignpatterns.org/cp/owl/informationrealization.owl#
+ctag,http://commontag.org/ns#
+ok,http://okkam.org/terms#
+swande,http://purl.org/swan/1.2/discourse-elements/
+math,http://www.w3.org/2000/10/swap/math#
+daia,http://purl.org/ontology/daia/
+sioct,http://rdfs.org/sioc/types#
+jdbc,http://d2rq.org/terms/jdbc/
+myspace,http://purl.org/ontology/myspace#
+sr,http://www.openrdf.org/config/repository/sail#
+tzont,http://www.w3.org/2006/timezone#
+daml,http://www.daml.org/2001/03/daml+oil#
+wo,http://purl.org/ontology/wo/
+politico,http://www.rdfabout.com/rdf/schema/politico/
+pmlj,http://inference-web.org/2.0/pml-justification.owl#
+usgov,http://www.rdfabout.com/rdf/schema/usgovt/
+taxo,http://purl.org/rss/1.0/modules/taxonomy/
+lfm,http://purl.org/ontology/last-fm/
+vote,http://www.rdfabout.com/rdf/schema/vote/
+frbr,http://purl.org/vocab/frbr/core#
+doac,http://ramonantonio.net/doac/0.1/#
+wn,http://xmlns.com/wordnet/1.6/
+affy,http://www.affymetrix.com/community/publications/affymetrix/tmsplice#
+con,http://www.w3.org/2000/10/swap/pim/contact#
+prv,http://purl.org/net/provenance/ns#
+scot,http://scot-project.org/scot/ns#
+irrl,http://www.ontologydesignpatterns.org/cp/owl/informationobjectsandrepresentationlanguages.owl#
+scovo,http://purl.org/NET/scovo#
+nco,http://www.semanticdesktop.org/ontologies/2007/03/22/nco#
+lgd,http://linkedgeodata.org/ontology/
+wordmap,http://purl.org/net/ns/wordmap#
+omt,http://purl.org/ontomedia/ext/common/trait#
+sider,http://www4.wiwiss.fu-berlin.de/sider/resource/sider/
+user,http://schemas.talis.com/2005/user/schema#
+ore,http://www.openarchives.org/ore/terms/
+lode,http://linkedevents.org/ontology/
+ecs,http://rdf.ecs.soton.ac.uk/ontology/ecs#
+rep,http://www.openrdf.org/config/repository#
+nao,http://www.semanticdesktop.org/ontologies/2007/08/15/nao#
+spin,http://spinrdf.org/spin#
+swrl,http://www.w3.org/2003/11/swrl#
+lx,http://purl.org/NET/lx#
+ti,http://www.ontologydesignpatterns.org/cp/owl/timeinterval.owl#
+unit,http://qudt.org/vocab/unit#
+spc,http://purl.org/ontomedia/core/space#
+es,http://eulersharp.sourceforge.net/2003/03swap/log-rules#
+zoology,http://purl.org/NET/biol/zoology#
+swrlb,http://www.w3.org/2003/11/swrlb#
+fec,http://www.rdfabout.com/rdf/schema/usfec/
+lang,http://ontologi.es/lang/core#
+coref,http://www.rkbexplorer.com/ontologies/coref#
+doc,http://www.w3.org/2000/10/swap/pim/doc#
+os,http://www.w3.org/2000/10/swap/os#
+atomix,http://buzzword.org.uk/rdf/atomix#
+ne,http://umbel.org/umbel/ne/
+omb,http://purl.org/ontomedia/ext/common/being#
+money,http://purl.org/net/rdf-money/
+hard,http://www.w3.org/2007/uwa/context/hardware.owl#
+ov,http://open.vocab.org/terms/
+java,http://www.w3.org/2007/uwa/context/java.owl#
+eztag,http://ontologies.ezweb.morfeo-project.org/eztag/ns#
+abc,http://www.metadata.net/harmony/ABCSchemaV5Commented.rdf#
+tmo,http://www.semanticdesktop.org/ontologies/2008/05/20/tmo#
+vs,http://www.w3.org/2003/06/sw-vocab-status/ns#
+sede,http://eventography.org/sede/0.1/
+nrl,http://www.semanticdesktop.org/ontologies/2007/08/15/nrl#
+ibis,http://purl.org/ibis#
+code,http://telegraphis.net/ontology/measurement/code#
+omp,http://purl.org/ontomedia/ext/common/profession#
+dcam,http://purl.org/dc/dcam/
+imm,http://schemas.microsoft.com/imm/
+xhe,http://buzzword.org.uk/rdf/xhtml-elements#
+kwijibo,http://kwijibo.talis.com/
+sv,http://schemas.talis.com/2005/service/schema#
+h5,http://buzzword.org.uk/rdf/h5#
+space,http://purl.org/net/schemas/space/
+wdrs,http://www.w3.org/2007/05/powder-s#
+video,http://purl.org/media/video#
+wnschema,http://www.cogsci.princeton.edu/~wn/schema/
+sail,http://www.openrdf.org/config/sail#
+custom,http://www.openrdf.org/config/sail/custom#
+acc,http://purl.org/NET/acc#
+rsa,http://www.w3.org/ns/auth/rsa#
+sit,http://www.ontologydesignpatterns.org/cp/owl/situation.owl#
+wdr,http://www.w3.org/2007/05/powder#
+airport,http://www.daml.org/2001/10/html/airport-ont#
+rei,http://www.w3.org/2004/06/rei#
+mit,http://purl.org/ontology/mo/mit#
+phss,http://ns.poundhill.com/phss/1.0/
+ncal,http://www.semanticdesktop.org/ontologies/2007/04/02/ncal#
+osoc,http://web-semantics.org/ns/opensocial#
+ptr,http://www.w3.org/2009/pointers#
+protege,http://protege.stanford.edu/system#
+irw,http://www.ontologydesignpatterns.org/ont/web/irw.owl#
+omc,http://purl.org/ontomedia/ext/common/bestiary#
+tdb,http://jena.hpl.hp.com/2008/tdb#
+meta,http://www.openrdf.org/rdf/2009/metadata#
+iswc,http://annotation.semanticweb.org/2004/iswc#
+lingvoj,http://www.lingvoj.org/ontology#
+resex,http://resex.rkbexplorer.com/ontologies/resex#
+chord,http://purl.org/ontology/chord/
+p3p,http://www.w3.org/2002/01/p3prdfv1#
+oauth,http://demiblog.org/vocab/oauth#
+acl,http://www.w3.org/ns/auth/acl#
+tl,http://purl.org/NET/c4dm/timeline.owl#
+xen,http://buzzword.org.uk/rdf/xen#
+acm,http://www.rkbexplorer.com/ontologies/acm#
+link,http://www.w3.org/2006/link#
+umbel,http://umbel.org/umbel#
+swh,http://plugin.org.uk/swh-plugins/
+lom,http://ltsc.ieee.org/rdf/lomv1p0/lom#
+common,http://www.w3.org/2007/uwa/context/common.owl#
+ya,http://blogs.yandex.ru/schema/foaf/
+frbre,http://purl.org/vocab/frbr/extended#
+prj,http://purl.org/stuff/project/
+net,http://www.w3.org/2007/uwa/context/network.owl#
+hlisting,http://sindice.com/hlisting/0.1/
+sdl,http://purl.org/vocab/riro/sdl#
+trackback,http://madskills.com/public/xml/rss/module/trackback/
+nmo,http://www.semanticdesktop.org/ontologies/2007/03/22/nmo#
+cert,http://www.w3.org/ns/auth/cert#
+spl,http://spinrdf.org/spl#
+sp,http://spinrdf.org/sp#
+dailymed,http://www4.wiwiss.fu-berlin.de/dailymed/resource/dailymed/
+resist,http://www.rkbexplorer.com/ontologies/resist#
+swp,http://www.w3.org/2004/03/trix/swp-2/
+fresnel,http://www.w3.org/2004/09/fresnel#
+lt,http://diplomski.nelakolundzija.org/LTontology.rdf#
+wv,http://vocab.org/waiver/terms/
+product,http://purl.org/commerce/product#
+test,http://test2.example.com/
+gold,http://purl.org/linguistics/gold/
+smiley,http://www.smileyontology.com/ns#
+swandr,http://purl.org/swan/1.2/discourse-relationships/
+ddc,http://purl.org/NET/decimalised#
+soft,http://www.w3.org/2007/uwa/context/software.owl#
+nexif,http://www.semanticdesktop.org/ontologies/2007/05/10/nexif#
+skosxl,http://www.w3.org/2008/05/skos-xl#
+ire,http://www.ontologydesignpatterns.org/cpont/ire.owl#
+fed,http://www.openrdf.org/config/sail/federation#
+courseware,http://courseware.rkbexplorer.com/ontologies/courseware#
+biol,http://purl.org/NET/biol/ns#
+gpt,http://purl.org/vocab/riro/gpt#
+sesame,http://www.openrdf.org/schema/sesame#
+time,http://www.w3.org/2006/time#
+atom,http://www.w3.org/2005/Atom/
+omm,http://purl.org/ontomedia/core/media#
+lotico,http://www.lotico.com/resource/
+web,http://www.w3.org/2007/uwa/context/web.owl#
+sm,http://topbraid.org/sparqlmotion#
+states,http://www.w3.org/2005/07/aaa#
+moat,http://moat-project.org/ns#
+pimo,http://www.semanticdesktop.org/ontologies/2007/11/01/pimo#
+push,http://www.w3.org/2007/uwa/context/push.owl#
+bio2rdf,http://bio2rdf.org/
+bsbm,http://www4.wiwiss.fu-berlin.de/bizer/bsbm/v01/vocabulary/
+bibtex,http://purl.oclc.org/NET/nknouf/ns/bibtex#
+music,http://musicontology.com/
+dummy,http://hello.com/
+am,http://vocab.deri.ie/am#
+wairole,http://www.w3.org/2005/01/wai-rdf/GUIRoleTaxonomy#
+pmt,http://tipsy.googlecode.com/svn/trunk/vocab/pmt#
+loc,http://www.w3.org/2007/uwa/context/location.owl#
+doclist,http://www.junkwork.net/xml/DocumentList#
+pmlr,http://inference-web.org/2.0/pml-relation.owl#
+ddl,http://purl.org/vocab/riro/ddl#
+audio,http://purl.org/media/audio#
+qdoslf,http://foaf.qdos.com/lastfm/schema/
+uri,http://purl.org/NET/uri#
+crypto,http://www.w3.org/2000/10/swap/crypto#
+like,http://ontologi.es/like#
+lfn,http://www.dotnetrdf.org/leviathan#
+xl,http://langegger.at/xlwrap/vocab#
+dady,http://purl.org/NET/dady#
+sl,http://www.semanlink.net/2001/00/semanlink-schema#
+wisski,http://wiss-ki.eu/
+pr,http://ontologi.es/profiling#
+climb,http://climb.dataincubator.org/vocabs/climb/
+conserv,http://conserv.deri.ie/ontology#
+sml,http://topbraid.org/sparqlmotionlib#
+dcat,http://www.w3.org/ns/dcat#
+formats,http://www.w3.org/ns/formats/
+label,http://purl.org/net/vocab/2004/03/label#
+puc,http://purl.org/NET/puc#
+list,http://www.w3.org/2000/10/swap/list#
+lifecycle,http://purl.org/vocab/lifecycle/schema#
+swanpav,http://purl.org/swan/1.2/pav/
+smf,http://topbraid.org/sparqlmotionfunctions#
+grddl,http://www.w3.org/2003/g/data-view#
+pmlp,http://inference-web.org/2.0/pml-provenance.owl#
+opm,http://openprovenance.org/ontology#
+cycann,http://sw.cyc.com/CycAnnotations_v1#
+obj,http://www.openrdf.org/rdf/2009/object#
+urn,http://fliqz.com/
+play,http://uriplay.org/spec/ontology/#
+ping,http://purl.org/net/pingback/
+c4n,http://vocab.deri.ie/c4n#
+mysql,http://web-semantics.org/ns/mysql/
+rdfa,http://www.w3.org/ns/rdfa#
+osgb,http://data.ordnancesurvey.co.uk/id/
+resource,http://purl.org/vocab/resourcelist/schema#
+xesam,http://freedesktop.org/standards/xesam/1.0/core#
+plink,http://buzzword.org.uk/rdf/personal-link-types#
+so,http://purl.org/ontology/symbolic-music/
+commerce,http://purl.org/commerce#
+opensearch,http://a9.com/-/spec/opensearch/1.1/
+exif,http://www.w3.org/2003/12/exif/ns#
+psych,http://purl.org/vocab/psychometric-profile/
+evset,http://dsnotify.org/vocab/eventset/0.1/
+sysont,http://ns.ontowiki.net/SysOnt/
+ldap,http://purl.org/net/ldap/
+string,http://www.w3.org/2000/10/swap/string#
+swanag,http://purl.org/swan/1.2/agents/
+nid3,http://www.semanticdesktop.org/ontologies/2007/05/10/nid3#
+ttl,http://www.w3.org/2008/turtle#
+swanco,http://purl.org/swan/1.2/swan-commons/
+tripfs,http://purl.org/tripfs/2010/02#
+imreg,http://www.w3.org/2004/02/image-regions#
+swanci,http://purl.org/swan/1.2/citations/
+meetup,http://www.lotico.com/meetup/
+cnt,http://www.w3.org/2008/content#
+okkam,http://models.okkam.org/ENS-core-vocabulary#
+mf,http://poshrdf.org/ns/mf#
+rec,http://purl.org/ontology/rec/core#
+xhtmlvocab,http://www.w3.org/1999/xhtml/vocab/
+coin,http://purl.org/court/def/2009/coin#
+geographis,http://telegraphis.net/ontology/geography/geography#
+opo,http://online-presence.net/opo/ns#
+swivt,http://semantic-mediawiki.org/swivt/1.0#
+rooms,http://vocab.deri.ie/rooms#
+oat,http://openlinksw.com/schemas/oat/
+bib,http://zeitkunst.org/bibtex/0.1/bibtex.owl#
+oc,http://opencoinage.org/rdf/
+status,http://ontologi.es/status#
+ezcontext,http://ontologies.ezweb.morfeo-project.org/ezcontext/ns#
+swid,http://semanticweb.org/id/
+pmlt,http://inference-web.org/2.0/pml-trust.owl#
+sparql,http://www.openrdf.org/config/repository/sparql#
+txn,http://lod.taxonconcept.org/ontology/txn.owl#
+oo,http://purl.org/openorg/
+ct,http://data.linkedct.org/resource/linkedct/
+wlp,http://weblab-project.org/core/model/property/processing/
+ufmedia,http://purl.org/microformat/hmedia/
+sioca,http://rdfs.org/sioc/actions#
+awol,http://bblfish.net/work/atom-owl/2006-06-06/#
+pdo,http://ontologies.smile.deri.ie/pdo#
+pto,http://www.productontology.org/id/
+aifb,http://www.aifb.kit.edu/id/
+prot,http://www.proteinontology.info/po.owl#
+evopat,http://ns.aksw.org/Evolution/
+meteo,http://purl.org/ns/meteo#
+tarot,http://data.totl.net/tarot/card/
+ist,http://purl.org/ontology/is/types/
+anca,http://users.utcluj.ro/~raluca/rdf_ontologies_ralu/ralu_modified_ontology_pizzas2_0#
+whois,http://www.kanzaki.com/ns/whois#
+sawsdl,http://www.w3.org/ns/sawsdl#
+rulz,http://purl.org/NET/rulz#
+sdmx,http://purl.org/linked-data/sdmx#
+copyright,http://rhizomik.net/ontologies/2008/05/copyrightonto.owl#
+dnr,http://www.dotnetrdf.org/configuration#
+xbrli,http://www.xbrl.org/2003/instance#
+dayta,http://dayta.me/resource#
+isq,http://purl.org/ontology/is/quality/
+game,http://data.totl.net/game/
+isi,http://purl.org/ontology/is/inst/
+yoda,http://purl.org/NET/yoda#
+ean,http://openean.kaufkauf.net/id/
+remus,http://www.semanticweb.org/ontologies/2010/6/Ontology1279614123500.owl#
+opus,http://lsdis.cs.uga.edu/projects/semdis/opus#
+act,http://www.w3.org/2007/rif-builtin-action#
+derecho,http://purl.org/derecho#
+compass,http://purl.org/net/compass#
+loticoowl,http://www.lotico.com/ontology/
+lark1,http://users.utcluj.ro/~raluca/ontology/Ontology1279614123500.owl#
+opmv,http://purl.org/net/opmv/ns#
+cos,http://www.inria.fr/acacia/corese#
+posh,http://poshrdf.org/ns/posh/
+is,http://purl.org/ontology/is/core#
+olo,http://purl.org/ontology/olo/core#
+cco,http://purl.org/ontology/cco/core#
+geoes,http://geo.linkeddata.es/page/ontology/
+gridworks,http://purl.org/net/opmv/types/gridworks#
+conv,http://purl.org/twc/vocab/conversion/
+nt,http://ns.inria.fr/nicetag/2010/09/09/voc#
+search,http://sindice.com/vocab/search#
+geospecies,http://rdf.geospecies.org/ont/geospecies#
+hcterms,http://purl.org/uF/hCard/terms/
+r2r,http://www4.wiwiss.fu-berlin.de/bizer/r2r/
+ao,http://purl.org/ontology/ao/core#
+tio,http://purl.org/tio/ns#
+tripfs2,http://purl.org/tripfs/2010/06#
+dgfoaf,http://west.uni-koblenz.de/ontologies/2010/07/dgfoaf.owl#
+lib,http://schemas.talis.com/2005/library/schema#
+cito,http://purl.org/net/cito/
+protons,http://proton.semanticweb.org/2005/04/protons#
+session,http://redfoot.net/2005/session#
+dblp,http://www4.wiwiss.fu-berlin.de/dblp/terms.rdf#
+ma,http://www.w3.org/ns/ma-ont#
+spacerel,http://data.ordnancesurvey.co.uk/ontology/spatialrelations/
+pbo,http://purl.org/ontology/pbo/core#
+nsa,http://multimedialab.elis.ugent.be/organon/ontologies/ninsuna#
+toby,http://tobyinkster.co.uk/#
+postcode,http://data.ordnancesurvey.co.uk/id/postcodeunit/
+events,http://eulersharp.sourceforge.net/2003/03swap/event#
+httph,http://www.w3.org/2007/ont/httph#
+lp,http://launchpad.net/rdf/launchpad#
+rail,http://ontologi.es/rail/vocab#
+w3p,http://prov4j.org/w3p/
+countries,http://eulersharp.sourceforge.net/2003/03swap/countries#
+sindice,http://vocab.sindice.net/
+rr,http://www.w3.org/ns/r2rml#
+enc,http://www.w3.org/2001/04/xmlenc#
+geodata,http://sws.geonames.org/
+dul,http://www.loa-cnr.it/ontologies/DUL.owl#
+xtypes,http://purl.org/xtypes/
+units,http://eulersharp.sourceforge.net/2003/03swap/unitsExtension#
+wordnet,http://purl.org/vocabularies/princeton/wordnet/schema#
+bookmark,http://www.w3.org/2002/01/bookmark#
+crm,http://purl.org/NET/cidoc-crm/core#
+esd,http://def.esd.org.uk/
+openlinks,http://www.openlinksw.com/schemas/virtrdf#
+humanbody,http://eulersharp.sourceforge.net/2003/03swap/humanBody#
+phil,http://philosurfical.open.ac.uk/ontology/philosurfical.owl/
+webtlab,http://webtlab.it.uc3m.es/
+provenir,http://knoesis.wright.edu/provenir/provenir.owl#
+pgterms,http://www.gutenberg.org/2009/pgterms/
+languages,http://eulersharp.sourceforge.net/2003/03swap/languages#
+odp,http://ontologydesignpatterns.org/
+nocal,http://vocab.deri.ie/nocal#
+lvont,http://lexvo.org/ontology#
+organiz,http://eulersharp.sourceforge.net/2003/03swap/organization#
+go,http://www.geneontology.org/go#
+drug,http://www.agfa.com/w3c/2009/drugTherapy#
+linkedmdb,http://data.linkedmdb.org/sparql/
+pobo,http://purl.obolibrary.org/obo/
+nndsr,http://semanticdiet.com/schema/usda/nndsr/
+organism,http://eulersharp.sourceforge.net/2003/03swap/organism#
+genab,http://eulersharp.sourceforge.net/2003/03swap/genomeAbnormality#
+bioskos,http://eulersharp.sourceforge.net/2003/03swap/bioSKOSSchemes#
+agents,http://eulersharp.sourceforge.net/2003/03swap/agent#
+xro,http://www.stalsoft.com/ontologies/xro/ns#
+human,http://eulersharp.sourceforge.net/2003/03swap/human#
+malignneo,http://www.agfa.com/w3c/2009/malignantNeoplasm#
+opwn,http://www.ontologyportal.org/WordNet.owl#
+umbelrc,http://umbel.org/umbel/rc/
+muo,http://purl.oclc.org/NET/muo/muo#
+edm,http://www.europeana.eu/schemas/edm/
+prvr,http://purl.org/ontology/prv/rules#
+ps,http://purl.org/payswarm#
+span,http://www.ifomis.org/bfo/1.1/span#
+pc,http://purl.org/opendata-cz/public-contracts#
+transmed,http://www.w3.org/2001/sw/hcls/ns/transmed/
+ui,http://www.w3.org/ns/ui#
+c4o,http://purl.org/spar/c4o/
+core,http://vivoweb.org/ontology/core#
+care,http://eulersharp.sourceforge.net/2003/03swap/care#
+lod2,http://lod2.eu/schema/
+pom,http://maven.apache.org/POM/4.0.0#
+wai,http://purl.org/wai#
+zbwext,http://zbw.eu/namespaces/zbw-extensions/
+oboro,http://obofoundry.org/ro/ro.owl#
+sport,http://www.bbc.co.uk/ontologies/sport/
+wf,http://www.w3.org/2005/01/wf/flow#
+wao,http://webtlab.it.uc3m.es/2010/10/WebAppsOntology#
+cpm,http://catalogus-professorum.org/cpm/
+uni,http://purl.org/weso/uni/uni.html#
+cordis,http://www4.wiwiss.fu-berlin.de/cordis/resource/cordis/
+kb,http://deductions.sf.net/ontology/knowledge_base.owl#
+quak,http://dev.w3.org/cvsweb/2000/quacken/vocab#
+ass,http://uptheasset.org/ontology#
+quantities,http://eulersharp.sourceforge.net/2003/03swap/quantitiesExtension#
+healthcare,http://www.agfa.com/w3c/2009/healthCare#
+vso,http://purl.org/vso/ns#
+req,http://ns.softwiki.de/req/
+xsl,http://www.w3.org/1999/XSL/Transform#
+hemogram,http://www.agfa.com/w3c/2009/hemogram#
+infection,http://www.agfa.com/w3c/2009/infectiousDisorder#
+ccard,http://purl.org/commerce/creditcard#
+sig,http://purl.org/signature#
+hospital,http://www.agfa.com/w3c/2009/hospital#
+clinproc,http://www.agfa.com/w3c/2009/clinicalProcedure#
+eg,http://eulergui.sourceforge.net/engine.owl#
+admingeo,http://data.ordnancesurvey.co.uk/ontology/admingeo/
+agetec,http://www.agetec.org/
+voaf,http://mondeca.com/foaf/voaf#
+fab,http://purl.org/fab/ns#
+payment,http://reference.data.gov.uk/def/payment#
+sco,http://purl.org/ontology/sco#
+tei,http://www.tei-c.org/ns/1.0/
+commons,http://commons.psi.enakting.org/def/
+disease,http://www.agfa.com/w3c/2009/humanDisorder#
+ccom,http://purl.org/ontology/cco/mappings#
+scowt,http://purl.org/weso/ontologies/scowt#
+rnews,http://dec.iptc.org/rnews/0.1/
+aair,http://xmlns.notu.be/aair#
+theatre,http://purl.org/theatre#
+prvtypes,http://purl.org/net/provenance/types#
+arch,http://purl.org/archival/vocab/arch#
+clineva,http://www.agfa.com/w3c/2009/clinicalEvaluation#
+aneo,http://akonadi-project.org/ontologies/aneo#
+eat,http://www.awesomesauce.net/urmom/
+semtweet,http://semantictweet.com/
+environ,http://eulersharp.sourceforge.net/2003/03swap/environment#
+dgtwc,http://data-gov.tw.rpi.edu/2009/data-gov-twc.rdf#
+p20,http://zbw.eu/beta/p20/vocab/
+hints2005,http://purl.org/twc/cabig/model/HINTS2005-1.owl#
+ceo,http://www.ebusiness-unibw.org/ontologies/consumerelectronics/v1#
+zem,http://s.zemanta.com/ns#
+schema,http://schema.org/
+vsto,http://escience.rpi.edu/ontology/vsto/2/0/vsto.owl#
+out,http://ontologies.hypios.com/out#
+spatial,http://geovocab.org/spatial#
+skip,http://skipforward.net/skipforward/resource/
+sio,http://semanticscience.org/resource/
+govwild,http://govwild.org/ontology/GWOntology.owl#
+coeus,http://bioinformatics.ua.pt/coeus/
+prism,http://prismstandard.org/namespaces/1.2/basic/
+soap,http://www.w3.org/2003/05/soap-envelope/
+ro,http://purl.org/obo/owl/ro#
+gelo,http://krauthammerlab.med.yale.edu/ontologies/gelo#
+gml,http://www.opengis.net/gml/
+voag,http://voag.linkedmodel.org/schema/voag#
+vaem,http://www.linkedmodel.org/schema/vaem#
+olia,http://purl.org/olia/olia.owl#
+rich,http://rdf.data-vocabulary.org/
+eco,http://www.ebusiness-unibw.org/ontologies/eclass/5.1.4/#
+rdfdf,http://www.openlinksw.com/virtrdf-data-formats#
+res,http://www.w3.org/2005/sparql-results#
+cpv,http://purl.org/weso/cpv/
+ngeo,http://geovocab.org/geometry#
+cmo,http://purl.org/twc/ontologies/cmo.owl#
+skiresort,http://www.openlinksw.com/ski_resorts/schema#
+oboso,http://purl.org/obo/owl/SO#
+bcnnorms,http://datos.bcn.cl/ontologies/bcn-norms#
+oper,http://sweet.jpl.nasa.gov/2.0/mathOperation.owl#
+saxon,http://saxon.sf.net/
+campsite,http://www.openlinksw.com/campsites/schema#
+dtype,http://www.linkedmodel.org/schema/dtype#
+rv,http://wifo-ravensburg.de/semanticweb.rdf#
+owls,http://www.daml.org/services/owl-s/1.2/Service.owl#
+telmap,http://purl.org/telmap/
+gc,http://www.oegov.org/core/owl/gc#
+iao,http://purl.obolibrary.org/obo/iao.owl#
+ann,http://www.w3.org/2000/10/annotation-ns#
+fingal,http://vocab.deri.ie/fingal#
+edam,http://purl.bioontology.org/ontology/EDAM/
+steel,http://ontorule-project.eu/resources/steel-30#
+vitro,http://vitro.mannlib.cornell.edu/ns/vitro/public#
+fct,http://openlinksw.com/services/facets/1.0/
+wm,http://ns.inria.fr/webmarks#
+mei,http://www.music-encoding.org/ns/mei/
+shv,http://ns.aksw.org/spatialHierarchy/
+nytimes,http://data.nytimes.com/elements/
+mte,http://nl.ijs.si/ME/owl/
+str,http://nlp2rdf.lod2.eu/schema/string/
+s3db,http://www.s3db.org/core#
+biocore,http://bio2rdf.org/core:
+greg,http://kasei.us/about/foaf.xrdf#
+iron,http://purl.org/ontology/iron#
+kw,http://kwantu.net/kw/
+card,http://www.ashutosh.com/test/
+rdo,http://purl.org/rdo/ns#
+lodac,http://lod.ac/ns/lodac#
+overheid,http://standaarden.overheid.nl/owms/
+ms,http://purl.org/obo/owl/MS#
+xt,http://purl.org/twc/vocab/cross-topix#
+decl,http://www.linkedmodel.org/1.0/schema/decl#
+aapi,http://rdf.alchemyapi.com/rdf/v1/s/aapi-schema#
+coo,http://purl.org/coo/ns#
+gesis,http://lod.gesis.org/lodpilot/ALLBUS/vocab.rdf#
+dawgt,http://www.w3.org/2001/sw/DataAccess/tests/test-dawg#
+qudt,http://qudt.org/1.1/schema/qudt#
+eye,http://jena.hpl.hp.com/Eyeball#
+eui,http://institutions.publicdata.eu/#
+scsv,http://purl.org/NET/schema-org-csv#
+tmpl,http://purl.org/restdesc/http-template#
+telix,http://purl.org/telix#
+aims,http://aims.fao.org/aos/common/
+mtecore,http://purl.org/olia/mte/multext-east.owl#
+sso,http://nlp2rdf.lod2.eu/schema/sso/
+cvbase,http://purl.org/captsolo/resume-rdf/0.2/base#
+prissma,http://ns.inria.fr/prissma/v1#
+diseasome,http://www4.wiwiss.fu-berlin.de/diseasome/resource/diseasome/
+re,http://www.w3.org/2000/10/swap/reason#
+artstor,http://simile.mit.edu/2003/10/ontologies/artstor#
+teach,http://linkedscience.org/teach/ns#
+gazetteer,http://data.ordnancesurvey.co.uk/ontology/50kGazetteer/
+ppo,http://vocab.deri.ie/ppo#
+prog,http://purl.org/prog/
+rdb,http://www.dbs.cs.uni-duesseldorf.de/RDF/relational#
+owlse,http://www.daml.org/services/owl-s/1.2/generic/Expression.owl#
+vcardx,http://buzzword.org.uk/rdf/vcardx#
+s4ac,http://ns.inria.fr/s4ac/v1#
+xch,http://oanda2rdf.appspot.com/xch/
+rpubl,http://rinfo.lagrummet.se/ns/2008/11/rinfo/publ#
+biordf,http://purl.org/net/biordfmicroarray/ns#
+psh,http://psh.techlib.cz/skos/
+ogp,http://ogp.me/ns#
+vdpp,http://data.lirmm.fr/ontologies/vdpp#
+viskov,http://trust.utep.edu/visko/ontology/visko-view-v3.owl#
+viskoo,http://trust.utep.edu/visko/ontology/visko-operator-v3.owl#
+mygrid,http://www.mygrid.org.uk/ontology#
+geovocab,http://geovocab.org/
+rdfdata,http://rdf.data-vocabulary.org/rdf.xml#
+b2rpubchem,http://bio2rdf.org/ns/ns/ns/pubchem#
+kontakt,http://richard.cyganiak.de/
+water,http://escience.rpi.edu/ontology/semanteco/2/0/water.owl#
+fabio,http://purl.org/spar/fabio#
+harrisons,http://harrisons.cc/
+chebi,http://bio2rdf.org/chebi:
+dbptmpl,http://dbpedia.org/resource/Template:
+bcngeo,http://datos.bcn.cl/ontologies/bcn-geographics#
+bcnbio,http://datos.bcn.cl/ontologies/bcn-biographies#
+granatum,http://chem.deri.ie/granatum/
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|