diff --git a/languages/example/rdf/display/everytime/PropertyConfig_es.n3 b/languages/example/rdf/display/everytime/PropertyConfig_es.n3
index 4beaf49e..0aa366f3 100644
--- a/languages/example/rdf/display/everytime/PropertyConfig_es.n3
+++ b/languages/example/rdf/display/everytime/PropertyConfig_es.n3
@@ -42,3 +42,5 @@
"jefe de"@es .
"miembro de"@es .
"tel\u00E9fono"@es .
+ "tiene sub-organización"@es .
+ "organización dentro de"@es .
\ No newline at end of file
diff --git a/languages/example/themes/wilma/i18n/all_es.properties b/languages/example/themes/wilma/i18n/all_es.properties
index 35ac2536..0b02b0cc 100644
--- a/languages/example/themes/wilma/i18n/all_es.properties
+++ b/languages/example/themes/wilma/i18n/all_es.properties
@@ -120,6 +120,7 @@ missing_info_resource = falta de recursos de información
award_receipt_name = Nombre del premio recibido
award_name = Nombre del premio
conferred_by = conferida por
+conferred_on = conferida a
selected_award = Premio Seleccionado
incomplete_date_time_interval = intervalo de la fecha / hora incompleta
diff --git a/productMods/config/listViewConfig-awardOrHonorGiven.xml b/productMods/config/listViewConfig-awardOrHonorGiven.xml
new file mode 100644
index 00000000..6b7ead3e
--- /dev/null
+++ b/productMods/config/listViewConfig-awardOrHonorGiven.xml
@@ -0,0 +1,136 @@
+
+
+
+
+
+
+
+ PREFIX foaf: <http://xmlns.com/foaf/0.1/>
+ PREFIX afn: <http://jena.hpl.hp.com/ARQ/function#>
+ PREFIX bibo: <http://purl.org/ontology/bibo/>
+ PREFIX core: <http://vivoweb.org/ontology/core#>
+ PREFIX owl: <http://www.w3.org/2002/07/owl#>
+ PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
+ PREFIX vitro: <http://vitro.mannlib.cornell.edu/ns/vitro/0.7#>
+
+ SELECT DISTINCT ?awardReceipt
+ ?receiptLabel
+ ?award
+ ?awardLabel
+ ?givenTo
+ ?givenToLabel
+ ?dateTimeStart
+ ?dateTimeEnd
+ ?dateTime
+
+ WHERE {
+ ?subject ?property ?awardReceipt .
+ ?awardReceipt a core:AwardReceipt .
+ OPTIONAL { ?awardReceipt rdfs:label ?receiptLabel }
+ OPTIONAL { ?awardReceipt core:relates ?award .
+ ?award a core:Award .
+ ?award core:relatedBy ?awardReceipt .
+ ?award rdfs:label ?awardLabel
+ }
+ OPTIONAL { ?awardReceipt core:relates ?givenTo .
+ ?givenTo rdfs:label ?givenToLabel
+ }
+ OPTIONAL { ?awardReceipt core:dateTimeInterval ?dateTimeInterval .
+ ?dateTimeInterval core:start ?dateTimeStartValue .
+ ?dateTimeStartValue core:dateTime ?dateTimeStart
+ }
+ OPTIONAL { ?awardReceipt core:dateTimeInterval ?dateTimeInterval .
+ ?dateTimeInterval core:end ?dateTimeEndValue .
+ ?dateTimeEndValue core:dateTime ?dateTimeEnd
+ }
+ OPTIONAL { ?awardReceipt core:dateTimeValue ?dateTimeValue .
+ ?dateTimeValue core:dateTime ?dateTime
+ }
+ } ORDER BY DESC(?dateTime) DESC(?dateTimeEnd)
+
+
+
+ PREFIX bibo: <http://purl.org/ontology/bibo/>
+ PREFIX core: <http://vivoweb.org/ontology/core#>
+ PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
+ PREFIX foaf: <http://xmlns.com/foaf/0.1/>
+
+ CONSTRUCT {
+ ?subject ?property ?awardReceipt .
+ ?awardReceipt a core:AwardReceipt .
+ ?awardReceipt rdfs:label ?receiptLabel .
+ ?awardReceipt core:relates ?award .
+ ?award a core:Award .
+ ?award core:relatedBy ?awardReceipt .
+ ?award rdfs:label ?awardLabel .
+ ?awardReceipt core:relates ?givenTo .
+ ?givenTo rdfs:label ?givenToLabel .
+ ?awardReceipt core:dateTimeValue ?dateTimeValue .
+ ?dateTimeValue core:dateTime ?dateTime
+ } WHERE {
+ {
+ ?subject ?property ?awardReceipt .
+ ?awardReceipt a core:AwardReceipt .
+ } UNION {
+ ?subject ?property ?awardReceipt .
+ ?awardReceipt a core:AwardReceipt .
+ ?awardReceipt rdfs:label ?receiptLabel
+ } UNION {
+ ?subject ?property ?awardReceipt .
+ ?awardReceipt a core:AwardReceipt .
+ ?awardReceipt rdfs:label ?receiptLabel .
+ ?awardReceipt core:relates ?award .
+ ?award a core:Award .
+ ?award core:relatedBy ?awardReceipt .
+ ?award rdfs:label ?awardLabel
+ } UNION {
+ ?subject ?property ?awardReceipt .
+ ?awardReceipt a core:AwardReceipt .
+ ?awardReceipt rdfs:label ?receiptLabel .
+ ?awardReceipt core:relates ?givenTo .
+ ?givenTo a foaf:Person .
+ ?givenTo rdfs:label ?givenToLabel
+ } UNION {
+ ?subject ?property ?awardReceipt .
+ ?awardReceipt a core:AwardReceipt .
+ ?awardReceipt core:dateTimeValue ?dateTimeValue .
+ ?dateTimeValue core:dateTime ?dateTime
+ }
+ }
+
+
+
+ PREFIX core: <http://vivoweb.org/ontology/core#>
+ CONSTRUCT {
+ ?subject ?property ?awardReceipt .
+ ?awardReceipt a core:AwardReceipt .
+ ?awardReceipt core:dateTimeInterval ?dateTimeInterval .
+ ?dateTimeInterval core:start ?dateTimeStartValue .
+ ?dateTimeStartValue core:dateTime ?dateTimeStart
+ } WHERE {
+ ?subject ?property ?awardReceipt .
+ ?awardReceipt a core:AwardReceipt .
+ ?awardReceipt core:dateTimeInterval ?dateTimeInterval .
+ ?dateTimeInterval core:start ?dateTimeStartValue .
+ ?dateTimeStartValue core:dateTime ?dateTimeStart
+ }
+
+
+
+ PREFIX core: <http://vivoweb.org/ontology/core#>
+ CONSTRUCT {
+ ?subject ?property ?awardReceipt .
+ ?awardReceipt a core:AwardReceipt .
+ ?awardReceipt core:dateTimeInterval ?dateTimeInterval .
+ ?dateTimeInterval core:end ?dateTimeEndValue .
+ ?dateTimeEndValue core:dateTime ?dateTimeEnd
+ } WHERE {
+ ?subject ?property ?awardReceipt .
+ ?awardReceipt a core:AwardReceipt .
+ ?awardReceipt core:dateTimeInterval ?dateTimeInterval .
+ ?dateTimeInterval core:end ?dateTimeEndValue .
+ ?dateTimeEndValue core:dateTime ?dateTimeEnd
+ }
+
+ propStatement-awardOrHonorGiven.ftl
+
diff --git a/productMods/templates/freemarker/body/partials/individual/propStatement-awardOrHonorGiven.ftl b/productMods/templates/freemarker/body/partials/individual/propStatement-awardOrHonorGiven.ftl
new file mode 100644
index 00000000..16d9b85b
--- /dev/null
+++ b/productMods/templates/freemarker/body/partials/individual/propStatement-awardOrHonorGiven.ftl
@@ -0,0 +1,40 @@
+<#-- $This file is distributed under the terms of the license in /doc/license.txt$ -->
+
+<#-- Custom object property statement view for faux property "awards and honors". See the PropertyConfig.3 file for details.
+
+ This template must be self-contained and not rely on other variables set for the individual page, because it
+ is also used to generate the property statement during a deletion.
+ -->
+<#import "lib-sequence.ftl" as s>
+<#import "lib-datetime.ftl" as dt>
+<@showAward statement />
+
+<#-- Use a macro to keep variable assignments local; otherwise the values carry over to the
+ next statement -->
+<#macro showAward statement>
+
+ <#local linkedIndividual>
+ <#if statement.award??>
+ ${statement.awardLabel!}
+ <#else>
+ ${statement.receiptLabel!}
+ #if>
+ #local>
+
+ <#local dateTimeVal>
+ <#if statement.dateTime??>
+ <@dt.yearSpan statement.dateTime! />
+ <#else>
+ <@dt.yearIntervalSpan "${statement.dateTimeStart!}" "${statement.dateTimeEnd!}" />
+ #if>
+ #local>
+
+ <#local conferredOn>
+ <#if statement.givenTo?has_content && statement.givenToLabel?has_content>
+ ${i18n().conferred_on} ${statement.givenToLabel}
+ #if>
+ #local>
+
+ <@s.join [ linkedIndividual, conferredOn!, dateTimeVal! ] />
+
+ #macro>
diff --git a/productMods/templates/freemarker/edit/forms/subjectHasMailingAddress.ftl b/productMods/templates/freemarker/edit/forms/subjectHasMailingAddress.ftl
index e44041ea..f7b7cef9 100644
--- a/productMods/templates/freemarker/edit/forms/subjectHasMailingAddress.ftl
+++ b/productMods/templates/freemarker/edit/forms/subjectHasMailingAddress.ftl
@@ -76,7 +76,7 @@
- ${i18n().street_address} 2 ${requiredHint}
+ ${i18n().street_address} 2
diff --git a/productMods/templates/freemarker/lib/lib-vivo-properties.ftl b/productMods/templates/freemarker/lib/lib-vivo-properties.ftl
index d74c79be..eb4e630a 100644
--- a/productMods/templates/freemarker/lib/lib-vivo-properties.ftl
+++ b/productMods/templates/freemarker/lib/lib-vivo-properties.ftl
@@ -25,7 +25,7 @@
<#if webpage?has_content> <#-- true when the property is in the list, even if not populated (when editing) -->
- <#local label = "Websites">
+ <#local label = "${i18n().websites}">
<@p.addLinkWithLabel webpage editable label />
<#if webpage.statements?has_content> <#-- if there are any statements -->
<#include "individual-webpage.ftl" >
diff --git a/rdf/display/everytime/PropertyConfig.n3 b/rdf/display/everytime/PropertyConfig.n3
index 77869e28..416802f9 100644
--- a/rdf/display/everytime/PropertyConfig.n3
+++ b/rdf/display/everytime/PropertyConfig.n3
@@ -41,6 +41,8 @@ local:organizationForPositionConfig a :ObjectPropertyDisplayConfig ;
:displayName "people" ;
:listViewConfigFile "listViewConfig-organizationForPosition.xml"^^xsd:string ;
:propertyGroup ;
+ vitro:collateBySubclassAnnot
+ "true"^^xsd:boolean;
vitro:displayRankAnnot 10;
vitro:hiddenFromDisplayBelowRoleLevelAnnot role:public ;
vitro:prohibitedFromUpdateBelowRoleLevelAnnot role:public ;
@@ -921,6 +923,20 @@ local:awardReceiptsAwardForConfig a :ObjectPropertyDisplayConfig ;
vitro:prohibitedFromUpdateBelowRoleLevelAnnot role:public ;
:propertyGroup .
+local:awardOrHonorGivenContext a :ConfigContext ;
+ :hasConfiguration local:awardOrHonorGivenConfig ;
+ :configContextFor ;
+ :qualifiedByDomain ;
+ :qualifiedBy .
+
+local:awardOrHonorGivenConfig a :ObjectPropertyDisplayConfig ;
+ :listViewConfigFile "listViewConfig-awardOrHonorGiven.xml"^^xsd:string ;
+ :displayName "award or honor given" ;
+ vitro:displayRankAnnot 72;
+ vitro:hiddenFromDisplayBelowRoleLevelAnnot role:public ;
+ vitro:prohibitedFromUpdateBelowRoleLevelAnnot role:public ;
+ :propertyGroup .
+
local:addressLocationContext a :ConfigContext ;
:hasConfiguration local:addressLocationConfig ;
:configContextFor ;
diff --git a/rdf/tbox/firsttime/initialTBoxAnnotations.n3 b/rdf/tbox/firsttime/initialTBoxAnnotations.n3
index 32f22456..c56dac9f 100644
--- a/rdf/tbox/firsttime/initialTBoxAnnotations.n3
+++ b/rdf/tbox/firsttime/initialTBoxAnnotations.n3
@@ -5088,6 +5088,8 @@ vivo:termLabel
skos:related
rdfs:label "related"@en-US ;
+ vitro:customEntryFormAnnot
+ "edu.cornell.mannlib.vitro.webapp.edit.n3editing.configuration.generators.AddConceptThroughObjectPropertyGenerator"^^xsd:string ;
vitro:displayLimitAnnot
"5"^^xsd:int ;
vitro:displayRankAnnot
diff --git a/src/edu/cornell/mannlib/vitro/webapp/edit/n3editing/configuration/generators/AddEditWebpageFormGenerator.java b/src/edu/cornell/mannlib/vitro/webapp/edit/n3editing/configuration/generators/AddEditWebpageFormGenerator.java
index 4a742623..376c7002 100644
--- a/src/edu/cornell/mannlib/vitro/webapp/edit/n3editing/configuration/generators/AddEditWebpageFormGenerator.java
+++ b/src/edu/cornell/mannlib/vitro/webapp/edit/n3editing/configuration/generators/AddEditWebpageFormGenerator.java
@@ -240,11 +240,22 @@ public class AddEditWebpageFormGenerator extends BaseEditConfigurationGenerator
private String getUrlPatternToReturnTo(VitroRequest vreq) {
String subjectUri = EditConfigurationUtils.getSubjectUri(vreq);
String predicateUri = EditConfigurationUtils.getPredicateUri(vreq);
+ //Also add domain and range uris if they exist to enable cancel to work properly
+ String domainUri = (String) vreq.getParameter("domainUri");
+ String rangeUri = (String) vreq.getParameter("rangeUri");
String generatorName = "edu.cornell.mannlib.vitro.webapp.edit.n3editing.configuration.generators.ManageWebpagesForIndividualGenerator";
String editUrl = EditConfigurationUtils.getEditUrlWithoutContext(vreq);
- return editUrl + "?subjectUri=" + UrlBuilder.urlEncode(subjectUri) +
+ String returnPath = editUrl + "?subjectUri=" + UrlBuilder.urlEncode(subjectUri) +
"&predicateUri=" + UrlBuilder.urlEncode(predicateUri) +
"&editForm=" + UrlBuilder.urlEncode(generatorName);
+ if(domainUri != null && !domainUri.isEmpty()) {
+ returnPath += "&domainUri=" + UrlBuilder.urlEncode(domainUri);
+ }
+ if(rangeUri != null && !rangeUri.isEmpty()) {
+ returnPath += "&rangeUri=" + UrlBuilder.urlEncode(rangeUri);
+ }
+ return returnPath;
+
}
private String getLinkUri(VitroRequest vreq) {
diff --git a/src/edu/cornell/mannlib/vitro/webapp/edit/n3editing/configuration/generators/AddOutreachProviderRoleToPersonGenerator.java b/src/edu/cornell/mannlib/vitro/webapp/edit/n3editing/configuration/generators/AddOutreachProviderRoleToPersonGenerator.java
index ba109983..5caa2647 100644
--- a/src/edu/cornell/mannlib/vitro/webapp/edit/n3editing/configuration/generators/AddOutreachProviderRoleToPersonGenerator.java
+++ b/src/edu/cornell/mannlib/vitro/webapp/edit/n3editing/configuration/generators/AddOutreachProviderRoleToPersonGenerator.java
@@ -35,6 +35,7 @@ public class AddOutreachProviderRoleToPersonGenerator extends AddRoleToPersonTwo
"http://vivoweb.org/ontology/core#CoreLaboratory","Core Laboratory",
"http://vivoweb.org/ontology/core#Department","Department",
"http://vivoweb.org/ontology/core#Division","Division",
+ "http://purl.org/NET/c4dm/event.owl#Event","Event",
"http://vivoweb.org/ontology/core#ExtensionUnit","Extension Unit",
"http://vivoweb.org/ontology/core#Foundation","Foundation",
"http://vivoweb.org/ontology/core#FundingOrganization","Funding Organization",
diff --git a/src/edu/cornell/mannlib/vitro/webapp/search/indexing/AdditionalURIsForContextNodes.java b/src/edu/cornell/mannlib/vitro/webapp/search/indexing/AdditionalURIsForContextNodes.java
index 90bbc95e..06d10992 100644
--- a/src/edu/cornell/mannlib/vitro/webapp/search/indexing/AdditionalURIsForContextNodes.java
+++ b/src/edu/cornell/mannlib/vitro/webapp/search/indexing/AdditionalURIsForContextNodes.java
@@ -12,26 +12,21 @@ import java.util.Set;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
-import com.hp.hpl.jena.ontology.OntModel;
-import com.hp.hpl.jena.query.Query;
-import com.hp.hpl.jena.query.QueryExecution;
-import com.hp.hpl.jena.query.QueryExecutionFactory;
-import com.hp.hpl.jena.query.QueryFactory;
import com.hp.hpl.jena.query.QuerySolution;
import com.hp.hpl.jena.query.QuerySolutionMap;
import com.hp.hpl.jena.query.ResultSet;
-import com.hp.hpl.jena.query.Syntax;
import com.hp.hpl.jena.rdf.model.RDFNode;
import com.hp.hpl.jena.rdf.model.Resource;
import com.hp.hpl.jena.rdf.model.ResourceFactory;
import com.hp.hpl.jena.rdf.model.Statement;
-import com.hp.hpl.jena.shared.Lock;
+import edu.cornell.mannlib.vitro.webapp.dao.jena.QueryUtils;
+import edu.cornell.mannlib.vitro.webapp.rdfservice.RDFService;
import edu.cornell.mannlib.vitro.webapp.search.beans.StatementToURIsToUpdate;
public class AdditionalURIsForContextNodes implements StatementToURIsToUpdate {
- private OntModel model;
+ private final RDFService rdfService;
private Set alreadyChecked;
private long accumulatedTime = 0;
@@ -43,8 +38,8 @@ public class AdditionalURIsForContextNodes implements StatementToURIsToUpdate {
private Log log = LogFactory.getLog(AdditionalURIsForContextNodes.class);
- public AdditionalURIsForContextNodes( OntModel jenaOntModel){
- this.model = jenaOntModel;
+ public AdditionalURIsForContextNodes( RDFService rdfService){
+ this.rdfService = rdfService;
}
@Override
@@ -93,42 +88,27 @@ public class AdditionalURIsForContextNodes implements StatementToURIsToUpdate {
List uriList = new ArrayList();
- for(String query : queryList){
-
- //log.info("Executing query: "+ query);
-
- QuerySolutionMap initialBinding = new QuerySolutionMap();
- Resource uriResource = ResourceFactory.createResource(uri);
- initialBinding.add("uri", uriResource);
-
- Query sparqlQuery = QueryFactory.create( query, Syntax.syntaxARQ);
- model.getLock().enterCriticalSection(Lock.READ);
- try{
- QueryExecution qExec = QueryExecutionFactory.create(sparqlQuery, model, initialBinding);
- try{
- ResultSet results = qExec.execSelect();
- while(results.hasNext()){
- QuerySolution soln = results.nextSolution();
- Iterator iter = soln.varNames() ;
- while( iter.hasNext()){
- String name = iter.next();
- RDFNode node = soln.get( name );
- if( node != null ){
- uriList.add("" + node.toString());
- }else{
- log.debug(name + " is null");
- }
- }
- }
- }catch(Throwable t){
- log.error(t,t);
- } finally{
- qExec.close();
- }
- }finally{
- model.getLock().leaveCriticalSection();
- }
- }
+ for (String query : queryList) {
+ QuerySolutionMap initialBinding = new QuerySolutionMap();
+ Resource uriResource = ResourceFactory.createResource(uri);
+ initialBinding.add("uri", uriResource);
+
+ ResultSet results = QueryUtils.getQueryResults(query,
+ initialBinding, rdfService);
+ while (results.hasNext()) {
+ QuerySolution soln = results.nextSolution();
+ Iterator iter = soln.varNames();
+ while (iter.hasNext()) {
+ String name = iter.next();
+ RDFNode node = soln.get(name);
+ if (node != null) {
+ uriList.add("" + node.toString());
+ } else {
+ log.debug(name + " is null");
+ }
+ }
+ }
+ }
if( log.isDebugEnabled() )
log.debug( "additional uris for " + uri + " are " + uriList);
diff --git a/src/edu/cornell/mannlib/vitro/webapp/search/indexing/AdditionalUriFinders.java b/src/edu/cornell/mannlib/vitro/webapp/search/indexing/AdditionalUriFinders.java
index 6c48cded..727c545a 100644
--- a/src/edu/cornell/mannlib/vitro/webapp/search/indexing/AdditionalUriFinders.java
+++ b/src/edu/cornell/mannlib/vitro/webapp/search/indexing/AdditionalUriFinders.java
@@ -5,9 +5,8 @@ package edu.cornell.mannlib.vitro.webapp.search.indexing;
import java.util.ArrayList;
import java.util.List;
-import com.hp.hpl.jena.ontology.OntModel;
-
import edu.cornell.mannlib.vitro.webapp.dao.IndividualDao;
+import edu.cornell.mannlib.vitro.webapp.rdfservice.RDFService;
import edu.cornell.mannlib.vitro.webapp.search.beans.StatementToURIsToUpdate;
/**
@@ -16,12 +15,12 @@ import edu.cornell.mannlib.vitro.webapp.search.beans.StatementToURIsToUpdate;
*/
public class AdditionalUriFinders {
- public static List getList(OntModel jenaOntModel,
+ public static List getList(RDFService rdfService,
IndividualDao indDao) {
List uriFinders = new ArrayList<>();
uriFinders.add(new AdditionalURIsForDataProperties());
- uriFinders.add(new AdditionalURIsForObjectProperties(jenaOntModel));
- uriFinders.add(new AdditionalURIsForContextNodes(jenaOntModel));
+ uriFinders.add(new AdditionalURIsForObjectProperties(rdfService));
+ uriFinders.add(new AdditionalURIsForContextNodes(rdfService));
uriFinders.add(new AdditionalURIsForTypeStatements());
uriFinders.add(new URIsForClassGroupChange(indDao));
return uriFinders;
diff --git a/src/edu/cornell/mannlib/vitro/webapp/search/solr/VivoAgentContextNodeFields.java b/src/edu/cornell/mannlib/vitro/webapp/search/solr/VivoAgentContextNodeFields.java
index 2b92bea3..3dbe47e4 100644
--- a/src/edu/cornell/mannlib/vitro/webapp/search/solr/VivoAgentContextNodeFields.java
+++ b/src/edu/cornell/mannlib/vitro/webapp/search/solr/VivoAgentContextNodeFields.java
@@ -29,7 +29,8 @@ public class VivoAgentContextNodeFields extends ContextNodeFields{
+ " prefix foaf: "
+ " prefix rdfs: "
+ " prefix localNav: "
- + " prefix bibo: ";
+ + " prefix bibo: "
+ + " prefix obo: \n" ;
//queries for foaf:Agent
@@ -49,14 +50,9 @@ public class VivoAgentContextNodeFields extends ContextNodeFields{
" ?uri rdf:type foaf:Agent . " +
" ?uri ?b ?c . " +
" ?c rdf:type core:Position . " +
- " ?c core:involvedOrganizationName ?ContextNodeProperty . }");
-
- queriesForAgent.add(prefix + "SELECT " +
- "(str(?ContextNodeProperty) as ?contextNodeProperty) WHERE {" +
- " ?uri rdf:type foaf:Agent . " +
- " ?uri ?b ?c . " +
- " ?c rdf:type core:Position . " +
- " ?c core:positionInOrganization ?i . ?i rdfs:label ?ContextNodeProperty . }");
+ " ?c core:relates ?i . " +
+ " ?i rdf:type foaf:Organization . " +
+ " ?i rdfs:label ?ContextNodeProperty . }");
queriesForAgent.add(prefix + "SELECT " +
"(str(?ContextNodeProperty) as ?contextNodeProperty) WHERE {" +
@@ -70,7 +66,6 @@ public class VivoAgentContextNodeFields extends ContextNodeFields{
queriesForAgent.add(prefix +
"SELECT " +
"(str(?HRJobTitle) as ?hrJobTitle) " +
- "(str(?InvolvedOrganizationName) as ?involvedOrganizationName) " +
"(str(?PositionInOrganization) as ?positionInOrganization) " +
"(str(?TitleOrRole) as ?titleOrRole) WHERE {"
@@ -78,8 +73,7 @@ public class VivoAgentContextNodeFields extends ContextNodeFields{
+ " ?c rdf:type core:Position . "
+ " OPTIONAL { ?c core:hrJobTitle ?HRJobTitle . } . "
- + " OPTIONAL { ?c core:involvedOrganizationName ?InvolvedOrganizationName . } ."
- + " OPTIONAL { ?c core:positionInOrganization ?i . ?i rdfs:label ?PositionInOrganization . } . "
+ + " OPTIONAL { ?c core:relates ?i . ?i rdf:type foaf:Organization . ?i rdfs:label ?PositionInOrganization . } . "
+ " OPTIONAL { ?c core:titleOrRole ?TitleOrRole . } . "
+ " }");
@@ -88,36 +82,49 @@ public class VivoAgentContextNodeFields extends ContextNodeFields{
queriesForAgent.add(prefix + "SELECT " +
"(str(?ContextNodeProperty) as ?contextNodeProperty) WHERE {" +
" ?uri rdf:type foaf:Agent ; ?b ?c . " +
- " ?c rdf:type core:Relationship . " +
- " ?c core:advisee ?d . ?d rdfs:label ?ContextNodeProperty . }");
+ " ?c rdf:type core:AdvisingRelationship . " +
+ " ?c rdfs:label ?ContextNodeProperty . }");
queriesForAgent.add(prefix + "SELECT " +
"(str(?ContextNodeProperty) as ?contextNodeProperty) WHERE {" +
" ?uri rdf:type foaf:Agent ; ?b ?c . " +
- " ?c rdf:type core:Relationship . " +
+ " ?c rdf:type core:AdvisingRelationship . " +
" ?c core:degreeCandidacy ?e . ?e rdfs:label ?ContextNodeProperty . }");
-
+
queriesForAgent.add(prefix + "SELECT " +
"(str(?label) as ?adviseeLabel) WHERE {" +
" ?uri rdf:type foaf:Agent ." +
- " ?c rdf:type core:Relationship . " +
- " ?c core:advisor ?uri . " +
- " ?c core:advisee ?d . ?d rdfs:label ?label .}" );
+ " ?c rdf:type core:AdvisingRelationship . " +
+ " ?c core:relates ?uri . " +
+ " ?uri obo:RO_0000053 ?advisorRole . " +
+ " ?advisorRole rdf:type core:AdvisorRole . " +
+ " ?c core:relates ?d . " +
+ " ?d rdf:type foaf:Person . " +
+ " ?d obo:RO_0000053 ?adviseeRole . " +
+ " ?adviseeRole rdf:type core:AdviseeRole . " +
+ " ?d rdfs:label ?ContextNodeProperty . }");
queriesForAgent.add(prefix + "SELECT " +
"(str(?label) as ?advisorLabel) WHERE {" +
" ?uri rdf:type foaf:Agent ." +
- " ?c rdf:type core:Relationship . " +
- " ?c core:advisee ?uri . " +
- " ?c core:advisor ?d . ?d rdfs:label ?label .}" );
+ " ?c rdf:type core:AdvisingRelationship . " +
+ " ?c core:relates ?uri . " +
+ " ?uri obo:RO_0000053 ?adviseeRole . " +
+ " ?adviseeRole rdf:type core:AdviseeRole . " +
+ " ?c core:relates ?d . " +
+ " ?d rdf:type foaf:Person . " +
+ " ?d obo:RO_0000053 ?advisorRole . " +
+ " ?advisorRole rdf:type core:AdvisorRole . " +
+ " ?d rdfs:label ?ContextNodeProperty . }");
/* Author */
queriesForAgent.add(prefix + "SELECT " +
"(str(?ContextNodeProperty) as ?contextNodeProperty) WHERE {" +
" ?uri rdf:type foaf:Agent ; ?b ?c . " +
- " ?c rdf:type core:Relationship . " +
- " ?c core:linkedAuthor ?f . " +
+ " ?c rdf:type core:Authorship . " +
+ " ?c core:relates ?f . " +
+ " ?f rdf:type foaf:Person . " +
" ?f rdfs:label ?ContextNodeProperty . " +
" FILTER( ?f != ?uri ) " +
"}");
@@ -125,8 +132,9 @@ public class VivoAgentContextNodeFields extends ContextNodeFields{
queriesForAgent.add(prefix + "SELECT " +
"(str(?ContextNodeProperty) as ?contextNodeProperty) WHERE {" +
" ?uri rdf:type foaf:Agent ; ?b ?c . " +
- " ?c rdf:type core:Relationship . " +
- " ?c core:linkedInformationResource ?h . ?h rdfs:label ?ContextNodeProperty . }");
+ " ?c rdf:type core:Authorship . " +
+ " ?c core:relates ?h . " +
+ " ?h rdf:type obo:IAO_0000030 . ?h rdfs:label ?ContextNodeProperty . }");
/* Award */
@@ -138,8 +146,8 @@ public class VivoAgentContextNodeFields extends ContextNodeFields{
"WHERE {"
+ " ?uri rdf:type foaf:Agent ; ?b ?c . "
+ " ?c rdf:type core:AwardReceipt . "
- + " OPTIONAL { ?c rdfs:label ?AwardLabel . } . "
- + " OPTIONAL { ?c core:awardConferredBy ?d . ?d rdfs:label ?AwardConferredBy . } . "
+ + " OPTIONAL { ?c core:relates ?e . ?e rdf:type core:Award . ?e rdfs:label ?AwardLabel . } . "
+ + " OPTIONAL { ?c core:assignedBy ?d . ?d rdf:type foaf:Organization . ?d rdfs:label ?AwardConferredBy . } . "
+ " OPTIONAL { ?c core:description ?Description . } . "
+ " }");
@@ -147,8 +155,9 @@ public class VivoAgentContextNodeFields extends ContextNodeFields{
queriesForAgent.add(prefix +
"SELECT (str(?OrganizationLabel) as ?organizationLabel) WHERE {"
- + "?uri rdf:type foaf:Agent ; ?b ?c . "
- + " ?c rdf:type core:Role ; core:roleIn ?Organization ."
+ + " ?uri rdf:type foaf:Agent ; ?b ?c . "
+ + " ?c rdf:type obo:BFO_0000023 ; core:roleContributesTo ?Organization ."
+ + " ?Organization rdf:type core:Organization . "
+ " ?Organization rdfs:label ?OrganizationLabel . "
+ " }");
@@ -163,12 +172,16 @@ public class VivoAgentContextNodeFields extends ContextNodeFields{
"(str(?TrainingAtOrganizationLabel) as ?trainingAtOrganizationLabel) WHERE {"
+ " ?uri rdf:type foaf:Agent ; ?b ?c . "
- + " ?c rdf:type core:EducationalTraining . "
+ + " ?c rdf:type core:EducationalProcess . "
- + "OPTIONAL { ?c core:degreeEarned ?d . ?d rdfs:label ?AcademicDegreeLabel ; core:abbreviation ?AcademicDegreeAbbreviation . } . "
+ + "OPTIONAL { ?c core:relates ?d . "
+ + " ?d rdf:type core:AwardedDegree . "
+ + " ?d core:relates ?e . "
+ + " ?e rdf:type core:AcademicDegree . "
+ + " ?e rdfs:label ?AcademicDegreeLabel . } . "
+ "OPTIONAL { ?c core:majorField ?MajorField .} ."
+ " OPTIONAL { ?c core:departmentOrSchool ?DepartmentOrSchool . }"
- + " OPTIONAL { ?c core:trainingAtOrganization ?e . ?e rdfs:label ?TrainingAtOrganizationLabel . } . "
+ + " OPTIONAL { ?c obo:RO_0000057 ?f . ?f rdf:type foaf:organization . ?f rdfs:label ?TrainingAtOrganizationLabel . } . "
+"}");
}
}
diff --git a/src/edu/cornell/mannlib/vitro/webapp/search/solr/VivoISFAdvisingFields.java b/src/edu/cornell/mannlib/vitro/webapp/search/solr/VivoISFAdvisingFields.java
index 85e60b91..26db9076 100644
--- a/src/edu/cornell/mannlib/vitro/webapp/search/solr/VivoISFAdvisingFields.java
+++ b/src/edu/cornell/mannlib/vitro/webapp/search/solr/VivoISFAdvisingFields.java
@@ -47,7 +47,8 @@ public class VivoISFAdvisingFields extends ContextNodeFields {
" ?uri core:relatedBy ?rel . \n" +
" ?rel rdf:type core:AdvisingRelationship . \n" +
" ?rel core:relates ?other . \n" +
- " ?other rdfs:label ?result . \n" +
+ " ?other rdfs:label ?result . \n" +
+ " FILTER( ?other != ?uri ) \n" +
"}";
}
diff --git a/test/edu/cornell/mannlib/vitro/webapp/search/indexing/AdditionalURIsForContextNodesTest.java b/test/edu/cornell/mannlib/vitro/webapp/search/indexing/AdditionalURIsForContextNodesTest.java
index f73674d8..7e0a348b 100644
--- a/test/edu/cornell/mannlib/vitro/webapp/search/indexing/AdditionalURIsForContextNodesTest.java
+++ b/test/edu/cornell/mannlib/vitro/webapp/search/indexing/AdditionalURIsForContextNodesTest.java
@@ -12,11 +12,13 @@ import org.junit.Test;
import com.hp.hpl.jena.ontology.OntModel;
import com.hp.hpl.jena.rdf.model.ModelFactory;
-import edu.cornell.mannlib.vitro.webapp.search.indexing.AdditionalURIsForContextNodes;
+import edu.cornell.mannlib.vitro.webapp.rdfservice.impl.jena.model.RDFServiceModel;
public class AdditionalURIsForContextNodesTest {
+ private AdditionalURIsForContextNodes uriFinder;
+
@Test
public void testPositionChanges(){
String n3 =
@@ -59,12 +61,7 @@ public class AdditionalURIsForContextNodesTest {
" . \n" +
" . \n" ;
- //make a test model with an person, an authorship context node and a book
- OntModel model = ModelFactory.createOntologyModel();
- model.read( new StringReader(n3), null, "N3");
-
- //make an AdditionalURIsForContextNodesTest object with that model
- AdditionalURIsForContextNodes uriFinder = new AdditionalURIsForContextNodes( model );
+ populateModelAndCreateUriFinder(n3);
//if the person changes then the org needs to be updated
List uris = uriFinder.findAdditionalURIsToIndex( "http://caruso-laptop.mannlib.cornell.edu:8090/vivo/individual/n932");
@@ -107,21 +104,15 @@ public class AdditionalURIsForContextNodesTest {
" core:contributingRole . \n" +
" a , owl:Thing , . \n";
-
//make a test model with an person, an authorship context node and a book
- OntModel model = ModelFactory.createOntologyModel();
- model.read( new StringReader(n3), null, "N3");
-
-
- //make an AdditionalURIsForContextNodesTest object with that model
- AdditionalURIsForContextNodes uriFinder = new AdditionalURIsForContextNodes( model );
+ populateModelAndCreateUriFinder(n3);
//get additional uris for org
List uris = uriFinder.findAdditionalURIsToIndex( "http://caruso-laptop.mannlib.cornell.edu:8090/vivo/individual/n2592");
assertTrue("did not find person for context node", uris.contains("http://vivo.scripps.edu/individual/n14979" ));
-
}
+
@Test
public void testLeaderRoleChanges(){
@@ -153,13 +144,7 @@ public class AdditionalURIsForContextNodesTest {
" . \n " +
" . \n " ;
-
- //make a test model with an person, a leader role node and a university
- OntModel model = ModelFactory.createOntologyModel();
- model.read( new StringReader(n3), null, "N3");
-
- //make an AdditionalURIsForContextNodesTest object with that model
- AdditionalURIsForContextNodes uriFinder = new AdditionalURIsForContextNodes( model );
+ populateModelAndCreateUriFinder(n3);
//if the person changes then the university needs to be updated
List uris = uriFinder.findAdditionalURIsToIndex( "http://vivo.scripps.edu/individual/n2027");
@@ -168,8 +153,6 @@ public class AdditionalURIsForContextNodesTest {
//if the university changes then the person needs to be updated
uris = uriFinder.findAdditionalURIsToIndex( "http://vivo.scripps.edu/individual/n7080");
assertTrue("did not find person for context node", uris.contains("http://vivo.scripps.edu/individual/n2027" ));
-
-
}
@@ -204,14 +187,7 @@ public class AdditionalURIsForContextNodesTest {
" . \n " +
" . \n " ;
-
-
- //make a test model with an person, a member role node and a university
- OntModel model = ModelFactory.createOntologyModel();
- model.read( new StringReader(n3), null, "N3");
-
- //make an AdditionalURIsForContextNodesTest object with that model
- AdditionalURIsForContextNodes uriFinder = new AdditionalURIsForContextNodes( model );
+ populateModelAndCreateUriFinder(n3);
//if the person changes then the university needs to be updated
List uris = uriFinder.findAdditionalURIsToIndex( "http://vivo.scripps.edu/individual/n4519");
@@ -254,15 +230,8 @@ public class AdditionalURIsForContextNodesTest {
" . \n" +
" . \n" +
" . \n" ;
-
-
- //make a test model with an person, a clinical role node and a project
- OntModel model = ModelFactory.createOntologyModel();
- model.read( new StringReader(n3), null, "N3");
-
- //make an AdditionalURIsForContextNodesTest object with that model
- AdditionalURIsForContextNodes uriFinder = new AdditionalURIsForContextNodes( model );
+ populateModelAndCreateUriFinder(n3);
//if the person changes then the project needs to be updated
List uris = uriFinder.findAdditionalURIsToIndex( "http://vivo.scripps.edu/individual/n4858");
@@ -303,12 +272,7 @@ public class AdditionalURIsForContextNodesTest {
" . \n" +
" . \n" ;
- //make a test model with an person, a clinical role node and a service
- OntModel model = ModelFactory.createOntologyModel();
- model.read( new StringReader(n3), null, "N3");
-
- //make an AdditionalURIsForContextNodesTest object with that model
- AdditionalURIsForContextNodes uriFinder = new AdditionalURIsForContextNodes( model );
+ populateModelAndCreateUriFinder(n3);
//if the person changes then the service needs to be updated
List uris = uriFinder.findAdditionalURIsToIndex( "http://vivo.scripps.edu/individual/n5651");
@@ -350,13 +314,7 @@ public class AdditionalURIsForContextNodesTest {
" . \n" +
" . \n" ;
-
- //make a test model with an person, a presenter role node and a presentation
- OntModel model = ModelFactory.createOntologyModel();
- model.read( new StringReader(n3), null, "N3");
-
- //make an AdditionalURIsForContextNodesTest object with that model
- AdditionalURIsForContextNodes uriFinder = new AdditionalURIsForContextNodes( model );
+ populateModelAndCreateUriFinder(n3);
//if the person changes then the presentation needs to be updated
List uris = uriFinder.findAdditionalURIsToIndex( "http://vivo.scripps.edu/individual/n5596");
@@ -398,13 +356,8 @@ public class AdditionalURIsForContextNodesTest {
" . \n " +
" . \n " +
" . \n " ;
-
- //make a test model with an person, a presenter role node and an invited talk
- OntModel model = ModelFactory.createOntologyModel();
- model.read( new StringReader(n3), null, "N3");
-
- //make an AdditionalURIsForContextNodesTest object with that model
- AdditionalURIsForContextNodes uriFinder = new AdditionalURIsForContextNodes( model );
+
+ populateModelAndCreateUriFinder(n3);
//if the person changes then the invited talk needs to be updated
List uris = uriFinder.findAdditionalURIsToIndex( "http://vivo.scripps.edu/individual/n4112");
@@ -447,13 +400,7 @@ public class AdditionalURIsForContextNodesTest {
" . \n" +
" . \n" ;
-
- //make a test model with an person, a researcher role node and a grant
- OntModel model = ModelFactory.createOntologyModel();
- model.read( new StringReader(n3), null, "N3");
-
- //make an AdditionalURIsForContextNodesTest object with that model
- AdditionalURIsForContextNodes uriFinder = new AdditionalURIsForContextNodes( model );
+ populateModelAndCreateUriFinder(n3);
//if the person changes then the grant needs to be updated
List uris = uriFinder.findAdditionalURIsToIndex( "http://vivo.scripps.edu/individual/n4957");
@@ -497,14 +444,7 @@ public class AdditionalURIsForContextNodesTest {
" . \n " +
" . \n " ;
-
-
- //make a test model with an person, a researcher role node and a project
- OntModel model = ModelFactory.createOntologyModel();
- model.read( new StringReader(n3), null, "N3");
-
- //make an AdditionalURIsForContextNodesTest object with that model
- AdditionalURIsForContextNodes uriFinder = new AdditionalURIsForContextNodes( model );
+ populateModelAndCreateUriFinder(n3);
//if the person changes then the project needs to be updated
List uris = uriFinder.findAdditionalURIsToIndex( "http://vivo.scripps.edu/individual/n2029");
@@ -548,13 +488,7 @@ public class AdditionalURIsForContextNodesTest {
" . \n" +
" . \n" ;
-
- //make a test model with an person, a principal investigator role node and a grant
- OntModel model = ModelFactory.createOntologyModel();
- model.read( new StringReader(n3), null, "N3");
-
- //make an AdditionalURIsForContextNodesTest object with that model
- AdditionalURIsForContextNodes uriFinder = new AdditionalURIsForContextNodes( model );
+ populateModelAndCreateUriFinder(n3);
//if the person changes then the grant needs to be updated
List uris = uriFinder.findAdditionalURIsToIndex( "http://vivo.scripps.edu/individual/n2368");
@@ -598,13 +532,8 @@ public class AdditionalURIsForContextNodesTest {
" . \n" +
" . \n" ;
- //make a test model with an person, a co-principal investigator role node and a grant
- OntModel model = ModelFactory.createOntologyModel();
- model.read( new StringReader(n3), null, "N3");
-
- //make an AdditionalURIsForContextNodesTest object with that model
- AdditionalURIsForContextNodes uriFinder = new AdditionalURIsForContextNodes( model );
-
+ populateModelAndCreateUriFinder(n3);
+
//if the copi changes then the grant needs to be updated
List uris = uriFinder.findAdditionalURIsToIndex( "http://vivo.scripps.edu/individual/n1373");
assertTrue("did not find grant for co-pi", uris.contains("http://vivo.scripps.edu/individual/n4931" ));
@@ -646,14 +575,8 @@ public class AdditionalURIsForContextNodesTest {
" . \n" +
" . \n" ;
-
- //make a test model with an person, a investigator role node and a grant
- OntModel model = ModelFactory.createOntologyModel();
- model.read( new StringReader(n3), null, "N3");
-
- //make an AdditionalURIsForContextNodesTest object with that model
- AdditionalURIsForContextNodes uriFinder = new AdditionalURIsForContextNodes( model );
-
+ populateModelAndCreateUriFinder(n3);
+
//if the investigator changes then the grant needs to be updated
List uris = uriFinder.findAdditionalURIsToIndex( "http://vivo.scripps.edu/individual/n5282");
assertTrue("did not find grant for investigator", uris.contains("http://vivo.scripps.edu/individual/n160" ));
@@ -661,10 +584,21 @@ public class AdditionalURIsForContextNodesTest {
//if the grant changes then the investigator needs to be updated
uris = uriFinder.findAdditionalURIsToIndex( "http://vivo.scripps.edu/individual/n160");
assertTrue("did not find investigator for grant", uris.contains("http://vivo.scripps.edu/individual/n5282" ));
-
-
}
-
-
+
+ // ----------------------------------------------------------------------
+ // Helper methods
+ // ----------------------------------------------------------------------
+
+ /**
+ * Build a Model from this N3 string, and create a URI Finder based on that
+ * Model.
+ */
+ private void populateModelAndCreateUriFinder(String n3String) {
+ OntModel model = ModelFactory.createOntologyModel();
+ model.read(new StringReader(n3String), null, "N3");
+ uriFinder = new AdditionalURIsForContextNodes(
+ new RDFServiceModel(model));
+ }
}
diff --git a/test/edu/cornell/mannlib/vitro/webapp/search/solr/NIHVIVO3853_DataSet1.rdf b/test/edu/cornell/mannlib/vitro/webapp/search/solr/NIHVIVO3853_DataSet1.rdf
index e2d95cdf..a77de119 100644
--- a/test/edu/cornell/mannlib/vitro/webapp/search/solr/NIHVIVO3853_DataSet1.rdf
+++ b/test/edu/cornell/mannlib/vitro/webapp/search/solr/NIHVIVO3853_DataSet1.rdf
@@ -1,38 +1,37 @@
-
-
-
-
-
+
- stable
- Notes or annotations about a resource
- -1
+ stable
+ Notes or annotations about a resource
+ -1
Notes or annotations about a resource.
-
- Short Definition from bibo ontology
+
+ Short Definition from bibo ontology
Note
- -1
+ -1
http://purl.org/ontology/bibo/
@@ -43,156 +42,157 @@
offered by
-
- true
- 4
- 5
-
+
+ true
+ 4
+ 5
+
-
+
- true
- edu.cornell.mannlib.vitro.webapp.edit.n3editing.configuration.generators.DateTimeValueFormGenerator
-
+ true
+ edu.cornell.mannlib.vitro.webapp.edit.n3editing.configuration.generators.DateTimeValueFormGenerator
+
-
- 5
+
+ 5
date/time value
- 5
-
+ 5
+
- false
+ false
-
-
-
-
-
Vermont
-
-
-
-
-
+
+
-
+
+
+
+
+
- -1
-
- An organized series of a meeting for an exchange of ideas, typically put on by a department or center.
- -1
+ -1
+
+ An organized series of a meeting for an exchange of ideas, typically put on by a department or center.
+ -1
-
+
- Applied Microeconomics Seminars; Future of Rural New York Seminar Series
+ Applied Microeconomics Seminars; Future of Rural New York Seminar Series
- For individual seminars, use seminar instead. core:ConferenceSeries and core:SeminarSeries are very similar.
+ For individual seminars, use seminar instead. core:ConferenceSeries and core:SeminarSeries are very similar.
Seminar Series
-
+
- 3
- Allows for the entry of additional information, such as additional information describing educational background.
+ 3
+ Allows for the entry of additional information, such as additional information describing educational background.
- 40
+ 40
supplemental information
-
-
-
+
+
+
-
additional document info
- 2032
- obscure bibontology properties not likely to be used in VIVO
+ 2032
+
+ obscure bibontology properties not likely to be used in VIVO
- 2010-01-10T16:55:11
+ 2010-01-10T16:55:11
- Yugoslavia, Socialist Federal Republic of
0.0
+
+
+
2009
0.0
+
1000 Ha
Socialist_Federal_Republic_of_Yugoslavia_the
+
+
+
890
1000 Ha
+
0.0
- 248
1000 Ha
+ 248
1985
Socialist_Federal_Republic_of_Yugoslavia_the
+
+ Yugoslavia, Socialist Federal Republic of
2009
1992
2009
-
-
-
-
-
-
-
-
-
+
+
+ 1
+
+
-
+
author rank in publication
-
+
-
+
- 1
- A number only, (e.g. 1, 2, etc.), that reflects the order of this author in the publication's author list.
+ 1
+ A number only, (e.g. 1, 2, etc.), that reflects the order of this author in the publication's author list.
- 3
+ 3
- -1
+ -1
Phase 1 Clinical Trial
-
+
- In Phase I trials, researchers test an experimental drug or treatment in a small group of people (20-80) for the first time to evaluate its safety, determine a safe dosage range, and identify side effects
-
+ In Phase I trials, researchers test an experimental drug or treatment in a small group of people (20-80) for the first time to evaluate its safety, determine a safe dosage range, and identify side effects
+
- 4
+ 4
- Phase 1 Clinical Trial
-
+ Phase 1 Clinical Trial
+
- 5
- true
-
- 5
+ 5
+ true
+
+ 5
-
- true
+
+ true
assignee for
@@ -200,78 +200,73 @@
-
-
-
-
-
-
+
-
+
- 2
-
- from Wikipedia: "A company is a form of business organization. It is an association or collection of individual real persons and/or other companies ... This collection, group or association of persons can be made to exist in law and then a company is itself considered a "legal person". The name company arose because, at least originally, it represented or was owned by more than one real or legal person."
+ 2
+
+ from Wikipedia: "A company is a form of business organization. It is an association or collection of individual real persons and/or other companies ... This collection, group or association of persons can be made to exist in law and then a company is itself considered a "legal person". The name company arose because, at least originally, it represented or was owned by more than one real or legal person."
Company
- a legally-recognized business organization
- 2
+ a legally-recognized business organization
+ 2
-
+
other
-
- -1
+
+ -1
- -1
+ -1
+
+
+ 5
+
+
+ A granted license, which gives a 'permission to practice.' Such licenses are usually issued in order to regulate some activity that is deemed to be dangerous or a threat to the person or the public or which involves a high level of specialized skill. See also core:License.
+ A granted license, which gives a 'permission to practice.'
+
+ 5
+
+ Licensure
+
+
+
Serial Item and Contribution Identifier
-
+
sici
- stable
- The Serial Item and Contribution Identifier (SICI) is a code (ANSI/NISO standard Z39.56) used to uniquely identify specific volumes, articles or other identifiable parts of a periodical.
-
+ stable
+ The Serial Item and Contribution Identifier (SICI) is a code (ANSI/NISO standard Z39.56) used to uniquely identify specific volumes, articles or other identifiable parts of a periodical.
+
- A sub property of identifier (http://en.wikipedia.org/wiki/SICI).
+ A sub property of identifier (http://en.wikipedia.org/wiki/SICI).
http://purl.org/ontology/bibo/
-
-
-
-
- 5
-
-
- A granted license, which gives a 'permission to practice.' Such licenses are usually issued in order to regulate some activity that is deemed to be dangerous or a threat to the person or the public or which involves a high level of specialized skill. See also core:License.
- A granted license, which gives a 'permission to practice.'
-
- 5
-
- Licensure
-
-
+
- Document to be published
in press
+ Document to be published
+
-
Netherlands Antilles
@@ -285,15 +280,17 @@
28926
of the Netherlands Antilles
2008
+
+
2009
Antillas Neerlandesas
- Netherlands Antilles
+ Netherlands Antilles
2010
les Antilles néerlandaises
- AN
Antillas Neerlandesas
+ AN
NA f.
151
1000 Ha
@@ -313,8 +310,8 @@
1000
ANT
176
- جيلدر
+ جيلدر
2009
delle Antille Olandesi
millions of US dollars
@@ -322,11 +319,15 @@
荷属安的列斯
les Antilles néerlandaises
+
جزر الأنتيل الهولندية
- Antilles néerlandaises
+
盾
- 198.0
+ Antilles néerlandaises
Data reported on country official publications or web sites (Official) or trade country files.
+ 198.0
+
+
80.0
5143
Antillas Neerlandesas
@@ -334,10 +335,12 @@
гульден
(из/ житель) Голландских Антильских островов
8.0
- Manual Estimation
Antille Olandesi
+ Manual Estimation
جزر الأنتيل الهولندية
+
+
荷属安的列斯人/属安的列斯人的
جزر الأنتيل الهولندية
florin
@@ -345,47 +348,44 @@
florín
NAN
1985
-
-
-
-
-
-
-
-
+
+
+ 1
+
+
- A government agency is a permanent or semi-permanent organization in the machinery of government that is responsible for the oversight and administration of specific functions.
+ A government agency is a permanent or semi-permanent organization in the machinery of government that is responsible for the oversight and administration of specific functions.
Government Agency
- -1
-
+ -1
+
- United States Library of Congress
- Definition take from: http://en.wikipedia.org/wiki/Government_agency.
-
-
+ United States Library of Congress
+ Definition take from: http://en.wikipedia.org/wiki/Government_agency.
+
+
- -1
+ -1
- true
+ true
- 5
+ 5
co-principal investigator role of
-
+
-
-
+
+
- 50
+ 50
@@ -396,27 +396,29 @@
version 1.1
FAO DISCLAIMER: Information on the FAO Country Profiles portal is provided as and when available. The designations employed and the presentation of information do not imply the expression of any opinion whatsoever on the part of the Food and Agriculture Organization of the United Nations (FAO) concerning the legal status of any country, territory, city or area, or of its authorities, or concerning the delimitation of its frontiers or boundaries. FAO makes every effort to ensure, but does not guarantee, the accuracy or completeness of and declines responsibility for any loss, damage, liability or expense suffered which is claimed to result from its use.
- 2011-08-11
+ 2011-08-11
The use of the information presented on the FAO Country Profiles portal is governed by FAO's copyright reservation. Any queries regarding the content, sources or use, please contact FAO-country-profiles@fao.org or visit http://www.fao.org/countryprofiles.
- geo
+ geo
FAO's geopolitical ontology version 1.1 was populated with FAO, UN and internationally recognized data sources.
- Guinea-Bissau
+
2009
- 非洲法郎
+
- 2009
Guinea-Bissau
+ 2009
(из/житель) Гвинеи-Бисау
+
2009
+
624
Guinea-Bissau
- 几内亚比绍共和国
+ 几内亚比绍共和国
837.0
جمهورية غينيا بيساو
millions of US dollars
@@ -425,9 +427,11 @@
Guinea-Bissau
几内亚比绍
la Guinée-Bissau
+
Estimated
Data reported on country official publications or web sites (Official) or trade country files.
几内亚比绍
+
Manual Estimation
Manual Estimation
@@ -440,6 +444,7 @@
Guinea-Bissau
Guinea-Bissau
+
of Guinea-Bissau
فرنك الجماعة المالية الأفريقية
la República de Guinea-Bissau
@@ -452,19 +457,23 @@
1000 Ha
-13.64
2010
+
1000 Ha
2009
+ Guinea-Bissau
15420
12.67
+
Guinée-Bissau
Гвинея-Бисау
CFA franc (Communauté financière africaine)
-
2812.0
+
10.92
+
- 1611.0
франк КФА
+ 1611.0
Гвинея-Бисау
1630.0
@@ -472,6 +481,7 @@
1985
franco CFA (Communauté financière africaine)
+
غينيا - بيساو
GW
0.289
@@ -495,35 +505,17 @@
Guinea-Bissau
della Guinea-Bissau
175
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 1
-
-
-
-
-
-
+ 非洲法郎
+
+ The most general classification of a person
+
+
-
- The most general classification of a person
- -1
+ -1
@@ -533,16 +525,16 @@
-
+ individual--foaf-person.ftl
- individual--foaf-person.ftl
-
- Person
+
+
-
+ Person
+
@@ -554,80 +546,84 @@
-
-
+
- -1
+
-
-
+ -1
-
-
-
+
+ 1
+
- stable
- 1
+ stable
+ 1
Starting page number within a continuous page range.
- 40
+ 40
-
- Starting page number within a continuous page range.
+
+ Starting page number within a continuous page range.
http://purl.org/ontology/bibo/
-
-
+
+
start page
- Burkina Faso
буркинийский
Population data from the UN Population Division and the data refers to the UN Revision 2008
+ Burkina Faso
布基纳法索
franco CFA (Communauté financière africaine)
CFA franc (Communauté financière africaine)
franco CFA
le Burkina Faso
- Burkina Faso
非洲法郎
+ Burkina Faso
-
Calculated
+
布基纳法索的 / 布基纳法索人
+
9999
BFA
+
+
Burkina Faso
- 2010
- Manual Estimation
- Burkina Faso
Burkina Faso
+ 2010
+ Burkina Faso
+ Manual Estimation
8141.0
+
franc CFA (Communauté financière africaine)
+
بوركيني، من بوركينا فاسو
Burkina Faso
2009
2009
+
Burkina Faso
@@ -638,13 +634,15 @@
BKF
-5.52
+
Data reported on country official publications or web sites (Official) or trade country files.
le Burkina Faso
-
فرنك الجماعة المالية الأفريقية
233
+
9.41
Burkina Faso
+
Burkina Faso
Burkina Faso
@@ -661,12 +659,13 @@
بوركينا فاسو
2009
Буркина-Фасо
- de Burkina Faso
1000 Ha
+ de Burkina Faso
- 27422.0
- burkinabé
+
+ burkinabé
+ 27422.0
27360.0
2.4
@@ -675,6 +674,7 @@
2009
millions of US dollars
+
854
42
بوركينا فاسو
@@ -683,38 +683,17 @@
15381
布基纳法索
+
BF
- 15757.0
Manual Estimation
+ 15757.0
- 1000
15.08
+ 1000
1000 Ha
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 1
-
- Andorra
l'Andorre
1000 Ha
2009
@@ -728,8 +707,8 @@
Estimated
euro
Data reported on country official publications or web sites (Official) or trade country files.
- 2008
أندوري
+ 2008
403
欧 元
Andorra
@@ -738,10 +717,11 @@
1000
Principato d'Andorra
2009
- the Principality of Andorra
安道尔公国
+ the Principality of Andorra
Andorra
Андорра
+
86.0
Andorra
0.824
@@ -749,25 +729,34 @@
euro
Andorre
2009
+
+
1985
+
AD
+
+
Andorran
andorran
andorrano
安道尔
Andorra
+
أندورا
€
+
el Principado de Andorra
安道尔
евро
يورو
+
Andorra
إمارة أندورا
2009
+ Andorra
47.0
- андоррский
+ андоррский
9999
@@ -777,8 +766,10 @@
3712.0
6
andorrano
+
7
19012
+
Manual Estimation
18.0
@@ -792,35 +783,24 @@
Data reported on country official publications or web sites (Official) or trade country files.
Calculated
AND
-
-
-
-
-
-
-
-
-
-
-
Montana
-
-
-
-
-
+
+
-
+
+
+
+
+
-
-
-
+
+ 1
+
- South Korea
Estimated
Республика Корея
@@ -829,10 +809,12 @@
韩国的
Population data from the UN Population Division and the data refers to the UN Revision 2008
4116
+
ROC
جمهورية كوريا
2009
1000 Ha
+
Repubblica di Corea
Repubblica di Corea
2009
@@ -842,10 +824,12 @@
1000
- 33.2
- Республика Корея
- 9990.0
Repubblica di Corea
+ Республика Корея
+ 33.2
+ 9990.0
+
+
2009
2010
@@ -857,14 +841,18 @@
大韩民国
1000 Ha
+
la República de Corea
117
9710.0
+
+ South Korea
+
République de Corée
Republic of Korea
KR
- 大韩民国
0.877
+ 大韩民国
Korea_South
Data reported on country official publications or web sites (Official) or trade country files.
₩
@@ -876,10 +864,12 @@
millions of US dollars
вона
the Republic of Korea
+
de la République de Corée
1985
de la República de Corea
410
+
KOR
la République de Corée
@@ -900,44 +890,39 @@
(из/житель) Республики Корея
9999
202
-
-
-
-
-
-
+
-
-
-
-
- Mozambique
la República de Mozambique
- 78638.0
Мозамбик
-
-
+
+ 78638.0
Мозамбик
+
+
mozambicano
- 2009
+
+ 2009
-26.87
-10.48
мозамбикский
- MOZ
+
1985
- Mozambique
- 2010
metical
+ 2010
+ MOZ
+ Mozambique
Mozambique
49300.0
Repubblica del Mozambico
+
莫桑比克
+
莫桑比克
莫桑比克的
mozambiqueño
@@ -954,23 +939,27 @@
9790.0
+ Mozambique
موزامبيق
4964
Mozambique
15455
- 9999
+
莫桑比克共和国
+ 9999
2009
1000 Ha
- متيكال
- Manual Estimation
MOZ
+ متيكال
+
+ Manual Estimation
Mt
جمهورية موزامبيق
Calculated
144
79938.0
+
le Mozambique
Республика Мозамбик
Mozambique
@@ -978,9 +967,9 @@
метикаль [м.]
the Republic of Mozambique
Estimated
- metical
-
Data reported on country official publications or web sites (Official) or trade country files.
+
+ metical
موزامبيقى
1000
@@ -989,6 +978,7 @@
Mozambique
+
metical
2009
@@ -997,85 +987,67 @@
22894.0
MZ
mozambicain
+
millions of US dollars
Data reported on country official publications or web sites (Official) or trade country files.
508
2009
la République du Mozambique
40.85
+
170
梅蒂卡尔
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- http://cit.cprnell.edu
- CIT Homepage
-
-
- -1
+ -1
Manuscript
http://purl.org/ontology/bibo/
- Works prepared by hand including handwritten or typescript drafts of pre-publication papers or works not otherwise reproduced in multiple copies
+ Works prepared by hand including handwritten or typescript drafts of pre-publication papers or works not otherwise reproduced in multiple copies
- -1
+ -1
An unpublished Document, which may also be submitted to a publisher for publication.
-
- Short Definition is the Medical Subject Heading (MeSH) definition
- stable
-
+
+ Short Definition is the Medical Subject Heading (MeSH) definition
+ stable
+
-
+
- -1
+ -1
-
+
Presentation
- -1
- Encompasses talk, speech, lecture, slide lecture, conference presentation
-
+ -1
+ Encompasses talk, speech, lecture, slide lecture, conference presentation
+
-
- 40
+
+ 40
- true
+ true
- 5
- edu.cornell.mannlib.vitro.webapp.edit.n3editing.configuration.generators.PersonHasAdvisingRelationshipGenerator
+ 5
+ edu.cornell.mannlib.vitro.webapp.edit.n3editing.configuration.generators.PersonHasAdvisingRelationshipGenerator
advisees
- true
+ true
-
- true
-
+
+ true
+
- Martinique
Population data from the UN Population Division and the data refers to the UN Revision 2008
مارتينيك
1000
@@ -1089,29 +1061,37 @@
Martinica
martinicano
1000 Ha
- Martinica
la Martinique
+ Martinica
1000 Ha
MQ
euro
martiniquais
+
9999
مارتينيك
+
Martinica
Martinique
+
مارتينيك
евро
马提尼克
+
Data reported on country official publications or web sites (Official) or trade country files.
Martinique
2009
Data reported on country official publications or web sites (Official) or trade country files.
+
يورو
1985
113.0
+
la Martinique
+
MTQ
+ Martinique
马提尼克
2009
Dipartimento della Martinica
@@ -1119,6 +1099,7 @@
106.0
martiniqués
la Martinique
+
Martinican
2009
euro
@@ -1126,29 +1107,26 @@
474
Manual Estimation
Martinica
- 405.0
euro
+ 405.0
欧 元
- Martinique
- 马提尼克人/马提尼克的
- 4635
- 158
2009
+ 158
+ 4635
+ 马提尼克人/马提尼克的
+ Martinique
من مارتينيك
-
-
-
-
-
-
-
-
+
+
+
+
+
@@ -1159,9 +1137,9 @@
-
+
@@ -1183,8 +1161,6 @@
-
-
@@ -1193,21 +1169,24 @@
+
- territory
+
+
+
-
+ territory
@@ -1216,11 +1195,10 @@
-
-
+
@@ -1230,6 +1208,7 @@
+
@@ -1238,12 +1217,13 @@
+
-
+
@@ -1255,14 +1235,11 @@
- -1
-
-
@@ -1274,8 +1251,8 @@
+
- -1
@@ -1284,7 +1261,10 @@
+ -1
+
+
@@ -1297,6 +1277,7 @@
+ -1
@@ -1322,7 +1303,6 @@
-
@@ -1351,6 +1331,7 @@
+
@@ -1361,89 +1342,87 @@
-
-
-
-
-
-
-
-
+
+
+
+
+
central America
- America centrale
-
- Центральная Америка
+ أمريكا الوسطى
+
+ 84965
+ central America
Центральная Америка
+
+
+ Amérique centrale
+
+ central America
+ 中美洲
+
+
+ 中美洲
+
+ 9999
+ central America
+ أمريكا الوسطى
+
+
+ Amérique centrale
+
+ América central
+ 中美洲
+
+
+ 5204
+ Центральная Америка
+
+
+ أمريكا الوسطى
+ Центральная Америка
+ America centrale
América central
013
- 中美洲
- Amérique centrale
-
- Центральная Америка
- América central
- Amérique centrale
-
- 1985
- 1434
- America centrale
- América central
-
- 5204
-
- central America
-
-
- America centrale
-
- Amérique centrale
- 84965
- central America
- 中美洲
- central America
- أمريكا الوسطى
- 9999
- أمريكا الوسطى
- أمريكا الوسطى
-
- 中美洲
-
-
-
-
-
+ Amérique centrale
+ 1985
+ America centrale
+ America centrale
+ América central
+ 1434
-
+
-
-
-
+
+ 1
+
- British Virgin Islands
les Îles Vierges britanniques
(из/ житель) Британских Виргинских островов
dollaro USA
Data reported on country official publications or web sites (Official) or trade country files.
доллар
+
1000 Ha
7.0
- 2009
Isole Vergini britanniche
+ 2009
+ British Virgin Islands
2009
2009
1000
les Îles Vierges britanniques
092
- 英属维尔京群岛
英属维尔京群岛
+ 英属维尔京群岛
Data reported on country official publications or web sites (Official) or trade country files.
-
- 15.0
جزر فيرجين البريطانية
+ 15.0
+
delle Isole Vergini britanniche
of the British Virgin Islands
@@ -1452,22 +1431,27 @@
19018
1000 Ha
美 元
+
+
+
Manual Estimation
239
+
BVI
1097
de las Islas Vírgenes Británicas
+
1985
دولار أمريكى
Population data from the UN Population Division and the data refers to the UN Revision 2008
the British Virgin Islands
- Îles Vierges britanniques
2009
+ Îles Vierges britanniques
英属维尔京群岛人/英属维尔京群岛的
las Islas Vírgenes Británicas
- 1000 Ha
US dollar
+ 1000 Ha
9999
British Virgin Islands
VG
@@ -1480,37 +1464,33 @@
Isole Vergini britanniche
des Îles Vierges britanniques
من جزر فيرجين البريطانية
+
جزر فيرجين البريطانية
جزر فيرجين البريطانية
Islas Vírgenes Británicas
British_Virgin_Islands
-
-
-
-
-
-
-
- Denmark
Denmark
4309.0
丹麦的 / 丹麦人
Danimarca
- 2009
1000 Ha
+
+ 2009
corona
the Kingdom of Denmark
- Calculated
2009
+ Calculated
krone
- 1000 Ha
Королевство Дания
+ 1000 Ha
millions of US dollars
+ Denmark
+
54
DK
le Danemark
@@ -1524,6 +1504,7 @@
1985
Population data from the UN Population Division and the data refers to the UN Revision 2008
丹 麦
+
Danimarca
Estimated
@@ -1531,12 +1512,15 @@
9999
corona danese
2009
+
+
2009
Danish
danés
克 朗
8.07
+
丹 麦
2185
@@ -1545,16 +1529,18 @@
69
كرونة
couronne
+
Дания
مملكة الدانمرك
Dinamarca
Дания
крона
- датский
Denmark
+ датский
DNK
الدانمرك
57.74
+
Dinamarca
208
Danemark
@@ -1564,45 +1550,37 @@
danois
le Royaume du Danemark
- el Reino de Dinamarca
Official data reported on FAO Questionnaires from countries
+ el Reino de Dinamarca
Denmark
Regno di Danimarca
309596.0
2009
+
Official data reported on FAO Questionnaires from countries
الدانمرك
0.866
+
丹麦王国
+
danese
1000 Ha
-
-
-
-
-
-
-
-
-
-
-
- true
+ true
- 5
-
+ 5
+
research area of
-
+
- 10
-
- true
+ 10
+
+ true
populationTotal
@@ -1612,42 +1590,47 @@
-
-
+
+
- The core:webpage relates to an intermediate node (of type core:URLLink) that allows specifying the homepage URL as a literal, as well as a human-readable label ("anchor text") for the link.
- 5
-
+ The core:webpage relates to an intermediate node (of type core:URLLink) that allows specifying the homepage URL as a literal, as well as a human-readable label ("anchor text") for the link.
+ 5
+
webpage
-
+
- true
- 40
+ true
+ 40
-
+
- edu.cornell.mannlib.vitro.webapp.edit.n3editing.configuration.generators.ManageWebpagesForIndividualGenerator
- true
- webpage
+ edu.cornell.mannlib.vitro.webapp.edit.n3editing.configuration.generators.ManageWebpagesForIndividualGenerator
+ true
+ webpage
- Liechtenstein
la Principauté du Liechtenstein
2009
Principato del Liechtenstein
16.0
- Liechtenstein
16.0
+ Liechtenstein
+
millions of US dollars
Liechtenstein
+
+
лихтенштейнский
1000 Ha
Liechtenstein
Data reported on country official publications or web sites (Official) or trade country files.
+
+
+
franc
1000 Ha
125
@@ -1662,6 +1645,7 @@
liechtensteinois
Лихтенштейн
19024
+ Liechtenstein
4315
6.5
438
@@ -1674,8 +1658,8 @@
2009
列支敦士登
le Liechtenstein
- Liechtenstein
2009
+ Liechtenstein
2010
Population data from the UN Population Division and the data refers to the UN Revision 2008
de Liechtenstein
@@ -1685,66 +1669,59 @@
franc suisse
4826.0
Liechtenstein
- of Liechtenstein
-
Data reported on country official publications or web sites (Official) or trade country files.
+
+ of Liechtenstein
1000
列支敦士登的
the Principality of Liechtenstein
36.0
Calculated
+
LI
франк
LIE
-
Лихтенштейн
+
0.891
+
del Liechtenstein
Княжество Лихтенштейн
- Manual Estimation
LIE
- Estimated
- 2009
+ Manual Estimation
+
瑞士法郎
+ 2009
+ Estimated
146
إمارة لختنشتاين
-
-
-
-
-
-
-
-
-
-
FAO terminology
+
+ http://www.fao.org/termportal/contr/es/
-
+ http://www.fao.org/termportal/contr/zh/
+ http://www.fao.org/termportal/contr/ar/
+ http://www.fao.org/termportal/en/
+
- FAO terminology http://www.fao.org/termportal/en/
+ FAO terminology http://www.fao.org/termportal/en/
2010-06-24
http://www.fao.org/termportal/contr/en/
- nationalityFR
- http://www.fao.org/termportal/contr/es/
- http://www.fao.org/termportal/contr/zh/
- http://www.fao.org/termportal/contr/ar/
- http://www.fao.org/termportal/en/
http://www.fao.org/termportal/contr/fr/
+ nationalityFR
- Kenya
Population data from the UN Population Division and the data refers to the UN Revision 2008
keniota
millions of US dollars
- 肯尼亚
1985
+ 肯尼亚
Kenya
Kenya
@@ -1753,34 +1730,42 @@
2009
- кениец
- 1000 Ha
шиллинг
+ 1000 Ha
+ кениец
كينيا
+
Республика Кения
KE
- 2009
شلن
+ 2009
Kenyan
15436
9999
133
Kenya
+
كيني
+ Kenya
肯尼亚
+
kényan
Manual Estimation
Estimated
+
4.63
Кения
+
la República de Kenya
Manual Estimation
+
4086
la République du Kenya
- 39802.0
+
le Kenya
+ 39802.0
KEN
@@ -1796,16 +1781,20 @@
404
-
جمهورية كينيا
+
+
+
肯尼亚共和国
1000 Ha
-
2009
- 58037.0
+
Kenya
- keniata
+
+ 58037.0
Kenya
+ keniata
+
Manual Estimation
27350.0
29376.0
@@ -1819,6 +1808,7 @@
KEN
+
114
0.47
@@ -1834,92 +1824,87 @@
scellino keniota
Kenya
2009
-
-
-
-
-
-
-
-
-
-
-
-
- -1
+ -1
Reagent
- Material entity that is used in a chemical reaction or other experimental process to detect, measure, examine, or produce other substances.
- -1
- eagle-i: Material entity that is used in a chemical reaction or other experimental process to detect, measure, examine, or produce other substances.
-NOTE: For now we are not addressing whether this is a subclass of foaf:Agent
-
+ Material entity that is used in a chemical reaction or other experimental process to detect, measure, examine, or produce other substances.
+ -1
+ eagle-i: Material entity that is used in a chemical reaction or other experimental process to detect, measure, examine, or produce other substances.
+NOTE: For now we are not addressing whether this is a subclass of foaf:Agent
+
-
+
-
+
-
-
-
- Mozamia
-
-
-
-
+
+
+
+
+
+
+
-
-
+
+
+ Mozamia
-
-
+
+
- true
+ true
role in
- 5
+ 5
+
+
+
+
+
- 60
+ 60
-
+
reproduces
-
-
- true
+
+
+ true
- 5
+ 5
- Mauritius
Maurice
2009
rupee
+ Mauritius
+
98.0
Manual Estimation
rupia mauriziana
+
Official data reported on FAO Questionnaires from countries
2010
mauriziano
Республика Маврикий
- 204.0
موريشيوسي
+ 204.0
Mauritius
1985
جمهورية موريشيوس
@@ -1928,16 +1913,19 @@ NOTE: For now we are not addressing whether this is a subclass of foaf:Agent2009
1000 Ha
-20.53
+
毛里求斯
Маврикий
- 2009
Maurizio
+ 2009
MU
0.701
MAR
137
+
Mauritius
Mauritian
+
MUS
mauriciano
480
@@ -1950,25 +1938,30 @@ NOTE: For now we are not addressing whether this is a subclass of foaf:AgentMauricio
Mauritius
+
+
la República de Mauricio
Maurice
+
4662
موريشيوس
203.0
Repubblica di Maurizio
Estimated
15451
+
56.57
Маврикий
- рупия
毛里求斯
+ рупия
毛里求斯共和国
MUR
- маврикийский
the Republic of Mauritius
+ маврикийский
+
la République de Maurice
2009
@@ -1977,11 +1970,12 @@ NOTE: For now we are not addressing whether this is a subclass of foaf:Agent160
1288.0
Mauricio
- 毛里求斯的
- روبية
Official data reported on FAO Questionnaires from countries
+ روبية
+ 毛里求斯的
9999
-10.33
+
卢 比
Maurizio
1000 Ha
@@ -1990,90 +1984,82 @@ NOTE: For now we are not addressing whether this is a subclass of foaf:Agent1000
1000 Ha
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Faculty Member Emeritus
- -1
+ -1
-
- A retired faculty member who has retained their rank, title and privileges.
-
+
+ A retired faculty member who has retained their rank, title and privileges.
+
-
- -1
+
+ -1
+
+
+ 1
+
+
Video
- Audiovisual recording in video format
+ Audiovisual recording in video format
-
-
- -1
+
+
+ -1
-
- -1
+
+ -1
submitted
+
-
-
+
something that is printed or published and distributed, esp. a given number of a periodical
http://purl.org/ontology/bibo/
- stable
- -1
- something that is printed or published and distributed, esp. a given number of a periodical
+ stable
+ -1
+ something that is printed or published and distributed, esp. a given number of a periodical
- Short Definition from the bibo ontology
+ Short Definition from the bibo ontology
Issue
-
+
- -1
-
+ -1
+
- Caribbean Community and Common Market
- Caribbean Community and Common Market
+ Communauté des Caraïbes
+ Caribbean Community and Common Market
+
Карибское сообщество
+
Communauté des Caraïbes
Comunidad del Caribe
- CARICOM
-
+
+ CARICOM
+
@@ -2089,36 +2075,33 @@ NOTE: For now we are not addressing whether this is a subclass of foaf:Agent
CARICOM
Comunidad del Caribe
+
1985
- Communauté des Caraïbes
-
-
-
-
+ Caribbean Community and Common Market
File
- -1
- -1
+ -1
+ -1
-
+
-
+
-
- -1
- -1
+
+ -1
+ -1
Academic Year
-
+
- An explicit individual period considered by an academic institution to be its primary academic cycle.
+ An explicit individual period considered by an academic institution to be its primary academic cycle.
@@ -2128,18 +2111,7 @@ NOTE: For now we are not addressing whether this is a subclass of foaf:Agent
-
-
-
-
-
-
- Event Ontology
- event
-
-
- FAO_2006
@@ -2161,14 +2133,15 @@ NOTE: For now we are not addressing whether this is a subclass of foaf:Agent
+ FAO_2006
-
+
@@ -2186,8 +2159,8 @@ NOTE: For now we are not addressing whether this is a subclass of foaf:Agent
-
+
@@ -2213,15 +2186,16 @@ NOTE: For now we are not addressing whether this is a subclass of foaf:Agent
-
+
-
+
+
@@ -2263,6 +2237,7 @@ NOTE: For now we are not addressing whether this is a subclass of foaf:Agent
+
@@ -2271,8 +2246,8 @@ NOTE: For now we are not addressing whether this is a subclass of foaf:Agent
-
+
@@ -2282,6 +2257,7 @@ NOTE: For now we are not addressing whether this is a subclass of foaf:Agent
+
@@ -2307,13 +2283,13 @@ NOTE: For now we are not addressing whether this is a subclass of foaf:Agent2006
-
+
-
+
@@ -2322,9 +2298,10 @@ NOTE: For now we are not addressing whether this is a subclass of foaf:Agent
-
+
+
@@ -2335,83 +2312,107 @@ NOTE: For now we are not addressing whether this is a subclass of foaf:Agent
-
-
-
-
+
+
+ Event Ontology
+ event
+
+
+
+ 1234567890
+ Jungle 1234
+ Congo City
+ Democratic Republic of Congo
+
United Nations Statistics Division
-
+
http://unstats.un.org/unsd/methods/m49/m49alpha.htm
+ http://unstats.un.org/unsd/methods/m49/m49alphaf.htm
2010-04-01
codeISO3
- United Nations Statistics Division http://unstats.un.org/unsd/methods/m49/m49alpha.htm
-
+ United Nations Statistics Division http://unstats.un.org/unsd/methods/m49/m49alpha.htm
+
- http://unstats.un.org/unsd/methods/m49/m49alphaf.htm
- Germany, Federal Republic of
- 1990
- 1985
- Federal_Republic_of_Germany_the
- Federal_Republic_of_Germany_the
-
- 280
- 10767
-
-
+ Federal_Republic_of_Germany_the
+ 1990
+ 1985
+
+
+ Federal_Republic_of_Germany_the
-
+ 10767
+
-
-
+ Germany, Federal Republic of
+ 280
+
+
+
+
+
+
+
+
+
+
+ 1
+
+
- El Salvador
2009
Salvadorean
كولون
2009
萨尔瓦多
+
9999
El_Salvador
ELS
Сальвадор
1000 Ha
сальвадорский
+
colón
millions of US dollars
萨尔瓦多
6163.0
- 2104.0
-87.69
+ 2104.0
75
2009
+
14.45
Population data from the UN Population Division and the data refers to the UN Revision 2008
科 朗
- 0.659
- la República de El Salvador
+
+
El Salvador
+ la República de El Salvador
+ 0.659
1544.0
1985
+
+
萨尔瓦多的
- El Salvador
+ El Salvador
El Salvador
- Estimated
salvadorien
+ Estimated
جمهورية السلفادور
colón salvadoregno
@@ -2419,6 +2420,7 @@ NOTE: For now we are not addressing whether this is a subclass of foaf:Agent222
colón
2010
+
Repubblica di El Salvador
@@ -2429,15 +2431,18 @@ NOTE: For now we are not addressing whether this is a subclass of foaf:Agent21101.0
El Salvador
1000 Ha
- salvadoreño
+
+
萨尔瓦多共和国
+ salvadoreño
Республика Эль-Сальвадор
- salvadoregno
Manual Estimation
+ salvadoregno
SV
El Salvador
2072.0
+ El Salvador
the Republic of El Salvador
la République d'El Salvador
@@ -2445,67 +2450,57 @@ NOTE: For now we are not addressing whether this is a subclass of foaf:Agentالسلفادور
El Salvador
Сальвадор
- Calculated
2009
+ Calculated
60
13.15
¢
السلفادور
colón
- колон
- Manual Estimation
- 2009
El Salvador
+ колон
+
+ 2009
SLV
+ Manual Estimation
-90.12
1000 Ha
-
-
-
-
-
-
-
-
-
-
-
- -1
- -1
+ -1
+ -1
Attendee Role
- true
-
- A role of attending an Event or EventSeries
+ true
+
+ A role of attending an Event or EventSeries
-
+
- nearestGeographicLocationFor
+ nearestGeographicLocationFor
geographic location of
- true
-
- This relates a geographic location to something within that geographic location, for example, an organization within that geographic location.
-
- 60
+ true
+
+ This relates a geographic location to something within that geographic location, for example, an organization within that geographic location.
+
+ 60
- 5
+ 5
- Currently being used by a restriction on organization.
-
+ Currently being used by a restriction on organization.
+
- Community of Sahel-Saharan States
+
Community of Sahel-Saharan States
@@ -2513,8 +2508,9 @@ NOTE: For now we are not addressing whether this is a subclass of foaf:Agent萨赫勒-撒哈拉国家共同体
Сообщество сахело-сахарских государств
-
+
+
Community of Sahel-Saharan States
CEN-SAD
@@ -2525,72 +2521,60 @@ NOTE: For now we are not addressing whether this is a subclass of foaf:Agent
+
-
53026
+
+
-
+
+ Community of Sahel-Saharan States
2008
Communauté des États Sahélo-Sahariens
Comunidad de Estados Sahelo-Saharianos
-
-
-
-
Wyoming
-
-
-
-
-
+
+
-
+
+
+
+
+
- -1
-
+ -1
+
- A short written piece focused on an event or announcement of note, having a defined publication time and of less enduring interest than a news feature.
+ A short written piece focused on an event or announcement of note, having a defined publication time and of less enduring interest than a news feature.
-
+
-
+
News Release
- -1
+ -1
-
- ISO 3166-1 http://www.iso.org/iso/country_codes/iso_3166_code_lists.htm
-
-
- http://www.iso.org/iso/country_codes/iso_3166_code_lists.htm
-
-
- codeISO2
- ISO 3166-1
-
-
-
- Food and Agriculture Organization of the United Nations
Organisation des Nations Unies pour l'alimentation et l'agriculture
Organizzazione delle Nazioni Unite per l'alimentazione e l'agricoltura
-
-
+
+
+
@@ -2601,17 +2585,18 @@ NOTE: For now we are not addressing whether this is a subclass of foaf:Agent
-
+
+ Продовольственная
- Продовольственная
+
@@ -2622,10 +2607,11 @@ NOTE: For now we are not addressing whether this is a subclass of foaf:Agent
2007
+ Food and Agriculture Organization of the United Nations
-
+
@@ -2635,10 +2621,10 @@ NOTE: For now we are not addressing whether this is a subclass of foaf:Agent
-
-
-
+
+
+
منظمة الأغذية والزراعة للأمم المتحدة
@@ -2685,11 +2671,11 @@ NOTE: For now we are not addressing whether this is a subclass of foaf:Agent2011
-
+
Organización de las Naciones Unidas para la Agricultura y la Alimentación
+
-
@@ -2698,17 +2684,17 @@ NOTE: For now we are not addressing whether this is a subclass of foaf:AgentOrganizzazione delle Nazioni Unite per l'alimentazione e l'agricoltura
- 联合国粮食及农业组织
-
+
+ 联合国粮食及农业组织
-
+
-
+ 46063
- 46063
+
@@ -2723,9 +2709,9 @@ NOTE: For now we are not addressing whether this is a subclass of foaf:Agent
+
-
@@ -2738,6 +2724,7 @@ NOTE: For now we are not addressing whether this is a subclass of foaf:Agent联合国粮食及农业组织
+
@@ -2746,15 +2733,15 @@ NOTE: For now we are not addressing whether this is a subclass of foaf:Agent
- FAO Terminology http://termportal.fao.org/faonocs/main/start.do?lang=en&lang2=en
+ FAO Terminology http://termportal.fao.org/faonocs/main/start.do?lang=en&lang2=en
Продовольственная и сельскохозяйственная организация Объединенных Наций
- http://termportal.fao.org/faonocs/main/start.do?lang=en&lang2=en
+ http://termportal.fao.org/faonocs/main/start.do?lang=en&lang2=en
-
+
@@ -2787,6 +2774,7 @@ NOTE: For now we are not addressing whether this is a subclass of foaf:Agent
+
منظمة الأغذية والزراعة للأمم المتحدة
@@ -2799,84 +2787,98 @@ NOTE: For now we are not addressing whether this is a subclass of foaf:Agent
-
-
-
-
+
+
+ ISO 3166-1 http://www.iso.org/iso/country_codes/iso_3166_code_lists.htm
+
+
+ http://www.iso.org/iso/country_codes/iso_3166_code_lists.htm
+
+
+ codeISO2
+ ISO 3166-1
+
+
+ http://www.fao.org/termportal/en/
2010-06-24
+ http://www.fao.org/termportal/contr/es/
-
+
+ http://www.fao.org/termportal/contr/zh/
nameOfficialFR
- FAO terminology http://www.fao.org/termportal/en/
+ FAO terminology http://www.fao.org/termportal/en/
FAO terminology
-
- http://www.fao.org/termportal/contr/en/
-
- http://www.fao.org/termportal/en/
- http://www.fao.org/termportal/contr/es/
- http://www.fao.org/termportal/contr/zh/
+
http://www.fao.org/termportal/contr/ar/
+ http://www.fao.org/termportal/contr/en/
http://www.fao.org/termportal/contr/fr/
-
-
- Currently any abstract name is given to members of this class. This could change in the future.
-
-
- Contains the authors name, their rank in the publication, and whether or not they are a corresponding author on the publication.
- -1
- Authorship of journal articles, books and other original works is a means by which academics communicate the results of their scholarly work, establish priority for their discoveries, and build their reputation among their peers.
-This class allows for linking an author to a publication while indicating information about that author's authorship.
-
- Authorship
-
- -1
-
-
-
-
-
-
-
-
- true
-
-
-
-
-
+
Pennsylvania
-
-
-
-
-
+
+
-
+
+
+
+
+
+
+
+ Currently any abstract name is given to members of this class. This could change in the future.
+
+
+
+ Contains the authors name, their rank in the publication, and whether or not they are a corresponding author on the publication.
+ -1
+ Authorship of journal articles, books and other original works is a means by which academics communicate the results of their scholarly work, establish priority for their discoveries, and build their reputation among their peers.
+This class allows for linking an author to a publication while indicating information about that author's authorship.
+
+
+ Authorship
+ -1
+
+
+
+
+
+
+
+
+
+ true
+
+
+
-
- 10
+
+
+
+ 10
-
- -1
+
+ -1
-
Instrument
-
- An implement used to facilitate work, especially precision work.
-
- An implement used to facilitate work, especially precision work.
-
+ An implement used to facilitate work, especially precision work.
+ An implement used to facilitate work, especially precision work.
+
+
-
-
+
+
+
+
+ 1
+
+
@@ -2888,25 +2890,24 @@ This class allows for linking an author to a publication while indicating inform
-
+
http://purl.org/ontology/bibo/
- The PubMed ID (PMID) identifies a citation record (rather than full-text) in the PubMed database. It is not evidence of compliance with the NIH Public Access Policy, because it does not identify a full-text submission of any kind.
-
-
- stable
+ The PubMed ID (PMID) identifies a citation record (rather than full-text) in the PubMed database. It is not evidence of compliance with the NIH Public Access Policy, because it does not identify a full-text submission of any kind.
+
+
+ stable
PubMed Identifier
PubMed Identifier
- A PMID (PubMed Identifier or PubMed Unique Identifier) is a unique number assigned to each PubMed citation of life sciences and biomedical scientific journal articles.
- 1
- 10
+ A PMID (PubMed Identifier or PubMed Unique Identifier) is a unique number assigned to each PubMed citation of life sciences and biomedical scientific journal articles.
+ 1
+ 10
- Switzerland
CH
CHE
@@ -2918,15 +2919,19 @@ This class allows for linking an author to a publication while indicating inform
+
Switzerland
+
1000 Ha
+
швейцарский
franco
2009
франк
Switzerland
7568.0
+
franc
Swiss
7558
@@ -2938,12 +2943,13 @@ This class allows for linking an author to a publication while indicating inform
1000 Ha
4128.0
Suiza
- SWI
- Official data reported on FAO Questionnaires from countries
+ Official data reported on FAO Questionnaires from countries
+ SWI
15494
+
法 郎
47.8
1000
@@ -2954,25 +2960,31 @@ This class allows for linking an author to a publication while indicating inform
la Confederación Suiza
45.82
1985
- suizo
- 211
franc
+ 211
+ suizo
Швейцария
1000 Ha
la Suisse
瑞 士
+ Switzerland
فرنك
+
4000.0
491924.0
+
2009
Швейцарская Конфедерация
Confederazione svizzera
Calculated
+
2009
Population data from the UN Population Division and the data refers to the UN Revision 2008
237
+
Suisse
+
الاتحاد السويسري
0.874
Manual Estimation
@@ -2985,63 +2997,43 @@ This class allows for linking an author to a publication while indicating inform
millions of US dollars
5.97
9999
+
suisse
瑞士的 / 瑞士人
Switzerland
Estimated
-
-
-
-
-
-
-
-
-
-
-
-
- provided by
-
- true
-
-
- 5
- 10
-
- true
-
-
- Links a service to the provider of the service.
- serviceProvidedBy
-
-
-
+
+
+
+
- Economic Community of Central African States
- Economic Community of Central African States
- CEEAC http://www.ceeac-eccas.org/
+ Economic Community of Central African States
+ CEEAC http://www.ceeac-eccas.org/
1985
CEEAC
中部非洲国家经济共同体
+ Economic Community of Central African States
CEAC
9999
Economic Community of Central African States
+
- CEEAC
- ECCAS
المجموعة الاقتصادية لدول وسط أفريقيا
+ ECCAS
+ CEEAC
+
http://www.ceeac-eccas.org/
48090
+
Comunidad Económica del África Central
@@ -3050,50 +3042,59 @@ This class allows for linking an author to a publication while indicating inform
Comunidad Económica del África Central
+
Экономическое сообщество центральноафриканских государств
-
-
-
-
-
-
-
-
+
+ provided by
+
+ true
+
+
+ 5
+ 10
+
+ true
+
+
+ Links a service to the provider of the service.
+ serviceProvidedBy
+
+
+
-
-
+
+
+
- stable
+
+ stable
http://purl.org/ontology/bibo/
-
-
+
+
A group of related documents issued at regular intervals.
+
+
Periodical
+
+
+
+ -1
-
- -1
-
-
-
+
-
-
- -1
-
-
-
+
+ -1
- Indonesia
Индонезия
540274.0
INS
@@ -3105,12 +3106,16 @@ This class allows for linking an author to a publication while indicating inform
2009
1000 Ha
Indonesia
+
3840
101
印度尼西亚共和国
+
+
1000 Ha
+
индонезийский
印度尼西亚
إندونيسي
@@ -3118,15 +3123,17 @@ This class allows for linking an author to a publication while indicating inform
181157.0
15427
рупия
+ Indonesia
229965.0
0.6
ID
+
rupiah
-
95.01
+
Rp
1000 Ha
印度尼西亚
@@ -3136,41 +3143,47 @@ This class allows for linking an author to a publication while indicating inform
Indonésie
-10.99
+
1000
Indonesian
- إندونيسيا
1985
+ 53600.0
9999
Indonesia
- 53600.0
+ إندونيسيا
Manual Estimation
5.91
the Republic of Indonesia
- 2009
+
la République d'Indonésie
+ 2009
Indonesia
116
2009
+
Индонезия
+
Indonesia
indonesiano
190457.0
la República de Indonesia
Indonesia
- l'Indonésie
360
+
+ l'Indonésie
Республика Индонезия
+ جمهورية إندونيسيا
Calculated
卢 比
- indonésien
- جمهورية إندونيسيا
-
-
-
Indonesia
+
+
+
+
rupia indonesiana
+ indonésien
Manual Estimation
indonesio
Manual Estimation
@@ -3179,32 +3192,15 @@ This class allows for linking an author to a publication while indicating inform
Estimated
印尼的
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- M.M.E.
-
M.M.E. Master of Mechanical Engineering
+ M.M.E.
+
-
+
- land-locked developing country
402
@@ -3212,10 +3208,12 @@ This class allows for linking an author to a publication while indicating inform
9999
+
البلدان النامية غير الساحلية
+
内陆发展中国家
@@ -3238,11 +3236,13 @@ This class allows for linking an author to a publication while indicating inform
PDL
- UN -OHRLLS http://www.un.org/special-rep/ohrlls/lldc/default.htm
+ UN -OHRLLS http://www.un.org/special-rep/ohrlls/lldc/default.htm
+
pays en développement sans littoral
内陆发展中国家
432
+
PDL
http://www.un.org/special-rep/ohrlls/lldc/default.htm
@@ -3254,77 +3254,73 @@ This class allows for linking an author to a publication while indicating inform
развивающаяся страна, не имеющая выхода к морю
+ land-locked developing country
- 1993
بلد نام غير ساحلي
+ 1993
LLDCs
-
-
-
-
-
-
- This is the cost associated with the grant activity, and should not include any indirect cost associated with administering the grant.
-
-
-
-
-
-
-
-
- direct costs
- 61
- 1
- Preferential Trade Area for Eastern and Southern African States
+
منطقة تجارة الأفضليات لدول أفريقيا الشرقية والجنوبية
1985
50899
Zone d'échanges préférentiels pour les États de l'Afrique de l'Est et de l'Afrique australe
ZCP
+
Preferential Trade Area for Eastern and Southern African States
+
+ Preferential Trade Area for Eastern and Southern African States
+
Zone d'échanges préférentiels pour les États de l'Afrique de l'Est et de l'Afrique australe
1994
Zona de comercio preferencial para los Estados de África Oriental y de África Austral
PTA
东部和南部非洲国家优惠贸易区
Zona de comercio preferencial para los Estados de África Oriental y de África Austral
- ZEP
- Preferential Trade Area for Eastern and Southern African States
-
-
+ ZEP
-
-
+ Preferential Trade Area for Eastern and Southern African States
+
+
+ This is the cost associated with the grant activity, and should not include any indirect cost associated with administering the grant.
+
+
+
+
+
+
+
+
+ direct costs
+ 61
+ 1
- relevant organization
+ relevant organization
- 15
- true
- 21
+ 15
+ true
+ 21
award conferred by
-
- Indicates the organization conferring the award -- perhaps different from the sponsor of the award
-
- true
-
+
+ Indicates the organization conferring the award -- perhaps different from the sponsor of the award
+
+ true
+
- Turkey
ليرة
2009
@@ -3346,6 +3342,7 @@ This class allows for linking an author to a publication while indicating inform
Official data reported on FAO Questionnaires from countries
Turkey
TUR
+
土耳其
2010
Repubblica di Turchia
@@ -3353,6 +3350,7 @@ This class allows for linking an author to a publication while indicating inform
1000 Ha
+
TR
Turkey
@@ -3370,16 +3368,20 @@ This class allows for linking an author to a publication while indicating inform
614603.0
土耳其共和国
+
0.679
76963.0
1000 Ha
+
35.82
+
Turquía
792
78356.0
تركيا
турецкий; турок
+
1000 Ha
Population data from the UN Population Division and the data refers to the UN Revision 2008
la República de Turquía
@@ -3388,81 +3390,72 @@ This class allows for linking an author to a publication while indicating inform
лира
تركيا
+
the Republic of Turkey
lira
- turc
Official data reported on FAO Questionnaires from countries
+ turc
15501
里拉,土耳其里拉
nuova lira turca
- 25.66
+
millions of US dollars
+ 25.66
Турция
42.1
+ Turkey
turco
la République turque
土耳其
+
Estimated
2009
1985
+
Turkey
Turkish
+
249
Turquie
9999
-
-
-
-
-
-
-
-
-
-
-
- M.B.A.
-
M.B.A. Master of Business Administration
+ M.B.A.
+
-
+
- -1
+ -1
Continent
- Short Definition take from http://en.wiktionary.org/wiki/continent.
-
-
+ Short Definition take from http://en.wiktionary.org/wiki/continent.
+
+
- The seven commonly recognized continents are Africa; Antarctica; Asia; Australia; Europe; North America; South America
+ The seven commonly recognized continents are Africa; Antarctica; Asia; Australia; Europe; North America; South America
-
- A large contiguous landmass that is at least partially surrounded by water, together with any islands on its continental shelf.
- -1
+
+ A large contiguous landmass that is at least partially surrounded by water, together with any islands on its continental shelf.
+ -1
-
-
-
-
-
- Brunei Darussalam
- 2009
19014
+ 2009
2006
Manual Estimation
2009
Estimated
dólar
+
+
брунейский
Calculated
Brunei Darussalam
@@ -3473,9 +3466,11 @@ This class allows for linking an author to a publication while indicating inform
文莱达鲁萨兰国
文莱的 / 文莱人
+
Brunéi Darussalam
millions of US dollars
9999
+
577.0
Population data from the UN Population Division and the data refers to the UN Revision 2008
1000 Ha
@@ -3497,12 +3492,17 @@ This class allows for linking an author to a publication while indicating inform
Brunei Darussalam
2009
Brunei
+
+
+
26
بروني
dollar
+ Brunei Darussalam
2010
BN
بروني دار السلام
+
Manual Estimation
Brunei Darussalam
文莱达鲁萨兰国
@@ -3510,67 +3510,60 @@ This class allows for linking an author to a publication while indicating inform
096
دولار
Бруней-Даруссалам
+
B$
1000
527.0
dollaro del Brunei
1125
Brunei Darussalam
- of Brunei Darussalam
11471.0
+ of Brunei Darussalam
del Brunei
400.0
Stato di Brunei Darussalam
- le Brunéi Darussalam
Brunei Darussalam
+ le Brunéi Darussalam
Brunei
Brunei Darussalam
Бруней-Даруссалам
Бруней-Даруссалам
- 2009
-
-
-
-
-
-
-
-
-
+ 2009
West Virginia
-
-
-
-
-
+
+
-
+
+
+
+
+
- FAO terminology http://www.fao.org/termportal/en/
+ http://www.fao.org/termportal/contr/zh/
+ FAO terminology http://www.fao.org/termportal/en/
+ http://www.fao.org/termportal/en/
http://www.fao.org/termportal/contr/en/
-
+
-
-
- nameOfficialRU
- FAO terminology
- 2010-06-24
- http://www.fao.org/termportal/contr/zh/
- http://www.fao.org/termportal/en/
http://www.fao.org/termportal/contr/fr/
+
+
+ nameOfficialRU
http://www.fao.org/termportal/contr/es/
http://www.fao.org/termportal/contr/ar/
+ FAO terminology
+ 2010-06-24
- North Korea
1000 Ha
+
9999
Democratic People's Republic of Korea
@@ -3579,22 +3572,26 @@ This class allows for linking an author to a publication while indicating inform
124.2
67
朝鲜民主主义人民共和国的
+
12041.0
+ North Korea
من (أو تابع لـ) جمهورية كوريا الشعبية الديمقراطية
+
Корейская Народно- Демократическая Республика
- 4115
- República Popular Democrática de Corea
2009
+ 4115
+
+ República Popular Democrática de Corea
la République populaire démocratique de Corée
130.69
la República Popular Democrática de Corea
朝鲜民主主义人民共和国
2009
- DRK
la República Popular Democrática de Corea
+ DRK
جمهورية كوريا الشعبية الديمقراطية
Корейская Народно- Демократическая Республика
@@ -3604,14 +3601,17 @@ This class allows for linking an author to a publication while indicating inform
Manual Estimation
won nordcoreano
PRK
- 408
+ 408
朝鲜民主主义人民共和国
KP
République populaire démocratique de Corée
1985
+
Manual Estimation
+
la République populaire démocratique de Corée
+
1000 Ha
won
1000 Ha
@@ -3620,123 +3620,111 @@ This class allows for linking an author to a publication while indicating inform
15399
12054.0
- the Democratic People's Republic of Korea
+
+ جمهورية كوريا الشعبية الديمقراطية
вона
- جمهورية كوريا الشعبية الديمقراطية
- 1000
2009
+ 1000
+ the Democratic People's Republic of Korea
₩
+ Korea_North
جمهورية كوريا الشعبية الديمقراطية
- Korea_North
Repubblica popolare democratica di Corea
2905.0
+
+
朝鲜民主主义人民共和国
of the Democratic People's Republic of Korea
de la République populaire démocratique de Corée
- Population data from the UN Population Division and the data refers to the UN Revision 2008
Корейская Народно- Демократическая Республика
+ Population data from the UN Population Division and the data refers to the UN Revision 2008
+
- 23906.0
- (из/житель) Корейской Народно-Демократической Республики
- Repubblica popolare democratica di Corea
- della Repubblica popolare democratica di Corea
Manual Estimation
+ della Repubblica popolare democratica di Corea
+ Repubblica popolare democratica di Corea
+ (из/житель) Корейской Народно-Демократической Республики
+ 23906.0
43.01
37.65
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
has sub-organization
- true
- 10
+ true
+ 10
- Relates an organization to the sub-organization that it contains.
+ Relates an organization to the sub-organization that it contains.
- true
-
- hasSubOrganization
- true
- 5
+ true
+
+ hasSubOrganization
+ true
+ 5
-
-
+
+
- true
+ true
includes event
- true
- 5
-
+ true
+ 5
+
+
+
+
+
+
featured in
- true
-
- This relates a person to an information resource that contains a featured article on that person.
- true
- edu.cornell.mannlib.vitro.webapp.edit.n3editing.configuration.generators.AutocompleteObjectPropertyFormGenerator
+ true
+
+ This relates a person to an information resource that contains a featured article on that person.
+ true
+ edu.cornell.mannlib.vitro.webapp.edit.n3editing.configuration.generators.AutocompleteObjectPropertyFormGenerator
- 5
- This is done through a restriction on the foaf:Person class.
-
- featuredIn
-
+ 5
+ This is done through a restriction on the foaf:Person class.
+
+ featuredIn
+
- 50
+ 50
M.M. Master of Music
-
- M.M.
+ M.M.
+
-
-
-
-
-
-
+
- M.C.E.
-
M.C.E. Master of Christian Education
+ M.C.E.
+
-
+
hasCurrency
@@ -3745,139 +3733,133 @@ This class allows for linking an author to a publication while indicating inform
-
-
+
+
-
+
- 5
- 10
-
+ 5
+ 10
+
presenter role of
- true
+ true
-
- Relates a person to their presentation activity.
- presentationActivityBy
+
+ Relates a person to their presentation activity.
+ presentationActivityBy
- true
+ true
-
+
-
+
event within
- true
- 5
+ true
+ 5
-
+
- true
+ true
Peer Reviewer Role
- is a generic term for a process of self-regulation by a profession or a process of evaluation involving qualified individuals within the relevant field. Peer review methods are employed to maintain standards, improve performance and provide credibility. In academia the term is often used to denote a prepublication review of academic papers; reviewing an academic paper is often called refereeing.
+ is a generic term for a process of self-regulation by a profession or a process of evaluation involving qualified individuals within the relevant field. Peer review methods are employed to maintain standards, improve performance and provide credibility. In academia the term is often used to denote a prepublication review of academic papers; reviewing an academic paper is often called refereeing.
Contents
-[hide]
+[hide]
-
- -1
- true
+
+ -1
+ true
-
- A role of peer reviewing
+
+ A role of peer reviewing
- -1
+ -1
- Alachua County Extension Office
-
-
- -1
-
+ Alachua County Extension Office
+
+
+ -1
+
Extension Unit
- A unit devoted primarily to extension activities, whether for outreach or research.
- -1
+ A unit devoted primarily to extension activities, whether for outreach or research.
+ -1
- 70
+ 70
- The foaf definition is as follows - Distributor of a document or a collection of documents. However, in VIVO, this can relate anything as the distributor to anything else.
- 5
-
- distributor
- Public Description for bibo:distributor taken from here: http://bibotools.googlecode.com/svn/bibo-ontology/trunk/doc/index.html .
- true
+ The foaf definition is as follows - Distributor of a document or a collection of documents. However, in VIVO, this can relate anything as the distributor to anything else.
+ 5
+
+ distributor
+ Public Description for bibo:distributor taken from here: http://bibotools.googlecode.com/svn/bibo-ontology/trunk/doc/index.html .
+ true
- true
+ true
distributor
-
-
+
+
- 2010-06-24
- FAO terminology
-
- FAO terminology http://www.fao.org/termportal/en/
- http://www.fao.org/termportal/contr/en/
-
-
-
- nameCurrencyRU
http://www.fao.org/termportal/contr/es/
+ 2010-06-24
http://www.fao.org/termportal/contr/zh/
http://www.fao.org/termportal/contr/fr/
http://www.fao.org/termportal/contr/ar/
+ FAO terminology
+
+ FAO terminology http://www.fao.org/termportal/en/
http://www.fao.org/termportal/en/
-
-
-
- 1
-
+ http://www.fao.org/termportal/contr/en/
+
+
+
+ nameCurrencyRU
- Yemen_1990
- 1990
- 1985
- Yemen
+
Yemen
+ Yemen_1990
886
- 8483
-
-
-
-
-
-
+
+ Yemen
+
+
+ 1990
+
-
-
+ 8483
+
+ 1985
+
+
- Nicaragua
6140.0
5743.0
córdoba
@@ -3889,14 +3871,19 @@ Contents
Nicaraguan
جمهورية نيكاراغوا
1000 Ha
+
+
+
1000 Ha
+
كوردوبا
+
Nicaragua
2009
1985
-
- 15461
+ 15461
+
Data reported on country official publications or web sites (Official) or trade country files.
Nicaragua
@@ -3904,25 +3891,29 @@ Contents
0.565
Manual Estimation
+
180
Nicaragua
the Republic of Nicaragua
-
- Nicaragua
2009
+ Nicaragua
+
nicaraguayen
2009
+ Nicaragua
N
2009
2009
Nicaragua
10.71
نيكاراغوا
+
Никарагуа
尼加拉瓜
-87.69
millions of US dollars
+
1000 Ha
Nicaragua
@@ -3938,6 +3929,7 @@ Contents
Data reported on country official publications or web sites (Official) or trade country files.
15.03
+
le Nicaragua
نيكاراغوي
@@ -3950,279 +3942,174 @@ Contents
9999
نيكاراغوا
- Population data from the UN Population Division and the data refers to the UN Revision 2008
+ Population data from the UN Population Division and the data refers to the UN Revision 2008
尼加拉瓜
2010
+
la République du Nicaragua
-82.73
+
nicaragüense
Estimated
- 558
5146.0
+ 558
NIC
NIC
Республика Никарагуа
-
-
-
-
-
-
-
-
-
-
-
- Intergovernmental Authority on Development
1996
Autorité intergouvernementale sur le développement
政府间发展管理局
+
Intergovernmental Authority on Development
- IGAD http://igad.int/
- http://igad.int/
+ IGAD http://igad.int/
9999
+ http://igad.int/
- IGAD
- 44556
الهيئة الحكومية الدولية لتحقيق التنمية
+ 44556
+ IGAD
Межправительственный орган по вопросам развития
IGAD
Autorité intergouvernementale sur le développement
Intergovernmental Authority on Development
政府间发展管理局
- Autoridad Intergubernamental sobre el Desarrollo
+ Autoridad Intergubernamental sobre el Desarrollo
+
IGAD
IGAD
Autoridad Intergubernamental sobre el Desarrollo
+ Intergovernmental Authority on Development
-
+
-
-
-
-
-
-
-
-
+
A legal decision that affirms a ruling.
- The public description was taken from here: http://bibotools.googlecode.com/svn/bibo-ontology/trunk/doc/index.html
- A legal decision that affirms a ruling.
+ The public description was taken from here: http://bibotools.googlecode.com/svn/bibo-ontology/trunk/doc/index.html
+ A legal decision that affirms a ruling.
http://purl.org/ontology/bibo/
- affirmedBy
+ affirmedBy
-
-
+
+
- true
- true
+ true
+ true
affirmedBy
-
+
-
-
-
Humane Society of Africa
+
+
+
-
+
+
+
+
+
+
+
- true
- 5
+ true
+ 5
- 20
- domesticGeographicFocusOf
- true
+ 20
+ domesticGeographicFocusOf
+ true
-
+
-
-
+
+
domestic geographic focus of
- -1
+ -1
-
- A laboratory that provides services
-
+
+ A laboratory that provides services
+
Service Providing Lab
- -1
+ -1
-
+
- Ideally a defined class -- a Laboratory the provides some Service via the property
+ Ideally a defined class -- a Laboratory the provides some Service via the property
M.A. Master of Arts
-
- M.A.
+ M.A.
+
-
+
-
-
-
+
+
+
M.L.S. Master of Library Science
+ M.L.S.
+
+
- M.L.S.
-
-
-
-
- Italy
- Estimated
-
-
- italiano
- 意大利
- Calculated
- 13908.0
- Italia
- Italian
- 122
- 35.49
- 30134.0
- 2112780.0
- 1000 Ha
- 意大利
- 意大利共和国
- 1985
- the Republic of Italy
- 2010
- italiano
- итальянский
- IT
-
- евро
- Manual Estimation
- EUR or €
-
- 2009
- Italy
-
- millions of US dollars
- 9999
- 2009
- 15432
- Italia
- 1000 Ha
- 1000 Ha
- 4026
- Итальянская Республика
- Italy
- italien
- la República Italiana
- 2009
- 意大利的
- Italie
- يورو
- 380
- 0.854
- 2009
-
- إيطالي
- 1000
- الجمهورية الإيطالية
-
- 欧 元
-
- إيطاليا
- Manual Estimation
- 106
- Data reported on country official publications or web sites (Official) or trade country files.
- 18.52
- Italy
- Italia
- Repubblica italiana
-
-
- Italia
-
- Италия
- إيطاليا
- la République italienne
- 59870.0
- 47.09
- ITA
-
-
- 6.62
- euro
- ITA
- euro
- euro
- Population data from the UN Population Division and the data refers to the UN Revision 2008
- 2009
- l'Italie
- Италия
- 29414.0
- euro
-
-
-
-
-
-
-
-
-
-
-
- Chad
+
乍得共和国
Чад
1000 Ha
- 24.0
- 1487
- Repubblica del Ciad
- 乍 得
- تشاد
- millions of US dollars
+ 24.0
+ تشاد
+ Repubblica del Ciad
+ millions of US dollars
+ 乍 得
+ 1487
2009
чадский
+
TD
9999
+
+
148
Чад
+ Chad
125920.0
- 15388
-
-
- Chad
تشادي
+
+ 15388
+ Chad
+
Chad
франк КФА
CFA franc (Communauté financière africaine)
@@ -4233,8 +4120,9 @@ Contents
franco CFA
2009
ciadiano
- 2009
+ 2009
+
2010
Ciad
@@ -4253,40 +4141,47 @@ Contents
franc CFA (Communauté financière africaine)
乍 得
TCD
+
tchadien
- le Tchad
فرنك الجماعة المالية الأفريقية
+ le Tchad
Manual Estimation
+
+
+
Ciad
el Chad
6839.0
Tchad
+
0.295
50
CHD
la République du Tchad
- 2009
7.45
- Population data from the UN Population Division and the data refers to the UN Revision 2008
+ 2009
Estimated
+ Population data from the UN Population Division and the data refers to the UN Revision 2008
Республика Чад
1000 Ha
11206.0
Chadian
+
+
2009
Chad
تشاد
非洲法郎
- 乍得的
Chad
+ 乍得的
49332.0
1000
39
@@ -4294,40 +4189,135 @@ Contents
Data reported on country official publications or web sites (Official) or trade country files.
the Republic of Chad
13.47
-
-
-
-
-
-
-
-
+
+
+ Italy
+ Estimated
+
+
+ italiano
+ 意大利
+ Calculated
+ 13908.0
-
-
-
+ Italia
+ Italian
+
+ 122
+ 35.49
+
+ 30134.0
+ 2112780.0
+ 1000 Ha
+ 意大利
+ 意大利共和国
+
+ 1985
+ the Republic of Italy
+ italiano
+ 2010
+ итальянский
+
+ евро
+
+ IT
+ Manual Estimation
+ EUR or €
+
+ 2009
+ Italy
+
+
+ millions of US dollars
+ 9999
+ 2009
+ 15432
+ Italia
+ 1000 Ha
+ 1000 Ha
+ 4026
+ Итальянская Республика
+ Italy
+ 2009
+ la República Italiana
+ italien
+ 意大利的
+ Italie
+ يورو
+ 380
+ 0.854
+
+ 2009
+ إيطالي
+ الجمهورية الإيطالية
+ 1000
+
+
+ 欧 元
+
+ إيطاليا
+ Manual Estimation
+ 106
+ Data reported on country official publications or web sites (Official) or trade country files.
+ 18.52
+ Italy
+ Italia
+ Repubblica italiana
+
+
+
+ Italia
+
+
+ Италия
+ إيطاليا
+ la République italienne
+ 59870.0
+ 47.09
+ ITA
+
+
+
+ 6.62
+ euro
+ ITA
+
+ euro
+ euro
+ Population data from the UN Population Division and the data refers to the UN Revision 2008
+ 2009
+ Италия
+ 29414.0
+ l'Italie
+ euro
- Russian Federation
俄罗斯联邦
+
RUS
2009
rublo
+
1000
643
la Federación de Rusia
+
1991
of the Russian Federation
+
+
1000 Ha
الاتحاد الروسي
+
Manual Estimation
the Russian Federation
российский
+
рубль [м.]
俄罗斯联邦
9999
@@ -4339,14 +4329,14 @@ Contents
Manual Estimation
la Fédération de Russie
Российская Федерация
- 180.0
1637687.0
+ 180.0
Federazione russa
2009
Fédération de Russie
-
俄罗斯联邦
+
rouble
Population data from the UN Population Division and the data refers to the UN Revision 2008
0.719
@@ -4360,39 +4350,44 @@ Contents
RUS
1709824.0
rouble
+
Russian Federation
Calculated
rublo
de la Fédération de Russie
+ Russian Federation
- -180.0
- 1000 Ha
+ 1000 Ha
+ -180.0
Russia
33240
RU
- الاتحاد الروسي
+ الاتحاد الروسي
2010
204
19040
Manual Estimation
- 俄罗斯的
+
81.86
+ 俄罗斯的
la Fédération de Russie
140874.0
卢 布
- the Russian Federation
2009
+ 2009
2009
millions of US dollars
- 2009
+ the Russian Federation
Российская Федерация
+
215561.0
+
Rub
Russia
de la Federación de Rusia
@@ -4404,64 +4399,61 @@ Contents
1000 Ha
1231893.0
-
-
-
-
-
-
-
-
-
-
-
- Czechoslovakia
CZE
2009
+
+
+
2009
+
51
1000 Ha
0.0
+
1000 Ha
- 200
- 2009
+
+ 2009
+ 200
+
+
+ Czechoslovakia
+
Czechoslovakia
1993
- Czechoslovakia
1000 Ha
+ Czechoslovakia
1985
0.0
0.0
-
-
-
-
-
-
-
-
-
+
+
+ 1
+
+
- Montenegro
+
Montenegro
Calculated
Estimated
+
le Monténégro
Montenegro
2009
Черногория
+
Montenegro
黑山的
+
黑山
le Monténégro
ME
@@ -4472,8 +4464,9 @@ Contents
Montenegro
1000
Official data reported on FAO Questionnaires from countries
- 1000 Ha
+ Montenegro
Montenegro (la)
+ 1000 Ha
1000 Ha
الجبل الأسود
euro
@@ -4484,10 +4477,10 @@ Contents
624.0
514.0
Manual Estimation
+ Черногория
黑山
49907
الجبل الأسود
- Черногория
2647
Montenegro
Montenegro
@@ -4496,14 +4489,18 @@ Contents
9999
montenegrino
72720
+
+
+
1000 Ha
2006
يورو
MNE
la Montenegro
- Population data from the UN Population Division and the data refers to the UN Revision 2008
Черногория
+
+ Population data from the UN Population Division and the data refers to the UN Revision 2008
2009
euro
@@ -4514,8 +4511,8 @@ Contents
Montenegro
1381.0
الجبل الأسود
- 黑山
من الجبل الأسود
+ 黑山
евро
millions of US dollars
euro
@@ -4525,44 +4522,31 @@ Contents
черногорец
Montenegro
+
+
+
273
euro
1345.0
-
-
-
-
-
-
-
-
-
-
-
offers course
- 5
- 5
-
+ 5
+ 5
+
- true
+ true
-
+
- true
+ true
-
-
- 1
-
-
hasShortName
@@ -4570,38 +4554,44 @@ Contents
-
-
+
+
-
-
-
+
+
+
- true
- 1
+ true
+ 1
- geographicallyContains
- Relates a geographic location with the geographic locations that it contains.
-
+ geographicallyContains
+ Relates a geographic location with the geographic locations that it contains.
+
geographically contains
- 5
-
- true
+ 5
+
+ true
-
+
+
+ M.H.A. Master of Hospital Administration
+ M.H.A.
+
+
+
+
- Guyana
dollaro guianese
- G$
1985
+ G$
圭亚那
2009
@@ -4611,14 +4601,16 @@ Contents
le Guyana
dollar
+
15421
من جمهورية غيانا
1.18
GY
Guyanese
- 1000 Ha
+ 1000 Ha
+
1000 Ha
Guyana
Data reported on country official publications or web sites (Official) or trade country files.
@@ -4627,21 +4619,24 @@ Contents
圭亚那的
1675.0
GUY
- 2009
Guyana
- la République du Guyana
+ 2009
-56.48
+ la République du Guyana
the Republic of Guyana
+
+
millions of US dollars
dollar
- 91
762.0
+ 91
غيانا
Estimated
328
+
2009
Manual Estimation
Guyana
@@ -4653,9 +4648,11 @@ Contents
0.611
3445
دولار
+
la República de Guyana
1000
19685.0
+
Guyana
2009
@@ -4666,132 +4663,110 @@ Contents
гайанский
2009
+
-61.39
guyanés
107
2026.0
21497.0
- غيانا
8.55
+ غيانا
+
dólar
+ Guyana
Guyana
1000 Ha
Guyana
9999
+
Республика Гайана
guyanese
2010
+
جمهورية غيانا
Гайана
-
-
-
-
-
-
-
-
-
-
-
-
-
- M.H.A. Master of Hospital Administration
-
- M.H.A.
-
-
-
-
-
- 5
- true
-
-
-
- linked author
- true
-
-
-
- linked author
-
- 1
- This relates authorship information to a agent who/that owns the authorship information.
Populated Place
-
-
+
+
- Either city or town - a thickly populated area having fixed boundaries and certain local powers of government.
+ Either city or town - a thickly populated area having fixed boundaries and certain local powers of government.
-
+
- -1
+ -1
- -1
+ -1
+
+
+
+ 5
+ true
+
+
+
+ linked author
+ true
+
+
+
+ linked author
+
+ 1
+ This relates authorship information to a agent who/that owns the authorship information.
M.Aero.E. Master of Aeronautical Engineering
-
- M.Aero.E.
+ M.Aero.E.
+
-
+
-
-
+
Equipment
-
- A physical object provided for specific purpose, task or occupation.
-
-
-
- A network server is one example. Medical schools and research laboratories can list professional equipment, such as microscopes.
-
-
-
- -1
- server; Bruker Vector-33 FT-IR
-
-
+
+
+ A physical object provided for specific purpose, task or occupation.
+
+
+
+
+
+ A network server is one example. Medical schools and research laboratories can list professional equipment, such as microscopes.
+
+
+ server; Bruker Vector-33 FT-IR
+ -1
+
- -1
+ -1
-
-
+
+
-
+
http://purl.org/ontology/bibo/
locator
- stable
- definition from: http://bibotools.googlecode.com/svn/bibo-ontology/trunk/doc/index.html
+ stable
+ definition from: http://bibotools.googlecode.com/svn/bibo-ontology/trunk/doc/index.html
A description (often numeric) that locates an item within a containing document or collection.
- A description (often numeric) that locates an item within a containing document or collection.
+ A description (often numeric) that locates an item within a containing document or collection.
-
-
-
-
-
-
- 1
- http://library.cornell.edu
- CUL Homepage
-
-
+
+
GDPYear
@@ -4801,68 +4776,73 @@ Contents
-
-
+
+
+
+
+
+
+
+
+
+ true
+
+
+
+
+
+
+
+
+ Issued Credential
- true
-
-
-
+
-
+
- Issued Credential
+ 2
+ 2
-
-
-
-
-
- 2
-
-
- 2
-
-
-
-
-
-
+
+
+
+
+
- Ireland
Official data reported on FAO Questionnaires from countries
6889.0
Irish
Population data from the UN Population Division and the data refers to the UN Revision 2008
- 2009
- IRE
- millions of US dollars
Official data reported on FAO Questionnaires from countries
+ IRE
l'Irlande
+ 2009
+ millions of US dollars
Irlanda
ирландский
آيرلندا
- 4515.0
آيرلندي
+ 4515.0
1000
- Irlanda
+
IRL
+ Irlanda
0.895
Irlanda
227193.0
@@ -4872,13 +4852,16 @@ Contents
爱尔兰
4189.0
爱尔兰
- irlandais
爱尔兰
+ irlandais
+
Ireland
евро
2009
Irlanda
euro
+
+
irlandés
3948
爱尔兰的
@@ -4890,6 +4873,7 @@ Contents
104
119
euro
+
Irlanda
@@ -4898,82 +4882,77 @@ Contents
1000 Ha
يورو
372
+
2009
euro
1000 Ha
+
9999
2010
2009
1000 Ha
Ирландия
- l'Irlande
7028.0
+ l'Irlande
Ireland
2009
آيرلندا
+
euro
1985
51.42
欧 元
+
+ Ireland
15430
-10.58
+
+
Calculated
+ Ирландия
Ireland
irlandese
- Ирландия
IE
-5.99
-
-
-
-
-
-
-
-
-
-
-
-
- M.F.A.
M.F.A. Master of Fine Arts
+ M.F.A.
+
-
+
-
-
-
+
+
+
- unstable
+ unstable
- 200
- true
+ 200
+ true
- Relates a document to an event; for example, a paper to a conference.
+ Relates a document to an event; for example, a paper to a conference.
presented at
-
+
-
- presentedAt
+
+ presentedAt
http://purl.org/ontology/bibo/
- Public Description from source: http://bibotools.googlecode.com/svn/bibo-ontology/trunk/doc/index.html . Bibo considers the bibo:presents and the bibo:presentedAt unstable terms. It also indicates that bibo:presents is a sub-property of event:product.
+ Public Description from source: http://bibotools.googlecode.com/svn/bibo-ontology/trunk/doc/index.html . Bibo considers the bibo:presents and the bibo:presentedAt unstable terms. It also indicates that bibo:presents is a sub-property of event:product.
-
+
Relates a document to an event; for example, a paper to a conference.
- true
+ true
- Syrian Arab Republic
阿拉伯叙利亚共和国
镑
@@ -4987,10 +4966,10 @@ Contents
millions of US dollars
Syria
фунт
- 37.32
- República Árabe Siria
阿拉伯叙利亚共和国
+ 37.32
42.37
+ República Árabe Siria
叙利亚的
9999
760
@@ -4998,9 +4977,11 @@ Contents
2009
sirio
1000 Ha
-
- 35.61
la República Árabe Siria
+
+ 35.61
+
+
Сирийская Арабская Республика
Population data from the UN Population Division and the data refers to the UN Revision 2008
@@ -5008,16 +4989,19 @@ Contents
la République arabe syrienne
the Syrian Arab Republic
+
SYR
SYR
212
2010
ليرة
-
LS
+
Official data reported on FAO Questionnaires from countries
+
سوري
+
siriano
la République arabe syrienne
Official data reported on FAO Questionnaires from countries
@@ -5026,8 +5010,11 @@ Contents
syrien
الجمهورية العربية السورية
الجمهورية العربية السورية
+
+
13908.0
+
52177.0
la República Árabe Siria
Repubblica araba siriana
@@ -5049,10 +5036,12 @@ Contents
21906.0
Syrian Arab Republic
1000 Ha
+
18363.0
Siria
1000
the Syrian Arab Republic
+
الجمهورية العربية السورية
Сирийская Арабская Республика
2009
@@ -5060,32 +5049,17 @@ Contents
Calculated
2009
SY
+
7576
1985
-
-
-
-
-
-
-
-
-
-
-
+ Syrian Arab Republic
-
-
- 1
-
-
-
-
-
+
+
+
- Peru
بيروي
Estimated
@@ -5097,11 +5071,13 @@ Contents
peruviano
604
新索尔
+
Peruvian
millions of US dollars
Perù
Peru
+
Perú
peruano
Perú
@@ -5109,10 +5085,12 @@ Contents
秘 鲁
Республика Перу
2009
+ Peru
128000.0
-68.68
PER
Population data from the UN Population Division and the data refers to the UN Revision 2008
+
9999
秘鲁的
@@ -5121,6 +5099,7 @@ Contents
Repubblica del Perù
Pérou
2009
+
1000 Ha
2009
21440.0
@@ -5138,8 +5117,9 @@ Contents
170
Data reported on country official publications or web sites (Official) or trade country files.
- سول جديد
+
15470
+ سول جديد
بيرو
nuevo sol
@@ -5147,93 +5127,60 @@ Contents
nuevo sol
Perù
+
the Republic of Peru
+
la République du Pérou
péruvien
-18.38
- le Pérou
+ le Pérou
PE
+
秘鲁共和国
- 1000
+ 1000
0.723
+
128522.0
1000 Ha
la República del Perú
- 2010
PER
+ 2010
1000 Ha
новый соль [м.]
Peru
+
جمهورية بيرو
- 29165.0
+
Peru
+ 29165.0
-0.03
5725
-
-
-
-
-
-
-
-
-
-
-
LL.M. Master of Laws
-
- LL.M.
+ LL.M.
+
-
+
- M.Eng.
-
M.Eng. Master of Engineering
+ M.Eng.
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- -1
-
-
-
- Computer program and its related documentation; directs the operation of a computer
-
-
-
- Software
-
- -1
-
-
+
A written argument submitted to a court.
- unstable
- A document stating the facts and points of law of a client's case
-
- -1
+ unstable
+ A document stating the facts and points of law of a client's case
+
+ -1
- -1
+ -1
@@ -5242,17 +5189,7 @@ Contents
Brief
-
-
-
-
- 1
-
-
-
-
-
-
+
hasListName
@@ -5261,42 +5198,53 @@ Contents
-
-
+
+
+
+
+ 14853
+ CIT, Cornell University
+ New York
+ Ithaca
+ United States of America
+
asin
- 020530902X
+ 020530902X
- stable
+ stable
-
+
- The Amazon Standard Identification Number (ASIN) is a unique identification number assigned by Amazon.com and its partners for product identification within the Amazon.com organization.
- Amazon standard identification number. Source: http://en.wikipedia.org/wiki/Amazon_Standard_Identification_Number.
-
+ The Amazon Standard Identification Number (ASIN) is a unique identification number assigned by Amazon.com and its partners for product identification within the Amazon.com organization.
+ Amazon standard identification number. Source: http://en.wikipedia.org/wiki/Amazon_Standard_Identification_Number.
+
Amazon Standard Identification Number
http://purl.org/ontology/bibo/
-
+
- Comoros
COM
-12.42
+
+
2009
Коморские Острова
-
1000
+
+
Союз Коморских Островов
-
-
+
科摩罗
+
+
Comoras
فرنك
las Comoras
@@ -5314,11 +5262,11 @@ Contents
9999
1790
2009
- 43.22
+ Коморские Острова
+ 43.22
2009
Comorian
- Коморские Острова
2009
法 郎
franco comoriano
@@ -5336,6 +5284,8 @@ Contents
2009
جزر القمر
franc
+
+
Calculated
1000 Ha
@@ -5343,8 +5293,10 @@ Contents
la Unión de las Comoras
1985
Comoros
+
186.1
+
Data reported on country official publications or web sites (Official) or trade country files.
comorien
@@ -5353,7 +5305,9 @@ Contents
Comores
Isole Comore
the Union of the Comoros
+
Unione delle Comore
+
科摩罗的 / 科摩罗人
155.0
جزر القمر
@@ -5365,42 +5319,28 @@ Contents
comoriano
franco
1000 Ha
+
870.0
the Comoros
Isole Comore
535.0
+ Comoros
comorano
франк
45
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- M.Ed.
-
M.Ed. Master of Education
+ M.Ed.
+
-
+
- Bosnia and Herzegovina
marco
+
of Bosnia and Herzegovina
Bosnie-Herzégovine
5121.0
@@ -5412,6 +5352,8 @@ Contents
Bosnia_and_Herzegovina
BA
+
+
2128.0
millions of US dollars
波斯尼亚-黑塞哥维那
@@ -5423,22 +5365,25 @@ Contents
Bosnia and Herzegovina
+
Official data reported on FAO Questionnaires from countries
- 1000 Ha
1000 Ha
+ 1000 Ha
5100.0
+
Босния и Герцеговина
Bosnia-Erzegovina
45.28
+ Bosnia and Herzegovina
33958
de Bosnia y Herzegovina
Bosnia and Herzegovina
- 波黑的
Босния и Герцеговина
marco
марка
+ 波黑的
波斯尼亚-黑塞哥维那共和国
25401
@@ -5449,6 +5394,7 @@ Contents
BIH
波斯尼亚-黑塞哥维那
0.71
+
2009
من البوسنة والهرسك
Bosnia y Herzegovina
@@ -5459,20 +5405,22 @@ Contents
15.74
bosniaco, erzegovino
- Bosnia-Erzegovina
1000 Ha
+ Bosnia-Erzegovina
Estimated
BIH
- Bosnia y Herzegovina
-
2010
+
+ Bosnia y Herzegovina
42.55
1000
34
Bosnia-Erzegovina
- 80
+
Official data reported on FAO Questionnaires from countries
+ 80
+
боснийско-герцеговинский
1992
@@ -5483,108 +5431,89 @@ Contents
mark
Босния и Герцеговина
البوسنة والهرسك
+
+
马 克
2009
-
-
-
-
-
-
-
-
-
-
-
research
- 50
+ 50
+
- 2010-01-10T15:30:25
+ 2010-01-10T15:30:25
-
-
-
-
-
-
-
-
-
+
+ Smith
+ Joe
+
- -1
+ -1
-
-
+
+
- -1
+ -1
-
+
Librarian
- A person working in a position of librarian or information professional, or academic or technical expert in support of providing information services or materials.
-
-
-
- 1
-
+ A person working in a position of librarian or information professional, or academic or technical expert in support of providing information services or materials.
- eastern Europe
- 东欧
- eastern Europe
- Europa orientale
- أوروبا الشرقية
- Europe de l'Est; Europe orientale
-
- 84916
- 5405
-
- Europa oriental
- eastern Europe
-
-
-
- 1993
- Europa oriental
- Восточная Европа
- 东欧
-
- Восточная Европа
-
- Europa orientale
- Europe de l'Est; Europe orientale
-
-
- 151
- Восточная Европа
-
- 9999
- Europa orientale
- Europe de l'Est; Europe orientale
- أوروبا الشرقية
- أوروبا الشرقية
- 2448
- eastern Europe
-
- Europa oriental
- 东欧
-
-
-
-
-
+ Europa orientale
+ 9999
+
+
+
+ Восточная Европа
+ 东欧
+
+
+
+ 84916
+
+ 东欧
+ Europe de l'Est; Europe orientale
+ 东欧
+ Восточная Европа
+ Восточная Европа
+
+ eastern Europe
+ 5405
+ Europa oriental
+
+
+ أوروبا الشرقية
+ Europa oriental
+ eastern Europe
+
+
+ Europe de l'Est; Europe orientale
+ 151
+
+ Europa oriental
+
+ أوروبا الشرقية
+
+ 1993
+ 2448
+ eastern Europe
+ Europa orientale
+ أوروبا الشرقية
+ Europe de l'Est; Europe orientale
+
+
+ Europa orientale
-
+ eastern Europe
- Seychelles
SYC
2009
@@ -5592,19 +5521,23 @@ Contents
de Seychelles
la República de Seychelles
Seychelles
+ Seychelles
سيشيل
millions of US dollars
Сейшельские Острова
塞舌尔共和国
+
9999
сейшельский
les Seychelles
56.3
+
塞舌尔的
46.0
rupee
46.0
la République des Seychelles
+
196
Repubblica delle Seicelle
سيشيلي
@@ -5614,9 +5547,11 @@ Contents
Population data from the UN Population Division and the data refers to the UN Revision 2008
rupia delle Seicelle
+
-10.2
Manual Estimation
220
+
7017
2009
Сейшельские Острова
@@ -5624,8 +5559,10 @@ Contents
-4.28
1985
15484
+
рупия
+
Seychelles
卢 比
Республика Сейшельские Острова
@@ -5634,10 +5571,13 @@ Contents
2009
Estimated
+
Manual Estimation
84.0
+
塞舌尔
+
Seychelles
Seychelles
3.0
@@ -5663,131 +5603,122 @@ Contents
of Seychelles
Seychelles
SC
+
seychellois
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- This relates an organization to the person's position(s) within that organization.
+ This relates an organization to the person's position(s) within that organization.
-
- 15
-
- employer having employment
+
+ 15
+
+ employer having employment
- true
+ true
people
- desc
- edu.cornell.mannlib.vitro.webapp.edit.n3editing.configuration.generators.OrganizationHasPositionHistoryGenerator
- true
-
- true
+ desc
+ edu.cornell.mannlib.vitro.webapp.edit.n3editing.configuration.generators.OrganizationHasPositionHistoryGenerator
+ true
+
+ true
+
+
+
+
+
-
-
Ape Trainer of the Decade
-
+
+
-
+
+
Economic Community of West African States
- Comunidad Económica de los Estados del África Occidental
-
- 西非国家经济共同体
-
- الجماعة الاقتصادية لدول غرب أفريقيا
-
+
9999
-
- Economic Community of West African States
- ECOWAS http://www.ecowas.int/
-
-
+ Communauté économique des États de l'Afrique de l'Ouest
CEDEAO
-
- Communauté économique des États de l'Afrique de l'Ouest
+ الجماعة الاقتصادية لدول غرب أفريقيا
+
+
+ 西非国家经济共同体
+
+ 48092
+ ECOWAS
+
+
+
+
+ Economic Community of West African States
+
+
+ 2009
+ Экономическое сообщество западноафриканских государств
+
西非国家经济共同体
Comunidad Económica de los Estados del África Occidental
- Экономическое сообщество государств Западной Африки
- Economic Community of West African States
-
- Экономическое сообщество западноафриканских государств
-
- http://www.ecowas.int/
2010-04-21
CEDEAO
-
-
- ECOWAS
-
- http://www.ecowas.int/?lang=fr
-
-
- ECOWAS
- Communauté économique des États de l'Afrique de l'Ouest
-
- 48092
- 2009
-
+
+ http://www.ecowas.int/
-
+ Communauté économique des États de l'Afrique de l'Ouest
-
-
-
-
-
-
+ http://www.ecowas.int/?lang=fr
+
+
+ Economic Community of West African States
+
+ Comunidad Económica de los Estados del África Occidental
+ ECOWAS
+ Экономическое сообщество государств Западной Африки
+
+ ECOWAS http://www.ecowas.int/
+
+
- Yemen
- rial
- 41.82
rial yemenita
+ 41.82
+ Population data from the UN Population Division and the data refers to the UN Revision 2008
52797.0
ريال
- Yemen
+ Yemen
Repubblica dello Yemen
Yemeni
2009
+ Yemen
Yemen
yemenita
9999
Yemen
+
+
+
millions of US dollars
+
也 门
+
yéménite
- 1000 Ha
+ 1000 Ha
26365.0
887
也门的
+
23580.0
YEM
@@ -5810,28 +5741,33 @@ Contents
Yemen
йеменский
the Republic of Yemen
+
YE
риал
也门共和国
-
- 2009
- YRls
YEM
+ YRls
+ 2009
+
269
+
2009
Yémen
15511
2009
2009
اليمن
+
1990
0.439
- Йемен
+
+ الجمهورية اليمنية
Йемен
54.54
- الجمهورية اليمنية
+ Йемен
1000
+
le Yémen
里亚尔
52797.0
@@ -5840,106 +5776,95 @@ Contents
Manual Estimation
-
Yemen
12.11
Calculated
+
1000 Ha
Yemen
-
1000 Ha
+
也 门
- Population data from the UN Population Division and the data refers to the UN Revision 2008
يمنى
19.0
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 1
-
+ rial
http://purl.org/ontology/bibo/
-
- An account of the resource.
-
+
+ An account of the resource.
+
short description
-
+
- The idea here is that while dcterms:description may involve length descriptions, this for short (two or three word) descriptions that could go in a bibliographic entry.
- unstable
+ The idea here is that while dcterms:description may involve length descriptions, this for short (two or three word) descriptions that could go in a bibliographic entry.
+ unstable
A short description of the resource.
- 59
- stable
+ 59
+ stable
A summary of the resource.
-
- A summary of the resource.
+
+ A summary of the resource.
abstract
-
- 1
+
+ 1
http://purl.org/dc/terms/
- http://bibotools.googlecode.com/svn/bibo-ontology/trunk/doc/index.html
-
+ http://bibotools.googlecode.com/svn/bibo-ontology/trunk/doc/index.html
+
- An institution for instruction in a particular skill or field.
- School of Architecture; School of Music
+ An institution for instruction in a particular skill or field.
+ School of Architecture; School of Music
-
-
- -1
- -1
- Definition take from here: http://dictionary.reference.com/browse/school.
+
+
+ -1
+ -1
+ Definition take from here: http://dictionary.reference.com/browse/school.
-
+
School
+
+ 1
+
+
+
-
+ http://www.fao.org/termportal/contr/ar/
-
+
+ http://www.fao.org/termportal/contr/fr/
+
http://www.fao.org/termportal/contr/en/
- FAO terminology http://www.fao.org/termportal/en/
+ http://www.fao.org/termportal/contr/zh/
+ FAO terminology http://www.fao.org/termportal/en/
codeFAOTERM
FAO terminology
2010-06-24
-
- http://www.fao.org/termportal/contr/ar/
- http://www.fao.org/termportal/contr/fr/
- http://www.fao.org/termportal/contr/zh/
http://www.fao.org/termportal/en/
+
http://www.fao.org/termportal/contr/es/
yearMonthDayPrecision
+
-
@@ -5949,26 +5874,21 @@ Contents
-
- Bibo has the domain of bibo:issue as the class Issue, but an example on their site uses it with Article, referring to the issue number "4"
+
+ Bibo has the domain of bibo:issue as the class Issue, but an example on their site uses it with Article, referring to the issue number "4"
-
+
issue
- 1
-
- 21
-
-
-
-
-
+ 1
+
+ 21
- Australia
AU
714
+
9999
l'Australie
دولار أسترالى
@@ -5987,6 +5907,8 @@ Contents
Australian dollar
澳大利亚
أسترالى
+
+ Australia
millions of US dollars
Population data from the UN Population Division and the data refers to the UN Revision 2008
2009
@@ -5999,7 +5921,9 @@ Contents
澳大利亚
21293.0
$A
+
-54.76
+
AUS
1000 Ha
@@ -6016,8 +5940,8 @@ Contents
2009
австралийский
Calculated
- dólar australiano
Official data reported on FAO Questionnaires from countries
+ dólar australiano
10
Australia
@@ -6030,39 +5954,35 @@ Contents
Australia
036
l'Australie
+
+
2009
أستراليا
Australia
- Australie
dollaro australiano
+ Australie
dollar australien
0.937
+
Australia
australiano
+
1000 Ha
澳大利亚的 / 澳大利亚人
australien
Official data reported on FAO Questionnaires from countries
+
Estimated
+
+
2009
australiano
-
-
-
-
-
-
-
-
-
-
-
-
-
- 1
+
+
+
@@ -6071,55 +5991,43 @@ Contents
- Top level of all location classes.
- Use subclasses of core:Location when classsifying items.
- -1
+ Top level of all location classes.
+ Use subclasses of core:Location when classsifying items.
+ -1
-
- -1
+
+ -1
Location
- It's anticipated that the subclasses will be used when classifying items. And, all locations can be viewable via this class.
-
-
-
-
-
-
-
-
- hasStatistics
-
-
-
-
-
-
+ It's anticipated that the subclasses will be used when classifying items. And, all locations can be viewable via this class.
+
- Benin
204
0.435
15375
29
- la República de Benin
franco CFA
+ la República de Benin
贝宁共和国
BEN
1000 Ha
12.42
+
6656.0
Repubblica del Benin
11062.0
11262.0
Бенин
Calculated
+
3300.0
+
CFAF
beninés
@@ -6135,25 +6043,28 @@ Contents
Benin
بنن
1000 Ha
+ Benin
3.85
Benin
53
+
Бенин
BEN
-
+
millions of US dollars
2009
2010
+
جمهورية بنن
Beninese
le Bénin
франк КФА
- Population data from the UN Population Division and the data refers to the UN Revision 2008
1000 Ha
+ Population data from the UN Population Division and the data refers to the UN Revision 2008
Benin
بنن
бельгийский
@@ -6161,8 +6072,9 @@ Contents
非洲法郎
875
Estimated
- 8935.0
Benin
+ 8935.0
+
贝 宁
la République du Bénin
@@ -6170,75 +6082,86 @@ Contents
贝 宁
比利时的 / 比利时人
beniniano
+
Benin
+ 1985
Manual Estimation
2009
- 1985
+
2009
BJ
CFA franc (Communauté financière africaine)
2009
- the Republic of Benin
+ the Republic of Benin
9999
+
بنني
0.77
+
Data reported on country official publications or web sites (Official) or trade country files.
franco CFA (Communauté financière africaine)
+
Benin
1000
béninois
-
-
-
-
-
-
-
-
-
-
-
+
+
+ hasStatistics
+
+
+
+
+
+
- Senegal
非洲法郎
Manual Estimation
2009
+ Senegal
2009
Сенегал
SN
+
1000 Ha
0.411
Senegal
- franc CFA (Communauté financière africaine)
- 12534.0
2010
+ 12534.0
+ franc CFA (Communauté financière africaine)
1000
塞内加尔共和国
+
Sénégal
1985
686
+
la República del Senegal
195
جمهورية السنغال
+
+
Data reported on country official publications or web sites (Official) or trade country files.
+
la République du Sénégal
millions of US dollars
-11.35
2009
+
2009
+
SEN
Senegal
@@ -6250,6 +6173,7 @@ Contents
塞内加尔
le Sénégal
el Senegal
+
CFA franc (Communauté financière africaine)
9999
فرنك الجماعة المالية الأفريقية
@@ -6271,6 +6195,7 @@ Contents
16.69
сенегальский
塞内加尔的
+
Manual Estimation
Сенегал
@@ -6278,6 +6203,7 @@ Contents
السنغالي
+
Senegal
塞内加尔
@@ -6298,22 +6224,11 @@ Contents
Республика Сенегал
Senegal
- السنغال
9505.0
+ السنغال
Repubblica del Senegal
франк КФА
-
-
-
-
-
-
-
-
-
-
-
populationUnit
@@ -6323,167 +6238,100 @@ Contents
-
-
-
-
- 40
- 20
- 5
-
- Select a publication, patent or other type of information resource that has been produced as a result of this endeavor.
- true
- produces
-
-
- true
-
-
-
- true
-
-
-
-
+
+
rank
- this number indicates a position in a list
+ this number indicates a position in a list
- enter the position in the list that you would like this item displayed
+ enter the position in the list that you would like this item displayed
-
-
+
+
-
-
-
-
+
+ 40
+ 20
+ 5
+
+ Select a publication, patent or other type of information resource that has been produced as a result of this endeavor.
+ true
+ produces
+
+
+ true
+
+
+
+ true
+
+
+
+
draft
+
-
- true
+ true
supports
- general relationship of support
+ general relationship of support
-
- 5
-
+
+ 5
+
-
-
- 1
-
-
-
-
-
+
+
+
-
+
- Contains news articles, opinions, features, advertising, and is usually issued daily or weekly
+ Contains news articles, opinions, features, advertising, and is usually issued daily or weekly
A periodical of documents, usually issued daily or weekly, containing current news, editorials, feature articles, and usually advertising.
- USA Today
- -1
-
+ USA Today
+ -1
+
- stable
+ stable
Newspaper
http://purl.org/ontology/bibo/
- -1
+ -1
- D.B.A.
-
D.B.A. Doctor of Business Administration
+ D.B.A.
+
-
+
-
Primates-R-Us Fellowship
+
+
-
- false
- defaultLinkForm.jsp
- true
-
-
- western Asia
- Asie occidentale; Asie de l'Ouest
-
-
-
-
-
-
- Asia occidentale
- 5305
- Западная Азия
- western Asia
-
-
-
- western Asia
- western Asia
-
- 145
- آسياالغربية
- Asia occidental
- Западная Азия
- Западная Азия
- آسياالغربية
-
- 西亚
- Asia occidentale
-
-
- Asie occidentale; Asie de l'Ouest
- Asia occidentale
- 西亚
-
- 29174
- 15264
- Asie occidentale; Asie de l'Ouest
- 9999
-
- Asia occidental
- آسياالغربية
-
-
-
- Asia occidental
- 西亚
- 1991
-
-
-
-
-
-
-
-
+ false
+ defaultLinkForm.jsp
+ true
- Cyprus
Population data from the UN Population Division and the data refers to the UN Revision 2008
Cyprus
塞浦路斯
@@ -6491,10 +6339,13 @@ Contents
塞浦路斯的 / 塞浦路斯人
Calculated
1000 Ha
+
Chipre
+
Республика Кипр
125.2
+
871.0
Repubblica di Cipro
@@ -6506,35 +6357,42 @@ Contents
قبرص
2009
CYP
+
1985
قبرصي
chypriote
Chipre
34.63
Chypre
+
кипрский
925.0
Cipro
Кипр
cipriota
chipriota
- euro
+
Official data reported on FAO Questionnaires from countries
+ euro
Cipro
Cypriot
欧 元
Cyprus
+
塞浦路斯共和国
+
9999
Кипр
جمهورية قبرص
CY
Cyprus
2009
- euro
35.69
+ euro
+ Cyprus
2009
924.0
+
Official data reported on FAO Questionnaires from countries
millions of US dollars
@@ -6543,14 +6401,15 @@ Contents
евро
2009
+
Chypre
euro
0.81
la République de Chypre
the Republic of Cyprus
- 64
15398
+ 64
Estimated
32.27
2010
@@ -6560,22 +6419,68 @@ Contents
Official data reported on FAO Questionnaires from countries
2009
la República de Chipre
+
CYP
2080
34.59
1000 Ha
-
-
-
-
+
+
+ Asie occidentale; Asie de l'Ouest
+
+
+
-
-
+
+
+
+ Asia occidentale
+ 5305
+ Западная Азия
+ western Asia
+
+
+
+ western Asia
+ western Asia
+
+ 145
+ آسياالغربية
+ Asia occidental
+ Западная Азия
+ Западная Азия
-
-
-
+
+
+
+ آسياالغربية
+ western Asia
+
+ 西亚
+ Asia occidentale
+
+
+
+
+
+ Asie occidentale; Asie de l'Ouest
+ Asia occidentale
+ 西亚
+ 29174
+
+ 15264
+ Asie occidentale; Asie de l'Ouest
+ 9999
+
+ Asia occidental
+ آسياالغربية
+
+
+
+ Asia occidental
+ 西亚
+ 1991
@@ -6583,37 +6488,39 @@ Contents
-
-
-
-
-
Primates Foundation of America fdfd
+
+
+
+
+
-
+
+
-
- The contact information for a particular event. This could be a name, email, phone number, or method(s) of contacting someone to gain information about the event.
+
+ The contact information for a particular event. This could be a name, email, phone number, or method(s) of contacting someone to gain information about the event.
-
- 50
+
+ 50
contact information
-
- 1
+
+ 1
Indiana
-
-
-
-
-
+
+
-
+
+
+
+
+
@@ -6862,29 +6769,11 @@ Contents
-
-
-
-
-
-
- A short narrative summary to be used as a single descriptive overview statement.
-
- 1
- overview
- 10
-
-
-
-
-
-
-
-
- Antigua and Barbuda
+
505
AG
+
دولار شرق الكاريبى
安提瓜和巴布达
of Antigua and Barbuda
@@ -6904,10 +6793,13 @@ Contents
2009
Estimated
Антигуа и Барбуда
+
44.0
东加勒比元
+
Antigua y Barbuda
+
восточнокарибский доллар
Antigua e Barbuda
13.0
@@ -6919,16 +6811,22 @@ Contents
di Antigua e Barbuda
Antigua_and_Barbuda
dollaro dei Caraibi orientali
+
2009
+
+
88.0
+
Antigua y Barbuda
9999
Antigua-et-Barbuda
- Antigua-et-Barbuda
+ Antigua and Barbuda
15365
+ Antigua-et-Barbuda
+
-61.67
Антигуа и Барбуда
@@ -6944,121 +6842,72 @@ Contents
EC dollar (East Caribbean dollar)
أنتيغوا وباربودا
Antigua and Barbuda
- Antigua y Barbuda
- Antigua and Barbuda
1000 Ha
+ Antigua and Barbuda
+ Antigua y Barbuda
1000 Ha
安提瓜和巴布达
44.0
- أنتيغوا وباربودا
ANT
+ أنتيغوا وباربودا
Antigua e Barbuda
millions of US dollars
أنتيغوا وباربودا
1000
+
8
Антигуа и Барбуда
(из/житель) Антигуа и Барбуды
2009
1132.0
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 3
-
-
+
+ A short narrative summary to be used as a single descriptive overview statement.
+
+ 1
+ overview
+ 10
+
+
+
+
+
- description
- 30
- An account of the resource.
-
-
-
-
-
-
-
-
-
-
- Information Resource
-
-
-
- -1
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- -1
-
-
-
-
-
- The most general classification of an information resource
-
-
-
-
-
-
-
-
-
Samoa
WSM
283.0
-
1000 Ha
+
Data reported on country official publications or web sites (Official) or trade country files.
284.0
-
1000
+
+
تالا
samoano
-13.44
Samoa
دولة ساموا المستقلة
+
Stato indipendente di Samoa
+
+
Estimated
WS
- 2009
15480
+ 2009
Samoa
882
ساموا
самоанский
+
samoano
2009
萨摩亚的
@@ -7074,6 +6923,7 @@ Contents
тала
samoan
+
-14.05
the Independent State of Samoa
Manual Estimation
@@ -7086,12 +6936,15 @@ Contents
SAM
2009
萨摩亚独立国
- 244
萨摩亚
- Manual Estimation
+ 244
Самоа
+ Manual Estimation
+
塔 拉
+
Независимое Государство Самоа
+
Samoan
9999
Samoa
@@ -7101,46 +6954,54 @@ Contents
2009
ساموي
2009
- le Samoa
Samoa
+ le Samoa
Samoa
Samoa
el Estado Independiente de Samoa
6772
+
ساموا
212
Samoa
-171.45
- 1000 Ha
-
-
-
-
-
-
-
-
-
-
+ 1000 Ha
-
-
-
+
+
+
+ 3
+
+
+
+
+ description
+ 30
+ An account of the resource.
+
+
+
+
+
+
+
+
+
- Czech Republic
12.1
190274.0
203
捷克共和国
couronne
+ la República Checa
1000 Ha
République tchèque
- la República Checa
18.86
+
чешский
Repubblica ceca
51.03
@@ -7149,48 +7010,55 @@ Contents
捷克的 / 捷克人
捷克共和国
millions of US dollars
+
Чешская Республика
Чешская Республика
+ 1000 Ha
CEH
الجمهورية التشيكية
- 1000 Ha
+ Czech Republic
كورونا
65
Czech Republic
-
1993
+
الجمهورية التشيكية
checo
- крона
1000 Ha
- 2009
- Czech
+ крона
+ Czech
+ 2009
la République tchèque
+ تشيكي
Estimated
la République tchèque
- تشيكي
- the Czech Republic
+
+
7725.0
+ the Czech Republic
tchèque
+
167
10369.0
2009
- corona ceca
+
+ corona ceca
2010
CZ
CZK
Repubblica ceca
- Official data reported on FAO Questionnaires from countries
- la República Checa
- 32174
koruna
+ Official data reported on FAO Questionnaires from countries
+ 32174
+ la República Checa
Official data reported on FAO Questionnaires from countries
9999
+
33095
2009
Calculated
@@ -7204,133 +7072,128 @@ Contents
ceco
Population data from the UN Population Division and the data refers to the UN Revision 2008
- República Checa
-
2009
+
+
+ República Checa
克 朗
+
Czech_Republic
0.841
捷克共和国
+
Official data reported on FAO Questionnaires from countries
Repubblica ceca
الجمهورية التشيكية
- 1000
-
-
-
-
-
-
-
-
-
-
+ 1000
- An Award or Honor
-
- An Award or Honor
- 1
-
+ An Award or Honor
+
+ An Award or Honor
+ 1
+
- 1
-
+
+ 1
+
Award or Honor
- Wiley Prize in Biomedical Sciences
-
-
-
-
+ Wiley Prize in Biomedical Sciences
+
+
+
-
-
-
+
+
+
+
-
-
-
-
-
- true
- outreach and community service
- This relates a person or an organization to a role they perform in outreach or community service, as distinct from service to the profession
-
-
- true
- 30
- true
-
-
- 5
-
-
-
- edu.cornell.mannlib.vitro.webapp.edit.n3editing.configuration.generators.AddOutreachProviderRoleToPersonGenerator
-
- hasOutreachActivity
-
-
+
+
- true
- 5
- This relates a grant to the organization awarding the sub-contract for the grant.
+ true
+ 5
+ This relates a grant to the organization awarding the sub-contract for the grant.
subcontracted through
- 60
- grantSubcontractedThrough
+ 60
+ grantSubcontractedThrough
-
+
-
-
+
+
-
-
-
-
+
+ true
+ outreach and community service
+ This relates a person or an organization to a role they perform in outreach or community service, as distinct from service to the profession
+
+
+ true
+ 30
+ true
+
+
+ 5
+
+
+
+ edu.cornell.mannlib.vitro.webapp.edit.n3editing.configuration.generators.AddOutreachProviderRoleToPersonGenerator
+
+ hasOutreachActivity
+
+
- Monaco
492
Monaco
monegasco
2009
euro
Monaco
+
Монако
Monaco
+
+ Monaco
Monaco
Principato di Monaco
Mónaco
33.0
euro
el Principado de Mónaco
+ MCO
موناكو
9999
- MCO
+
من موناكو
euro
Monaco
+
摩纳哥的
euro
Монако
140
+
7.41
7.44
+
+
يورو
la Principauté de Monaco
Population data from the UN Population Division and the data refers to the UN Revision 2008
@@ -7342,6 +7205,7 @@ Contents
Княжество Монако
monegasco
+
монакский
6109.0
@@ -7349,7 +7213,9 @@ Contents
MC
欧 元
43.76
+
+
摩纳哥公国
Monaco
евро
@@ -7357,6 +7223,7 @@ Contents
Mónaco
43.73
موناكو
+
the Principality of Monaco
MNC
millions of US dollars
@@ -7368,22 +7235,11 @@ Contents
19026
166
monégasque
-
-
-
-
-
-
-
-
-
-
-
- Saint Helena, Ascension and Tristan da Cunha
7347
Population data from the UN Population Division and the data refers to the UN Revision 2008
+
39.0
1000 Ha
Manual Estimation
@@ -7397,8 +7253,8 @@ Contents
£
libra de Santa Elena
Manual Estimation
- Sainte-Hélène, Ascension et Tristan de Cunha
جنيه سانت هيلينا
+ Sainte-Hélène, Ascension et Tristan de Cunha
187
Sant'Elena, Ascensione e Tristan de Cunha
Saint_Helena
@@ -7407,12 +7263,14 @@ Contents
2009
1985
圣赫勒拿、阿森松和特里斯坦达库尼亚
+
STH
Sainte-Hélène, Ascension et Tristan de Cunha
207
4.0
2009
سانت هيلينا
+
9999
镑
圣赫勒拿、阿森松和特里斯坦达库尼亚
@@ -7426,19 +7284,25 @@ Contents
سانت هيلينا
19031
Saint Helena, Ascension and Tristan da Cunha
- Santa Elena, Ascension y Tristan da Cunha
+
سانت هيلينا
+ Santa Elena, Ascension y Tristan da Cunha
+
SH
острова Святой Елены, Вознесения и Тристан-да-Кунья
+ Saint Helena, Ascension and Tristan da Cunha
654
- de Sainte-Hélène
SHN
+ de Sainte-Hélène
1000
de Santa Elena
St Helena pound
+
sterlina di Sant'Elena
+
Santa Elena, Ascension y Tristan da Cunha
2009
+
Manual Estimation
圣赫勒拿人/圣赫勒拿
1000 Ha
@@ -7447,47 +7311,42 @@ Contents
Sainte-Hélène, Ascension et Tristan de Cunha
острова Святой Елены, Вознесения и Тристан-да-Кунья
-
-
-
-
-
-
-
-
-
+
- 5
+ 5
- true
+ true
- 40
+ 40
product of
-
- true
+
+ true
- Yugoslav, former Yugoslav Republic of Macedonia
L'ex Repubblica jugoslava di Macedonia
l'ex-République yougoslave de Macédoine
Estimated
1000 Ha
la ex República Yugoslava de Macedonia
من جمهورية مقدونيا اليوغوسلافية السابقة
+
dinaro macedone
جمهورية مقدونيا اليوغوسلافية السابقة
MCD
1013.0
+
+
154
L'ex Repubblica jugoslava di Macedonia
جمهورية مقدونيا اليوغوسلافية السابقة
de la ex República Yugoslava de Macedonia
+ Yugoslav, former Yugoslav Republic of Macedonia
前南斯拉夫的马其顿共和国
@@ -7495,19 +7354,22 @@ Contents
241
2009
бывшая югославская Республика Македония
+
807
L'ex Repubblica jugoslava di Macedonia
- la ex República Yugoslava de Macedonia
+
Macedonia
+ la ex República Yugoslava de Macedonia
0.701
Official data reported on FAO Questionnaires from countries
Data reported on country official publications or web sites (Official) or trade country files.
l'ex-République yougoslave de Macédoine
1992
+
Official data reported on FAO Questionnaires from countries
- de l'ex-République yougoslave de Macédoine
+ de l'ex-République yougoslave de Macédoine
MK
前南斯拉夫的马其顿共和国
9221.0
@@ -7521,114 +7383,104 @@ Contents
Population data from the UN Population Division and the data refers to the UN Revision 2008
42.37
MKD
+
2571.0
- of the former Yugoslav Republic of Macedonia
2009
+ of the former Yugoslav Republic of Macedonia
+
l'ex-République yougoslave de Macédoine
- macedone
2009
+ macedone
代纳尔
The former Yugoslav Republic of Macedonia
The former Yugoslav Republic of Macedonia
1000
- 前南马其顿的
бывшая югославская Республика Македония
+ 前南马其顿的
2009
Calculated
2042.0
2009
- جمهورية مقدونيا اليوغوسلافية السابقة
+ جمهورية مقدونيا اليوغوسلافية السابقة
+
前南斯拉夫的马其顿共和国
la ex República Yugoslava de Macedonia
1000 Ha
denar
40.85
+
2010
- 20.46
دينار
millions of US dollars
+ 20.46
35697
(из/житель) бывшей югославской Республики Македонии
32263
+
9999
-
-
-
-
-
-
-
-
-
-
-
-
- M.E.
M.E. Master of Engineering
+ M.E.
+
-
+
An agent that receives a communication document.
- This relates a communication document to the agent who receives that communication document.
+ This relates a communication document to the agent who receives that communication document.
recipient
- true
- stable
-
+ true
+ stable
+
- recipient
-
- true
+ recipient
+
+ true
http://purl.org/ontology/bibo/
-
-
-
-
-
-
+
-
events
- 4
+ 4
+
- 2010-01-05T10:16:50
+ 2010-01-05T10:16:50
- edu.cornell.mannlib.vitro.webapp.edit.n3editing.configuration.generators.AddAssociatedConceptGenerator
-
- true
-
+ edu.cornell.mannlib.vitro.webapp.edit.n3editing.configuration.generators.AddAssociatedConceptGenerator
+
+ true
+
has subject area
- 20
- 5
+ 20
+ 5
-
+
- true
+ true
- Montserrat
+
Montserrat
دولار شرق الكاريبى
+
Manual Estimation
Monserrat
2009
@@ -7639,12 +7491,14 @@ Contents
1985
di Monserrat
EC dollar (East Caribbean dollar)
+
蒙特塞拉特
- Monserrat
500
+ Monserrat
4927
1000 Ha
+
1000
Data reported on country official publications or web sites (Official) or trade country files.
10.0
@@ -7653,6 +7507,7 @@ Contents
3.0
(из/ житель) Монтсеррата
+
9999
2009
Montserrat
@@ -7660,17 +7515,19 @@ Contents
蒙特塞拉特
Montserrat
10.0
- Montserrat
восточнокарибский доллар
+ Montserrat
6.0
dollaro dei Caraibi orientali
2009
蒙特塞拉特人/蒙特塞拉特的
+
dólar del Caribe oriental
of Montserrat
1000 Ha
Monserrat
1000 Ha
+
Montserrat
مونتسراطت
Montserrat
@@ -7685,186 +7542,206 @@ Contents
Montserrat
MSR
142
+
+ Montserrat
مونتسراطت
东加勒比元
de Montserrat
EC$
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 1
+
+
+
- D.A.
-
D.A. Doctor of Arts
+ D.A.
+
-
+
-
+
keywords
- 10
- conservation
+ 10
+ conservation
-use one freetextKeyword assertion for each keyword or phrase.
+use one freetextKeyword assertion for each keyword or phrase.
- one keyword or phrase per freetextKeyword assertion
- Intended for a word or short phrase only where no instance of a controlled vocabulary can be identified. Can also be used to help in highlighting subtle difference in work.
- 56
-
+ one keyword or phrase per freetextKeyword assertion
+ Intended for a word or short phrase only where no instance of a controlled vocabulary can be identified. Can also be used to help in highlighting subtle difference in work.
+ 56
+
-
-
-
-
-
- Union of Soviet Socialist Republic
- 1985
- 810
-
-
-
- Union_of_Soviet_Socialist_Republic_the
- 0.0
-
- 228
-
- 1000 Ha
- 2009
-
- 2009
-
-
-
- 0.0
-
- 1991
-
- 1000 Ha
-
-
- 2009
-
-
- 0.0
-
1000 Ha
- Union_of_Soviet_Socialist_Republic_the
-
-
-
-
-
+
+ 2009
+
+ 1991
+
+ 0.0
+
+
+
+ 0.0
+
+
+
+
+
+
+ 810
+
+
+ 228
+
+ 2009
+ 0.0
+ Union_of_Soviet_Socialist_Republic_the
+
+ Union of Soviet Socialist Republic
+
+
+
+
+ 2009
+
+
+
+ 1000 Ha
+ 1985
+ 1000 Ha
-
-
+ Union_of_Soviet_Socialist_Republic_the
unpublished
+
-
-
- 1
-
+
+ 1
+
- 1
+ 1
- Unique identifier of a document or collection. This data property is not seen or updated by anyone.
-
+ Unique identifier of a document or collection. This data property is not seen or updated by anyone.
+
identifier
-
-
-
- 5
+
+
+ 5
+
-
-
- 5
-
-
-
+
+
+
+ 5
+
+
+
+
-
-
- An attestation of qualification, competence, or authority issued to an individual by a third party with a relevant or de facto authority or assumed competence to do so.
-
-
- An attestation of qualification, competence, or authority issued to an individual by a third party with a relevant or de facto authority or assumed competence to do so.
+ An attestation of qualification, competence, or authority issued to an individual by a third party with a relevant or de facto authority or assumed competence to do so.
+
+
+
+
+ An attestation of qualification, competence, or authority issued to an individual by a third party with a relevant or de facto authority or assumed competence to do so.
Credential
-
-
-
-
-
-
-
-
-
- 1
-
+
+
+
+
M.N. Master of Nursing
-
- M.N.
+ M.N.
+
-
+
+
+
+
+
+
-
M.Div. Master of Divinity
- M.Div.
+ M.Div.
+
-
+
+
+
+
+
+
- Kyrgyzstan
1991
2009
Population data from the UN Population Division and the data refers to the UN Revision 2008
4578.0
Кыргызстан
- 索 姆
- قيرغيزستان
جمهورية القيرغيز
+ 索 姆
+
+ قيرغيزستان
+
+
+
吉尔吉斯斯坦
سومOوa
-
- Estimated
KGZ
+ Estimated
+
som
Calculated
som
+
+
Кыргызская Республика
Kyrgyzstan
5482.0
+
1000 Ha
kirghiz
@@ -7880,9 +7757,9 @@ use one freetextKeyword assertion for each keyword or phrase.
2009
قيرغيزستان
2009
-
-
10617.3
+
+
Official data reported on FAO Questionnaires from countries
43.24
@@ -7892,25 +7769,29 @@ use one freetextKeyword assertion for each keyword or phrase.
1000 Ha
2009
- the Kyrgyz Republic
19180.0
+ the Kyrgyz Republic
+
19994.9
+
69.28
сом
Official data reported on FAO Questionnaires from countries
кыргызстанский
- millions of US dollars
80.27
Kirguistán
+ millions of US dollars
Kirghizistan
138
+ Kyrgyzstan
2009
la République kirghize
1000
+
kirghiso
som
la República Kirguisa
@@ -7923,81 +7804,76 @@ use one freetextKeyword assertion for each keyword or phrase.
Kyrgyzstan
KYR
Kirghizistan
+
417
- Kyrgyz
吉尔吉斯共和国
+ Kyrgyz
0.598
- 2010
39.17
+ 2010
Repubblica di Kirghizistan
Kirghizistan
-
-
-
-
+
+
+ 1
+
+
+
+
+ D.A.S. Doctor of Applied Science
+ D.A.S.
+
-
-
-
-
-
-
+
-
-
+
-
-
- A paper presented at a conference; optionally collected into a Proceedings or a special Journal issue
+
+
+
+ A paper presented at a conference; optionally collected into a Proceedings or a special Journal issue
-
-
-
- -1
+
+
+
+
+ -1
Conference Paper
- -1
+ -1
-
+
-
-
-
-
-
-
-
- D.A.S.
-
- D.A.S. Doctor of Applied Science
-
-
+
+
+
+
-
-
- Joe
- Smith
+
Smith, Joe
-
+
+
+
-
+
+
GEMET
+
-
- Liberia
9999
la République du Libéria
Libéria
+
ليبري
Liberia
1000
@@ -8006,6 +7882,7 @@ use one freetextKeyword assertion for each keyword or phrase.
liberiano
the Republic of Liberia
dollaro liberiano
+
Liberia
2009
0.3
@@ -8014,6 +7891,7 @@ use one freetextKeyword assertion for each keyword or phrase.
liberiano
доллар
15441
+
LBR
1000 Ha
11137.0
@@ -8044,19 +7922,23 @@ use one freetextKeyword assertion for each keyword or phrase.
876.0
9632.0
-11.52
+
+
利比里亚
Либерия
430
2009
利比里亚
- le Libéria
+
8.55
+ le Libéria
+
-7.37
dólar
- ليبريا
- Liberia
Manual Estimation
+ Liberia
+ ليبريا
@@ -8064,16 +7946,19 @@ use one freetextKeyword assertion for each keyword or phrase.
Liberia
Республика Либерия
- $
- либерийский
dollar
+ Liberia
+ $
millions of US dollars
+ либерийский
2009
+
1000 Ha
2009
ليبريا
+
Liberia
利比里亚的
4.35
@@ -8081,25 +7966,16 @@ use one freetextKeyword assertion for each keyword or phrase.
LR
Либерия
4307
+
+
2010
利比里亚共和国
144
Liberia
-
-
-
-
-
-
-
-
-
-
-
- Namibia
2009
+
Намибия
@@ -8109,15 +7985,15 @@ use one freetextKeyword assertion for each keyword or phrase.
Namibie
namibiano
- 2009
+ 2009
9999
+ 2009
- 2009
11.73
82329.0
-
2009
+
纳米比亚共和国
намибийский
38808.0
@@ -8125,6 +8001,7 @@ use one freetextKeyword assertion for each keyword or phrase.
dollaro namibiano
جمهورية ناميبيا
+
2171.0
Namibia
0.606
@@ -8135,6 +8012,7 @@ use one freetextKeyword assertion for each keyword or phrase.
دولار، راند
兰特
ناميبي
+
-16.96
172
@@ -8150,9 +8028,11 @@ use one freetextKeyword assertion for each keyword or phrase.
ناميبيا
2010
Namibia
+
Calculated
9265.0
Namibia
+ Namibia
ناميبيا
namibien
5063
@@ -8164,208 +8044,217 @@ use one freetextKeyword assertion for each keyword or phrase.
纳米比亚
namibiano
R/N$
+
NA
+
Estimated
+
Namibia
Manual Estimation
+
- Namibian
- dólar namibiano
1000 Ha
- 147
516
- 纳米比亚的
+ dólar namibiano
+ Namibian
+
+ 147
1000 Ha
+ 纳米比亚的
1000
NAM
+
+
la Namibie
Manual Estimation
82429.0
the Republic of Namibia
NAM
-
-
-
-
-
-
-
-
-
-
-
-
+
- stable
http://purl.org/ontology/bibo/
+ stable
+
+
A document that simultaneously contains other documents.
-
- -1
- Short Definition is the Medical Subject Heading (MeSH) definition
+
+
+ -1
+ Short Definition is the Medical Subject Heading (MeSH) definition
-
- -1
-
+
+ -1
+
Collected Document
- Work consisting of collections of previously published works
+ Work consisting of collections of previously published works
-
-
-
- functions as an n-ary predicate
+ functions as an n-ary predicate
-
-
- -1
- -1
+
+
+ -1
+ -1
Relationship
- a reified relationship
+ a reified relationship
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
- Cardiovascular Medicine (division within medicine)
-
+
+
+
+ Cardiovascular Medicine (division within medicine)
+
Division
-
- -1
-
- Definition modified from http://www.thefreedictionary.com/division. It is difficult to tell the difference between a division and a department.
+ -1
+
+
+ Definition modified from http://www.thefreedictionary.com/division. It is difficult to tell the difference between a division and a department.
- An area of corporate activity organized as an administrative or functional unit.
-
+ An area of corporate activity organized as an administrative or functional unit.
+
- -1
+ -1
+
-
-
-
-
- 1
-
M.D. Doctor of Medicine
-
- M.D.
+ M.D.
+
-
+
Newsletter
- -1
-
+ -1
+
-
+
-
+
- -1
+ -1
- Usually issued periodically, prepared by or for a group or institution to present information to a specific audience, often also made available to the press and public
- The Ornithological Newsletter
+ Usually issued periodically, prepared by or for a group or institution to present information to a specific audience, often also made available to the press and public
+ The Ornithological Newsletter
-
-
- 2
+
+
+
+
+
+
+
+
+
+
+
+ 1
+
-
+
contributor
- true
+ true
- 5
+ 5
-
+
-
+
-
+
Clinical Organization
- -1
+ -1
- Any organization with a significant clinical function as a matter of course and not just through occasional clinical roles
-
+ Any organization with a significant clinical function as a matter of course and not just through occasional clinical roles
+
-
- -1
- In the future we may be able to make this a defined class that would not need to be directly asserted, but the consensus seems to be that some organizations "are" clinical and some "are" research organizations and that the distinction is important enough to warrant the additional class and class assertions
+
+ -1
+ In the future we may be able to make this a defined class that would not need to be directly asserted, but the consensus seems to be that some organizations "are" clinical and some "are" research organizations and that the distinction is important enough to warrant the additional class and class assertions
-
-
-
-
-
- An informal organization brought together for the purposes of a project or event.
-
-
- -1
- Team
- -1
-
-
-
-
-
-
- VIVO Outreach Team; VIVO Ontology Team
-
-
C.E. Civil Engineer
-
- C.E.
+ C.E.
+
-
+
+
+
+
+
+
+
+ An informal organization brought together for the purposes of a project or event.
+
+
+ -1
+
+
+ Team
+ -1
+
+
+
+
+
+ VIVO Outreach Team; VIVO Ontology Team
- true
-
+ true
+
- 5
+ 5
issuance of
- 8
-
+ 8
+
-
- true
-
-
-
-
-
-
-
+
+ true
- French Guiana
la Guyane française
1000 Ha
欧 元
@@ -8378,8 +8267,8 @@ use one freetextKeyword assertion for each keyword or phrase.
euro
غوايانا الفرنسية
- 法属圭亚那人/法属圭亚那的
2009
+ 法属圭亚那人/法属圭亚那的
Population data from the UN Population Division and the data refers to the UN Revision 2008
69
9999
@@ -8396,26 +8285,34 @@ use one freetextKeyword assertion for each keyword or phrase.
86
法属圭亚那
+
غوايانا الفرنسية
+
Guiana francese
2009
French Guiana
226.0
Guayana francesa
Guyane française
- 1985
+
Guiana francese
+ 1985
1000 Ha
euro
+
23.0
法属圭亚那
+ French Guiana
8220.0
+
FGU
Data reported on country official publications or web sites (Official) or trade country files.
guyanais
euro
3093
19016
+
+
GUF
EUR or €
Dipartimento della Guiana francese
@@ -8427,123 +8324,132 @@ use one freetextKeyword assertion for each keyword or phrase.
Data reported on country official publications or web sites (Official) or trade country files.
of French Guiana
8353.0
+
2009
Guayana francesa
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
The academic degree of a Thesis
- -1
+ -1
http://purl.org/ontology/bibo/
-
+
- -1
-
- The academic degree of a Thesis.
+ -1
+
+ The academic degree of a Thesis.
Thesis Degree
- Doctor of Philosophy (Ph.D.)
- Different from general academic degree, thesis degree is achieved through one's completed thesis. Thesis is a document submitted in support of candidature for a degree or professional qualification presenting the author's research and findings(http://en.wikipedia.org/wiki/Thesis_or_dissertation).
+ Doctor of Philosophy (Ph.D.)
+ Different from general academic degree, thesis degree is achieved through one's completed thesis. Thesis is a document submitted in support of candidature for a degree or professional qualification presenting the author's research and findings(http://en.wikipedia.org/wiki/Thesis_or_dissertation).
- stable
-
-
- Short Definition take from http://www.thefreedictionary.com/center.
-
-
- A place where a particular activity or service is concentrated.
-
-
-
-
-
-
-
- Alchohol Education Center; Center for Arts and Public Policy; Hearing Research Center
-
- -1
-
- Center
-
- -1
-
+ stable
-
- M.M.E.
M.M.E. Master of Music Education
+ M.M.E.
+
-
+
+
+
+
+ Short Definition take from http://www.thefreedictionary.com/center.
+
+ A place where a particular activity or service is concentrated.
+
+
+
+
+
+ Alchohol Education Center; Center for Arts and Public Policy; Hearing Research Center
+
+ -1
+
+
+ Center
+
+
+ -1
+
+
+
+ 1
+
+
+ http://faostat.fao.org/DesktopDefault.aspx?PageID=377&lang=fr#ancor
2011-07-21
-
- Country area, area of the country including area under inland water bodies, but excluding offshore territorial waters. Possible variations in the data may be due to updating and revisions of the country data and not necessarily to any change of area. Data are expressed in 1000 hectares. http://faostat.fao.org/site/375/default.aspx
+
+ http://faostat.fao.org/DesktopDefault.aspx?PageID=377&lang=es#ancor
+ Country area, area of the country including area under inland water bodies, but excluding offshore territorial waters. Possible variations in the data may be due to updating and revisions of the country data and not necessarily to any change of area. Data are expressed in 1000 hectares. http://faostat.fao.org/site/375/default.aspx
http://faostat.fao.org/DesktopDefault.aspx?PageID=377&lang=en#ancor
+ http://faostat.fao.org/DesktopDefault.aspx?PageID=377&lang=en#ancor
- FAOSTAT http://faostat.fao.org/DesktopDefault.aspx?PageID=377&lang=en#ancor
-
+ FAOSTAT http://faostat.fao.org/DesktopDefault.aspx?PageID=377&lang=en#ancor
countryArea
+
FAOSTAT
- http://faostat.fao.org/DesktopDefault.aspx?PageID=377&lang=fr#ancor
- http://faostat.fao.org/DesktopDefault.aspx?PageID=377&lang=es#ancor
- http://faostat.fao.org/DesktopDefault.aspx?PageID=377&lang=en#ancor
- Indicates the precision of the value of a DateTimeValue instance.
+ Indicates the precision of the value of a DateTimeValue instance.
Date/Time Value Precision
- -1
- -1
+ -1
+ -1
-
+
-
+
-
M.C.S. Master of Computer Science
- M.C.S.
+ M.C.S.
+
-
+
- 5
- true
+ 5
+ true
- true
-
- A possible working example: The conference proceeding of the SPIE was generated from the conference - International Society for Optical Engineering.
-
+ true
+
+ A possible working example: The conference proceeding of the SPIE was generated from the conference - International Society for Optical Engineering.
+
- This relates the proceedings to the conference that produced the proceedings.
- proceedingsOf
+ This relates the proceedings to the conference that produced the proceedings.
+ proceedingsOf
-
- 30
+
+ 30
proceedings of
-
-
-
+
+
+
+
+
+
+
+
- NFIDC
发展中粮食净进口国家
@@ -8566,18 +8472,21 @@ use one freetextKeyword assertion for each keyword or phrase.
pays en développement importateurs nets de produits alimentaires
- WTO Committe on Agriculture
+ WTO Committe on Agriculture
发展中粮食净进口国家
2011
البلدان النامية المستوردة الصافية للأغذية البلدان النامية المستوردة الصافية للأغذية
+ NFIDC
país en desarrollo importador neto de alimentos
развивающиеся страны, являющиеся чистыми импортерами продовольствия
9999
pays en développement importateurs nets de produits alimentaires
развивающиеся страны, являющиеся чистыми импортерами продовольствия
net food-importing developing country
+
+
país en desarrollo importador neto de alimentos
发展中粮食净进口国家
@@ -8590,84 +8499,91 @@ use one freetextKeyword assertion for each keyword or phrase.
401
+
البلدان النامية المستوردة الصافية للأغذية البلدان النامية المستوردة الصافية للأغذية
WTO Committe on Agriculture
+
-
-
-
-
United Nations Statistics Division
-
-
+
+
isSuccessorOf
- United Nations Statistics Division http://unstats.un.org/unsd/methods/m49/m49chang.htm
+ United Nations Statistics Division http://unstats.un.org/unsd/methods/m49/m49chang.htm
http://unstats.un.org/unsd/methods/m49/m49chang.htm
2010-04-15
+ http://unstats.un.org/unsd/methods/m49/m49chgef.htm
- true
+ true
- http://unstats.un.org/unsd/methods/m49/m49chgef.htm
+
+
+ 1
+
+
-
- true
-
-
- Only use this broad role class if no subclasses of role describe the item being classified.
- -1
-
-
-
-
-
-
- -1
+
+ true
+
+
+ Only use this broad role class if no subclasses of role describe the item being classified.
+ -1
+
+
+
+
+ -1
+
+
Role
-
-
-
-
-
+
+
- Only use if no specific subclasses of core:Role describe the role.
+
+
+
+ Only use if no specific subclasses of core:Role describe the role.
+
+
+
- A person's, group's or organization's role in an endeavor
-
-
-
+ A person's, group's or organization's role in an endeavor
- Cape Verde
le Cap-Vert
Cap-Vert
17.21
Repubblica del Capo Verde
Cabo Verde
+ 1000 Ha
403.0
47
- 1000 Ha
+
+
1549.0
2009
escudo
1000 Ha
+
88.0
35
403.0
Республика Кабо-Верде
+
Calculated
CVI
Cape Verdean
+ Cape Verde
Cape_Verde
إسكودو
@@ -8675,12 +8591,14 @@ use one freetextKeyword assertion for each keyword or phrase.
佛得角共和国
佛得角
la República de Cabo Verde
+
Manual Estimation
2009
кабо-вердинский
- Cape Verde
- 0.534
millions of US dollars
+ Cape Verde
+
+ 0.534
Cabo Verde
1000 Ha
@@ -8713,96 +8631,94 @@ use one freetextKeyword assertion for each keyword or phrase.
escudo del Capo Verde
эскудо
Estimated
+
+
+
+
الرأس الأخضر
-
-
+
-25.37
+
+
2009
- 506.0
جمهورية الرأس الأخضر
CV
+ 506.0
Кабо-Верде
佛得角
la République du Cap-Vert
2009
Population data from the UN Population Division and the data refers to the UN Revision 2008
- 1000
Capo Verde
埃斯库多
+ 1000
2009
-
-
-
-
-
-
-
-
-
-
-
Ch.E. Chemical Engineer
-
- Ch.E.
+ Ch.E.
+
-
+
+
+
+
+
+
+
+ 11
+
+
+ 5
+
+ true
+
+ organization within
+ true
+
+
+ Relates an sub-organization to the organization that contains it.
+
+ subOrganizationWithin
date/time precision
- 5
+ 5
- true
-
+ true
+
-
- 5
-
-
-
-
-
-
- 11
-
-
- 5
-
- true
-
- organization within
- true
-
-
- Relates an sub-organization to the organization that contains it.
-
- subOrganizationWithin
+
+ 5
- Timor-Leste
1487.0
+
Timor-Leste
le Timor-Leste
دولار الولايات المتحدة الأمريكية
+
40152
-
东帝汶的
- Population data from the UN Population Division and the data refers to the UN Revision 2008
2010
+ Population data from the UN Population Division and the data refers to the UN Revision 2008
+
Calculated
millions of US dollars
dollar des États-Unis
+
+
+
East_Timor
جمهورية تيمور- ليشتى الديمقراطية
timorense
@@ -8814,8 +8730,8 @@ use one freetextKeyword assertion for each keyword or phrase.
626
1000 Ha
the Democratic Republic of Timor-Leste
-
Timor-Leste
+
Тимор-Лешти
Repubblica democratica di Timor-Leste
US dollar
@@ -8826,151 +8742,166 @@ use one freetextKeyword assertion for each keyword or phrase.
Estimated
+
di Timor-Leste
-
TLS
+
Timor-Leste
1487.0
2009
1134.0
+
+
of Timor-Leste
176
timorais
东帝汶
美 元
- la República Democrática de Timor-Leste
+ Timor-Leste
1000 Ha
1000 Ha
+ la República Democrática de Timor-Leste
1985
375.0
доллар
0.502
558.0
+
dólar de EE.UU.
东帝汶民主共和国
تيمور- ليشتى
Manual Estimation
- 9999
Manual Estimation
+ 9999
Timor-Leste
-
Timor-Leste
+
+
东帝汶
Демократическая Республика Тимор-Лешти
242
- из/житель Тимора-Лешти
la République démocratique du Timor-Leste
+ из/житель Тимора-Лешти
TL
2009
Тимор-Лешти
Timor-Leste
+
1000
Manual Estimation
-
-
-
-
-
-
-
-
-
-
-
+
+
+ 1
+
+
-
-
-
+
+
- -1
- PubMed
-
-
-
+ -1
+ PubMed
+
+
+ Database
- Database
- Short Definition is the Medical Subject Heading (MeSH) definition
- A structured file of information or a set of logically related data stored and retrieved using computer-based means
+
+
+ Short Definition is the Medical Subject Heading (MeSH) definition
+ A structured file of information or a set of logically related data stored and retrieved using computer-based means
+
-
- -1
-
+
+ -1
-
+
- true
+ true
has prerequisite
-
- hasPrerequisite
+
+ hasPrerequisite
- 5
+ 5
valid in
-
- true
+
+ true
-
+
- true
+ true
- 2
+ 2
+
+
+ M.C.E. Master of Civil Engineering
+ M.C.E.
+
+
+
- Jordan
Jordanie
25092.0
约 旦
112
+
8878.0
el Reino Hachemita de Jordania
- 29.18
1000 Ha
+ 29.18
jordano
dinar
+
+
2009
- 2010
Giordania
+ 2010
33.36
+
jordanien
Official data reported on FAO Questionnaires from countries
1025.0
Giordania
+
2009
JOR
Official data reported on FAO Questionnaires from countries
+
39.31
2009
约旦的
+
1985
أردني
Иорданское Хашимитское Королевство
9999
34.96
JOR
+
4053
约 旦
0.681
@@ -8981,6 +8912,7 @@ use one freetextKeyword assertion for each keyword or phrase.
dinaro giordano
Calculated
Jordanian
+ Jordan
the Hashemite Kingdom of Jordan
400
15435
@@ -8994,6 +8926,7 @@ use one freetextKeyword assertion for each keyword or phrase.
Иордания
6316.0
Jordan
+
динар
الأردن
@@ -9004,85 +8937,52 @@ use one freetextKeyword assertion for each keyword or phrase.
Иордания
Jordania
1000 Ha
+
millions of US dollars
giordano
Jordan
الأردن
- Population data from the UN Population Division and the data refers to the UN Revision 2008
- Jordania
JO
+ Jordania
+ Population data from the UN Population Division and the data refers to the UN Revision 2008
2009
иорданский
- 1000
le Royaume hachémite de Jordanie
- Official data reported on FAO Questionnaires from countries
-
-
-
-
-
-
+ 1000
-
-
-
-
+ Official data reported on FAO Questionnaires from countries
-
- M.C.E.
-
- M.C.E. Master of Civil Engineering
-
-
+
+
+
+
-
-
Primate Expert Association
+
+
+
-
-
-
- -1
-
-
-
- -1
-
-
- A meeting for consultation or discussion.
-
-
- core:Seminar and bibo:Conference are very similar.
- Conference
-
-
- A meeting for consultation or discussion.
- 2010 International Congress on Autoimmunity; American Libraries Association 2009
-
-
- http://purl.org/ontology/bibo/
- stable
-
- Sudan
+
0.379
-
+
2009
SD
+
السودان
2009
- динар
1000 Ha
+ динар
Sudanese
21.84
millions of US dollars
@@ -9095,24 +8995,29 @@ use one freetextKeyword assertion for each keyword or phrase.
libra
7497
+ Sudan
Sudán
Судан
SUD
the Republic of the Sudan
+
+
+
soudanais
苏丹的
- 54681.0
-
-
Calculated
- sudanese
+
+ 54681.0
+
+ sudanese
sterlina sudanese
- Soudan
+
SDN
+ Soudan
سوداني
sudanés
Official data reported on FAO Questionnaires from countries
@@ -9135,24 +9040,29 @@ use one freetextKeyword assertion for each keyword or phrase.
le Soudan
Sudan
+
2009
2010
- 40764
- 9999
- 苏 丹
+
苏丹共和国
+ 40764
+ 苏 丹
+
+ 9999
+
1000 Ha
السودان
- суданский
-
+ 22.22
+ 136731.0
the Sudan
- 22.22
- 136731.0
+
+
+ суданский
Судан
206
Estimated
@@ -9166,52 +9076,68 @@ use one freetextKeyword assertion for each keyword or phrase.
Official data reported on FAO Questionnaires from countries
38.57
15490
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+ -1
+
+
+ A meeting for consultation or discussion.
+
+
+ core:Seminar and bibo:Conference are very similar.
+
+ Conference
+
+
+
+ A meeting for consultation or discussion.
+ 2010 International Congress on Autoimmunity; American Libraries Association 2009
+
+ http://purl.org/ontology/bibo/
+ stable
+
+ -1
-
M.Mus. Master of Music
- M.Mus.
+ M.Mus.
+
-
+
+
+
+
+
+
outreach provider role of
-
+
- outreachActivityBy
- 30
- Relates a person to an outreach role they hold.
-
+ outreachActivityBy
+ 30
+ Relates a person to an outreach role they hold.
+
- 5
+ 5
- true
-
+ true
+
- Bhutan
1985
Data reported on country official publications or web sites (Official) or trade country files.
92.13
28.33
- Bhután
15376
+ Bhután
26.71
ngultrum
不 丹
@@ -9221,54 +9147,64 @@ use one freetextKeyword assertion for each keyword or phrase.
Bhoutan
+
+
- Manual Estimation
Bhutan
+ Manual Estimation
1000
2009
3839.4
+
le Bhoutan
- 897
Bhutan
+ 897
+ Бутан
millions of US dollars
- Бутан
2009
BHU
+ Bhutan
1000 Ha
18
507.0
ngultrum
+
1000 Ha
- бутанский
+ بوتان
Estimated
2009
- بوتان
+ бутанский
不丹王国
نغولتروم
ngultrum
9999
el Reino de Bhután
بوتان
- bhoutanais
+ le Royaume du Bhoutan
2009
the Kingdom of Bhutan
- le Royaume du Bhoutan
+ bhoutanais
Data reported on country official publications or web sites (Official) or trade country files.
+
BT
1000 Ha
2009
+
bhutanés
+
مملكة بوتان
+
+
88.77
- 697.0
Бутан
+ 697.0
3839.4
不 丹
Королевство Бутан
@@ -9276,6 +9212,8 @@ use one freetextKeyword assertion for each keyword or phrase.
BTN
1277.0
努尔特鲁姆
+
+
不丹的 / 不丹人
064
Bhután
@@ -9292,72 +9230,68 @@ use one freetextKeyword assertion for each keyword or phrase.
нгултрум
Population data from the UN Population Division and the data refers to the UN Revision 2008
-
-
-
-
-
-
-
-
-
-
-
A.M.T. Master of Arts in Teaching
-
- A.M.T.
+ A.M.T.
+
-
+
-
-
- Legal (department within a company); Use for any non-academic department
-
+ Legal (department within a company); Use for any non-academic department
+
- -1
-
+
+
+ -1
+
- Definition modified from the definition here: http://dictionary.reference.com/browse/department. It is difficult to tell the difference between and department and a division.
+ Definition modified from the definition here: http://dictionary.reference.com/browse/department. It is difficult to tell the difference between and department and a division.
+
Department
-
- A distinct, usually ongoing and specialized unit within a large organization.
+
+ A distinct, usually ongoing and specialized unit within a large organization.
- -1
+ -1
-
+
-
-
+
+
+
+
+
+
+
+
+
+
+
Missouri
-
-
-
-
-
+
+
-
-
-
-
- 1
-
+
+
+
+
+
- Papua New Guinea
Papua Nuova Guinea
de Papua Nueva Guinea
+
159.49
1000 Ha
كينا
2010
+ Papua New Guinea
of Papua New Guinea
1000
@@ -9369,13 +9303,17 @@ use one freetextKeyword assertion for each keyword or phrase.
Calculated
7893.0
1985
+
-
Папуа-Новая Гвинея
+
la Papouasie-Nouvelle-Guinée
+
+
-11.66
Stato indipendente di Papua Nuova Guinea
+
598
@@ -9384,10 +9322,13 @@ use one freetextKeyword assertion for each keyword or phrase.
基 那
Estimated
+
Papua New Guinea
kina
la Papouasie-Nouvelle-Guinée
+
+
6732.0
بابوا غينيا الجديدة
PG
@@ -9408,6 +9349,7 @@ use one freetextKeyword assertion for each keyword or phrase.
بابوا غينيا الجديدة
45286.0
Papua Nueva Guinea
+
PNG
кина
140.87
@@ -9418,17 +9360,19 @@ use one freetextKeyword assertion for each keyword or phrase.
2009
K
Papua Nueva Guinea
+
0.431
巴新的
Папуа-Новая Гвинея
Papua_New_Guinea
巴布亚新几内亚
Papua Nuova Guinea
- papouan-néo-guinéen
Папуа-Новая Гвинея
- Papua Nueva Guinea
- papua
+ papouan-néo-guinéen
+
1150.0
+ papua
+ Papua Nueva Guinea
1000 Ha
Manual Estimation
2009
@@ -9437,68 +9381,63 @@ use one freetextKeyword assertion for each keyword or phrase.
-1.13
millions of US dollars
5555
-
-
-
-
-
-
-
-
-
-
-
+
+
+ 1
+
+
+
+
+
+ stable
+ http://purl.org/ontology/bibo/
+
+ Document Status
+ The status of the publication of a document.
+ The status of a document with respect to its publication. The statuses are represented as individuals of this class. Use the "show all individuals of this class" button on the class control panel to see the currently defined statuses.
+
+
+ submitted; accepted; in-press; published; invited; refereed.
+ -1
+
+ The status of a document with respect to its publication.
+ -1
-
- -1
- -1
-
- Definition obtained here: http://answers.ask.com/Business/Finance/what_is_a_private_company. Examples of private companies found here: http://www.forbes.com/2008/11/03/largest-private-companies-biz-privates08-cx_sr_1103private_land.html
+
+ -1
+ -1
+
+ Definition obtained here: http://answers.ask.com/Business/Finance/what_is_a_private_company. Examples of private companies found here: http://www.forbes.com/2008/11/03/largest-private-companies-biz-privates08-cx_sr_1103private_land.html
- Publix Super Markets; Ernst & Young; PricewaterhouseCoopers
- A private company is one that is privately-owned, and thus, is not publicly-traded in the stock market. Members of the general public cannot purchase stock in a private company unless that company chooses to go public and become a public company.
+ Publix Super Markets; Ernst & Young; PricewaterhouseCoopers
+ A private company is one that is privately-owned, and thus, is not publicly-traded in the stock market. Members of the general public cannot purchase stock in a private company unless that company chooses to go public and become a public company.
Private Company
-
-
-
-
- stable
- http://purl.org/ontology/bibo/
-
- Document Status
- The status of the publication of a document.
- The status of a document with respect to its publication. The statuses are represented as individuals of this class. Use the "show all individuals of this class" button on the class control panel to see the currently defined statuses.
-
-
- submitted; accepted; in-press; published; invited; refereed.
- -1
-
- The status of a document with respect to its publication.
- -1
+
- Eritrea
Érythrée
1000 Ha
+
2009
+
ERN
Stato d'Eritrea
-
- Manual Estimation
+ 1993
+
- 纳克法
+ Manual Estimation
34927
- 1993
+ 纳克法
накфа
-
+
l'Érythrée
nakfa
@@ -9508,12 +9447,15 @@ use one freetextKeyword assertion for each keyword or phrase.
Estimated
2009
+
Eritrea
+
2009
Eritrea
厄立特里亚
232
millions of US dollars
+ Eritrea
ناكفا
@@ -9524,6 +9466,7 @@ use one freetextKeyword assertion for each keyword or phrase.
nakfa
厄立特里亚
eritreo
+
إريتريا
nakfa
10100.0
@@ -9531,6 +9474,7 @@ use one freetextKeyword assertion for each keyword or phrase.
7592.0
+
érythréen
Eritrea
@@ -9541,30 +9485,35 @@ use one freetextKeyword assertion for each keyword or phrase.
Eritrea
l'Érythrée
1873.0
- Eritrean
+
2009
+ Eritrean
+
Эритрея
eritreo
1000 Ha
- Эритрея
Эритрея
+ Эритрея
ERI
إريتريي
11760.0
9999
+
Eritrea
+
Manual Estimation
إريتريا
Population data from the UN Population Division and the data refers to the UN Revision 2008
+
2009
36.44
- إريتريا
- 1000 Ha
2810
+ 1000 Ha
+ إريتريا
5073.0
@@ -9574,90 +9523,77 @@ use one freetextKeyword assertion for each keyword or phrase.
1000
厄立特里亚的
+
178
18.02
-
-
-
-
-
-
-
-
-
-
-
-
-
- B.S.
B.S. Bachelor of Science
+ B.S.
+
-
-
-
-
-
-
+
- -1
-
-
-
+ -1
+
+
+
+
+
+
-
-
- An academic degree at any level, both as reported by individuals for employment and as offered by academic degree programs.
-
+
+
+ An academic degree at any level, both as reported by individuals for employment and as offered by academic degree programs.
+
Academic Degree
-
-
- This list may have multiple abbreviations for some degrees.
-
- B.A. Bachelor of Arts
+
+ This list may have multiple abbreviations for some degrees.
+
+ B.A. Bachelor of Arts
+
- -1
-
-
-
-
-
-
-
-
+ -1
+
+
+
+
+
- true
- 40
-
+ true
+ 40
+
-
+
- edu.cornell.mannlib.vitro.webapp.edit.n3editing.configuration.generators.AddGrantRoleToPersonGenerator
+ edu.cornell.mannlib.vitro.webapp.edit.n3editing.configuration.generators.AddGrantRoleToPersonGenerator
- true
+ true
principal investigator on
- 5
-
+ 5
+
-
-
Primatia Africana
-
-
+
+
+
+
+
+
+
+
- Turkmenistan
تركمانستان
0.669
Turkmenistan
@@ -9666,16 +9602,19 @@ use one freetextKeyword assertion for each keyword or phrase.
le Turkménistan
1000 Ha
9999
+
Туркменистан
1000
Туркменистан
- 15047
+
Manual Estimation
+ 15047
+
Estimated
تركمانى
- Turkmenistan
Turkmenistán
+ Turkmenistan
19947.0
Manual Estimation
turcomano
@@ -9684,6 +9623,7 @@ use one freetextKeyword assertion for each keyword or phrase.
32610.0
52.44
+
le Turkménistan
TKM
20526
@@ -9711,9 +9651,12 @@ use one freetextKeyword assertion for each keyword or phrase.
2009
35.14
+
1991
213
+
+
5110.0
مانات
@@ -9723,11 +9666,12 @@ use one freetextKeyword assertion for each keyword or phrase.
1000 Ha
تركمانستان
- Repubblica di Turkmenistan
46993.0
millions of US dollars
+ Repubblica di Turkmenistan
Calculated
+
2010
Turkmenistan
Turkmenistan
@@ -9737,74 +9681,74 @@ use one freetextKeyword assertion for each keyword or phrase.
Туркменистан
manat
Turkmenistán
+ Turkmenistan
土库曼斯坦
turkmène
Turkmenistan
+
Turkmenistan
+
42.8
-
+ 795
turcomanno
- 795
-
-
-
-
-
-
+
+
+
+ Connecticut
+
+
-
-
-
+
+
+
+
+
- One of a number of areas or communities having their own governments and forming a federation under a sovereign government, as in the US.
- -1
-
- -1
-
+ One of a number of areas or communities having their own governments and forming a federation under a sovereign government, as in the US.
+ -1
+
+ -1
+
- Source of the Short Definition: http://www.thefreedictionary.com/state.
+ Source of the Short Definition: http://www.thefreedictionary.com/state.
State Or Province
-
- Minnesota; Michigan; Indiana; New York; Quebec; Manitoba; Ontario
-
-
- Connecticut
-
-
-
-
-
-
-
+
+ Minnesota; Michigan; Indiana; New York; Quebec; Manitoba; Ontario
- Ending page number within a continuous page range.
+ Ending page number within a continuous page range.
- 1
-
- 50
+ 1
+
+ 50
Ending page number within a continuous page range.
end page
-
+
-
- stable
+
+ stable
http://purl.org/ontology/bibo/
+
+ AeEng. Aeronautical Engineer
+ AeEng.
+
+
+
+
- United States Virgin Islands
de Islas Vírgenes (EE.UU.)
Isole Vergini americane
35.0
@@ -9815,6 +9759,7 @@ use one freetextKeyword assertion for each keyword or phrase.
Population data from the UN Population Division and the data refers to the UN Revision 2008
Isole Vergini americane
Îles Vierges américaines
+
las Islas Vírgenes (EE.UU.)
Isole Vergini degli Stati Uniti
1000 Ha
@@ -9824,25 +9769,28 @@ use one freetextKeyword assertion for each keyword or phrase.
35.0
VIR
delle Isole Vergini americane
+
من جزر فيرجين التابعة للولايات المتحدة
des Îles Vierges américaines
美 元
美属维尔京群岛人/美属维尔京群岛的
Виргинские острова (США)
美属维尔京群岛
+ Американские Виргинские острова
United States Virgin Islands
VI
- Американские Виргинские острова
+
dollaro USA
United States Virgin Islands
- 850
- Data reported on country official publications or web sites (Official) or trade country files.
+
2009
+ Data reported on country official publications or web sites (Official) or trade country files.
+ 850
240
美属维尔京群岛
Data reported on country official publications or web sites (Official) or trade country files.
-
美属维尔京群岛
+
جزر فيرجين التابعة للولايات المتحدة
UVI
جزر فيرجين التابعة للولايات المتحدة
@@ -9852,328 +9800,323 @@ use one freetextKeyword assertion for each keyword or phrase.
19038
1000 Ha
1000 Ha
+
+ United States Virgin Islands
+
2009
1000
- (из/ житель) Американских Виргинских островов
of the United States Virgin Islands
+ (из/ житель) Американских Виргинских островов
les Îles Vierges américaines
Islas Vírgenes (EE.UU.)
Виргинские острова США
جزر فيرجين التابعة للولايات المتحدة
+
Islas Vírgenes (EE.UU.)
4.0
US dollar
2009
-
-
-
-
-
-
-
-
-
-
- AeEng.
-
- AeEng. Aeronautical Engineer
-
-
+
- Australia and New Zealand
- Australia and New Zealand
- 9999
- Австралия и Новая Зеландия
- 澳大利亚和新西兰
- 澳大利亚和新西兰
- 84958
- Australia y Nueva Zelandia
- أستراليا ونيوزيلندا
-
- Australia and New Zealand
- Австралия и Новая Зеландия
- Australia e Nuova Zelanda
- Australia y Nueva Zelandia
- أستراليا ونيوزيلندا
- Australia and New Zealand
- Australia e Nuova Zelanda
- Австралия и Новая Зеландия
5501
- Australie et Nouvelle-Zélande
- Australie et Nouvelle-Zélande
- أستراليا ونيوزيلندا
- Australia y Nueva Zelandia
-
- 1985
- 053
- Australia e Nuova Zelanda
- 澳大利亚和新西兰
- Australie et Nouvelle-Zélande
-
-
-
+ Australia e Nuova Zelanda
+ Australia y Nueva Zelandia
+ 澳大利亚和新西兰
+ Australie et Nouvelle-Zélande
+ Australia and New Zealand
+
+ Australia and New Zealand
-
-
-
+ 澳大利亚和新西兰
+
+ 84958
+ Australia y Nueva Zelandia
+ 1985
+ Australie et Nouvelle-Zélande
+
+ Australia and New Zealand
+
-
-
+ Australia e Nuova Zelanda
+ 053
+
+ Австралия и Новая Зеландия
+ 澳大利亚和新西兰
+
+ Австралия и Новая Зеландия
+ Австралия и Новая Зеландия
+ Australia e Nuova Zelanda
+
+
+ أستراليا ونيوزيلندا
+
+ Australia y Nueva Zelandia
+ أستراليا ونيوزيلندا
+ 9999
+ Australie et Nouvelle-Zélande
+ أستراليا ونيوزيلندا
+
+ Australia and New Zealand
-
- true
- 20
+
+ true
+ 20
currently headed by
- true
+ true
- 5
+ 5
-
+
-
+
+
+
+
+
+
+
+
+
+
+
-
+
+ http://unstats.un.org/unsd/methods/m49/m49chgef.htm
- true
+ true
-
+
United Nations Statistics Division
isPredecessorOf
2010-04-15
- United Nations Statistics Division http://unstats.un.org/unsd/methods/m49/m49chang.htm
+ United Nations Statistics Division http://unstats.un.org/unsd/methods/m49/m49chang.htm
http://unstats.un.org/unsd/methods/m49/m49chang.htm
- http://unstats.un.org/unsd/methods/m49/m49chgef.htm
+
+
+ 1
+
+
http://purl.org/ontology/bibo/
Decision
- unstable
- The written determination of a case, motion or claim by a court or tribunal
+ unstable
+ The written determination of a case, motion or claim by a court or tribunal
- -1
+ -1
- -1
-
+ -1
+
-
+
A document containing an authoritative determination (as a decree or judgment) made after consideration of facts or law.
-
-
- 1
-
-
- 5
+ 5
- true
-
-
+ true
+
+
- true
+ true
in event series
-
+
- 5
- 5
+ 5
+ 5
- true
-
+ true
+
-
+
has global citation frequency
- true
- A property linking a publication entity to the property c40:GlobalCitationCount that specify how many times a work has been cited by others, according to a particular information source on a particular date.
-
+ true
+ A property linking a publication entity to the property c40:GlobalCitationCount that specify how many times a work has been cited by others, according to a particular information source on a particular date.
+
-
-
- 1
-
-
-
- B.S.Ed.
B.S.Ed. Bachelor of Science in Education
+ B.S.Ed.
+
-
+
An audio-visual document; film, video, and so forth.
- -1
- stable
-
-
+ -1
+
+ stable
+
+
Audio-Visual Document
+
- -1
-
+ -1
+
+
-
-
- Audiovisual recording in any format
+ Audiovisual recording in any format
http://purl.org/ontology/bibo/
- film; video; Blu-ray
-
-
+ film; video; Blu-ray
+
- A location having coordinates in geographic space.
-
-
- -1
+ A location having coordinates in geographic space.
+
+
+ -1
- -1
- Removed the word "stable" because disputed territories from geopolitical.owl are included. This could imply that the geographic coordinates could change. This definition was originally in core:Geographic Location. I simply copied the definition from there. I think core:Geographic Location and core:Geographic Region are both the same and only one is needed. There is also geopolitical.owl:geographical_region which further causes confusion.
+ -1
+ Removed the word "stable" because disputed territories from geopolitical.owl are included. This could imply that the geographic coordinates could change. This definition was originally in core:Geographic Location. I simply copied the definition from there. I think core:Geographic Location and core:Geographic Region are both the same and only one is needed. There is also geopolitical.owl:geographical_region which further causes confusion.
- Use subclasses of core:Geographic Region subclasses instead of this class if possible.
+ Use subclasses of core:Geographic Region subclasses instead of this class if possible.
Geographic Region
-
+
-
- Micronesia
-
- Микронезия
- 84969
- Микронезия
- Micronesia
- 1991
-
- Micronesia
- ميكرونيزيا
- Micronesia
-
- 5503
- Micronesia
-
- ميكرونيزيا
- Micronesia
- 密克罗尼西亚
- Micronesia
- Micronesia
-
- 057
- 密克罗尼西亚
- Micronesia
- ميكرونيزيا
-
- 4805
- 9999
- Micronesia
- 密克罗尼西亚
- Micronésie
- Micronésie
- Micronésie
- Микронезия
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
-
-
-
-
- The
- SPCA
- SPCA, The 2
+
+ 4805
+ Micronesia
+ Micronesia
+ ميكرونيزيا
+ 1991
+
+ Микронезия
+
+
+ 密克罗尼西亚
+ ميكرونيزيا
+ Микронезия
+
+ Micronesia
+
+
+ 9999
+
+ 84969
+ Микронезия
+ 057
+ ميكرونيزيا
+ Micronesia
+ 密克罗尼西亚
+
+ Micronésie
+ Micronesia
+ Micronésie
+ 密克罗尼西亚
+ Micronesia
+
+
+ Micronesia
+ 5503
+
+ Micronesia
+
+
+ Micronésie
+ Micronesia
+ Micronesia
+
+
+
+
+ SPCA, The 2
+
+
+
-
+
+
FileByteStream
- -1
- -1
+ -1
+ -1
-
+
-
+
-
+
http://www.un.org/Depts/Cartographic/map/profile/world00.pdf
hasBorderWith
- true
+ true
2010-05-01
- United Nations cartographic maps http://www.un.org/Depts/Cartographic/map/profile/world00.pdf
+ United Nations cartographic maps http://www.un.org/Depts/Cartographic/map/profile/world00.pdf
-
+
United Nations cartographic maps
B.A.E. Bachelor of Arts in Education
-
- B.A.E.
+ B.A.E.
+
-
+
-
-
+
+
- National Institute of Health (NIH)
+
+ National Institute of Health (NIH)
+
-
-
+
Funding Organization
- -1
- A defined class of organizations that fund Grants.
-
- -1
-
-
-
+ -1
+ A defined class of organizations that fund Grants.
+
+ -1
+
+
@@ -10181,8 +10124,12 @@ use one freetextKeyword assertion for each keyword or phrase.
+
+ 1
+
+
+
- Oman
Oman
16.65
2009
@@ -10200,8 +10147,8 @@ use one freetextKeyword assertion for each keyword or phrase.
OMA
rial omanita
阿曼的
-
سلطنة عمان
+
omano
30950.0
@@ -10216,17 +10163,19 @@ use one freetextKeyword assertion for each keyword or phrase.
512
1985
Omán
+
1000 Ha
Оман
52.0
millions of US dollars
46114.0
- omanais
1000 Ha
+ omanais
阿 曼
26.39
- 15465
阿曼苏丹国
+ 15465
+
la Sultanía de Omán
عمان
5345
@@ -10234,108 +10183,123 @@ use one freetextKeyword assertion for each keyword or phrase.
OMN
阿曼里亚尔
+
عماني
Оман
l'Oman
Oman
+
Sultanato dell'Oman
omaní
Oman
阿 曼
- Omán
+
2009
+ Omán
+
ريال عماني
Султанат Оман
Official data reported on FAO Questionnaires from countries
2009
Manual Estimation
+
+
Oman
Population data from the UN Population Division and the data refers to the UN Revision 2008
2009
+
+
1000 Ha
omani rial
+
+ Oman
OM
30950.0
Oman
риал оманский
Oman
-
-
-
-
-
-
-
-
-
-
-
+
+
+ 1
+
+
+
+
+
+
+
Oklahoma
-
-
-
-
-
+
+
-
-
-
-
- 1
-
+
+
+
+
+
-
- Provides the URL for a hyperlink in VIVO.
+
+ Provides the URL for a hyperlink in VIVO.
-
-
+
+
link URI
+
+
+
+
+
+
+
+
+
+
+
+ 1
+
+
+
+
+ B.Pharm. Bachelor of Pharmacy
+ B.Pharm.
+
+
+
+
- Definition take from here: http://en.wikipedia.org/wiki/Student_society
+ Definition take from here: http://en.wikipedia.org/wiki/Student_society
-
- -1
+
+ -1
-
- -1
+
+ -1
Student Organization
-
- Dancin' Gators
- A student organization is an organization, operated by students at a university, whose membership normally consists only of students.
+
+ Dancin' Gators
+ A student organization is an organization, operated by students at a university, whose membership normally consists only of students.
-
-
- B.Pharm. Bachelor of Pharmacy
- B.Pharm.
-
-
-
-
-
-
-
-
- Saint-Martin (French Part)
652
- 158873
Saint-Martin (French Part)
+
كوراساو
Saint-Martin (Parte francese)
+
Saint-Martin (Partie française)
9999
كوراساو
@@ -10343,63 +10307,69 @@ use one freetextKeyword assertion for each keyword or phrase.
Saint-Martin (French Part)
Saint-Martin (French Part)
كوراساو
- Saint-Martin (Parte francese)
Saint-Martin (Partie française)
+ Saint-Martin (Parte francese)
Saint-Martin (Parte francesa)
+
Saint-Martin (Parte francesa)
+
圣马丁(法属部分)
2007
Saint-Martin (Partie française)
圣马丁(法属部分)
- 圣马丁(法属部分)
- Saint-Martin (Parte francesa)
-
-
-
-
-
-
+ Saint-Martin (French Part)
+ 圣马丁(法属部分)
+
+ 158873
+ Saint-Martin (Parte francesa)
+
-
identity
- 200
- properties holding unique and non-unique identifiers, names, and other identification information
+ 200
+
+ properties holding unique and non-unique identifiers, names, and other identification information
- 2009-12-28T09:16:01
+ 2009-12-28T09:16:01
-
B.A. Bachelor of Arts
- B.A.
+ B.A.
+
-
+
+
+
+ 1
+
+
-
-
-
Licensed Primate Expert4
+
+
+
+
-
- Oceania
Oceanía
Океания
أوسيانيا
大洋洲
+
Oceania
Oceania
- Océanie
+ Océanie
+
9999
Oceania
Oceania
@@ -10407,16 +10377,20 @@ use one freetextKeyword assertion for each keyword or phrase.
84968
أوسيانيا
+
Oceanía
+
009
+
أوسيانيا
Oceanía
Oceania
+
大洋洲
5296
@@ -10427,88 +10401,61 @@ use one freetextKeyword assertion for each keyword or phrase.
5500
大洋洲
Океания
+
+ Oceania
Océanie
+
+
Oceania
Океания
+
1991
-
-
-
-
-
-
-
-
-
-
- true
+ true
rooms
- 5
- room
+ 5
+ room
-
+
- Relates a building to the rooms within that building.
- true
+ Relates a building to the rooms within that building.
+ true
-
-
+
+
-
-
-
-
- URLLink
-
- http://info.slis.indiana.edu/~katy/
- -1
-
-
- -1
-
- Uniform Resource Locator (URL) specifies where an identified resource is available and the mechanism for retrieving it.
-
- The full URL.
-
-
-
-
-
-
-
-
-
-
+
+
-
+
- 50
- 1
+ 50
+ 1
primary email
- World
-
+
+
United Nations Statistics Department
+ World
World
Monde
@@ -10521,8 +10468,8 @@ use one freetextKeyword assertion for each keyword or phrase.
-
+
@@ -10539,14 +10486,14 @@ use one freetextKeyword assertion for each keyword or phrase.
-
+
-
весь мир
+
-
+
http://unstats.un.org/unsd/methods/m49/m49regin.htm
84960
@@ -10554,6 +10501,7 @@ use one freetextKeyword assertion for each keyword or phrase.
9999
+
@@ -10569,6 +10517,7 @@ use one freetextKeyword assertion for each keyword or phrase.
5000
+
Mundo
@@ -10580,8 +10529,8 @@ use one freetextKeyword assertion for each keyword or phrase.
Mundo
-
世界
+
World
@@ -10601,9 +10550,9 @@ use one freetextKeyword assertion for each keyword or phrase.
весь мир
-
- United Nations Statistics Department http://unstats.un.org/unsd/methods/m49/m49regin.htm
+
+ United Nations Statistics Department http://unstats.un.org/unsd/methods/m49/m49regin.htm
العالم
@@ -10628,21 +10577,21 @@ use one freetextKeyword assertion for each keyword or phrase.
- Mundo
+
-
- العالم
-
+ Mundo
+
+ العالم
-
+
@@ -10651,29 +10600,30 @@ use one freetextKeyword assertion for each keyword or phrase.
-
+
- Monde
-
+
+ Monde
+
-
+
- Monde
+ Monde
-
+
Mondo
@@ -10701,9 +10651,9 @@ use one freetextKeyword assertion for each keyword or phrase.
العالم
-
+
Mondo
@@ -10715,11 +10665,11 @@ use one freetextKeyword assertion for each keyword or phrase.
-
-
-
-
+
+
+
+
@@ -10729,16 +10679,12 @@ use one freetextKeyword assertion for each keyword or phrase.
2007
-
-
-
-
- Guinea
- GUI
franco
+ GUI
+
Population data from the UN Population Division and the data refers to the UN Revision 2008
1000 Ha
@@ -10755,18 +10701,19 @@ use one freetextKeyword assertion for each keyword or phrase.
Guinean
24586.0
франк
- 10069.0
franco della Guinea
+ 10069.0
Guinea
- Calculated
+
+ Calculated
franc
Estimated
Guinea
- 15419
+ 15419
1000
guinéen
@@ -10776,14 +10723,17 @@ use one freetextKeyword assertion for each keyword or phrase.
Manual Estimation
+
1985
+
+
غينيا
Guinea
غيني
2009
4103.0
-
Data reported on country official publications or web sites (Official) or trade country files.
+
14240.0
2009
Гвинея
@@ -10792,21 +10742,25 @@ use one freetextKeyword assertion for each keyword or phrase.
la Guinée
3423
9999
+ Guinea
جمهورية غينيا
324
غينيا
- 2010
12.67
+ 2010
Guinea
- the Republic of Guinea
millions of US dollars
+ the Republic of Guinea
-15.08
Guinea
7.2
- Guinea
- 2009
+
几内亚
+ 2009
+ Guinea
0.34
+
+
几内亚共和国
GN
@@ -10814,74 +10768,78 @@ use one freetextKeyword assertion for each keyword or phrase.
فرنك
Manual Estimation
Гвинея
- Guinée
-7.64
+ Guinée
Guinea
+
1000 Ha
GIN
+
Гвинейская Республика
la República de Guinea
+
106
法 郎
-
-
-
-
-
-
-
-
-
-
-
- B.R.E.
-
B.R.E. Bachelor of Religious Education
+ B.R.E.
+
-
+
+
+
+
+
+
- 90
- An International Standard Serial Number (ISSN) is a unique eight-digit number used to identify a periodical publication. The eissn is an issn for electronic periodicals.
+ 90
+ An International Standard Serial Number (ISSN) is a unique eight-digit number used to identify a periodical publication. The eissn is an issn for electronic periodicals.
Electronic International Standard Serial Number (EISSN)
-
+
- stable
+ stable
http://purl.org/ontology/bibo/
- eissn stands for Electronic International Standard Serial Number. source: http://www.definition-of.com/EISSN
+ eissn stands for Electronic International Standard Serial Number. source: http://www.definition-of.com/EISSN
The electronic ISSN number of a periodical.
-
+
-
+
+
+
+
+
+
- Brazil
9999
193734.0
+
la République fédérative du Brésil
- -33.74
Brasile
+ -33.74
2009
1000 Ha
real brasiliano
+
5.26
37
0.699
brasiliano
риал
+
brasileño
Brazil
@@ -10890,19 +10848,20 @@ use one freetextKeyword assertion for each keyword or phrase.
076
le Brésil
brésilien
- 巴西的 / 巴西人
برازيلي
+ 巴西的 / 巴西人
21
+
the Federative Republic of Brazil
264500.0
- 2009
الجمهورية الاتحادية البرازيلية
Бразилия
+ 2009
Бразилия
ريالهئال
real
- -29.3
+ -29.3
1000
Brazilian
@@ -10913,28 +10872,35 @@ use one freetextKeyword assertion for each keyword or phrase.
巴 西
845942.0
1070
+
Manual Estimation
巴 西
(жен.) бразильянка
+ Brazil
البرازيل
巴西联邦共和国
Population data from the UN Population Division and the data refers to the UN Revision 2008
Brasil
Brazil
+
+
2009
-
- R$
Data reported on country official publications or web sites (Official) or trade country files.
+
+ R$
+
Brésil
2009
+
Федеративная Республика Бразилия
Brasile
+
millions of US dollars
雷亚尔
@@ -10952,6 +10918,7 @@ use one freetextKeyword assertion for each keyword or phrase.
-73.99
1000 Ha
+
البرازيل
el Brasil
@@ -10959,20 +10926,8 @@ use one freetextKeyword assertion for each keyword or phrase.
1000 Ha
851488.0
1594490.0
-
-
-
-
-
-
-
-
-
-
-
- Economic Community of West African States
Communauté économique des États de l'Afrique de l'Ouest
@@ -10984,97 +10939,92 @@ use one freetextKeyword assertion for each keyword or phrase.
Comunidad Económica de los Estados del África Occidental
Economic Community of West African States
- CEDEAO
+ CEDEAO
+
西非国家经济共同体
+
- Communauté économique des États de l'Afrique de l'Ouest
1985
-
西非国家经济共同体
+
+
-
+ Communauté économique des États de l'Afrique de l'Ouest
Economic Community of West African States
+
+
Comunidad Económica de los Estados del África Occidental
48092
+ Economic Community of West African States
Экономическое сообщество государств Западной Африки
الجماعة الاقتصادية لدول غرب أفريقيا
-
-
-
-
- true
-
+ true
+
-
-
+
+
associated role
- 5
-
-
-
-
-
+ 5
- B.A.E.
-
B.A.E. Aeronautical Engineering
+ B.A.E.
+
-
-
-
-
-
-
+
- Institute for Fundamental Theory
+ Institute for Fundamental Theory
-
+
Institute
- An Institute normally has a research focus but may also fulfill instructional or outreach roles.
- -1
-
-
+ An Institute normally has a research focus but may also fulfill instructional or outreach roles.
+ -1
+
+
- -1
+ -1
- Latvia
لات
+
Official data reported on FAO Questionnaires from countries
Latvian
+
the Republic of Latvia
1000 Ha
Calculated
+
6456.0
+
55.67
- 2249.0
LVL
+ 2249.0
la República de Letonia
+
lettone
拉脱维亚的
Lettonia
@@ -11086,26 +11036,31 @@ use one freetextKeyword assertion for each keyword or phrase.
拉脱维亚
LAT
- 428
- Repubblica di Lettonia
+
Lettonia
+ 428
+
+ Repubblica di Lettonia
لاتفي
- латвийский
lat
+ латвийский
+
+
2009
拉脱维亚共和国
Population data from the UN Population Division and the data refers to the UN Revision 2008
- لاتفيا
拉脱维亚
+ لاتفيا
12103
2009
6218.0
1000 Ha
拉 特
- 9999
- Letonia
- letón
58.08
+
+ Letonia
+ 9999
+ letón
millions of US dollars
0.769
@@ -11113,8 +11068,8 @@ use one freetextKeyword assertion for each keyword or phrase.
Letonia
Estimated
lats
- la Lettonie
Латвия
+ la Lettonie
letton
la République de Lettonie
Latvia
@@ -11128,16 +11083,18 @@ use one freetextKeyword assertion for each keyword or phrase.
Latvia
119
2009
- Lettonie
Латвия
Official data reported on FAO Questionnaires from countries
2009
28.24
+ Lettonie
+ Latvia
Latvia
20.97
лат
Official data reported on FAO Questionnaires from countries
140
+
1833.0
Латвийская Республика
@@ -11145,51 +11102,52 @@ use one freetextKeyword assertion for each keyword or phrase.
2009
26195.0
-
-
-
-
-
-
-
-
-
-
-
+
+
+ http://cit.cprnell.edu
+ CIT Homepage
+
+
+
+
+
+
- 55
+ 55
seating capacity
- Number of people who can be seated in a specific room, by physical space available or limitations set by law.
+ Number of people who can be seated in a specific room, by physical space available or limitations set by law.
- 1
-
- 50
- definition modified from: source (http://en.wikipedia.org/wiki/Seating_capacity).
-
+ 1
+
+ 50
+ definition modified from: source (http://en.wikipedia.org/wiki/Seating_capacity).
+
-
+
- Ecuador
la República del Ecuador
Ecuadorian
إكوادور
جمهورية إكوادور
+ إكوادور
Ecuador
- إكوادور
+
Estimated
+
la République de l'Équateur
Ecuador
1000 Ha
1985
7534.0
Республика Эквадор
+
Ecuador
0.695
2009
@@ -11199,17 +11157,19 @@ use one freetextKeyword assertion for each keyword or phrase.
Population data from the UN Population Division and the data refers to the UN Revision 2008
25637.0
Official data reported on FAO Questionnaires from countries
- 2009
+
Calculated
+ 2009
Manual Estimation
ecuatoriano
- millions of US dollars
Ecuador
+ доллар
dollar des États-Unis
the Republic of Ecuador
+
dólar de EE.UU.
- доллар
+ millions of US dollars
9999
-75.22
@@ -11217,13 +11177,16 @@ use one freetextKeyword assertion for each keyword or phrase.
Équateur
ECU
2009
- эквадорский
+
218
+ эквадорский
+
15404
دولار الولايات المتحدة الأمريكية
2010
57249.0
-5.01
+
EC
@@ -11235,6 +11198,7 @@ use one freetextKeyword assertion for each keyword or phrase.
Эквадор
73
厄瓜多尔
+
1.66
l'Équateur
@@ -11243,76 +11207,65 @@ use one freetextKeyword assertion for each keyword or phrase.
美 元
2009
Ecuador
- 24836.0
Official data reported on FAO Questionnaires from countries
+ 24836.0
Эквадор
el Ecuador
ecuadoriano
1000 Ha
US dollar
+ Ecuador
13625.0
- Repubblica dell'Ecuador
+ Repubblica dell'Ecuador
+
dollaro USA
équatorien
+
厄瓜多尔的
Ecuador
-
-
-
-
-
-
-
-
-
-
-
-
+
- The digital file (or physical equivalent), if available after the conference, vs. the act of attending/presenting: use ConferencePresentation for information about date/time/location/name of the event where the poster was presented
-
+ The digital file (or physical equivalent), if available after the conference, vs. the act of attending/presenting: use ConferencePresentation for information about date/time/location/name of the event where the poster was presented
+
Conference Poster
- -1
-
- -1
+ -1
+
+ -1
- B.A.E.
-
B.A.E. Bachelor of Art Education
+ B.A.E.
+
-
-
-
-
-
-
+
- Venezuela (Bolivarian Republic of)
فنزويلا (جمهورية .. البوليفارية)
2009
15509
0.696
+
vénézuélien
1000 Ha
боливар
委内瑞拉的
263
+
28583.0
-59.81
- Venezuela (República Bolivariana de)
- 862
+
1000 Ha
+ 862
+ Venezuela (República Bolivariana de)
venezuelano
millions of US dollars
VEN
@@ -11321,14 +11274,19 @@ use one freetextKeyword assertion for each keyword or phrase.
2010
Venezuela (Repubblica bolivariana di)
1000 Ha
+
21400.0
венесуэльский
+
Manual Estimation
委内瑞拉 (玻利瓦尔共和国)
Calculated
+
بوليفار
Venezuela
+
+
Venezuela (República Bolivariana de)
جمهورية فنزويلا البوليفارية
@@ -11351,8 +11309,8 @@ use one freetextKeyword assertion for each keyword or phrase.
la República Bolivariana de Venezuela
bolivar
玻利瓦尔
- Repubblica bolivariana di Venezuela
-73.37
+ Repubblica bolivariana di Venezuela
VEN
委内瑞拉玻利瓦尔共和国
@@ -11363,61 +11321,49 @@ use one freetextKeyword assertion for each keyword or phrase.
the Bolivarian Republic of Venezuela
Венесуэла (Боливарианская Республика)
la République bolivarienne du Venezuela
+ Venezuela (Bolivarian Republic of)
+
فنزويلي
91205.0
+
1000
Venezuela (République bolivarienne du)
委内瑞拉 (玻利瓦尔共和国)
+ 2009
326133.0
236
Venezuela (Bolivarian Republic of)
- 2009
+
Bs
- فنزويلا (جمهورية .. البوليفارية)
Manual Estimation
+ فنزويلا (جمهورية .. البوليفارية)
Population data from the UN Population Division and the data refers to the UN Revision 2008
venezolano
2009
VE
-
-
-
-
-
-
-
-
-
-
-
-
- The middle name or initial with which you normally identify yourself. Only one may be entered.
- 20
+
+ The middle name or initial with which you normally identify yourself. Only one may be entered.
+ 20
middle name or initial
-
+
- 1
-
+ 1
+
-
B.N. Bachelor of Nursing
- B.N.
+ B.N.
+
-
-
-
-
-
-
+
@@ -11425,62 +11371,62 @@ use one freetextKeyword assertion for each keyword or phrase.
-
+
-
-
+
+
- true
+ true
is agent in
- 5
+ 5
- isAgentIn
+ isAgentIn
- true
- This relates an active agent to an event.
+ true
+ This relates an active agent to an event.
-
- southern Africa
-
-
- الجنوب الأفريقى
-
- 15243
- southern Africa
- Южная Африка
- África austral
- 南部非洲
- Южная Африка
- Afrique australe
- África austral
- Africa del Sud
- 南部非洲
- 南部非洲
- الجنوب الأفريقى
الجنوب الأفريقى
- África austral
- southern Africa
- 7252
- Africa del Sud
- Afrique australe
-
-
- Afrique australe
- Южная Африка
- Africa del Sud
- 5104
-
- southern Africa
-
-
-
-
-
-
+
-
+
+ southern Africa
+ Afrique australe
+ Afrique australe
+ الجنوب الأفريقى
+ Africa del Sud
+
+ África austral
+
+ Южная Африка
+ southern Africa
+ Africa del Sud
+ southern Africa
+
+ الجنوب الأفريقى
+ southern Africa
+
+
+ 南部非洲
+
+ Южная Африка
+ Afrique australe
+ Южная Африка
+
+ 南部非洲
+ África austral
+ 15243
+ 5104
+ 7252
+
+
+ África austral
+
+
+ Africa del Sud
+
+ 南部非洲
agriculturalAreaTotal
@@ -11490,30 +11436,43 @@ use one freetextKeyword assertion for each keyword or phrase.
-
-
+
+
-
-
+
1
+
+
+
+
+
+
+
+
+
+
+
B.A.E. Architectural Engineering
-
- B.A.E.
+ B.A.E.
+
-
+
- Antarctica
- Antarctique
أنتاركتيكا
-
Antarctique
+
+ Antarctique
+
+
南极洲
ATA
南极洲
+
+
AQ
Антарктида
Antártida
@@ -11524,99 +11483,90 @@ use one freetextKeyword assertion for each keyword or phrase.
Антарктида
أنتاركتيكا
南极洲
+
+
+
Antarctica
Antarctica
Антарктида
+ Antarctica
+
1985
9999
أنتاركتيكا
471
-
-
-
-
-
-
-
-
+
+
+ term type
+ 1
+
+
+
+
+
+
-
+
advisor
-
-
+
+
- 5
+ 5
- 40
- true
-
-
- term type
- 1
-
-
-
-
-
-
-
-
-
-
-
+ 40
+ true
- -1
-
-
- photograph; diagram
-
- -1
- stable
+ -1
+
+
+ photograph; diagram
+
+ -1
+ stable
http://purl.org/ontology/bibo/
A document that presents visual or diagrammatic information.
Image
-
- A visual representation such as a photograph or graph
+
+ A visual representation such as a photograph or graph
- This relates the educational background to the academic degree obtained through that educational background.
+ This relates the educational background to the academic degree obtained through that educational background.
- 10
- degree type
-
+ 10
+ degree type
+
- 5
+ 5
- true
+ true
degree earned
- true
-
-
-
-
-
-
-
+ true
+
+
- Holy See
+
+
+ Holy See
教廷
+
+
94
VAT
@@ -11628,6 +11578,7 @@ use one freetextKeyword assertion for each keyword or phrase.
9999
euro
Santa Sede
+
euro
Святейший Престол
EUR or €
@@ -11646,6 +11597,7 @@ use one freetextKeyword assertion for each keyword or phrase.
3645
الكرسي الرسولي
della Santa Sede
+
HLS
110
Святейший Престол
@@ -11653,13 +11605,16 @@ use one freetextKeyword assertion for each keyword or phrase.
教廷的
Santa Sede
Santa Sede
+
+
la Santa Sede
- 1.0
le Saint-Siège
+ 1.0
الكرسي الرسولي
de la Santa Sede
euro
Holy See
+
VA
Holy See
教廷
@@ -11668,72 +11623,46 @@ use one freetextKeyword assertion for each keyword or phrase.
le Saint-Siège
Population data from the UN Population Division and the data refers to the UN Revision 2008
+
Святейший Престол
教廷
Holy See
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- The bestowal of an award, honor, or distinction to a person or person's at a particular time.
-
- -1
-
+
+
+
+
+ The bestowal of an award, honor, or distinction to a person or person's at a particular time.
+
+ -1
Award or Honor Receipt
-
- -1
-
-
-
-
-
-
+
+
+
+
+ -1
+
+
+
+
+
+
+
+
-
+
-
-
-
- true
+
+
+ true
+
- The award bestowed may be represented with the Award class.
-
-
-
-
-
-
-
- true
-
-
-
-
-
-
-
-
- member role of
-
-
- 5
- 50
+
+
+ The award bestowed may be represented with the Award class.
- Cameroon
فرنك الجماعة المالية الأفريقية
CFA franc (Communauté financière africaine)
47271.0
@@ -11747,19 +11676,22 @@ use one freetextKeyword assertion for each keyword or phrase.
Official data reported on FAO Questionnaires from countries
камерунский
+
2009
1000 Ha
喀麦隆共和国
+
8.49
2009
- 1.65
+ 1.65
franc CFA (Communauté financière africaine)
1000 Ha
camerounais
非洲法郎
+
الكاميرون
Cameroon
13.07
@@ -11776,11 +11708,11 @@ use one freetextKeyword assertion for each keyword or phrase.
camerunés
- 1000
+ el Camerún
millions of US dollars
120
le Cameroun
- el Camerún
+ 1000
Камерун
the Republic of Cameroon
CMR
@@ -11792,13 +11724,15 @@ use one freetextKeyword assertion for each keyword or phrase.
camerunese
franco CFA
- 47544.0
франк КФА
+ 47544.0
+
2010
2009
الكاميرون
16.19
+
كاميروني
2009
Population data from the UN Population Division and the data refers to the UN Revision 2008
@@ -11809,122 +11743,145 @@ use one freetextKeyword assertion for each keyword or phrase.
Manual Estimation
franco CFA (Communauté financière africaine)
+ Cameroon
+
9999
Республика Камерун
2009
- 19522.0
CMR
- la República del Camerún
+ 19522.0
+ la República del Camerún
+
Cameroon
22186.0
+
45
Calculated
+
32
CM
Official data reported on FAO Questionnaires from countries
-
-
-
-
-
-
-
-
-
-
+
-
-
- 1
+
+ true
+
+
+
+
+
+
+
+
+ member role of
+
+
+ 5
+ 50
+
+
+
+
-
-
-
+
+
+
+
+
+
+
+
- B.A.E.
-
B.A.E. Agricultural Engineering
+ B.A.E.
+
-
+
- true
-
+ true
+
- Role of co-principal investigator of an Agreement (for example, a grant), who devotes a specified percentage of time and is considered key personnel.
- -1
+ Role of co-principal investigator of an Agreement (for example, a grant), who devotes a specified percentage of time and is considered key personnel.
+ -1
Co-Principal Investigator Role
-
+
- -1
+ -1
- 1
+ 1
license number
-
-
+
+
-
- license number
- 4
+
+ license number
+ 4
- Zaire
- 1997
- 1985
-
-
-
-
-
-
-
+
+
+
-
-
+
+ 1985
+
+
+ Zaire
+
+
+ 1997
+
- Bangladesh
+
Estimated
+ Bangladesh
la République populaire du Bangladesh
14400.0
Manual Estimation
- Bangladesh
13017.0
+ Bangladesh
bangladais
+
taka
-
Bangladesh
+
+
+
1000 Ha
+
Народная Республика Бангладеш
050
Bangladesh
taka
-
Бангладеш
0.469
+
така
2009
taka
1000 Ha
+
孟加拉国
@@ -11936,21 +11893,24 @@ use one freetextKeyword assertion for each keyword or phrase.
孟加拉国
23
Bangladesh
+
бангладешский
15371
20.59
la República Popular de Bangladesh
26.63
+
Population data from the UN Population Division and the data refers to the UN Revision 2008
- 162221.0
Bangladesh
+ 162221.0
塔 卡
تاكا
Bangladesh
le Bangladesh
BGD
16
+
of Bangladesh
Repubblica popolare del Bangladesh
@@ -11958,6 +11918,7 @@ use one freetextKeyword assertion for each keyword or phrase.
2009
جمهورية بنغلاديش الشعبية
Bangladesh
+
2009
Tk
@@ -11973,13 +11934,14 @@ use one freetextKeyword assertion for each keyword or phrase.
بنغلاديشي
92.67
+
孟加拉国的 / 孟加拉国人
- de Bangladesh
بنغلاديش
+ de Bangladesh
89360.0
孟加拉人民共和国
- Calculated
9149.0
+ Calculated
BGD
the People's Republic of Bangladesh
@@ -11991,89 +11953,68 @@ use one freetextKeyword assertion for each keyword or phrase.
1985
88.03
بنغلاديش
-
-
-
-
-
-
-
-
-
-
-
-
activities
- 2
+ 2
+
- 2009-12-08T10:42:02
-
-
-
-
-
+ 2009-12-08T10:42:02
-
+
Global Trade Item Number 14
- 1
+ 1
- Global Trade Item Number (GTIN) is an identifier for trade items developed by GS1 (comprising the former EAN International and Uniform Code Council). GTIN is an "umbrella" term used to describe the entire family of GS1 data structures for trade items (products and services) identification. GTINs may be 8, 12, 13 or 14 digits long.
+ Global Trade Item Number (GTIN) is an identifier for trade items developed by GS1 (comprising the former EAN International and Uniform Code Council). GTIN is an "umbrella" term used to describe the entire family of GS1 data structures for trade items (products and services) identification. GTINs may be 8, 12, 13 or 14 digits long.
gtin14
- http://en.wikipedia.org/wiki/Global_Trade_Item_Number.
-
+ http://en.wikipedia.org/wiki/Global_Trade_Item_Number.
+
http://purl.org/ontology/bibo/
-
- stable
- 80
+
+ stable
+ 80
-
-
-
-
-
Advising Relationship
- -1
- A dual relationship of one person being advised or mentored by another person, typically including start and end dates
- -1
-
-
-
-
+ -1
+ A dual relationship of one person being advised or mentored by another person, typically including start and end dates
+ -1
+
+
-
-
-
- true
-
-
-
-
-
+
+
+
+
+
+
+
+
+ true
+
+
entry term
- 40
+ 40
-
+
-
-
+
+
- Puerto Rico
+
the Commonwealth of Puerto Rico
Country data reported by International Organizations where the country is a member (Semi-official) - WTO, EU, UNSD, etc.
630
@@ -12081,6 +12022,7 @@ use one freetextKeyword assertion for each keyword or phrase.
Puerto Rico
Puerto Rico
portoricain
+
puertorriqueño
美 元
@@ -12092,6 +12034,7 @@ use one freetextKeyword assertion for each keyword or phrase.
200
波多黎各
Porto Rico
+
كمنولث بورتوريكو
PUE
PRI
@@ -12113,10 +12056,13 @@ use one freetextKeyword assertion for each keyword or phrase.
portoricano
Portorico
بورتوريكو
+
+
Population data from the UN Population Division and the data refers to the UN Revision 2008
el Estado Libre Asociado de Puerto Rico
波多黎各自由联邦
+
2009
1000 Ha
доллар
@@ -12126,35 +12072,35 @@ use one freetextKeyword assertion for each keyword or phrase.
Puerto Rico
6362
3982.0
+
1985
Puerto Rico
Porto Rico
Portorico
بورتوريكو
+ Puerto Rico
+
(из/ житель) Пуэрто-Рико
PR
- 波多黎各人/波多黎各的
l'État libre associé de Porto Rico
-
-
-
-
-
-
-
-
+ 波多黎各人/波多黎各的
+
+
+
+
+
- Uzbekistan
+
2009
- ouzbek
- 1000 Ha
- 42540.0
- 乌兹别克斯坦共和国
乌兹别克斯坦
+ 1000 Ha
+ ouzbek
+ 乌兹别克斯坦共和国
+ 42540.0
1991
27488.0
@@ -12162,22 +12108,26 @@ use one freetextKeyword assertion for each keyword or phrase.
أوزبكى أو أوزبكستانى
Uzbekistan
- 9999
45.61
+ 9999
+
20527
the Republic of Uzbekistan
56.0
2009
Узбекистан
+
UZB
+
узбекский
Узбекистан
Uzbekistan
Uzbek
+
la República de Uzbekistán
0.617
@@ -12193,6 +12143,7 @@ use one freetextKeyword assertion for each keyword or phrase.
Population data from the UN Population Division and the data refers to the UN Revision 2008
Manual Estimation
苏 姆
+
сум
1000 Ha
uzbeko
@@ -12204,16 +12155,19 @@ use one freetextKeyword assertion for each keyword or phrase.
Manual Estimation
Uzbekistán
Uzbekistan
- 15121
860
+ 15121
UZB
261
+
Uzbekistan
millions of US dollars
+
جمهورية أوزبكستان
+
Республика Узбекистан
1000 Ha
Uzbekistán
@@ -12227,54 +12181,56 @@ use one freetextKeyword assertion for each keyword or phrase.
Manual Estimation
la République d'Ouzbékistan
Estimated
- أوزبكستان
+ أوزبكستان
uzbeco
乌兹别克的
+
+
Calculated
- 44740.0
+ Uzbekistan
73.13
+ 44740.0
Ouzbékistan
-
-
-
-
-
-
-
-
-
-
-
-
teaching
- 60
+ 60
+
- 2010-01-10T15:37:48
+ 2010-01-10T15:37:48
+
+
+
+
+
- true
+ true
- 5
+ 5
-
+
-
+
produced in
-
-
-
Licensed Primate Instructor
+
+
+
+
-
+
+
+
+
+
populationYear
@@ -12284,40 +12240,45 @@ use one freetextKeyword assertion for each keyword or phrase.
-
-
+
+
+
+
+
+
+
-
- This term is intended to be used with non-literal values as defined in the DCMI Abstract Model (http://dublincore.org/documents/abstract-model/). As of December 2007, the DCMI Usage Board is seeking a way to express this intention with a formal range declaration.
+
+ This term is intended to be used with non-literal values as defined in the DCMI Abstract Model (http://dublincore.org/documents/abstract-model/). As of December 2007, the DCMI Usage Board is seeking a way to express this intention with a formal range declaration.
-
- true
+
+ true
isReferencedBy
- A related resource that references, cites, or otherwise points to the described resource. This relates a resource to the resource that cited it.
-
- Used to relate a reference citation to a bibliographic resource.
- true
- isReferencedBy
+ A related resource that references, cites, or otherwise points to the described resource. This relates a resource to the resource that cited it.
+
+ Used to relate a reference citation to a bibliographic resource.
+ true
+ isReferencedBy
- An agent that interview another agent.
+ An agent that interview another agent.
interviewer
An agent that interview another agent.
- true
-
-
+ true
+
+
-
+
- true
- stable
+ true
+ stable
http://purl.org/ontology/bibo/
- interviewer
+ interviewer
@@ -12329,145 +12290,184 @@ use one freetextKeyword assertion for each keyword or phrase.
-
-
-
-
- Democratic Republic of Congo
- 1234567890
-
- Congo City
- Jungle 1234
-
- Jungle 1234 Congo City Democratic Republic of Congo
-
-
+
+
Arizona
-
-
-
-
-
+
+
-
+
+
+
+
+
+
+
+
+
+
FOAF
- foaf
+ foaf
+
+
+
+
+
+
+
+
+
+
hasMaxLatitude
-
-
+
+
- 4
- true
- 4
-
+ 4
+ true
+ 4
+
Date/Time Interval
- a specific period or duration, defined by (optional) start and end date/times.
-
+ a specific period or duration, defined by (optional) start and end date/times.
+
+
+
+
+
+
- 123 Main Street; ITS department; P.O. Box 783
-
+ 123 Main Street; ITS department; P.O. Box 783
+
-
- 10
+
+ 10
address line 1
-
+
California
-
-
-
-
-
+
+
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
- China
- Estimated
- the People's Republic of China
millions of US dollars
+ the People's Republic of China
+ Estimated
Manual Estimation
134.78
китайский
- Calculated
yuan
+ Calculated
中 国
Manual Estimation
yuan
+ 2009
960000.06
中 国
- 2009
la Chine
-
Cina
+
chino
China
+
2009
15390
+
صيني
1000 Ha
+
73.56
+
yuan
932748.94
China
1985
- 18.16
Cina
+ 18.16
351
Repubblica popolare cinese
China
- الصين
+
1000 Ha
+ الصين
53.56
2009
2010
+
yuan
+
¥
1556
元
юань
+ China
1000
cinese
0.663
+
CN
Chinese
@@ -12483,14 +12483,15 @@ use one freetextKeyword assertion for each keyword or phrase.
الصين
2009
53
- 1353311.0
Китай
+ 1353311.0
la República Popular China
中华人民共和国
China
+
Population data from the UN Population Division and the data refers to the UN Revision 2008
- chinois
Manual Estimation
+ chinois
China
156
@@ -12500,47 +12501,37 @@ use one freetextKeyword assertion for each keyword or phrase.
Китайская Народная Республика
2009
- la République populaire de Chine
+ CHN
يوان
- CHN
- Китай
-
-
-
+ la République populaire de Chine
-
-
-
-
-
-
-
+ Китай
+
-
publications
- 40
- primary bibliographic properties of publications to prioritize in display
+ 40
+
+ primary bibliographic properties of publications to prioritize in display
- 2009-12-28T09:12:36
+ 2009-12-28T09:12:36
Screenplay
-
- Written script for a film production, including dialogue and descriptions of gestures, actions, shooting directions
+
+ Written script for a film production, including dialogue and descriptions of gestures, actions, shooting directions
-
- -1
- -1
+
+ -1
+ -1
- Somalia
Population data from the UN Population Division and the data refers to the UN Revision 2008
So.Sh
@@ -12549,18 +12540,20 @@ use one freetextKeyword assertion for each keyword or phrase.
201
9133.0
44028.0
+
Estimated
الجمهورية الصومالية
-
Manual Estimation
+
索马里的
1985
+
Сомали
+ Somalia
索马里
63766.0
- Somalia
1990
226
@@ -12568,14 +12561,16 @@ use one freetextKeyword assertion for each keyword or phrase.
Somalia
شلن
-1.66
-
1000 Ha
+
SOM
+
shilling
Somali
Data reported on country official publications or web sites (Official) or trade country files.
15487
+ Somalia
2009
la Somalie
@@ -12584,28 +12579,34 @@ use one freetextKeyword assertion for each keyword or phrase.
- 1000 Ha
+ 1000 Ha
somalo
+
- сомалийский
41.0
+ сомалийский
الصومال
先 令
7237
+
51.42
2009
Manual Estimation
la República Somalí
+
Somalia
+
+
шиллинг
-
索马里
- Somalia
- la République somalienne
- Somalie
+
2009
+ la République somalienne
+ Somalia
+ Somalie
+
millions of US dollars
the Somali Republic
@@ -12617,8 +12618,9 @@ use one freetextKeyword assertion for each keyword or phrase.
somalien
9999
2009
- 1000
11.99
+ 1000
+
SOM
SO
الصومال
@@ -12627,26 +12629,16 @@ use one freetextKeyword assertion for each keyword or phrase.
62734.0
索马里共和国
1000 Ha
+
Repubblica somala
Сомалийская Республика
-
-
-
-
-
-
-
-
-
-
-
M.R.E. Master of Religious Education
-
- M.R.E.
+ M.R.E.
+
-
+
validSince
@@ -12656,42 +12648,38 @@ use one freetextKeyword assertion for each keyword or phrase.
The value of the datatype property *validSince* associated to a particular area (territory or group) indicates the area's first year of validity. The geopolitical ontology traces back historic changes only until 1985, therefore, if an area has a validSince = 1985, this indicates that the area is/was valid since 1985 or before.
-
-
-
-
-
-
-
+
+
-
-
+
+
- An article of opinion, typically published in a newspaper. For academics, most commonly Op Ed pieces
+ An article of opinion, typically published in a newspaper. For academics, most commonly Op Ed pieces
Editorial Article
-
+
- -1
+ -1
- -1
+ -1
- Lao People's Democratic Republic
kip
418
kip
جمهورية لاو الديمقراطية الشعبية
Лаосская Народно- Демократическая Республика
+
Laos
+ Лаосская Народно- Демократическая Республика
15438
- Лаосская Народно- Демократическая Республика
- 23680.0
+
LAO
+ 23680.0
2009
лаосский
@@ -12700,47 +12688,56 @@ use one freetextKeyword assertion for each keyword or phrase.
kip
2010
+
1000 Ha
laotiano
+
+
老挝人民民主共和国
-
1000 Ha
+
老挝的
-
+
+
+
23080.0
22.51
lao
millions of US dollars
0.497
- kip
9999
+ kip
+
кип
1000
+
+
كيب
-
1000 Ha
+
République démocratique populaire lao
1985
2009
-
Estimated
+
2009
- 老挝人民民主共和国
لاوي
+ 老挝人民民主共和国
2346.0
120
la República Democrática Popular Lao
基 普
139
Calculated
- 12076
Data reported on country official publications or web sites (Official) or trade country files.
+ 12076
la République démocratique populaire lao
13.91
+ Lao People's Democratic Republic
the Lao People's Democratic Republic
2009
جمهورية لاو الديمقراطية الشعبية
@@ -12753,129 +12750,120 @@ use one freetextKeyword assertion for each keyword or phrase.
LAO
lao
- 6320.0
+ 6320.0
Lao People's Democratic Republic
100.1
老挝人民民主共和国
República Democrática Popular Lao
2009
la República Democrática Popular Lao
+
5939.0
la République démocratique populaire lao
Repubblica democratica popolare lao
Manual Estimation
Population data from the UN Population Division and the data refers to the UN Revision 2008
- جمهورية لاو الديمقراطية الشعبية
+ جمهورية لاو الديمقراطية الشعبية
Repubbica democratica popolare lao
LA
Repubblica democratica popolare lao
-
-
-
-
-
-
-
-
-
-
-
- Phase 4 Clinical Trial
+ Phase 4 Clinical Trial
-
- -1
+
+ -1
- In Phase 4 trials, post marketing studies delineate additional information including the drug's or treatment's risks, benefits, and optimal use.
+ In Phase 4 trials, post marketing studies delineate additional information including the drug's or treatment's risks, benefits, and optimal use.
-
+
-
+
Phase 4 Clinical Trial
- 4
+ 4
- ORCID (Open Researcher and Contributor ID) is a proposed nonproprietary alphanumeric code that would uniquely identify scientific and other academic authors.
-
+ ORCID (Open Researcher and Contributor ID) is a proposed nonproprietary alphanumeric code that would uniquely identify scientific and other academic authors.
+
ORCID id
-
- 2
+
+ 2
- We can't yet assume that we will only have a single ORCID id for a person.
+ We can't yet assume that we will only have a single ORCID id for a person.
source: http://en.wikipedia.org/wiki/ORCID .
-We wanted this property to be visible so that people would be aware that we intend to carry ORCID ids in VIVO for cross-reference. I don't believe any ORCID ids have been minted yet, but it's hard to imagine they would need to be private since the goal of having them is to disambiguate author references internationally. However, this and the researcherId and scopusId (also with domain foaf:Person) can stay as visible to self-editors for now as they will probably be used mostly in data ingest. It might be nice in the future to let people make their own decision about whether these are visible.
-
- 10
+We wanted this property to be visible so that people would be aware that we intend to carry ORCID ids in VIVO for cross-reference. I don't believe any ORCID ids have been minted yet, but it's hard to imagine they would need to be private since the goal of having them is to disambiguate author references internationally. However, this and the researcherId and scopusId (also with domain foaf:Person) can stay as visible to self-editors for now as they will probably be used mostly in data ingest. It might be nice in the future to let people make their own decision about whether these are visible.
+
+ 10
- This relates something to a facility that it owns or runs.
-
+ This relates something to a facility that it owns or runs.
+
-
-
- has facility
- true
- 5
+
+
+ has facility
+ true
+ 5
- true
+ true
has facility
- publisher
- true
+ publisher
+ true
- Public definition source: http://dublincore.org/2008/01/14/dcterms.rdf# .
-Examples of a Publisher include a person, an organization, or a service. Typically, the name of a Publisher should be used to indicate the entity.
-
+ Public definition source: http://dublincore.org/2008/01/14/dcterms.rdf# .
+Examples of a Publisher include a person, an organization, or a service. Typically, the name of a Publisher should be used to indicate the entity.
+
publisher
- An entity responsible for making the resource available.
-
- Used to link a bibliographic item to its publisher.
+ An entity responsible for making the resource available.
+
+ Used to link a bibliographic item to its publisher.
-
- true
+
+ true
-
+
nameListFR
-
+ http://www.fao.org/termportal/en/
+
+ http://www.fao.org/termportal/contr/ar/
2010-06-24
+ http://www.fao.org/termportal/contr/fr/
FAO terminology
+ http://www.fao.org/termportal/contr/es/
http://www.fao.org/termportal/contr/en/
- FAO terminology http://www.fao.org/termportal/en/
- http://www.fao.org/termportal/en/
- http://www.fao.org/termportal/contr/ar/
- http://www.fao.org/termportal/contr/fr/
- http://www.fao.org/termportal/contr/es/
http://www.fao.org/termportal/contr/zh/
+ FAO terminology http://www.fao.org/termportal/en/
- Turks and Caicos Islands
796
1000 Ha
جزر تركس وكايكوس
+
特克斯和凯科斯群岛
+
Turks and Caicos Islands
1000 Ha
2009
@@ -12895,25 +12883,32 @@ Examples of a Publisher include a person, an organization, or a service. Typical
19036
Isole Turks e Caicos
2009
+
доллар
(из/ житель) Теркс и Кайкос островов
2009
دولار الولايات المتحدة
+
Turks and Caicos Islands
+
+
Islas Turcas y Caicos
US dollar
Turks_and_Caicos_Islands
delle isole Turks e Caicos
1000
+
2009
- TCA
جزر تركس وكايكوس
+ TCA
Turks and Caicos Islands
224
+ Turks and Caicos Islands
dollaro USA
美 元
TCI
+
TC
Islas Turcas y Caicos
特克斯和凯科斯群岛
@@ -12932,73 +12927,79 @@ Examples of a Publisher include a person, an organization, or a service. Typical
Îles Turques et Caïques
Islas Turcas y Caicos
Isole Turks e Caicos
-
-
-
-
-
-
-
-
-
Primate Foundation of Africa
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
- stable
+ stable
A presentation of a series of slides, usually presented in front of an audience with written text and images.
- -1
-
+ -1
+
http://purl.org/ontology/bibo/
-
+
Slideshow
- -1
- Short Definition from the bibo ontology
+ -1
+ Short Definition from the bibo ontology
- A presentation of a series of slides, usually presented in front of an audience with written text and images
+ A presentation of a series of slides, usually presented in front of an audience with written text and images
+
+
+
+
+
-
- true
+
+ true
equipment for
-
- equipment for
+
+ equipment for
- true
- This relates equipment to the organization that owns the equipment.
+ true
+ This relates equipment to the organization that owns the equipment.
- 5
-
+ 5
+
-
-
- true
+
+
+ true
- 5
+ 5
geographic focus
-
+
- 70
- true
+ 70
+ true
- Global Administrative Unit Layers http://www.fao.org/geonetwork/srv/en/metadata.show?id=12691
+ Global Administrative Unit Layers http://www.fao.org/geonetwork/srv/en/metadata.show?id=12691
Global Administrative Unit Layers
http://www.fao.org/geonetwork/srv/en/metadata.show?id=12691
@@ -13007,28 +13008,28 @@ Examples of a Publisher include a person, an organization, or a service. Typical
-
-
+
+
- 1
+ 1
attended
-
- true
- true
-
+
+ true
+ true
+
- 5
- edu.cornell.mannlib.vitro.webapp.edit.n3editing.configuration.generators.AddAttendeeRoleToPersonGenerator
+ 5
+ edu.cornell.mannlib.vitro.webapp.edit.n3editing.configuration.generators.AddAttendeeRoleToPersonGenerator
- Sweden
9999
+
Швеция
69.06
Sweden
@@ -13038,17 +13039,17 @@ Examples of a Publisher include a person, an organization, or a service. Typical
millions of US dollars
24.16
Королевство Швеция
- 2010
10.98
+ 2010
كرونا
- svedese
سويدي
+ svedese
Suecia
the Kingdom of Sweden
Sweden
-
Svezia
+
corona svedese
suédois
السويد
@@ -13067,13 +13068,16 @@ Examples of a Publisher include a person, an organization, or a service. Typical
752
la Suède
Svezia
+
瑞典王国
1000 Ha
sueco
Sweden
0.885
+
Regno di Svezia
2009
+
Suecia
236
@@ -13083,109 +13087,116 @@ Examples of a Publisher include a person, an organization, or a service. Typical
2009
SKr
瑞典的
+
le Royaume de Suède
45030.0
مملكة السويد
+
- Swedish
克 朗
+ Swedish
55.34
Data reported on country official publications or web sites (Official) or trade country files.
SWE
Швеция
3079.0
- Calculated
+ 15493
el Reino de Suecia
406072.0
- 15493
- крона
Data reported on country official publications or web sites (Official) or trade country files.
+ крона
+ Calculated
+
+
Estimated
+ Sweden
Suède
Data reported on country official publications or web sites (Official) or trade country files.
2009
SWE
+
1000 Ha
7549
+
1000 Ha
-
-
-
-
-
-
-
-
-
-
Bibliographic Information Source
- 5
- 5
- A source of information about bibliographic citations, such as Google Scholar, Web of Science or Scopus.
+ 5
+ 5
+ A source of information about bibliographic citations, such as Google Scholar, Web of Science or Scopus.
-
+
-
+
- Endodontics (department within a College of Dentistry); English (department within a College of Liberal Arts)
-
- -1
-
- -1
+ Endodontics (department within a College of Dentistry); English (department within a College of Liberal Arts)
+
+
+ -1
+
+ -1
-
+
-
-
-
-
-
-
-
+
+
+
+
+
+
+
Academic Department
+
- A distinct, usually specialized educational unit within an educational organization.
+ A distinct, usually specialized educational unit within an educational organization.
+
-
-
-
+
+
+
+
+
- Cook Islands
of the Cook Islands
CK
-165.83
- les Îles Cook
Острова Кука
+ les Îles Cook
New Zealand dollar
Islas Cook
库克群岛的 / 库克群岛人
+
新西兰元
Острова Кука
- 1000 Ha
dollaro neozelandese
+ 1000 Ha
2009
+
库克群岛
+
جزر كوك
Îles Cook
las Islas Cook
+
2009
les Îles Cook
60
+
CKI
47
Isole Cook
1000
+
184
Data reported on country official publications or web sites (Official) or trade country files.
1000 Ha
@@ -13196,14 +13207,18 @@ Examples of a Publisher include a person, an organization, or a service. Typical
2009
库克群岛
9999
+
новозеландский доллар
库克群岛
+
-8.96
des Îles Cook
جزر كوك
Isole Cook
dollar néo-zélandais
+
+
24.0
COK
delle Isole Cook
@@ -13226,144 +13241,131 @@ Examples of a Publisher include a person, an organization, or a service. Typical
2009
-21.95
جزر كوك
+
1985
the Cook Islands
24.0
دولار نيوزيلندي
de las Islas Cook
Data reported on country official publications or web sites (Official) or trade country files.
+ Cook Islands
20.0
- $NZ
-
-157.32
-
-
-
-
-
-
-
-
-
-
-
+
+ $NZ
- true
+ true
- true
-
- 60
-
+ true
+
+ 60
+
published in
-
- 5
+
+ 5
+
+
+
+
+
+
+
+ -1
+
+
+
+ -1
+
+
+
+
+
+
+ Grant
+
+
+ An intramural or extramural award to support scholarly work, such as UF09179 (VIVO)
+ Short definition is from the Glossary of NIH Terms.
+
+
+
+
+
+
+
+
+
+
+
+ Financial assistance mechanism providing money, property, or both to an eligible entity to carry out an approved project or activity
+
+
+
+
+
- -1
- Written musical composition for voice or instruments or both
+ -1
+ Written musical composition for voice or instruments or both
- -1
+ -1
Score
-
-
+
+
-
-
-
- -1
-
-
- -1
-
-
-
-
-
- Grant
-
- An intramural or extramural award to support scholarly work, such as UF09179 (VIVO)
- Short definition is from the Glossary of NIH Terms.
-
-
-
-
-
-
-
-
-
-
- Financial assistance mechanism providing money, property, or both to an eligible entity to carry out an approved project or activity
-
-
-
-
-
-
-
+
+
+
+
2010-06-24
+ http://www.fao.org/termportal/contr/ar/
FAO terminology
nameOfficialZH
-
-
-
- FAO terminology http://www.fao.org/termportal/en/
- http://www.fao.org/termportal/contr/en/
-
-
- http://www.fao.org/termportal/contr/ar/
+
http://www.fao.org/termportal/contr/fr/
http://www.fao.org/termportal/contr/es/
+
+
http://www.fao.org/termportal/contr/zh/
+ FAO terminology http://www.fao.org/termportal/en/
http://www.fao.org/termportal/en/
+ http://www.fao.org/termportal/contr/en/
+
+
- Information Science; Computer Science; Anthropology
+ Information Science; Computer Science; Anthropology
- 3
+ 3
major field of degree
-
+
- Major subject focus of the degree being described in an educational background.
- 50
-
-
+ Major subject focus of the degree being described in an educational background.
+ 50
+
+
-
- isVersionOf
-
-
- true
-
- isVersionOf
-
- This namespace - http://purl.org/dc/elements/1.1/ - does not appear to have this element.
- 30
- true
-
-
-
- Palau
Estimated
1000
+ Palau
美 元
палауанский
2009
@@ -13373,19 +13375,24 @@ Examples of a Publisher include a person, an organization, or a service. Typical
PW
33221
بالاوي
+
+
جمهورية بالاو
the Republic of Palau
+
2009
US dollar
доллар
of Palau
+
Palau
180
Палау
165.0
بالاو
+
la República de Palau
帕劳共和国
134.13
@@ -13408,25 +13415,31 @@ Examples of a Publisher include a person, an organization, or a service. Typical
1000 Ha
Palau
Palau
-
134.65
- Палау
- les Palaos
- Population data from the UN Population Division and the data refers to the UN Revision 2008
- 3632
- PLW
+
+
Республика Палау
+ Палау
+ PLW
+ 3632
+
+ Population data from the UN Population Division and the data refers to the UN Revision 2008
+ les Palaos
1000 Ha
palauano
+
Manual Estimation
9999
+
+
TTP
2009
1991
6.88
Manual Estimation
+
1000 Ha
Palau
Palau
@@ -13439,17 +13452,20 @@ Examples of a Publisher include a person, an organization, or a service. Typical
189
دولار الولايات المتحدة
46.0
-
-
-
-
-
-
-
-
-
-
-
+
+
+ isVersionOf
+
+
+ true
+
+ isVersionOf
+
+ This namespace - http://purl.org/dc/elements/1.1/ - does not appear to have this element.
+ 30
+ true
+
+
@@ -13457,122 +13473,122 @@ Examples of a Publisher include a person, an organization, or a service. Typical
- 5
-
+ 5
+
receipts
- true
-
+ true
+
- West African Economic and Monetary Union
1994
Западноафриканское валютно-экономическое сообщество
Unión Económica y Monetaria del África Occidental
- UEMOA http://www.uemoa.int/index.htm
+ UEMOA http://www.uemoa.int/index.htm
Union économique et monétaire ouest-africaine
+
+ West African Economic and Monetary Union
West African Economic and Monetary Union
西非经济与货币联盟
47736
- http://www.uemoa.int/index.htm
+ http://www.uemoa.int/index.htm
WAEMU
UEMOA
- UEMOA
+
UEMAO
9999
-
+ UEMOA
West African Economic and Monetary Union
+
Union économique et monétaire ouest-africaine
+
Unión Económica y Monetaria del África Occidental
+
الاتحاد الاقتصادى والنقدى لغرب أفريقيا
-
-
-
-
- source for public description: http://en.wikipedia.org/wiki/Universal_Product_Code.
+ source for public description: http://en.wikipedia.org/wiki/Universal_Product_Code.
http://purl.org/ontology/bibo/
- stable
+ stable
upc
-
+
Universal Product Code
- The Universal Product Code (UPC) is a barcode symbology (i.e., a specific type of barcode), that is widely used in Canada and the United States for tracking trade items in stores.
-
-
+ The Universal Product Code (UPC) is a barcode symbology (i.e., a specific type of barcode), that is widely used in Canada and the United States for tracking trade items in stores.
+
+
-
-
-
+
+
+
- true
+ true
realizes protocol
-
+
-
+
- A research study using human volunteers to answer specifc health-related questions.
- -1
-
+ A research study using human volunteers to answer specifc health-related questions.
+ -1
+
-
+
- A clinical trial is a research study using human volunteers to answer questions about treatments for diseases and conditions. Clinical trials are conducted in phases. The trials at each phase have a different purpose and help scientists answer different questions.
- 1
+ A clinical trial is a research study using human volunteers to answer questions about treatments for diseases and conditions. Clinical trials are conducted in phases. The trials at each phase have a different purpose and help scientists answer different questions.
+ 1
Clinical Trial
- Not the same as an award or distinction.
- Intel Talent Search; poetry contest
-
- -1
- -1
- An occasion on which a winner is selected from among two or more contestants.
-
+ Not the same as an award or distinction.
+ Intel Talent Search; poetry contest
+
+ -1
+ -1
+ An occasion on which a winner is selected from among two or more contestants.
+
Competition
-
+
- Malaysia
15446
- Malasia
马来西亚
+ Malasia
0.86
2009
+
Malaysia
32855.0
2010
@@ -13580,23 +13596,26 @@ Examples of a Publisher include a person, an organization, or a service. Typical
RM
Malaysia
millions of US dollars
+ Malaysia
ringgit
-
- 193093.0
Malesia
+ 193093.0
+
ماليزي
- Малайзия
7870.0
+ Малайзия
Malaisie
Manual Estimation
Malasia
малайзийский
Malesia
Malesia
+
MAL
Malasia
153
7.36
+
ringgit
Malaysia
1000 Ha
@@ -13613,6 +13632,7 @@ Examples of a Publisher include a person, an organization, or a service. Typical
9999
2009
119.27
+
1000 Ha
4533
@@ -13620,20 +13640,24 @@ Examples of a Publisher include a person, an organization, or a service. Typical
malaisien
ماليزيا
Malaysian
-
99.64
+
Population data from the UN Population Division and the data refers to the UN Revision 2008
+
Estimated
Малайзия
Малайзия
- 1000
ماليزيا
- 33080.0
ринггит
+ 33080.0
+ 1000
la Malaisie
+
2009
+
林吉特
+
Manual Estimation
Malaysia
1985
@@ -13645,29 +13669,27 @@ Examples of a Publisher include a person, an organization, or a service. Typical
ringgit
131
MY
+
la Malaisie
马来西亚
+
+
27468.0
458
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
- low income and food deficit countries
+
+
LIFDCs
- FAO Country profiles http://www.fao.org/countryprofiles/lifdc.asp?lang=en
+ FAO Country profiles http://www.fao.org/countryprofiles/lifdc.asp?lang=en
低收入缺粮国
@@ -13676,6 +13698,7 @@ Examples of a Publisher include a person, an organization, or a service. Typical
PBIDA
low income and food deficit countries
+
http://www.fao.org/countryprofiles/lifdc.asp?lang=ar
بلدان العجز الغذائي ذات الدخل المنخفض
@@ -13684,14 +13707,14 @@ Examples of a Publisher include a person, an organization, or a service. Typical
PBIDA
- 低收入缺粮国
+ 低收入缺粮国
PFRDV
-
+
países de bajos ingresos y con déficit de alimentos
страна с низким уровнем дохода и дефицитом продовольствия
@@ -13710,6 +13733,7 @@ Examples of a Publisher include a person, an organization, or a service. Typical
+ low income and food deficit countries
@@ -13723,15 +13747,15 @@ Examples of a Publisher include a person, an organization, or a service. Typical
- http://www.fao.org/countryprofiles/lifdc.asp?lang=fr
страны с низким уровнем дохода и дефицитом продово
-
-
-
pays à faible revenu et à déficit vivrier
+
+
+
+ http://www.fao.org/countryprofiles/lifdc.asp?lang=fr
@@ -13755,65 +13779,69 @@ Examples of a Publisher include a person, an organization, or a service. Typical
+
-
+
http://www.fao.org/countryprofiles/lifdc.asp?lang=es
بلدان العجز الغذائى ذات الدخل المنخفض
PFRDV
- paese a basso reddito con deficit alimentare
FAO Country profiles
+ paese a basso reddito con deficit alimentare
-
-
-
-
-
-
-
- Primate Experts
-
-
-
-
-
-
+
+
+
-
- A.B.
-
- A.B. Bachelor of Arts
+
+ Primate Experts
+
-
+
+
+
+
+ A.B. Bachelor of Arts
+ A.B.
+
+
+
- Kiribati
澳 元
la República de Kiribati
dólar australiano
Кирибати
基里巴斯
基里巴斯的
+
81.0
-11.45
Manual Estimation
Kiribati
Кирибати
+ Kiribati
+
كيريباسي
- Kiribati
2009
+
+
+ Kiribati
+
Республика Кирибати
+
1000 Ha
- Estimated
جمهورية كيريباس
+ Estimated
كيريباس
83
176.85
+
دولار استرالى
Manual Estimation
@@ -13822,8 +13850,8 @@ Examples of a Publisher include a person, an organization, or a service. Typical
2009
135
kiribatiano
- $A
Kiribati
+ $A
1985
кирибатский
@@ -13850,17 +13878,19 @@ Examples of a Publisher include a person, an organization, or a service. Typical
KIR
Australian dollar
- Repubblica di Kiribati
3261
+ Repubblica di Kiribati
128.0
4.72
+
kiribatien
the Republic of Kiribati
98.0
- 2009
Kiribati
+ 2009
+
-174.55
di Kiribati
@@ -13869,6 +13899,7 @@ Examples of a Publisher include a person, an organization, or a service. Typical
2009
+
KI
Kiribati
@@ -13878,46 +13909,35 @@ Examples of a Publisher include a person, an organization, or a service. Typical
基里巴斯
dollaro australiano
Kiribati
-
-
-
-
-
-
-
-
-
-
-
+
-
-
+
+
-
- 5
+
+ 5
- building
- true
+ building
+ true
- true
+ true
room within building
- Relates a room to the building that contains the room.
+ Relates a room to the building that contains the room.
- Poland
430076.0
14.12
49.04
بولندي
Poland
- Official data reported on FAO Questionnaires from countries
- злотый
+ злотый
+ Official data reported on FAO Questionnaires from countries
1000 Ha
Polonia
@@ -13926,24 +13946,29 @@ Examples of a Publisher include a person, an organization, or a service. Typical
31268.0
波兰共和国
兹罗提
+
Population data from the UN Population Division and the data refers to the UN Revision 2008
1000 Ha
la Pologne
POL
zloty
0.795
- Poland
+
+
16119.0
+ Poland
30420.0
2010
la República de Polonia
+
1000
ZI
198
polaco
polonais
+
Pologne
زلوتى
Polish
@@ -13952,16 +13977,21 @@ Examples of a Publisher include a person, an organization, or a service. Typical
PL
- 38074.0
+
54.84
+ 38074.0
la République de Pologne
波 兰
بولندا
+
+
6055
1000 Ha
Польша
173
+
+ Poland
Estimated
POL
@@ -13980,6 +14010,7 @@ Examples of a Publisher include a person, an organization, or a service. Typical
2009
2009
波 兰
+
millions of US dollars
Польша
2009
@@ -13996,17 +14027,7 @@ Examples of a Publisher include a person, an organization, or a service. Typical
zloty
Official data reported on FAO Questionnaires from countries
-
-
-
-
-
-
-
-
-
-
Vitro internals
@@ -14014,69 +14035,72 @@ Examples of a Publisher include a person, an organization, or a service. Typical
+
+
-
-
+
Address
- -1
-
- A specification of a location. To classify US specific addresses, use core:US Postal Code.
+ -1
+
+ A specification of a location. To classify US specific addresses, use core:US Postal Code.
- 200 University Avenue West, Waterloo, Ontario, Canada N2L 3G1
-
-
-
- -1
+ 200 University Avenue West, Waterloo, Ontario, Canada N2L 3G1
+
+
+ -1
+
-
- Address has properties for department name, street, city, state or province, postal code, and country. For US specific address, classify using core:US Postal Code. core:Address will display all addresses.
-
+
+ Address has properties for department name, street, city, state or province, postal code, and country. For US specific address, classify using core:US Postal Code. core:Address will display all addresses.
- Apt N26; Mann Library
-
+ Apt N26; Mann Library
+
address line 2
- 10
+ 10
-
+
-
+
- Typically a student or a recent graduate undergoing supervised practical training.
-
+ Typically a student or a recent graduate undergoing supervised practical training.
+
Internship
- 10
+ 10
-
- 10
+
+ 10
- Lesotho
1985
1579.0
-28.57
426
+
le Royaume du Lesotho
莱索托的
+
2009
Lesotho
2339.0
15440
- 29.46
2009
+ 29.46
millions of US dollars
ليسوتو
el Reino de Lesotho
Lesotho
+
2009
Population data from the UN Population Division and the data refers to the UN Revision 2008
+
the Kingdom of Lesotho
le Lesotho
@@ -14086,19 +14110,23 @@ Examples of a Publisher include a person, an organization, or a service. Typical
Calculated
лоти
-
مملكة ليسوتو
+
Lesotho
Official data reported on FAO Questionnaires from countries
1000 Ha
+
2010
+
Estimated
2067.0
122
莱索托
+
Lesotho
+
2009
2009
ليسوتو
@@ -14106,6 +14134,7 @@ Examples of a Publisher include a person, an organization, or a service. Typical
du Lesotho; lesothan
9999
+
142
0.427
1000
@@ -14130,6 +14159,8 @@ Examples of a Publisher include a person, an organization, or a service. Typical
Manual Estimation
LES
+
+ Lesotho
Лесото
-30.67
@@ -14142,63 +14173,56 @@ Examples of a Publisher include a person, an organization, or a service. Typical
Official data reported on FAO Questionnaires from countries
1000 Ha
- de Lesotho
- 4284
-
-
-
-
-
-
-
-
-
-
+ 4284
+ de Lesotho
-
-
-
+
+
+
-
-
-
+
+ 1
+
- Relates a component of something to the whole thing.
- 99
+ Relates a component of something to the whole thing.
+ 99
-
+
- part of
-
-
+ part of
+
+
part of
- 5
+ 5
- true
- true
+ true
+ true
- Ukraine
1000 Ha
9999
+
+
أوكرانيا
- 254
57932.0
44.38
- 2009
+ 254
Official data reported on FAO Questionnaires from countries
+
+ 2009
гривна
1991
Ucrania
Official data reported on FAO Questionnaires from countries
乌克兰
+
أوكرانيا
45708.0
@@ -14212,14 +14236,15 @@ Examples of a Publisher include a person, an organization, or a service. Typical
l'Ukraine
أوكراني
Ukraine
- UKR
l'Ukraine
+ UKR
grivna
Estimated
2009
+
2009
- 22.16
Ukraine
+ 22.16
40.22
@@ -14232,34 +14257,40 @@ Examples of a Publisher include a person, an organization, or a service. Typical
2009
millions of US dollars
- Ukraine
+ Ukraine
+
804
Ucrania
15070
UA
+
1000 Ha
16378
乌克兰的
2010
هريفنيا
+
2009
113545.0
+ Ukraine
Украина
41276.0
Ukraine
+
ucranio
Ucraina
- Population data from the UN Population Division and the data refers to the UN Revision 2008
+ Population data from the UN Population Division and the data refers to the UN Revision 2008
1000 Ha
Ukrainian
Ukraine
乌克兰
+
0.71
1000
@@ -14267,90 +14298,85 @@ Examples of a Publisher include a person, an organization, or a service. Typical
UKR
Ucraina
- ukrainien
格里夫尼亚
+ ukrainien
أوكرانيا
-
-
-
-
-
-
-
-
-
-
- true
- 5
- true
+ true
+ 5
+ true
- edu.cornell.mannlib.vitro.webapp.edit.n3editing.configuration.generators.AddHeadOfRoleToPersonGenerator
-
+ edu.cornell.mannlib.vitro.webapp.edit.n3editing.configuration.generators.AddHeadOfRoleToPersonGenerator
+
-
- true
+
+ true
- 30
+ 30
head of
-
+
-
-
-
+ USABC123456789
USABC123456789
-
+
+
-
- USABC123456789
+
+
+
+
+
+ 607-255-5555
+
+
- Source: http://en.wikipedia.org/wiki/Library_of_Congress_Control_Number.
+ Source: http://en.wikipedia.org/wiki/Library_of_Congress_Control_Number.
Library of Congress Control Number (LCCN)
Library of Congress Control Number
-
-
+
+
- stable
+ stable
http://purl.org/ontology/bibo/
- The Library of Congress Control Number or LCCN is a serially based system of numbering cataloging records in the Library of Congress in the United States.
-
+ The Library of Congress Control Number or LCCN is a serially based system of numbering cataloging records in the Library of Congress in the United States.
+
address line 3
- 10
+ 10
-
+
-
-
+
+
North Dakota
-
-
-
-
-
+
+
-
+
+
+
+
+
- Kazakhstan
la République du Kazakhstan
KZ
2009
@@ -14360,9 +14386,11 @@ Examples of a Publisher include a person, an organization, or a service. Typical
9999
kazako
+
55.43
- 46.49
جمهورية كازاخستان
+ 46.49
+
108
KAZ
tenge
@@ -14379,6 +14407,7 @@ Examples of a Publisher include a person, an organization, or a service. Typical
Kazakhstan
15637.0
+
24383
@@ -14387,7 +14416,10 @@ Examples of a Publisher include a person, an organization, or a service. Typical
Kazajstán
Data reported on country official publications or web sites (Official) or trade country files.
11952
+
+
+
Kazakhstan
1991
@@ -14395,23 +14427,28 @@ Examples of a Publisher include a person, an organization, or a service. Typical
millions of US dollars
2009
哈萨克斯坦
- 40.55
2009
+ 40.55
tenge
Calculated
Республика Казахстан
115306.0
- 1000
- la República de Kazajstán
+
Kazajstán
+ la República de Kazajstán
+ 1000
+
+ Kazakhstan
Kazakistan
+ 398
272490.0
- 398
+
Estimated
1000 Ha
哈萨克斯坦共和国
+
Manual Estimation
@@ -14421,15 +14458,16 @@ Examples of a Publisher include a person, an organization, or a service. Typical
Kazakistan
Kazakh
Kazakhstan
- тенге
KAZ
+ тенге
哈萨克的
- Population data from the UN Population Division and the data refers to the UN Revision 2008
تنغى
1000 Ha
- 哈萨克斯坦
T
+ 哈萨克斯坦
+ Population data from the UN Population Division and the data refers to the UN Revision 2008
+
كازاخستانى
le Kazakhstan
@@ -14439,36 +14477,15 @@ Examples of a Publisher include a person, an organization, or a service. Typical
2009
Manual Estimation
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+ 1
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
@@ -14478,45 +14495,50 @@ Examples of a Publisher include a person, an organization, or a service. Typical
Pharm.D. Doctor of Pharmacy
-
- Pharm.D.
+ Pharm.D.
+
-
+
+
+
+ 1
+
+
-
service
- 70
+ 70
+
- 2010-01-10T15:38:51
+ 2010-01-10T15:38:51
- -1
+ -1
A document describing a standard
- A specification giving a precise statement of a process or a service requirement, often sanctioned by a nation or industry
-
- stable
+ A specification giving a precise statement of a process or a service requirement, often sanctioned by a nation or industry
+
+ stable
http://purl.org/ontology/bibo/
- -1
+ -1
Standard
-
+
- Short Definition from OCLC Input Standards, EntW
+ Short Definition from OCLC Input Standards, EntW
- Dominican Republic
Repubblica dominicana
多米尼加的 / 多米尼加人
peso dominicano
+ 1000 Ha
4867.0
+
1000
- 1000 Ha
peso
Repubblica dominicana
DOM
@@ -14525,41 +14547,50 @@ Examples of a Publisher include a person, an organization, or a service. Typical
Dominica
10090.0
多米尼加共和国
+
la République dominicaine
多米尼加共和国
dominicano
peso
+ Dominican Republic
-72.01
2009
+
2364
-
+
2009
+
la República Dominicana
+
دومينيكي
DO
19.93
Dominican
millions of US dollars
+
Data reported on country official publications or web sites (Official) or trade country files.
1985
DOM
- Доминиканская Республика
Доминиканская Республика
- 214
- la République dominicaine
+ Доминиканская Республика
Dominican Republic
+ la République dominicaine
+ 214
2010
Manual Estimation
17.54
+
Repubblica dominicana
República Dominicana
+
+
比 索
الجمهورية الدومينيكية
- Dominican Republic (the)
Доминиканская Республика
+ Dominican Republic (the)
72
Estimated
Manual Estimation
@@ -14570,6 +14601,7 @@ Examples of a Publisher include a person, an organization, or a service. Typical
2009
1000 Ha
+
dominicain
dominicano
بيسو
@@ -14578,9 +14610,9 @@ Examples of a Publisher include a person, an organization, or a service. Typical
République dominicaine
多米尼加共和国
peso
- la República Dominicana
- песо
4832.0
+ песо
+ la República Dominicana
0.663
2009
доминиканский
@@ -14588,152 +14620,155 @@ Examples of a Publisher include a person, an organization, or a service. Typical
الجمهورية الدومينيكية
الجمهورية الدومينيكية
+
56
Population data from the UN Population Division and the data refers to the UN Revision 2008
46788.0
-
-
-
-
-
-
-
-
-
-
-
Core Laboratory
-
+
- -1
+ -1
-
+
- -1
-
- A lab providing services such as training, protocols, or access to instruments or software
+ -1
+
+ A lab providing services such as training, protocols, or access to instruments or software
Illinois
-
-
-
-
-
+
+
-
+
+
+
+
+
+
+
+ 1
+
+
-
-
- US postal address follow the format street, apt or office number (optional), city, state, and zipcode.
-
-
-
+
+ US postal address follow the format street, apt or office number (optional), city, state, and zipcode.
+
+
+
US Postal Address
-
- -1
-
+
+ -1
-
- Formal address in US postal address system.
-
-
-
+
+
+ Formal address in US postal address system.
+
+
+
-
+
- 1320 East 10th Street, Wells Library 021 Bloomington, IN 47405
+ 1320 East 10th Street, Wells Library 021 Bloomington, IN 47405
-
-
- -1
-
-
-
-
+
+
+ -1
+
+
+
+
+
-
- broader term
+
+ broader term
broader term
- true
- Public description modified from the information on this page: http://www.w3.org/TR/2005/WD-swbp-skos-core-guide-20050510/#sechierarchy .
- This relates a term that is broader in meaning (i.e. more general) to another term that is narrower in meaning, where the scope (meaning) of narrower term falls completely within the scope of the broader term.
-
-
+ true
+ Public description modified from the information on this page: http://www.w3.org/TR/2005/WD-swbp-skos-core-guide-20050510/#sechierarchy .
+ This relates a term that is broader in meaning (i.e. more general) to another term that is narrower in meaning, where the scope (meaning) of narrower term falls completely within the scope of the broader term.
+
+
- 50
- 5
- true
+ 50
+ 5
+ true
- true
+ true
- -1
+ -1
Leader Role
-
-
+
+
- A leadership role
- -1
- A broad-ranging leader concept, from leading a small temporary committee to head of a large international organization.
+ A leadership role
+ -1
+ A broad-ranging leader concept, from leading a small temporary committee to head of a large international organization.
- Morocco
143
+ 15454
Marocco
+ 1000 Ha
+ el Reino de Marruecos
+ 27.66
+ Maroc
+ Calculated
+
Population data from the UN Population Division and the data refers to the UN Revision 2008
MOR
- 27.66
- el Reino de Marruecos
- Calculated
- 15454
- 1000 Ha
- Maroc
91375.0
2009
+
-13.18
169
марокканский
+
MA
2009
- 2009
+ مغربي
Марокко
Country data reported by International Organizations where the country is a member (Semi-official) - WTO, EU, UNSD, etc.
- مغربي
+ 2009
摩洛哥王国
1000 Ha
Morocco
Morocco
摩洛哥
+
+ Morocco
le Royaume du Maroc
-
1000 Ha
+
+
le Maroc
Regno del Marocco
millions of US dollars
Morocco
+
+
MAR
Estimated
@@ -14741,6 +14776,7 @@ Examples of a Publisher include a person, an organization, or a service. Typical
dirham
المغرب
摩洛哥
+
Marocco
2009
@@ -14757,14 +14793,17 @@ Examples of a Publisher include a person, an organization, or a service. Typical
30055.0
迪拉姆
+
المغرب
marroquí
1000
+
2010
- Moroccan
المملكة المغربية
dirham marocchino
+ Moroccan
+
Manual Estimation
35.92
31993.0
@@ -14785,89 +14824,70 @@ Examples of a Publisher include a person, an organization, or a service. Typical
4940
Marruecos
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- O.D.
O.D. Doctor of Optometry
+ O.D.
+
-
+
+
+
+ -1
+ A role in an Agreement (for example, a grant) as a named investigator or key personnel.
+
+
+
+ -1
+
+ Investigator Role
+
+
+
+ true
+
+
+ E.Met. Engineer of Metallurgy
+ E.Met.
+
+
+
- -1
+ -1
A web page is an online document available (at least initially) on the world wide web. A web page is written first and foremost to appear on the web, as distinct from other online resources such as books, manuscripts or audio documents which use the web primarily as a distribution mechanism alongside other more traditional methods such as print.
-
-
+
+
Webpage
- -1
- unstable
-
- One section of a website that appears at a unique address within the parent site's address or URL on the World Wide Web
+ -1
+ unstable
+
+ One section of a website that appears at a unique address within the parent site's address or URL on the World Wide Web
http://purl.org/ontology/bibo/
-
- -1
- A role in an Agreement (for example, a grant) as a named investigator or key personnel.
-
-
-
- -1
-
- Investigator Role
-
-
-
- true
-
-
- E.Met.
-
- E.Met. Engineer of Metallurgy
-
-
-
-
-
-
+
+ 1
+
- Djibouti
millions of US dollars
جيبوتي
+
2009
Estimated
0.402
+
1985
- franc
吉布提共和国
+ franc
Djibouti
+
the Republic of Djibouti
12.71
@@ -14883,30 +14903,35 @@ Examples of a Publisher include a person, an organization, or a service. Typical
262
de Djibouti
Gibuti
-
+
2009
+
10.91
Djibouti
2320.0
2318.0
Djibouti
جيبوتي
+
franco
法 郎
吉布提
+
Data reported on country official publications or web sites (Official) or trade country files.
-
- Manual Estimation
جمهورية جيبوتي
+ Manual Estimation
+
of Djibouti
+
Djibouti
1000 Ha
+
1000 Ha
2009
@@ -14919,22 +14944,26 @@ Examples of a Publisher include a person, an organization, or a service. Typical
Djibouti
la República de Djibouti
+ Djibouti
43.42
Gibuti
- 1000
من جمهورية جيبوتي
+ 1000
+
9999
-
+
+
Джибути
- 864.0
吉布提的 / 吉布提人
Djibouti
+ 864.0
gibutiano
72
15401
+
DJ
@@ -14952,17 +14981,11 @@ Examples of a Publisher include a person, an organization, or a service. Typical
Республика Джибути
DJI
فرنك
-
-
-
-
-
-
-
-
-
-
-
+
+
+ 1
+
+
countryAreaNotes
@@ -14972,115 +14995,128 @@ Examples of a Publisher include a person, an organization, or a service. Typical
-
-
+
+
+
+
+
+
+
has global count date
- 5
-
-
+ 5
+
+
- The date on which the global citation count of the cited entity was recorded from a named bibliographic information source.
+ The date on which the global citation count of the cited entity was recorded from a named bibliographic information source.
- 5
-
+ 5
+
+
+ I.E. Industrial Engineer
+ I.E.
+
+
+
+
-
- true
+
+ true
- 5
+ 5
-
+
- 20
+ 20
associated concept
- true
-
-
-
- I.E.
-
- I.E. Industrial Engineer
-
-
+ true
+
Ph.D. Doctor of Philosophy
+ Ph.D.
+
+
- Ph.D.
-
-
-
-
-
- Primatia
-
-
-
-
-
-
+
+
+
+
+ Primatia
+
+
+
+
- FAO terminology http://www.fao.org/termportal/en/
+ FAO terminology http://www.fao.org/termportal/en/
+ http://www.fao.org/termportal/contr/es/
http://www.fao.org/termportal/contr/en/
-
-
- nameCurrencyEN
- FAO terminology
-
- 2010-06-24
- http://www.fao.org/termportal/contr/es/
+
http://www.fao.org/termportal/contr/zh/
http://www.fao.org/termportal/contr/ar/
http://www.fao.org/termportal/en/
+ nameCurrencyEN
+
+ FAO terminology
+
+ 2010-06-24
http://www.fao.org/termportal/contr/fr/
+
+ 1
+
+
+
listed author for
- 5
+ 5
+
+ 1
+
+
+
translator
- true
+ true
-
- true
+
+ true
- 55
+ 55
- This relates an information resource to the translator of the written document from one language to another.
+ This relates an information resource to the translator of the written document from one language to another.
-
-
+
+
- 5
- translator
+ 5
+ translator
- Tonga
Королевство Тонга
بانغا
Manual Estimation
@@ -15088,29 +15124,34 @@ Examples of a Publisher include a person, an organization, or a service. Typical
tongano
the Kingdom of Tonga
паанга
+
+
تونغا
T$
Tonga
- -176.22
15498
+ -176.22
مملكة تونغا
2009
311.0
+ Tonga
+
31.0
1000
TON
72.0
- tongano
- 2009
Тонга
+ 2009
le Royaume des Tonga
+ tongano
- 245
Tonga
汤加的
+ 245
тонганский
+
paanga
tongan
Tonga
@@ -15120,14 +15161,17 @@ Examples of a Publisher include a person, an organization, or a service. Typical
2009
Data reported on country official publications or web sites (Official) or trade country files.
+
Population data from the UN Population Division and the data refers to the UN Revision 2008
潘 加
Data reported on country official publications or web sites (Official) or trade country files.
+
2009
-173.7
-
1000 Ha
+
les Tonga
+
9999
1000 Ha
@@ -15135,22 +15179,25 @@ Examples of a Publisher include a person, an organization, or a service. Typical
75.0
2009
Tonga
+
Tonga
Tonga
Regno di Tonga
تونغي
تونغا
+
Estimated
Tongan
- 219
millions of US dollars
+ 219
汤 加
7808
- TON
-22.34
+ TON
104.0
汤加王国
+
TO
汤 加
-15.56
@@ -15159,105 +15206,105 @@ Examples of a Publisher include a person, an organization, or a service. Typical
Tonga
el Reino de Tonga
+
Тонга
pa'anga
1000 Ha
-
776
-
-
-
-
-
-
-
-
-
-
-
+
-
- -1
+
+ -1
Human Study
-
+
- eagle-i: Research project that uses or collects measurements or assessments about humans.
- -1
- Research project that uses or collects measurements or assessments about humans.
+ eagle-i: Research project that uses or collects measurements or assessments about humans.
+ -1
+ Research project that uses or collects measurements or assessments about humans.
-
+
+
+
+
+
+
+
+
+
+
+
Ph.B. Bachelor of Philosophy
-
- Ph.B.
+ Ph.B.
+
-
+
- For example, National Science Foundation providesFundingThrough Graduate Research Fellowship Program; National Institutes of Health providesFundingThrough National Center for Research Resources.
+ For example, National Science Foundation providesFundingThrough Graduate Research Fellowship Program; National Institutes of Health providesFundingThrough National Center for Research Resources.
-
-
+
+
- Indicates the organization that distributes funding from another organization. For example, indicates the source of flow-through funding.
+ Indicates the organization that distributes funding from another organization. For example, indicates the source of flow-through funding.
- 5
- true
- distributes funding from
+ 5
+ true
+ distributes funding from
-
+
- true
+ true
distributes funding from
+
+ I.E. Industrial Engineering
+ I.E.
+
+
+
+
- true
- 30
+ true
+ 30
- true
+ true
advisee in
-
-
-
- 5
+
+
+
+ 5
-
- I.E. Industrial Engineering
-
- I.E.
-
-
-
-
-
-
+
+
+
cited by
- 5
+ 5
- true
-
-
- true
+ true
+
+
+ true
-
- 4
+
+ 4
@@ -15265,52 +15312,52 @@ Examples of a Publisher include a person, an organization, or a service. Typical
-
+
- SDB User Manual
+ SDB User Manual
http://purl.org/ontology/bibo/
- A book of instructions or guide to a specific topic
- -1
- -1
- unstable
+ A book of instructions or guide to a specific topic
+ -1
+ -1
+ unstable
A small reference book, especially one giving instructions.
Manual
-
+
-
+
- In Phase 3 trials, an experimental study drug or treatment is given to large groups of people (1,000-3,000) to confirm its effectiveness, monitor side effects, compare it to commonly used treatments, and collect information that will allow the experimental drug or treatment to be used safely.
-
- -1
+ In Phase 3 trials, an experimental study drug or treatment is given to large groups of people (1,000-3,000) to confirm its effectiveness, monitor side effects, compare it to commonly used treatments, and collect information that will allow the experimental drug or treatment to be used safely.
+
+ -1
- -1
+ -1
-
+
Phase 3 Clinical Trial
- Phase 3 Clinical Trial
+ Phase 3 Clinical Trial
-
+
-
- Any region that goes beyond national boundaries and does not fit into any subclass of core:TransnationalRegion.
- Not sure how to access the "Editor's Comments". But as North America is a continent, it would be placed directly into the continent subclass and viewable through this class along with any other subclass entities.
-
+
+ Any region that goes beyond national boundaries and does not fit into any subclass of core:TransnationalRegion.
+ Not sure how to access the "Editor's Comments". But as North America is a continent, it would be placed directly into the continent subclass and viewable through this class along with any other subclass entities.
+
Transnational Region
- -1
- None as yet.
+ -1
+ None as yet.
- -1
+ -1
sub-Saharan Africa, North America
@@ -15323,34 +15370,35 @@ Examples of a Publisher include a person, an organization, or a service. Typical
+
+ Hawaii
+
+
+
+
+
+
+
+
+
- true
- awarded to
- 5
+ true
+ awarded to
+ 5
-
- 10
+
+ 10
-
-
- This relates an academic degree to a person's educational background.
+
+
+ This relates an academic degree to a person's educational background.
degree outcome of
-
- Hawaii
-
-
-
-
-
-
-
-
@@ -15361,43 +15409,43 @@ Examples of a Publisher include a person, an organization, or a service. Typical
-
- B.A.
+
+ B.A.
- 1
- A short form for an longer title or name.
+ 1
+ A short form for an longer title or name.
abbreviation
-
- 11
+
+ 11
-
+
Research Project
-
+
- The comment in ero says "Maybe sameAs Investigation but is subject of funding"
+ The comment in ero says "Maybe sameAs Investigation but is subject of funding"
- -1
-
- -1
- A project whose goal is the increase of knowledge, the primary aim being a greater knowledge or understanding of the subject under study.
+ -1
+
+ -1
+ A project whose goal is the increase of knowledge, the primary aim being a greater knowledge or understanding of the subject under study.
- Israel
- Израиль
+ Israeli
2009
+
Stato d'Israele
israeliano
Israele
以色列的
2009
- Calculated
nuovo shekel
+ Calculated
以色列
millions of US dollars
nuevo sheqel
@@ -15407,13 +15455,14 @@ Examples of a Publisher include a person, an organization, or a service. Typical
Israele
إسرائيل
- Israel
Israel
+ Israel
7170.0
новый шекель
- 121
2009
+ 121
Estimated
+ Israel
IL
@@ -15422,43 +15471,53 @@ Examples of a Publisher include a person, an organization, or a service. Typical
9999
34.25
Manual Estimation
+
+
195392.0
2010
israelí
0.872
1000 Ha
- 105
israélien
+ 105
+
522.6
+
以色列国
دولة إسرائيل
new sheqel
ISR
إسرائيل
Israel
+
3972
33.28
- Israël
29.49
+ Israël
الشيكل الجديد
- 1000
Israel
+ 1000
2009
Israel
- 新谢克尔
+
+ 新谢克尔
Official data reported on FAO Questionnaires from countries
el Estado de Israel
+
nouveau sheqel
Population data from the UN Population Division and the data refers to the UN Revision 2008
15431
+
the State of Israel
2009
Israël
- 2164.0
+
+
Official data reported on FAO Questionnaires from countries
+ 2164.0
إسرائيلي
以色列
1000 Ha
@@ -15470,18 +15529,7 @@ Examples of a Publisher include a person, an organization, or a service. Typical
Государство Израиль
35.68
- Israeli
-
-
-
-
-
-
-
-
-
-
-
+ Израиль
@@ -15489,26 +15537,31 @@ Examples of a Publisher include a person, an organization, or a service. Typical
- An advisory relationship in which a professor advises an undergraduate student.
+ An advisory relationship in which a professor advises an undergraduate student.
Undergraduate Advising Relationship
-
-
- 1
- 1
+
+
+ 1
+ 1
+
+
+
+
+
-
- -1
-
+
+ -1
+
- A person holding a position that is not considered to be an academic appointment.
+ A person holding a position that is not considered to be an academic appointment.
Non-Academic
-
- -1
+
+ -1
agriculturalAreaYear
@@ -15518,39 +15571,40 @@ Examples of a Publisher include a person, an organization, or a service. Typical
-
-
+
+
+
+
+ true
+ service to the profession
+
+
+
+
+ true
+
+
+ hasProfessionalActivity
+ true
+
+ 20
+ edu.cornell.mannlib.vitro.webapp.edit.n3editing.configuration.generators.AddServiceProviderRoleToPersonGenerator
+
+ 5
+
+
+ This relates a person or organization to a role they provide in delivering a service within a professional environment, such as conference organization, grant proposal review, or providing research support services.
-
- true
- service to the profession
-
-
-
-
- true
-
-
- hasProfessionalActivity
- true
-
- 20
- edu.cornell.mannlib.vitro.webapp.edit.n3editing.configuration.generators.AddServiceProviderRoleToPersonGenerator
-
- 5
-
-
- This relates a person or organization to a role they provide in delivering a service within a professional environment, such as conference organization, grant proposal review, or providing research support services.
-
- Americas
+
Amériques
+
Americas
@@ -15562,6 +15616,7 @@ Examples of a Publisher include a person, an organization, or a service. Typical
+
Северная и Южная Америка
@@ -15573,10 +15628,11 @@ Examples of a Publisher include a person, an organization, or a service. Typical
9999
美洲
+
5200
-
美洲
+
335
Americhe
@@ -15591,18 +15647,23 @@ Examples of a Publisher include a person, an organization, or a service. Typical
Americhe
Amériques
+
+
+
الأمريكتان
74166
Americas
Américas
+ Americas
+
美洲
Amériques
@@ -15612,73 +15673,50 @@ Examples of a Publisher include a person, an organization, or a service. Typical
1985
-
-
-
-
-
-
-
-
-
-
- 1
-
-
M.S.W. Master of Social Work
-
- M.S.W.
+ M.S.W.
+
-
-
-
-
- 1
-
+
-
- true
-
+
+ true
+
-
+
contributing advising relationship
- true
- 50
+ true
+ 50
- 5
-
-
-
-
-
+ 5
2010-06-24
-
+ http://www.fao.org/termportal/contr/fr/
+ http://www.fao.org/termportal/contr/es/
+ http://www.fao.org/termportal/contr/zh/
+
- http://www.fao.org/termportal/contr/en/
+ http://www.fao.org/termportal/en/
- FAO terminology http://www.fao.org/termportal/en/
-
+ http://www.fao.org/termportal/contr/en/
+ http://www.fao.org/termportal/contr/ar/
+
+ FAO terminology http://www.fao.org/termportal/en/
FAO terminology
nameCurrencyAR
- http://www.fao.org/termportal/contr/fr/
- http://www.fao.org/termportal/contr/es/
- http://www.fao.org/termportal/contr/zh/
- http://www.fao.org/termportal/en/
- http://www.fao.org/termportal/contr/ar/
@@ -15686,107 +15724,91 @@ Examples of a Publisher include a person, an organization, or a service. Typical
- I am named after Jane in the Tarzan stories. Yes, my last name really is faculty.
-
-
-
-
-
-
-
- I study monkeys, of course.
- I travel the country teaching monkeys in zoos how to communicate.
-
-
- ABC123987
-
- African Primates
- Apes
- 1234
- 454545
- jane@gmail.com
- mejane@africa.com
- III
-
-
-
- 987654321
- 5678
- 607-288-8888
- 607-255-5555
- Ms.
-
-
-
-
- Jane
- Faculty
-
-
- 123456789
- 67676767
- Faculty, Jane
- I teach monkeys to communicate.
- Elizabeth
-
- Assistant Professor
- 607-244-4444
- 607-299-9999
-
-
+
+ African Primates
+
+
+ I travel the country teaching monkeys in zoos how to communicate.
-
-
-
-
-
+
+
+
+ 67676767
+
+
+
+ I study monkeys, of course.
+
+
+
+
+
+ 123456789
+
+
+ Faculty, Jane
+
+
+
+
+
+ ABC123987
+
+
+
+
+
+
+
+ 987654321
+ Apes
+
+
+ I am named after Jane in the Tarzan stories. Yes, my last name really is faculty.
+ 5678
+
+ I teach monkeys to communicate.
- An agent that is interviewed by another agent.
-
+ An agent that is interviewed by another agent.
+
- true
-
+ true
+
interviewee
http://purl.org/ontology/bibo/
- true
- stable
-
- interviewee
+ true
+ stable
+
+ interviewee
An agent that is interviewed by another agent.
- presentationActivity
- true
+ presentationActivity
+ true
-
- 20
+
+ 20
presentations
-
- This relates a person to a description of their presentation activity.
- true
+
+ This relates a person to a description of their presentation activity.
+ true
- edu.cornell.mannlib.vitro.webapp.edit.n3editing.configuration.generators.AddPresenterRoleToPersonGenerator
- true
+ edu.cornell.mannlib.vitro.webapp.edit.n3editing.configuration.generators.AddPresenterRoleToPersonGenerator
+ true
-
+
- 5
-
-
-
-
-
+ 5
- Fiji
Fiji
FJ
1000 Ha
@@ -15794,8 +15816,8 @@ Examples of a Publisher include a person, an organization, or a service. Typical
فيجي
1985
des Fidji
- millions of US dollars
la República de Fiji
+ millions of US dollars
Fiji
0.669
Фиджи
@@ -15813,6 +15835,8 @@ Examples of a Publisher include a person, an organization, or a service. Typical
FJI
1000 Ha
+
+
1827.0
les Fidji
@@ -15824,8 +15848,9 @@ Examples of a Publisher include a person, an organization, or a service. Typical
2009
元
2009
- 2009
+
-12.46
+ 2009
斐 济
9999
dollar
@@ -15840,73 +15865,69 @@ Examples of a Publisher include a person, an organization, or a service. Typical
Фиджи
Manual Estimation
من فيجي
+
+
849.0
Manual Estimation
Fiji
+
2009
+
Fiji
Repubblica delle Isole Figi
+
Fidji
+
dollar
15409
figiano
+ Fiji
66
2895
- dólar
Estimated
+ dólar
فيجي
1827.0
Calculated
+
180.0
Fiji
- Figi
1000 Ha
+ Figi
242
+
FIJ
доллар
418.0
of Fiji
-
-
-
-
-
-
-
-
-
-
-
+
+
+ 1
+
+
- -1
+ -1
-
-
- A role of conducting funded or unfunded research, sometimes linked to an Agreement.
- Examples of research can be seen at: http://www.ufl.edu/research/products/index.html. Note these may have been funded, but the research doesn't have to be funded. Also, the research may be linked to an Agreement (for example, a Grant), but does not need to be.
- -1
- true
+
+
+ A role of conducting funded or unfunded research, sometimes linked to an Agreement.
+ Examples of research can be seen at: http://www.ufl.edu/research/products/index.html. Note these may have been funded, but the research doesn't have to be funded. Also, the research may be linked to an Agreement (for example, a Grant), but does not need to be.
+ -1
+ true
Researcher Role
-
-
-
-
- Monkey Trainer of the Year
-
-
-
- Community of Sahel-Saharan States
9999
+
+ Community of Sahel-Saharan States
Community of Sahel-Saharan States
@@ -15914,6 +15935,7 @@ Examples of a Publisher include a person, an organization, or a service. Typical
+
@@ -15931,6 +15953,7 @@ Examples of a Publisher include a person, an organization, or a service. Typical
53026
Comunidad de Estados Sahelo-Saharianos
+
http://www.cen-sad.org/new/?lang=english
Communauté des États Sahélo-Sahariens
@@ -15945,22 +15968,26 @@ Examples of a Publisher include a person, an organization, or a service. Typical
-
Сообщество сахело-сахарских государств
- CEN-SAD http://www.cen-sad.org/new/?lang=english
+
+
+ CEN-SAD http://www.cen-sad.org/new/?lang=english
+
+
+
+ Monkey Trainer of the Year
+
+
+
-
-
-
- Viet Nam
97180.0
+ 109.47
Calculated
704
- 109.47
15510
1000 Ha
@@ -15973,16 +16000,22 @@ Examples of a Publisher include a person, an organization, or a service. Typical
8227
vietnamita
Manual Estimation
+
- dong
2009
+ dong
+
88069.0
Viet Nam
VN
+
+
донг
2009
+
Viet Nam
+
23.39
dong
Estimated
@@ -15995,15 +16028,19 @@ Examples of a Publisher include a person, an organization, or a service. Typical
2010
0.572
Population data from the UN Population Division and the data refers to the UN Revision 2008
- Manual Estimation
+ Viet Nam
31007.0
+ Manual Estimation
越 南
دونغ
VNM
millions of US dollars
Viet Nam
la República Socialista de Viet Nam
+
+
Vietnam
+
فييت نام
盾
1000 Ha
@@ -16016,8 +16053,10 @@ Examples of a Publisher include a person, an organization, or a service. Typical
Vietnam
1985
Вьетнам
- Социалистическая Республика Вьетнам
10272.0
+ Социалистическая Республика Вьетнам
+
+
237
the Socialist Republic of Viet Nam
33105.1
@@ -16033,22 +16072,19 @@ Examples of a Publisher include a person, an organization, or a service. Typical
1000 Ha
VIE
越 南
- le Viet Nam
Viet Nam
+ le Viet Nam
فييتنامي
-
-
-
-
+
+
+ 1
+
+
+
+
-
-
-
-
-
-
@@ -16056,29 +16092,32 @@ Examples of a Publisher include a person, an organization, or a service. Typical
-
+
- true
- This relates a facility as being used for something, e.g. for a particular service.
+ true
+ This relates a facility as being used for something, e.g. for a particular service.
facility for
- facility for
-
- 5
-
+ facility for
+
+ 5
+
- Sint Maarten (Dutch Part)
圣马丁(荷属部分)
+
158872
9999
Sint Maarten (Parte olandese)
كوراساو
+
+
Sint Maarten (Partie Néerlandaise)
Sint Maarten (Dutch Part)
+
圣马丁(荷属部分)
Sint Maarten (Dutch Part)
كوراساو
@@ -16088,273 +16127,270 @@ Examples of a Publisher include a person, an organization, or a service. Typical
534
Sint Maarten (Parte olandese)
+
2010
+
كوراساو
Sint Maarten (Parte de los Países Bajos)
Sint Maarten (Parte olandese)
Sint Maarten (Partie Néerlandaise)
Sint Maarten (Parte de los Países Bajos)
- Sint Maarten (Dutch Part)
-
- Sint Maarten (Parte de los Países Bajos)
-
-
-
+
+ Sint Maarten (Dutch Part)
+ Sint Maarten (Dutch Part)
+ Sint Maarten (Parte de los Países Bajos)
-
-
-
M.S. Master of Science
-
- M.S.
+ M.S.
+
-
-
-
-
-
-
+
-
locations
- 11
+ 11
+
- 2010-01-10T14:30:34
+ 2010-01-10T14:30:34
-
-
-
+
+
+
-
+
-
- true
+
+ true
start
- 80
- false
+ 80
+ false
- the start of a time interval.
+ the start of a time interval.
- 1
+ 1
-
-
- 1
-
-
-
- group
- -1
- -1
-
+
+
+
+
+
+ -1
+
+
+
+
+ Research Opportunity
+
+
+ An offering through an ongoing program or single request of research support: internships, positions, financial awards or other forms of tangible or intangible support
+
+
+ -1
+
+
+
+
+
+
+
+
+
-
-
-
+
+
+
- edu.cornell.mannlib.vitro.webapp.edit.n3editing.configuration.generators.PersonHasEducationalTraining
- 10
+ edu.cornell.mannlib.vitro.webapp.edit.n3editing.configuration.generators.PersonHasEducationalTraining
+ 10
- true
- true
+ true
+ true
- true
+ true
education and training
- educational background
-
- 5
- This relates a person to the description of their educational training.
-
-
+ educational background
+
+ 5
+ This relates a person to the description of their educational training.
+
+
+
+
+ Vitro Public Ontology
+ Vitro Public Ontology
+ Vitro public constructs
+ vitro-public
+ 0.1
+
- false
- has author entry
-
+ false
+ has author entry
+
- edu.cornell.mannlib.vitro.webapp.edit.n3editing.configuration.generators.AddAuthorsToInformationResourceGenerator
- true
+ edu.cornell.mannlib.vitro.webapp.edit.n3editing.configuration.generators.AddAuthorsToInformationResourceGenerator
+ true
-
+
authors
- 5
- 10
- Relates information resources to information about its authors. Information about the authors would include, but is not limited to, the author's rank in the list of authors and whether or not that author was a corresponding author.
- true
+ 5
+ 10
+ Relates information resources to information about its authors. Information about the authors would include, but is not limited to, the author's rank in the list of authors and whether or not that author was a corresponding author.
+ true
-
+
-
+
-
- Vitro Public Ontology
- Vitro public constructs
- vitro-public
- 0.1
-
- Vitro Public Ontology
-
-
-
-
-
- -1
+
+ group
+ -1
+ -1
+
-
-
-
-
-
-
- Research Opportunity
-
-
-
- -1
-
- An offering through an ongoing program or single request of research support: internships, positions, financial awards or other forms of tangible or intangible support
-
-
-
-
-
-
-
-
-
-
-
+
+
+
-
+
OCLC Identifier
- stable
+ stable
- http://info-uri.info/registry/OAIHandler?verb=GetRecord&metadataPrefix=reg&identifier=info:oclcnum/.
+ http://info-uri.info/registry/OAIHandler?verb=GetRecord&metadataPrefix=reg&identifier=info:oclcnum/.
-bibo has the domain of this property set to the union of Collection and Document.
-
- 1
+bibo has the domain of this property set to the union of Collection and Document.
+
+ 1
http://purl.org/ontology/bibo/
Online Computer Library Center (OCLC) number
- An oclcnum is a sequential accession number assigned by OCLC as bibliographic records are entered into OCLC WorldCat (the OCLC Online Union Catalog).
+ An oclcnum is a sequential accession number assigned by OCLC as bibliographic records are entered into OCLC WorldCat (the OCLC Online Union Catalog).
- 1
-
+ 1
+
- 5
- A property linking the property c40:GlobalCitationCount to the bibliographic information source providing the global citation count information for a particular publication on a particular date.
-
+ 5
+ A property linking the property c40:GlobalCitationCount to the bibliographic information source providing the global citation count information for a particular publication on a particular date.
+
-
-
+
+
- true
+ true
has global count source
- 5
+ 5
- true
-
-
-
- FAO terminology http://www.fao.org/termportal/en/
-
-
-
- 2010-06-24
- nameCurrencyIT
-
-
- FAO terminology
- http://www.fao.org/termportal/contr/en/
- http://www.fao.org/termportal/contr/es/
- http://www.fao.org/termportal/contr/fr/
- http://www.fao.org/termportal/contr/zh/
- http://www.fao.org/termportal/en/
- http://www.fao.org/termportal/contr/ar/
+ true
+
+
+ FAO terminology http://www.fao.org/termportal/en/
+
+
+
+ 2010-06-24
+ nameCurrencyIT
+ http://www.fao.org/termportal/contr/es/
+ http://www.fao.org/termportal/contr/fr/
+
+
+ FAO terminology
+ http://www.fao.org/termportal/contr/zh/
+ http://www.fao.org/termportal/contr/en/
+ http://www.fao.org/termportal/en/
+ http://www.fao.org/termportal/contr/ar/
+
+
+ 1
+
+
+
- -1
- A service in which a service consumer receives the right to use a resource (instrument, database, software, etc) that is owned or managed by a service provider. Ownership of the accessed resource remains with the service provider during and after provision of service.
+ -1
+ A service in which a service consumer receives the right to use a resource (instrument, database, software, etc) that is owned or managed by a service provider. Ownership of the accessed resource remains with the service provider during and after provision of service.
-
-
-
+
+
+
- A service in which a service consumer receives the right to use a resource (instrument, database, software, etc) that is owned or managed by a service provider. Ownership of the accessed resource remains with the service provider during and after provisi
+ A service in which a service consumer receives the right to use a resource (instrument, database, software, etc) that is owned or managed by a service provider. Ownership of the accessed resource remains with the service provider during and after provisi
Access Service
- 20
+ 20
- -1
-
+ -1
+
-
- -1
+
+ -1
- true
+ true
Member Role
- A role of being a member in a Process or an Organization
+ A role of being a member in a Process or an Organization
+
+
+
+
+
+
+
+ 1
+
+
+
+ Nuc.E. Nuclear Engineer
+ Nuc.E.
+
+
+
+
- -1
+ -1
-
+
special_group
- -1
-
-
-
- Nuc.E.
-
- Nuc.E. Nuclear Engineer
-
-
-
-
-
-
-
+ -1
+
countryAreaUnit
@@ -16364,49 +16400,30 @@ bibo has the domain of this property set to the union of Collection and Document
-
-
-
-
-
-
-
+
+
-
- 60
+
+ 60
- true
+ true
successor organization
- true
- 5
+ true
+ 5
-
-
+
+
-
- United States of America
- 14853
-
-
- Cornell University
- New York
- Ithaca
- CIT
-
- CIT Ithaca New York
-
-
-
hasNationality
@@ -16414,46 +16431,34 @@ bibo has the domain of this property set to the union of Collection and Document
-
-
+
+
Storage Service
- A service in which a service consumer provides some material or data as input which a service provider stores and returns as output.
- -1
- 20
+ A service in which a service consumer provides some material or data as input which a service provider stores and returns as output.
+ -1
+ 20
- A service in which a service consumer provides some material or data as input which a service provider stores and returns as output.
-
+ A service in which a service consumer provides some material or data as input which a service provider stores and returns as output.
+
-
-
+
+
-
- true
- translator of
- 30
-
-
-
-
- translatorOf
-
-
-
- 5
-
- This relates something as the translator of an information resource.
+
+ 1
+
+
- Zimbabwe
доллар
271
12523.0
-
1985
+
Manual Estimation
the Republic of Zimbabwe
ZWE
@@ -16465,8 +16470,8 @@ bibo has the domain of this property set to the union of Collection and Document
Зимбабве
- Population data from the UN Population Division and the data refers to the UN Revision 2008
zimbabwano
+ Population data from the UN Population Division and the data refers to the UN Revision 2008
-22.42
Zimbabwe
@@ -16487,6 +16492,7 @@ bibo has the domain of this property set to the union of Collection and Document
元
Estimated
Z$
+
ZW
2009
津巴布韦的
@@ -16496,30 +16502,39 @@ bibo has the domain of this property set to the union of Collection and Document
1000
2009
Zimbabwe
+
Calculated
8516
- zimbabwense
+ zimbabwense
33.05
津巴布韦
- Repubblica dello Zimbabwe
+
716
-
Zimbabwe
+ Repubblica dello Zimbabwe
+
+
+
津巴布韦共和国
+
le Zimbabwe
Zimbabwe
- zimbabwéen
+ Zimbabwe
1000 Ha
+ zimbabwéen
Zimbabwe
la République du Zimbabwe
- dollar
+ dollar
Zimbabwe
+
38685.0
جمهورية زمبابوي
1000 Ha
+
+
зимбабвийский
Manual Estimation
Manual Estimation
@@ -16530,25 +16545,32 @@ bibo has the domain of this property set to the union of Collection and Document
5625.0
زمبابوي
millions of US dollars
+
39076.0
+
- 15515
16400.0
+ 15515
Zimbabwean
-
-
-
-
-
-
-
-
-
-
-
+
+
+ true
+ translator of
+ 30
+
+
+
+
+ translatorOf
+
+
+
+ 5
+
+ This relates something as the translator of an information resource.
@@ -16556,130 +16578,236 @@ bibo has the domain of this property set to the union of Collection and Document
-
+
-
+
grant awarded by
- funded by
+ funded by
- This relates a grant to the organization that awarded that grant.
+ This relates a grant to the organization that awarded that grant.
- true
-
+ true
+
- true
+ true
+
+ 20
+
+ A service that produces a physical object or data, such as a custom micro-array chip, a made to order antibody, or a behavioral dataset
+
+ Production Service
+
+
+ -1
+
+ A service that produces a physical object or data.
+
+
+
-
- 5
-
- locationOfEquipment
- This relates a facility to the equipment it houses.
+
+ 5
+
+ locationOfEquipment
+ This relates a facility to the equipment it houses.
- 40
+ 40
location of equipment
- true
-
-
- 20
-
- A service that produces a physical object or data, such as a custom micro-array chip, a made to order antibody, or a behavioral dataset
-
- Production Service
-
-
- -1
-
- A service that produces a physical object or data.
-
-
+ true
-
+
2010-06-24
+ http://www.fao.org/termportal/contr/fr/
http://www.fao.org/termportal/contr/en/
-
+
- FAO terminology http://www.fao.org/termportal/en/
- nameCurrencyES
- FAO terminology
- http://www.fao.org/termportal/contr/fr/
+ FAO terminology http://www.fao.org/termportal/en/
http://www.fao.org/termportal/contr/es/
http://www.fao.org/termportal/en/
http://www.fao.org/termportal/contr/zh/
+ nameCurrencyES
+ FAO terminology
http://www.fao.org/termportal/contr/ar/
-
-
-
+
+
+
+
+
+
+ 1
+
European Article Number/Uniform Commercier Code 13
http://purl.org/ontology/bibo/
-
- Definition source: http://en.wikipedia.org/wiki/European_Article_Numbering-Uniform_Code_Council.
-The Uniform Code Council (UCC) was the Numbering Organization in the USA to administer and manage the EAN.UCC System. In 2005 the UCC changed its name to GS1 US.
-
+
+ Definition source: http://en.wikipedia.org/wiki/European_Article_Numbering-Uniform_Code_Council.
+The Uniform Code Council (UCC) was the Numbering Organization in the USA to administer and manage the EAN.UCC System. In 2005 the UCC changed its name to GS1 US.
+
-
- stable
+
+ stable
EAN International-Uniform Code Council (EAN-UCC) 13
- EAN International-Uniform Code Council (EAN-UCC) was a supply chain standards family name, formally the EAN.UCC System, that included product barcodes which are printed on the great majority of products available in stores worldwide and electronic commerce standards.
+ EAN International-Uniform Code Council (EAN-UCC) was a supply chain standards family name, formally the EAN.UCC System, that included product barcodes which are printed on the great majority of products available in stores worldwide and electronic commerce standards.
- true
+ true
- Since we have defined geopolitical.owl.hasMember to be a subproperty of core:hasMember, we should not make changes to this property that would change the definition of geopolitical.owl.hasMember in ways that may make it inconsistent with its usage in other ontologies.
-
+ Since we have defined geopolitical.owl.hasMember to be a subproperty of core:hasMember, we should not make changes to this property that would change the definition of geopolitical.owl.hasMember in ways that may make it inconsistent with its usage in other ontologies.
+
has current member
- has member
-
+ has member
+
- This relates a group to its members.
+ This relates a group to its members.
-
- true
+
+ true
- M.Th.
-
M.Th. Master of Theology
+ M.Th.
+
-
+
-
-
-
+
+
+
+
+ 1000 Ha
+ kuna
+
+ the Republic of Croatia
+ 1000 Ha
+ CRO
+
+ HRV
+ 1300.0
+ 33969
+ Croatian
+ 2009
+ Республика Хорватия
+
+ 62
+ كرواتيي
+ millions of US dollars
+
+
+ 克罗地亚的
+ كرواتيا
+ Croatie
+ Хорватия
+ 98
+ 25066
+
+
+ Croatia
+ Official data reported on FAO Questionnaires from countries
+ 5596.0
+
+ 克罗地亚共和国
+ Croacia
+ 19.44
+
+ Хорватия
+ كونا
+ la República de Croacia
+ 库 纳
+ 克罗地亚
+ 1000 Ha
+ croato
+ 2009
+ куна
+ كرواتيا
+ Population data from the UN Population Division and the data refers to the UN Revision 2008
+ HRK
+ croata
+ 191
+ 0.767
+ HR
+ 63034.0
+ Calculated
+
+ 42.39
+ Croazia
+ 2009
+ جمهورية كرواتيا
+
+ la Croatie
+ хорватский
+ kuna
+
+ 9999
+ kuna
+
+ 1000
+
+ Croazia
+ la République de Croatie
+ 2010
+ Croatia
+
+ 1992
+
+ 13.49
+ kuna
+ croate
+ Repubblica di Croazia
+ 2009
+
+
+ 46.53
+ 4416.0
+ Official data reported on FAO Questionnaires from countries
+ 2009
+ Croatia
+
+ Official data reported on FAO Questionnaires from countries
+ 克罗地亚
+ 5659.0
+
+ Estimated
+ Croatia
+
+
+ Croacia
+
+
-
- Africa
+
África
+
Afrique
Africa
非洲
+
@@ -16698,20 +16826,24 @@ The Uniform Code Council (UCC) was the Numbering Organization in the USA to admi
+
+
Африка
-
-
+
+
+
非洲
-
-
+
+
+
أفريقيا
@@ -16722,18 +16854,21 @@ The Uniform Code Council (UCC) was the Numbering Organization in the USA to admi
África
非洲
Africa
-
+
1993
Africa
+
أفريقيا
+ Africa
Africa
+
@@ -16744,170 +16879,70 @@ The Uniform Code Council (UCC) was the Numbering Organization in the USA to admi
+
Afrique
165
9999
-
+
84906
-
-
-
-
-
-
-
-
-
-
-
- Croatia
- 1000 Ha
- kuna
- the Republic of Croatia
- 1000 Ha
- CRO
-
- HRV
- 1300.0
- 33969
- Croatian
- 2009
- Республика Хорватия
- 62
- كرواتيي
- millions of US dollars
-
- 克罗地亚的
- كرواتيا
- Croatie
- Хорватия
- 98
- 25066
-
- Croatia
- Official data reported on FAO Questionnaires from countries
- 5596.0
-
- 克罗地亚共和国
- Croacia
- 19.44
-
- Хорватия
- la República de Croacia
- كونا
- 库 纳
- 克罗地亚
- 1000 Ha
- croato
- 2009
- куна
- كرواتيا
- Population data from the UN Population Division and the data refers to the UN Revision 2008
- croata
- HRK
- 0.767
- 191
- HR
- 63034.0
- Calculated
-
- 42.39
- Croazia
- 2009
- جمهورية كرواتيا
- хорватский
- la Croatie
- kuna
- 9999
- kuna
- 1000
- Croazia
- la République de Croatie
- 2010
- Croatia
-
- 1992
-
- kuna
- 13.49
- croate
- Repubblica di Croazia
- 2009
-
- 46.53
- 4416.0
- Official data reported on FAO Questionnaires from countries
- Croatia
-
- 2009
- Official data reported on FAO Questionnaires from countries
- 克罗地亚
- 5659.0
- Estimated
- Croacia
-
-
-
-
-
-
-
-
-
-
-
-
-
Delaware
-
-
-
-
-
+
+
-
+
+
+
+
+
-
- Short definition obtained here: http://en.wiktionary.org/wiki/geopolitical_entity.
+
+ Short definition obtained here: http://en.wiktionary.org/wiki/geopolitical_entity.
Geopolitical Entity
- -1
- A geographical area which is associated with some sort of political structure.
+ -1
+ A geographical area which is associated with some sort of political structure.
- -1
+ -1
- Use subclasses of core:GeopoliticalEntity subclasses instead of this class if possible.
-
+ Use subclasses of core:GeopoliticalEntity subclasses instead of this class if possible.
+
+
+
+ 1
+
+
- Vanuatu
+
瓦努阿图的
فانواتوي
Vanuatu
Population data from the UN Population Division and the data refers to the UN Revision 2008
+
vatu
9999
جمهورية فانواتو
- 166.52
- Vanuatu
1000
+ Vanuatu
+ 166.52
VU
de Vanuatu
2009
170.21
+
Manual Estimation
Vanuatu
@@ -16918,6 +16953,7 @@ The Uniform Code Council (UCC) was the Numbering Organization in the USA to admi
Vanuatu
Республика Вануату
2009
+
1000 Ha
1000 Ha
-13.07
@@ -16928,14 +16964,19 @@ The Uniform Code Council (UCC) was the Numbering Organization in the USA to admi
Vanuatu
of Vanuatu
Repubblica di Vanuatu
-
- 187.0
+
瓦努阿图
+ 187.0
+ Vanuatu
di Vanuatu
+
+
la République de Vanuatu
155
de Vanuatu
+
+
240.0
فاتو
1219.0
@@ -16959,6 +17000,7 @@ The Uniform Code Council (UCC) was the Numbering Organization in the USA to admi
Vanuatu
вату
+
VUT
瓦努阿图
5159
@@ -16969,46 +17011,36 @@ The Uniform Code Council (UCC) was the Numbering Organization in the USA to admi
vatu
Vanuatu
Estimated
+
- 2009
2009
+
+ 2009
-
-
-
-
-
-
-
-
-
-
-
- true
- 71
+ true
+ 71
-
+
- true
- 5
+ true
+ 5
sponsors award or honor
-
+
-
+
- Belarus
بيلاروس
51.26
millions of US dollars
@@ -17017,25 +17049,30 @@ The Uniform Code Council (UCC) was the Numbering Organization in the USA to admi
32.77
+
belaruso
+ 56.16
Беларусь
- 56.16
BYE
Rbl
2009
白俄罗斯
rouble
+
rublo bielorusso
- Official data reported on FAO Questionnaires from countries
2009
+ Official data reported on FAO Questionnaires from countries
+ Belarus
BY
Calculated
+
16382
- 白俄罗斯的 / 白俄罗斯人
+
20282.0
+ 白俄罗斯的 / 白俄罗斯人
Belarus
@@ -17048,32 +17085,39 @@ The Uniform Code Council (UCC) was the Numbering Organization in the USA to admi
白俄罗斯
9999
- bélarussien
1000 Ha
+ bélarussien
+
26
2009
- Population data from the UN Population Division and the data refers to the UN Revision 2008
Belarusian
+ Population data from the UN Population Division and the data refers to the UN Revision 2008
9634.0
+
Республика Беларусь
Belarus
Беларусь
20760.0
33237
+
la République du Bélarus
Estimated
جمهورية بيلاروس
白俄罗斯共和国
+
BLR
+
+
+
57
2009
23.17
Bélarus
112
- белорусский
بيلاروس
+ белорусский
rublo
Belarús
@@ -17081,9 +17125,9 @@ The Uniform Code Council (UCC) was the Numbering Organization in the USA to admi
rouble
1000 Ha
- the Republic of Belarus
8927.0
1000 Ha
+ the Republic of Belarus
روبل
49037.0
2009
@@ -17097,19 +17141,195 @@ The Uniform Code Council (UCC) was the Numbering Organization in the USA to admi
le Bélarus
بيلاروسي
Bielorussia
-
-
-
-
-
-
+
+
+ 1000 Ha
+ United States of America
+ 71.39
+ 美 国
+
+ الولايات المتحدة الأمريكية
+ 1000 Ha
+ 2009
+ Estimated
+ USA
+
+ американский
+ 2009
+
+ 美利坚合众国
+ 914742.0
+ 1985
+
+ доллар
+
+
+ statunitense
+ 15506
+ 5.87
+ 2009
+ 231
+ les États-Unis d'Amérique
+ los Estados Unidos de América
+
+
+
+
+ 2010
+
+ Estados Unidos de América
+ Stati Uniti d'America
+ 美 元
+
+ USA
+ 840
+ États-Unis d'Amérique
+
+ Соединенные Штаты Америки
+ 403451.0
+ 2009
+ 2009
+
+
+
+
+
+
+
+ 9999
+
+
+
+ Calculated
+
+
+
+
+
+ 1.4119E7
+
+
+ Data reported on country official publications or web sites (Official) or trade country files.
+
+ دولار الولايات المتحدة الأمريكية
+ 983151.0
+
+
+
+ United_States
+ 0.902
+ the United States of America
+ 1000 Ha
+
+ Data reported on country official publications or web sites (Official) or trade country files.
+ أمريكي
+ los Estados Unidos de América
+
+
+
+ Manual Estimation
+
+
+ (of the) United States (of America)
+
+ des États-Unis (d'Amérique)
+
+
+
+
+ Population data from the UN Population Division and the data refers to the UN Revision 2008
+ dólar de EE.UU.
+ the United States of America
+ Соединенные Штаты Америки
+
+ United States of America
+ 美利坚合众国
+ الولايات المتحدة الأمريكية
-
-
+
+ 314659.0
+ US
+ 259
+ Stati Uniti d'America
+ 179.78
+
+ 1000
+ millions of US dollars
+ US dollar
+
+
+
+ les États-Unis d'Amérique
+
+
+
+ Stati Uniti d'America
+
+ الولايات المتحدة الأمريكية
+
+
+
+
+ dollar des États-Unis
+
+ de los Estados Unidos (de América)
+ dollaro USA
+ 美国的
+
+
+
+
+ 8114
+ Соединенные Штаты Америки
+
+
+ -179.15
+ -1
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ area
+
+
+
+
+
@@ -17120,20 +17340,19 @@ The Uniform Code Council (UCC) was the Numbering Organization in the USA to admi
- -1
+
+
- area
-
@@ -17148,22 +17367,27 @@ The Uniform Code Council (UCC) was the Numbering Organization in the USA to admi
+ -1
+
+
+
+
@@ -17171,8 +17395,10 @@ The Uniform Code Council (UCC) was the Numbering Organization in the USA to admi
+
+
@@ -17181,6 +17407,7 @@ The Uniform Code Council (UCC) was the Numbering Organization in the USA to admi
+
@@ -17190,6 +17417,7 @@ The Uniform Code Council (UCC) was the Numbering Organization in the USA to admi
+
@@ -17201,7 +17429,6 @@ The Uniform Code Council (UCC) was the Numbering Organization in the USA to admi
-
@@ -17211,7 +17438,6 @@ The Uniform Code Council (UCC) was the Numbering Organization in the USA to admi
-
@@ -17220,183 +17446,49 @@ The Uniform Code Council (UCC) was the Numbering Organization in the USA to admi
-
+
+
- -1
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- United States of America
- 1000 Ha
- 71.39
- 美 国
- 1000 Ha
- 2009
- الولايات المتحدة الأمريكية
- Estimated
- USA
- американский
- 2009
- 美利坚合众国
- 914742.0
- 1985
- доллар
-
-
- statunitense
- 15506
- 5.87
- 2009
- 231
- les États-Unis d'Amérique
- los Estados Unidos de América
-
- 2010
- Estados Unidos de América
- Stati Uniti d'America
- 美 元
- USA
-
- 840
- États-Unis d'Amérique
- 403451.0
- 9999
- Соединенные Штаты Америки
- 2009
- 2009
- Calculated
-
- 1.4119E7
-
- Data reported on country official publications or web sites (Official) or trade country files.
- دولار الولايات المتحدة الأمريكية
- 983151.0
- United_States
- 0.902
- the United States of America
- 1000 Ha
- Data reported on country official publications or web sites (Official) or trade country files.
- los Estados Unidos de América
- أمريكي
- Manual Estimation
- (of the) United States (of America)
- des États-Unis (d'Amérique)
- Population data from the UN Population Division and the data refers to the UN Revision 2008
- dólar de EE.UU.
- the United States of America
- Соединенные Штаты Америки
- United States of America
- 美利坚合众国
- الولايات المتحدة الأمريكية
- 314659.0
- US
- 259
- Stati Uniti d'America
- 179.78
- 1000
- millions of US dollars
- US dollar
- Stati Uniti d'America
- les États-Unis d'Amérique
- الولايات المتحدة الأمريكية
-
- dollar des États-Unis
- de los Estados Unidos (de América)
- dollaro USA
- 美国的
-
- 8114
- Соединенные Штаты Америки
- -179.15
-
-
-
-
-
-
-
-
-
-
-
B.M. Bachelor of Medicine
-
- B.M.
+ B.M.
+
-
+
+
+
+
+
+
- American Samoa
ASM
ساموا الأمريكية
+
9999
دولار الولايات المتحدة
+
samoano
+
Samoa Americana
5.0
Samoa americane
1000 Ha
萨摩亚人/萨摩亚的
- 20.0
1000
+ 20.0
+
Samoan
$
+
AMS
美属萨摩亚
@@ -17404,8 +17496,9 @@ The Uniform Code Council (UCC) was the Numbering Organization in the USA to admi
dólar de EE.UU.
2009
dollaro USA
- Population data from the UN Population Division and the data refers to the UN Revision 2008
+
美 元
+ Population data from the UN Population Division and the data refers to the UN Revision 2008
1000 Ha
美属萨摩亚
AS
@@ -17436,103 +17529,86 @@ The Uniform Code Council (UCC) was the Numbering Organization in the USA to admi
1985
American_Samoa
336
+
dollar des États-Unis
美属萨摩亚
+ American Samoa
2009
Territorio delle Samoa americane
ساموا الأمريكية
18433
- samoan
Samoa americane
+ samoan
+
Samoa Americana
67.0
-
-
-
-
-
-
-
-
- Examples shows a book has French language version. Public description source: http://bibotools.googlecode.com/svn/bibo-ontology/trunk/doc/index.html .
-
+ Examples shows a book has French language version. Public description source: http://bibotools.googlecode.com/svn/bibo-ontology/trunk/doc/index.html .
+
- true
- true
- 50
- has translation
+ true
+ true
+ 50
+ has translation
-
- 5
- Relates an original documents to a translation of that document.
+
+ 5
+ Relates an original documents to a translation of that document.
-
+
has translation
-
LL.B. Bachelor of Laws
- LL.B.
+ LL.B.
+
-
+
B.M. Bachelor of Music
-
- B.M.
+ B.M.
+
-
+
+
+
+
+
+
-
- The date the patent was issued.
+
+ The date the patent was issued.
- 5
+ 5
date issued
- false
+ false
- 4
- true
-
-
+ 4
+ true
+
+
-
-
-
-
- true
-
- 5
- true
- activityDescriptionFor
- Relates a person to a role they play.
-
-
- 1
- role of
-
-
-
-
- Finland
+
Финляндская Республика
Finlandia
- Finnish
Finlandia
- millions of US dollars
+ Finnish
euro
+ millions of US dollars
芬兰的
Population data from the UN Population Division and the data refers to the UN Revision 2008
Official data reported on FAO Questionnaires from countries
2905
+
59.8
1985
19.47
@@ -17540,6 +17616,8 @@ The Uniform Code Council (UCC) was the Numbering Organization in the USA to admi
евро
欧 元
فنلندي
+
+
FIN
1000 Ha
@@ -17550,12 +17628,13 @@ The Uniform Code Council (UCC) was the Numbering Organization in the USA to admi
la Finlande
1000
2009
+
FIN
33842.0
2010
+ 30390.0
finlandés
فنلندا
- 30390.0
Estimated
2296.0
@@ -17566,6 +17645,7 @@ The Uniform Code Council (UCC) was the Numbering Organization in the USA to admi
Finlandia
15410
+
финский
finlandese
the Republic of Finland
@@ -17573,56 +17653,69 @@ The Uniform Code Council (UCC) was the Numbering Organization in the USA to admi
芬兰共和国
la República de Finlandia
+
Finland
Repubblica di Finlandia
euro
Финляндия
EUR or €
+ Finland
+
1000 Ha
2009
2009
1000 Ha
Finland
- 芬 兰
-
Official data reported on FAO Questionnaires from countries
+
+
+ يورو
84
9999
FI
- يورو
+ 芬 兰
Финляндия
+
Calculated
فنلندا
Finlande
+
finlandais
- 237989.0
Finland
+ 237989.0
0.871
31.58
5326.0
2009
67
euro
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+ true
+
+ 5
+ true
+ activityDescriptionFor
+ Relates a person to a role they play.
+
+
+ 1
+ role of
+
+
+
- South Asian Association for Regional Cooperation
- SAARC http://www.saarc-sec.org/
+ SAARC http://www.saarc-sec.org/
South Asian Association for Regional Cooperation
SAARC
+
Asociación del Asia Meridional para la Cooperación Regional
2010-08-31
Association sud-asiatique de coopération régionale
@@ -17631,30 +17724,134 @@ The Uniform Code Council (UCC) was the Numbering Organization in the USA to admi
9999
+
2005
Association sud-asiatique de coopération régionale
-
+
Asociación del Asia Meridional para la Cooperación Regional
Ассоциация регионального сотрудничества Южной Азии
南亚区域合作协会
+
+
رابطة التعاون الاقليمى فى جنوب آسيا
South Asian Association for Regional Cooperation
-
-
+ South Asian Association for Regional Cooperation
44740
+
+
ASACR
+
+
+
+
+
+
+
+ 阿尔巴尼亚
+ 2740.0
+ албанский
+
+ Albania
+ лек
+ ألباني
+ 241
+ 42.65
+
+ 14640
+ Albania
+ 008
+ 9999
+ AL
+ lek
+ Албания
+ 2009
+ 列克
+ ALB
+ Albanie
+ 2875.0
+ Албания
+ 2010
+ Albania
+
+ 2009
+
+ 2009
+ la República de Albania
+ Albania
+ 1985
+ albanese
+ ألبانيا
+ 3155.0
+
+ lek
+ Official data reported on FAO Questionnaires from countries
+ the Republic of Albania
+ 阿尔巴尼亚
+
+ 1000 Ha
+ lek
+ albanais
+ Calculated
+ lek
+
+
+ 0.719
+ Official data reported on FAO Questionnaires from countries
-
-
+ Albania
+ Population data from the UN Population Division and the data refers to the UN Revision 2008
+ 1000 Ha
+ 3
+ 12015.0
+
+ 1000 Ha
+ 阿尔巴尼亚的 / 阿尔巴尼亚人
+
+ Albania
+ millions of US dollars
+ albanés
+
+
+ جمهورية ألبانيا
+ 2009
+ 39.65
+ Estimated
+ ليك
+ 19.26
+
+
+ 阿尔巴尼亚共和国
+ 21.06
+
+ ألبانيا
+ Repubblica d'Albania
+
+ lek
+ Albania
+ ALB
+
+
+ 1204.29
+
+ Albania
+
+
+ 1000
+ la République d'Albanie
+ Official data reported on FAO Questionnaires from countries
+ Albanian
+ Республика Албания
+ 3
+ l'Albanie
+ 2009
- Burundi
2009
la República de Burundi
Manual Estimation
@@ -17670,6 +17867,7 @@ The Uniform Code Council (UCC) was the Numbering Organization in the USA to admi
Population data from the UN Population Division and the data refers to the UN Revision 2008
2010
+
28.99
8303.0
burundiano
@@ -17681,8 +17879,12 @@ The Uniform Code Council (UCC) was the Numbering Organization in the USA to admi
布隆迪共和国
بوروندي
la République du Burundi
+
Республика Бурунди
+
+
franc
+
Repubblica di Burundi
@@ -17711,6 +17913,7 @@ The Uniform Code Council (UCC) was the Numbering Organization in the USA to admi
Data reported on country official publications or web sites (Official) or trade country files.
BDI
+
布隆迪
burundese
F Bu
@@ -17720,13 +17923,16 @@ The Uniform Code Council (UCC) was the Numbering Organization in the USA to admi
Burundi
1985
Manual Estimation
+
布隆迪
-2.31
Burundi
- бурундийский
+
بوروندي
2009
+ бурундийский
+
2150.0
15382
@@ -17735,171 +17941,76 @@ The Uniform Code Council (UCC) was the Numbering Organization in the USA to admi
Burundi
43
- le Burundi
- Burundi
Burundi
-
+
+ Burundi
1000 Ha
+
+ le Burundi
+ Burundi
BI
Burundi
2783.0
法 郎
+
2009
BDI
-
-
-
-
-
-
-
-
-
-
-
-
-
- Albania
- 阿尔巴尼亚
- 2740.0
- албанский
-
- лек
- ألباني
- 241
- 42.65
-
- 14640
- Albania
- AL
- 008
- 9999
- lek
- Албания
- 2009
- 列克
- ALB
- Albanie
- 2875.0
- 2010
- 2009
- Албания
- Albania
- 2009
- la República de Albania
- Albania
- 1985
- albanese
- ألبانيا
- 3155.0
-
- lek
- Official data reported on FAO Questionnaires from countries
- the Republic of Albania
-
- 1000 Ha
- 阿尔巴尼亚
- albanais
- lek
- Calculated
- lek
-
- 0.719
- Official data reported on FAO Questionnaires from countries
- Albania
- Population data from the UN Population Division and the data refers to the UN Revision 2008
- 1000 Ha
- 3
- 12015.0
- 阿尔巴尼亚的 / 阿尔巴尼亚人
- 1000 Ha
-
- Albania
- albanés
- millions of US dollars
-
- جمهورية ألبانيا
- 2009
- 39.65
- Estimated
- ليك
- 19.26
-
-
- 阿尔巴尼亚共和国
- 21.06
- ألبانيا
- Repubblica d'Albania
-
- lek
- Albania
- ALB
-
- 1204.29
-
- Albania
- 1000
- la République d'Albanie
- Official data reported on FAO Questionnaires from countries
- Albanian
- Республика Албания
- 3
- l'Albanie
- 2009
-
-
-
-
-
-
-
-
-
-
-
+
+ Litt.M. Master of Letters
+ Litt.M.
+
+
+
+
- Maldives
Rf
-
Maldives
1000 Ha
- 462
+
Мальдивские Острова
+ 462
MV
MDV
мальдивский
+
+
4534
maldiviano
Maldivas
1000
+
154
MDV
Data reported on country official publications or web sites (Official) or trade country files.
- 2009
Мальдивские
+ 2009
ملديف
+
0.602
马尔代夫共和国
- -0.7
ملديفي
+ -0.7
2009
Repubblica di Moldova
les Maldives
maldivien
+
rupia maldiviana
rufiyaa
+
la República de Maldivas
6.93
+
1000 Ha
millions of US dollars
@@ -17913,23 +18024,28 @@ The Uniform Code Council (UCC) was the Numbering Organization in the USA to admi
Repubblica delle Maldive
+
30.0
+
2009
马尔代夫
Maldives
Мальдивская Республика
309.0
73.58
+ Maldives
+
1473.0
鲁菲亚
Estimated
Data reported on country official publications or web sites (Official) or trade country files.
Maldives
- 9999
Calculated
+ 9999
la République des Maldives
30.0
+
2009
15447
руфия
@@ -17948,27 +18064,12 @@ The Uniform Code Council (UCC) was the Numbering Organization in the USA to admi
Maldivas
Manual Estimation
Population data from the UN Population Division and the data refers to the UN Revision 2008
-
-
-
-
-
-
-
-
-
-
-
-
-
- Litt.M.
- Litt.M. Master of Letters
-
-
+
+ mejane@africa.com
+
- Mali
Manual Estimation
the Republic of Mali
@@ -17983,26 +18084,32 @@ The Uniform Code Council (UCC) was the Numbering Organization in the USA to admi
Malí
Республика Мали
2009
+ Mali
133
millions of US dollars
+
+
مالي
1000 Ha
+
1000 Ha
- 1000
- 13010.0
25.0
+ 13010.0
+ 1000
+
1000 Ha
- MLI
马里共和国
+ MLI
مالي
- franc CFA (Communauté financière africaine)
malien
+ franc CFA (Communauté financière africaine)
+
franco CFA
8996.0
马 里
@@ -18010,10 +18117,11 @@ The Uniform Code Council (UCC) was the Numbering Organization in the USA to admi
4540
франк КФА
- franco CFA (Communauté financière africaine)
CFA franc (Communauté financière africaine)
فرنك الجماعة المالية الأفريقية
+ franco CFA (Communauté financière africaine)
Malí
+
Population data from the UN Population Division and the data refers to the UN Revision 2008
124019.0
@@ -18026,6 +18134,7 @@ The Uniform Code Council (UCC) was the Numbering Organization in the USA to admi
4.24
466
1985
+
مالي
Mali
@@ -18033,15 +18142,17 @@ The Uniform Code Council (UCC) was the Numbering Organization in the USA to admi
10.16
Malian
- Mali
Мали
-
+ Mali
Manual Estimation
- малийский
+
15448
+ малийский
+
la República de Malí
- le Mali
+
Mali
+ le Mali
2010
2009
马 里
@@ -18050,16 +18161,18 @@ The Uniform Code Council (UCC) was the Numbering Organization in the USA to admi
-12.24
马里的
- 非洲法郎
- 155
-
-
+ 155
+ 非洲法郎
+
- 2009
-
+
+
Mali
+
+ 2009
ML
+
122019.0
0.309
maliano
@@ -18067,116 +18180,126 @@ The Uniform Code Council (UCC) was the Numbering Organization in the USA to admi
maliense
Manual Estimation
-
-
-
-
-
-
-
-
-
-
-
Florida
-
-
-
-
-
+
+
-
+
+
+
+
+
+
+
+ 1
+
+
-
+
clinical role of
-
+
- 5
- 70
- true
-
+ 5
+ 70
+ true
+
-
-
-
+ USA1234567890
USA1234567890
-
+
+
-
- USA1234567890
+
+
+
+
+
+
+
+
Kentucky
-
-
-
-
-
+
+
-
+
+
+
+
+
B.M.S. Bachelor of Marine Science
-
- B.M.S.
+ B.M.S.
+
-
+
+
Presenter Role
-
+
-
-
- true
- A role of presenting information
-
-
- Are we assuming that a PresenterRole is in a Presentation? Or could you have a PresenterRole in, say, a committee?
- -1
+
+ true
+ A role of presenting information
+
+
+
+ Are we assuming that a PresenterRole is in a Presentation? Or could you have a PresenterRole in, say, a committee?
+ -1
- -1
-
-
+ -1
+
+
+
+
+
+
- Mongolia
156412.0
2009
Estimated
蒙古的
Mongolia
+ Mongolia
1000 Ha
+
0.622
+
tughrik
167
+
- la Mongolie
Монголия
+ la Mongolie
Calculated
- Mongolia
- Mongolia
Монголия
+ Mongolia
+ Mongolia
mongol
mongolo
2009
- 15453
115800.0
+ 15453
монгольский
+
Tog
4202.0
Mongolia
@@ -18187,37 +18310,42 @@ The Uniform Code Council (UCC) was the Numbering Organization in the USA to admi
منغوليا
- 2009
41.57
+ 2009
Manual Estimation
119.92
+
منغوليا
1000 Ha
mongol
тугрик
+
توغروغ
1985
蒙 古
155356.0
millions of US dollars
141
- Mongolia
+ togrog
Data reported on country official publications or web sites (Official) or trade country files.
منغوليا
- togrog
2009
+ Mongolia
Mongolia
2671.0
2010
-
Mongolia
+
+
togrog
+
+
蒙古国
52.15
Монголия
@@ -18230,37 +18358,28 @@ The Uniform Code Council (UCC) was the Numbering Organization in the USA to admi
Mongolie
Mongolia
1000
- Population data from the UN Population Division and the data refers to the UN Revision 2008
- MN
Manual Estimation
+ MN
+ Population data from the UN Population Division and the data refers to the UN Revision 2008
+
496
la Mongolie
+
4908
منغولي
Mongolia
-
-
-
-
-
-
-
-
-
-
-
- 60
-
+ 60
+
- 1
+ 1
-
+
-
+
primary phone
@@ -18268,69 +18387,52 @@ The Uniform Code Council (UCC) was the Numbering Organization in the USA to admi
-
- New Mexico
-
-
-
-
-
-
-
-
- Peer review is the process by which articles are chosen to be included in a refereed journal. An editorial board consisting of experts in the same field as the author review the article and decide if it is authoritative enough for publication.
peer reviewed
+ Peer review is the process by which articles are chosen to be included in a refereed journal. An editorial board consisting of experts in the same field as the author review the article and decide if it is authoritative enough for publication.
+
-
-
-
-
- -1
-
-
- A regularly offered service in support of an academic, research, or administrative function (not personal or professional service by an individual)
- Service
-
- -1
-
-
-
-
-
- UITS service is the information technology services provided by Indiana University. SC.
-
-
-
- UITS service
-
-
-
+
+ New Mexico
+
+
+
+
+
+
+
+
+
+
+ 1
+
+
- true
+ true
-
+
receipt of
-
- true
+
+ true
- 5
-
+ 5
+
- Guatemala
la República de Guatemala
Guatemalan
1000 Ha
Guatemala
+
17.82
+
-92.23
quetzal
Guatemala
@@ -18343,6 +18445,7 @@ The Uniform Code Council (UCC) was the Numbering Organization in the USA to admi
GTM
GT
10889.0
+
غواتيمالي
2010
@@ -18352,6 +18455,7 @@ The Uniform Code Council (UCC) was the Numbering Organization in the USA to admi
1985
2009
2009
+
2009
-88.23
quetzal
@@ -18363,8 +18467,13 @@ The Uniform Code Council (UCC) was the Numbering Organization in the USA to admi
Manual Estimation
4395.0
危地马拉的
+
+
+
GUA
+ Guatemala
quetzal
+
Manual Estimation
كتزال
Республика Гватемала
@@ -18373,15 +18482,16 @@ The Uniform Code Council (UCC) was the Numbering Organization in the USA to admi
la République du Guatemala
гватемальский
0.56
+
+ quetzal
9999
guatemalteco
- quetzal
-
Calculated
جمهورية غواتيمالا
2009
危地马拉
+
37322.0
1000 Ha
Guatemala
@@ -18393,8 +18503,8 @@ The Uniform Code Council (UCC) was the Numbering Organization in the USA to admi
13.74
Q
Guatemala
- Guatemala
+ Guatemala
Estimated
危地马拉共和国
14027.0
@@ -18407,20 +18517,11 @@ The Uniform Code Council (UCC) was the Numbering Organization in the USA to admi
Guatemala
millions of US dollars
+
320
-
-
-
-
-
-
-
-
-
-
-
+
@@ -18430,61 +18531,66 @@ The Uniform Code Council (UCC) was the Numbering Organization in the USA to admi
+
+ 1
+
+
+
- The grounds of a school, college, university, or hospital. Or, a large, usually suburban, landscaped business or industrial site.
-
-
+ The grounds of a school, college, university, or hospital. Or, a large, usually suburban, landscaped business or industrial site.
+
+
- Definition taken from dictionary.com (http://dictionary.reference.com/browse/campus).
+ Definition taken from dictionary.com (http://dictionary.reference.com/browse/campus).
Campus
-
- Cornell Ithaca; Cornell Geneva; Cornell New York City; Cornell Qatar
- -1
- -1
+
+ Cornell Ithaca; Cornell Geneva; Cornell New York City; Cornell Qatar
+ -1
+ -1
- true
- This relates a person's educational training to the person.
+ true
+ This relates a person's educational training to the person.
- educational background of
+ educational background of
- 5
+ 5
-
- true
- 10
-
-
+
+ true
+ 10
+
+
education or training of
- Short Definition from the bibo ontology
+ Short Definition from the bibo ontology
Slide
http://purl.org/ontology/bibo/
-
-
+
+
- -1
+ -1
- A slide in a slideshow
+ A slide in a slideshow
A slide in a slideshow
- unstable
- -1
+ unstable
+ -1
- Aruba
ARU
+
Aruba
أروبا
阿鲁巴岛
@@ -18493,194 +18599,212 @@ The Uniform Code Council (UCC) was the Numbering Organization in the USA to admi
ABW
Aruba
650
+
+
14
+ Aruba
+
+
+
79203
+
22.0
AW
1986
532
-
-
-
-
-
-
-
-
+
LL.D. Doctor of Laws
-
- LL.D.
+ LL.D.
+
-
+
-
B.J. Bachelor of Journalism
- B.J.
+ B.J.
+
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 1
+
+
-
- -1
+
+ -1
http://purl.org/ontology/bibo/
- Something carried out, acted or rendered.
- -1
- unstable
-
+ Something carried out, acted or rendered.
+ -1
+ unstable
+
A public performance.
Performance
-
+
-
- S.B.
S.B. Bachelor of Science
+ S.B.
+
-
+
-
J.S.D. Doctor of Juristic Science
- J.S.D.
+ J.S.D.
+
-
-
-
-
- Lily
- Librarian
- Librarian, Lily
- Assistant Librarian
-
-
-
-
+
Michigan
-
-
-
-
-
+
+
-
+
+
+
+
+
+
+
+ Librarian, Lily
+
+
+
+
+
+
- B.L.S.
-
B.L.S. Bachelor of Liberal Studies
+ B.L.S.
+
-
+
- FAO terminology http://www.fao.org/termportal/en/
+ http://www.fao.org/termportal/contr/ar/
+ http://www.fao.org/termportal/contr/fr/
+ FAO terminology http://www.fao.org/termportal/en/
2010-06-24
-
+
+ http://www.fao.org/termportal/contr/es/
+ http://www.fao.org/termportal/contr/zh/
http://www.fao.org/termportal/contr/en/
FAO terminology
-
+ http://www.fao.org/termportal/en/
+
nameCurrencyZH
- http://www.fao.org/termportal/contr/ar/
- http://www.fao.org/termportal/contr/fr/
- http://www.fao.org/termportal/contr/es/
- http://www.fao.org/termportal/contr/zh/
- http://www.fao.org/termportal/en/
-
- Public Description for bibo:distributor taken from here: http://bibotools.googlecode.com/svn/bibo-ontology/trunk/doc/index.html .
-
+
+ Public Description for bibo:distributor taken from here: http://bibotools.googlecode.com/svn/bibo-ontology/trunk/doc/index.html .
+
distributes
- distributes
- 5
- This can relate anything to the thing it distributes. The inverse of this is distributor and the foaf definition for distributor is as follows - Distributor of a document or a collection of documents.
- true
- 70
-
+ distributes
+ 5
+ This can relate anything to the thing it distributes. The inverse of this is distributor and the foaf definition for distributor is as follows - Distributor of a document or a collection of documents.
+ true
+ 70
+
-
- 70
+
+ 70
clinical activities
- 5
- true
- true
+ 5
+ true
+ true
-
- edu.cornell.mannlib.vitro.webapp.edit.n3editing.configuration.generators.AddClinicalRoleToPersonGenerator
+
+ edu.cornell.mannlib.vitro.webapp.edit.n3editing.configuration.generators.AddClinicalRoleToPersonGenerator
- true
-
+ true
+
+
+
+
+
+
preferredNamespacePrefix
- A prefix to be used, instead of the full namespace URI, use when indicating terms from the specified vocabulary.
+ A prefix to be used, instead of the full namespace URI, use when indicating terms from the specified vocabulary.
-
-
+
+
email
- 1
+ 1
- 9
-
+ 9
+
-
-
+
+
- 5
- 5
+ 5
+ 5
- A formal correction to an error introduced by the publisher into a previously published document.
-
-
-
+ A formal correction to an error introduced by the publisher into a previously published document.
+
+
+
Erratum
- A formal correction to an error introduced by the publisher into a previously published document.
+ A formal correction to an error introduced by the publisher into a previously published document.
-
J.D. Doctor of Laws
- J.D.
+ J.D.
+
-
+
- South Sudan
sursudanés
728
South Sudanese
@@ -18691,23 +18815,30 @@ The Uniform Code Council (UCC) was the Numbering Organization in the USA to admi
苏丹南方共和国
sud-soudanais
+
sud sudanese
Sudán del Sur
苏丹南方
+
Soudan du Sud
Южный Судан
جنوب السودان
Sud Sudan
+
Республика Южный Судан
جنوب السودان
+
South Sudan
+
+
9999
Южный Судан
SSD
+
Soudan du Sud
SS
@@ -18719,26 +18850,19 @@ The Uniform Code Council (UCC) was the Numbering Organization in the USA to admi
South Sudan
Republic of South Sudan
- 南苏丹的/南苏丹人
جمهورية جنوب السودان جمهورية جنوب السودان
+ 南苏丹的/南苏丹人
+
+
Sudán del Sur
República de Sudán del Sur
Sud Sudan
-
- Repubblica del Sud Sudan
-
-
-
-
-
-
-
-
-
+
+ South Sudan
+ Repubblica del Sud Sudan
- Anguilla
dólar del Caribe oriental
Population data from the UN Population Division and the data refers to the UN Revision 2008
Anguilla
@@ -18755,9 +18879,12 @@ The Uniform Code Council (UCC) was the Numbering Organization in the USA to admi
安圭拉
1000
+
Anguilla
1000 Ha
+
2009
+
de Anguilla
Data reported on country official publications or web sites (Official) or trade country files.
Isola d'Anguilla
@@ -18771,6 +18898,7 @@ The Uniform Code Council (UCC) was the Numbering Organization in the USA to admi
di Anguilla
2009
من أنغويلا
+
1985
Anguillan
Anguilla
@@ -18778,6 +18906,7 @@ The Uniform Code Council (UCC) was the Numbering Organization in the USA to admi
2547
安圭拉的/安圭拉人
+
dollaro dei Caraibi orientali
29189
Anguilla
@@ -18788,6 +18917,7 @@ The Uniform Code Council (UCC) was the Numbering Organization in the USA to admi
9
Anguilla
EC$
+
9.0
أنغويلا
9999
@@ -18795,60 +18925,66 @@ The Uniform Code Council (UCC) was the Numbering Organization in the USA to admi
9.0
восточнокарибский доллар
Anguilla
+
+
Anguilla
Data reported on country official publications or web sites (Official) or trade country files.
ANL
+ Anguilla
dollar des Caraïbes orientales
Anguilla
(из/ житель) Ангильи
-
-
-
-
-
-
-
-
- B.L.S.
-
B.L.S. Bachelor of Library Science
+ B.L.S.
+
-
+
-
-
how does this work
-
-
+
+
+
+
+
+ 1
+
+
New Jersey
-
-
-
-
-
+
+
-
+
+
+
+
+
+
+
+
+
+
- Qatar
2009
de Qatar
Manual Estimation
- millions of US dollars
- qatarien
1000 Ha
+ qatarien
1000 Ha
+ millions of US dollars
Population data from the UN Population Division and the data refers to the UN Revision 2008
ريال
QA
قطر
QAT
+
Qatar
+
卡塔尔
Qatar
@@ -18858,12 +18994,16 @@ The Uniform Code Council (UCC) was the Numbering Organization in the USA to admi
1409.0
el Estado de Qatar
6395
-
riyal
- 0.803
- of Qatar
риал
+ 0.803
+
+
+ of Qatar
+
+
Qatar
+ Qatar
Qatar
65.0
201
@@ -18872,22 +19012,26 @@ The Uniform Code Council (UCC) was the Numbering Organization in the USA to admi
rial qatariano
Катар
Data reported on country official publications or web sites (Official) or trade country files.
+
Estimated
Calculated
2009
2009
卡塔尔的
+
Qatar
1985
Qatar
2009
- qatariano
- 1000 Ha
-
26.16
+ 1000 Ha
+ qatariano
+
1159.0
2009
QR
+
+
Stato del Qatar
Государство Катар
1159.0
@@ -18897,13 +19041,14 @@ The Uniform Code Council (UCC) was the Numbering Organization in the USA to admi
15474
قطر
قطري
- 98313.0
2010
+ 98313.0
Катар
51.63
l'État du Qatar
Qatar
+
179
卡塔尔国
@@ -18915,130 +19060,122 @@ The Uniform Code Council (UCC) was the Numbering Organization in the USA to admi
1000
Data reported on country official publications or web sites (Official) or trade country files.
the State of Qatar
- 24.47
-
-
-
-
-
-
-
-
-
-
+ 24.47
- For data ingest from authoritative sources to record the actual way a person was listed, as potentially valuable information for provenance and person disambiguation. Represents one person's information from one source at one particular time.
- For data ingest from authoritative sources to record the actual way a person was listed, as potentially valuable information for provenance and person disambiguation.
+ For data ingest from authoritative sources to record the actual way a person was listed, as potentially valuable information for provenance and person disambiguation. Represents one person's information from one source at one particular time.
+ For data ingest from authoritative sources to record the actual way a person was listed, as potentially valuable information for provenance and person disambiguation.
- 1
+ 1
-
- 90
+
+ 90
Person As Listed
-
+
-
- Litt.B.
Litt.B. Bachelor of Letters
+ Litt.B.
+
-
+
-
-
+
+
-
+
- true
- 60
+ true
+ 60
-
- 5
+
+ 5
publication venue for
-
+
-
-
-
- Phase 2 Clinical Trial
- -1
-
-
-
- Phase 2 Clinical Trial
-
-
- In Phase 2 trials, an experimental study drug or treatment is given to a larger group of people (100-300) to see if it is effective and to further evaluate its safety.
-
-
- 5
-
-
AGROVOC
- AGROVOC http://aims.fao.org/website/Search-AGROVOC/sub
-
-
- codeAGROVOC
-
-
- http://aims.fao.org/website/Search-AGROVOC/sub
http://aims.fao.org/fr/website/Search-AGROVOC/sub
+ AGROVOC http://aims.fao.org/website/Search-AGROVOC/sub
http://aims.fao.org/zh-hans/website/Search-AGROVOC/sub
+
+
http://aims.fao.org/ar/website/Search-AGROVOC/sub
+ codeAGROVOC
+
+
http://aims.fao.org/es/website/Search-AGROVOC/sub
+ http://aims.fao.org/website/Search-AGROVOC/sub
+
+
+
+
+ Phase 2 Clinical Trial
+ -1
+
+
+
+ Phase 2 Clinical Trial
+
+
+ In Phase 2 trials, an experimental study drug or treatment is given to a larger group of people (100-300) to see if it is effective and to further evaluate its safety.
+
+
+ 5
+
-
- true
+
+ true
- true
-
+ true
+
-
- An entity responsible for making contributions to the resource. Examples of a Contributor include a person, an organization, or a service. Typically, the name of a Contributor should be used to indicate the entity.
+
+ An entity responsible for making contributions to the resource. Examples of a Contributor include a person, an organization, or a service. Typically, the name of a Contributor should be used to indicate the entity.
contributor
- contributor
- Used to link a bibliographic item to one of its contributor: can be an author, an editor, a publisher, etc.
+ contributor
+ Used to link a bibliographic item to one of its contributor: can be an author, an editor, a publisher, etc.
-
- B.Lit.
B.Lit. Bachelor of Literature
+ B.Lit.
+
-
+
- Azerbaijan
+
2009
Azerbaiyán
+
- the Republic of Azerbaijan
+ the Republic of Azerbaijan
Азербайджанская Республика
8832.0
+ Azerbaijan
43019.0
Official data reported on FAO Questionnaires from countries
الجمهورية الأذربيجانية
la República de Azerbaiyán
- AZE
manat
+ AZE
أذربيجان
@@ -19053,22 +19190,28 @@ The Uniform Code Council (UCC) was the Numbering Organization in the USA to admi
1991
+ أذربيجاني
阿塞拜疆
Azerbaigian
- أذربيجاني
- Estimated
- Азербайджан
41.91
+ Азербайджан
20522
+
+
+
+ Estimated
1000
+
+
52
Azerbaigian
+
Official data reported on FAO Questionnaires from countries
9026
-
44.77
+
阿塞拜疆的 / 阿塞拜疆人
19
Population data from the UN Population Division and the data refers to the UN Revision 2008
@@ -19090,14 +19233,15 @@ The Uniform Code Council (UCC) was the Numbering Organization in the USA to admi
1000 Ha
031
Azerbaijani
- 9999
مانات
+ 9999
AZ
manat azero
азербайджанский
la République d'Azerbaïdjan
azerbaïdjanais
+
阿塞拜疆共和国
أذربيجان
Calculated
@@ -19105,26 +19249,16 @@ The Uniform Code Council (UCC) was the Numbering Organization in the USA to admi
2009
AZE
2009
+
0.713
- azerbaigiano
50.61
+ azerbaigiano
+
4757.3
-
-
-
-
-
-
-
-
-
-
-
- Food and Agriculture Organization of the United Nations
FAO
@@ -19132,6 +19266,7 @@ The Uniform Code Council (UCC) was the Numbering Organization in the USA to admi
Organizzazione delle Nazioni Unite per l'alimentazione e l'agricoltura
+
@@ -19151,7 +19286,7 @@ The Uniform Code Council (UCC) was the Numbering Organization in the USA to admi
联合国粮食及农业组织
- FAO Terminology http://termportal.fao.org/faonocs/main/start.do?lang=en&lang2=en
+ FAO Terminology http://termportal.fao.org/faonocs/main/start.do?lang=en&lang2=en
@@ -19204,9 +19339,11 @@ The Uniform Code Council (UCC) was the Numbering Organization in the USA to admi
+
+
@@ -19247,14 +19384,15 @@ The Uniform Code Council (UCC) was the Numbering Organization in the USA to admi
+
2791
-
+
@@ -19271,26 +19409,26 @@ The Uniform Code Council (UCC) was the Numbering Organization in the USA to admi
Продовольственная и сельскохозяйственная организация Объединенных Наций
-
Продовольственная
+
-
-
+
+
- Organisation des Nations Unies pour l'alimentation et l'agriculture
+ Organisation des Nations Unies pour l'alimentation et l'agriculture
-
Organisation des Nations Unies pour l'alimentation et l'agriculture
+
@@ -19298,7 +19436,7 @@ The Uniform Code Council (UCC) was the Numbering Organization in the USA to admi
-
+
@@ -19313,11 +19451,12 @@ The Uniform Code Council (UCC) was the Numbering Organization in the USA to admi
Food and Agriculture Organization of the United Nations
46063
+ Food and Agriculture Organization of the United Nations
Organización de las Naciones Unidas para la Alimentación y la Agricultura
ФАО
-
+
@@ -19340,175 +19479,191 @@ The Uniform Code Council (UCC) was the Numbering Organization in the USA to admi
-
+
-
+
-
-
-
-
-
- -1
+
+ -1
-
+
- An organism is a material entity that is an individual living system, such as animal, plant, bacteria or virus, that is capable of replicating or reproducing, growth and maintenance in the right environment.
-
- -1
+ An organism is a material entity that is an individual living system, such as animal, plant, bacteria or virus, that is capable of replicating or reproducing, growth and maintenance in the right environment.
+
+ -1
Organism
- OBI: An organism is material entity that is an individual living system, such as animal, plant, bacteria or virus, that is capable of replicating or reproducing, growth and maintenance in the right environment. An organism may be unicellular or made up, like humans, of many billions of cells divided into specialized tissues and organs.
-NOTE that we are not addressing for now the issue of whether a foaf:Person is a subclass of obi:Organism
+ OBI: An organism is material entity that is an individual living system, such as animal, plant, bacteria or virus, that is capable of replicating or reproducing, growth and maintenance in the right environment. An organism may be unicellular or made up, like humans, of many billions of cells divided into specialized tissues and organs.
+NOTE that we are not addressing for now the issue of whether a foaf:Person is a subclass of obi:Organism
+
+
+
+
+
+
+
+ 1
+
+
+
+ 5404
+ 1990
+
+
+ 西欧
+
+
+ أوروبا الغربية
+ 西欧
+ Europe occidentale
+
+ 西欧
+ Западная Европа
+ Europe occidentale
+
+ أوروبا الغربية
+
+ western Europe
+
western Europe
Europe occidentale
Europa occidentale
-
- 9999
- Europa occidental
- أوروبا الغربية
- 1990
- أوروبا الغربية
- Западная Европа
- 155
- Europa occidental
- Западная Европа
- Europe occidentale
- western Europe
-
- 84966
- Europa occidental
- أوروبا الغربية
- Europa occidentale
-
- 西欧
-
-
- 8364
-
- 西欧
- western Europe
- 5404
-
- Europa occidentale
- 西欧
- Западная Европа
-
-
+
+
western Europe
- Europe occidentale
-
-
-
-
-
-
+ western Europe
+ Europa occidentale
+ أوروبا الغربية
+ Западная Европа
+ Europa occidentale
+ 84966
+ 9999
+ 155
-
+ Europa occidental
+ Западная Европа
+
+ Europa occidental
+
+ Europa occidental
+
+
+ 8364
+
agent
-
-
- true
+
+
+ true
- Upper level property that is not displayed or updated by anyone. Sub-object properties of this one should be used.
+ Upper level property that is not displayed or updated by anyone. Sub-object properties of this one should be used.
- true
- agent
-
- 5
+ true
+ agent
+
+ 5
+
+
+
+
+
link anchor text
-
- Used to provide a visible, clickable text to a hyperlink in VIVO.
+
+ Used to provide a visible, clickable text to a hyperlink in VIVO.
-
-
+
+
-
+
- -1
-
+ -1
+
Research Organization
-
+
- -1
+ -1
- Any organization (likely also asserted as another class of Organization) with a primary, ongoing research function, not just through occasional roles
+ Any organization (likely also asserted as another class of Organization) with a primary, ongoing research function, not just through occasional roles
- 6
-
- -1
+ 6
+
+ -1
Phase 0 Clinical Trial
-
+
- Phase 0 is a recent designation for exploratory, first-in-human trials conducted in accordance with the United States Food and Drug Administration's (FDA) 2006 Guidance on Exploratory Investigational New Drug (IND) Studies. Phase 0 trials are also known as human microdosing studies and are designed to speed up the development of promising drugs or imaging agents by establishing very early on whether the drug or agent behaves in human subjects as was expected from preclinical studies.
-
+ Phase 0 is a recent designation for exploratory, first-in-human trials conducted in accordance with the United States Food and Drug Administration's (FDA) 2006 Guidance on Exploratory Investigational New Drug (IND) Studies. Phase 0 trials are also known as human microdosing studies and are designed to speed up the development of promising drugs or imaging agents by establishing very early on whether the drug or agent behaves in human subjects as was expected from preclinical studies.
+
- Phase 0 Clinical Trial
+ Phase 0 Clinical Trial
+
+
+
+
+
- L.H.D.
-
L.H.D. Doctor of Humane Letters
+ L.H.D.
+
-
+
- 9
+ 9
- Definition http://en.wikipedia.org/wiki/Job_title#Job_title.
+ Definition http://en.wikipedia.org/wiki/Job_title#Job_title.
HR job title
- administrative secretary
+ administrative secretary
-
-
+
+
- A specific designation of a post within a human resource organization, normally associated with a job description that details the tasks and responsibilities that go with it.
-
- 3
+ A specific designation of a post within a human resource organization, normally associated with a job description that details the tasks and responsibilities that go with it.
+
+ 3
-
+
- 10
- 5
+ 10
+ 5
- edu.cornell.mannlib.vitro.webapp.edit.n3editing.configuration.generators.AddAssociatedConceptGenerator
+ edu.cornell.mannlib.vitro.webapp.edit.n3editing.configuration.generators.AddAssociatedConceptGenerator
-
- true
+
+ true
research areas
- true
+ true
-
+
agriculturalAreaNotes
@@ -19518,29 +19673,28 @@ NOTE that we are not addressing for now the issue of whether a foaf:Person is a
-
-
+
+
- FAO terminology http://www.fao.org/termportal/en/
+ FAO terminology http://www.fao.org/termportal/en/
+ http://www.fao.org/termportal/contr/ar/
+ http://www.fao.org/termportal/en/
FAO terminology
+ http://www.fao.org/termportal/contr/fr/
-
+
http://www.fao.org/termportal/contr/en/
nameListZH
2010-06-24
-
-
- http://www.fao.org/termportal/contr/ar/
- http://www.fao.org/termportal/en/
- http://www.fao.org/termportal/contr/fr/
http://www.fao.org/termportal/contr/zh/
+
http://www.fao.org/termportal/contr/es/
+
- Small Island Developing States
小岛屿发展中国家
@@ -19557,6 +19711,7 @@ NOTE that we are not addressing for now the issue of whether a foaf:Person is a
Piccoli stati insulari in via di sviluppo
+ Small Island Developing States
@@ -19566,9 +19721,9 @@ NOTE that we are not addressing for now the issue of whether a foaf:Person is a
PEID
-
-
+
+
1310
@@ -19585,7 +19740,7 @@ NOTE that we are not addressing for now the issue of whether a foaf:Person is a
الدول النامية الجزرية الصغيرة
- UN -OHRLLS http://www.un.org/special-rep/ohrlls/sid/default.htm
+ UN -OHRLLS http://www.un.org/special-rep/ohrlls/sid/default.htm
МОРС
722
@@ -19596,6 +19751,7 @@ NOTE that we are not addressing for now the issue of whether a foaf:Person is a
+
Small Island Developing States
@@ -19612,92 +19768,90 @@ NOTE that we are not addressing for now the issue of whether a foaf:Person is a
378
دولة جزرية صغيرة نامية
+
petits États insulaires en développement
+
SIDS
pequeños Estados insulares en desarrollo
+
1991
малые островные развивающиеся страны
-
-
-
-
-
-
-
-
-
-
+
-
- 20
+
+ 20
subject area for
- 5
+ 5
-
- true
+
+ true
- true
+ true
date/time interval
- 5
- true
-
+ 5
+ true
+
-
-
- edu.cornell.mannlib.vitro.webapp.edit.n3editing.configuration.generators.DateTimeIntervalFormGenerator
- true
- 5
+
+
+ edu.cornell.mannlib.vitro.webapp.edit.n3editing.configuration.generators.DateTimeIntervalFormGenerator
+ true
+ 5
Scientific Research
- scires
+ scires
- 6
+ 6
credentials
-
-
- true
- true
+
+
+ true
+ true
-
+
- 5
+ 5
+
+
+
+
+
is defined by
- true
-
+ true
+
-
-
+
+
- Afghanistan
Afghanistan
1985
@@ -19705,9 +19859,11 @@ NOTE that we are not addressing for now the issue of whether a foaf:Person is a
Population data from the UN Population Division and the data refers to the UN Revision 2008
+
65223.0
афганский
+
2009
@@ -19720,13 +19876,15 @@ NOTE that we are not addressing for now the issue of whether a foaf:Person is a
阿富汗
阿富汗伊斯兰共和国
+
Afghanistan
004
Afghanistan
جمهورية أفغانستان الإسلامية
أفغاني
- 1000 Ha
+
afghani
+ 1000 Ha
la Repubblica islamica dell'Afghanistan
afghani
@@ -19735,6 +19893,7 @@ NOTE that we are not addressing for now the issue of whether a foaf:Person is a
1000
+
1000 Ha
Afghan
@@ -19746,10 +19905,14 @@ NOTE that we are not addressing for now the issue of whether a foaf:Person is a
38.48
AF
- afghan
+
+
74.88
la République islamique d'Afghanistan
+ afghan
阿富汗
+
+ Afghanistan
Manual Estimation
афгани
AFG
@@ -19760,6 +19923,7 @@ NOTE that we are not addressing for now the issue of whether a foaf:Person is a
أفغانساتى
29.38
+
la República Islámica del Afganistán
0.349
@@ -19774,53 +19938,48 @@ NOTE that we are not addressing for now the issue of whether a foaf:Person is a
Афганистан
2009
2
- 28150.0
2009
+ 28150.0
14483.0
Afganistán
Official data reported on FAO Questionnaires from countries
65223.0
+
l'Afghanistan
- Afghanistan
- 15362
阿富汗尼
+ 15362
60.48
+ Afghanistan
Estimated
2010
Afghanistan
afghani
+
أفغانستان
-
-
-
-
-
-
-
-
-
-
-
- Rwanda
franc
+
卢旺达的
2009
- millions of US dollars
+
فرنك
+ millions of US dollars
+ RWA
Calculated
1000 Ha
- RWA
+
+
franc
1000
جمهورية رواندا
+ Rwanda
the Republic of Rwanda
9999
@@ -19844,133 +20003,123 @@ NOTE that we are not addressing for now the issue of whether a foaf:Person is a
Repubblica del Ruanda
- Rwanda
1000 Ha
+ Rwanda
Rwanda
卢旺达
Руандийская Республика
رواندا
+
rwandais
- le Rwanda
+ 2000.0
卢旺达共和国
Rwanda
- 2010
- 2000.0
- 5216.0
la République du Rwanda
+ 2010
+ 5216.0
+ le Rwanda
+
Rwandan
رواندا
2634.0
2009
Ruanda
- 2009
646
+ 2009
+
+
184
RW
франк
- Estimated
+ Estimated
Rwanda
- franco ruandese
- руандийский
- franco
Ruanda
+ franco ruandese
+ franco
+ руандийский
+
- rwandés
la República de Rwanda
+ rwandés
2009
Manual Estimation
卢旺达
- 2467.0
15476
+ 2467.0
205
1000 Ha
-
6717
+
+
法 郎
30.9
- Manual Estimation
- Data reported on country official publications or web sites (Official) or trade country files.
-1.05
+ Data reported on country official publications or web sites (Official) or trade country files.
+ Manual Estimation
RWA
-
-
-
-
-
-
-
-
-
-
-
bib mapping
- 2033
- Bibliographic properties in other namespaces mapped within VIVO core
+ 2033
+
+ Bibliographic properties in other namespaces mapped within VIVO core
- 2010-01-10T21:12:31
-
-
- -1
-
-
-
- A retired professor who has retained their rank, title and privileges.
-
-
-
- Professor Emeritus
- -1
-
-
-
+ 2010-01-10T21:12:31
yearMonthPrecision
+
-
+
+
+ -1
+
+
+
+ A retired professor who has retained their rank, title and privileges.
+
+
+
+ Professor Emeritus
+ -1
+
+
+
-
- B.E.E.
B.E.E. Bachelor of Electrical Engineering
+ B.E.E.
+
-
-
-
-
-
-
+
- -1
+ -1
-
+
Undergraduate Student
-
+
- -1
+ -1
- A person registered in an undergraduate program leading to a bachelor's degree or an undergraduate diploma or certificate.
-
+ A person registered in an undergraduate program leading to a bachelor's degree or an undergraduate diploma or certificate.
+
- Libyan Arab Jamahiriya
434
25.15
الجماهيرية العربية الليبية
@@ -19978,9 +20127,9 @@ NOTE that we are not addressing for now the issue of whether a foaf:Person is a
dinar
33.17
9.38
- Ливийская Арабская Джамахирия
- 2010
الجماهيرية العربية الليبية الشعبية الاشتراكية
+ 2010
+ Ливийская Арабская Джамахирия
الجماهيرية العربية الليبية
Manual Estimation
62360.0
@@ -19992,16 +20141,19 @@ NOTE that we are not addressing for now the issue of whether a foaf:Person is a
Libya
9999
+
Libyan Arab Jamahiriya
175954.0
LBY
15442
第纳尔
la Jamahiriya arabe libyenne populaire et socialiste
- 2009
- 阿拉伯利比亚人民社会主义民众国
+ 阿拉伯利比亚人民社会主义民众国
+ 2009
1985
+
+
124
Jamahiriya Árabe Libia
Ливийская Арабская Джамахирия
@@ -20011,34 +20163,43 @@ NOTE that we are not addressing for now the issue of whether a foaf:Person is a
2009
+
LD
ليبي
LIB
175954.0
- 2009
1000 Ha
+ 2009
15550.0
2009
+
+
+ Libyan Arab Jamahiriya
Социалистическая Народная Ливийская Арабская Джамахирия
2009
Libia
-
Calculated
+
libico
la Jamahiriya Árabe Libia
the Socialist People's Libyan Arab Jamahiriya
Manual Estimation
- 6420.0
+
1000 Ha
+
+ 6420.0
1000
+
4312
- libyen
la Jamahiriya Árabe Libia Popular y Socialista
+ libyen
145
Libyan
Gran Giamahiria araba libica popolare socialista
+
+
динар
阿拉伯利比亚民众国
Manual Estimation
@@ -20051,6 +20212,7 @@ NOTE that we are not addressing for now the issue of whether a foaf:Person is a
0.755
دينار
利比亚的
+
LY
la Jamahiriya arabe libyenne
@@ -20058,18 +20220,6 @@ NOTE that we are not addressing for now the issue of whether a foaf:Person is a
19.51
the Libyan Arab Jamahiriya
-
-
-
-
-
-
-
-
-
-
-
-
landAreaUnit
@@ -20079,33 +20229,29 @@ NOTE that we are not addressing for now the issue of whether a foaf:Person is a
-
-
-
-
-
- 1
-
+
+
- Marshall Islands
1000 Ha
Marshall_Islands
de las Islas Marshall
جمهورية جزر مارشال
18.0
-
Маршалловы Острова
+
Islas Marshall
2009
of the Marshall Islands
- 2009
马绍尔群岛
+ 2009
+
172.0
2009
+
Data reported on country official publications or web sites (Official) or trade country files.
4.57
@@ -20113,8 +20259,8 @@ NOTE that we are not addressing for now the issue of whether a foaf:Person is a
马绍尔群岛共和国
Маршалловы Острова
las Islas Marshall
-
دولار أمريكى
+
Marshall Islands
Marshall
(из/житель) Маршалловых Островов
@@ -20126,32 +20272,40 @@ NOTE that we are not addressing for now the issue of whether a foaf:Person is a
1991
157
18.0
- 马绍尔群岛
584
+ 马绍尔群岛
+
من جزر مارشال، مارشالي
153.0
доллар
- Population data from the UN Population Division and the data refers to the UN Revision 2008
+
Manual Estimation
+ Population data from the UN Population Division and the data refers to the UN Revision 2008
马绍尔群岛的
les Îles Marshall
Estimated
dollaro USA
4630
127
+
1000 Ha
the Marshall Islands
165.53
Республика Маршалловы Острова
2009
+ 14.62
+
1000
dollar des États-Unis
- 14.62
+
9999
جزر مارشال
+
+
1000 Ha
2009
+ Marshall Islands
marshallese
62.0
marshallais
@@ -20159,115 +20313,104 @@ NOTE that we are not addressing for now the issue of whether a foaf:Person is a
جزر مارشال
MAS
- la República de las Islas Marshall
+
MHL
15519
+ la República de las Islas Marshall
13.0
la République des Îles Marshall
millions of US dollars
the Republic of the Marshall Islands
Marshall
-
-
-
-
-
-
-
-
-
-
-
+
- true
- 4
+ true
+ 4
date filed
- desc
- 5
- false
-
-
- The date the patent was filed.
+ desc
+ 5
+ false
+
+
+ The date the patent was filed.
-
-
-
+
+
+
-
B.F. Bachelor of Forestry
- B.F.
+ B.F.
+
-
+
+
- -1
+ -1
- Methods in Molecular Biology
-
+ Methods in Molecular Biology
+
+
-
-
-
-
-
-
+
+
+
- A thematic collection of documents, usually books, issued at regular or irregular intervals
+ A thematic collection of documents, usually books, issued at regular or irregular intervals
http://purl.org/ontology/bibo/
-
-
+
+
- -1
+ -1
A loose, thematic, collection of Documents, often Books.
+
+
+
Series
-
- stable
-
-
-
-
-
-
- 1
-
+
+
+ stable
- Uruguay
Уругвай
جمهورية أوروغواي الشرقية
el Uruguay
+
URU
-53.07
858
9999
乌拉圭
+
UY
1985
- millions of US dollars
Data reported on country official publications or web sites (Official) or trade country files.
17502.0
+ millions of US dollars
+
0.765
Uruguay
乌拉圭的
أوروغواي
- Uruguay
- la République orientale de l'Uruguay
比索
+ la République orientale de l'Uruguay
1000
+ Uruguay
peso uruguaiano
+ Uruguay
8113
Data reported on country official publications or web sites (Official) or trade country files.
@@ -20283,6 +20426,7 @@ NOTE that we are not addressing for now the issue of whether a foaf:Person is a
2009
أوروغواي
+
Uruguay
15507
Уругвай
@@ -20291,24 +20435,29 @@ NOTE that we are not addressing for now the issue of whether a foaf:Person is a
Uruguay
-30.08
+
17622.0
3361.0
1000 Ha
+
-34.98
uruguayo
Восточная Республика Уругвай
Estimated
uruguayen
2009
+
Uruguay
- песо
peso
+ песо
+
уругвайский
- 1000 Ha
URY
+ 1000 Ha
234
2009
+
2009
14807.0
la República Oriental del Uruguay
@@ -20320,47 +20469,32 @@ NOTE that we are not addressing for now the issue of whether a foaf:Person is a
Uruguay
the Eastern Republic of Uruguay
2010
+
+
2009
1000 Ha
Repubblica orientale dell'Uruguay
260
بيسو
-
-
-
-
-
-
-
-
-
-
-
-
-
- 5
- 2
- editor role of
-
-
-
-
-
-
+
+
+
+
- Central African Economic and Monetary Community
- 9999
1985
+ 9999
http://www.cemac.int/
Comunidad Económica y Monetaria de África Central
-
52605
- CEMAC http://www.cemac.int/
+
+
+
Центральноафриканское валютно-экономическое сообщество
+ CEMAC http://www.cemac.int/
المجموعة الاقتصادية والنقدية لوسط أفريقيا
Central African Economic and Monetary Community
Communauté économique et monétaire de l'Afrique centrale
@@ -20369,76 +20503,91 @@ NOTE that we are not addressing for now the issue of whether a foaf:Person is a
Central African Economic and Monetary Community
- CEMAC
- Comunidad Económica y Monetaria de África Central
+ CEMAC
中部非洲经济及货币共同体
+ Comunidad Económica y Monetaria de África Central
+
+ Central African Economic and Monetary Community
Communauté économique et monétaire de l'Afrique centrale
CEMAC
CEMAC
-
-
-
+
+
+
+ 5
+ 2
+ editor role of
+
+
+
+
+
+
coden
-
- CODEN – according to ASTM standard E250 – is a six character, alphanumeric bibliographic code, that provides concise, unique and unambiguous identification of the titles of serials and non-serial publications from all subject areas.
- stable
+
+ CODEN – according to ASTM standard E250 – is a six character, alphanumeric bibliographic code, that provides concise, unique and unambiguous identification of the titles of serials and non-serial publications from all subject areas.
+ stable
An identifier of serials, still in use by libraries, but replaced by ISSN for any new work
http://purl.org/ontology/bibo/
-
- CODEN became particularly common in the scientific community as a citation system for periodicals cited in technical- as well in chemistry-related publications and as a search tool in many bibliographic catalogues.
-Definition and description came from Wikipedia here: http://en.wikipedia.org/wiki/CODEN
+
+ CODEN became particularly common in the scientific community as a citation system for periodicals cited in technical- as well in chemistry-related publications and as a search tool in many bibliographic catalogues.
+Definition and description came from Wikipedia here: http://en.wikipedia.org/wiki/CODEN
-
+
- linkShortView.jsp
+ linkShortView.jsp
- 5
+ 5
mailing address for
- mailingAddressFor
+ mailingAddressFor
- This relates a mailing address to an agent.
- This is done with a restriction on agent.
- 80
- true
-
+ This relates a mailing address to an agent.
+ This is done with a restriction on agent.
+ 80
+ true
+
-
+
- This relates an organization to a grant that it has awarded.
- true
- 61
+ This relates an organization to a grant that it has awarded.
+ true
+ 61
awards grant
- true
+ true
- funds
-
-
-
+ funds
+
+
+
+
+
+
+
+
- Common Market for Eastern and Southern Africa
Mercado Común para África Oriental y Meridional
9999
@@ -20448,11 +20597,12 @@ Definition and description came from Wikipedia here: http://en.wikipedia.org/wik
Mercado Común para África Oriental y Meridional
- COMEDA http://www.comesa.int/
+ COMEDA http://www.comesa.int/
+
-
2010-08-31
+
@@ -20462,12 +20612,16 @@ Definition and description came from Wikipedia here: http://en.wikipedia.org/wik
Marché commun de l'Afrique orientale et australe
COMESA
Common Market for Eastern and Southern Africa
+ Common Market for Eastern and Southern Africa
COMEDA
+
2004
COMESA
+
+
http://www.comesa.int/
东部及南部非洲共同市场
Общий рынок Восточной и Южной Африки
@@ -20480,50 +20634,52 @@ Definition and description came from Wikipedia here: http://en.wikipedia.org/wik
-
-
-
-
- 10
+ 10
- 4
-
+ 4
+
Organizer Role
-
- A role of organizing
+
+ A role of organizing
-
-
-
+
+
+
+
+
+
+
+
Texas
-
-
-
-
-
+
+
-
+
+
+
+
+
-
+
Exhibit
- -1
-
+ -1
+
- -1
+ -1
- The showing of an object or a collection of objects, in an organized manner.
-
+ The showing of an object or a collection of objects, in an organized manner.
+
hasMinLatitude
@@ -20531,179 +20687,171 @@ Definition and description came from Wikipedia here: http://en.wikipedia.org/wik
-
-
+
+
+
+
+
+
+
-
- The largest administrative division of most states or provinces.
- Alachua; Baker; Bradford; Kenora; Ottawa; Waterloo
+ The largest administrative division of most states or provinces.
+
+ Alachua; Baker; Bradford; Kenora; Ottawa; Waterloo
+
- -1
+ -1
-
-
- Short Definition modified from the one found here: http://www.thefreedictionary.com/county.
+
+
+ Short Definition modified from the one found here: http://www.thefreedictionary.com/county.
-
+
+
County
-
- -1
-
-
+ -1
+
+
-
-
+
- A document confirming certain characteristics of a person or organization, usually provided by some form of external review, education, or assessment.
-
- 5
- A document confirming certain characteristics of a person or organization, usually provided by some form of external review, education, or assessment.
- 5
+ A document confirming certain characteristics of a person or organization, usually provided by some form of external review, education, or assessment.
+
+ 5
+ A document confirming certain characteristics of a person or organization, usually provided by some form of external review, education, or assessment.
+ 5
Certificate
-
+
- Common Market for Eastern and Southern Africa
-
- Общий рынок Восточной и Южной Африки
-
- COMESA
-
-
-
-
-
- COMESA
-
-
-
-
- Common Market for Eastern and Southern Africa
-
- السوق المشتركة لدول شرقى وجنوبى أفريقيا
-
-
- Mercado Común para África Oriental y Meridional
-
-
-
-
- Common Market for Eastern and Southern Africa
- Marché commun de l'Afrique orientale et australe
-
- 50604
- 东部及南部非洲共同市场
- Marché commun de l'Afrique orientale et australe
- 1994
-
- 2004
-
- Mercado Común para África Oriental y Meridional
- COMESA
-
-
+
+ Common Market for Eastern and Southern Africa
+
+ Marché commun de l'Afrique orientale et australe
+ 50604
+
-
+
+ 东部及南部非洲共同市场
+ COMESA
+
+
+ Mercado Común para África Oriental y Meridional
+
+ COMESA
+ 2004
+ السوق المشتركة لدول شرقى وجنوبى أفريقيا
+
+
+ 1994
+
+
+ Common Market for Eastern and Southern Africa
+
+
+ Marché commun de l'Afrique orientale et australe
+ COMESA
+ Common Market for Eastern and Southern Africa
+
+
+
+ Общий рынок Восточной и Южной Африки
+
+
+
+
+
+ Mercado Común para África Oriental y Meridional
+
+
+
+
+
+
+
+
B.F.A. Bachelor of Fine Arts
-
- B.F.A.
+ B.F.A.
+
-
+
-
research
- 8
+ 8
+
- 2009-12-27T08:36:28
+ 2009-12-27T08:36:28
- true
+ true
provides funding for
- 5
+ 5
-
+
-
+
-
-
- 1
+
+
+
+
+
+
+ 607-244-4444
+
+
+
+
+
+
Maine
-
-
-
-
-
+
+
-
-
-
- -1
- -1
-
-
-
-
-
- Document Part
-
- Short Definition from the bibo ontology
-
- A distinct part of a larger document or collected document
-
-
- http://purl.org/ontology/bibo/
- a distinct part of a larger document or collected document.
-
-
-
- unstable
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
- Southern Common Market
+
南方共同市场
+
+
MERCOSUR
-
+
Южноамериканский общий рынок
السوق المشتركة الجنوبية (فى أمريكا اللاتينية)
+ Southern Common Market
Marché commun austral
Mercado Común del Sur
Southern Common Market
@@ -20711,72 +20859,107 @@ Definition and description came from Wikipedia here: http://en.wikipedia.org/wik
1991
MERCOSUR
Marché commun austral
- 1991
- Southern Common Market
- 49313
- MERCOSUR
-
-
-
+ 1991
+ 49313
+ Southern Common Market
+ MERCOSUR
-
-
-
-
- Book
-
-
-
-
-
-
-
-
- -1
-
- Short Definition copied from bibo ontology
-
-
-
+
+
+ -1
+
+
+
+
+ Document Part
+
+ Short Definition from the bibo ontology
+
+
+
+ A distinct part of a larger document or collected document
+
-
-
+
http://purl.org/ontology/bibo/
-
-
-
-
-
-
-
- A written or printed work of fiction or nonfiction, usually on sheets of paper fastened or bound together within covers.
-
- A written or printed work of fiction or nonfiction, usually on sheets of paper fastened or bound together within covers
-
- stable
-
- -1
-
-
-
-
-
+ a distinct part of a larger document or collected document.
+
+ unstable
+
+
+
+
+
+
+
+
+ -1
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ stable
+
+
+
+
+ http://purl.org/ontology/bibo/
+
+ -1
+
+
+ -1
+
+
+
+ A written or printed work of fiction or nonfiction, usually on sheets of paper fastened or bound together within covers.
+
+
+
+
+ A written or printed work of fiction or nonfiction, usually on sheets of paper fastened or bound together within covers
+
+ Short Definition copied from bibo ontology
+
+
+
+
+ Book
+
+
+
+
+
- Asia
+
Asia
- 142
- 9999
1991
+ 142
+
+ 9999
Asia
@@ -20784,9 +20967,10 @@ Definition and description came from Wikipedia here: http://en.wikipedia.org/wik
Asia
-
Азия
+
Asie
+
@@ -20806,6 +20990,7 @@ Definition and description came from Wikipedia here: http://en.wikipedia.org/wik
Asia
+
@@ -20814,11 +20999,14 @@ Definition and description came from Wikipedia here: http://en.wikipedia.org/wik
+
آسيا
+
Asia
+
@@ -20829,87 +21017,72 @@ Definition and description came from Wikipedia here: http://en.wikipedia.org/wik
Asie
+
Asia
亚洲
5300
+
Asia
+
Asie
+ Asia
666
-
-
-
-
-
-
-
-
-
-
-
+
Postdoctoral Training
- 10
-
- Postdoctoral research is academic or scholarly research conducted by a person who has completed his or her doctoral studies, normally within the following five years. It is intended to further deepen expertise in a specialist subject.
- 10
+ 10
+
+ Postdoctoral research is academic or scholarly research conducted by a person who has completed his or her doctoral studies, normally within the following five years. It is intended to further deepen expertise in a specialist subject.
+ 10
-
-
-
-
-
-
-
-
+
+
+
- 5
-
+ 5
+
- This relates the organization to the equipment it owns.
-
+ This relates the organization to the equipment it owns.
+
has equipment
- true
- true
+ true
+ true
-
- 80
+
+ 80
- has equipment
-
-
-
-
-
+ has equipment
- Paraguay
+
-54.26
Paraguay
guaraní
la República del Paraguay
1985
el Paraguay
- 2009
- 1000
瓜拉尼
+ 2009
+
+ 1000
9999
600
Paraguay
@@ -20920,13 +21093,16 @@ Definition and description came from Wikipedia here: http://en.wikipedia.org/wik
باراغواي
巴拉圭
the Republic of Paraguay
+ Paraguay
Paraguay
+
Парагвай
14236.0
Estimated
6349.0
paraguaiano
巴拉圭的
+
2009
PY
Calculated
@@ -20935,6 +21111,7 @@ Definition and description came from Wikipedia here: http://en.wikipedia.org/wik
2009
-27.61
+
paraguayen
Paraguay
169
@@ -20944,9 +21121,9 @@ Definition and description came from Wikipedia here: http://en.wikipedia.org/wik
гуарани
巴拉圭
- millions of US dollars
-19.34
15469
+ millions of US dollars
Paraguay
paraguayo
@@ -20954,6 +21131,7 @@ Definition and description came from Wikipedia here: http://en.wikipedia.org/wik
2010
G
+
Paraguayan
парагвайский
باراغوايي
@@ -20965,13 +21143,16 @@ Definition and description came from Wikipedia here: http://en.wikipedia.org/wik
-62.65
Парагвай
+
2009
la République du Paraguay
Paraguay
PAR
+
Population data from the UN Population Division and the data refers to the UN Revision 2008
+
194
2009
@@ -20979,34 +21160,26 @@ Definition and description came from Wikipedia here: http://en.wikipedia.org/wik
Manual Estimation
Республика Парагвай
Repubblica del Paraguay
+ 1000 Ha
Data reported on country official publications or web sites (Official) or trade country files.
PRY
- 1000 Ha
+
20900.0
Manual Estimation
- guaraní
-
-
-
-
-
-
-
-
-
-
+ guaraní
- Bulgaria
- 2009
1985
+ 2009
2009
Bulgaria
1000
la République de Bulgarie
+
+
Repubblica di Bulgaria
lev
@@ -21027,15 +21200,16 @@ Definition and description came from Wikipedia here: http://en.wikipedia.org/wik
41
Official data reported on FAO Questionnaires from countries
- 2009
+
+
保加利亚的 / 保加利亚人
Bulgaria
11100.0
-
+ 2009
Bulgaria
Official data reported on FAO Questionnaires from countries
- lev
BGR
+ lev
48722.0
Estimated
Calculated
@@ -21045,12 +21219,17 @@ Definition and description came from Wikipedia here: http://en.wikipedia.org/wik
9999
保加利亚
+
列 弗
+
5030.0
лев
+
the Republic of Bulgaria
2009
+
+
Болгария
ليف
بلغاريا
@@ -21059,72 +21238,69 @@ Definition and description came from Wikipedia here: http://en.wikipedia.org/wik
Республика Болгария
بلغاريا
22.37
- búlgaro
2010
+ búlgaro
lev (BGL)
Official data reported on FAO Questionnaires from countries
la República de Bulgaria
1145
Bulgaria
+
1000 Ha
جمهورية بلغاريا
44.21
+
BUL
100
保加利亚共和国
Bulgaria
41.24
- BG
1000 Ha
+ BG
27
millions of US dollars
2009
+ Bulgaria
10856.0
Bulgaria
0.743
1000 Ha
bulgare
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
sponsor award id
- 70
+ 70
-
+
- Has a domain of Grant. There is not a strong reason have this be publically visible, since most users would care more about the name of the sponsoring agency than its identifier, but it does no harm to be public.
+ Has a domain of Grant. There is not a strong reason have this be publically visible, since most users would care more about the name of the sponsoring agency than its identifier, but it does no harm to be public.
See also core:localAwardId.
-
+
- 1
-
+ 1
+
- Identifier of the organization that sponsored the award.
-
+ Identifier of the organization that sponsored the award.
+
- Central African Republic
- franc CFA (Communauté financière africaine)
- 中非共和国的 / 中非共和国人
- 9999
CAF
- جمهورية أفريقيا الوسطى
27.46
+ 9999
+ 中非共和国的 / 中非共和国人
+ جمهورية أفريقيا الوسطى
+ franc CFA (Communauté financière africaine)
centrafricain
República Centroafricana
@@ -21145,12 +21321,14 @@ See also core:localAwardId.
centroafricano
جمهورية أفريقيا الوسطى
+
14.42
- 2010
- Data reported on country official publications or web sites (Official) or trade country files.
+
- 1000 Ha
+ Data reported on country official publications or web sites (Official) or trade country files.
+ 2010
Data reported on country official publications or web sites (Official) or trade country files.
+ 1000 Ha
140
Центральноафриканская Республика
62298.0
@@ -21161,21 +21339,25 @@ See also core:localAwardId.
2009
Estimated
+
中非共和国
+
Central African Republic
0.315
+
1000
Repubblica centrafricana
1985
- فرنك الجماعة المالية الأفريقية
+ فرنك الجماعة المالية الأفريقية
1000 Ha
15387
+
la República Centroafricana
5235.0
@@ -21183,21 +21365,26 @@ See also core:localAwardId.
جمهورية أفريقيا الوسطى
of the Central African Republic
37
- центральноафриканский
- millions of US dollars
la República Centroafricana
+ millions of US dollars
+ центральноафриканский
+
Manual Estimation
Repubblica centrafricana
+
Population data from the UN Population Division and the data refers to the UN Revision 2008
Calculated
- la République centrafricaine
+
+
the Central African Republic
2009
+ la République centrafricaine
the Central African Republic
4422.0
+
2009
62298.0
la République centrafricaine
@@ -21210,60 +21397,44 @@ See also core:localAwardId.
CAF
2009
Repubblica centrafricana
+ Central African Republic
+
2009
中非共和国
CFA franc (Communauté financière africaine)
2.22
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 1
-
number of pages
-
+
-
-
+
+
- 20
-
- Definition from bibo: A person having managerial and sometimes policy-making responsibility for the editorial part of a publishing firm or of a newspaper, magazine, or other publication.
+ 20
+
+ Definition from bibo: A person having managerial and sometimes policy-making responsibility for the editorial part of a publishing firm or of a newspaper, magazine, or other publication.
editor
-
- 5
- true
+
+ 5
+ true
-
+
- Nigeria
1000 Ha
@@ -21273,6 +21444,7 @@ See also core:localAwardId.
جمهورية نيجيريا الاتحادية
2009
la République fédérale du Nigéria
+
naira
Estimated
@@ -21289,19 +21461,25 @@ See also core:localAwardId.
92377.0
2009
+ Nigeria
millions of US dollars
Data reported on country official publications or web sites (Official) or trade country files.
+
Федеративная Республика Нигерия
NGA
5182
NG
- Manual Estimation
Нигерия
+ Manual Estimation
+
+
+
нигерийский
-
+
+
Nigeria
@@ -21313,6 +21491,7 @@ See also core:localAwardId.
naira
نيجيريا
2009
+
9999
1000 Ha
Manual Estimation
@@ -21321,14 +21500,15 @@ See also core:localAwardId.
Repubblica federale della Nigeria
2010
nigeriano
- the Federal Republic of Nigeria
Нигерия
+ the Federal Republic of Nigeria
91077.0
le Nigéria
найра
₦
74500.0
Calculated
+
نيجيري
2.66
@@ -21336,15 +21516,18 @@ See also core:localAwardId.
la República Federal de Nigeria
naira
+
NIR
Nigeria
+
2009
Nigeria
+
尼日利亚
-
4.28
+
Population data from the UN Population Division and the data refers to the UN Revision 2008
0.423
154729.0
@@ -21355,39 +21538,14 @@ See also core:localAwardId.
2009
15463
nigérian
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- A postdoctoral training appointment (job)
-
-
- true
-
-
-
- Postdoctoral Position
- -1
- -1
- Guadeloupe
Guadeloupe
guadeloupéen
Manual Estimation
2009
يورو
+
GUD
Data reported on country official publications or web sites (Official) or trade country files.
@@ -21401,20 +21559,24 @@ See also core:localAwardId.
2009
غوادالوب
Guadalupe
+
欧 元
+
1000
Data reported on country official publications or web sites (Official) or trade country files.
Population data from the UN Population Division and the data refers to the UN Revision 2008
+ Guadeloupe
Guadeloupe
de Guadalupe
170.0
- Guadeloupe
19020
+ Guadeloupe
1000 Ha
瓜德罗普
87
la Guadeloupe
312
+
GP
euro
della Guadalupa
@@ -21426,6 +21588,8 @@ See also core:localAwardId.
瓜德罗普
1000 Ha
euro
+
+
9999
465.0
瓜德罗普
@@ -21440,31 +21604,43 @@ See also core:localAwardId.
GLP
2009
Guadeloupe
- of Guadeloupe
+
euro
+ of Guadeloupe
3406
169.0
-
-
-
-
-
-
-
+
+
+
+
+ A postdoctoral training appointment (job)
+
+
+ true
+
+
+
+ Postdoctoral Position
+ -1
+ -1
+
+
+
+
+
- Mexico
песо
messicano
2010
1000
Mexican
MEX
- 墨西哥合众国
- 138
32.72
+ 138
102833.0
+ 墨西哥合众国
MEX
2009
194395.0
@@ -21477,12 +21653,15 @@ See also core:localAwardId.
Population data from the UN Population Division and the data refers to the UN Revision 2008
14.54
196438.0
+
-118.37
2009
+
+ 15452
Mexique
4792
- 15452
+
MX
peso
مكسيكي
@@ -21492,25 +21671,33 @@ See also core:localAwardId.
109610.0
墨西哥的
+
mexicano
- millions of US dollars
Мексика
+ millions of US dollars
mexicain
+ Mexico
Мексиканские Соединенные Штаты
los Estados Unidos Mexicanos
Mexico
2009
+
1985
المكسيك
+
Messico
- Mexico
+ Mexico
Мексика
+
Official data reported on FAO Questionnaires from countries
+
peso
+
the United Mexican States
Mex$
Mexico
+
المكسيك
الولايات المتحدة المكسيكية
بيسو
@@ -21519,6 +21706,7 @@ See also core:localAwardId.
162
Stati Uniti messicani
+
0.75
比索
Manual Estimation
@@ -21529,8 +21717,8 @@ See also core:localAwardId.
peso
墨西哥
-86.71
- мексиканский
+ мексиканский
1000 Ha
@@ -21538,29 +21726,13 @@ See also core:localAwardId.
1000 Ha
2009
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Niue
dollaro neozelandese
de Niue
1000 Ha
Niue
+
جمهورية نيوى
Niue
19029
@@ -21571,29 +21743,35 @@ See also core:localAwardId.
160
niouéen
+
Population data from the UN Population Division and the data refers to the UN Revision 2008
di Niue
-
la República de Niue
+
dollar néo-zélandais
+
-169.78
dólar neozelandés
$NZ
la République de Nioué
- 1000 Ha
1985
+ 1000 Ha
+
+
纽埃人/纽埃的
- (из/ житель) Ниуэ
+ Data reported on country official publications or web sites (Official) or trade country files.
Nioué
Repubblica di Niue
- Data reported on country official publications or web sites (Official) or trade country files.
+ (из/ житель) Ниуэ
9999
Niue
-18.95
+
Nioué
+
2009
1000 Ha
纽 埃
@@ -21603,6 +21781,7 @@ See also core:localAwardId.
2009
Ниуэ
+
Niuean
2009
-19.16
@@ -21618,10 +21797,12 @@ See also core:localAwardId.
NIU
Data reported on country official publications or web sites (Official) or trade country files.
1.0
+ Niue
-169.95
纽 埃
26.0
5.0
+
Niue
Ниуэ
Республика Ниуэ
@@ -21629,38 +21810,34 @@ See also core:localAwardId.
2009
новозеландский доллар
the Republic of Niue
+
1000
Niue
纽埃共和国
- 5202
-
-
-
-
-
-
-
-
-
-
+ 5202
+
+
+
+
+
- 5
- true
-
- This relates an advisory relationship to an academic degree.
+ 5
+ true
+
+ This relates an advisory relationship to an academic degree.
- true
+ true
degree candidacy
-
+
-
- degreeCandidacy
- 25
+
+ degreeCandidacy
+ 25
landAreaNotes
@@ -21670,30 +21847,36 @@ See also core:localAwardId.
-
-
+
+
- Tokelau
Tokélaou
+
Tokelau
Data reported on country official publications or web sites (Official) or trade country files.
+ Tokelau
托克劳
Tokelau
- tokelauano
- Manual Estimation
- 1.0
Tokelau
+ tokelauano
+
+ Manual Estimation
+
+ 1.0
of Tokelau
$NZ
+
(из/ житель) Токелау
1.0
TK
1.0
+
新西兰元
1000 Ha
جزر توكيلاو
+
dollar néo-zélandais
Tokelau
@@ -21708,6 +21891,7 @@ See also core:localAwardId.
2009
Tokelau
de Tokelau
+
托克劳
9999
associate member of FAO
@@ -21719,10 +21903,12 @@ See also core:localAwardId.
1985
новозеландский доллар
托克劳人/托克劳的
+
0.6
Tokelau
Tokelau
772
+
218
dollaro neozelandese
2009
@@ -21734,55 +21920,42 @@ See also core:localAwardId.
من جزر توكيلاو
tokélaouan
托克劳
- Population data from the UN Population Division and the data refers to the UN Revision 2008
2009
+ Population data from the UN Population Division and the data refers to the UN Revision 2008
Tokelau
+
1000
244
-
-
-
-
-
-
-
-
-
-
-
-
-
- 1
-
- true
- true
+ true
+ true
- 5
-
+ 5
+
- 3
+ 3
-
+
organizer role of
- Togo
15497
франк КФА
1000 Ha
franco CFA (Communauté financière africaine)
Togo
+
millions of US dollars
6.1
+ Togo
1.8
非洲法郎
Togo
@@ -21791,35 +21964,41 @@ See also core:localAwardId.
togolés
TGO
-0.15
- 2009
тоголезский
+ 2009
Manual Estimation
+
توغوي
+ Того
Population data from the UN Population Division and the data refers to the UN Revision 2008
2855.0
+
the Togolese Republic
- Того
217
2010
la République togolaise
Togolese
+
الجمهورية التوغوية
多 哥
+
2009
togolese
Того
2009
Togo
6619.0
+
Тоголезская Республика
1000
9999
franc CFA (Communauté financière africaine)
2009
Togo
+
franco CFA
togolais
@@ -21827,13 +22006,16 @@ See also core:localAwardId.
243
-
Manual Estimation
- 5679.0
+
+
+ 5679.0
+
+
Estimated
- Togo
11.15
+ Togo
فرنك الجماعة المالية الأفريقية
Togo
@@ -21844,19 +22026,20 @@ See also core:localAwardId.
توغو
Manual Estimation
- Calculated
2009
+ Calculated
el Togo
7801
+ Togo
1000 Ha
le Togo
- Togo
- la República Togolesa
768
+ la República Togolesa
+
-
多哥的
0.428
+
多 哥
TG
TOG
@@ -21865,17 +22048,11 @@ See also core:localAwardId.
1000 Ha
-
-
-
-
-
-
-
-
-
-
-
+
+
+ Dublin Core terms
+ dcterms
+
GDPUnit
@@ -21885,21 +22062,16 @@ See also core:localAwardId.
-
-
+
+
-
- Dublin Core terms
- dcterms
-
-
-
-
-
+
+
+
- India
+
印度的
Inde
1000 Ha
@@ -21909,6 +22081,7 @@ See also core:localAwardId.
هندي
indio
India
+
2009
India
0.519
@@ -21926,19 +22099,23 @@ See also core:localAwardId.
1000 Ha
the Republic of India
+ India
328726.0
Indian
IND
- 6.75
India
+ 6.75
+
indien
индийский
+
روبية
印 度
roupie
1985
la República de la India
+
1377265.0
@@ -21948,19 +22125,22 @@ See also core:localAwardId.
rupee
3825
+
2010
印 度
IN
2009
- 115
- IND
179963.0
+ IND
+ 115
la République de l'Inde
Estimated
卢 比
+
+
35.99
1198003.0
97.4
@@ -21969,19 +22149,22 @@ See also core:localAwardId.
الهند
la India
+
рупия
rupia indiana
millions of US dollars
297319.0
+
l'Inde
2009
Repubblica dell'India
- 1000
الهند
+ 1000
Population data from the UN Population Division and the data refers to the UN Revision 2008
Manual Estimation
356
+
India
9999
@@ -21991,71 +22174,48 @@ See also core:localAwardId.
₨
印度共和国
indiano
-
-
-
-
-
-
-
-
-
-
-
Citation Counting and Context Characterization Ontology
- c4o
+ c4o
-
+ http://www.fao.org/termportal/contr/zh/
+
+ http://www.fao.org/termportal/contr/es/
-
+ http://www.fao.org/termportal/contr/fr/
+ http://www.fao.org/termportal/contr/ar/
+
FAO terminology
http://www.fao.org/termportal/contr/en/
- FAO terminology http://www.fao.org/termportal/en/
+ FAO terminology http://www.fao.org/termportal/en/
nameShortZH
- 2010-06-24
- http://www.fao.org/termportal/contr/zh/
- http://www.fao.org/termportal/contr/es/
- http://www.fao.org/termportal/contr/ar/
- http://www.fao.org/termportal/contr/fr/
http://www.fao.org/termportal/en/
+ 2010-06-24
+
+
+
+
+
Minnesota
-
-
-
-
-
+
+
-
-
-
-
- 1
-
-
-
- date/time
- Use when a single date and time is appropriate versus a start date and time and end date and time, or when multiple dates and times are relevant.
-
-
-
-
-
-
- 5
-
- 5
+
+
+
+
+
- Jamaica
+
牙买加
2719.0
15433
@@ -22063,15 +22223,18 @@ See also core:localAwardId.
9999
Giamaica
Giamaica
+
JAM
Population data from the UN Population Division and the data refers to the UN Revision 2008
388
1000 Ha
-78.37
Data reported on country official publications or web sites (Official) or trade country files.
+
109
JAM
Giamaica
+
giamaicano
17.71
2009
@@ -22084,6 +22247,8 @@ See also core:localAwardId.
18.53
dollar
dólar
+
+
la Jamaïque
2009
@@ -22092,28 +22257,32 @@ See also core:localAwardId.
2009
Jamaica
- dollar
- Jamaica
1000
+ Jamaica
+ dollar
jamaiquino
- Jamaica
- la Jamaïque
+ Jamaica
+
1083.0
-
+ la Jamaïque
Estimated
+
доллар
جامايكا
2009
+
元
123
جامايكي
1985
+ Jamaica
Calculated
jamaïcain
- 牙买加的
جامايكا
+ 牙买加的
+
Jamaïque
Jamaica
1099.0
@@ -22121,6 +22290,7 @@ See also core:localAwardId.
1000 Ha
Jamaica
+
dollaro giamaicano
Jamaican
Ямайка
@@ -22135,40 +22305,42 @@ See also core:localAwardId.
Jamaica
Manual Estimation
+
1000 Ha
ямайский
Manual Estimation
-76.19
Ямайка
牙买加
-
-
-
-
-
-
-
-
-
-
-
+
+
+ date/time
+ Use when a single date and time is appropriate versus a start date and time and end date and time, or when multiple dates and times are relevant.
+
+
+
+
+
+
+ 5
+
+ 5
-
- United Nations Statistics Division http://unstats.un.org/unsd/methods/m49/m49alpha.htm
+
+ United Nations Statistics Division http://unstats.un.org/unsd/methods/m49/m49alpha.htm
http://unstats.un.org/unsd/methods/m49/m49alpha.htm
+ http://unstats.un.org/unsd/methods/m49/m49alphaf.htm
codeUN
-
+
United Nations Statistics Division
2010-04-01
- http://unstats.un.org/unsd/methods/m49/m49alphaf.htm
- Slovakia
eslovaco
Official data reported on FAO Questionnaires from countries
@@ -22176,6 +22348,7 @@ See also core:localAwardId.
Slovaquie
la República Eslovaca
Slovakia
+
2009
斯洛伐克
@@ -22183,21 +22356,27 @@ See also core:localAwardId.
Slovacchia
2009
斯洛伐克
+
الجمهورية السلوفاكية
koruna
+
16.84
+ Slovakia
2009
+
the Slovak Republic
Repubblica slovacca
0.818
+
Slovacchia
Sk
2009
- Official data reported on FAO Questionnaires from countries
Словакия
+ Official data reported on FAO Questionnaires from countries
+
Slovak
Official data reported on FAO Questionnaires from countries
4809.0
@@ -22210,8 +22389,8 @@ See also core:localAwardId.
49.6
SK
- Eslovaquia
SVK
+ Eslovaquia
1993
5406.0
@@ -22220,32 +22399,37 @@ See also core:localAwardId.
223
87642.0
كورونا
- Estimated
+ Estimated
199
+
1000 Ha
+
крона
millions of US dollars
2010
47.73
+
703
la Slovaquie
slovacco
+
Словацкая Республика
+
1000
SLO
克 朗
1930.0
2009
slovaque
- Slovakia
32083
+ Slovakia
- 9999
la République slovaque
+ 9999
Population data from the UN Population Division and the data refers to the UN Revision 2008
corona slovacca
سلوفاكيا
@@ -22254,104 +22438,93 @@ See also core:localAwardId.
سلوفاكي
1000 Ha
1000 Ha
-
-
-
-
-
-
-
-
-
-
-
+
+
+
status
- true
-
+ true
+
- paraphrased editorial note from the bibo ontology: We are not defining, using an enumeration, the range of the bibo:status to be a defined list of bibo:DocumentStatus. This is because we want people to be able to define new statuses if needed; and creating such an enumeration would prevent this.
- 250
+ paraphrased editorial note from the bibo ontology: We are not defining, using an enumeration, the range of the bibo:status to be a defined list of bibo:DocumentStatus. This is because we want people to be able to define new statuses if needed; and creating such an enumeration would prevent this.
+ 250
-
-
- 5
+
+
+ 5
-
-
-
- middle Africa
- Africa Central
-
- أفريقيا الوسطى
-
- middle Africa
- 中部非洲
- Africa Central
-
- Africa centrale
-
- Afrique centrale
-
-
-
- 5102
- middle Africa
- Afrique centrale
- 84956
- Центральная Африка
- 9999
- أفريقيا الوسطى
-
- Africa Central
- 中部非洲
-
- Центральная Африка
- Africa centrale
- Afrique centrale
- أفريقيا الوسطى
-
- 1985
- Africa centrale
- Центральная Африка
- middle Africa
- 017
- 中部非洲
-
-
-
+
+ Africa Central
+ أفريقيا الوسطى
+ 中部非洲
+
+
+ middle Africa
+ Africa centrale
+ middle Africa
+ Afrique centrale
+ 017
+
+ Africa centrale
+
+ 9999
+
+ Центральная Африка
+ 中部非洲
+
+
+ أفريقيا الوسطى
+ middle Africa
+
+
+ 84956
+ Afrique centrale
+
+ middle Africa
+
+
+ Africa Central
+ 中部非洲
+ 1985
+ Africa centrale
+ Afrique centrale
-
-
+ Africa Central
+
+
+ 5102
+ أفريقيا الوسطى
+ Центральная Африка
+ Центральная Африка
-
+
-
-
- A PMCID is a unique PubMed Central reference number, which is assigned to each full-text record made available A PMCID is a unique PubMed Central reference number, which is assigned to each full-text record made available in PubMed Central. The PMCID is issued shortly after the PI or author approves the PubMed Central formatted web version of the submission.
+
+
+ A PMCID is a unique PubMed Central reference number, which is assigned to each full-text record made available A PMCID is a unique PubMed Central reference number, which is assigned to each full-text record made available in PubMed Central. The PMCID is issued shortly after the PI or author approves the PubMed Central formatted web version of the submission.
PubMed Central ID
-
-
-
+
+
+
- Cuba
peso cubano
+
Cuba
2009
@@ -22359,6 +22532,7 @@ See also core:localAwardId.
Cuba
2009
millions of US dollars
+
cubano
62704.0
63
@@ -22369,41 +22543,48 @@ See also core:localAwardId.
кубинский
23.28
-84.95
+
CU
Cuba
1985
- Cuban
古 巴
+ Cuban
古巴共和国
كوبا
49
-74.14
10644.0
+
Manual Estimation
2009
+
比 索
+
Республика Куба
+
كوبا
Population data from the UN Population Division and the data refers to the UN Revision 2008
1000
- Manual Estimation
cubain
+ Manual Estimation
جمهورية كوبا
9999
Repubblica di Cuba
- 19.83
- cubano
песо
+ cubano
+ 19.83
古巴的 / 古巴人
2008
la République de Cuba
15397
10989.0
+
Куба
1000 Ha
Cuba
+
1997
@@ -22416,60 +22597,36 @@ See also core:localAwardId.
11204.0
peso
Cuba
+ Cuba
1000 Ha
CUB
كوبي
Cuba
古 巴
+
Estimated
Cuba
CUB
+
Cuba
$
the Republic of Cuba
la República de Cuba
-
-
-
-
-
-
-
-
-
-
-
Arkansas
-
-
-
-
-
+
+
-
-
-
-
-
-
- True; False
- is this person a corresponding author?
-
- Indicates whether the author handles correspondence about the work and is in effect the guarantor of the published work. The response is either 'true' or 'false' (without the quotes).
-
-
-
-
-
- 1
- 60
+
+
+
+
+
- Pacific Islands Forum
1985
@@ -22477,34 +22634,50 @@ See also core:localAwardId.
2009
منتدى جزر المحيط الهادي
-
+
Pacific Islands Forum
Форум островов Тихого океана
- PIF
+
+ PIF
Pacific Islands Forum
+
+ Pacific Islands Forum
Foro de las Islas del Pacífico
+
太平洋岛屿论坛
Forum des Îles du Pacifique
- Foro de las Islas del Pacífico
+ Foro de las Islas del Pacífico
- 56068
-
-
-
+ 56068
+
+
+
+
+
+ True; False
+ is this person a corresponding author?
+
+ Indicates whether the author handles correspondence about the work and is in effect the guarantor of the published work. The response is either 'true' or 'false' (without the quotes).
+
+
+
+
+
+ 1
+ 60
- Lithuania
Литва
Lituanie
litas
@@ -22517,14 +22690,18 @@ See also core:localAwardId.
126
440
ليتوانيا
- Lithuanian
+
15532
+ Lithuanian
+
+
la République de Lituanie
1000 Ha
LT
лит
Lithuania
la Lituanie
+
147
26.87
جمهورية ليتوانيا
@@ -22538,13 +22715,16 @@ See also core:localAwardId.
12204
LTL
litas
+
53.9
2009
Lituania
Lithuania
56.44
+
lituanien
+ Lithuania
0.783
the Republic of Lithuania
Official data reported on FAO Questionnaires from countries
@@ -22553,9 +22733,11 @@ See also core:localAwardId.
1000
- 3287.0
Lituania
+
+ 3287.0
+
2009
@@ -22563,14 +22745,16 @@ See also core:localAwardId.
Population data from the UN Population Division and the data refers to the UN Revision 2008
Calculated
Estimated
+
立陶宛
立陶宛共和国
立陶宛的
Repubblica di Lituania
9999
+
- ليتوانيا
20.95
+ ليتوانيا
литовский
6267.5
@@ -22580,6 +22764,7 @@ See also core:localAwardId.
millions of US dollars
Official data reported on FAO Questionnaires from countries
LIT
+
2010
6530.0
la República de Lituania
@@ -22591,119 +22776,107 @@ See also core:localAwardId.
litas
2009
-
-
-
-
-
-
-
-
-
-
-
http://purl.org/ontology/bibo/
An chapter number
- Title of the chapter (this individual) currently should be entered in the individual name (rdfs:label). Title of the book belongs on a separate Book individual related to the chapter via the core:partOf property (or its child property bibo:reproducedIn). The core:title field is deprecated and should no longer be used as of version 1.1 -- we will want to map rdfs:label to dc:title for query or linked data requests in the future
+ Title of the chapter (this individual) currently should be entered in the individual name (rdfs:label). Title of the book belongs on a separate Book individual related to the chapter via the core:partOf property (or its child property bibo:reproducedIn). The core:title field is deprecated and should no longer be used as of version 1.1 -- we will want to map rdfs:label to dc:title for query or linked data requests in the future
chapter
- 50
+ 50
- A chapter number. NOT to be used for the chapter title, which should be entered in the "name" field instead (the field in bold at the top of the page)
+ A chapter number. NOT to be used for the chapter title, which should be entered in the "name" field instead (the field in bold at the top of the page)
-
+
- unstable
-
+ unstable
+
-
+
+
+
+
+
+
yearMonthDayTimePrecision
+
-
-
+
- A person who is enrolled in an educational institution.
+ A person who is enrolled in an educational institution.
Student
- -1
- Use only if no specific subclasses of core:Student describe the person.
+ -1
+ Use only if no specific subclasses of core:Student describe the person.
- -1
-
-
-
-
- 1
-
+ -1
+
-
-
+
- -1
+ -1
2010-05-01
-
+
+
UN Cartographic Section, Department of Field Support
-
-
+
+
+
+
-
-
-
+
+
http://www.un.org/Depts/Cartographic/map/profile/world00.pdf
non_self_governing
- -1
-
+ -1
+
+
+
-
-
+
-
- UN Cartographic Section, Department of Field Support http://www.un.org/Depts/Cartographic/map/profile/world00.pdf
-
+
+
+ UN Cartographic Section, Department of Field Support http://www.un.org/Depts/Cartographic/map/profile/world00.pdf
-
-
+
+
-
-
-
+
- relevant activity
- true
-
-
- Relates an organization to a specific award receipt or distinction it has conferred
+ relevant activity
+ true
+
+
+ Relates an organization to a specific award receipt or distinction it has conferred
- true
+ true
award or honor given
- 72
- 5
-
+ 72
+ 5
+
- Equatorial Guinea
-
- la República de Guinea Ecuatorial
- 非洲法郎
1000 Ha
+ 非洲法郎
+ la República de Guinea Ecuatorial
franco CFA
+
676.0
赤道几内亚共和国
@@ -22714,8 +22887,9 @@ See also core:localAwardId.
EQG
millions of US dollars
- GQ
+
2009
+ GQ
1000
306.0
@@ -22723,16 +22897,19 @@ See also core:localAwardId.
Equatorial_Guinea
2627
غينيا الاستوائية
+
of Equatorial Guinea
Экваториальная Гвинея
la Guinée équatoriale
+ 3.79
2805.0
the Republic of Equatorial Guinea
- 3.79
+
Guinea Ecuatorial
la République de Guinée équatoriale
ecuatoguineano
Population data from the UN Population Division and the data refers to the UN Revision 2008
+
Guinea Ecuatorial
5.6
Repubblica di Guinea equatoriale
@@ -22742,16 +22919,21 @@ See also core:localAwardId.
61
2009
- (из/житель) Экваториальной Гвинеи
de la Guinée équatoriale
+ (из/житель) Экваториальной Гвинеи
غينيا الاستوائية
+
franc CFA (Communauté financière africaine)
2010
+
赤几的
-1.46
+
+
0.538
+ Equatorial Guinea
Экваториальная Гвинея
9999
@@ -22761,13 +22943,16 @@ See also core:localAwardId.
1000 Ha
Manual Estimation
+
+
Estimated
11.34
15407
- Equatorial Guinea
Data reported on country official publications or web sites (Official) or trade country files.
+ Equatorial Guinea
1000 Ha
+
Guinea equatoriale
赤道几内亚
فرنك الجماعة المالية الأفريقية
@@ -22778,47 +22963,32 @@ See also core:localAwardId.
Guinée équatoriale
76
Calculated
- 2009
+ 2009
Республика Экваториальная Гвинея
- 2009
226
+ 2009
من جمهورية غينيا الاستوائية
جمهورية غينيا الاستوائية
2805.0
10413.0
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Rhode Island
-
-
-
-
-
+
+
-
+
+
+
+
+
yearPrecision
+
-
GDPTotalInCurrentPrices
@@ -22828,33 +22998,33 @@ See also core:localAwardId.
-
-
+
+
-
-
- true
- A position classified as professional, staff, support, or any other non-academic role
-
-
-
-
- -1
+
+
+
+
+ true
+ A position classified as professional, staff, support, or any other non-academic role
+
+
+ -1
+
+
-
-
-
- -1
-
+
+ -1
+
Non-Academic Position
- Staff, support, and other non-academic positions.
- Accounting & Research Services Assistant; Director of Information Technology
+
+ Staff, support, and other non-academic positions.
+ Accounting & Research Services Assistant; Director of Information Technology
+
-
-
@@ -22863,99 +23033,94 @@ See also core:localAwardId.
place of publication
- 55
-
-
- 1
+ 55
+
+
+ 1
-
+
- City in which the publication was done.
+ City in which the publication was done.
-
+
collaborator
- edu.cornell.mannlib.vitro.webapp.edit.n3editing.configuration.generators.AutocompleteObjectPropertyFormGenerator
- 60
-
-
- true
+ edu.cornell.mannlib.vitro.webapp.edit.n3editing.configuration.generators.AutocompleteObjectPropertyFormGenerator
+ 60
+
+
+ true
- Use for a simple assertion that a person or organization is your collaborator; to describe the relationship in more detail enter a role for each collaborator in some common endeavor.
+ Use for a simple assertion that a person or organization is your collaborator; to describe the relationship in more detail enter a role for each collaborator in some common endeavor.
- 5
+ 5
- Polynesia
- بولينيزيا
- Polinesia
- 84964
- Полинезия
- Polinesia
-
- Polinesia
- Polinesia
- 5504
- Polynésie
- بولينيزيا
- بولينيزيا
-
- 1985
-
- Polinesia
- Polynesia
-
- Полинезия
-
- Polinesia
-
- Polynesia
- Polynesia
-
- 9999
-
- 061
- Polynésie
-
-
Полинезия
+
+
+
+
+ 9999
+
+ 5504
+
+
+ بولينيزيا
+ Polinesia
+ Polinesia
+ Polinesia
+ Polynesia
+
+
+ Polynesia
+
+ Polynesia
+ Polinesia
+
+ 061
+ Polynésie
+ 84964
+
+ Polynésie
+ Полинезия
+ Polynesia
+ Polinesia
+
+ 1985
+ بولينيزيا
+
+
+ Полинезия
+ بولينيزيا
+
Polynésie
-
-
-
-
-
-
-
-
-
-
- 1
-
+
+ Polinesia
- 5
-
-
- 50
- This relates a term that is narrower in meaning (i.e. more specific) to another term that is broader in meaning, where the scope (meaning) of narrower term falls completely within the scope of the broader term.
+ 5
+
+
+ 50
+ This relates a term that is narrower in meaning (i.e. more specific) to another term that is broader in meaning, where the scope (meaning) of narrower term falls completely within the scope of the broader term.
- true
- Public description modified from the information on this page: http://www.w3.org/TR/2005/WD-swbp-skos-core-guide-20050510/#sechierarchy .
+ true
+ Public description modified from the information on this page: http://www.w3.org/TR/2005/WD-swbp-skos-core-guide-20050510/#sechierarchy .
narrower term
- narrower term
+ narrower term
- true
+ true
@@ -22963,36 +23128,31 @@ See also core:localAwardId.
-
-
-
+
+
+
-
+
affliliated organization
- true
- 5
- true
- 40
-
+ true
+ 5
+ true
+ 40
+
-
-
-
- SKOS (Simple Knowledge Organization System)
- skos
-
+
- Niger
millions of US dollars
+
0.17
@@ -23000,20 +23160,23 @@ See also core:localAwardId.
فرنك الجماعة المالية الأفريقية
- 1000
Нигер
+ 1000
+
the Niger
franc CFA (Communauté financière africaine)
- 158
+ 158
+
la República del Níger
+
5383.0
15462
1000 Ha
- Niger
1000 Ha
+ Niger
Республика Нигер
@@ -23022,13 +23185,14 @@ See also core:localAwardId.
Niger
2009
562
-
1985
+
23.53
9999
181
+ Niger
NE
Official data reported on FAO Questionnaires from countries
Calculated
@@ -23047,6 +23211,7 @@ See also core:localAwardId.
11.7
尼日尔
la République du Niger
+
Níger
CFA franc (Communauté financière africaine)
nigerino
@@ -23054,20 +23219,22 @@ See also core:localAwardId.
nigerino
尼日尔
Niger
+ 0.261
(of the) Niger
- 0.261
2009
- 15290.0
+
+ نيجري
2009
nigérien
- نيجري
+ 15290.0
Manual Estimation
franco CFA
2010
- 2009
+ 2009
+
el Níger
нигерский
非洲法郎
@@ -23076,75 +23243,77 @@ See also core:localAwardId.
франк КФА
NER
franco CFA (Communauté financière africaine)
+
1000 Ha
Нигер
+
尼日尔的
NER
Population data from the UN Population Division and the data refers to the UN Revision 2008
Repubblica del Niger
126700.0
-
- 16.0
- 43782.0
- Estimated
-
-
-
-
-
-
-
-
-
-
+
+
+ 43782.0
+ 16.0
+ Estimated
+
+
+ SKOS (Simple Knowledge Organization System)
+ skos
+
- Used to link an agent, related to bibliographic things, to a place where it is based near: can be a city, a monument, a building, etc.
-
- based_near
- Definition take from: http://xmlns.com/foaf/spec/#term_based_near . foaf indicates that the status of this term is "unstable". "The based_near relationship relates two "spatial things" (anything that can be somewhere), the latter typically described using the geo:lat / geo:long geo-positioning vocabulary (http://www.w3.org/2003/01/geo/wgs84_pos#). This allows us to say describe the typical latitute and longitude of, say, a Person (people are spatial things - they can be places) without implying that a precise location has been given."
+ Used to link an agent, related to bibliographic things, to a place where it is based near: can be a city, a monument, a building, etc.
+
+ based_near
+ Definition take from: http://xmlns.com/foaf/spec/#term_based_near . foaf indicates that the status of this term is "unstable". "The based_near relationship relates two "spatial things" (anything that can be somewhere), the latter typically described using the geo:lat / geo:long geo-positioning vocabulary (http://www.w3.org/2003/01/geo/wgs84_pos#). This allows us to say describe the typical latitute and longitude of, say, a Person (people are spatial things - they can be places) without implying that a precise location has been given."
based_near
- true
+ true
-
- true
-
- A location that something is based near, for some broadly human notion of near.
+
+ true
+
+ A location that something is based near, for some broadly human notion of near.
- Licenses are usually issued in order to regulate some activity that is deemed to be dangerous or a threat to the person or the public or which involves a high level of specialized skill. See also core:Licensure.
- Official or legal permission to do something
- 5
+ Licenses are usually issued in order to regulate some activity that is deemed to be dangerous or a threat to the person or the public or which involves a high level of specialized skill. See also core:Licensure.
+ Official or legal permission to do something
+ 5
-
+
License
-
- 5
-
+
+ 5
+
+
+ 1
+
+
+
administered by
- Note that the administering department is not the central research administration office (such as University of Florida DSP or Cornell OSP) -- we didn't see a need to record a relationship to that office because it implicitly manages all grants. Also note that this is the administering organization for the grant at the awardee side.
- true
+ Note that the administering department is not the central research administration office (such as University of Florida DSP or Cornell OSP) -- we didn't see a need to record a relationship to that office because it implicitly manages all grants. Also note that this is the administering organization for the grant at the awardee side.
+ true
-
- administered by
- true
-
-
- Relates the grant to the organization that administers the grant. This is normally the department of the principal investigator.
+
+ administered by
+ true
+
+
+ Relates the grant to the organization that administers the grant. This is normally the department of the principal investigator.
- Swaziland
Swaziland
0.498
Manual Estimation
@@ -23152,15 +23321,20 @@ See also core:localAwardId.
Свазиленд
Swaziland
30.79
- 1736.0
свазилендский
+
+ 1736.0
2009
+
+
+
swazi
-27.32
9999
+
- the Kingdom of Swaziland
Swaziland
+ the Kingdom of Swaziland
32.14
1000
1985
@@ -23170,10 +23344,12 @@ See also core:localAwardId.
Swazilandia
7547
+
2010
2009
- swazi
+
le Royaume du Swaziland
+ swazi
235
@@ -23186,23 +23362,25 @@ See also core:localAwardId.
ليلانغينى
斯威士兰王国
748
+ Swaziland
lilangeni
Data reported on country official publications or web sites (Official) or trade country files.
lilangeni
- 3001.0
+
-25.72
+ 3001.0
лилангени
-
- Population data from the UN Population Division and the data refers to the UN Revision 2008
+
سوازيلندى
15492
+ Population data from the UN Population Division and the data refers to the UN Revision 2008
- le Swaziland
里兰吉尼
+ le Swaziland
Regno dello Swaziland
斯威士兰的
Swazi
@@ -23214,16 +23392,18 @@ See also core:localAwardId.
斯威士兰
2009
209
+
el Reino de Swazilandia
Calculated
Swaziland
2009
+
SWZ
- Swaziland
1000 Ha
+ Swaziland
1000 Ha
Manual Estimation
@@ -23231,23 +23411,11 @@ See also core:localAwardId.
Swaziland
1000 Ha
- SWA
-
-
-
-
-
-
-
-
-
-
+ SWA
-
-
- 1
-
+
+
countryAreaYear
@@ -23257,32 +23425,36 @@ See also core:localAwardId.
-
-
-
-
-
-
-
+
+
report identifier
- Unique identifier for a Report (a type of information resource).
+ Unique identifier for a Report (a type of information resource).
-
+
-
+
-
+
- 20
- 1
+ 20
+ 1
+
+ 1
+
+
+
+
+ 1
+
+
+
- Wallis and Futuna Islands
wallisien
فرنك المستعمرات الفرنسية فى المحيط الهادى
Manual Estimation
@@ -23296,19 +23468,24 @@ See also core:localAwardId.
les Îles Wallis et Futuna
瓦利斯和富图纳群岛
14.0
+
1000 Ha
瓦利斯和富图纳群岛
1000
Wallis and Futuna Islands
Wallis_and_Futuna
- franco CFP
جزر واليس وفوتونا
+ franco CFP
太平洋法郎
+
Islas Wallis y Futuna
- les Îles Wallis et Futuna
+
2009
+ les Îles Wallis et Futuna
جزر واليس وفوتونا
WFI
+
+
Wallis e Futuna
266
de Wallis y Futuna
@@ -23318,6 +23495,7 @@ See also core:localAwardId.
243
14.0
di Wallis e Futuna
+
876
WLF
9999
@@ -23327,12 +23505,15 @@ See also core:localAwardId.
(из/ житель) Уоллис и Футуна островов
2009
Wallis and Futuna Islands
+
جزر واليس وفوتونا
Population data from the UN Population Division and the data refers to the UN Revision 2008
2009
франк КФП
Wallis e Futuna
CFP franc (Colonies françaises du Pacifique)
+ Wallis and Futuna Islands
+
Islas Wallis y Futuna
Islas Wallis y Futuna
من جزر واليس وفوتونا
@@ -23342,14 +23523,6 @@ See also core:localAwardId.
2009
Wallis and Futuna Islands
-
-
-
-
-
-
-
-
hasMinLongitude
@@ -23357,11 +23530,10 @@ See also core:localAwardId.
-
-
+
+
- Iceland
冰 岛
IS
Республика Исландия
@@ -23380,18 +23552,22 @@ See also core:localAwardId.
1000 Ha
Islandia
9999
+
آيسلندا
10300.0
+
Islanda
66.57
Исландия
+
исландский
冰 岛
millions of US dollars
ICE
Islanda
-
冰岛共和国
+
+
Исландия
2010
@@ -23403,8 +23579,9 @@ See also core:localAwardId.
114
Official data reported on FAO Questionnaires from countries
Iceland
- islandais
+
Official data reported on FAO Questionnaires from countries
+ islandais
آيسلندا
-13.49
Islande
@@ -23415,209 +23592,195 @@ See also core:localAwardId.
2281.0
冰岛的
+
+ Iceland
323.0
la República de Islandia
the Republic of Iceland
- Population data from the UN Population Division and the data refers to the UN Revision 2008
+ كرونا
corona islandese
2009
- كرونا
+ Population data from the UN Population Division and the data refers to the UN Revision 2008
islandés
آيسلندي
10025.0
ISK
3785
+
1985
2009
0.869
+
2009
+
Repubblica d'Islanda
+
12133.0
l'Islande
- islandese
- Iceland
+
Iceland
+ Iceland
+ islandese
2009
-24.53
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 1
-
- Yugoslavia
2003
8494
Yugoslavia
+
+
+
+
南斯拉夫
- Yougoslavie
Yougoslavie
+
+ Yougoslavie
+
1992
+
+
+ Yugoslavia
+
Yugoslavia
Federal Republic of Yugoslavia
南斯拉夫
Yugoslavia
+
Yugoslavia
-
-
-
-
-
-
-
-
-
-
has part
- 5
+ 5
- has part
- true
-
-
+ has part
+ true
+
+
- true
+ true
- 99
+ 99
-
+
-
- -1
+
+ -1
- Short definition was partially taken from http://en.wikipedia.org/wiki/Subnational_entity.
+ Short definition was partially taken from http://en.wikipedia.org/wiki/Subnational_entity.
For example, the Midwest, northeast U.S.
Subnational Region
- Boroughs; townships; districts; the Midwest
+ Boroughs; townships; districts; the Midwest
- Smaller administrative division into which a country may be divided.
- -1
+ Smaller administrative division into which a country may be divided.
+ -1
-
-
-
-
-
-
-
- 1
-
-
-
-
-
-
+
+ equipment
+ 7
+
+
+
+ 2010-01-25T21:24:26
Utah
-
-
-
-
-
+
+
-
-
-
-
- equipment
- 7
+
+
-
- 2010-01-25T21:24:26
+
+
+
+
+
+
+
+
+
+
+
+
- 20
+ 20
- true
+ true
concept for
-
- 5
- true
-
+
+ 5
+ true
+
2010-06-24
nameOfficialIT
- http://www.fao.org/termportal/contr/en/
-
-
-
- FAO terminology
- FAO terminology http://www.fao.org/termportal/en/
-
-
http://www.fao.org/termportal/en/
+ http://www.fao.org/termportal/contr/en/
http://www.fao.org/termportal/contr/fr/
+
http://www.fao.org/termportal/contr/zh/
+
+
+ FAO terminology
+ FAO terminology http://www.fao.org/termportal/en/
http://www.fao.org/termportal/contr/es/
+
+
http://www.fao.org/termportal/contr/ar/
+
+
+
+
+
- 5
+ 5
investigator on
-
- 60
+
+ 60
- edu.cornell.mannlib.vitro.webapp.edit.n3editing.configuration.generators.AddGrantRoleToPersonGenerator
+ edu.cornell.mannlib.vitro.webapp.edit.n3editing.configuration.generators.AddGrantRoleToPersonGenerator
-
- true
-
- true
+
+ true
+
+ true
-
-
+
Wonders of Prevention
+
+
-
-
-
-
-
-
- Ghana
22754.0
la República de Ghana
ghanés
@@ -23633,10 +23796,13 @@ See also core:localAwardId.
Ghana
جمهورية غانا
+
+
1000
Ghana
Manual Estimation
+
Республика Гана
ghanéen
15500.0
@@ -23645,14 +23811,16 @@ See also core:localAwardId.
غانا
+
cedi
- Ghana
Гана
+
+ Ghana
3253
- 加纳的
+ 加纳的
2009
Repubblica del Ghana
Estimated
@@ -23664,6 +23832,7 @@ See also core:localAwardId.
ганский
15415
+
Population data from the UN Population Division and the data refers to the UN Revision 2008
غاني
@@ -23678,18 +23847,22 @@ See also core:localAwardId.
GHA
ghaniano
cedi
- 加 纳
4.74
+ 加 纳
9999
Ghana
塞 地
+
cedi
Manual Estimation
81
288
+
+
cedi
+
26169.0
Data reported on country official publications or web sites (Official) or trade country files.
0.467
@@ -23698,41 +23871,27 @@ See also core:localAwardId.
1000 Ha
1.19
+
la République du Ghana
+ Ghana
Ghanaian
Ghana
le Ghana
- Ghana
2009
+ Ghana
millions of US dollars
1000 Ha
94
23854.0
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 1
-
- Trinidad and Tobago
- TRI
-60.52
+ TRI
2009
- 1000
特立尼达和多巴哥共和国
+ 1000
Республика Тринидад и Тобаго
+
1000 Ha
Trinidad y Tabago
@@ -23741,11 +23900,14 @@ See also core:localAwardId.
特立尼达和多巴哥
220
2010
+
2009
dollar
2009
+
TT
+
the Republic of Trinidad and Tobago
de Trinidad y Tabago
Trinidad and Tobago
@@ -23757,11 +23919,13 @@ See also core:localAwardId.
dollaro di Trinidad e Tobago
+
513.0
- 15499
元
+ 15499
Repubblica di Trinidad e Tobago
1339.0
+ Trinidad and Tobago
Trinidad and Tobago
دولار
dólar
@@ -23770,11 +23934,12 @@ See also core:localAwardId.
7933
la République de Trinité-et-Tobago
-
780
+
246
11.35
dollar
+
513.0
21204.0
la República de Trinidad y Tabago
@@ -23784,21 +23949,26 @@ See also core:localAwardId.
de la Trinité-et-Tobago
Trinidad e Tobago
-
millions of US dollars
+
доллар
0.736
+
+
+
54.0
Trinidad_and_Tobago
- of Trinidad and Tobago
- la Trinité-et-Tobago
Тринидад и Тобаго
+ la Trinité-et-Tobago
Data reported on country official publications or web sites (Official) or trade country files.
+ of Trinidad and Tobago
+
Estimated
Trinidad e Tobago
TTO
di Trinidad e Tobago
+
1000 Ha
ترينيداد وتوباغو
Тринидад и Тобаго
@@ -23812,31 +23982,19 @@ See also core:localAwardId.
Trinidad y Tabago
TT$
1000 Ha
-
-
-
-
-
-
-
-
-
-
-
issued
- 8
+ 8
- 5
+ 5
- Bahamas
جزر البهاما
1000
Calculated
@@ -23848,23 +24006,28 @@ See also core:localAwardId.
Manual Estimation
Bahamas
- 1001.0
27.03
+ 1001.0
2007
- 1388.0
+
2010
+ 1388.0
巴哈马国
+ bahamien
bahamés
778
- bahamien
巴哈马
7234.0
15369
+
bahamiano
+
巴哈马的 / 巴哈马人
Bahamian
+ Bahamas
+
2009
BD
Estimated
@@ -23874,6 +24037,8 @@ See also core:localAwardId.
Bahamas
Багамские Острова
Data reported on country official publications or web sites (Official) or trade country files.
+
+
20
BHA
Commonwealth delle Bahamas
@@ -23882,9 +24047,9 @@ See also core:localAwardId.
BHS
багамский
las Bahamas
- dólar
- Bahamas
Bahamas_The
+ Bahamas
+ dólar
BS
Population data from the UN Population Division and the data refers to the UN Revision 2008
le Commonwealth des Bahamas
@@ -23892,14 +24057,19 @@ See also core:localAwardId.
the Bahamas
+
1000 Ha
+
+
1985
el Commonwealth de las Bahamas
Багамские Острова
1000 Ha
+
dollar
+
2009
بهامي
巴哈马
@@ -23921,29 +24091,17 @@ See also core:localAwardId.
2009
les Bahamas
-
-
-
-
-
-
-
-
-
-
-
- Egypt
Estimated
-
-
1985
+
+
la República Árabe de Egipto
Egitto
- Manual Estimation
جمهورية مصر العربية
+ Manual Estimation
100145.0
2009
2009
@@ -23962,15 +24120,20 @@ See also core:localAwardId.
59
82999.0
+
阿拉伯埃及共和国
- 埃 及
+
+ 埃 及
+
مصر
+
36.9
-
pound
+
l'Égypte
Egypt
+ Egypt
egiziano
2503
1000 Ha
@@ -23993,34 +24156,41 @@ See also core:localAwardId.
Египет
جنيه
-
EGY
+
+
Египет
مصر
Egipto
+
24.7
1000 Ha
-
+
+
millions of US dollars
Egitto
-
+
sterlina egiziana
- Official data reported on FAO Questionnaires from countries
21.72
+ Official data reported on FAO Questionnaires from countries
+
египетский
- egipcio
- Calculated
+ Calculated
+
+ egipcio
9999
+
埃及的
la République arabe d'Égypte
the Arab Republic of Egypt
LE
2009
+
Egypt
Egypt
@@ -24028,236 +24198,113 @@ See also core:localAwardId.
2009
libra
-
-
-
-
-
-
-
-
-
-
-
+ Comunidad para el Desarrollo del África Austral
+ SADC
+
+
+ Southern African Development Community
+
+
+ SADC
+ Communauté du développement de l'Afrique australe
Southern African Development Community
- SADC http://www.sadc.int/
- Communauté du développement de l'Afrique australe
+ SADC http://www.sadc.int/
+ Communauté du développement de l'Afrique australe
+ SADC
+
+ الجماعة الانمائية للجنوب الأفريقى
+ Comunidad para el Desarrollo del África Austral
+
+
+
+ Сообщество южно-африканского развития
+ 1992
+
+ 50113
+
+
+
+ http://www.sadc.int/
+ 2010-08-31
+
+
+
+ SADC
+
+ 南部非洲发展共同体
+
Southern African Development Community
9999
- 2010-08-31
-
- Comunidad para el Desarrollo del África Austral
-
- http://www.sadc.int/
- Southern African Development Community
-
- Comunidad para el Desarrollo del África Austral
-
-
- 50113
- Сообщество южно-африканского развития
-
-
- الجماعة الانمائية للجنوب الأفريقى
-
-
- SADC
-
- 南部非洲发展共同体
- SADC
- Communauté du développement de l'Afrique australe
-
-
- SADC
- SADC
-
- 1992
-
-
-
-
2010-06-24
-
+
FAO terminology
-
-
+
nameShortRU
-
- http://www.fao.org/termportal/contr/en/
-
- FAO terminology http://www.fao.org/termportal/en/
-
+
http://www.fao.org/termportal/contr/zh/
+
+
http://www.fao.org/termportal/contr/fr/
+ http://www.fao.org/termportal/contr/en/
http://www.fao.org/termportal/en/
http://www.fao.org/termportal/contr/ar/
+ FAO terminology http://www.fao.org/termportal/en/
+
http://www.fao.org/termportal/contr/es/
-
-
-
-
-
moniker (deprecated)
- 100
+ 100
- 3
- This property is deprecated.
+ 3
+ This property is deprecated.
-
-
-
-
-
- 1
-
+
+
+ http://faostat.fao.org/default.aspx?lang=es
FAOSTAT
- FAOSTAT http://faostat.fao.org
-
+ FAOSTAT http://faostat.fao.org
+
+ http://faostat.fao.org/default.aspx?lang=fr
codeFAOSTAT
-
+
http://faostat.fao.org
- http://faostat.fao.org/default.aspx?lang=fr
- http://faostat.fao.org/default.aspx?lang=es
-
-
- Madagascar
- MG
- مدغشقر
- Calculated
- 40845.0
- ariary malgascio
- 2009
- Manual Estimation
- millions of US dollars
- ariary
- -11.95
- Мадагаскар
- 1000 Ha
-
- مدغشقر
- 2009
- Malagasy
- 1000
- malgascio
- 15444
- мадагаскарец
- 1000 Ha
- MAG
- 19625.0
- Madagascar
- Madagascar
-
- 马达加斯加的
- Madagascar
- اريارى
-
- 2009
-
- MDG
- Data reported on country official publications or web sites (Official) or trade country files.
- ariary
-
- Madagascar
-
- 1985
- Estimated
- 58154.0
- malgache
-
- -25.61
- Madagascar
- 阿里亚里
- malgache
-
- 58704.0
- 2009
- Population data from the UN Population Division and the data refers to the UN Revision 2008
- 马达加斯加
-
- 马达加斯加共和国
- 50.48
- Республика Мадагаскар
-
- 129
- Madagascar
-
- 450
- Madagascar
- the Republic of Madagascar
- 2009
- 4510
-
- Мадагаскар
- جمهورية مدغشقر
- 2010
- 马达加斯加
- ариари
- Madagascar
- ariary
-
- la République de Madagascar
- 43.18
- Madagascar
-
- FMG
- Repubblica del Madagascar
- Manual Estimation
- 8590.0
- ملغاشي
- 0.435
- 1000 Ha
-
- la República de Madagascar
- 150
- 9999
-
-
-
-
-
-
-
-
-
-
-
- Iraq
IQ
- 第纳尔
عراقي
+ 第纳尔
جمهورية العراق
dinaro iracheno
118
العراق
- 2009
48.58
+
+ 2009
+
65837.0
Population data from the UN Population Division and the data refers to the UN Revision 2008
+ Manual Estimation
2009
- Manual Estimation
Repubblica dell'Iraq
伊拉克共和国
2009
@@ -24271,20 +24318,26 @@ See also core:localAwardId.
Республика Ирак
- 38.8
2009
+ 38.8
+
Ирак
Iraq
Ирак
+
iraquien
1000 Ha
9999
динар
iraquí
millions of US dollars
+
+
43524.0
+
+
Iraq
IRQ
368
@@ -24296,13 +24349,15 @@ See also core:localAwardId.
Iraqi
IRQ
1000
- العراق
+ العراق
+
3941
иракский
伊拉克
1000 Ha
1000 Ha
+
l'Iraq
Iraq
el Iraq
@@ -24311,14 +24366,16 @@ See also core:localAwardId.
Estimated
103
dinar
+
43432.0
伊拉克
15429
- Iraq
dinar
+ Iraq
+ Iraq
la República del Iraq
@@ -24329,98 +24386,193 @@ See also core:localAwardId.
the Republic of Iraq
8750.0
la République d'Iraq
-
+
+
+ MG
+ مدغشقر
+ Calculated
+ 40845.0
+ ariary malgascio
+ 2009
+ Manual Estimation
+ -11.95
+ ariary
+ millions of US dollars
+ Мадагаскар
+ 1000 Ha
+
+ مدغشقر
+ 2009
+ Malagasy
+ 1000
+ malgascio
+ 15444
+ мадагаскарец
+ 1000 Ha
+ MAG
-
-
-
-
+ Madagascar
+ 19625.0
+ Madagascar
+
+ 马达加斯加的
+ Madagascar
+ اريارى
+
+ 2009
+
+ MDG
+ Data reported on country official publications or web sites (Official) or trade country files.
-
+ ariary
+
+ Madagascar
+
+ 1985
+ Estimated
+ 58154.0
+ malgache
+
+
+ -25.61
+ 阿里亚里
-
-
+ Madagascar
+ malgache
+
+ 58704.0
+ 2009
+ 马达加斯加
+ Population data from the UN Population Division and the data refers to the UN Revision 2008
+ 马达加斯加共和国
+ 50.48
+
+ Республика Мадагаскар
+
+ 129
+ Madagascar
+ 450
+
+ Madagascar
+ 2009
+ the Republic of Madagascar
+ 4510
+
+ Мадагаскар
+ جمهورية مدغشقر
+
+ Madagascar
+ 2010
+
+ 马达加斯加
+ ариари
+ Madagascar
+ ariary
+
+
+ la République de Madagascar
+
+ 43.18
+ Madagascar
+
+ FMG
+ Repubblica del Madagascar
+ Manual Estimation
+ 8590.0
+ ملغاشي
+ 0.435
+ 1000 Ha
+ la República de Madagascar
+
+
+
+
+ 150
+ 9999
access provided by
- true
+ true
-
+
-
+
+
+
+
+
+
+
+
+
+
+
Mississipi
-
-
-
-
-
+
+
-
+
+
+
+
+
+
+
+
+
+
invited
+
-
-
-
- equipmentInFacility
-
- Relates the equipment to the facility that contains that equipment.
-
- true
-
-
-
- true
-
- 5
- 40
- in facility
-
-
-
- Gabon
8.7
Габон
Gabon
-
非洲法郎
+
GA
millions of US dollars
غابون
1475.0
+ Gabon
Gabon
Gabón
- 9999
Data reported on country official publications or web sites (Official) or trade country files.
+ 9999
+
+ Габонская Республика
+ Габон
Calculated
+ 2009
франк КФА
26767.0
- 2009
- Габон
- Габонская Республика
2009
the Gabonese Republic
- Estimated
加蓬的
+ Estimated
Manual Estimation
3161
franc CFA (Communauté financière africaine)
+
Data reported on country official publications or web sites (Official) or trade country files.
2009
- gabonese
+
GAB
+
+ gabonese
+
74
2009
el Gabón
@@ -24429,7 +24581,9 @@ See also core:localAwardId.
5140.0
加 蓬
+
+
2.32
1000 Ha
2009
@@ -24439,9 +24593,9 @@ See also core:localAwardId.
CFA franc (Communauté financière africaine)
加蓬共和国
89
- Gabonese
-3.98
2010
+ Gabonese
franco CFA
@@ -24463,9 +24617,13 @@ See also core:localAwardId.
25767.0
габонский
+
Gabon
+
gabonés
+
266
+
1000 Ha
Gabon
@@ -24473,27 +24631,17 @@ See also core:localAwardId.
la République gabonaise
14.5
1985
-
-
-
-
-
-
-
-
-
-
-
- Sri Lanka
Manual Estimation
+ Демократическая Социалистическая Республика Шри-Ланка
0.658
rupia
- Демократическая Социалистическая Республика Шри-Ланка
Repubblica democratica socialista di Sri Lanka
斯里兰卡民主社会主义共和国
+
+
LK
rupia di Sri Lanka
@@ -24506,9 +24654,9 @@ See also core:localAwardId.
سري لانكي
41979.0
2009
- 卢 比
- 斯里兰卡的
2610.0
+ 斯里兰卡的
+ 卢 比
7345
2009
@@ -24517,32 +24665,39 @@ See also core:localAwardId.
1000 Ha
Estimated
+
20238.0
- singalese
рупия
+ singalese
Sri Lanka
38
Sri Lanka
+
9999
Sri Lanka
- 15489
9.83
+
+ 15489
Sri Lanka
la République socialiste démocratique de Sri Lanka
Sri_Lanka
Шри-Ланка
+
2009
79.65
la República Socialista Democrática de Sri Lanka
1985
斯里兰卡
+
millions of US dollars
Sri Lanka
- Population data from the UN Population Division and the data refers to the UN Revision 2008
the Democratic Socialist Republic of Sri Lanka
+ Population data from the UN Population Division and the data refers to the UN Revision 2008
+
+
Official data reported on FAO Questionnaires from countries
144
سري لانكا
@@ -24560,250 +24715,242 @@ See also core:localAwardId.
روبية
of Sri Lanka
- Шри-Ланка
- Sri Lanka (fém.)
جمهورية سري لانكا الاشتراكية الديمقراطية
-
+ Шри-Ланка
斯里兰卡
+
+ Sri Lanka (fém.)
2009
+ Sri Lanka
2010
+
+
1000 Ha
1000
5.91
Calculated
1000 Ha
سري لانكا
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+ equipmentInFacility
+
+ Relates the equipment to the facility that contains that equipment.
+
+ true
+
+
+
+ true
+
+ 5
+ 40
+ in facility
+
+
+
- -1
- -1
+ -1
+ -1
- Bibo Definition: A seminar, discussion group, or the like, that emphasizes exchange of ideas and the demonstration and application of techniques, skills, etc.
-
-
+ Bibo Definition: A seminar, discussion group, or the like, that emphasizes exchange of ideas and the demonstration and application of techniques, skills, etc.
+
+
http://purl.org/ontology/bibo/
Workshop
-
+
- stable
+ stable
A seminar, discussion group, or the like, that emphasizes zxchange of ideas and the demonstration and application of techniques, skills, etc.
-
-
-
-
+
+ false
+ defaultLinkForm.jsp
+ true
-
+
- true
+ true
-
+
- 5
+ 5
contributes to
-
- false
- defaultLinkForm.jsp
- true
-
South Dakota
-
-
-
-
-
+
+
-
+
+
+
+
+
+
+
+
+
+
- Curaçao
Curaçao
+
Curaçao
- سانت مارتن
سانت مارتن
- Curaçao
+ Curaçao
سانت مارتن
+ Curaçao
+ سانت مارتن
Curaçao
Curaçao
Curaçao
库拉索
Curaçao
+
+
+
+
- Curaçao
Curaçao
- Curaçao
+
+ Curaçao
库拉索
+ Curaçao
- 531
158871
+ 531
+
+ 2010
9999
Curaçao
- 2010
+
库拉索
Curaçao
-
-
-
-
-
-
-
-
-
+
- stable
+ stable
-
- Audiovisual recording in film format
+
+ Audiovisual recording in film format
Film
- -1
+ -1
-
+
http://purl.org/ontology/bibo/
- -1
+ -1
aka movie.
+
-
+
Consortium
-
-
- -1
-
-
+ -1
-
-
- Independent organizations formally working together toward a common goal, under an expressed agreement
- Committee on Institutional Cooperation (CIC); The Five Colleges of Ohio
-
-
-
+
+
+
+
+
+ Independent organizations formally working together toward a common goal, under an expressed agreement
+
+ Committee on Institutional Cooperation (CIC); The Five Colleges of Ohio
+
+
+
-
- -1
-
-
-
-
-
-
-
+
+
+ -1
- -1
-
+ -1
+
- -1
+ -1
-
+
disputed
-
+
+ http://www.fao.org/termportal/contr/ar/
- FAO terminology http://www.fao.org/termportal/en/
+ http://www.fao.org/termportal/contr/es/
+ FAO terminology http://www.fao.org/termportal/en/
+ http://www.fao.org/termportal/contr/zh/
http://www.fao.org/termportal/contr/en/
nameListES
-
+
FAO terminology
-
- 2010-06-24
- http://www.fao.org/termportal/contr/ar/
- http://www.fao.org/termportal/contr/es/
- http://www.fao.org/termportal/contr/zh/
http://www.fao.org/termportal/en/
+
http://www.fao.org/termportal/contr/fr/
-
-
-
-
-
-
-
-
-
-
+ 2010-06-24
-
- 5
+
+ 5
- true
-
+ true
+
- true
+ true
related role
-
+
-
- most specific type
- 1
- 1
-
-
-
-
S.J.D. Doctor of Juridical Science
-
- S.J.D.
+ S.J.D.
+
-
+
+
+
+ most specific type
+ 1
+ 1
+
+
+
- Democratic Republic of the Congo
1000 Ha
la República Democrática del Congo
+
+
5.39
جمهورية الكونغو الديمقراطية
1000
@@ -24817,8 +24964,8 @@ See also core:localAwardId.
جمهورية الكونغو الديمقراطية
CD
-
+
180
congolese
@@ -24829,15 +24976,16 @@ See also core:localAwardId.
刚果民主共和国的; 刚果的 / 刚果民主共和国人; 刚果人
31.31
-
Repubblica democratica del Congo
-
+
+
Демократическая Республика Конго
+
COD
Manual Estimation
-
Congo_Democratic_Republic_of_the
+
Congolese
(из/житель) Демократической Республики Конго
@@ -24845,39 +24993,47 @@ See also core:localAwardId.
2009
- République démocratique du Congo
- 226705.0
+ 226705.0
+ République démocratique du Congo
+
франк
+
+
1000 Ha
- Population data from the UN Population Division and the data refers to the UN Revision 2008
- 10575.0
the Democratic Republic of the Congo
+ 10575.0
+
+ Population data from the UN Population Division and the data refers to the UN Revision 2008
12.2
234486.0
8500
-
franc
+
9999
la République démocratique du Congo
Democratic Republic of the Congo
من جمهورية الكونغو الديمقراطية
franc
+
- Демократическая Республика Конго
22450.0
+ Демократическая Республика Конго
+
franco congolese
- congoleño
Calculated
+ congoleño
1997
+
la République démocratique du Congo
+
la República Democrática del Congo
فرنك
ZAI
@@ -24892,95 +25048,86 @@ See also core:localAwardId.
2009
the Democratic Republic of the Congo
Repubblica democratica del Congo
+ Democratic Republic of the Congo
República Democrática del Congo
刚果民主共和国
- franco
+ franco
+
15513
جمهورية الكونغو الديمقراطية
millions of US dollars
Repubblica democratica del Congo
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+ 1
+
- true
+ true
educational organization
-
- desc
- 20
-
+
+ desc
+ 20
+
-
- 5
- true
- This relates an instance of Educational Training to the Organization that provided the training.
-
-
-
-
-
+
+ 5
+ true
+ This relates an instance of Educational Training to the Organization that provided the training.
- This relates an information resource to a person it features.
-
-
-
+ This relates an information resource to a person it features.
+
+
+
- features
+ features
features
- This is done through a restriction on the foaf:Person class.
- 60
+ This is done through a restriction on the foaf:Person class.
+ 60
- true
- 5
+ true
+ 5
+
+
+
+
+
Wisconsin
-
-
-
-
-
+
+
-
+
+
+
+
+
-
+
-
- 2
+
+ 2
Certification
-
- 2
- An issued certificate
- see also core:Certificate
+
+ 2
+ An issued certificate
+ see also core:Certificate
@@ -24988,239 +25135,183 @@ See also core:localAwardId.
- A role of observing or treating patients
+ A role of observing or treating patients
Clinical Role
- -1
+ -1
-
-
- -1
- true
-
-
-
-
-
-
-
-
- 1
-
+
+
+ -1
+ true
- true
- true
+ true
+ true
- 5
+ 5
- This is done through a restriction on academic degree to allow the values from to be foaf:organization to be used as the range.
- offered by
+ This is done through a restriction on academic degree to allow the values from to be foaf:organization to be used as the range.
+ offered by
offered by
-
- 60
+
+ 60
-
-
- This relates an academic degree to the organization offering the degree.
-
-
-
-
-
+
+
+ This relates an academic degree to the organization offering the degree.
FAOSTAT
2011-07-21
- FAOSTAT http://faostat.fao.org/DesktopDefault.aspx?PageID=377&lang=en#ancor
+ FAOSTAT http://faostat.fao.org/DesktopDefault.aspx?PageID=377&lang=en#ancor
+ http://faostat.fao.org/DesktopDefault.aspx?PageID=377&lang=en#ancor
http://faostat.fao.org/DesktopDefault.aspx?PageID=377&lang=en#ancor
+ http://faostat.fao.org/DesktopDefault.aspx?PageID=377&lang=es#ancor
- Land area is the total area of the country excluding area under inland water bodies. Possible variations in the data may be due to updating and revisions of the country data and not necessarily to any change of area. Data are expressed in 1 000 hectares. http://faostat.fao.org/site/375/default.aspx
+ http://faostat.fao.org/DesktopDefault.aspx?PageID=377&lang=fr#ancor
+ Land area is the total area of the country excluding area under inland water bodies. Possible variations in the data may be due to updating and revisions of the country data and not necessarily to any change of area. Data are expressed in 1 000 hectares. http://faostat.fao.org/site/375/default.aspx
landArea
-
-
- http://faostat.fao.org/DesktopDefault.aspx?PageID=377&lang=en#ancor
- http://faostat.fao.org/DesktopDefault.aspx?PageID=377&lang=es#ancor
- http://faostat.fao.org/DesktopDefault.aspx?PageID=377&lang=fr#ancor
+
+
Alaska
-
-
-
-
-
+
+
-
+
+
+
+
+
- true
- true
+ true
+ true
-
-
+
+
- 5
+ 5
eligible for
-
- 2
+
+ 2
-
-
-
+
+ 1
+
-
-
-
-
-
-
-
-
-
-
-
-
- -1
-
- -1
- Agreement
-
-
-
-
-
-
-
- A negotiated arrangement between two or more parties regarding a course of action
-
-
-
-
-
-
-
-
-
-
-
-
-
-
S.J.D. Doctor of the Science of Law
- S.J.D.
+ S.J.D.
+
-
+
-
-
-
-
-
-
-
+
1
+
-
- Use subclasses of core:Facility subclasses instead of this class if possible
+
+ Use subclasses of core:Facility subclasses instead of this class if possible
Facility
- Distinct from the organization that runs it; e.g., a laboratory may be an organization but may be run by another organization and only consist of facilities housing equipment or services. Can be a building or place that provides a particular service or is used for a particular activity. Use the specific Building or Room whenever possible. Short definition from http://dictionary.reference.com/browse/facility.
-
-
- Something designed, built, installed, etc., to serve a specific function or activity affording a convenience or service.
+ Distinct from the organization that runs it; e.g., a laboratory may be an organization but may be run by another organization and only consist of facilities housing equipment or services. Can be a building or place that provides a particular service or is used for a particular activity. Use the specific Building or Room whenever possible. Short definition from http://dictionary.reference.com/browse/facility.
+
+
+ Something designed, built, installed, etc., to serve a specific function or activity affording a convenience or service.
- -1
- -1
+ -1
+ -1
- false
-
+ false
+
expiration date
- 5
- 6
-
- true
+ 5
+ 6
+
+ true
-
+
-
-
-
-
-
-
- A gathering of people for a defined purpose, not necessarily public or announced
+
+ A gathering of people for a defined purpose, not necessarily public or announced
Meeting
- -1
- -1
-
+ -1
+ -1
+
-
+
Louisiana
-
-
-
-
-
+
+
-
+
+
+
+
+
- Tunisia
+ 2009
D
- 2009
+
Tunisia
+
37.54
la République tunisienne
第纳尔
Manual Estimation
+
突尼斯的
8007
+
2009
Tunisia
1000 Ha
7.52
9789.0
+
Population data from the UN Population Division and the data refers to the UN Revision 2008
Data reported on country official publications or web sites (Official) or trade country files.
la Tunisie
Manual Estimation
-
1000
+
15536.0
突尼斯
+ Tunisia
30.24
39561.0
- Tunisia
تونس
@@ -25228,6 +25319,7 @@ See also core:localAwardId.
Tunisia
Estimated
突尼斯共和国
+
15500
10272.0
millions of US dollars
@@ -25237,6 +25329,7 @@ See also core:localAwardId.
Túnez
the Republic of Tunisia
Repubblica tunisina
+
тунисский
788
@@ -25246,9 +25339,11 @@ See also core:localAwardId.
0.683
1985
+
248
11.59
динар
+ Tunisia
تونس
2009
@@ -25260,6 +25355,7 @@ See also core:localAwardId.
TUN
الجمهورية التونسية
+
Tunisia
1000 Ha
tunecino
@@ -25273,48 +25369,16 @@ See also core:localAwardId.
دينار
tunisino
+
تونسي
1000 Ha
TUN
222
Тунисская Республика
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- assignee
-
-
-
-
- 5
- 5
- true
-
- the individual or entity to whom ownership of the published application was assigned at the time of publication.
- true
-
- Serbia
YUG
1000 Ha
@@ -25325,10 +25389,14 @@ See also core:localAwardId.
688
динар
+
+
+
Estimated
+
جمهورية صربيا
- 塞尔维亚
+ 塞尔维亚
2009
the Republic of Serbia
Serbia
@@ -25336,28 +25404,32 @@ See also core:localAwardId.
Manual Estimation
9850.0
42984.0
- dinar
+ dinar
Calculated
9999
- dinaro
Official data reported on FAO Questionnaires from countries
+ dinaro
دينار
of Serbia
Serbia
- 1000
8746.0
+ 1000
+
+
la République de Serbie
dinar
+
1000 Ha
49909
2009
- RS
+ RS
YUD
la Serbie
la República de Serbia
+
Population data from the UN Population Division and the data refers to the UN Revision 2008
56448
Serbia
@@ -25365,12 +25437,13 @@ See also core:localAwardId.
Serbia
Serbie
SRB
+
Official data reported on FAO Questionnaires from countries
Serbia
- серб
2010
- صربيا
+ серб
+ صربيا
la Serbia
Serbia
塞尔维亚的
@@ -25378,14 +25451,15 @@ See also core:localAwardId.
من صربيا
2009
+ Serbia
8836.0
0.735
Сербия
- la Repubblica di Serbia
صربيا
- 1000 Ha
Сербия
+ 1000 Ha
millions of US dollars
+ la Repubblica di Serbia
serbio
第纳尔
@@ -25395,56 +25469,59 @@ See also core:localAwardId.
2009
- serbe
塞尔维亚共和国
+ serbe
塞尔维亚
- Республика Сербия
-
-
-
-
-
-
-
-
-
+ Республика Сербия
+
+
+
+
+
+ assignee
+
+
+
+
+ 5
+ 5
+ true
+
+ the individual or entity to whom ownership of the published application was assigned at the time of publication.
+ true
+
-
S.Sc.D. Doctor of Social Science
- S.Sc.D.
+ S.Sc.D.
+
-
+
-
people
- 1
+ 1
+
- 2009-12-08T10:32:16
-
-
-
-
-
+ 2009-12-08T10:32:16
- Regularly updated online journal or newsletter by one or more writers, called bloggers, containing articles and commentary of interest to the blogger
+ Regularly updated online journal or newsletter by one or more writers, called bloggers, containing articles and commentary of interest to the blogger
- -1
+ -1
Blog
-
+
- Blog is short for weblog.
- Library of Congress Blog
+ Blog is short for weblog.
+ Library of Congress Blog
- -1
+ -1
-
+
@@ -25453,47 +25530,48 @@ See also core:localAwardId.
- true
- Public Description from source: http://bibotools.googlecode.com/svn/bibo-ontology/trunk/doc/index.html . Bibo considers the bibo:presents and the bibo:presentedAt unstable terms. It also indicates that bibo:presents is a sub-property of event:product.
-
+ true
+ Public Description from source: http://bibotools.googlecode.com/svn/bibo-ontology/trunk/doc/index.html . Bibo considers the bibo:presents and the bibo:presentedAt unstable terms. It also indicates that bibo:presents is a sub-property of event:product.
+
http://purl.org/ontology/bibo/
-
+
- presentations
+ presentations
Relates an event to associated documents; for example, conference to a paper.
-
- Relates an event to associated documents; for example, conference to a paper.
- unstable
- 200
+
+ Relates an event to associated documents; for example, conference to a paper.
+ unstable
+ 200
- true
+ true
related documents
-
-
+
1
+
- Micronesia (Federated States of)
Micronesia_Federated_States_of
- 111.0
des États fédérés de Micronésie
+ 111.0
163
-
1000 Ha
- 1000 Ha
+
+
Микронезия (Федеративные Штаты)
+ 1000 Ha
15518
Data reported on country official publications or web sites (Official) or trade country files.
密克罗尼西亚联邦
+
Micronesia (Stati federati di)
2009
145
@@ -25501,6 +25579,7 @@ See also core:localAwardId.
FM
ميكرونيزيا
دولار الولايات المتحدة
+
dollaro USA
dólar de EE.UU.
@@ -25513,19 +25592,21 @@ See also core:localAwardId.
ميكرونيزيا
2009
de los Estados Federados de Micronesia
- micronesiano
163.04
+ micronesiano
密克罗尼西亚的
- 密克罗尼西亚(联邦)
- Micronesia (Federated States of)
Федеративные Штаты Микронезии
+ Micronesia (Federated States of)
+ 密克罗尼西亚(联邦)
FSM
доллар
1991
Micronesia (Federated States of)
US dollar
+
ولايات ميكرونيزيا الموحدة
+
5.26
millions of US dollars
@@ -25533,17 +25614,23 @@ See also core:localAwardId.
22.0
Calculated
Population data from the UN Population Division and the data refers to the UN Revision 2008
+
70.0
+ Micronesia (Federated States of)
Stati federati di Micronesia
+
ميكرونيزي، من ولايات ميكرونيزيا الموحدة
+
274.0
密克罗尼西亚(联邦)
583
+
+
2010
2009
- 4805
les États fédérés de Micronésie
+ 4805
138.06
Micronésie (États fédérés de)
@@ -25561,80 +25648,65 @@ See also core:localAwardId.
1000 Ha
Микронезия (Федеративные Штаты)
1000
- 9999
Micronesia (Estados Federados de)
-
-
-
-
+ 9999
-
-
-
-
-
-
-
+
-
-
-
-
+
+ 607-299-9999
+
+
- south-eastern Asia
- جنوب شرقي آسيا
- 84959
- south-eastern Asia
- Юго-Восточная Азия
-
-
- Asia sud orientale
- south-eastern Asia
-
Asia sudoriental
- Asia du sud-est
- Asia sud orientale
-
-
-
- Asia du sud-est
- Юго-Восточная Азия
- Юго-Восточная Азия
-
- جنوب شرقي آسيا
-
- 东南亚
- 29173
- Asia du sud-est
- 东南亚
- 5304
-
- 1985
- Asia sud orientale
-
-
- 035
- Asia sudoriental
- south-eastern Asia
-
- جنوب شرقي آسيا
- 9999
- 东南亚
- Asia sudoriental
-
-
-
-
-
-
-
-
-
-
-
-
+
+ Asia du sud-est
+ 035
+ 东南亚
+
+
+
+ جنوب شرقي آسيا
+ Asia du sud-est
+
+
+ Asia sud orientale
+
+ Asia sud orientale
+
+
+ south-eastern Asia
+
+
+ Asia sud orientale
+
+ 9999
+ 5304
+ Юго-Восточная Азия
+ جنوب شرقي آسيا
+ 东南亚
+ 84959
+ جنوب شرقي آسيا
+ south-eastern Asia
+ south-eastern Asia
+
+
+
+
+
+ Asia sudoriental
+
+ 东南亚
+ Asia du sud-est
+ Юго-Восточная Азия
+ Asia sudoriental
+ 29173
+
+ Юго-Восточная Азия
+ south-eastern Asia
+ 1985
@@ -25860,20 +25932,23 @@ See also core:localAwardId.
- United Arab Emirates
230252.0
درهم
- des Émirats arabes unis; émirien
+
Émirats arabes unis
+ des Émirats arabes unis; émirien
2009
569.0
15503
+
1000 Ha
Manual Estimation
(из/житель) Объединенных Арабских Эмиратов
8360.0
+
迪尔汗
dirham
+
les Émirats arabes unis
the United Arab Emirates
Manual Estimation
@@ -25884,40 +25959,47 @@ See also core:localAwardId.
51.53
56.38
- los Emiratos Árabes Unidos
ARE
+ los Emiratos Árabes Unidos
les Émirats arabes unis
United_Arab_Emirates
8067
Manual Estimation
Emirati arabi uniti
1985
-
- Emirati arabi uniti
阿拉伯联合酋长国
+ Emirati arabi uniti
+
of the United Arab Emirates
+ United Arab Emirates
United Arab Emirates
8360.0
+
4599.0
+
2010
Emiratos Árabes Unidos
+
1000 Ha
阿拉伯联合酋长国
los Emiratos Árabes Unidos
2009
Estimated
+
الإمارات العربية المتحدة
dirham degli EAU
AE
+
إماراتي; من الإمارات العربية المتحدة
+ Объединенные Арабские Эмираты
阿联酋的/ 阿联酋人
UAE
- Объединенные Арабские Эмираты
+
26.28
Emirati arabi uniti
@@ -25925,8 +26007,9 @@ See also core:localAwardId.
الإمارات العربية المتحدة
784
- de los Emiratos Arabes Unidos
дирxам
+ de los Emiratos Arabes Unidos
+
225
degli Emirati arabi uniti
Dh
@@ -25942,78 +26025,57 @@ See also core:localAwardId.
the United Arab Emirates
Population data from the UN Population Division and the data refers to the UN Revision 2008
Объединенные Арабские Эмираты
- 255
2009
+ 255
22.62
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- -1
+
+ -1
- An academic administrative position (associate dean, etc.) as distinct from a professional administrative position (non-academic)
-
-
-
-
-
-
- Associate Dean
+ An academic administrative position (associate dean, etc.) as distinct from a professional administrative position (non-academic)
+
+
+
+ Associate Dean
Faculty Administrative Position
- -1
+
+
+ -1
+
-
+
+
- true
- That is a position held by an academic faculty member who works for administration.
-
+ true
+
+ That is a position held by an academic faculty member who works for administration.
+
-
-
+
- 30
- true
-
+ 30
+ true
+
leadership role of
-
+
- 5
+ 5
-
-
-
-
-
-
+
-
- S.T.B.
S.T.B. Bachelor of Sacred Theology
+ S.T.B.
+
-
+
@@ -26021,74 +26083,75 @@ See also core:localAwardId.
-
-
-
-
-
-
- -1
- An employment activity, whether compensated or not. Short definition comes from http://en.wikipedia.org/wiki/Position, and has been modified.
-
-
- -1
-
+
+
+
+
+ -1
+
+ An employment activity, whether compensated or not. Short definition comes from http://en.wikipedia.org/wiki/Position, and has been modified.
+
+ -1
+
+
+
+
+
-
- true
- Particular position in an organization, commonly identified by job title, and normally associated with a job description that details the tasks and responsibilities that go with the position.
+
+ true
+ Particular position in an organization, commonly identified by job title, and normally associated with a job description that details the tasks and responsibilities that go with the position.
+
Position
-
-
- Director of Admissions and Placement; Associate University Librarian
-
+
+ Director of Admissions and Placement; Associate University Librarian
+
-
+
-
-
-
+
+
-
+
http://purl.org/ontology/bibo/
- A specific journal article
-
+ A specific journal article
+
+
Article
+
+
-
+
+
+
+
-
- A written composition in prose, usually nonfiction, on a specific topic, forming an independent part of a periodical or book
-
-
-
-
- Short Definition modified from the bibo ontology.
-
-
-
+ A written composition in prose, usually nonfiction, on a specific topic, forming an independent part of a periodical or book
+
+
+
+
+
+ Short Definition modified from the bibo ontology.
+
A written composition in prose, usually nonfiction, on a specific topic, forming an independent part of a book or other publication, as a newspaper or magazine.
-
-
- stable
-
-
-
-
-
+
+ stable
+
- Europe
+
欧洲
84917
+
Европа
@@ -26096,17 +26159,18 @@ See also core:localAwardId.
+
Europa
-
Европа
- 9999
+
- Europe
+ 9999
Europa
+ Europe
Europa
-
2006
+
Europe
@@ -26115,9 +26179,10 @@ See also core:localAwardId.
+ Europe
- Europe
+
Europe
Европа
@@ -26126,8 +26191,9 @@ See also core:localAwardId.
5400
أوروبا
欧洲
-
+
+
أوروبا
Europa
@@ -26136,11 +26202,13 @@ See also core:localAwardId.
Europa
+
أوروبا
150
+
@@ -26148,149 +26216,133 @@ See also core:localAwardId.
欧洲
+ Europe
Europe
+
+
+
Europa
2724
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- true
- The source of the public description and this info is found here: http://bibotools.googlecode.com/svn/bibo-ontology/trunk/doc/index.html. Bibo considers this term "unstable". The bibo editorial note is: "We are not defining, using an enumeration, the range of the bibo:degree to the defined list of bibo:ThesisDegree. We won't do it because we want people to be able to define new degress if needed by some special usecases. Creating such an enumeration would restrict this to happen."
+ true
+ The source of the public description and this info is found here: http://bibotools.googlecode.com/svn/bibo-ontology/trunk/doc/index.html. Bibo considers this term "unstable". The bibo editorial note is: "We are not defining, using an enumeration, the range of the bibo:degree to the defined list of bibo:ThesisDegree. We won't do it because we want people to be able to define new degress if needed by some special usecases. Creating such an enumeration would restrict this to happen."
http://purl.org/ontology/bibo/
related degree
-
-
-
- unstable
- We are not defining, using an enumeration, the range of the bibo:degree to the defined list of bibo:ThesisDegree. We won't do it because we want people to be able to define new degress if needed by some special usecases. Creating such an enumeration would restrict this to happen.
- true
- The thesis degree.
+
+
+
+ unstable
+ We are not defining, using an enumeration, the range of the bibo:degree to the defined list of bibo:ThesisDegree. We won't do it because we want people to be able to define new degress if needed by some special usecases. Creating such an enumeration would restrict this to happen.
+ true
+ The thesis degree.
The thesis degree.
- degree
+ degree
-
- -1
+
+
+ -1
-
Laboratory
-
+
- An organizational unit (as opposed to the physical facility) that performs research, provides services, or processes materials
-
+ An organizational unit (as opposed to the physical facility) that performs research, provides services, or processes materials
+
-
-
-
- -1
+
+
+ -1
-
+
+
- 5
+ 5
- true
+ true
participant
-
-
+
+
local award id
-
- 60
- core:localAwardId has a domain of core:Grant, and should be public since that's its public identifier for local use by OSP, accounting, department admins, and the PI
+
+ 60
+ core:localAwardId has a domain of core:Grant, and should be public since that's its public identifier for local use by OSP, accounting, department admins, and the PI
- An institution's local identifier assigned to a grant awarded.
+ An institution's local identifier assigned to a grant awarded.
- 1
-
+ 1
+
-
+
- true
- use this property to record editorial work performed for a document, such as a book, an academic article or a conference paper.
-
- true
- edu.cornell.mannlib.vitro.webapp.edit.n3editing.configuration.generators.AutocompleteObjectPropertyFormGenerator
+ true
+ use this property to record editorial work performed for a document, such as a book, an academic article or a conference paper.
+
+ true
+ edu.cornell.mannlib.vitro.webapp.edit.n3editing.configuration.generators.AutocompleteObjectPropertyFormGenerator
editor of
- 20
-
+ 20
+
-
+
- 5
+ 5
fax
- 4
+ 4
-
-
- Please enter the complete phone number for your fax, with area code and also country code (if outside the US).
+
+
+ Please enter the complete phone number for your fax, with area code and also country code (if outside the US).
-
- 70
-
-
-
- 1
-
+
+ 70
-
-
- The International classification(s) to which the published application has been assigned.
-
-
- 5
+
+
+ The International classification(s) to which the published application has been assigned.
+
+
+ 5
- 1
- The International classification(s) to which the published application has been assigned.
-
+ 1
+ The International classification(s) to which the published application has been assigned.
+
International Classification (ICL) code
@@ -26298,34 +26350,36 @@ See also core:localAwardId.
http://faostat.fao.org/DesktopDefault.aspx?PageID=377&lang=en#ancor
- FAOSTAT
- FAOSTAT http://faostat.fao.org/DesktopDefault.aspx?PageID=377&lang=en#ancor
-
-
- 2010-07-21
- Agricultural area, this category is the sum of areas under a) arable land - land under temporary agricultural crops (multiple-cropped areas are counted only once), temporary meadows for mowing or pasture, land under market and kitchen gardens and land temporarily fallow (less than five years). The abandoned land resulting from shifting cultivation is not included in this category. Data for “Arable land” are not meant to indicate the amount of land that is potentially cultivable; (b) permanent crops - land cultivated with long-term crops which do not have to be replanted for several years (such as cocoa and coffee); land under trees and shrubs producing flowers, such as roses and jasmine; and nurseries (except those for forest trees, which should be classified under "forest"); and (c) permanent meadows and pastures - land used permanently (five years or more) to grow herbaceous forage crops, either cultivated or growing wild (wild prairie or grazing land). Data are expressed in 1000 hectares. http://faostat.fao.org/site/375/default.aspx
-
-
- agriculturalArea
http://faostat.fao.org/DesktopDefault.aspx?PageID=377&lang=en#ancor
+ FAOSTAT
+ FAOSTAT http://faostat.fao.org/DesktopDefault.aspx?PageID=377&lang=en#ancor
+
+
http://faostat.fao.org/DesktopDefault.aspx?PageID=377&lang=fr#ancor
+ 2010-07-21
+ Agricultural area, this category is the sum of areas under a) arable land - land under temporary agricultural crops (multiple-cropped areas are counted only once), temporary meadows for mowing or pasture, land under market and kitchen gardens and land temporarily fallow (less than five years). The abandoned land resulting from shifting cultivation is not included in this category. Data for “Arable land” are not meant to indicate the amount of land that is potentially cultivable; (b) permanent crops - land cultivated with long-term crops which do not have to be replanted for several years (such as cocoa and coffee); land under trees and shrubs producing flowers, such as roses and jasmine; and nurseries (except those for forest trees, which should be classified under "forest"); and (c) permanent meadows and pastures - land used permanently (five years or more) to grow herbaceous forage crops, either cultivated or growing wild (wild prairie or grazing land). Data are expressed in 1000 hectares. http://faostat.fao.org/site/375/default.aspx
+
+
+ agriculturalArea
http://faostat.fao.org/DesktopDefault.aspx?PageID=377&lang=es#ancor
- Hungary
9053.0
هنغاريا
جمهورية هنغاريا
Repubblica di Ungheria
匈牙利共和国
+
HUN
هنغاريا
+
1000 Ha
Ungheria
2009
+
97
@@ -26335,16 +26389,18 @@ See also core:localAwardId.
113
Official data reported on FAO Questionnaires from countries
128964.0
- Hungría
2009
Hongrie
+ Hungría
2009
2009
+
3695
Hungary
16.12
5783.0
+
Ungheria
0.805
Hungarian
@@ -26359,10 +26415,13 @@ See also core:localAwardId.
la République de Hongrie
ungherese
+
+
Венгрия
Hungary
15424
+ Hungary
HU
48.58
Hungary
@@ -26373,19 +26432,22 @@ See also core:localAwardId.
348
hongrois
匈牙利
- венгерский
Hungría
+ венгерский
匈牙利
- 9993.0
22.89
+ 9993.0
Population data from the UN Population Division and the data refers to the UN Revision 2008
+
Венгерская Республика
la Hongrie
+
Ft
forint
Official data reported on FAO Questionnaires from countries
+
2009
45.75
@@ -26395,96 +26457,86 @@ See also core:localAwardId.
HUN
форинт
1985
+
la República de Hungría
福 林
fiorino ungherese
Official data reported on FAO Questionnaires from countries
1000 Ha
Венгрия
-
-
-
-
-
-
-
-
-
-
-
-
+
-
+
- true
- publisher of
- Relates an entity that is engaged in publishing printed or online material to the material itself.
- Public Definition source (http://www.answers.com/topic/publisher).
- 51
-
+ true
+ publisher of
+ Relates an entity that is engaged in publishing printed or online material to the material itself.
+ Public Definition source (http://www.answers.com/topic/publisher).
+ 51
+
- true
+ true
- 5
+ 5
publisher of
-
-
- 1
-
-
-
- S.T.D.
S.T.D. Doctor of Sacred Theology
+ S.T.D.
+
-
+
+
+
+ 1
+
+
- 5
+ 5
-
+
-
+
- hasActivityDescription
- This relates a person to a role they play.
+ hasActivityDescription
+ This relates a person to a role they play.
- 60
+ 60
has role
- true
- true
+ true
+ true
-
- -1
-
- -1
- true
+
+ -1
+
+ -1
+ true
Teacher Role
- A role of serving as an educator
+ A role of serving as an educator
-
-
-
-
+
+
+
+
- Botswana
Botswana
Республика Ботсвана
بوتسوانا
Botswana
du Botswana; botswanais
+
1985
博茨瓦纳
BW
@@ -26497,20 +26549,24 @@ See also core:localAwardId.
BOT
of Botswana
- 20.0
25852.0
+ 20.0
9999
Botswana
le Botswana
pula
+
+
+
botswanés
BWA
+ Botswana
Botswana
Official data reported on FAO Questionnaires from countries
1000 Ha
-
2009
+
Population data from the UN Population Division and the data refers to the UN Revision 2008
la République du Botswana
@@ -26519,13 +26575,15 @@ See also core:localAwardId.
pula
2009
+
29.36
- 11823.0
2009
+ 11823.0
1000
-26.9
Botswana
+
botswano
Botswana
@@ -26534,20 +26592,24 @@ See also core:localAwardId.
la República de Botswana
the Republic of Botswana
Repubblica del Botswana
+
072
博茨瓦纳的 / 博茨瓦纳人
Calculated
pula
Manual Estimation
Manual Estimation
+
بوتسوانا
pula
博茨瓦纳共和国
Estimated
2010
+
пула
Ботсвана
ботсванский
+
جمهورية بوتسوانا
1000 Ha
P
@@ -26559,182 +26621,156 @@ See also core:localAwardId.
58173.0
Botswana
56673.0
+
بوتسواني
普 拉
35
- 20
-17.78
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+ 20
http://faostat.fao.org/DesktopDefault.aspx?PageID=550&lang=en#ancor
+ http://faostat.fao.org/DesktopDefault.aspx?PageID=550&lang=en#ancor
2009-09-21
- The total population usually refers to the present-in-area (de facto) population which includes all persons physically present within the present geographical boundaries of countries at the mid-point of the reference period. http://faostat.fao.org/site/375/default.aspx
+ The total population usually refers to the present-in-area (de facto) population which includes all persons physically present within the present geographical boundaries of countries at the mid-point of the reference period. http://faostat.fao.org/site/375/default.aspx
+ http://faostat.fao.org/DesktopDefault.aspx?PageID=550&lang=es#ancor
FAOSTAT
population
-
-
+
+
-
- FAOSTAT http://faostat.fao.org/site/550/default.aspx
- http://faostat.fao.org/DesktopDefault.aspx?PageID=550&lang=en#ancor
- http://faostat.fao.org/DesktopDefault.aspx?PageID=550&lang=es#ancor
http://faostat.fao.org/DesktopDefault.aspx?PageID=550&lang=fr#ancor
+
+ FAOSTAT http://faostat.fao.org/site/550/default.aspx
- Caribbean Community and Common Market
-
- Communauté des Caraïbes
-
- 9999
- CARICOM
- Карибское сообщество
- المجموعة الكاريبية
-
+ Caribbean Community
Comunidad del Caribe
- 加勒比共同体
-
- CARICOM
- Comunidad del Caribe
-
-
-
- Caribbean Community and Common Market
-
-
- 2002
- http://www.caricom.org/
+
+ Caribbean Community and Common Market
+
- 1325
- 47982
+
+ Caribbean Community and Common Market
+
+ 2002
+
+
+
+
+ CARICOM
+
+
+ http://www.caricom.org/
+
+
+ CARICOM
+
+
+ Comunidad del Caribe
+
+ CARICOM http://www.caricom.org/
+
+ المجموعة الكاريبية
+ 9999
+
+ Communauté des Caraïbes
+ 加勒比共同体
CARICOM
Communauté des Caraïbes
+ Карибское сообщество
+ 47982
+ 1325
+ CARICOM
- CARICOM http://www.caricom.org/
- CARICOM
- Caribbean Community
-
-
-
-
-
-
-
-
Dataset
- US Patent Data; US Job Data
- -1
- -1
-
- A named collection of data, usually containing only one type of data
+ US Patent Data; US Job Data
+ -1
+ -1
+
+ A named collection of data, usually containing only one type of data
-
+
-
-
- 1
-
-
-
related documents
- 190
- reference information to online content, translations, etc.
+ 190
+
+ reference information to online content, translations, etc.
- 2010-01-10T16:50:29
-
-
-
- 1
-
+ 2010-01-10T16:50:29
- An agreement involving specific deliverables and payment
+ An agreement involving specific deliverables and payment
-
+
Contract
-
- -1
- -1
+
+ -1
+ -1
-
+
+
+
+ 1
+
+
- Definiton from Bibo here: http://bibotools.googlecode.com/svn/bibo-ontology/trunk/doc/index.html
+ Definiton from Bibo here: http://bibotools.googlecode.com/svn/bibo-ontology/trunk/doc/index.html
- An instance or a session in which testimony and arguments are presented, esp. before an official, as a judge in a lawsuit.
- -1
+ An instance or a session in which testimony and arguments are presented, esp. before an official, as a judge in a lawsuit.
+ -1
http://purl.org/ontology/bibo/
Hearing
An instance or a session in which testimony and arguments are presented, esp. before an official, as a judge in a lawsuit.
-
-
- -1
+
+
+ -1
- stable
+ stable
-
+
-
S.T.M. Master of Sacred Theology
- S.T.M.
+ S.T.M.
+
-
+
-
-
- true
- A date and/or time
+
+
+ true
+ A date and/or time
- -1
- -1
+ -1
+ -1
Date/Time Value
- France
euro
France
@@ -26747,6 +26783,7 @@ See also core:localAwardId.
1000 Ha
法 国
+
French
51.09
1000 Ha
@@ -26755,6 +26792,7 @@ See also core:localAwardId.
2009
1985
la République française
+
يورو
54766.0
@@ -26767,18 +26805,20 @@ See also core:localAwardId.
68
Repubblica francese
- 9999
+
29266.0
+ 9999
欧 元
+
فرنسي
Francia
- Francia
Франция
+
+ 9.56
la República Francesa
-
-5.14
- 9.56
+ Francia
Data include the French overseas departments of French Guiana, Guadeloupe, Martinique, and Réunion. Estimated
FRA
francés
@@ -26793,18 +26833,22 @@ See also core:localAwardId.
1000 Ha
85
- France
+
+ France
Francia
+ France
+
Data reported on country official publications or web sites (Official) or trade country files.
euro
Francia
1000
-
- 62343.0
- euro
Calculated
+
+
+ euro
+ 62343.0
FRA
Французская Республика
2009
@@ -26815,78 +26859,63 @@ See also core:localAwardId.
الجمهورية الفرنسية
2009
2009
+
فرنسا
+
la France
Population data from the UN Population Division and the data refers to the UN Revision 2008
+
3081
французский
France
+
法 国
-
-
-
-
-
-
-
-
-
-
-
-
+
-
-
- true
+
+
+ true
reproduced in
- 60
+ 60
- true
+ true
- 5
+ 5
-
D.P.H. Doctor of Public Health
- D.P.H.
+ D.P.H.
+
-
-
-
-
-
-
-
-
-
-
-
+
- Congo
CG
+
جمهورية الكونغو
- Manual Estimation
18.65
- Repubblica del Congo
11.21
+ Repubblica del Congo
+
+ Manual Estimation
Congo
59
刚果的 / 刚果人
1985
34150.0
+
الكونغو
0.489
Data reported on country official publications or web sites (Official) or trade country files.
@@ -26896,8 +26925,10 @@ See also core:localAwardId.
刚 果
46
Республика Конго
+
Congo_Republic_of_the
+
34200.0
非洲法郎
9580.0
@@ -26906,8 +26937,10 @@ See also core:localAwardId.
franc CFA (Communauté financière africaine)
Manual Estimation
+
刚果共和国
1000 Ha
+
1000
1000 Ha
刚 果
@@ -26922,25 +26955,29 @@ See also core:localAwardId.
2010
CFA franc (Communauté financière africaine)
فرنك الجماعة المالية الأفريقية
- the Congo
Congo
10560.0
+ the Congo
+
-
- 2009
+
+
2009
+ 2009
- Congo
+
-5.03
+ Congo
конголезский
- الكونغو
+ 3.7
1000 Ha
the Republic of the Congo
- 3.7
PRC
+ الكونغو
2009
1811
COG
+
Конго
franco CFA (Communauté financière africaine)
@@ -26953,110 +26990,86 @@ See also core:localAwardId.
Congo
la République du Congo
- 3683.0
+
Estimated
+ 3683.0
+ Congo
la República del Congo
-
congolais
франк КФА
Congolese
15393
-
-
-
-
-
-
-
-
-
-
-
+
+
+ Used for a single narrative summary of outreach, typically covering a wide range of activities and time periods; use Outreach Provider Role for information on individual activities
+
+
+ 1
+ 10
+
+
+
+
+ Please enter a single summary narrative of your outreach goals and/or contributions
+
+ My extension program consists of developing and reporting disease management strategies that are both economically and environmentally sound for fresh market vegetable production. We hope that some of this testing will result in practices adaptable for organic production.
+
+ outreach overview
- 1
+ 1
name suffix
-
+
- 34
+ 34
- Jr.; III;; M.D.
+ Jr.; III;; M.D.
- stable
+ stable
The suffix of a name
-
+
http://purl.org/ontology/bibo/
-
- If applicable, please enter the preferred name suffix. Only one may be entered.
-
-
- Used for a single narrative summary of outreach, typically covering a wide range of activities and time periods; use Outreach Provider Role for information on individual activities
-
-
- 1
- 10
-
-
-
-
- Please enter a single summary narrative of your outreach goals and/or contributions
-
- My extension program consists of developing and reporting disease management strategies that are both economically and environmentally sound for fresh market vegetable production. We hope that some of this testing will result in practices adaptable for organic production.
-
- outreach overview
-
-
-
- An role of an individual within his or her profession or institution; use outreach provider role for community service or other activities outside the profession.
-
-
- true
- Service Provider Role
- Member of the International Conference on Complex Systems Organizing Committee
-
-
- -1
-
- -1
+
+ If applicable, please enter the preferred name suffix. Only one may be entered.
-
contact
- 120
- properties related to postal and email addresses
+ 120
+
+ properties related to postal and email addresses
- 2009-12-28T09:15:07
+ 2009-12-28T09:15:07
-
organizations
- 5
+ 5
+
- 2009-12-08T10:36:48
+ 2009-12-08T10:36:48
-
+
- Relates the grant to the organization that administers the grant. This is normally the department of the principal investigator.
+ Relates the grant to the organization that administers the grant. This is normally the department of the principal investigator.
- administers
- true
+ administers
+ true
administers grant
- Note that the administering department is not the central research administration office (such as University of Florida DSP or Cornell OSP) -- we didn't see a need to record a relationship to that office because it implicitly manages all grants. Also note that this is the administering organization for the grant at the awardee side.
-
-
- true
+ Note that the administering department is not the central research administration office (such as University of Florida DSP or Cornell OSP) -- we didn't see a need to record a relationship to that office because it implicitly manages all grants. Also note that this is the administering organization for the grant at the awardee side.
+
+
+ true
-
-
+
1
+
@@ -27064,46 +27077,35 @@ See also core:localAwardId.
AGROVOC
+
-
-
-
-
- 1
-
+ http://www.fao.org/termportal/contr/zh/
-
+
-
+ http://www.fao.org/termportal/contr/es/
+ http://www.fao.org/termportal/contr/ar/
+
+ http://www.fao.org/termportal/en/
+ http://www.fao.org/termportal/contr/fr/
FAO terminology
http://www.fao.org/termportal/contr/en/
- FAO terminology http://www.fao.org/termportal/en/
+ FAO terminology http://www.fao.org/termportal/en/
nameCurrencyFR
2010-06-24
- http://www.fao.org/termportal/contr/zh/
- http://www.fao.org/termportal/contr/es/
- http://www.fao.org/termportal/contr/ar/
- http://www.fao.org/termportal/en/
- http://www.fao.org/termportal/contr/fr/
-
Th.B. Bachelor of Theology
- Th.B.
+ Th.B.
+
-
-
-
-
-
-
+
- Kuwait
Kuwaiti
Calculated
第纳尔
@@ -27115,6 +27117,7 @@ See also core:localAwardId.
15437
Государство Кувейт
+
Кувейт
millions of US dollars
0.771
@@ -27124,19 +27127,24 @@ See also core:localAwardId.
кувейтский
Kuwait
+
+
Manual Estimation
+
the State of Kuwait
- 9999
151.0
+ 9999
+
118
科威特
Data reported on country official publications or web sites (Official) or trade country files.
48.43
- 1000
كويتي
+ 1000
2985.0
Koweït
+ Kuwait
Kuwait
el Estado de Kuwait
@@ -27150,11 +27158,13 @@ See also core:localAwardId.
Population data from the UN Population Division and the data refers to the UN Revision 2008
科威特国
- le Koweït
Kuwait
+ le Koweït
Stato del Kuwait
+
4119
1782.0
+
1000 Ha
kuwaití
@@ -27167,8 +27177,10 @@ See also core:localAwardId.
30.09
1782.0
динар
+
Data reported on country official publications or web sites (Official) or trade country files.
Iيناردينار
+
137
koweïtien
1985
@@ -27178,33 +27190,18 @@ See also core:localAwardId.
Kuwait
1000 Ha
+
+
- kuwaitiano
KWT
+ kuwaitiano
2009
dinaro kuwaitiano
الكويت
Kuwait
Kuwait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Bahrain
25.55
البحرين
Bahreïn
@@ -27214,15 +27211,18 @@ See also core:localAwardId.
BH
BAH
- 13
+
2009
- البحرين
+ 13
+
Королевство Бахрейн
+ البحرين
76.0
Data reported on country official publications or web sites (Official) or trade country files.
Bahrein
+ Bahrain
7.8
Bahrain
bahreinita
@@ -27234,15 +27234,17 @@ See also core:localAwardId.
1000 Ha
Data reported on country official publications or web sites (Official) or trade country files.
780
+
76.0
- 9999
dinar
+ 9999
مملكة البحرين
dinaro del Bahrein
- Population data from the UN Population Division and the data refers to the UN Revision 2008
巴 林
- millions of US dollars
+ Population data from the UN Population Division and the data refers to the UN Revision 2008
+
BHR
+ millions of US dollars
Calculated
Bahrain
Bahrein
@@ -27252,24 +27254,31 @@ See also core:localAwardId.
2009
Estimated
Regno del Bahrein
+
1985
bahreïnien
+
2009
2010
+
50.38
791.0
dinar
+
+
+
Manual Estimation
巴林的 / 巴林人
the Kingdom of Bahrain
15370
Бахрейн
- Bahreïn
+
+ 巴林王国
1000 Ha
2009
- 巴林王国
+ Bahreïn
巴 林
50.82
BD
@@ -27287,32 +27296,17 @@ See also core:localAwardId.
el Reino de Bahrein
048
-
-
-
-
-
-
-
-
-
-
-
Massachusetts
-
-
-
-
-
+
+
-
-
-
-
-
-
+
+
+
+
+
@@ -27320,88 +27314,93 @@ See also core:localAwardId.
- 5
- true
-
-
- true
-
- 8
+ 5
+ true
+
+
+ true
+
+ 8
governing authority
+
+
+
+
+
- Economic Cooperation Organization
46046
+
+
منظمة التعاون الاقتصادى
经济合作组织
- ECO http://www.ecosecretariat.org/
+ ECO http://www.ecosecretariat.org/
http://www.ecosecretariat.org/
- OCE
Economic Cooperation Organization
- ECO
+ OCE
+ ECO
Economic Cooperation Organization
Organisation de coopération économique
ECO
+ Economic Cooperation Organization
+
9999
1985
2010-08-30
Organización de Cooperación Económica
Organisation de coopération économique
- Organización de Cooperación Económica
+ Organización de Cooperación Económica
Организация экономического сотрудничества
ECO
-
-
-
- A specific academic journal article
-
- -1
- Written by scholars for other scholars, typically published in an academic journal with an abstract and bibliography
-
- -1
-
+ A specific academic journal article
+
+ -1
+ Written by scholars for other scholars, typically published in an academic journal with an abstract and bibliography
+
+ -1
http://purl.org/ontology/bibo/
-
-
+
+
Academic Article
-
+
+
+
A scholarly academic article, typically published in a journal.
-
+
+
+
-
-
- stable
-
-
-
-
+
+ stable
+
+
- Cayman Islands
Îles Caïmanes
1000 Ha
+
136
- dólar
开曼群岛
+ dólar
开曼群岛
dollaro delle Isole Cayman
Cayman Islands
@@ -27414,15 +27413,19 @@ See also core:localAwardId.
1000
元
48
+
Data reported on country official publications or web sites (Official) or trade country files.
KY
جزر كايمان
- Islas Caimán
+
+ Islas Caimán
Islas Caimán
caïmanais
Cayman_Islands
+
+
2009
36
2009
@@ -27439,16 +27442,18 @@ See also core:localAwardId.
Cayman Islands
1000 Ha
C$
- 1000 Ha
Isole Cayman
+ 1000 Ha
delle Isole Cayman
开曼的/开曼人
+
Data reported on country official publications or web sites (Official) or trade country files.
19015
dollar
les Îles Caïmanes
Population data from the UN Population Division and the data refers to the UN Revision 2008
Manual Estimation
+
Islas Caimán
2009
(из/ житель) Каймановых островов
@@ -27456,112 +27461,103 @@ See also core:localAwardId.
les Îles Caïmanes
Isole Cayman
dollar
+ Cayman Islands
Isole Cayman
+
CYM
جزر كايمان
-
-
+
+
+ Th.M. Master of Theology
+ Th.M.
+
-
-
-
-
-
+
United Nations statistics department
- -1
+ -1
http://unstats.un.org/unsd/methods/m49/m49regin.htm
2010-04-01
-
+
-
+
-
- United Nations statistics department http://unstats.un.org/unsd/methods/m49/m49regin.htm
-
- -1
-
-
- Transnational Region
http://unstats.un.org/unsd/methods/m49/m49regnf.htm
+
+ United Nations statistics department http://unstats.un.org/unsd/methods/m49/m49regin.htm
+
+ -1
+
+
+ Transnational Region
-
- Th.M.
-
- Th.M. Master of Theology
-
-
-
-
-
- 1
-
-
-
-
+
1
+
-
+
-
-
-
- Faculty, Jane advising Smith, Joe
+
+
+
+ Faculty, Jane advising Smith, Joe
+
+
-
+
-
Th.D. Doctor of Theology
- Th.D.
+ Th.D.
+
-
+
Digital Object Identifier
-
+
http://purl.org/ontology/bibo/
- true
+ true
Digital Object Identifier (DOI)
- stable
+ stable
- 1
-
- 1
- The Digital Object Identifier (DOI) System provides for persistent identification of content objects in the digital environment. "DOI names are assigned to any entity for use on digital networks. They are used to provide current information, including where they (or information about them) can be found on the Internet. Information about a digital object may change over time, including where to find it, but its DOI name will not change."
+ 1
+
+ 1
+ The Digital Object Identifier (DOI) System provides for persistent identification of content objects in the digital environment. "DOI names are assigned to any entity for use on digital networks. They are used to provide current information, including where they (or information about them) can be found on the Internet. Information about a digital object may change over time, including where to find it, but its DOI name will not change."
-
- doi
- true
+
+ doi
+ true
accepted
- Accepted for publication after peer reviewing
+ Accepted for publication after peer reviewing
+
-
-
-
-
-
+
+
+
+
United Nations cartographic maps
-
+
-
+
isAdministeredBy
@@ -27569,11 +27565,10 @@ See also core:localAwardId.
2010-05-01
http://www.un.org/Depts/Cartographic/map/profile/world00.pdf
- true
- United Nations cartographic maps http://www.un.org/Depts/Cartographic/map/profile/world00.pdf
+ true
+ United Nations cartographic maps http://www.un.org/Depts/Cartographic/map/profile/world00.pdf
- Guam
Guamanian
غوامياني
Guam
@@ -27582,7 +27577,9 @@ See also core:localAwardId.
guamien
关岛人/关岛的
316
+
Guam
+
Guam
7927
2009
@@ -27591,9 +27588,9 @@ See also core:localAwardId.
1000
Guam
- 1000 Ha
- Guam
Guam
+ Guam
+ 1000 Ha
guameño
2009
доллар
@@ -27602,22 +27599,29 @@ See also core:localAwardId.
Data reported on country official publications or web sites (Official) or trade country files.
101
Guam
+
+
Data reported on country official publications or web sites (Official) or trade country files.
Guam
54.0
GU
+
dólar de EE.UU.
+
54.0
1000 Ha
+
US dollar
+
美元
+ Guam
دولار
- Population data from the UN Population Division and the data refers to the UN Revision 2008
di Guam
+ Population data from the UN Population Division and the data refers to the UN Revision 2008
3408
- Guam
dollaro USA
+ Guam
88
178.0
2009
@@ -27629,84 +27633,74 @@ See also core:localAwardId.
1000 Ha
Manual Estimation
dollar des États-Unis
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- D.Sc.
-
D.Sc. Doctor of Science
+ D.Sc.
+
-
+
- United Republic of Tanzania
TZA
Data refer to mainland Tanzania only. Estimated
40.45
+
坦桑尼亚联合共和国
the United Republic of Tanzania
-
2010
tanzanien
+
-
1000 Ha
+
millions of US dollars
- 21368.0
先 令
шиллинг
+ 21368.0
2009
9999
29.33
Tanzanian
+
Объединенная Республика Танзания
Calculated
+
15505
Manual Estimation
Repubblica unita di Tanzania
Manual Estimation
República Unida de Tanzanía
1000 Ha
+
1985
834
94730.0
坦桑尼亚联合共和国
Объединенная Республика Танзания
Repubblica unita di Tanzania
-
35500.0
- 215
+
Manual Estimation
+
+ 215
+
+
Объединенная Республика Танзания
شلن
-0.99
تنزاني
+
tanzaniano
+
@@ -27714,13 +27708,15 @@ See also core:localAwardId.
جمهورية تنزانيا المتحدة
the United Republic of Tanzania
la República Unida de Tanzanía
+
танзанийский
- Tanzania
- TSh
+ Tanzania
+ TSh
la República Unida de Tanzanía
+ United Republic of Tanzania
坦桑尼亚联合共和国
1000 Ha
shilling
@@ -27731,11 +27727,12 @@ See also core:localAwardId.
0.398
7608
+
جمهورية تنزانيا المتحدة
- la République-Unie de Tanzanie
- la République-Unie de Tanzanie
88580.0
+ la République-Unie de Tanzanie
+ la République-Unie de Tanzanie
1000
Repubblica unita di Tanzania
@@ -27744,233 +27741,212 @@ See also core:localAwardId.
URT
Population data from the UN Population Division and the data refers to the UN Revision 2008
2009
- tanzaniano
جمهورية تنزانيا المتحدة
scellino tanzaniano
- 2009
+ tanzaniano
-11.75
+ 2009
United Republic of Tanzania
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 20
+ 20
-
-
-
+
+
+
- 1
+ 1
volume
- A volume number.
+ A volume number.
- -1
+ -1
- true
-
+ true
+
- Role of a person to direct a project or activity being supported by an Agreement (for example, a grant), and who is accountable to the grantee for the proper conduct of the project or activity. Also known as Program Director or Project Director.
- -1
+ Role of a person to direct a project or activity being supported by an Agreement (for example, a grant), and who is accountable to the grantee for the proper conduct of the project or activity. Also known as Program Director or Project Director.
+ -1
-
+
Principal Investigator Role
-
+
Biological Specimen
- eagle-i: Material entity that is a portion or quantity of a biological material for use in testing, examination, or study. A biological specimen can be an individual animal, part of or derived an animal, plant, part of a plant, or microorganism. When a taxon is described, it is typically based on a single specimen and is referred to as the holotype.
+ eagle-i: Material entity that is a portion or quantity of a biological material for use in testing, examination, or study. A biological specimen can be an individual animal, part of or derived an animal, plant, part of a plant, or microorganism. When a taxon is described, it is typically based on a single specimen and is referred to as the holotype.
-
- An individual animal, part of or derived an animal, plant, part of a plant, or microorganism.
-
- -1
- A portion or quantity of a biological material for use in testing, examination, or study.
+
+ An individual animal, part of or derived an animal, plant, part of a plant, or microorganism.
+
+ -1
+ A portion or quantity of a biological material for use in testing, examination, or study.
- -1
+ -1
- nameShortFR
-
-
- http://www.fao.org/termportal/contr/en/
- FAO terminology
- 2010-06-24
-
- FAO terminology http://www.fao.org/termportal/en/
-
-
-
http://www.fao.org/termportal/contr/fr/
http://www.fao.org/termportal/contr/es/
+ nameShortFR
+
http://www.fao.org/termportal/contr/ar/
+
+ http://www.fao.org/termportal/contr/en/
+ FAO terminology
http://www.fao.org/termportal/contr/zh/
+ 2010-06-24
+
+ FAO terminology http://www.fao.org/termportal/en/
+
+
+
http://www.fao.org/termportal/en/
-
-
- 1
-
-
-
-
- 1
-
-
- 5
+ 5
seriesForEvent
- true
- true
+ true
+ true
-
-
+
+
-
-
-
- 5
-
-
-
- 20
-
-
-
- true
-
-
-
- true
- award sponsored by
+
Review
- -1
+ -1
-
- An article reviewing one or more other information resources (a book, one or more other articles, movies, etc)
-
+
+ An article reviewing one or more other information resources (a book, one or more other articles, movies, etc)
+
- -1
+ -1
-
+
+
+
+ 5
+
+
+
+ 20
+
+
+
+ true
+
+
+
+ true
+ award sponsored by
Global Citation Count
- 5
- 5
- The number of times a work has been cited globally, as determined from a particular bibliographic information source on a particular date.
+ 5
+ 5
+ The number of times a work has been cited globally, as determined from a particular bibliographic information source on a particular date.
-
+
-
+
-
-
-
+
+
+
- 50
+ 50
credits
-
+
- 1
- Number of credits assigned a course by an learning institution.
-
+ 1
+ Number of credits assigned a course by an learning institution.
+
+
+
+
+
+
-
University
- -1
-
+ -1
+
+
+
-
- An institution of higher education and research, which grants academic degrees in a variety of subjects, and provides both undergraduate education and postgraduate education.
+
+ An institution of higher education and research, which grants academic degrees in a variety of subjects, and provides both undergraduate education and postgraduate education.
-
+
-
- -1
- University of Florida; Washington University in St. Louis
- Definition taken from: http://en.wikipedia.org/wiki/University
+ -1
+ University of Florida; Washington University in St. Louis
+ Definition taken from: http://en.wikipedia.org/wiki/University
-
-
-
+
+
+
- B.B.A.
-
B.B.A. Bachelor of Business Administration
+ B.B.A.
+
-
+
-
- A generic item or document number. Not to be confused with issue number. A barcode, perhaps?
+
+ A generic item or document number. Not to be confused with issue number. A barcode, perhaps?
- Definition from here: http://bibotools.googlecode.com/svn/bibo-ontology/trunk/doc/index.html
-
+ Definition from here: http://bibotools.googlecode.com/svn/bibo-ontology/trunk/doc/index.html
+
- 30
+ 30
number
-
- 1
+
+ 1
- D.S.W.
-
D.S.W. Doctor of Social Work
+ D.S.W.
+
-
+
- Romania
leu
старый лей; новый лей
+
رومانيا
Romania
1000 Ha
@@ -27983,11 +27959,12 @@ See also core:localAwardId.
Romania
leu rumeno
Румыния
- Romania
roumain
+ Romania
Romanian
Estimated
2009
+
RO
1000 Ha
@@ -28000,21 +27977,27 @@ See also core:localAwardId.
161110.0
Romania
-
Official data reported on FAO Questionnaires from countries
+
+
23006.0
رومانيا
6637
Rumania
Official data reported on FAO Questionnaires from countries
+
+
Romania
1000 Ha
+
罗马尼亚
Romania
15475
ليّ
+
+ Romania
Leu
la Roumanie
Румыния
@@ -28022,6 +28005,8 @@ See also core:localAwardId.
روماني
leu
Official data reported on FAO Questionnaires from countries
+
+
183
罗马尼亚
Romania
@@ -28032,6 +28017,7 @@ See also core:localAwardId.
leu
la Roumanie
+
румынский
203
罗马尼亚
@@ -28048,64 +28034,47 @@ See also core:localAwardId.
Rumania
9999
Румыния
- 罗马尼亚的
列 伊
- 2010
-
-
-
-
-
-
-
-
-
-
-
-
-
- 1
-
+ 罗马尼亚的
+ 2010
- -1
+ -1
-
+
-
-
-
- -1
+
+
+ -1
-
+
- A document created as a basis for discussion or a very early draft of a formal paper
+ A document created as a basis for discussion or a very early draft of a formal paper
+
+
+
-
-
+
Working Paper
-
-
-
-
-
-
- Chile
peso
163669.0
15389
-55.98
2009
+
+ Chile
la République du Chili
Manual Estimation
51
песо
Chile
+
75609.6
+
chileno
@@ -28113,24 +28082,28 @@ See also core:localAwardId.
Чили
-66.42
peso cileno
+
la República de Chile
1985
- peso
- 9999
2009
+ 9999
+ peso
Республика Чили
بيسو
the Republic of Chile
16970.0
比 索
+
2009
- Chili
+
152
+ Chili
-17.51
- Repubblica del Cile
Ch$
+ Repubblica del Cile
+
peso
Official data reported on FAO Questionnaires from countries
شيلى
@@ -28140,13 +28113,15 @@ See also core:localAwardId.
2010
智 利
- 2009
+
-109.46
+ 2009
Cile
Chile
2009
1548
جمهورية شيلى
+
智 利
Calculated
Chile
@@ -28159,12 +28134,14 @@ See also core:localAwardId.
Cile
1000
- cileno
+
Chile
CHI
-
+ cileno
+
CL
+
1000 Ha
le Chili
CHL
@@ -28178,40 +28155,31 @@ See also core:localAwardId.
Population data from the UN Population Division and the data refers to the UN Revision 2008
Estimated
чилийский
-
-
-
-
-
-
-
-
-
-
-
-
-
- background
- 80
- biographical information about a person, past or present
-
-
- 2010-01-10T12:36:28
-
-
-
- 1
+
+
+
-
-
-
-
+
+ background
+ 80
+
+ biographical information about a person, past or present
+
+
+ 2010-01-10T12:36:28
+
+
+
+
+
- South America
+
Южная Америка
+
+ South America
5207
84957
@@ -28220,57 +28188,62 @@ See also core:localAwardId.
South America
America del Sud
Южная Америка
+
南美洲
+
9999
1985
Amérique du Sud
-
-
- America del Sud
+
Южная Америка
+
+ America del Sud
+
南美洲
América del Sur
+
Amérique du Sud
005
+
+
South America
أمريكا الجنوبية
أمريكا الجنوبية
-
- 7253
南美洲
+ 7253
+
South America
- Amérique du Sud
أمريكا الجنوبية
+ Amérique du Sud
+
+
América del Sur
America del Sud
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
- Nepal
République démocratique fédérale du Nepal
+
نيبال
Népal
рупия
+
4250.0
2009
népalais
+
نيبالي
14335.0
@@ -28279,35 +28252,42 @@ See also core:localAwardId.
Nepal
175
rupee
-
1985
+
República Federal Democrática de Nepal
Nepal
+
nepalese
Nepal
尼泊尔
-
+ Nepal
Data reported on country official publications or web sites (Official) or trade country files.
+
+
Nepalese
Estimated
+
Nepal
2009
- 1000
+
جمهورية نيبال الديمقراطية الاتحادية
+ 1000
1000 Ha
卢 比
Calculated
- nepalés
9999
+ nepalés
Nepal
2009
Непал
+
+
Federal Democratic Republic of Nepal
2009
@@ -28315,11 +28295,11 @@ See also core:localAwardId.
millions of US dollars
روبية
88.2
- Population data from the UN Population Division and the data refers to the UN Revision 2008
0.428
+ Population data from the UN Population Division and the data refers to the UN Revision 2008
Nepal
-
Manual Estimation
+
149
30.43
Nr
@@ -28334,6 +28314,7 @@ See also core:localAwardId.
尼泊尔联邦民主共和国
14718.0
Непал
+
2009
NEP
@@ -28350,146 +28331,121 @@ See also core:localAwardId.
尼泊尔
5124
- 29331.0
80.06
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+ 29331.0
+
- Please enter a single narrative summary description of your teaching activities, goals, and/or experience
+ Please enter a single narrative summary description of your teaching activities, goals, and/or experience
teaching overview
- 10
-
-
+ 10
+
+
- 1
- Used for a single narrative summary of teaching, typically covering a wide range of courses including for credit and non-credit teaching over multiple semesters; the "teaches" property links a person directly with an instance of a Semester Class, typically from an institutional database of record; then use Teacher Role for information about a person's role in non-credit teaching or their specific contribution to individual courses
+ 1
+ Used for a single narrative summary of teaching, typically covering a wide range of courses including for credit and non-credit teaching over multiple semesters; the "teaches" property links a person directly with an instance of a Semester Class, typically from an institutional database of record; then use Teacher Role for information about a person's role in non-credit teaching or their specific contribution to individual courses
-
+
International Standard Serial Number
-
+
-
+
International Standard Serial Number (ISSN)
-
- stable
- An International Standard Serial Number (ISSN) is a unique eight-digit number used to identify a periodical publication.
+
+ stable
+ An International Standard Serial Number (ISSN) is a unique eight-digit number used to identify a periodical publication.
http://purl.org/ontology/bibo/
- source: http://en.wikipedia.org/wiki/Issn
+ source: http://en.wikipedia.org/wiki/Issn
- 1
+ 1
patent number
- 1
+ 1
- source of definition: http://www.uspto.gov/main/glossary/#p . The following site has patent number formats: http://www.uspto.gov/patents/ebc/kindcodesum.jsp .
-
+ source of definition: http://www.uspto.gov/main/glossary/#p . The following site has patent number formats: http://www.uspto.gov/patents/ebc/kindcodesum.jsp .
+
-
- Unique number assigned to a patent application when the United States Patent and Trademark Office issues as a patent.
+
+ Unique number assigned to a patent application when the United States Patent and Trademark Office issues as a patent.
-
+
-
B.C.E. Bachelor of Civil Engineering
- B.C.E.
+ B.C.E.
+
-
+
- 5
+ 5
- true
- This relates a person to a description of their teaching role, usually associated with an Event, Process, or Organization. These teaching roles can include courses previously taught, educational tutorials or workshops given, as well as activities related to enhancing teaching, such as developing a new course. Use core:teaches for the direct relationship between a Person and a Semester Class (usually imported from a system of record).
+ true
+ This relates a person to a description of their teaching role, usually associated with an Event, Process, or Organization. These teaching roles can include courses previously taught, educational tutorials or workshops given, as well as activities related to enhancing teaching, such as developing a new course. Use core:teaches for the direct relationship between a Person and a Semester Class (usually imported from a system of record).
- true
-
- hasTeachingActivity
+ true
+
+ hasTeachingActivity
- true
+ true
- edu.cornell.mannlib.vitro.webapp.edit.n3editing.configuration.generators.AddTeacherRoleToPersonGenerator
- 20
+ edu.cornell.mannlib.vitro.webapp.edit.n3editing.configuration.generators.AddTeacherRoleToPersonGenerator
+ 20
-
+
teaching activities
-
+
-
-
-
- -1
- Journal of Information Science; IEEE Intelligent System; Scientometrics
- Contains original scholarly research or review articles by experts in the field
+
+
+
+
+ -1
+ Journal of Information Science; IEEE Intelligent System; Scientometrics
+
+ Contains original scholarly research or review articles by experts in the field
Journal
A periodical of scholarly journal Articles.
- stable
- -1
- Articles usually contain abstracts and bibliographies. Includes peer-reviewed, non-peer-reviewed, and open access journals. Journals are usually indexed in the major academic databases such as PubMed and Web of Science.
+ stable
+ -1
+ Articles usually contain abstracts and bibliographies. Includes peer-reviewed, non-peer-reviewed, and open access journals. Journals are usually indexed in the major academic databases such as PubMed and Web of Science.
http://purl.org/ontology/bibo/
-
+
-
+
-
-
-
+
- D.S.W.
-
D.S.W. Doctor of Social Welfare
+ D.S.W.
+
-
-
-
-
- 1
-
+
- southern Europe
+
5403
@@ -28497,6 +28453,8 @@ See also core:localAwardId.
Europa meridional
+
+
Южная Европа
Europa meridionale
@@ -28510,19 +28468,25 @@ See also core:localAwardId.
9999
15246
2006
+ southern Europe
Europa meridionale
Южная Европа
+
southern Europe
Europa meridional
南欧
+
+
南欧
39
أوروبا الجنوبية
Europe méridionale
+
+
southern Europe
@@ -28532,71 +28496,65 @@ See also core:localAwardId.
أوروبا الجنوبية
Europe méridionale
-
-
-
-
-
-
-
-
-
-
- 1
+
+
+
-
-
-
+
+ 1
+
+ http://www.fao.org/termportal/contr/es/
+ http://www.fao.org/termportal/contr/zh/
FAO terminology
2010-06-24
-
- FAO terminology http://www.fao.org/termportal/en/
http://www.fao.org/termportal/contr/en/
-
+
+ FAO terminology http://www.fao.org/termportal/en/
+ http://www.fao.org/termportal/contr/ar/
+
+ http://www.fao.org/termportal/en/
nameListEN
-
- http://www.fao.org/termportal/contr/es/
- http://www.fao.org/termportal/contr/zh/
- http://www.fao.org/termportal/contr/ar/
- http://www.fao.org/termportal/en/
+
http://www.fao.org/termportal/contr/fr/
- Iran (Islamic Republic of)
伊朗的
Rls
Iran
Иран (Исламская Республика)
millions of US dollars
+ 15428
3940
-
iraní
iranien
- 15428
+
1000 Ha
44.04
Calculated
1985
+
Population data from the UN Population Division and the data refers to the UN Revision 2008
- Iran (Islamic Republic of)
48515.0
+ Iran (Islamic Republic of)
1000 Ha
Iran (République islamique d')
174515.0
- 331015.0
伊朗伊斯兰共和国
+ 331015.0
+
2009
+
إيران
@@ -28607,43 +28565,49 @@ See also core:localAwardId.
伊 朗(伊斯兰共和国)
إيران
rial
+ Iran (Islamic Republic of)
39.78
63.32
里亚尔
2009
Исламская Республика Иран
+
Iran
- 2009
rial
+ 2009
364
риал
IR
Iran
Estimated
rial iraniano
- Irán (República Islámica del)
- 9999
伊 朗(伊斯兰共和国)
+ Irán (República Islámica del)
la République islamique d'Iran
+
+ 9999
the Islamic Republic of Iran
ريال
2009
0.702
Иран (Исламская Республика)
+
25.06
Iran (République islamique d')
- Iran (Islamic Republic of)
162855.0
+ Iran (Islamic Republic of)
+
Official data reported on FAO Questionnaires from countries
- 1000
+ 1000
Manual Estimation
102
2010
- Iranian
+
+ Iranian
IRN
1000 Ha
@@ -28651,24 +28615,16 @@ See also core:localAwardId.
2009
جمهورية إيران الإسلامية
إيراني
+
+
+ Official data reported on FAO Questionnaires from countries
la República Islámica del Irán
74196.0
- Official data reported on FAO Questionnaires from countries
+
иранский
117
IRA
-
-
-
-
-
-
-
-
-
-
-
@@ -28678,11 +28634,11 @@ See also core:localAwardId.
- B.A.M.
-
B.A.M. Bachelor of Applied Mathematics
+ B.A.M.
+
-
+
hasCode
@@ -28691,13 +28647,13 @@ See also core:localAwardId.
-
-
+
+
- Portugal
millions of US dollars
le Portugal
+ Portugal
-6.19
EUR or €
@@ -28706,123 +28662,118 @@ See also core:localAwardId.
9147.0
2009
- Population data from the UN Population Division and the data refers to the UN Revision 2008
-31.27
+ Population data from the UN Population Division and the data refers to the UN Revision 2008
PT
portoghese
1000 Ha
PRT
- Official data reported on FAO Questionnaires from countries
-
- يورو
Manual Estimation
+ Official data reported on FAO Questionnaires from countries
+ يورو
+
Portugal
2009
البرتغال
10707.0
Portugal
+
la République portugaise
Portugal
- 1000
42.14
- 174
- 葡萄牙的
- португальский
+ 1000
葡萄牙共和国
+ 葡萄牙的
+ 174
euro
+ португальский
1985
- 9999
- 199
euro
- Repubblica portoghese
+ 199
+ 9999
Portogallo
+ Repubblica portoghese
6124
葡萄牙
جمهورية البرتغال
0.795
+
+
欧 元
+
1000 Ha
232874.0
2009
- portugués
620
- 葡萄牙
+ portugués
Portugal
+ 葡萄牙
2010
Calculated
15473
البرتغال
+
евро
Portugal
30.14
+
la República Portuguesa
+
Portogallo
Portuguese
Portugal
+
the Portuguese Republic
POR
- Португалия
Португалия
- euro
3684.0
+ euro
+ Португалия
Estimated
+
Португальская Республика
euro
+
2009
portugais
+
برتغالي
Manual Estimation
9209.0
2009
-
-
-
-
-
-
-
-
-
-
-
has global count value
- An integer defining the value of the global citation count of a cited entity recorded from a named bibliographic information source on a particular date.
+ An integer defining the value of the global citation count of a cited entity recorded from a named bibliographic information source on a particular date.
-
+
-
-
+
+
D.R.E. Doctor of Religious Education
-
- D.R.E.
+ D.R.E.
+
-
-
-
-
- 1
-
+
- Slovenia
2014.0
+
EUR or €
Slovénie
- euro
- 9999
جمهورية سلوفينيا
+ 9999
+ euro
SI
sloveno
@@ -28839,8 +28790,8 @@ See also core:localAwardId.
Population data from the UN Population Division and the data refers to the UN Revision 2008
Eslovenia
斯洛文尼亚共和国
- 2009
Official data reported on FAO Questionnaires from countries
+ 2009
la República de Eslovenia
48477.0
2027.0
@@ -28849,20 +28800,21 @@ See also core:localAwardId.
euro
斯洛文尼亚
2009
- словенский
斯洛文尼亚的
+ словенский
34123
euro
1000
Calculated
+
esloveno
Словения
سلوفينيا
Slovene
- 13.38
1000 Ha
+ 13.38
the Republic of Slovenia
2009
Slovenia
@@ -28872,9 +28824,11 @@ See also core:localAwardId.
евро
SVN
slovène
+
la République de Slovénie
25065
Словения
+
2009
Slovenia
@@ -28882,198 +28836,187 @@ See also core:localAwardId.
468.0
45.42
euro
+
+
la Slovénie
托拉尔
+ Slovenia
Slovenia
+
Official data reported on FAO Questionnaires from countries
2020.0
- Repubblica di Slovenia
1992
0.828
+ Repubblica di Slovenia
يورو
+
Республика Словения
+
SVN
millions of US dollars
+
Eslovenia
+
Slovenia
16.61
-
-
-
-
-
-
-
-
-
-
-
- 2010-11-04
- UNDP - HDRO
-
-
- composite index measuring average achievement in three basic dimensions of human development—a long and healthy life, knowledge and a decent standard of living. Source: Calculated based on data from UNDESA (2009d), Barro and Lee (2010), UNESCO Institute for Statistics (2010b), World Bank (2010b) and IMF(2010a) . http://hdrstats.undp.org/en/indicators/49806.html
- UNDP - HDRO http://hdrstats.undp.org/en/indicators/49806.html
-
http://hdrstats.undp.org/en/indicators/49806.html
http://hdrstats.undp.org/en/indicators/49806.html
http://hdrstats.undp.org/fr/indicateurs/49806.html
+ 2010-11-04
+ UNDP - HDRO
+
+
+ UNDP - HDRO http://hdrstats.undp.org/en/indicators/49806.html
+
+ composite index measuring average achievement in three basic dimensions of human development—a long and healthy life, knowledge and a decent standard of living. Source: Calculated based on data from UNDESA (2009d), Barro and Lee (2010), UNESCO Institute for Statistics (2010b), World Bank (2010b) and IMF(2010a) . http://hdrstats.undp.org/en/indicators/49806.html
http://hdrstats.undp.org/es/indicadores/49806.html
-
-
- 1
+
+
+
+
+
+
+
+
-
-
-
Faculty, Jane advising SPCA, The
-
+
+
+
+
+
-
-
-
-
-
- Event Series
-
-
-
-
-
-
-
-
-
-
-
-
-
- -1
-
-
-
- Two or more events that occur at different times and are connected to each other.
-
-
-
-
-
-
-
-
- -1
-
-
- A generic class which may include a conference series, a course section, a seminar series, or a workshop series. When possible, use one of these more specific classes.
- Only use if no specific subclasses of core:EventSeries desribe the activity.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
-
+
-
+
-
- -1
- Martha Van Rensselaer Hall (VR); Caldwell Hall (CD); University Auditorium
- Building that provides a particular service or is used for a particular activity.
+
+ -1
+ Martha Van Rensselaer Hall (VR); Caldwell Hall (CD); University Auditorium
+ Building that provides a particular service or is used for a particular activity.
Building
- -1
- Enter building name. If the building's name is a number (as in many governmental organizations such as national laboratories and military bases), then enter it. Do not confuse with the number that appears in a postal address.
+ -1
+ Enter building name. If the building's name is a number (as in many governmental organizations such as national laboratories and military bases), then enter it. Do not confuse with the number that appears in a postal address.
+
+
+ Event Series
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -1
+
+
+
+
+
+
+ Two or more events that occur at different times and are connected to each other.
+
+
+
+
+
+ -1
+
+
+
+ A generic class which may include a conference series, a course section, a seminar series, or a workshop series. When possible, use one of these more specific classes.
+ Only use if no specific subclasses of core:EventSeries desribe the activity.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
- B.Arch.
-
B.Arch. Bachelor of Architecture
+ B.Arch.
+
-
-
-
-
- 1
-
-
-
-
-
-
+
- E.E.
-
E.E. Electrical Engineer
+ E.E.
+
-
+
- linked information resource
+ linked information resource
linked information resource
- Relates information about its authors to the information resource that was created by the authors. Information about the authors would include, but is not limited to, the author's rank in the list of authors and whether or not that author was a corresponding author.
-
+ Relates information about its authors to the information resource that was created by the authors. Information about the authors would include, but is not limited to, the author's rank in the list of authors and whether or not that author was a corresponding author.
+
-
-
+
+
- true
- 5
- 10
- true
+ true
+ 5
+ 10
+ true
-
-
- 1
-
-
geographic focus of
-
-
- 5
- 20
- true
-
+
+
+ 5
+ 20
+ true
+
@@ -29082,125 +29025,94 @@ See also core:localAwardId.
- B.Sc.
-
B.Sc. Bachelor of Science
- Abbreviation commonly used by Canadian and British universities.
+ Abbreviation commonly used by Canadian and British universities.
+ B.Sc.
+
-
+
-
- B.D.
B.D. Bachelor of Divinity
+ B.D.
+
-
+
- true
+ true
- We would like the domain of core:outcome to be the union of Event and Process; and that same union to be the range for core:outcomeOf, but we cannot currently express this with the editor.
+ We would like the domain of core:outcome to be the union of Event and Process; and that same union to be the range for core:outcomeOf, but we cannot currently express this with the editor.
outcome of
- 5
+ 5
-
-
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
- reviewOf
-
+ reviewOf
+
- 60
+ 60
- The bibo:reviewOf public description was found here: http://bibotools.googlecode.com/svn/bibo-ontology/trunk/doc/index.html . As of 26 May 2010, bibo:reviewOf is used with the class Review, but core:reviewIn doesn't seem to be being used.
-
+ The bibo:reviewOf public description was found here: http://bibotools.googlecode.com/svn/bibo-ontology/trunk/doc/index.html . As of 26 May 2010, bibo:reviewOf is used with the class Review, but core:reviewIn doesn't seem to be being used.
+
- true
-
+ true
+
- Relates a review document to a reviewed thing (resource, item, etc.).
- true
+ Relates a review document to a reviewed thing (resource, item, etc.).
+ true
- 5
+ 5
review of
+
+ 607-288-8888
+
+
+
-
+
supported by
- an information resource (typically a publication) supported by (typically via funding) an agreement (such as a grant)
+ an information resource (typically a publication) supported by (typically via funding) an agreement (such as a grant)
- true
- true
+ true
+ true
- 5
-
-
-
-
-
-
-
-
-
- 1
-
+ 5
+
Ed.S. Education Specialist
-
- Ed.S.
+ Ed.S.
+
-
+
-
-
- Educational Training
-
-
-
-
-
- Currently any abstract name is given to individuals of this class. This could change in the future.
-
- -1
- This connects person to their academic degree through this educational training, but can also be used when the training does not result in a degree.
- -1
- Represents educational training that has been received.
-
-
-
-
-
-
-
-
-
-
-
- 1
-
+
+ B.E. Bachelor of Engineering
+ B.E.
+
+
+
landAreaYear
@@ -29210,63 +29122,53 @@ See also core:localAwardId.
-
-
-
-
- B.E.
-
- B.E. Bachelor of Engineering
-
-
+
+
- -1
- unstable
+ -1
+ unstable
+
-
-
-
-
-
- A group of webpages available within a specific parent address or URL on the World Wide Web
-
- -1
- Website
- A group of Webpages accessible on the Web.
-
- Facebook; VIVOweb.org; Flickr
-
-
-
-
- http://purl.org/ontology/bibo/
+
+
+
+ A group of webpages available within a specific parent address or URL on the World Wide Web
+
+ Website
+ -1
+
+ A group of Webpages accessible on the Web.
+
+ Facebook; VIVOweb.org; Flickr
+
+
+
+
+ http://purl.org/ontology/bibo/
Kansas
-
-
-
-
-
+
+
-
+
+
+
+
+
Idaho
-
-
-
-
-
+
+
-
-
-
-
-
-
+
+
+
+
+
@@ -29276,67 +29178,65 @@ See also core:localAwardId.
2010-06-24
nationalityIT
- http://www.fao.org/termportal/contr/en/
-
- FAO terminology http://www.fao.org/termportal/en/
-
http://www.fao.org/termportal/contr/es/
http://www.fao.org/termportal/en/
+ http://www.fao.org/termportal/contr/en/
+
+ FAO terminology http://www.fao.org/termportal/en/
http://www.fao.org/termportal/contr/fr/
+
http://www.fao.org/termportal/contr/ar/
http://www.fao.org/termportal/contr/zh/
+
+ Librarian
+ Lily
+
+
-
- B.E.
B.E. Bachelor of Education
+ B.E.
+
-
+
North Carolina
-
-
-
-
-
+
+
-
-
-
-
-
-
+
+
+
+
+
provenance support
- pvs
+ pvs
Virginia
-
-
-
-
-
+
+
-
-
-
-
-
-
+
+
+
+
+
New Hampshire
-
-
-
-
-
+
+
-
+
+
+
+
+
@@ -29345,53 +29245,43 @@ See also core:localAwardId.
Ed.D. Doctor of Education
-
- Ed.D.
+ Ed.D.
+
-
+
- reviewedIn
+ reviewedIn
- true
- 60
- 5
- Relates something to the review of that thing.
-
- The bibo:reviewOf public description was found here: http://bibotools.googlecode.com/svn/bibo-ontology/trunk/doc/index.html . As of 26 May 2010, bibo:reviewOf is used with the class Review, but core:reviewIn doesn't seem to be being used.
+ true
+ 60
+ 5
+ Relates something to the review of that thing.
+
+ The bibo:reviewOf public description was found here: http://bibotools.googlecode.com/svn/bibo-ontology/trunk/doc/index.html . As of 26 May 2010, bibo:reviewOf is used with the class Review, but core:reviewIn doesn't seem to be being used.
reviewed in
-
+
-
-
- 1
-
-
- D.Phil.
-
D.Phil. Doctor of Philosophy
- Abbreviation commonly used by Canadian and British universities.
+ Abbreviation commonly used by Canadian and British universities.
+ D.Phil.
+
-
-
-
-
-
-
+
- An ongoing academic initiative not formalized with department or division status.
- -1
-
- A Cornell graduate field (http://vivo.cornell.edu/index.jsp?home=65535&collection=820)
-
-
- -1
+ An ongoing academic initiative not formalized with department or division status.
+ -1
+
+ A Cornell graduate field (http://vivo.cornell.edu/index.jsp?home=65535&collection=820)
+
+
+ -1
@@ -29400,102 +29290,104 @@ See also core:localAwardId.
-
+
- An institution that provides medical, surgical, or psychiatric care and treatment for the sick or the injured.
+ An institution that provides medical, surgical, or psychiatric care and treatment for the sick or the injured.
- -1
-
-
+ -1
+
+
Hospital
- Shands at the University of Florida
- -1
+ Shands at the University of Florida
+ -1
- Definition take from: http://dictionary.reference.com/browse/hospital.
+ Definition take from: http://dictionary.reference.com/browse/hospital.
+
+
+
+
+
-
-
+
+
Graduate Advising Relationship
- 1
- An advisory relationship in which a professor advises a graduate student.
+ 1
+ An advisory relationship in which a professor advises a graduate student.
- 1
+ 1
-
- 1
- 10
+
+ 1
+ 10
preferred title
-
- Enter the title you would prefer to use. This would be different from, and in addition to, your HR job title.
-
- Physical Sciences Librarian
+
+ Enter the title you would prefer to use. This would be different from, and in addition to, your HR job title.
+
+ Physical Sciences Librarian
- For example an HR job title for a person might be - Assistant University Librarian, and the preferred job title for that same person could be - Physical Sciences Librarian.
+ For example an HR job title for a person might be - Assistant University Librarian, and the preferred job title for that same person could be - Physical Sciences Librarian.
+
+ B.Ch.E Bachelor of Chemical Engineering
+ B.Ch.E
+
+
+
+
Thesis
- -1
-
+ -1
+
+
+
- Works created to satisfy the requirements for an academic certification or degree; also called dissertation
-
+ Works created to satisfy the requirements for an academic certification or degree; also called dissertation
+
http://purl.org/ontology/bibo/
-
+
-
-
- -1
-
-
+
+
+
+ -1
+
A document created to summarize research findings associated with the completion of an academic degree.
- stable
- Short Definition from OCLC Input Standards, EntW
+
+ stable
+ Short Definition from OCLC Input Standards, EntW
-
-
-
-
-
-
-
-
-
- B.Ch.E Bachelor of Chemical Engineering
- B.Ch.E
-
-
-
-
-
-
-
+
+
+
- Suriname
- سورينام
+ سورينام
+
سورينام
6.02
苏里南
Surinamese
15600.0
- 7534
- 2010
سورينامى
+ 2010
+ 7534
+
+
dollaro del Suriname
2009
2009
@@ -29503,10 +29395,11 @@ See also core:localAwardId.
dólar surinamés
Official data reported on FAO Questionnaires from countries
+
دولار سورينامى
- Суринам
- Suriname
Республика Суринам
+ Suriname
+ Суринам
Repubblica di Suriname
-53.98
@@ -29515,17 +29408,19 @@ See also core:localAwardId.
Суринам
Suriname dollar
- Suriname
- surinamais
суринамский доллар
+ surinamais
+ Suriname
1000 Ha
2009
+
SUR
苏里南元
- 2009
81.4
+ 2009
+
Suriname
Population data from the UN Population Division and the data refers to the UN Revision 2008
16382.0
@@ -29536,8 +29431,9 @@ See also core:localAwardId.
la República de Suriname
1000
- Suriname
Suriname
+ Suriname
+
le Suriname
苏里南的
@@ -29549,9 +29445,11 @@ See also core:localAwardId.
9999
苏里南共和国
- 233
+
Calculated
+ 233
+
520.0
SR
Official data reported on FAO Questionnaires from countries
@@ -29560,69 +29458,46 @@ See also core:localAwardId.
苏里南
Suriname
1000 Ha
+ 740
Estimated
3033.0
- 740
surinamese
0.646
Manual Estimation
Suriname
2008
+ Suriname
-58.08
- суринамский
+
15491
+ суринамский
Suriname
INSERT
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+ affiliation
+ 30
+
+ Affiliations and other informal associations between people and organizations
+
+
+ 2009-12-28T09:47:01
D.V.M. Doctor of Veterinary Medicine
+ D.V.M.
+
+
- D.V.M.
-
-
-
-
-
- affiliation
- 30
- Affiliations and other informal associations between people and organizations
-
-
- 2009-12-28T09:47:01
-
-
-
-
-
-
-
-
- 1
-
- M.Phil.
-
M.Phil. Master of Philosophy
- Abbreviation commonly used by Canadian and British universities.
+ Abbreviation commonly used by Canadian and British universities.
+ M.Phil.
+
-
+
agriculturalAreaUnit
@@ -29632,8 +29507,8 @@ See also core:localAwardId.
-
-
+
+
@@ -29642,111 +29517,111 @@ See also core:localAwardId.
+
+
+
+
+
- unstable
+ unstable
http://purl.org/ontology/bibo/
- -1
- The Short Definition is how the bibo ontology defines Map. It has been extended to include more broader concept of map which includes science maps, social network maps.
- -1
+ -1
+ The Short Definition is how the bibo ontology defines Map. It has been extended to include more broader concept of map which includes science maps, social network maps.
+ -1
A graphical depiction of geographic features.
-
+
- A graphical depiction of geographic features, scientific discipline, scientific data analytical results
+ A graphical depiction of geographic features, scientific discipline, scientific data analytical results
-
+
Map
+
+ B.C.L. Bachelor of Canon Law
+ B.C.L.
+
+
+
+
http://www.un.org/depts/dhl/maplib/countinfo.htm
-
+
United Nations Map Library
self_governing
- -1
- -1
+ -1
+ -1
- United Nations Map Library http://www.un.org/depts/dhl/maplib/countinfo.htm
+ United Nations Map Library http://www.un.org/depts/dhl/maplib/countinfo.htm
2010-09-08
-
+
-
-
- B.C.L. Bachelor of Canon Law
- B.C.L.
-
-
-
- Melanesia
- Melanesia
- ميلانيزيا
+
+ 1985
+ Mélanésie
Melanesia
Melanesia
- 1985
-
- 美拉尼西亚
-
-
- Меланезия
- 9999
- 5502
- 054
- Mélanésie
-
-
- 美拉尼西亚
- Melanesia
Melanesia
- Melanesia
美拉尼西亚
- Меланезия
- Melanesia
- Melanesia
- ميلانيزيا
- Mélanésie
- Melanesia
- Mélanésie
+
84963
- Меланезия
- ميلانيزيا
-
-
-
-
-
+ Melanesia
+ Меланезия
+
+ Mélanésie
+ Melanesia
+ ميلانيزيا
+ 美拉尼西亚
+
+ Melanesia
+ 054
+ Melanesia
+
+ Melanesia
+ ميلانيزيا
+ Melanesia
+
+ Mélanésie
+ 美拉尼西亚
+
+
+
+ Melanesia
+ Меланезия
+
+ ميلانيزيا
+ Меланезия
-
-
-
-
-
-
+ 5502
+
+ 9999
- Singapore
0.7
200
4737.0
Республика Сингапур
la République de Singapour
Singapour
- 7077
- Population data from the UN Population Division and the data refers to the UN Revision 2008
- 9999
+ Singapore
S$
+ Population data from the UN Population Division and the data refers to the UN Revision 2008
+ 7077
+ 9999
Сингапур
Сингапур
dollaro di Singapore
@@ -29754,13 +29629,14 @@ See also core:localAwardId.
dollar
新加坡的
2009
+
سنغافورة
Data reported on country official publications or web sites (Official) or trade country files.
доллар
2009
Singapore
- 71.0
SGP
+ 71.0
Singapore
0.846
دولار
@@ -29770,6 +29646,7 @@ See also core:localAwardId.
dólar
سنغافورة
Singapore
+
2009
singapurense
1985
@@ -29778,76 +29655,72 @@ See also core:localAwardId.
Manual Estimation
1000 Ha
- 70.0
2009
+ 70.0
1000
新加坡
dollar
Singapour
+
Singapur
Singaporean
2010
- SIN
2009
+ SIN
新加坡
singaporiano
+
سنغافوري
新加坡共和国
19034
the Republic of Singapore
Singapore
+
Singapur
la República de Singapur
- singapourien
+
222
+ singapourien
сингапурский
- Repubblica di Singapore
- SG
جمهورية سنغافورة
+ SG
+ Repubblica di Singapore
+
+
1000 Ha
+
Estimated
Calculated
- 1000 Ha
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+ 1000 Ha
- Tajikistan
2009
Tajikistan
SM
TJK
la República de Tayikistán
Tadjikistan
- the Republic of Tajikistan
2010
+
+ the Republic of Tajikistan
+
Official data reported on FAO Questionnaires from countries
le Tadjikistan
1000 Ha
- 1000 Ha
索莫尼
+ 1000 Ha
2009
+
2009
-
-
Таджикистан
+
+
+
Республика Таджикистан
таджикский
塔吉克斯坦
@@ -29858,9 +29731,10 @@ See also core:localAwardId.
TJ
Tajik
+ Tajikistan
طاجيكستان
- Tajikistan
13996.0
+ Tajikistan
tagiko
Official data reported on FAO Questionnaires from countries
@@ -29873,20 +29747,22 @@ See also core:localAwardId.
طاجيكستان
millions of US dollars
tadjik
- 762
2009
+ 762
+
9999
somoni
-
41.04
+
208
36.67
塔吉克斯坦共和国
-
- Tayikistán
0.58
+ Tayikistán
+
Calculated
+
239
4978.0
@@ -29894,15 +29770,17 @@ See also core:localAwardId.
Tayikistán
67.39
20525
-
塔吉克斯坦
+
+
6952.0
Таджикистан
Tagikistan
+
جمهورية طاجيكستان
-
+
2009
@@ -29914,35 +29792,31 @@ See also core:localAwardId.
1000
Tajikistan
Manual Estimation
+
Tagikistan
TAJ
33246
Population data from the UN Population Division and the data refers to the UN Revision 2008
-
-
-
-
-
-
-
-
-
-
-
+
+
-
-
-
+
+
+
+
+
+
+ 1
+
- Panama
Республика Панама
15467
2009
@@ -29953,20 +29827,25 @@ See also core:localAwardId.
1000
Панама
- Population data from the UN Population Division and the data refers to the UN Revision 2008
+ Panama
+ 9.63
巴拿马共和国
9999
- 9.63
- Panama
+ Population data from the UN Population Division and the data refers to the UN Revision 2008
PA
Manual Estimation
جمهورية بنما
191
5524
+
+
+
+
Repubblica del Panama
7434.0
+
millions of US dollars
1000 Ha
2010
@@ -29975,13 +29854,16 @@ See also core:localAwardId.
1000 Ha
Panama
+
Manual Estimation
-77.17
+
the Republic of Panama
balboa
Estimated
+
Panama
панамский
بنما
@@ -29991,8 +29873,8 @@ See also core:localAwardId.
panamense
Panamá
巴拿马
- 166
2009
+ 166
Panamanian
7.2
0.755
@@ -30000,6 +29882,8 @@ See also core:localAwardId.
بلبوا
Calculated
le Panama
+
+
Panama
la República de Panamá
@@ -30015,130 +29899,131 @@ See also core:localAwardId.
1000 Ha
591
-83.05
+ Panama
2009
la République du Panama
24711.0
+
巴拿马
Panama
PAN
巴波亚
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 5
-
- 6
-
+ 5
+
+ 6
+
- F1000, is a place where faculty go to critique papers published in PubMed. Any given record in F1000 might have anywhere from one to dozens of reviews.
+ F1000, is a place where faculty go to critique papers published in PubMed. Any given record in F1000 might have anywhere from one to dozens of reviews.
F1000 Link
- -1
- A specific blog posting
- -1
-
+
+ -1
+ A specific blog posting
+ -1
+
+
-
-
+
-
Blog Posting
-
- An online article or commentary appearing on a blog
+
+
+ An online article or commentary appearing on a blog
+
-
-
-
+
+
+
+ Collection
+
+
+
+
+ A collection of Documents or Collections
+ Hill Ornithology Collection; Wiley Interscience Online Books Biochemisty Collection
+ http://purl.org/ontology/bibo/
+ Collection of information resources that have a unified identity. Archives, museums and libraries often acquire collections on specific subjects and from distinguished authors or researchers. Also includes collections of resources bundled into a license.
+
+
+ -1
+
+ Collection of information resources that have a unified identity
+
+ stable
+
+ -1
+
+
-
-
-
- Collection
-
-
- A collection of Documents or Collections
-
- Hill Ornithology Collection; Wiley Interscience Online Books Biochemisty Collection
- http://purl.org/ontology/bibo/
- Collection of information resources that have a unified identity. Archives, museums and libraries often acquire collections on specific subjects and from distinguished authors or researchers. Also includes collections of resources bundled into a license.
-
- -1
- Collection of information resources that have a unified identity
-
- stable
-
- -1
-
-
-
-
-
+
- 1
- 5
-
+ 1
+ 5
+
- true
+ true
-
+
- true
+ true
has sub grant
+
+
+
+
+
selected publications
- true
-
+ true
+
- true
- false
- edu.cornell.mannlib.vitro.webapp.edit.n3editing.configuration.generators.AddPublicationToPersonGenerator
- 5
+ true
+ false
+ edu.cornell.mannlib.vitro.webapp.edit.n3editing.configuration.generators.AddPublicationToPersonGenerator
+ 5
- 1
- true
-
+ 1
+ true
+
- has authorship
+ has authorship
-
- This relates a person to their authorship information.
+
+ This relates a person to their authorship information.
+
+
+
+
+
+
+
+ SPCA
+ The
+
@@ -30146,20 +30031,19 @@ See also core:localAwardId.
A legal document proposing or enacting a law or a group of laws.
Legislation
-
+
http://purl.org/ontology/bibo/
- Enactments of legislative bodies, published in either statute or code form
- unstable
- From OCLC Input Standards, EntW
- -1
-
- -1
+ Enactments of legislative bodies, published in either statute or code form
+ unstable
+ From OCLC Input Standards, EntW
+ -1
+
+ -1
- least developed countries
البلدان الأقل نموا ;أقل البلدان نمو
@@ -30168,6 +30052,7 @@ See also core:localAwardId.
+
LDCs
http://www.wto.org/english/thewto_e/whatis_e/tif_e/org7_e.htm
paesi meno avanzati
@@ -30176,6 +30061,7 @@ See also core:localAwardId.
最不发达国家
+
PMA
@@ -30191,16 +30077,18 @@ See also core:localAwardId.
+ least developed countries
2010
最不发达国家
+
最不发达国家
199
- http://www.wto.org/french/thewto_f/whatis_f/tif_f/org7_f.htm
+ http://www.wto.org/french/thewto_f/whatis_f/tif_f/org7_f.htm
2943
@@ -30208,7 +30096,7 @@ See also core:localAwardId.
البلدان الأقل نموا
pays les moins avancés
- WTO http://www.wto.org/english/thewto_e/whatis_e/tif_e/org7_e.htm
+ WTO http://www.wto.org/english/thewto_e/whatis_e/tif_e/org7_e.htm
least developed countries
@@ -30225,16 +30113,17 @@ See also core:localAwardId.
http://www.wto.org/spanish/thewto_s/whatis_s/tif_s/org7_s.htm
наименее развитые страны
- países menos adelantados
+ países menos adelantados
least developed countries
наименее развитые страны
-
+
+
países menos adelantados
@@ -30242,53 +30131,77 @@ See also core:localAwardId.
415
pays les moins avancés
-
-
-
-
-
-
+
+
Reviewer Role
-
- true
-
+
+ true
+
- -1
+ -1
- -1
- A role that encompasses both ongoing reviewer responsibility for a bibo:Collection, such as a Journal or Series, and also a review performed for a bibo:Document, such as a book, academic article or conference paper.
- A role that encompasses both ongoing reviewer responsibility for a bibo:Collection, such as a Journal or Series, and also a review performed for a bibo:Document, such as a book, academic article or conference paper.
+ -1
+ A role that encompasses both ongoing reviewer responsibility for a bibo:Collection, such as a Journal or Series, and also a review performed for a bibo:Document, such as a book, academic article or conference paper.
+ A role that encompasses both ongoing reviewer responsibility for a bibo:Collection, such as a Journal or Series, and also a review performed for a bibo:Document, such as a book, academic article or conference paper.
+
+
+
+
+
-
- hasResearchActivity
- 5
+
+ hasResearchActivity
+ 5
- 30
-
+ 30
+
- Use to represent any research-related role in an activity -- typically a Process such as a Project -- or for a general statement about research, not necessarily linked to anything but the person.
+ Use to represent any research-related role in an activity -- typically a Process such as a Project -- or for a general statement about research, not necessarily linked to anything but the person.
research activities
- true
-
+ true
+
- edu.cornell.mannlib.vitro.webapp.edit.n3editing.configuration.generators.AddResearcherRoleToPersonGenerator
+ edu.cornell.mannlib.vitro.webapp.edit.n3editing.configuration.generators.AddResearcherRoleToPersonGenerator
- true
- true
+ true
+ true
-
-
-
+
+ Recorded audio in any format
+ -1
+ stable
+ http://purl.org/ontology/bibo/
+ -1
+ Audio Document
+
+
+ An audio document; aka record.
+ phonograph record; tape; CD; DVD; DAT
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
@@ -30296,73 +30209,52 @@ See also core:localAwardId.
-
-
- Recorded audio in any format
- -1
- stable
-
- http://purl.org/ontology/bibo/
- -1
- Audio Document
-
- An audio document; aka record.
- phonograph record; tape; CD; DVD; DAT
-
-
-
-
-
-
-
-
-
-
+
+ 1
+
+
-
+
- -1
-
+ -1
+
Librarian Emeritus
- -1
+ -1
-
- A retired librarian who has retained their rank, title and privileges.
-
-
-
-
-
+
+ A retired librarian who has retained their rank, title and privileges.
provides access to
- true
+ true
-
+
-
+
- San Marino
+
San Marino
Estimated
2009
Saint-Marin
- 31.0
2009
+ 31.0
9999
Сан-Марино
- sanmarinense
1000 Ha
+ sanmarinense
Data reported on country official publications or web sites (Official) or trade country files.
213
+
+ San Marino
Repubblica di San Marino
of San Marino
1900.0
@@ -30371,35 +30263,42 @@ See also core:localAwardId.
2009
la República de San Marino
1000 Ha
+
6.0
+
+ يورو
2009
- يورو
+
+
saint-marinais
- 12.51
+ 12.51
+
圣马力诺的
1.0
EUR or €
sammarinese
San Marino
+
euro
2008
- 欧 元
Data reported on country official publications or web sites (Official) or trade country files.
+ 欧 元
la République de Saint-Marin
12.41
San_Marino
San Marino
1000
SMR
+
San Marino
1000 Ha
Республика Сан-Марино
- euro
+ euro
43.99
سان ماريني
6778
@@ -30409,8 +30308,10 @@ See also core:localAwardId.
圣马力诺共和国
сан-маринский
19033
+
San Marino
+
euro
millions of US dollars
евро
@@ -30422,186 +30323,144 @@ See also core:localAwardId.
192
the Republic of San Marino
SNM
- Population data from the UN Population Division and the data refers to the UN Revision 2008
euro
+ Population data from the UN Population Division and the data refers to the UN Revision 2008
San Marino
سان مارينو
- 674
6.0
-
-
-
-
-
-
-
-
-
-
-
+ 674
+
+
+
+
+
- Central Asia
- Asia central
- 中亚
-
+
+ 84962
中亚
- Центральная Азия
+
Asie central
+ Central Asia
+
Asie central
+ Asia centrale
+ Asia central
+ Центральная Азия
- Asia central
Central Asia
- Asia central
- آسيا الوسطى
- 中亚
- Central Asia
- 9999
- Asia centrale
- Asie central
- 37864
- Central Asia
آسيا الوسطى
آسيا الوسطى
- 5301
- Asia centrale
-
- Asia centrale
- 143
- Центральная Азия
+
+ Central Asia
+
1991
-
- Центральная Азия
- 84962
-
-
-
-
-
+ Asia centrale
+ Asia central
+
+ 37864
+ Центральная Азия
-
-
+ Asie central
+ 5301
+ 中亚
+ Central Asia
+
+
+ Центральная Азия
+ آسيا الوسطى
+ Asia central
+ 9999
+ 中亚
+
+
+ Asia centrale
+ 143
-
mapping
- 2034
- Properties included in VIVO core to support mappings to other ontologies
+ 2034
+
+ Properties included in VIVO core to support mappings to other ontologies
- 2010-01-10T21:31:36
+ 2010-01-10T21:31:36
-
+
- FAO terminology http://www.fao.org/termportal/en/
-
-
-
- http://www.fao.org/termportal/contr/en/
- FAO terminology
-
- nameListIT
- 2010-06-24
http://www.fao.org/termportal/en/
+ FAO terminology http://www.fao.org/termportal/en/
+
+
http://www.fao.org/termportal/contr/fr/
http://www.fao.org/termportal/contr/es/
+
http://www.fao.org/termportal/contr/ar/
+ http://www.fao.org/termportal/contr/en/
+ FAO terminology
http://www.fao.org/termportal/contr/zh/
+ nameListIT
+
+ 2010-06-24
-
+
cites
- 4
-
+ 4
+
- true
- 5
+ true
+ 5
- true
-
+ true
+
- -1
- -1
- An area of land distinguished by its political autonomy. Politically independent territories.
- Source of the Short Definition: http://www.thefreedictionary.com/country. This is also the same as geopolitical.owl:self_governing.
- Afghanistan; Antigua and Barbuda; Cameroon; Iceland; Jamaica; Nigeria; United States of America
+ -1
+ -1
+ An area of land distinguished by its political autonomy. Politically independent territories.
+ Source of the Short Definition: http://www.thefreedictionary.com/country. This is also the same as geopolitical.owl:self_governing.
+ Afghanistan; Antigua and Barbuda; Cameroon; Iceland; Jamaica; Nigeria; United States of America
-
+
-
+
-
+
Country
- -1
+ -1
- Text of a speech written in preparation for delivery of the speech.
-
-
+ Text of a speech written in preparation for delivery of the speech.
+
+
Speech
-
+
- 5
+ 5
-
-
-
- 30
- http://xmlns.com/foaf/spec/#term_lastName. Note from foaf: "The lastName property is provided (alongside firstName) as a mechanism to support legacy data that cannot be easily interpreted in terms of the (otherwise preferred) familyName and givenName properties. The concepts of 'first' and 'last' names do not work well across cultural and linguistic boundaries; however they are widely used in addressbooks and databases."
-
-
-
-
- 1
- The legal last name of a person as indicated in data loaded most likely from their institution. Only 1 last name can be displayed for each individual.
-
-
- last name
-
-
- true
- translation of
-
-
- Relates a translated document to the original document.
- translation of
- true
-
- http://purl.org/ontology/bibo/
- Relates a translated document to the original document.
- 5
-
- 50
- stable
-
-
-
-
- Examples shows a book has French language version. Public description source: http://bibotools.googlecode.com/svn/bibo-ontology/trunk/doc/index.html .
-
- Cooperation Council for the Arab States of the Gulf
http://www.gcc-sg.org/
+
Cooperation Council for the Arab States of the Gulf
Conseil de coopération des États arabes du Golfe
@@ -30609,14 +30468,18 @@ See also core:localAwardId.
Consejo de Cooperación del Golfo
CCG
+ Cooperation Council for the Arab States of the Gulf
+
- CCASG http://www.gcc-sg.org/eng/index.php
+
+ CCASG http://www.gcc-sg.org/eng/index.php
CCASG
1985
http://www.gcc-sg.org/eng/index.php
海湾阿拉伯国家合作委员会
Consejo de Cooperación de los Estados Árabes del Golfo
Совет сотрудничества арабских государств Персидского залива
+
Conseil de coopération des États arabes du Golfe
@@ -30624,175 +30487,204 @@ See also core:localAwardId.
Cooperation Council for the Arab States of the Gulf
9999
-
-
-
-
-
-
-
-
+
+ true
+ translation of
+
+
+ Relates a translated document to the original document.
+ translation of
+ true
+
+ http://purl.org/ontology/bibo/
+ Relates a translated document to the original document.
+ 5
+
+ 50
+ stable
+
+
+
+
+ Examples shows a book has French language version. Public description source: http://bibotools.googlecode.com/svn/bibo-ontology/trunk/doc/index.html .
+
+
+
+
+ 30
+ http://xmlns.com/foaf/spec/#term_lastName. Note from foaf: "The lastName property is provided (alongside firstName) as a mechanism to support legacy data that cannot be easily interpreted in terms of the (otherwise preferred) familyName and givenName properties. The concepts of 'first' and 'last' names do not work well across cultural and linguistic boundaries; however they are widely used in addressbooks and databases."
+
+
+
+
+ 1
+ The legal last name of a person as indicated in data loaded most likely from their institution. Only 1 last name can be displayed for each individual.
+
+
+ last name
- domesticGeographicFocus
-
- true
- 5
-
+ domesticGeographicFocus
+
+ true
+ 5
+
- true
+ true
domestic geographic focus
-
+
- 70
- true
+ 70
+ true
- northern Africa
+ Afrique septentrionale
+ northern Africa
+
+ Africa del Nord
+
+
+
+ أفريقيا الشمالية
Africa del Nord
+ northern Africa
+ 北非
+ África septentrional
+ África septentrional
+ 15228
+ África septentrional
+ 9999
+ أفريقيا الشمالية
+ Africa del Nord
+
+
+ Afrique septentrionale
+ northern Africa
+ أفريقيا الشمالية
北非
- Северная Африка
- 15228
- Afrique septentrionale
-
- northern Africa
- 9999
-
- Afrique septentrionale
- northern Africa
- 1985
- أفريقيا الشمالية
- 5218
-
- Северная Африка
- Africa del Nord
- África septentrional
-
-
- 5103
- Africa del Nord
- northern Africa
- Afrique septentrionale
- Северная Африка
-
-
- أفريقيا الشمالية
- África septentrional
- 北非
- África septentrional
- 015
- 北非
- أفريقيا الشمالية
-
-
-
-
-
+ 015
-
+ northern Africa
+ Северная Африка
+
+
+ 北非
+ 5103
+
+ Северная Африка
+
+ 5218
+
+
+
+ 1985
+ Северная Африка
+ Afrique septentrionale
-
-
- true
- performer
- true
-
- stable
+
+
+ true
+ performer
+ true
+
+ stable
http://purl.org/ontology/bibo/
performer
- This relates a performance to the person who or organization that carries out the performance.
+ This relates a performance to the person who or organization that carries out the performance.
- 15
+ 15
- A personal communication manifested in some document.
- A personal communication manifested in some document.
+ A personal communication manifested in some document.
+ A personal communication manifested in some document.
-
- 2
+
+ 2
Personal Communication Document
-
+
- 5
+ 5
- true
-
-
+ true
+
+
- researchActivityBy
-
+ researchActivityBy
+
researcher role of
- 30
+ 30
-
-
-
-
-
-
- -1
-
-
- Elsevier; Harper & Row; Indiana University Press
+
+
+ -1
+
+ Elsevier; Harper & Row; Indiana University Press
Publisher
- A person or company whose business is the publishing of books, periodicals, engravings, computer software, etc.
+ A person or company whose business is the publishing of books, periodicals, engravings, computer software, etc.
-
- Definition found here: http://dictionary.reference.com/browse/publisher
+ Definition found here: http://dictionary.reference.com/browse/publisher
- -1
+ -1
-
-
-
-
+
+
+
+
+
- western Africa
+
+
+
- 西非
+
+
15263
+
+ 西非
África occidental
western Africa
África occidental
western Africa
+ 西非
Afrique occidentale
- 西非
+ western Africa
Afrique occidentale
Africa occidentale
011
+
أفريقيا الغربية
Africa occidentale
@@ -30818,21 +30710,13 @@ See also core:localAwardId.
西非
Западная Африка
Западная Африка
- 9999
-
-
-
-
-
-
-
+ 9999
- Gambia
- 2010
-
1000.0
+
+ 2010
dalasi
غامبيا
@@ -30841,17 +30725,20 @@ See also core:localAwardId.
3177
Гамбия
Estimated
+ Gambia
2009
- 665.0
+
1985
+ 665.0
دلاسى
Gambia
Республика Гамбия
- 9999
Gambia
+ 9999
gambiano
1000 Ha
+
dalasi
gambien
@@ -30861,24 +30748,28 @@ See also core:localAwardId.
2009
2009
+
gambiano
15413
+ 2009
Population data from the UN Population Division and the data refers to the UN Revision 2008
- 2009
+
غامبى
90
Gambia
the Republic of the Gambia
+
13.06
+
the Gambia
D
冈比亚
75
- Gambia_The
270
+ Gambia_The
冈比亚的
GM
Data reported on country official publications or web sites (Official) or trade country files.
@@ -30886,117 +30777,123 @@ See also core:localAwardId.
Гамбия
- Gambian
+ Gambian
la Gambie
- Gambia
гамбийский
+ Gambia
Gambia
- Gambie
+
-16.82
+ Gambie
la República de Gambia
1705.0
+ dalasi
达拉西
la République de Gambie
733.0
- dalasi
GMB
+ -13.8
Manual Estimation
+
+
- -13.8
1000 Ha
millions of US dollars
غامبيا
+
Repubblica della Gambia
Calculated
2009
冈比亚
+
13.83
- 1000
جمهورية غامبيا
+ 1000
1130.0
даласи
0.39
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
- Afghanistan; Antigua and Barbuda; Cameroon; Iceland; Jamaica; Nigeria; United States of America
- An area of land distinguished by its political autonomy. Politically independent territories.
-
- 3
-
- 40
+ Afghanistan; Antigua and Barbuda; Cameroon; Iceland; Jamaica; Nigeria; United States of America
+ An area of land distinguished by its political autonomy. Politically independent territories.
+
+ 3
+
+ 40
country
-
+
-
-
-
-
+
+ 2
+
+
+
+ true
+
+
+ edu.cornell.mannlib.vitro.webapp.edit.n3editing.configuration.generators.AddReviewerRoleToPersonGenerator
+
+
+
+
+ use this property to indicate ongoing reviewer responsibility for a bibo:Collection, such as a Journal or Series, and also to record a review performed for a bibo:Document such as a book, academic article or conference paper.
+ reviewer of
+ true
+
+ 5
-
- true
+
+ true
offered by
- 5
+ 5
- 5
-
+ 5
+
-
+
-
- 2
-
-
-
- true
-
-
- edu.cornell.mannlib.vitro.webapp.edit.n3editing.configuration.generators.AddReviewerRoleToPersonGenerator
-
-
-
-
- use this property to indicate ongoing reviewer responsibility for a bibo:Collection, such as a Journal or Series, and also to record a review performed for a bibo:Document such as a book, academic article or conference paper.
- reviewer of
- true
-
- 5
-
- Georgia
Georgia
1991
2009
GEO
+
2009
+
la Géorgie
+
georgiano
1000
1000 Ha
@@ -31012,15 +30909,16 @@ See also core:localAwardId.
2009
268
10744.0
- лари
+ 46.72
la Géorgie
georgiano
- 46.72
+ лари
9999
92
جورجيا
+
Georgia
Грузия
格鲁吉亚
@@ -31034,8 +30932,9 @@ See also core:localAwardId.
拉 利
- Population data from the UN Population Division and the data refers to the UN Revision 2008
+
Georgia
+ Population data from the UN Population Division and the data refers to the UN Revision 2008
29137
Georgia
جورجيا
@@ -31043,8 +30942,10 @@ See also core:localAwardId.
millions of US dollars
2010
+
لارى
+
Calculated
géorgien
Georgia
@@ -31054,94 +30955,86 @@ See also core:localAwardId.
1000 Ha
Georgia
Грузия
+
грузинский
Georgia
+ 40.01
6970.0
lari
- 40.01
+
GE
Georgia
43.58
Géorgie
Грузия
+ Georgia
格鲁吉亚
2009
格鲁吉亚
lari
+
33250
73
+
Georgia
格鲁吉亚的
جورجيا
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+ true
+
+ enter a publication or document supported by this grant
+ an information resource (typically a publication) supported by (typically via funding) an agreement (such as a grant)
+ 5
+
+
+
+
+ true
+ supported publications
+
+
+
nameListRU
-
+
2010-06-24
+ http://www.fao.org/termportal/en/
+ http://www.fao.org/termportal/contr/ar/
FAO terminology
http://www.fao.org/termportal/contr/en/
- FAO terminology http://www.fao.org/termportal/en/
-
- http://www.fao.org/termportal/en/
- http://www.fao.org/termportal/contr/ar/
+ FAO terminology http://www.fao.org/termportal/en/
http://www.fao.org/termportal/contr/es/
+
http://www.fao.org/termportal/contr/fr/
http://www.fao.org/termportal/contr/zh/
-
-
- true
-
- enter a publication or document supported by this grant
- an information resource (typically a publication) supported by (typically via funding) an agreement (such as a grant)
- 5
-
-
-
-
- true
- supported publications
-
-
-
-
-
-
-
-
-
- Bonaire, Sint Eustatius and Saba
Bonaire, Sint Eustatius and Saba
- Bonaire, Sint Eustatius y Saba
- بونير وسان يوستاتيوس وسابا
博纳尔、圣俄斯塔休斯和萨巴
+ بونير وسان يوستاتيوس وسابا
+
+ Bonaire, Sint Eustatius y Saba
博纳尔、圣俄斯塔休斯和萨巴
535
Bonaire, Sint Eustatius and Saba
+
Bonaire, Sint Eustatius y Saba
博纳尔、圣俄斯塔休斯和萨巴
+ Bonaire, Sint Eustatius and Saba
+
بونير وسان يوستاتيوس وسابا
Bonaire, Sint Eustatius e Saba
بونير وسان يوستاتيوس وسابا
@@ -31149,22 +31042,37 @@ See also core:localAwardId.
2010
9999
- Bonaire, Sint Eustatius et Saba
Bonaire, Sint Eustatius et Saba
+ Bonaire, Sint Eustatius et Saba
Bonaire, Sint Eustatius and Saba
+
Bonaire, Sint Eustatius e Saba
+
Bonaire, Sint Eustatius e Saba
Bonaire, Sint Eustatius y Saba
+
+
158870
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+ true
+
+
+
+
+ hasMember
+
+
+
+
+
validUntil
@@ -31175,100 +31083,98 @@ See also core:localAwardId.
-
-
+
+
-
- true
-
-
-
-
- hasMember
-
-
-
-
-
+
+
+
+
Georgia
-
-
-
-
-
+
+
-
+
+
+
+
+
-
- E.M.
E.M. Engineer of Mines
+ E.M.
+
-
+
+
+
+ 1
+
+
-
+ http://www.fao.org/termportal/contr/ar/
+
-
+ http://www.fao.org/termportal/en/
+
http://www.fao.org/termportal/contr/en/
- FAO terminology http://www.fao.org/termportal/en/
+ FAO terminology http://www.fao.org/termportal/en/
+ http://www.fao.org/termportal/contr/es/
2010-06-24
FAO terminology
- nameOfficialEN
- http://www.fao.org/termportal/contr/ar/
- http://www.fao.org/termportal/en/
- http://www.fao.org/termportal/contr/es/
http://www.fao.org/termportal/contr/fr/
http://www.fao.org/termportal/contr/zh/
+ nameOfficialEN
-
+
- A compilation of documents published from an event, such as a conference
+ A compilation of documents published from an event, such as a conference
-
+
http://purl.org/ontology/bibo/
A compilation of documents published from an event, such as a conference.
- unstable
- -1
+ unstable
+ -1
- Short Definition copied from bibo ontology
+ Short Definition copied from bibo ontology
-
+
Proceedings
- -1
+ -1
-
-
-
-
-
- true
+ true
-
- Public Definition source (http://www.answers.com/topic/publisher).
-
+
+ Public Definition source (http://www.answers.com/topic/publisher).
+
- publisher
- Relates published materials to an entity that is engaged in publishing.
- 51
- 5
+ publisher
+ Relates published materials to an entity that is engaged in publishing.
+ 51
+ 5
publisher
-
- true
+
+ true
+
+
+
+
+
@@ -31278,79 +31184,85 @@ See also core:localAwardId.
-
- -1
-
-
-
-
- Organization
- This class will display all the instances in the subclasses below it, as well as any organizations that were added as part of this generic class because there wasn't a specific class available.
- individual--foaf-organization.ftl
-
-
-
- Only use if no specific subclasses of foaf:organization desribe the organization.
-
-
- -1
-
-
- A generic class encompassing several types of organizations.
-
-
-
-
+
+
+
+ Ued to describe an organization related to bibliographic items such as a publishing company, etc.
+
+
+
+
+
+ -1
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
+ This class will display all the instances in the subclasses below it, as well as any organizations that were added as part of this generic class because there wasn't a specific class available.
+
+
+
+ Organization
+ Only use if no specific subclasses of foaf:organization desribe the organization.
+ individual--foaf-organization.ftl
+
-
-
-
-
-
- Ued to describe an organization related to bibliographic items such as a publishing company, etc.
-
-
-
-
-
-
+
+
+
+ A generic class encompassing several types of organizations.
+
+
+
+
+
+
+
+
+ -1
+
+
+
+
+
+
-
+
+ http://www.fao.org/termportal/contr/fr/
+ http://www.fao.org/termportal/contr/es/
http://www.fao.org/termportal/contr/en/
-
+
+ http://www.fao.org/termportal/en/
FAO terminology
2010-06-24
- FAO terminology http://www.fao.org/termportal/en/
- nationalityZH
- http://www.fao.org/termportal/contr/fr/
- http://www.fao.org/termportal/contr/es/
- http://www.fao.org/termportal/en/
http://www.fao.org/termportal/contr/ar/
+ FAO terminology http://www.fao.org/termportal/en/
http://www.fao.org/termportal/contr/zh/
+ nationalityZH
- French Polynesia
波利尼西亚人/波利尼西亚的
franc CFP (Colonies françaises du Pacifique)
+ French Polynesia
太平洋法郎
Polinesia francese
بولينيزيا الفرنسية
French Polynesia
Polynesian
+
Population data from the UN Population Division and the data refers to the UN Revision 2008
269.0
полинезиец
@@ -31361,19 +31273,23 @@ See also core:localAwardId.
PF
Manual Estimation
French_Polynesia
- 400.0
+
+
+
44.5
+ 400.0
258
70
+
polynésien
من بولينيزيا الفرنسية
franco CFP
87
+ 1985
1000 Ha
Manual Estimation
- 1985
франк КФП
Polinesia francese
polinesio
@@ -31381,6 +31297,7 @@ See also core:localAwardId.
franco CFP (Colonies françaises du Pacifique)
Polynésie française
19017
+
polinesiano
بولينيزيا الفرنسية
Territorio della Polinesia francese
@@ -31394,6 +31311,7 @@ See also core:localAwardId.
1000 Ha
Polinesia Francesa
2009
+
3094
بولينيزيا الفرنسية
la Polynésie française
@@ -31402,73 +31320,71 @@ See also core:localAwardId.
FPL
法属波利尼西亚
9999
+
Polinesia Francesa
Manual Estimation
法属波利尼西亚
2009
-
-
-
-
-
-
-
-
-
+
- true
-
- 5
+ true
+
+ 5
credential of
-
- 6
+
+ 6
+
+
+
+
+
-
+
currently head of
- 5
- 20
- true
+ 5
+ 20
+ true
-
-
+
+
- true
+ true
-
+
- -1
+ -1
- -1
+ -1
-
-
- A Person holding an academic employment appointment focused on research rather than teaching; temporary (or for some defined term)
+
+
+ A Person holding an academic employment appointment focused on research rather than teaching; temporary (or for some defined term)
Postdoc
- Grenada
- 12.52
+ Grenada
grenadin
1000 Ha
104.0
la Grenade
Grenada
+
格林纳达
34.0
@@ -31477,19 +31393,20 @@ See also core:localAwardId.
2009
- dollaro dei Caraibi orientali
Гренада
+ dollaro dei Caraibi orientali
1000
Гренада
2009
东加勒比元
+
Data reported on country official publications or web sites (Official) or trade country files.
11.98
Granada
Granada
- 9999
millions of US dollars
+ 9999
3384
EC$
granadino
@@ -31497,9 +31414,11 @@ See also core:localAwardId.
15417
99
+ Grenada
格林纳达
-61.81
+
12.5
Grenada
Grenadian
@@ -31508,24 +31427,32 @@ See also core:localAwardId.
EC dollar (East Caribbean dollar)
2009
34.0
+
Grenada
+
格林纳达
Estimated
1985
Manual Estimation
- Data reported on country official publications or web sites (Official) or trade country files.
Гренада
+ Data reported on country official publications or web sites (Official) or trade country files.
2009
dólar del Caribe oriental
غرينادا
+
+
Population data from the UN Population Division and the data refers to the UN Revision 2008
+
+
+
Grenada
+
dollar des Caraïbes orientales
Grenade
- GRN
- Grenada
-61.38
+ Grenada
+ GRN
GD
627.0
@@ -31541,183 +31468,182 @@ See also core:localAwardId.
восточнокарибский доллар
1000 Ha
308
- Grenada
+ 12.52
格林纳达的
غرينادا
-
-
-
-
-
-
-
-
-
-
-
- 5
- 3
-
+ 5
+ 3
+
- edu.cornell.mannlib.vitro.webapp.edit.n3editing.configuration.generators.AddOrganizerRoleToPersonGenerator
+ edu.cornell.mannlib.vitro.webapp.edit.n3editing.configuration.generators.AddOrganizerRoleToPersonGenerator
- true
+ true
-
- true
+
+ true
organizer of
-
+
+
+ 1
+
+
+
B.Ag. Bachelor of Agriculture
-
- B.Ag.
+ B.Ag.
+
-
+
-
-
-
+
+
+
-
+
- -1
+ -1
Workshop Series
-
-
+
+
- -1
+ -1
- Use workshop for individual events.
- An organized series of workshop events, whether repetitions of the same workshop or multiple different workshops.
+ Use workshop for individual events.
+ An organized series of workshop events, whether repetitions of the same workshop or multiple different workshops.
-
time
- 195
- Dates and times for events, employment, etc.
+ 195
+
+ Dates and times for events, employment, etc.
- 2009-12-28T13:54:45
+ 2009-12-28T13:54:45
+
+
+
+
+
- South Asian Association for Regional Cooperation
Association sud-asiatique de coopération régionale
Asociación del Asia Meridional para la Cooperación Regional
ASACR
+ South Asian Association for Regional Cooperation
South Asian Association for Regional Cooperation
+
South Asian Association for Regional Cooperation
南亚区域合作协会
Association sud-asiatique de coopération régionale
رابطة التعاون الاقليمى فى جنوب آسيا
2005
+
44740
SAARC
Ассоциация регионального сотрудничества Южной Азии
+
+
1985
Asociación del Asia Meridional para la Cooperación Regional
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
- -1
-
-
-
-
- This class will also display instances of subclasses under Event, e.g. Philosophy Department Discussion Club; 2009 Racker Lecture; screening of a documentary. In addition to a location in space and time, an event may have any or all the following qualities: actively participating agents, passive factors, work products. Also, it may be in a virtual space or part of a series such as a lecture series.
+
+
+
+
+
+
+
+
+
+
+
+ -1
+ This class will also display instances of subclasses under Event, e.g. Philosophy Department Discussion Club; 2009 Racker Lecture; screening of a documentary. In addition to a location in space and time, an event may have any or all the following qualities: actively participating agents, passive factors, work products. Also, it may be in a virtual space or part of a series such as a lecture series.
-The previous short definition was: "An arbitrary classification of a space/time region, by a cognitive agent."
-
-
-
+The previous short definition was: "An arbitrary classification of a space/time region, by a cognitive agent."
+
+
+
+
-
-
-
-
-
- Only use if no specific subclasses of event:Event are appropriate.
-
-
-
-
-
-
+
+
+
+
+ Only use if no specific subclasses of event:Event are appropriate.
+
+
+
+
+
+
+
Event
- Something that happens at a given place and time.
+
+
+
+
+
+ Something that happens at a given place and time.
+
+
-
-
-
-
-
-
-
- -1
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+ -1
+
+
+
+
+
+
+
-
links
- 99
- link relationships
+ 99
+
+ link relationships
- 2009-12-28T14:00:43
+ 2009-12-28T14:00:43
rejected
+
-
hasMaxLongitude
@@ -31725,93 +31651,102 @@ The previous short definition was: "An arbitrary classification of a space/time
-
-
+
+
+
+
+
+
+
+
+
+ 1
+
+
- FAO terminology http://www.fao.org/termportal/en/
-
+ FAO terminology http://www.fao.org/termportal/en/
+ http://www.fao.org/termportal/en/
+
+ http://www.fao.org/termportal/contr/fr/
http://www.fao.org/termportal/contr/en/
+ http://www.fao.org/termportal/contr/zh/
nationalityEN
-
+
+ http://www.fao.org/termportal/contr/ar/
FAO terminology
2010-06-24
- http://www.fao.org/termportal/en/
- http://www.fao.org/termportal/contr/fr/
- http://www.fao.org/termportal/contr/zh/
- http://www.fao.org/termportal/contr/ar/
http://www.fao.org/termportal/contr/es/
-
-
-
-
-
- true
+ true
predecessor organization
-
-
- 5
+
+
+ 5
- 60
-
+ 60
+
-
-
-
+
+
+
- Japan
Data reported on country official publications or web sites (Official) or trade country files.
ين
+
9999
اليابان
yen
el Japón
+
2010
+ Japan
Giappone
millions of US dollars
日 本
+
2009
- 392
Япония
+ 392
1000
1985
JP
- 4039
- 122.93
日 本
+ 122.93
+ 4039
اليابان
36450.0
-
JPN
+
+
ياباني
yen
Calculated
giapponese
Population data from the UN Population Division and the data refers to the UN Revision 2008
- 5068996.0
yen
+ 5068996.0
Япония
-
Japan
+
Япония
146.02
اليابان
- 2009
2009
+ 2009
2009
126
37794.7
@@ -31820,186 +31755,186 @@ The previous short definition was: "An arbitrary classification of a space/time
Official data reported on FAO Questionnaires from countries
Japan
Japon
+
el Japón
+
Japan
110
15434
2009
日本国
+
1000 Ha
127156.0
1000 Ha
Japón
-
+
日本的
+
+
4609.0
japonais
JPN
元(圆)圆
Japanese
- japonés
+
+ Manual Estimation
Estimated
японский
Giappone
- Manual Estimation
+ japonés
24.04
иена [скл.]
0.884
yen
Japan
le Japon
+
1000 Ha
Giappone
-
-
-
-
-
-
-
-
-
-
-
-
-
- location
- 96
- Relationships of place
-
-
- 2009-12-28T13:05:00
-
-
-
- 1
+
+
+
+
+ location
+ 96
+
+ Relationships of place
+
+
+ 2009-12-28T13:05:00
+
- An advisory relationship in which one faculty member mentors another faculty member.
+ An advisory relationship in which one faculty member mentors another faculty member.
- 1
-
+ 1
+
Faculty Mentoring Relationship
-
- 1
+
+ 1
Bill
- stable
+ stable
-
- -1
+
+ -1
Draft legislation presented for discussion to a legal body.
- Draft legislation presented for discussion to a legal body
+ Draft legislation presented for discussion to a legal body
http://purl.org/ontology/bibo/
-
- Short Definition from the bibo ontology
- -1
+
+ Short Definition from the bibo ontology
+ -1
+
+ 1
+
+
+
+
+
+
+
+
- edu.cornell.mannlib.vitro.webapp.edit.n3editing.configuration.generators.AddMemberRoleToPersonGenerator
+ edu.cornell.mannlib.vitro.webapp.edit.n3editing.configuration.generators.AddMemberRoleToPersonGenerator
member of
- 50
+ 50
- true
-
+ true
+
- 5
-
- true
-
+ 5
+
+ true
+
- true
+ true
-
-
- 1
-
-
-
-
-
+
+
+
- -1
-
+ -1
-
-
-
-
-
-
+
+
+
+
-
- true
+
+
+ true
+
-
- Academic position in a university or institution
+
+ Academic position in a university or institution
Faculty Position
- Professor; Associate Professor; Assistant Professor
-
- Professor, associate professor and assistant professor are common positions for academic faculty.
- -1
-
-
+ Professor; Associate Professor; Assistant Professor
+
+
+
+
+ Professor, associate professor and assistant professor are common positions for academic faculty.
+ -1
FRBR-aligned Bibliographic Ontology
- fabio
+ fabio
-
courses
- 3
+ 3
+
- 2009-12-08T10:42:15
+ 2009-12-08T10:42:15
- 5
+ 5
Clinical Guideline
- A recommendation on the appropriate treatment and care of people with a specific disease or condition, based on the best available evidence, designed to help healthcare professionals in their work.
-
- 5
+ A recommendation on the appropriate treatment and care of people with a specific disease or condition, based on the best available evidence, designed to help healthcare professionals in their work.
+
+ 5
-
- A recommendation on the appropriate treatment and care of people with a specific disease or condition, based on the best available evidence, designed to help healthcare professionals in their work.
+
+ A recommendation on the appropriate treatment and care of people with a specific disease or condition, based on the best available evidence, designed to help healthcare professionals in their work.
-
+
- Germany
- евро
- euro
Germany
+
+ euro
Official data reported on FAO Questionnaires from countries
Population data from the UN Population Division and the data refers to the UN Revision 2008
@@ -32007,12 +31942,14 @@ The previous short definition was: "An arbitrary classification of a space/time
276
0.885
- 1000
ألمانيا
- Germany
- يورو
+ 1000
1990
+ يورو
+ Germany
35712.0
+
+
Germany
3245
ألمانيا
@@ -32021,13 +31958,17 @@ The previous short definition was: "An arbitrary classification of a space/time
2009
欧 元
+
79
جمهورية ألمانيا الاتحادية
euro
+
+
alemán
millions of US dollars
-
+
+
la República Federal de Alemania
German
@@ -32035,16 +31976,19 @@ The previous short definition was: "An arbitrary classification of a space/time
德国的 / 德国人
Germania
5.87
+
2010
1000 Ha
Allemagne
euro
+ Germany
+
2009
DEU
Alemania
- немецкий
-
1000 Ha
+
+ немецкий
47.27
@@ -32054,13 +31998,14 @@ The previous short definition was: "An arbitrary classification of a space/time
2009
tedesco
55.05
- 3330032.0
+ 3330032.0
德意志联邦共和国
EUR or €
- Федеративная Республика Германия
- 15414
+
Германия
+ 15414
+ Федеративная Республика Германия
德 国
la République fédérale d'Allemagne
Calculated
@@ -32068,6 +32013,7 @@ The previous short definition was: "An arbitrary classification of a space/time
Official data reported on FAO Questionnaires from countries
15.03
Alemania
+
Germania
34861.0
@@ -32075,12 +32021,12 @@ The previous short definition was: "An arbitrary classification of a space/time
GER
l'Allemagne
Repubblica federale di Germania
- 82167.0
- 2009
德 国
+ 2009
+ 82167.0
allemand
- euro
+ euro
Official data reported on FAO Questionnaires from countries
2009
@@ -32089,25 +32035,14 @@ The previous short definition was: "An arbitrary classification of a space/time
Германия
9999
-
-
-
-
-
-
-
-
-
-
-
+ евро
-
-
- 1
-
+
+
+
+
- Gibraltar
libra de Gibraltar
82
@@ -32115,16 +32050,19 @@ The previous short definition was: "An arbitrary classification of a space/time
Гибралтарский фунт
Gibraltar
GIB
+
Gibraltar
9999
3257
- Gibraltar
- 292
+ Gibraltar
Gibilterra
+ 292
+ Gibraltar
1000 Ha
جبل طارق
Gibraltar
+
Data reported on country official publications or web sites (Official) or trade country files.
Gibilterra
1000 Ha
@@ -32135,6 +32073,7 @@ The previous short definition was: "An arbitrary classification of a space/time
7671
Gibraltar
جبل طارق
+
31.0
جنيه
Gibraltar
@@ -32150,13 +32089,17 @@ The previous short definition was: "An arbitrary classification of a space/time
Gibraltarian
2009
1000 Ha
+
di Gibilterra
sterlina di Gibilterra
£
GI
+
Gibilterra
+
直布罗陀
livre de Gibraltar
+
Gibraltar
جبل طارق
直布罗陀
@@ -32165,50 +32108,43 @@ The previous short definition was: "An arbitrary classification of a space/time
0.0
直布罗陀人/直布罗陀的
Gibraltar
+
95
1.0
1985
Gibraltar
-
-
-
-
-
-
-
-
- true
-
+ true
+
- true
+ true
sub grant of
-
+
- 5
+ 5
-
- 1
+
+ 1
-
+
NIH Manuscript Submission System ID
-
+
-
+
- Tuvalu
+
1000
9999
2009
@@ -32218,6 +32154,7 @@ The previous short definition was: "An arbitrary classification of a space/time
Тувалу
-8.55
+
Tuvalu
8025
@@ -32228,10 +32165,13 @@ The previous short definition was: "An arbitrary classification of a space/time
1000 Ha
Tuvalu
2009
+
Tuvalu
+
1000 Ha
Tuvalu
dollaro australiano
+
3.0
Tuvalu
3.0
@@ -32246,8 +32186,10 @@ The previous short definition was: "An arbitrary classification of a space/time
图瓦卢
2009
دولار أسترالى
+
176.13
di Tuvalu
+
1.8
19037
Тувалу
@@ -32257,10 +32199,13 @@ The previous short definition was: "An arbitrary classification of a space/time
-5.67
توفالو
Data reported on country official publications or web sites (Official) or trade country files.
+
Тувалу
$A
10.0
+
+ Tuvalu
179.22
2009
Australian dollar
@@ -32271,6 +32216,7 @@ The previous short definition was: "An arbitrary classification of a space/time
Tuvalu
+
227
توفالو
252
@@ -32280,8 +32226,9 @@ The previous short definition was: "An arbitrary classification of a space/time
доллар
dollar australien
- Tuvalu
тувалуанский
+ Tuvalu
+
Manual Estimation
1000 Ha
@@ -32291,98 +32238,84 @@ The previous short definition was: "An arbitrary classification of a space/time
Tuvalu
-
-
-
-
-
-
-
-
-
-
-
-
- -1
+
+ -1
- -1
-
+ -1
+
Academic Term
- An explicit individual academic term, quarter, or semester rather than the generic fall, spring or summer semester.
+ An explicit individual academic term, quarter, or semester rather than the generic fall, spring or summer semester.
+
+ An section number
+ A section number
+
+
+
+ section
+
+
+ http://purl.org/ontology/bibo/
+ Di Rado, Alicia. 1995. Trekking through college: Classes explore
+modern society using the world of Star trek. Los Angeles Times, March
+15, sec. A, p. 3.
+
+
+ unstable
+
- -1
- A qualitative descriptive research study of individuals or a group
+ -1
+ A qualitative descriptive research study of individuals or a group
-
+
Case Study
-
- -1
- A form of qualitative descriptive research that is used to study individuals, a small group of participants, or a group as a whole. Medical usage (from MeSH): clinical presentations that may be followed by evaluative studies that eventually lead to a diagnosis.
-
+
+ -1
+ A form of qualitative descriptive research that is used to study individuals, a small group of participants, or a group as a whole. Medical usage (from MeSH): clinical presentations that may be followed by evaluative studies that eventually lead to a diagnosis.
+
-
- An section number
- A section number
-
-
-
- section
-
-
- http://purl.org/ontology/bibo/
- Di Rado, Alicia. 1995. Trekking through college: Classes explore
-modern society using the world of Star trek. Los Angeles Times, March
-15, sec. A, p. 3.
-
-
- unstable
-
-
-
-
-
-
http://www.fao.org/termportal/contr/en/
- FAO terminology http://www.fao.org/termportal/en/
+ FAO terminology http://www.fao.org/termportal/en/
-
+ http://www.fao.org/termportal/contr/es/
+
FAO terminology
+ http://www.fao.org/termportal/contr/fr/
nationalityES
-
-
- 2010-06-24
- http://www.fao.org/termportal/contr/es/
- http://www.fao.org/termportal/contr/fr/
http://www.fao.org/termportal/contr/ar/
+
+
http://www.fao.org/termportal/contr/zh/
http://www.fao.org/termportal/en/
+ 2010-06-24
- Caribbean Forum of African, Caribbean and Pacific States
非洲、加勒比和太平洋国家加勒比论坛
+
+
9999
- 51143
1985
+
+ 51143
CARIFORUM
@@ -32392,29 +32325,28 @@ modern society using the world of Star trek. Los Angeles Times, March
Карибский форум африканских, карибских и тихоокеанских государств
- CARIFORUM
منتدى الكاريبى
+ CARIFORUM
+ Caribbean Forum of African, Caribbean and Pacific States
Forum des Caraïbes du Groupe des États d'Afrique, des Caraïbes et du Pacifique
- CARIFORUM
+
Forum des Caraïbes du Groupe des États d'Afrique, des Caraïbes et du Pacifique
- Foro de Estados ACP del Caribe
- Caribbean Forum of African, Caribbean and Pacific States
-
-
-
-
-
+ Caribbean Forum of African, Caribbean and Pacific States
+
+ CARIFORUM
+ Foro de Estados ACP del Caribe
- Angola
2009
+
1000 Ha
+
1985
angoleño
la República de Angola
@@ -32426,6 +32358,7 @@ modern society using the world of Star trek. Los Angeles Times, March
安哥拉
58290.0
2009
+
أنغولا
@@ -32433,14 +32366,16 @@ modern society using the world of Star trek. Los Angeles Times, March
the Republic of Angola
18498.0
7
+
9999
+
- 75493.0
Республика Ангола
- Manual Estimation
Angola
+ Manual Estimation
+ 75493.0
Angolan
Angola
kwanza
@@ -32448,12 +32383,13 @@ modern society using the world of Star trek. Los Angeles Times, March
1000 Ha
ангольский
كوانزا
+
2009
kwanza
Angola
- 安哥拉
kwanza
24.08
+ 安哥拉
2010
Estimated
124670.0
@@ -32468,6 +32404,7 @@ modern society using the world of Star trek. Los Angeles Times, March
l'Angola
أنغولا
+
Angola
Angola
@@ -32476,67 +32413,62 @@ modern society using the world of Star trek. Los Angeles Times, March
millions of US dollars
0.403
Kz
+ Angola
Repubblica d'Angola
安哥拉的 / 安哥拉人
-4.37
- Ангола
+ Ангола
417
+
Angola
15364
Angola
+
Ангола
11.67
Population data from the UN Population Division and the data refers to the UN Revision 2008
+
kwanza
8
2009
angolano
- 2009
+
Calculated
+ 2009
AO
Angola
-
+
124670.0
1000
Data reported on country official publications or web sites (Official) or trade country files.
024
-
-
-
-
-
-
-
-
-
-
-
- Belgium
6.41
- Belgium
Королевство Бельгия
- 2.54
+ Belgium
Бельгия
belga
+ 2.54
255
بلجيكي
+
27
2010
- 49.5
1000 Ha
+ 49.5
Belgium
the Kingdom of Belgium
belga
1000 Ha
евро
9999
+
Belgian
@@ -32559,7 +32491,9 @@ modern society using the world of Star trek. Los Angeles Times, March
بلجيكا
比利时王国
+
Belgio
+
2009
Belgium
056
@@ -32567,22 +32501,27 @@ modern society using the world of Star trek. Los Angeles Times, March
Manual Estimation
Estimated
3028.0
+
2009
- euro
+
51.5
- 10647.0
+
+ 10647.0
+ euro
مملكة بلجيكا
BE
Belgique
la Belgique
Бельгия
- Population data from the UN Population Division and the data refers to the UN Revision 2008
15373
+ Population data from the UN Population Division and the data refers to the UN Revision 2008
比利时
+
3053.0
Bélgica
€
+
Official data reported on FAO Questionnaires from countries
euro
比利时
@@ -32593,33 +32532,24 @@ modern society using the world of Star trek. Los Angeles Times, March
Belgio
euro
+
+
belge
比利时的 / 比利时人
2009
1985
+ Belgium
le Royaume de Belgique
Calculated
欧 元
BEL
1364.0
-
-
-
-
-
-
-
-
-
-
-
- Spain
Population data from the UN Population Division and the data refers to the UN Revision 2008
4.33
مملكة إسبانيا
@@ -32627,6 +32557,7 @@ modern society using the world of Star trek. Los Angeles Times, March
Королевство Испания
إسبانيا
27680.0
+ Spain
2010
9999
@@ -32634,25 +32565,30 @@ modern society using the world of Star trek. Los Angeles Times, March
Regno di Spagna
2009
- 724
欧 元
+ 724
español
España
+
+
euro
+
+
-18.17
millions of US dollars
ESP
يورو
1000 Ha
- the Kingdom of Spain
-
- Spain
-
43.79
+
+
+ Spain
EUR or €
+ the Kingdom of Spain
Data reported on country official publications or web sites (Official) or trade country files.
+
西班牙的
spagnolo
@@ -32662,13 +32598,15 @@ modern society using the world of Star trek. Los Angeles Times, March
1000
49880.0
Data reported on country official publications or web sites (Official) or trade country files.
- 2009
- SPA
1000 Ha
+ SPA
+ 2009
+
евро
1460250.0
2009
Calculated
+
2009
@@ -32679,12 +32617,15 @@ modern society using the world of Star trek. Los Angeles Times, March
España
Испания
euro
- 44904.0
- 229
- l'Espagne
- Spain
- 1000 Ha
euro
+ 229
+
+ 44904.0
+ 1000 Ha
+ Spain
+
+ l'Espagne
+
Испания
ES
Spanish
@@ -32694,37 +32635,26 @@ modern society using the world of Star trek. Los Angeles Times, March
Espagne
Spagna
西班牙王国
+
Spagna
le Royaume d'Espagne
- испанский
203
+ испанский
el Reino de España
西班牙
Manual Estimation
西班牙
Spain
- espagnol
إسباني
+ espagnol
50537.0
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
- Bolivia (Plurinational State of)
Manual Estimation
068
بوليفيانو
@@ -32732,9 +32662,10 @@ modern society using the world of Star trek. Los Angeles Times, March
1985
دولة بوليفيا المتعددة القوميات
-
- boliviano
Bolivia (Stato plurinazionale della)
+
+
+ boliviano
2009
Estimated
玻利维亚的 / 玻利维亚人
@@ -32744,9 +32675,10 @@ modern society using the world of Star trek. Los Angeles Times, March
15377
玻利维亚(多民族国)
Боливия (Многонациогнальное Государство)
- Bolivie (État plurinational de)
BOL
+ Bolivie (État plurinational de)
2010
+
玻利维亚多民族国
the Plurinational State of Bolivia
玻利维亚诺
@@ -32754,8 +32686,8 @@ modern society using the world of Star trek. Los Angeles Times, March
1000 Ha
- 19
-22.9
+ 19
боливийский
-57.46
109858.0
@@ -32766,46 +32698,56 @@ modern society using the world of Star trek. Los Angeles Times, March
BO
boliviano
+
بوليفي
بوليفيا (دولة - المتعددة القوميات)
- Bolivian
- boliviano
- -69.64
+ boliviano
+ Bolivian
+ -69.64
BOL
17340.0
+
-9.68
Bolivia (Stato plurinazionale della)
+
+
1000
Bolivia (Plurinational State of)
بوليفيا (دولة - المتعددة القوميات)
- Population data from the UN Population Division and the data refers to the UN Revision 2008
boliviano
Official data reported on FAO Questionnaires from countries
+ Population data from the UN Population Division and the data refers to the UN Revision 2008
+
Bolivia (Plurinational State of)
el Estado Plurinacional de Bolivia
33
2009
boliviano
+
Bolivia
36954.0
1000 Ha
- 9999
millions of US dollars
+ 9999
2009
Bolivia (Estado Plurinacional de)
+ боливиано
+
Stato plurinazionale della Bolivia
Bolivia (Estado Plurinacional de)
- боливиано
+
+ Bolivia (Plurinational State of)
玻利维亚(多民族国)
2009
l'État plurinational de Bolivie
0.643
108330.0
+
bolivien
Многонациональное Государство Боливия
@@ -32813,36 +32755,26 @@ modern society using the world of Star trek. Los Angeles Times, March
Official data reported on FAO Questionnaires from countries
Calculated
Bolivie (État plurinational de)
-
-
-
-
-
-
-
-
-
-
-
- Mauritania
27.3
4660
MRT
- 9999
millions of US dollars
+ 9999
угия
1000 Ha
mauritano
Data reported on country official publications or web sites (Official) or trade country files.
- 478
-4.82
- موريتانيا
+ 478
+
乌吉亚
+ موريتانيا
+ Mauritania
159
MR
2009
@@ -32851,13 +32783,15 @@ modern society using the world of Star trek. Los Angeles Times, March
Mauritania
毛里塔尼亚
-
+
-17.07
+
la République islamique de Mauritanie
ouguiya
la República Islámica de Mauritania
+
103070.0
毛里塔尼亚伊斯兰共和国
@@ -32865,37 +32799,44 @@ modern society using the world of Star trek. Los Angeles Times, March
Repubblica islamica di Mauritania
+
2009
+
ouguiya
Population data from the UN Population Division and the data refers to the UN Revision 2008
2009
Calculated
Mauritania
+
136
أوقية
0.433
Mauritania
+
Мавритания
UM
2010
+
1000
Mauritania
мавританский
the Islamic Republic of Mauritania
14.72
+
3291.0
+
Manual Estimation
جمهورية موريتانيا الإسلامية
Data reported on country official publications or web sites (Official) or trade country files.
1985
Estimated
- mauritano
- 毛里塔尼亚
Исламская Республика Мавритания
+ 毛里塔尼亚
+ mauritano
Mauritania
- MAU
15450
+ MAU
2009
1000 Ha
@@ -32915,82 +32856,73 @@ modern society using the world of Star trek. Los Angeles Times, March
mauritanien
2009
39651.0
+
Mauritanie
Mauritanian
-
-
-
-
-
-
-
-
-
-
-
-
- This is done through a restriction on academic degree to allow the values from to be foaf:organization to be used as the range.
- 60
- true
+
+ This is done through a restriction on academic degree to allow the values from to be foaf:organization to be used as the range.
+ 60
+ true
offers degree
-
- 5
-
- This relates an organization to the academic degrees offered.
- offers degree
+
+ 5
+
+ This relates an organization to the academic degrees offered.
+ offers degree
- A patent is an exclusive right granted for an invention, which is a product or a process that provides, in general, a new way of doing something, or offers a new technical solution to a problem. In order to be patentable, the invention must fulfill certain conditions. (http://www.wipo.int/patentscope/en/)
-
- -1
+
+ A patent is an exclusive right granted for an invention, which is a product or a process that provides, in general, a new way of doing something, or offers a new technical solution to a problem. In order to be patentable, the invention must fulfill certain conditions. (http://www.wipo.int/patentscope/en/)
+ -1
+
+
+
A document describing the exclusive right granted by a government to an inventor to manufacture, use, or sell an invention for a certain number of years.
-
- stable
+
+ stable
Patent
-
-
-
+
+
http://purl.org/ontology/bibo/
-
- (from BIBO) A document describing the exclusive right granted by a government to an inventor to manufacture, use, or sell an invention for a certain number of years
-
-
+
+
+ (from BIBO) A document describing the exclusive right granted by a government to an inventor to manufacture, use, or sell an invention for a certain number of years
+
+
-
- -1
+
+ -1
-
-
-
-
+
- Malawi
130
- le Malawi
Malawi
+ le Malawi
1000
-
1000 Ha
+
+
MW
كواشا
Malawi
Population data from the UN Population Division and the data refers to the UN Revision 2008
MK
+
152
ملاوي
malawiano
@@ -33002,14 +32934,17 @@ modern society using the world of Star trek. Los Angeles Times, March
Malawi
ملاوي
+
Республика Малави
2009
+
Малави
Malawian
+ Malawi
Official data reported on FAO Questionnaires from countries
Malawi
2010
@@ -33019,6 +32954,7 @@ modern society using the world of Star trek. Los Angeles Times, March
Calculated
马拉维共和国
马拉维
+
la República de Malawi
Malawi
@@ -33026,11 +32962,12 @@ modern society using the world of Star trek. Los Angeles Times, March
克瓦查
MLW
- 11848.0
- 4532
جمهورية ملاوي
+ 4532
+ 11848.0
2009
+
Official data reported on FAO Questionnaires from countries
Malawi
@@ -33041,14 +32978,17 @@ modern society using the world of Star trek. Los Angeles Times, March
MWI
1985
millions of US dollars
- 9999
+ 1000 Ha
la République du Malawi
Manual Estimation
- 1000 Ha
+ 9999
+
+
-17.12
+
5572.0
- malawien
kwacha malawiano
+ malawien
Repubblica del Malawi
@@ -33060,33 +33000,25 @@ modern society using the world of Star trek. Los Angeles Times, March
Estimated
2009
Malawi
- 2009
1000 Ha
+ 2009
Malawi
15263.0
ملاوي
malawiano
马拉维的
+
-
-
-
-
-
-
-
-
-
-
-
+
- European Union
Unión Europea
+ European Union
+
@@ -33096,16 +33028,18 @@ modern society using the world of Star trek. Los Angeles Times, March
European Union
+
Европейский cоюз
+
EU
- EU http://europa.eu/index_en.htm
+ EU http://europa.eu/index_en.htm
الاتحاد الأوروبى
@@ -33139,45 +33073,46 @@ modern society using the world of Star trek. Los Angeles Times, March
http://europa.eu/index_fr.htm
l'Union européenne
European Union
+
50484
-
-
-
-
- 5
- true
-
+ 5
+ true
+
product
-
+
+
+
+
+
+
nameOfficialAR
FAO terminology
+ http://www.fao.org/termportal/contr/fr/
+ http://www.fao.org/termportal/contr/es/
+ http://www.fao.org/termportal/contr/ar/
- FAO terminology http://www.fao.org/termportal/en/
-
-
+ FAO terminology http://www.fao.org/termportal/en/
+
+
+ http://www.fao.org/termportal/en/
http://www.fao.org/termportal/contr/en/
2010-06-24
- http://www.fao.org/termportal/contr/fr/
- http://www.fao.org/termportal/contr/es/
- http://www.fao.org/termportal/contr/ar/
- http://www.fao.org/termportal/en/
http://www.fao.org/termportal/contr/zh/
- Ethiopia
-
+ 47.98
1000 Ha
2009
Ethiopian
@@ -33192,22 +33127,25 @@ modern society using the world of Star trek. Los Angeles Times, March
231
быр
+
比 尔
+
28526.0
2009
1000
+
Ethiopia
埃塞俄比亚
- Population data from the UN Population Division and the data refers to the UN Revision 2008
+ Population data from the UN Population Division and the data refers to the UN Revision 2008
2676
Manual Estimation
- éthiopien
2010
+ éthiopien
Repubblica federale democratica di Etiopia
Etiopia
@@ -33230,6 +33168,7 @@ modern society using the world of Star trek. Los Angeles Times, March
إثيوبيا
79
埃塞俄比亚联邦民主共和国
+
Ethiopia
@@ -33238,12 +33177,18 @@ modern society using the world of Star trek. Los Angeles Times, March
Ethiopia
Etiopía
+
+
Éthiopie
+
0.328
Etiopía
15408
+ Ethiopia
Manual Estimation
+
+
إثيوبي
ET
Эфиопия
@@ -33252,78 +33197,73 @@ modern society using the world of Star trek. Los Angeles Times, March
etíope
34985.0
Эфиопия
- la República Democrática Federal de Etiopía
Manual Estimation
+ la República Democrática Federal de Etiopía
1993
1000 Ha
l'Éthiopie
- 238
32.99
+ 238
la République fédérale démocratique d'Éthiopie
+
110430.0
etiope
2009
بر
+
埃塞俄比亚
+
birr
- 82825.0
Br
- 47.98
+ 82825.0
+
millions of US dollars
-
-
-
-
-
-
-
-
-
-
-
-
-
- true
+
+ true
isInGroup
-
+
+
+
+
+
+
-
- A protocol is a plan specification which has sufficient level of detail and quantitative information to communicate it between domain experts, so that different domain experts will reliably be able to independently reproduce the process.
+
+ A protocol is a plan specification which has sufficient level of detail and quantitative information to communicate it between domain experts, so that different domain experts will reliably be able to independently reproduce the process.
Protocol
- 15
+ 15
- A plan specification that allows different domain experts to reliably and independently reproduce a process.
- -1
-
+ A plan specification that allows different domain experts to reliably and independently reproduce a process.
+ -1
+
-
+
- Pakistan
巴基斯坦
165
2009
+ 1000 Ha
Pakistan
rupia
- 1000 Ha
le Pakistan
巴基斯坦的
@@ -33332,24 +33272,29 @@ modern society using the world of Star trek. Los Angeles Times, March
Pakistan
pakistanais
- باكستان
+
+ 1985
+
2009
+ باكستان
+ rupia pakistana
Calculated
Population data from the UN Population Division and the data refers to the UN Revision 2008
- rupia pakistana
+
+
161990.0
- 1985
180808.0
-
+
5504
of Pakistan
Исламская Республика Пакистан
- 0.49
el Pakistán
+ 0.49
PRs
+
Repubblica islamica del Pakistan
Manual Estimation
1000 Ha
@@ -33359,39 +33304,44 @@ modern society using the world of Star trek. Los Angeles Times, March
37.09
Manual Estimation
باكستاني
+
+ Pakistan
+
23.69
PAK
- pakistano
-
- pakistaní
+
+ pakistano
26280.0
+
+ pakistaní
- 1000
جمهورية باكستان الإسلامية
+ 1000
60.88
2009
la República Islámica del Pakistán
roupie
-
586
+
77088.0
Пакистан
la République islamique du Pakistan
rupee
Estimated
+
2010
Pakistán
Пакистан
- пакистанский
+ 15466
Data reported on country official publications or web sites (Official) or trade country files.
the Islamic Republic of Pakistan
- 15466
+ пакистанский
卢 比
77.84
@@ -33404,37 +33354,28 @@ modern society using the world of Star trek. Los Angeles Times, March
2009
9999
+
millions of US dollars
+
рупия
Pakistan
- PK
巴基斯坦伊斯兰共和国
PAK
-
-
-
-
-
-
-
-
-
-
-
+ PK
- true
- desc
-
- 15
- 20
+ true
+ desc
+
+ 15
+ 20
awards and honors
-
- awards and distinctions
- This relates a person to an award or honor that they received.
- edu.cornell.mannlib.vitro.webapp.edit.n3editing.configuration.generators.PersonHasAwardOrHonorGenerator
-
- true
+
+ awards and distinctions
+ This relates a person to an award or honor that they received.
+ edu.cornell.mannlib.vitro.webapp.edit.n3editing.configuration.generators.PersonHasAwardOrHonorGenerator
+
+ true
@@ -33443,78 +33384,78 @@ modern society using the world of Star trek. Los Angeles Times, March
-
+
- ClinicalTrials.gov registry number
+ ClinicalTrials.gov registry number
- ClinicalTrials.gov is an ICMJE-acceptable public registry, offering up-to-date information for locating clinical trials for a wide range of diseases and conditions. The U.S. National Institutes of Health (NIH), through its National Library of Medicine (NLM), developed this site in collaboration with the Food and Drug Administration (FDA), as a result of the FDA Modernization Act, which was passed into law in November 1997. This property should be publically visible since it is one of the principal identifiers in a national registry of clinical trials
-
+ ClinicalTrials.gov is an ICMJE-acceptable public registry, offering up-to-date information for locating clinical trials for a wide range of diseases and conditions. The U.S. National Institutes of Health (NIH), through its National Library of Medicine (NLM), developed this site in collaboration with the Food and Drug Administration (FDA), as a result of the FDA Modernization Act, which was passed into law in November 1997. This property should be publically visible since it is one of the principal identifiers in a national registry of clinical trials
+
- NCT00000419
+ NCT00000419
National Clinical Trials (NCT) number
- 4
- 1
-
+ 4
+ 1
+
-
-
+
+
organization
- -1
+ -1
- -1
+ -1
- edu.cornell.mannlib.vitro.webapp.edit.n3editing.configuration.generators.AddEditorRoleToPersonGenerator
+ edu.cornell.mannlib.vitro.webapp.edit.n3editing.configuration.generators.AddEditorRoleToPersonGenerator
- 2
-
+ 2
+
-
- 5
-
+
+ 5
+
- true
- true
- use this property to record editorial management or oversight responsibilities for a collection or a series such as a journal.
+ true
+ true
+ use this property to record editorial management or oversight responsibilities for a collection or a series such as a journal.
collection or series editor for
-
- 32
+
+ 32
http://purl.org/ontology/bibo/
- A title placed before a person's name.
- stable
-
+ A title placed before a person's name.
+ stable
+
- 1
-
+ 1
+
The prefix of a name
name prefix
- Mr; Ms; Mrs
+ Mr; Ms; Mrs
- http://dictionary.reference.com/browse/prefix
+ http://dictionary.reference.com/browse/prefix
Dublin Core elements
- dcelem
+ dcelem
- Canada
+
加拿大
1000 Ha
Data reported on country official publications or web sites (Official) or trade country files.
@@ -33522,12 +33463,15 @@ modern society using the world of Star trek. Los Angeles Times, March
كندا
canadiense
+
Data reported on country official publications or web sites (Official) or trade country files.
Canada
Canada
33
كندى
+
+
Канада
Manual Estimation
1985
@@ -33545,6 +33489,8 @@ modern society using the world of Star trek. Los Angeles Times, March
Канада
millions of US dollars
+ Canada
+
Canada
le Canada
1236
@@ -33554,19 +33500,22 @@ modern society using the world of Star trek. Los Angeles Times, March
el Canadá
canadien
- 加拿大的 / 加拿大人
1000 Ha
+ 加拿大的 / 加拿大人
dollar
Canada
Population data from the UN Population Division and the data refers to the UN Revision 2008
+
2009
Canadá
67600.0
124
- 33573.0
+
+
canadese
- 9999
+ 33573.0
доллар
+ 9999
Канада
2009
998467.0
@@ -33577,8 +33526,10 @@ modern society using the world of Star trek. Los Angeles Times, March
el Canadá
909351.0
Canada
+
dólar
加拿大
+
Canada
15385
元
@@ -33592,52 +33543,36 @@ modern society using the world of Star trek. Los Angeles Times, March
46
2010
le Canada
+
Can$
دولار
канадский
-52.62
-
-
-
-
-
-
-
-
-
-
-
-
- FAO terminology http://www.fao.org/termportal/en/
- http://www.fao.org/termportal/contr/en/
-
-
- FAO terminology
-
- nameShortAR
- 2010-06-24
-
-
http://www.fao.org/termportal/contr/es/
+
+ FAO terminology http://www.fao.org/termportal/en/
http://www.fao.org/termportal/contr/ar/
+ http://www.fao.org/termportal/contr/en/
http://www.fao.org/termportal/en/
http://www.fao.org/termportal/contr/zh/
http://www.fao.org/termportal/contr/fr/
-
-
-
- 1
-
+
+ FAO terminology
+
+
+ nameShortAR
+ 2010-06-24
+
+
- least developed countries
- البلدان الأقل نموا
paesi meno avanzati
+ البلدان الأقل نموا
@@ -33654,6 +33589,7 @@ modern society using the world of Star trek. Los Angeles Times, March
+
países menos adelantados
@@ -33665,8 +33601,9 @@ modern society using the world of Star trek. Los Angeles Times, March
наименее развитые страны
países menos adelantados
- WTO http://www.wto.org/english/thewto_e/whatis_e/tif_e/org7_e.htm
+ WTO http://www.wto.org/english/thewto_e/whatis_e/tif_e/org7_e.htm
+
البلدان الأقل نموا
@@ -33677,8 +33614,10 @@ modern society using the world of Star trek. Los Angeles Times, March
2010
+
+ least developed countries
países menos adelantados
HPC
http://www.wto.org/french/thewto_f/whatis_f/tif_f/org7_f.htm
@@ -33688,6 +33627,7 @@ modern society using the world of Star trek. Los Angeles Times, March
least developed countries
+
least developed countries
@@ -33707,103 +33647,100 @@ modern society using the world of Star trek. Los Angeles Times, March
http://www.wto.org/english/thewto_e/whatis_e/tif_e/org7_e.htm
2943
- LDCs
+ LDCs
+
-
-
-
-
-
- Published document
published
+ Published document
+
-
-
- 20
- RearcherID is a Thomson Reuters project where researchers have a place to manage and share their professional information. It will allow them to solve author identity issues while simultaneously adding dynamic citation metrics and collaboration networks to your personal profile.
-Definition source: http://isiwebofknowledge.com/researcherid/
-
+
+ 20
+ RearcherID is a Thomson Reuters project where researchers have a place to manage and share their professional information. It will allow them to solve author identity issues while simultaneously adding dynamic citation metrics and collaboration networks to your personal profile.
+Definition source: http://isiwebofknowledge.com/researcherid/
+
- The identification number given to the profile created by a researcher in ResearcherID (http://isiwebofknowledge.com/researcherid/).
+ The identification number given to the profile created by a researcher in ResearcherID (http://isiwebofknowledge.com/researcherid/).
ISI researcher id
-
- 2
+
+ 2
+
+
+
+
+ -1
+
+ -1
+
+
+ A person not considered a faculty member but holding an academic appointment.
+ Non-Faculty Academic
+
+
+
http://purl.org/ontology/bibo/
-
-
+
+
- -1
+ -1
A passage selected from a larger work.
- A passage selected from a larger work
- stable
+ A passage selected from a larger work
+ stable
Excerpt
- Short Definition from the bibo ontology
- -1
+ Short Definition from the bibo ontology
+ -1
-
-
-
- -1
-
- -1
-
-
- A person not considered a faculty member but holding an academic appointment.
- Non-Faculty Academic
-
-
-
-
-
- true
- Critical or explanatory note for a Document.
+
+ true
+ Critical or explanatory note for a Document.
annotates
Critical or explanatory note for a Document.
- The public description source is: http://bibotools.googlecode.com/svn/bibo-ontology/trunk/doc/index.html.
- stable
-
+ The public description source is: http://bibotools.googlecode.com/svn/bibo-ontology/trunk/doc/index.html.
+ stable
+
- annotates
+ annotates
http://purl.org/ontology/bibo/
- true
+ true
-
+
- Argentina
Argentina
ARG
+
Argentina
argentino
阿根廷
Argentine
1985
- 307155.0
+ 307155.0
+
比 索
1000 Ha
@@ -33811,31 +33748,36 @@ Definition source: http://isiwebofknowledge.com/researcherid/the Argentine Republic
Population data from the UN Population Division and the data refers to the UN Revision 2008
peso
+
аргентинский
+
Argentina
1000 Ha
-55.05
9999
9
- argentin
peso argentino
+ argentin
+
2010
Аргентинская Республика
Аргентина
- 032
- 40276.0
la Argentina
+ 40276.0
+ 032
Argentine
Calculated
peso
-
+
+ Argentina
273669.0
millions of US dollars
Manual Estimation
Argentina
2009
+
Repubblica argentina
阿根廷
جمهورية الأرجنتين
@@ -33847,8 +33789,9 @@ Definition source: http://isiwebofknowledge.com/researcherid/-21.78
1000 Ha
- 12
ARG
+
+ 12
2009
@@ -33861,11 +33804,14 @@ Definition source: http://isiwebofknowledge.com/researcherid/603
阿根廷的 / 阿根廷人
+
15366
الأرجنتين
+ 140500.0
песо
Argentina
- 140500.0
+
+
1000
阿根廷共和国
argentino
@@ -33873,6 +33819,7 @@ Definition source: http://isiwebofknowledge.com/researcherid/la República Argentina
peso
-53.59
+
AR
الأرجنتين
Аргентина
@@ -33882,47 +33829,42 @@ Definition source: http://isiwebofknowledge.com/researcherid/Estimated
-
-
-
-
-
-
-
-
-
-
-
Iowa
-
-
-
-
-
+
+
-
+
+
+
+
+
+
+
+
+
+
http://purl.org/ontology/bibo/
- A legal decision that reverses a ruling. This relates the legal decision to the legal decision that reversed it.
+ A legal decision that reverses a ruling. This relates the legal decision to the legal decision that reversed it.
A legal decision that reverses a ruling.
-
+
reversedBy
- true
- The first sentence of the public description was taken from here: http://bibotools.googlecode.com/svn/bibo-ontology/trunk/doc/index.html
+ true
+ The first sentence of the public description was taken from here: http://bibotools.googlecode.com/svn/bibo-ontology/trunk/doc/index.html
-
+
- true
+ true
-
- reversedBy
+
+ reversedBy
GDPNotes
@@ -33932,81 +33874,88 @@ Definition source: http://isiwebofknowledge.com/researcherid/
-
-
+
+
+ http://www.fao.org/termportal/contr/es/
+ http://www.fao.org/termportal/contr/fr/
http://www.fao.org/termportal/contr/en/
-
+ http://www.fao.org/termportal/contr/ar/
+
FAO terminology
+ http://www.fao.org/termportal/contr/zh/
- FAO terminology http://www.fao.org/termportal/en/
-
+ FAO terminology http://www.fao.org/termportal/en/
+
2010-06-24
nameOfficialES
- http://www.fao.org/termportal/contr/es/
- http://www.fao.org/termportal/contr/fr/
- http://www.fao.org/termportal/contr/ar/
- http://www.fao.org/termportal/contr/zh/
http://www.fao.org/termportal/en/
Colorado
-
-
-
-
-
+
+
-
+
+
+
+
+
-
+
-
+
-
- Definition from here: http://research.carleton.ca/htr/defs.php.
+
+ Definition from here: http://research.carleton.ca/htr/defs.php.
Faculty Member
- -1
- A person with at least one academic appointment to a specific faculty of a university or institution of higher learning.
- -1
+ -1
+ A person with at least one academic appointment to a specific faculty of a university or institution of higher learning.
+ -1
hide from display
- 100
+ 100
-
-
+
+
-
+
Institutional Review Board (IRB) number
- Institutional Review Board (IRB) number for a Clinical Trial
- Every clinical trial in the United States must be approved and monitored by an Institutional Review Board (IRB). An IRB is an independent committee of physicians, statisticians, community advocates and others whose objective is to ensure that a clinical trial is ethical and the rights of study participants are protected.
-
+ Institutional Review Board (IRB) number for a Clinical Trial
+ Every clinical trial in the United States must be approved and monitored by an Institutional Review Board (IRB). An IRB is an independent committee of physicians, statisticians, community advocates and others whose objective is to ensure that a clinical trial is ethical and the rights of study participants are protected.
+
-
+
+
+
+ http://library.cornell.edu
+ CUL Homepage
+
- Pacific Islands Forum
Foro de las Islas del Pacífico
+
Pacific Islands Forum
- PIF http://www.forumsec.org/
+
+ PIF http://www.forumsec.org/
Forum des Îles du Pacifique
@@ -34015,20 +33964,23 @@ Definition source: http://isiwebofknowledge.com/researcherid/56068
+
Pacific Islands Forum
+
PIF
Foro de las Islas del Pacífico
+ Pacific Islands Forum
PIF
2009
Форум островов Тихого океана
-
+
+
-
9999
منتدى جزر المحيط الهادي
@@ -34036,15 +33988,12 @@ Definition source: http://isiwebofknowledge.com/researcherid/http://www.forumsec.org/
-
-
-
-
- Saint Pierre and Miquelon
2009
+
欧元
+
Population data from the UN Population Division and the data refers to the UN Revision 2008
(из/ житель) Сан –Пьера и Минелона
Saint-Pierre-et-Miquelon
@@ -34055,6 +34004,7 @@ Definition source: http://isiwebofknowledge.com/researcherid/1000
Saint-Pierrais
Manual Estimation
+
圣皮埃尔和密克隆
24.0
di Saint-Pierre e Miquelon
@@ -34076,59 +34026,57 @@ Definition source: http://isiwebofknowledge.com/researcherid/圣皮埃尔和密克隆人/圣皮埃尔和密克隆的
Saint-Pierre-et-Miquelon
19032
+
3.0
Manual Estimation
euro
+ Saint Pierre and Miquelon
1985
Saint Pierre and Miquelon
2009
+
Saint Pierre and Miquelon
210
PM
Saint-Pierre y Miquelon
евро
Saint-Pierre e Miquelon
- of Saint Pierre and Miquelon
圣皮埃尔和密克隆
+ of Saint Pierre and Miquelon
+
SPM
+
Saint-Pierre e Miquelon
圣皮埃尔和密克隆
euro
190
6.0
1000 Ha
+
9999
Saint_Pierre_and_Miquelon
-
-
-
-
-
-
-
-
-
-
- 1
+ 1
VIVO
- true
- 0
+ true
+ 0
- 0
- 0
- enabling national networking of scientists
- 0
- 0
- <p>VIVO is an open source semantic web application originally developed and implemented at Cornell. When installed and populated with content at an institution, it enables the discovery of research and scholarship across disciplines at that institution. VIVO supports browsing and a search function which returns faceted results for rapid retrieval of desired information. Content in any local VIVO installation may be maintained manually or brought into the database in automated ways from local systems of record, such as HR, grants, course, and faculty activity databases.</p>
+ 0
+ 0
+ enabling national networking of scientists
+ 0
+
+
+ 0
+
+ <p>VIVO is an open source semantic web application originally developed and implemented at Cornell. When installed and populated with content at an institution, it enables the discovery of research and scholarship across disciplines at that institution. VIVO supports browsing and a search function which returns faceted results for rapid retrieval of desired information. Content in any local VIVO installation may be maintained manually or brought into the database in automated ways from local systems of record, such as HR, grants, course, and faculty activity databases.</p>
-<p>See more information on the <a href="http://vivoweb.org">VIVO Project</a>.</p>
- VIVO Project
- themes/wilma/
-
+<p>See more information on the <a href="http://vivoweb.org">VIVO Project</a>.</p>
+ VIVO Project
+ themes/wilma/
@@ -34139,165 +34087,170 @@ Definition source: http://isiwebofknowledge.com/researcherid/
-
+
Research Proposal
-
- -1
-
- -1
- A proposal for a research grant that has been submitted but not approved; does not represent an existing activity
+
+ -1
+
+ -1
+ A proposal for a research grant that has been submitted but not approved; does not represent an existing activity
- true
- stable
-
- director
+ true
+ stable
+
+ director
- true
+ true
http://purl.org/ontology/bibo/
- Definition take from this site: http://bibotools.googlecode.com/svn/bibo-ontology/trunk/doc/index.html .
+ Definition take from this site: http://bibotools.googlecode.com/svn/bibo-ontology/trunk/doc/index.html .
A Film director.
director
- This relates an entity to a Film director.
-
-
+ This relates an entity to a Film director.
+
+
-
- This relates an award or honor to the person who received the award or honor.
+
+ This relates an award or honor to the person who received the award or honor.
-
- award or distinction for
- true
+
+ award or distinction for
+ true
award or honor for
- 20
+ 20
- true
+ true
- 5
+ 5
-
-
-
-
-
-
+
-
-
- A course as taught in one time period (such as a semester; although note that a course could consist of only one meeting (teaching session)) by one or more instructors, normally but not always for credit. Does not represent either each meeting of the course or the course offering such as Biology 101 taught every semester from 1980 to 2010
-
- A course as taught in one time period by one or more instructors, normally but not always for credit. Does not represent either each meeting of the course or the course offering such as Biology 101 taught every semester from 1980 to 2010
-
-
+
+
+ A course as taught in one time period (such as a semester; although note that a course could consist of only one meeting (teaching session)) by one or more instructors, normally but not always for credit. Does not represent either each meeting of the course or the course offering such as Biology 101 taught every semester from 1980 to 2010
+
+
+
+ A course as taught in one time period by one or more instructors, normally but not always for credit. Does not represent either each meeting of the course or the course offering such as Biology 101 taught every semester from 1980 to 2010
+
+
Course
-
- -1
+ -1
+
-
- -1
-
+ -1
-
-
-
Chimp Lover for Life
+
+
+
+
-
-
- -1
- -1
+
+ -1
+ -1
- Contains articles of current events or general interest, geared to the reading public as being informative or recreational
+ Contains articles of current events or general interest, geared to the reading public as being informative or recreational
A periodical of magazine Articles. A magazine is a publication that is issued periodically, usually bound in a paper cover, and typically contains essays, stories, poems, etc., by many writers, and often photographs and drawings, frequently specializing in a particular subject or area, as hobbies, news, or sports.
- stable
- Abstracts and bibliographies are usually not included in magazines.
+ stable
+ Abstracts and bibliographies are usually not included in magazines.
- New Yorker
-
+ New Yorker
+
http://purl.org/ontology/bibo/
Magazine
- true
- -1
-
-
+
+ true
+
+ -1
+
Librarian Position
-
+
+
-
- A position held by library and information science professionals, or academic or technical experts, in support of providing information services or materials
- -1
- It is the common position in libraries.
-
+
+
+ A position held by library and information science professionals, or academic or technical experts, in support of providing information services or materials
+ -1
+
-
- Librarian; Library Systems Analyst; Music Bibliographer
+ It is the common position in libraries.
+
+ Librarian; Library Systems Analyst; Music Bibliographer
-
-
-
-
-
-
+
+
+
+
+
+ 1
+
+
+ http://www.fao.org/termportal/contr/zh/
FAO terminology
+ http://www.fao.org/termportal/en/
-
+
nameShortIT
- 2010-06-24
-
- FAO terminology http://www.fao.org/termportal/en/
- http://www.fao.org/termportal/contr/en/
-
- http://www.fao.org/termportal/contr/zh/
- http://www.fao.org/termportal/en/
http://www.fao.org/termportal/contr/ar/
+ 2010-06-24
+
+ FAO terminology http://www.fao.org/termportal/en/
+ http://www.fao.org/termportal/contr/en/
http://www.fao.org/termportal/contr/fr/
http://www.fao.org/termportal/contr/es/
+
+
+
+
+
+
-
+
-
-
+
+
has documentation
- true
+ true
- Estonia
евро
Calculated
- эстонский
+ Estonia
欧 元
+ эстонский
Population data from the UN Population Division and the data refers to the UN Revision 2008
Official data reported on FAO Questionnaires from countries
@@ -34307,11 +34260,13 @@ Definition source: http://isiwebofknowledge.com/researcherid/Estonia
78
63
+
euro
爱沙尼亚
+
Эстония
- 19084.0
estonien
+ 19084.0
Estonia
يورو
4523.0
@@ -34324,8 +34279,11 @@ Definition source: http://isiwebofknowledge.com/researcherid/1340.0
Estonie
57.51
+
+
15533
+
931.0
Official data reported on FAO Questionnaires from countries
@@ -34333,16 +34291,19 @@ Definition source: http://isiwebofknowledge.com/researcherid/EUR or €
2009
+
إستوني
1000 Ha
- euro
- euro
Official data reported on FAO Questionnaires from countries
-
1000 Ha
+ euro
+
+ euro
2009
- 2009
0.812
+ 2009
+
+
EST
Estonia
爱沙尼亚的
@@ -34354,7 +34315,9 @@ Definition source: http://isiwebofknowledge.com/researcherid/the Republic of Estonia
21.81
إستونيا
+
1991
+
EE
EST
estonio
@@ -34362,121 +34325,115 @@ Definition source: http://isiwebofknowledge.com/researcherid/estone
233
إستونيا
- la República de Estonia
28.21
+ la República de Estonia
millions of US dollars
2010
Estonia
爱沙尼亚共和国
+
2009
2009
Repubblica di Estonia
4239.0
- Estonian
Estonia
+ Estonian
Estonia
爱沙尼亚
10672
-
-
-
-
-
-
-
-
-
-
-
- An ongoing editorial responsibility for a bibo:Collection, such as a Journal or Series
+ An ongoing editorial responsibility for a bibo:Collection, such as a Journal or Series
Editor Role
- 2
-
+ 2
+
-
+
- An ongoing editorial responsibility for a bibo:Collection, such as a Journal or Series
- 2
-
-
-
-
-
+ An ongoing editorial responsibility for a bibo:Collection, such as a Journal or Series
+ 2
- Serbia and Montenegro
- 塞尔维亚和黑山
- Serbia_and_Montenegro
- Serbia and Montenegro
- 塞尔维亚和黑山
- SCG
- 2009
- Serbia y Montenegro
- 1000 Ha
- 2006
-
- 0.0
- 2009
- Serbia y Montenegro
- Serbia y Montenegro
- Serbie-Monténégro
- Serbia and Montenegro
- 0.0
- 0.0
-
- 1000 Ha
-
- 2003
- Serbie-Monténégro
- 891
- 塞尔维亚和黑山
- Serbie-Monténégro
- 37896
2009
+
+ Serbie-Monténégro
YUG
- 1000 Ha
- 219
-
+ SCG
+ Serbia_and_Montenegro
CS
+ 0.0
+ 2009
+
186
-
+
+
+
+ 0.0
+ Serbia and Montenegro
+ Serbia y Montenegro
+ Serbie-Monténégro
+ 2009
+ 2003
+
+ 0.0
+
+ Serbie-Monténégro
+ 1000 Ha
+
+ 1000 Ha
+
+ 2006
+ 1000 Ha
+ 219
+
+ Serbia and Montenegro
+ 塞尔维亚和黑山
+ 塞尔维亚和黑山
+ Serbia y Montenegro
+ 891
+ Serbia y Montenegro
+ Serbia and Montenegro
+ 37896
+ 塞尔维亚和黑山
-
-
-
-
-
+
+
+ 1
+
+
+
+
+
+
+
-
+
co-principal investigator on
- 50
+ 50
-
+
- true
+ true
- true
+ true
- 5
+ 5
- edu.cornell.mannlib.vitro.webapp.edit.n3editing.configuration.generators.AddGrantRoleToPersonGenerator
-
+ edu.cornell.mannlib.vitro.webapp.edit.n3editing.configuration.generators.AddGrantRoleToPersonGenerator
+
- Saint Vincent and the Grenadines
Saint Vincent and the Grenadines
@@ -34486,14 +34443,17 @@ Definition source: http://isiwebofknowledge.com/researcherid/圣文森特和格林纳丁斯
东加勒比元
Сент-Винсент и Гренадины
+
VC
+
Saint Vincent and the Grenadines
1000 Ha
2009
Сент-Винсент и Гренадины
Saint Vincent e Grenadine
+
191
Saint Vincent and the Grenadines
Сент-Винсент и Гренадины
@@ -34507,20 +34467,25 @@ Definition source: http://isiwebofknowledge.com/researcherid/Data reported on country official publications or web sites (Official) or trade country files.
Saint Vincent e Grenadine
39.0
- Saint-Vincent-et-les Grenadines
Data reported on country official publications or web sites (Official) or trade country files.
+ Saint-Vincent-et-les Grenadines
10.0
سانت فنسنت وجزر غرينادين
-61.12
-
1000 Ha
- Estimated
+
Saint Vincent e Grenadine
+ Estimated
2009
+
+
de San Vicente y las Granadinas
+ Saint Vincent and the Grenadines
di Saint Vincent e Grenadine
-61.47
+
+
2009
San Vicente y las Granadinas
dollaro dei Caraibi orientali
@@ -34529,8 +34494,8 @@ Definition source: http://isiwebofknowledge.com/researcherid/12.58
7352
San Vicente y las Granadinas
- 583.0
EC$
+ 583.0
dólar del Caribe oriental
9999
دولار شرق الكاريبي
@@ -34539,9 +34504,11 @@ Definition source: http://isiwebofknowledge.com/researcherid/
EC dollar (East Caribbean dollar)
سانت فنسنت وجزر غرينادين
- سانت فنسنت وجزر غرينادين
+
圣文森特和格林纳丁斯
+ سانت فنسنت وجزر غرينادين
670
+
восточнокарибский доллар
Manual Estimation
millions of US dollars
@@ -34551,94 +34518,89 @@ Definition source: http://isiwebofknowledge.com/researcherid/de Saint-Vincent-et-les Grenadines
Population data from the UN Population Division and the data refers to the UN Revision 2008
Saint_Vincent_and_the_Grenadines
-
VCT
+
211
109.0
圣文森特和格林纳丁斯
13.38
- dollar des Caraïbes orientales
- (из/житель) Сент-Винсента и Гренадин
-
-
-
-
-
-
-
-
-
-
+ dollar des Caraïbes orientales
+
+ (из/житель) Сент-Винсента и Гренадин
-
-
-
+
-
+
+
Group
-
+
-
- A group can also be an organization but need not be; typically used for looser associations of people or organizations acting together in some fashion, not necessarily through formal agreement or on a long-term basis. Added to the VIVO ontology to be able to support informal and perhaps even private groups of people around an idea, funding opportunity, or event.
+
+
+ A group can also be an organization but need not be; typically used for looser associations of people or organizations acting together in some fashion, not necessarily through formal agreement or on a long-term basis. Added to the VIVO ontology to be able to support informal and perhaps even private groups of people around an idea, funding opportunity, or event.
-see: http://xmlns.com/foaf/spec/#term_Group
- A collection of individual agents (and may itself play the role of a Agent, ie. something that can perform actions).
- -1
+see: http://xmlns.com/foaf/spec/#term_Group
+ A collection of individual agents (and may itself play the role of a Agent, ie. something that can perform actions).
+ -1
-
- -1
-
+
+
+ -1
- -1
-
+ -1
+
Chapter
- -1
-
-
+ -1
+
+
- A main division of a book
+ A main division of a book
A chapter of a book.
- unstable
+ unstable
http://purl.org/ontology/bibo/
- Myanmar
Calculated
Manual Estimation
-
K
+
جمهورية اتحاد ميانمار
2009
République de l'Union du Myanmar
كيات
1985
+
la República de la Unión de Myanmar
Repubblica dell'Unione di Myanmar
kyat
+
+ di Myanmar
1155
of Myanmar
- di Myanmar
ميانمار
MM
Population data from the UN Population Division and the data refers to the UN Revision 2008
Мьянма
- Myanmar
15456
- 2010
+ Myanmar
0.451
+ 2010
+ Myanmar
+
Мьянма
+
元
Manual Estimation
du Myanmar
@@ -34646,14 +34608,18 @@ see: http://xmlns.com/foaf/spec/#term_Group
киат
2008
de Myanmar
+
65352.0
Myanmar
MYA
+
12440.5
+
Estimated
Myanmar
+
мьянманский
Myanmar
缅甸联邦共和国
@@ -34680,170 +34646,161 @@ see: http://xmlns.com/foaf/spec/#term_Group
the Republic of the Union of Myanmar
-
rce/Myanmar
+
28.54
ميانمار
缅 甸
1000 Ha
- 2009
millions of US dollars
+ 2009
+
le Myanmar
Manual Estimation
+
1000 Ha
kyat
- 92.2
- 50020.0
- 2009
-
-
-
-
-
-
-
-
-
-
+ 92.2
+ 2009
+ 50020.0
- There could be many subclasses such as thesis committee or tenure committee, but these may typically be differentiated via the moniker unless distinct properties become important.
+ There could be many subclasses such as thesis committee or tenure committee, but these may typically be differentiated via the moniker unless distinct properties become important.
+
+
Committee
-
+
- A group of people organized for a specific purpose (e.g., a reporting or advisory role), often with a charge and for a specific duration.
+
+ A group of people organized for a specific purpose (e.g., a reporting or advisory role), often with a charge and for a specific duration.
-
- -1
+ -1
+
-
- -1
-
-
-
+
+ -1
+
-
- Curriculum Steering Committee; PhD Advisory Committee
-
+
+ Curriculum Steering Committee; PhD Advisory Committee
- a document that states some contractual relationship or grants some right
+ a document that states some contractual relationship or grants some right
http://purl.org/ontology/bibo/
-
+
Legal Document
- -1
+ -1
- -1
+ -1
-
+
A legal document; for example, a court decision, a brief, and so forth.
- stable
+ stable
supported by
- 5
- general relationship of support
+ 5
+ general relationship of support
-
-
+
1
+
-
- 50
+
+ 50
- 1
+ 1
-
-
- 47405-3907
- A code of letters and digits added to a postal address to aid in the sorting of mail.
+
+
+ 47405-3907
+ A code of letters and digits added to a postal address to aid in the sorting of mail.
postal code
Maryland
-
-
-
-
-
+
+
-
-
-
-
-
-
+
+
+
+
+
-
-
- true
- relation
+
+
+ true
+ relation
relation
- true
+ true
-
+
- This term is intended to be used with non-literal values as defined in the DCMI Abstract Model (http://dublincore.org/documents/abstract-model/). As of December 2007, the DCMI Usage Board is seeking a way to express this intention with a formal range declaration.
- A related resource. Recommended best practice is to identify the related resource by means of a string conforming to a formal identification system.
+ This term is intended to be used with non-literal values as defined in the DCMI Abstract Model (http://dublincore.org/documents/abstract-model/). As of December 2007, the DCMI Usage Board is seeking a way to express this intention with a formal range declaration.
+ A related resource. Recommended best practice is to identify the related resource by means of a string conforming to a formal identification system.
+
+ M.P.H. Master of Public Health
+ <p>Professional public health degree. (contrast with M.S.P.H.)</p>
+<p>See the Wikipedia entry at: http://en.wikipedia.org/wiki/Professional_degrees_of_public_health</p>
+ M.P.H.
+
+
+
+
Tennessee
-
-
-
-
-
+
+
-
-
-
-
- M.P.H.
- <p>Professional public health degree. (contrast with M.S.P.H.)</p>
-<p>See the Wikipedia entry at: http://en.wikipedia.org/wiki/Professional_degrees_of_public_health</p>
- M.P.H. Master of Public Health
+
+
-
+
+
-
-
-
Monkey Trainer of the Year
+
+
+
+
-
- Dominica
1985
DM
+
DMA
+
多米尼克
67.0
2009
+
75.0
东加勒比元
@@ -34856,18 +34813,19 @@ see: http://xmlns.com/foaf/spec/#term_Group
55
دومينيكا
-
le Commonwealth de la Dominique
+
1000 Ha
+
2363
24.5
la Dominique
- Manual Estimation
1000 Ha
+ Manual Estimation
多米尼克
Dominica
- Содружество Доминики
دومينيكي
+ Содружество Доминики
dollar des Caraïbes orientales
millions of US dollars
-61.25
@@ -34887,9 +34845,12 @@ see: http://xmlns.com/foaf/spec/#term_Group
-61.49
15.64
9999
+ Dominica
+
15402
Dominica
Data reported on country official publications or web sites (Official) or trade country files.
+
75.0
el Commonwealth de Dominica
多米尼克国
@@ -34898,10 +34859,14 @@ see: http://xmlns.com/foaf/spec/#term_Group
2009
2009
Dominique
+
+
доминикский
de Dominica
1000
+
+
Dominica
di Dominica
EC dollar (East Caribbean dollar)
@@ -34916,64 +34881,62 @@ see: http://xmlns.com/foaf/spec/#term_Group
多米尼克的 / 多米尼克人
71
+
Population data from the UN Population Division and the data refers to the UN Revision 2008
dollaro dei Caraibi orientali
-
-
-
-
-
-
-
-
-
-
-
- Solomon Islands
Solomon Islands
salomonais
Îles Salomon
SOI
delle Isole Salomone
+
Manual Estimation
Isole Salomone
+
Соломоновы Острова
جزر سليمان
+
2009
15486
+
Islas Salomón
所罗门群岛
Population data from the UN Population Division and the data refers to the UN Revision 2008
+
of the Solomon Islands
155.51
Solomon Islands
2010
+
1000
所罗门群岛
Solomon_Islands
+ سليماني
+ جزر سليمان
7230
Estimated
- جزر سليمان
- سليماني
Solomon Islands
dollaro delle Isole Salomone
+
2009
+
de las Islas Salomón
2890.0
(из/житель) Соломоновых Островов
元
dólar
+
+ Manual Estimation
las Islas Salomón
1000 Ha
- Manual Estimation
Isole Salomone
-12.29
@@ -34994,6 +34957,7 @@ see: http://xmlns.com/foaf/spec/#term_Group
Calculated
dollar
所罗门群岛的
+
SI$
9999
Соломоновы Острова
@@ -35001,10 +34965,12 @@ see: http://xmlns.com/foaf/spec/#term_Group
84.0
les Îles Salomon
- las Islas Salomón
+ Solomon Islands
1000 Ha
+ las Islas Salomón
2799.0
0.494
+
millions of US dollars
Manual Estimation
2009
@@ -35012,136 +34978,127 @@ see: http://xmlns.com/foaf/spec/#term_Group
所罗门群岛
جزر سليمان
2009
-
-
- SLB
-5.42
- 1000 Ha
+ SLB
+
+
090
+ 1000 Ha
225
657.0
-
-
-
-
-
-
-
-
-
-
-
- northern Europe
- 5402
- 北欧
- Северная Европа
- 北欧
- Europa septentrional
-
-
- Europa septentrional
- Europe septentrionale
- Северная Европа
- northern Europe
-
-
- 北欧
-
- 15230
- 9999
- أوروبا الشمالية
- 1991
-
+
+ Europe septentrionale
154
- northern Europe
- أوروبا الشمالية
-
- Северная Европа
-
- Europe septentrionale
-
+ أوروبا الشمالية
northern Europe
- Europa settentrionale
-
- Europe septentrionale
+
+ أوروبا الشمالية
+ 15230
Europa septentrional
+ Europa settentrionale
+ Северная Европа
+
+ 北欧
+
+ 北欧
+
+ Europa settentrionale
+ northern Europe
+
+
+
+
+ Северная Европа
+
+ northern Europe
+
+ 9999
+
+ Europa septentrional
+
+ Северная Европа
+
+
+ Europe septentrionale
+
+
+ 北欧
+ Europa settentrionale
+ 1991
+ northern Europe
أوروبا الشمالية
- Europa settentrionale
- Europa settentrionale
-
-
-
-
-
-
-
-
+ 5402
+
+ Europe septentrionale
+ Europa septentrional
- eastern Asia
- 东亚
- 29171
- 5302
- Asie orientale
- Asia orientale
- 东亚
- Asie orientale
-
-
- Asia oriental
- Восточная Азия
- آسيا الشرقية
- آسيا الشرقية
-
- eastern Asia
- Восточная Азия
- 东亚
-
- Asia oriental
- 1985
- 030
- eastern Asia
- 15203
- Asia orientale
-
- Asie orientale
- eastern Asia
- Asia oriental
- 9999
- آسيا الشرقية
- Asia orientale
-
- Восточная Азия
-
-
-
-
+ آسيا الشرقية
+ eastern Asia
+ Восточная Азия
+ eastern Asia
+ Asia oriental
+ 5302
+ 030
+ eastern Asia
+ Asia oriental
+ 东亚
+
+ Asia oriental
+
+
+ eastern Asia
+
+ Восточная Азия
+ 1985
+ Asia orientale
+ 东亚
+ 9999
+
+ آسيا الشرقية
+
+
+ 29171
-
+ 东亚
+ 15203
+ آسيا الشرقية
+ Asie orientale
+ Asie orientale
+
+ Asia orientale
+
+ Asia orientale
+
+
+ Asie orientale
+ Восточная Азия
- Uganda
шиллинг
la République de l'Ouganda
+
乌干达
24155.0
1000 Ha
-1.48
- Uganda
- ugandese
+
-
+ Uganda
+ ugandese
+
0.422
+
Uganda
9999
Уганда
@@ -35149,28 +35106,33 @@ see: http://xmlns.com/foaf/spec/#term_Group
Республика Уганда
Uganda
+
+
Uganda
U Sh
- 1000
- أوغندا
+ 1000
19981.0
+ أوغندا
scellino ugandese
угандийский
4.22
- UGA
Uganda
+ UGA
2009
l'Ouganda
35.04
-
- 32710.0
+
+
+ 32710.0
la República de Uganda
乌干达的
+
Repubblica dell'Uganda
+
253
UGA
@@ -35185,27 +35147,32 @@ see: http://xmlns.com/foaf/spec/#term_Group
13962.0
- 1000 Ha
+
先 令
+ 1000 Ha
+
2010
- Estimated
millions of US dollars
+ Estimated
29.57
乌干达共和国
1000 Ha
shilling
+
-
- 8038
2009
+ 8038
+
the Republic of Uganda
226
2009
+ Uganda
شلن
أوغندي
800
جمهورية أوغندا
+
ugandés
16043.0
Ouganda
@@ -35221,30 +35188,19 @@ see: http://xmlns.com/foaf/spec/#term_Group
أوغندا
2009
15502
-
-
-
-
-
-
-
-
-
-
-
-
- South Africa
- South African
sud-africain
+ South African
+
ZAF
兰 特
202
1000 Ha
- 2009
南 非
+ 2009
+ South Africa
Sudafrica
227
راند
@@ -35254,6 +35210,7 @@ see: http://xmlns.com/foaf/spec/#term_Group
1985
7252
38.0
+
South_Africa
0.597
50110.0
@@ -35267,6 +35224,7 @@ see: http://xmlns.com/foaf/spec/#term_Group
Repubblica del Sudafrica
99228.0
la République sud-africaine
+
2010
millions of US dollars
@@ -35276,17 +35234,20 @@ see: http://xmlns.com/foaf/spec/#term_Group
la República de Sudáfrica
15535
+
9999
جنوب أفريقيا
1000 Ha
- sudafricano
-
ранд
+
+ sudafricano
South Africa
南 非
+
Южно-Африканская Республика
2009
rand
+
Data reported on country official publications or web sites (Official) or trade country files.
710
Afrique du Sud
@@ -35294,13 +35255,17 @@ see: http://xmlns.com/foaf/spec/#term_Group
l'Afrique du Sud
Population data from the UN Population Division and the data refers to the UN Revision 2008
+
南非共和国
2009
+
+
Sudáfrica
- 285366.0
+ 285366.0
the Republic of South Africa
SAF
+
Sudáfrica
1000
@@ -35312,58 +35277,48 @@ see: http://xmlns.com/foaf/spec/#term_Group
1000 Ha
Manual Estimation
-54.47
- sudafricano
R
+ sudafricano
121447.0
+
Sudafrica
121909.0
جنوب أفريقي
Calculated
-
-
-
-
-
-
-
-
-
-
-
- -1
-
+ -1
+
+
+
-
-
+
+
+
+
Book Section
- Short Definition from the bibo ontology
+ Short Definition from the bibo ontology
+
- unstable
-
- -1
+
+ unstable
+ -1
-
-
-
- A section of a book
-
-
-
+ A section of a book
+
+
+
+
-
-
-
+
http://purl.org/ontology/bibo/
-
+
+
A section of a book.
-
-
-
+
@@ -35371,101 +35326,71 @@ see: http://xmlns.com/foaf/spec/#term_Group
-
- Name of department or school name used when describing educational background.
+
+ Name of department or school name used when describing educational background.
-
- Not intended to be an institution name.
+
+ Not intended to be an institution name.
department or school name within institution
-
- 40
- 3
+
+ 40
+ 3
- providesService
+ providesService
- 10
-
-
- true
+ 10
+
+
+ true
provides service
- 5
-
+ 5
+
- This relates something to the service it provides.
-
-
-
-
-
-
-
-
- 1
-
-
-
-
-
-
+ This relates something to the service it provides.
-
- unstable
+
+ unstable
- court
- true
+ court
+ true
http://purl.org/ontology/bibo/
-
+
- Public description take from: http://bibotools.googlecode.com/svn/bibo-ontology/trunk/doc/index.html. Bibo considers this property "unstable".
-
+ Public description take from: http://bibotools.googlecode.com/svn/bibo-ontology/trunk/doc/index.html. Bibo considers this property "unstable".
+
- Relates a legal document with an organization. Bibo definition is: "A court associated with a legal document; for example, that which issues a decision."
+ Relates a legal document with an organization. Bibo definition is: "A court associated with a legal document; for example, that which issues a decision."
A court associated with a legal document; for example, that which issues a decision.
- true
+ true
court
-
- M.S.P.H.
M.S.P.H. Master of Science in Public Health
- <p>Academic public health degree. (contrast with M.P.H.). The M.S.P.H. is more research-oriented than the M.P.H.</p>
-<p>See the Wikipedia entry at: http://en.wikipedia.org/wiki/Professional_degrees_of_public_health</p>
+ <p>Academic public health degree. (contrast with M.P.H.). The M.S.P.H. is more research-oriented than the M.P.H.</p>
+<p>See the Wikipedia entry at: http://en.wikipedia.org/wiki/Professional_degrees_of_public_health</p>
+ M.S.P.H.
+
-
-
-
-
-
- -1
- stable
- Interview
- A conversation between two or more people where questions are asked by the interviewer to obtain information from the interviewee.
-
- -1
- http://purl.org/ontology/bibo/
-
- A formalized discussion between two or more people.
-
- radio or newspaper interview
-
-
+
- Algeria
+
+ Algeria
dinar
Data reported on country official publications or web sites (Official) or trade country files.
+
0.677
238174.0
-8.67
@@ -35493,13 +35418,16 @@ see: http://xmlns.com/foaf/spec/#term_Group
DA
Algeria
1000 Ha
- 259
DZA
+ 259
Population data from the UN Population Division and the data refers to the UN Revision 2008
+
Algeria
+
Algeria
la República Argelina Democrática y Popular
+
l'Algérie
Argelia
@@ -35507,8 +35435,8 @@ see: http://xmlns.com/foaf/spec/#term_Group
Estimated
الجزائر
Repubblica algerina democratica e popolare
- the People's Democratic Republic of Algeria
阿尔及利亚
+ the People's Democratic Republic of Algeria
алжирский
140577.0
Algeria
@@ -35520,179 +35448,185 @@ see: http://xmlns.com/foaf/spec/#term_Group
2009
argelino
+ Алжир
1000
Algérie
- Алжир
012
+
21.56
18.96
الجزائر
4
1000 Ha
Алжирская Народная Демократическая Республика
+
34895.0
15363
1985
DZ
Calculated
+
جزائرى
Manual Estimation
+
دينار
la République algérienne démocratique et populaire
第纳尔
+
2010
+
algerino
- 2009
阿尔及利亚
+ 2009
238174.0
Алжир
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+ -1
+ stable
+ Interview
+ A conversation between two or more people where questions are asked by the interviewer to obtain information from the interviewee.
+
+ -1
+ http://purl.org/ontology/bibo/
+
+ A formalized discussion between two or more people.
+
+ radio or newspaper interview
+
+
- 40
-
+ 40
+
- 5
+ 5
- true
-
+ true
+
-
+
principal investigator role of
Museum
- -1
+ -1
- A building or place where works of art, scientific specimens, or other objects of permanent value are kept and displayed.
- The Getty Museum
-
-
+ A building or place where works of art, scientific specimens, or other objects of permanent value are kept and displayed.
+ The Getty Museum
+
+
- -1
- Definition was take from here: http://dictionary.reference.com/browse/museum
-
+ -1
+ Definition was take from here: http://dictionary.reference.com/browse/museum
+
- -1
-
+ -1
+
A document accompanying a legal case.
Legal Case Document
- Official court papers for a case
- -1
+ Official court papers for a case
+ -1
http://purl.org/ontology/bibo/
-
- unstable
+
+ unstable
- Indiana; Florida; Minnesota; Michigan; New York; Quebec; Manitoba; Ontario
-
- One of a number of areas or communities having their own governments and forming a federation under a sovereign government, as in the US.
- 1
+ Indiana; Florida; Minnesota; Michigan; New York; Quebec; Manitoba; Ontario
+
+ One of a number of areas or communities having their own governments and forming a federation under a sovereign government, as in the US.
+ 1
- 30
-
+ 30
+
state or province
-
+
-
-
- 1
-
-
-
-
-
-
-
- true
-
-
- 5
+ true
+
+
+ 5
offers
-
+
- 4
+ 4
+
+
+ true
+ 40
+ desc
+ true
+
+
+ edu.cornell.mannlib.vitro.webapp.edit.n3editing.configuration.generators.PersonHasPositionHistoryGenerator
+
+
+
+
+
+ This relates a person to their position information.
+
+ true
+ positions
+ 5
+ current positions
+
-
-
+
+
associated with position
-
+
- 5
- true
+ 5
+ true
-
- true
- 40
- desc
- true
-
-
- edu.cornell.mannlib.vitro.webapp.edit.n3editing.configuration.generators.PersonHasPositionHistoryGenerator
-
-
-
-
-
- This relates a person to their position information.
-
- true
- positions
- 5
- current positions
-
+
+
+
+
-
MLIS Master of Library and Information Science
+
-
+
- Bermuda
元
1000 Ha
delle Bermuda
@@ -35702,8 +35636,9 @@ see: http://xmlns.com/foaf/spec/#term_Group
من برمودا
Bermuda
Bermudan
- برمودا
+
Bermuda
+ برمودا
de Bermudas
برمودا
доллар
@@ -35711,6 +35646,7 @@ see: http://xmlns.com/foaf/spec/#term_Group
BER
dólar
19013
+ Bermuda
5.0
Bermudes
Data reported on country official publications or web sites (Official) or trade country files.
@@ -35730,12 +35666,14 @@ see: http://xmlns.com/foaf/spec/#term_Group
Bermuda
bermudien
BM
+
dollaro delle Bermuda
Data reported on country official publications or web sites (Official) or trade country files.
(из/ житель) Бермудских островов
17
Bermudas
dollar
+
1000 Ha
2009
@@ -35743,31 +35681,27 @@ see: http://xmlns.com/foaf/spec/#term_Group
INSERT
060
برمودا
+
百慕大
Bermuda
les Bermudes
Bermudas
百慕大的/百慕大人
+
+
+
9999
Bermuda
0.74
1000 Ha
+
dollar
Bermuda
دولار
2009
2009
-
-
-
-
-
-
-
-
- Sierra Leone
1000 Ha
Сьерра-Леоне
15485
@@ -35775,11 +35709,12 @@ see: http://xmlns.com/foaf/spec/#term_Group
Sierra Leonean
Республика Сьерра-Леоне
leone
- Сьерра-Леоне
塞拉利昂
+ Сьерра-Леоне
Manual Estimation
- Sierra Leone
+
سيراليون
+ Sierra Leone
леоне
@@ -35787,6 +35722,7 @@ see: http://xmlns.com/foaf/spec/#term_Group
جمهورية سيراليون
2009
+
2009
Sierra Leone
@@ -35801,25 +35737,29 @@ see: http://xmlns.com/foaf/spec/#term_Group
SL
利 昂
1000 Ha
+
3415.0
Repubblica di Sierra Leone
- Sierra Leone
694
+ Sierra Leone
塞拉利昂的
1000 Ha
- 塞拉利昂共和国
- 1985
9.99
+ 1985
+ 塞拉利昂共和国
+
the Republic of Sierra Leone
2009
2010
+ Sierra Leone
+
塞拉利昂
- сьерра-леонский
Calculated
+ сьерра-леонский
@@ -35827,15 +35767,19 @@ see: http://xmlns.com/foaf/spec/#term_Group
Population data from the UN Population Division and the data refers to the UN Revision 2008
la République de Sierra Leone
Sierra_Leone
+
+
-13.3
-
2009
+
SIL
sierraleonese
Sierra Leone
6.94
- sierra-léonien
+
+
Sierra Leona
+ sierra-léonien
Manual Estimation
la Sierra Leone
@@ -35843,11 +35787,13 @@ see: http://xmlns.com/foaf/spec/#term_Group
Sierra Leone
9999
+
la República de Sierra Leona
7174.0
197
+
2009
1942.0
ليون
@@ -35857,144 +35803,128 @@ see: http://xmlns.com/foaf/spec/#term_Group
سيراليون
SLE
7057
-
-
-
-
-
-
-
-
-
-
-
- A verbal or written remark concerning some entity. In written form, a comment is often appended to that entity and termed an annotation. Within computer programs or ontologies, comments are added to enhance human understanding, and are usually prefaced by
-
- 5
+ A verbal or written remark concerning some entity. In written form, a comment is often appended to that entity and termed an annotation. Within computer programs or ontologies, comments are added to enhance human understanding, and are usually prefaced by
+
+ 5
-
-
- 5
+
+
+ 5
Comment
- A verbal or written remark concerning some entity. In written form, a comment is often appended to that entity and termed an annotation. Within computer programs or ontologies, comments are added to enhance human understanding, and are usually prefaced by a special syntactic symbol that ensures they are ignored during execution of the program.
+ A verbal or written remark concerning some entity. In written form, a comment is often appended to that entity and termed an annotation. Within computer programs or ontologies, comments are added to enhance human understanding, and are usually prefaced by a special syntactic symbol that ensures they are ignored during execution of the program.
-has super-classes
+has super-classes
term label
- 1
+ 1
-
+
-
-
-
-
-
- 1
-
+
+
- 60
- true
+ 60
+ true
-
- This indicates when a term is related to another term in the same vocabulary.
+
+ This indicates when a term is related to another term in the same vocabulary.
- true
+ true
- related
-
+ related
+
- 5
+ 5
related
-
-
-
-
-
-
Dip.Ed. Diploma of Education
+
-
+
- 1
+ 1
Postdoc or Fellow Advising Relationship
- An advisory relationship in which the advisee is a Postdoc or Fellow.
-
- 1
+ An advisory relationship in which the advisee is a Postdoc or Fellow.
+
+ 1
-
+
+
+
+
+
+
governing authority for
- 8
+ 8
- 5
+ 5
+
+
+
+
+
reviewer role of
- 2
+ 2
- 5
+ 5
-
-
- 1
-
-
Research Resources (eagle-i)
- ero
+ ero
- true
-
- provides funding through
- Relates an organization to the organization through which it provides its funding.
- true
-
- For example, National Science Foundation providesFundingThrough Graduate Research Fellowship Program; National Institutes of Health providesFundingThrough National Center for Research Resources.
+ true
+
+ provides funding through
+ Relates an organization to the organization through which it provides its funding.
+ true
+
+ For example, National Science Foundation providesFundingThrough Graduate Research Fellowship Program; National Institutes of Health providesFundingThrough National Center for Research Resources.
provides funding through
-
- 5
+
+ 5
@@ -36002,53 +35932,59 @@ has super-classes
- Use subclasses of core:Geographic Location subclasses instead of this class if possible.
- -1
+ Use subclasses of core:Geographic Location subclasses instead of this class if possible.
+ -1
- Removed the word "stable" because disputed territories from geopolitical.owl are included. This could imply that the geographic coordinates could change. I've also copied this definition to core:Geographic Location. I think core:Geographic Location and core:Geographic Region are both the same and only one is needed. There is also geopolitical.owl:geographical_region which further causes confusion.
+ Removed the word "stable" because disputed territories from geopolitical.owl are included. This could imply that the geographic coordinates could change. I've also copied this definition to core:Geographic Location. I think core:Geographic Location and core:Geographic Region are both the same and only one is needed. There is also geopolitical.owl:geographical_region which further causes confusion.
- -1
-
-
+ -1
+
+
Geographic Location
-
+
- A location having coordinates in geographic space.
+ A location having coordinates in geographic space.
Washington
-
-
-
-
-
+
+
-
+
+
+
+
+
+
+
+ 1
+
+
-
+
end
- false
+ false
- 1
- 99
+ 1
+ 99
-
- true
+
+ true
-
M.Sc. Master of Science
+
-
+
- Colombia
+
1767
1000 Ha
Official data reported on FAO Questionnaires from countries
@@ -36057,6 +35993,7 @@ has super-classes
Colombia
Colombia
колумбийский
+
42540.0
Колумбия
-66.87
@@ -36065,8 +36002,9 @@ has super-classes
2009
- COL
Республика Колумбия
+ COL
+
Colombia
57
114175.0
@@ -36079,29 +36017,35 @@ has super-classes
234045.0
9999
colombiano
+
جمهورية كولومبيا
Colombia
哥伦比亚的 / 哥伦比亚人
كولومبيا
-4.23
+
-81.73
+
2009
+
Colombia
Colombia
Repubblica di Colombia
Colombie
+
millions of US dollars
كولومبي
0.689
- colombiano
1000 Ha
+ colombiano
15391
+
Official data reported on FAO Questionnaires from countries
2009
the Republic of Colombia
@@ -36113,9 +36057,10 @@ has super-classes
110950.0
peso
- Colombia
13.39
+ Colombia
песо
+
2010
la République de Colombie
@@ -36131,50 +36076,46 @@ has super-classes
Population data from the UN Population Division and the data refers to the UN Revision 2008
COL
45660.0
+
+ Colombia
2009
2009
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+ An idea or notion; a unit of thought.
+
+ -1
+
+ Concept
+ 35
- Used for a single narrative summary of research, typically covering a wide range of activities and time periods; use Researcher Role for information on individual activities
- 10
+ Used for a single narrative summary of research, typically covering a wide range of activities and time periods; use Researcher Role for information on individual activities
+ 10
-
-
+
+
- 1
-
+ 1
+
research overview
-
-
-
-
-
- An idea or notion; a unit of thought.
-
- -1
-
- Concept
- 35
-
- Arab Maghreb Union
+
اتحاد المغرب العربى
@@ -36187,87 +36128,74 @@ has super-classes
Arab Maghreb Union
Unión del Magreb Árabe
Arab Maghreb Union
- UMA http://www.maghrebarabe.org/en/index.cfm
+
+ UMA http://www.maghrebarabe.org/en/index.cfm
+ Arab Maghreb Union
+
http://www.maghrebarabe.org/fr/
UMA
Союз Арабского Магриба
Union du Maghreb arabe
+
阿拉伯马格里布联盟
AMU
- 9999
+ 9999
UMA
49875
-
-
-
-
-
-
-
-
-
-
-
-
- 1
-
- unstable
- Relates a document to some transcribed original.
- transcriptOf
+ unstable
+ Relates a document to some transcribed original.
+ transcriptOf
transcript of
http://purl.org/ontology/bibo/
-
- true
- The bibo:transcriptOf public description was found here: http://bibotools.googlecode.com/svn/bibo-ontology/trunk/doc/index.html . Bibo considers this term unstable.
-
+
+ true
+ The bibo:transcriptOf public description was found here: http://bibotools.googlecode.com/svn/bibo-ontology/trunk/doc/index.html . Bibo considers this term unstable.
+
Relates a document to some transcribed original.
- true
-
-
-
-
- 1
-
+ true
+
- unstable
-
- An entity responsible for issuing often informally published documents such as press releases, reports, etc. This term is classified as unstable by bibo.
+ unstable
+
+ An entity responsible for issuing often informally published documents such as press releases, reports, etc. This term is classified as unstable by bibo.
- true
-
+ true
+
- issuer
- true
+ issuer
+ true
An entity responsible for issuing often informally published documents such as press releases, reports, etc.
http://purl.org/ontology/bibo/
issuer
- An entity responsible for issuing often informally published documents such as press releases, reports, etc.
+ An entity responsible for issuing often informally published documents such as press releases, reports, etc.
-
+
- eastern Africa
东非
-
Восточная Африка
+
014
+
+ eastern Africa
15202
Africa orientale
+
Afrique orientale
Восточная Африка
@@ -36277,14 +36205,17 @@ has super-classes
África oriental
2442
+
Afrique orientale
1993
+
5101
África oriental
东非
أفريقيا الشرقية
eastern Africa
+
África oriental
@@ -36299,180 +36230,158 @@ has super-classes
eastern Africa
Восточная Африка
+
9999
+
+
Africa orientale
-
-
-
-
-
-
-
-
- The International Standard Book Number (ISBN) is a unique[1][2] numeric commercial book identifier based upon the 9-digit Standard Book Numbering (SBN) code created by Gordon Foster. The 10-digit ISBN format was developed by the International Organization for Standardization and was published in 1970 as international standard ISO 2108.
+ The International Standard Book Number (ISBN) is a unique[1][2] numeric commercial book identifier based upon the 9-digit Standard Book Numbering (SBN) code created by Gordon Foster. The 10-digit ISBN format was developed by the International Organization for Standardization and was published in 1970 as international standard ISO 2108.
International Standard Book Number (ISBN) 10
- 1
- http://en.wikipedia.org/wiki/Isbn.
+ 1
+ http://en.wikipedia.org/wiki/Isbn.
- 10
-
-
-
+ 10
+
+
+
+
+
+
+
+
-
+
Medical Residency
-
- 10
- Residency is a stage of graduate medical training.
- 10
+
+ 10
+ Residency is a stage of graduate medical training.
+ 10
+
+
+
+
+
+
- nameShortEN
-
-
- http://www.fao.org/termportal/contr/en/
- FAO terminology
- FAO terminology http://www.fao.org/termportal/en/
-
-
- 2010-06-24
http://www.fao.org/termportal/contr/fr/
+ nameShortEN
+
http://www.fao.org/termportal/contr/es/
http://www.fao.org/termportal/contr/ar/
+
+ http://www.fao.org/termportal/contr/en/
http://www.fao.org/termportal/contr/zh/
+ FAO terminology
http://www.fao.org/termportal/en/
+ FAO terminology http://www.fao.org/termportal/en/
+
+
+ 2010-06-24
-
ADN Associate Degree Nursing
+
-
-
-
-
-
-
-
-
-
- 1
-
+
- Southern Common Market
السوق المشتركة الجنوبية (فى أمريكا اللاتينية)
Southern Common Market
MERCOSUR
34780
Southern Common Market
- MERCOSUR http://www.mercosur.int/
-
- MERCOSUR
+ MERCOSUR http://www.mercosur.int/
Marché commun austral
- Marché commun austral
- 9999
- http://www.mercosur.int/show?contentid=10&channel=secretaria
-
+ MERCOSUR
+
+ 9999
+
+ http://www.mercosur.int/show?contentid=10&channel=secretaria
+ Marché commun austral
+
MERCOSUR
MERCOSUR
Южноамериканский общий рынок
+
Mercado Común del Sur
+ Southern Common Market
http://www.mercosur.int/
2010-08-29
+
1991
南方共同市场
49313
+
Mercado Común del Sur
-
-
-
-
-
-
-
- 1
-
Bibontology
http://purl.org/ontology/bibo/
- bibo
+ bibo
http://purl.org/ontology/bibo/1.2/
bibo
-
-
-
+
Chimp Lover for Life
+
+
-
Psy.D. Doctor of Psychology
-
- Psy.D.
+ Psy.D.
+
-
-
-
-
-
-
- 5
- role in
-
-
- true
-
-
- true
+
- Zambia
Zambia
ZMB
22.0
kwacha
2009
- 894
كواشا
+ 894
15514
Manual Estimation
270
+ Zambia
+
2009
2009
zambiano
- замбийский
квача
+ замбийский
Zambia
Республика Замбия
@@ -36485,14 +36394,15 @@ has super-classes
Zambia
9999
- 赞比亚的
+ زامبي
la République de Zambie
- زامبي
+ 赞比亚的
la Zambie
1000 Ha
-18.08
Zambia
+
1985
zambien
12805.0
@@ -36503,34 +36413,43 @@ has super-classes
ZM
2010
+
+
赞比亚
Zambia
K
+
8501
74339.0
33.7
赞比亚共和国
زامبيا
+
Zambia
23385.0
+
75261.0
Zambia
+
+
zambiano
0.395
Zambian
Замбия
-
millions of US dollars
+
-8.22
2009
- 251
+
1000 Ha
+ 251
la República de Zambia
+
ZAM
@@ -36544,25 +36463,13 @@ has super-classes
12935.0
- Data reported on country official publications or web sites (Official) or trade country files.
+ Data reported on country official publications or web sites (Official) or trade country files.
Zambie
Manual Estimation
赞比亚
-
-
-
-
-
-
-
-
-
-
-
- Barbados
1000 Ha
Barbados
巴巴多斯
@@ -36572,15 +36479,18 @@ has super-classes
Барбадос
دولار بربادوسى
BB
- بربادوس
2009
+ بربادوس
+
Барбадос
+
9999
0.788
15372
2009
13.34
+
1985
Population data from the UN Population Division and the data refers to the UN Revision 2008
@@ -36595,16 +36505,20 @@ has super-classes
2009
BAR
1000 Ha
+
19.0
-
+
Data reported on country official publications or web sites (Official) or trade country files.
dólar
+
3595.0
Barbados
la Barbade
-59.65
+
+
巴巴多斯
1000
@@ -36619,6 +36533,8 @@ has super-classes
Data reported on country official publications or web sites (Official) or trade country files.
Barbadian
Barbados
+
+
Barbados
2009
Barbados
@@ -36630,261 +36546,260 @@ has super-classes
Барбадос
巴巴多斯的 / 巴巴多斯人
Estimated
+
Barbados
dollar
元
24
Barbade
- barbadense
1000 Ha
+
+ barbadense
256.0
барбадосский
13.05
Barbados
14
доллар
+ Barbados
2009
43.0
-59.42
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+ jane@gmail.com
+
-
-
-
- 5
-
-
- author as listed
- true
-
-
+
+
- 90
+
+ 5
+ role in
+
+
+ true
+
+ true
- 40
+ 40
prerequisite for
-
- true
- 5
- prerequisite for
+
+ true
+ 5
+ prerequisite for
-
+
-
+
+
+
+
+ 5
+
+
+ author as listed
+ true
+
+
+
+ 90
+
+
- 1
+ 1
International Standard Book Number (ISBN) 13
-
+
-
- The International Standard Book Number (ISBN) is a unique[1][2] numeric commercial book identifier based upon the 9-digit Standard Book Numbering (SBN) code created by Gordon Foster.Since 1 January 2007, ISBNs have contained 13 digits, a format that is compatible with Bookland EAN-13s.
+
+ The International Standard Book Number (ISBN) is a unique[1][2] numeric commercial book identifier based upon the 9-digit Standard Book Numbering (SBN) code created by Gordon Foster.Since 1 January 2007, ISBNs have contained 13 digits, a format that is compatible with Bookland EAN-13s.
- source: http://en.wikipedia.org/wiki/Isbn.
-
+ source: http://en.wikipedia.org/wiki/Isbn.
+
- 11
+ 11
-
- 1
+
+ 1
- 5
+ 5
Published US Classification Class/Subclass (CCL) code
- The original and cross-reference US Classification(s) to which the published application was assigned at the time of publication -- includes both primary and secondary class information.
+ The original and cross-reference US Classification(s) to which the published application was assigned at the time of publication -- includes both primary and secondary class information.
-
-
+
+
-
+
- -1
-
+ -1
+
- -1
+ -1
Invited Talk
-
+
- 30
- Definition from: http://bibotools.googlecode.com/svn/bibo-ontology/trunk/doc/index.html
- Universal Resource Identifier of a document.
+ 30
+ Definition from: http://bibotools.googlecode.com/svn/bibo-ontology/trunk/doc/index.html
+ Universal Resource Identifier of a document.
-
+
URI
- 1
+ 1
-
-
+
+
- A bounded physical representation of a body of information designed with the capacity (and usually intent) to communicate
+ A bounded physical representation of a body of information designed with the capacity (and usually intent) to communicate
Document
-
- -1
-
-
+ -1
+
+
+
+
-
-
- Short Definition from the bibo ontology
-
-
-
-
- -1
-
- stable
-
-
-
+
+ Short Definition from the bibo ontology
+
+
+ -1
+
+ stable
+
+
+
-
+
+
http://purl.org/ontology/bibo/
-
-
-
-
-
+
+
+
+
+
+
+
A document (noun) is a bounded physical representation of body of information designed with the capacity (and usually intent) to communicate. A document may manifest symbolic, diagrammatic or sensory-representational information.
-
+
+
+
+
-
-
+
+
-
-
-
-
-
+
- Council of Arab Economic Unity
46917
Consejo de la Unidad Económica Árabe
Conseil de l'Unité économique arabe
- Wikipedia http://en.wikipedia.org/wiki/Council_of_Arab_Economic_Unity
+ Wikipedia http://en.wikipedia.org/wiki/Council_of_Arab_Economic_Unity
Совет экономического единства арабских стран
CUEA
- CUEA
مجلس الوحدة الاقتصادية العربية
+ CUEA
+
- Consejo de la Unidad Económica Árabe
+ Council of Arab Economic Unity
+ Consejo de la Unidad Económica Árabe
- 9999
+
Council of Arab Economic Unity
+ 9999
1985
Wikipedia
+
阿拉伯经济统一理事会
Conseil de l'Unité économique arabe
2010-08-16
+
CAEU
Council of Arab Economic Unity
http://en.wikipedia.org/wiki/Council_of_Arab_Economic_Unity
-
-
-
-
-
-
-
- 1
-
- southern Asia
- Asia meridional
-
-
-
- Asia meridional
- آسيا الجنوبية
- آسيا الجنوبية
- Asia meridional
- Южная Азия
- 南亚
- Asia meridionale
- 15244
- 南亚
- 5303
-
-
- Южная Азия
-
- southern Asia
- Asia meridionale
- Asie méridionale; Asie du Sud
- Asie méridionale; Asie du Sud
- southern Asia
- Asia meridionale
- آسيا الجنوبية
- southern Asia
- 南亚
+
+
9999
-
- Южная Азия
-
- 1985
- 29172
-
- Asie méridionale; Asie du Sud
- 034
-
-
-
-
-
+ Asia meridionale
+ آسيا الجنوبية
+ Южная Азия
+ southern Asia
+ southern Asia
+
+ Южная Азия
+
+ 1985
+
+ Asia meridional
+
+ Asia meridionale
+ آسيا الجنوبية
+ Южная Азия
+
+
+ Asie méridionale; Asie du Sud
+ آسيا الجنوبية
+ southern Asia
+
+
+ 29172
+
+ Asie méridionale; Asie du Sud
+ Asia meridional
+ Asia meridionale
+ 15244
+ 南亚
+ southern Asia
+ 南亚
+ Asie méridionale; Asie du Sud
+ Asia meridional
+
+ 034
+ 5303
+ 南亚
+
+
+
-
countryAreaTotal
@@ -36894,142 +36809,143 @@ has super-classes
-
-
+
+
Reference Source
- unstable
+ unstable
http://purl.org/ontology/bibo/
A document that presents authoritative reference information, such as a dictionary or encylopedia .
- -1
- A document that presents authoritative reference information, such as a dictionary or encylopedia
+ -1
+ A document that presents authoritative reference information, such as a dictionary or encylopedia
- Short Definition from the bibo ontology
-
-
- -1
+ Short Definition from the bibo ontology
+
+
+ -1
- true
-
-
+ true
+
+
funding provided via
- 5
+ 5
-
overview
- 10
+ 10
+
- 2010-01-12T07:11:40
+ 2010-01-12T07:11:40
FAO terminology
+ http://www.fao.org/termportal/contr/ar/
nationalityRU
http://www.fao.org/termportal/contr/en/
-
- FAO terminology http://www.fao.org/termportal/en/
+
+ FAO terminology http://www.fao.org/termportal/en/
+ http://www.fao.org/termportal/contr/es/
-
+ http://www.fao.org/termportal/contr/fr/
+
2010-06-24
- http://www.fao.org/termportal/contr/ar/
- http://www.fao.org/termportal/contr/es/
- http://www.fao.org/termportal/contr/fr/
http://www.fao.org/termportal/en/
http://www.fao.org/termportal/contr/zh/
-
An edited book.
-
+
- -1
-
-
+ -1
+
http://purl.org/ontology/bibo/
+
-
- Best American Science Writing 2009
+ An edited collection of stand-alone articles published as a book
+ Best American Science Writing 2009
+
+
- stable
- An edited collection of stand-alone articles published as a book
+ stable
+
+
+ -1
+
-
- -1
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
Edited Book
-
+
-
-
-
Nevada
-
-
-
-
-
+
+
-
+
+
+
+
+
+
+
+ 1
+
+
-
- Enter room number of name.
+
+ Enter room number of name.
- -1
+ -1
Room
-
-
- Room that provides a particular service or is used for a particular activity.
- 100 Caldwell Hall; 114 Martha Van Rensselaer (Rushmore Conference Room)
- -1
+
+
+ Room that provides a particular service or is used for a particular activity.
+ 100 Caldwell Hall; 114 Martha Van Rensselaer (Rushmore Conference Room)
+ -1
-
+
eRA Commons id
-
- 15
+
+ 15
-
-
-
-
- 1
-
+
@@ -37039,63 +36955,72 @@ has super-classes
- Philippines
-
PHL
+
91983.0
الفلبين
peso filippino
Filipinas
Calculated
Филиппины
+ Philippines
la République des Philippines
les Philippines
比 索
Philippines
+
2009
菲律宾
+
peso
Repubblica delle Filippine
608
Philippines
la República de Filipinas
+
2010
1000 Ha
29817.0
126.6
+
Philippines
Estimated
+
Manual Estimation
20.84
- 30000.0
- Filipinas
- 2009
جمهورية الفلبين
+ Filipinas
+ 30000.0
15471
- 2009
+ 2009
+
+ philippin
5783
Population data from the UN Population Division and the data refers to the UN Revision 2008
+ 2009
- philippin
filipino
- песо
Filippine
1000 Ha
+ песо
4.65
filippino
+
+
Филиппины
0.638
the Republic of the Philippines
菲律宾
PH
-
Республика Филиппины
2009
-
+
+
Data reported on country official publications or web sites (Official) or trade country files.
+
2009
1000
the Philippines
@@ -37106,6 +37031,7 @@ has super-classes
الفلبين
فلبيني
+
菲律宾的
Filippine
филиппинский
@@ -37120,196 +37046,216 @@ has super-classes
116.93
Data reported on country official publications or web sites (Official) or trade country files.
+
171
161196.0
-
-
-
-
+
+
+
+
+
+
+
+ LCSH
-
-
-
-
-
-
- D.C.
-
D.C. Doctor of Chiropractic
+ D.C.
+
-
+
+
+
+ 1
+
+
+
+
+ 1
+
+
+ http://www.fao.org/termportal/en/
FAO terminology
codeCurrency
+ http://www.fao.org/termportal/contr/ar/
+ http://www.fao.org/termportal/contr/es/
2010-06-24
http://www.fao.org/termportal/contr/en/
-
-
-
- FAO terminology http://www.fao.org/termportal/en/
-
- http://www.fao.org/termportal/en/
- http://www.fao.org/termportal/contr/ar/
- http://www.fao.org/termportal/contr/es/
http://www.fao.org/termportal/contr/fr/
+
+
+
+ FAO terminology http://www.fao.org/termportal/en/
+
http://www.fao.org/termportal/contr/zh/
- Yemen, Democratic
- 1990
- 1985
- Democratic_Yemen
- Democratic_Yemen
- 720
- 2175
-
-
-
-
-
+ Democratic_Yemen
+
+
-
+
-
-
+
+
+
+ 1985
+ 720
+ Yemen, Democratic
+ 2175
+
+
+ Democratic_Yemen
+ 1990
-
-
-
+
+
+
- true
+ true
-
+
investigator role of
- 5
- 60
+ 5
+ 60
-
+
-
+
-
-
- 1
-
-
-
- -1
+
+ -1
-
+
-
-
College
-
- -1
+ -1
- A primary academic unit within a University or a free-standing higher education organization without graduate degree programs.
-
-
+ A primary academic unit within a University or a free-standing higher education organization without graduate degree programs.
+
+
+
+ College of Arts & Sciences; Ivy Tech Community College
- College of Arts & Sciences; Ivy Tech Community College
-
+
+
+
- FAO terminology
-
- http://www.fao.org/termportal/contr/en/
- nameShortES
- FAO terminology http://www.fao.org/termportal/en/
-
- 2010-06-24
-
http://www.fao.org/termportal/contr/fr/
http://www.fao.org/termportal/en/
+ FAO terminology
+
+ http://www.fao.org/termportal/contr/en/
http://www.fao.org/termportal/contr/es/
+ nameShortES
+ FAO terminology http://www.fao.org/termportal/en/
+
http://www.fao.org/termportal/contr/zh/
+ 2010-06-24
http://www.fao.org/termportal/contr/ar/
-
-
-
- This term is intended to be used with non-literal values as defined in the DCMI Abstract Model (http://dublincore.org/documents/abstract-model/). As of December 2007, the DCMI Usage Board is seeking a way to express this intention with a formal range declaration.
- true
-
-
- Document1 isVersionOf Document2
-
- isVersionOf
- isVersionOf
-
- true
-
- A related resource of which the described resource is a version, edition, or adaptation. Changes in version imply substantive changes in content rather than differences in format.
+
South Carolina
-
-
-
-
-
+
+
-
+
+
+
+
+
-
-
-
+
+
+ This term is intended to be used with non-literal values as defined in the DCMI Abstract Model (http://dublincore.org/documents/abstract-model/). As of December 2007, the DCMI Usage Board is seeking a way to express this intention with a formal range declaration.
+ true
+
+
+ Document1 isVersionOf Document2
+
+ isVersionOf
+ isVersionOf
+
+ true
+
+ A related resource of which the described resource is a version, edition, or adaptation. Changes in version imply substantive changes in content rather than differences in format.
+
+
+
+
+
+
+
+ 1
+
+
+
+
+ 1
+
Ohio
-
-
-
-
-
+
+
-
+
+
+
+
+
+ http://data.albankaldawli.org/indicator/NY.GDP.MKTP.CD
GDP
- World Bank http://data.worldbank.org/indicator/NY.GDP.MKTP.CD
-
+
+ World Bank http://data.worldbank.org/indicator/NY.GDP.MKTP.CD
+ http://donnees.banquemondiale.org/indicateur/NY.GDP.MKTP.CD
- GDP at purchaser's prices is the sum of gross value added by all resident producers in the economy plus any product taxes and minus any subsidies not included in the value of the products. It is calculated without making deductions for depreciation of fabricated assets or for depletion and degradation of natural resources. Data are in current U.S. dollars. Dollar figures for GDP are converted from domestic currencies using single year official exchange rates. For a few countries where the official exchange rate does not reflect the rate effectively applied to actual foreign exchange transactions, an alternative conversion factor is used. Source: World Bank national accounts data, and OECD National Accounts data files. http://data.worldbank.org/indicator/NY.GDP.MKTP.CD
+ GDP at purchaser's prices is the sum of gross value added by all resident producers in the economy plus any product taxes and minus any subsidies not included in the value of the products. It is calculated without making deductions for depreciation of fabricated assets or for depletion and degradation of natural resources. Data are in current U.S. dollars. Dollar figures for GDP are converted from domestic currencies using single year official exchange rates. For a few countries where the official exchange rate does not reflect the rate effectively applied to actual foreign exchange transactions, an alternative conversion factor is used. Source: World Bank national accounts data, and OECD National Accounts data files. http://data.worldbank.org/indicator/NY.GDP.MKTP.CD
2010-12-16
World Bank
-
- http://data.worldbank.org/indicator/NY.GDP.MKTP.CD
-
- http://data.albankaldawli.org/indicator/NY.GDP.MKTP.CD
- http://donnees.banquemondiale.org/indicateur/NY.GDP.MKTP.CD
ttp://datos.bancomundial.org/indicador/NY.GDP.MKTP.CD
+
http://data.worldbank.org/indicator/NY.GDP.MKTP.CD
+ http://data.worldbank.org/indicator/NY.GDP.MKTP.CD
+
-
-
+
+ Assistant Professor
+
+
+
+
- Belize
+
Manual Estimation
Data reported on country official publications or web sites (Official) or trade country files.
Belizean
@@ -37321,9 +37267,11 @@ has super-classes
152.0
Belize
- 1000 Ha
1000 Ha
+ 1000 Ha
伯利兹的 / 伯利兹人
+
+
2297.0
dólar
23
@@ -37332,20 +37280,21 @@ has super-classes
871
Belice
bélizien
- Calculated
بليز
+ Calculated
belizeano
BZ$
- 2010
-
15.89
+
+ 2010
1354.0
+
307.0
元
Belice
9999
- Belize
dollar
+ Belize
белизский
伯利兹
0.694
@@ -37367,87 +37316,79 @@ has super-classes
Белиз
-89.22
بليزى
+ Belize
le Belize
BLZ
+
BZ
Belize
伯利兹
+
+
2009
Belize
+
+
1985
2009
+
dollar
Belize
2281.0
Belice
Population data from the UN Population Division and the data refers to the UN Revision 2008
- Belize
084
+ Belize
Belize
Manual Estimation
2009
le Belize
+
- -87.48
18.49
+ -87.48
1000 Ha
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 1
-
- FAO terminology http://www.fao.org/termportal/en/
- http://www.fao.org/termportal/contr/en/
-
-
-
- FAO terminology
-
- nationalityAR
-
- 2010-06-24
-
http://www.fao.org/termportal/contr/zh/
+ FAO terminology http://www.fao.org/termportal/en/
+ http://www.fao.org/termportal/contr/en/
+
+ FAO terminology
+
http://www.fao.org/termportal/contr/fr/
+
+
http://www.fao.org/termportal/contr/es/
+ nationalityAR
http://www.fao.org/termportal/en/
http://www.fao.org/termportal/contr/ar/
+
+ 2010-06-24
+
-
- -1
+
+ -1
Court Reporter
- stable
- Collection of legal cases
+ stable
+ Collection of legal cases
A collection of legal cases.
- -1
+ -1
-
+
- Supreme Court Reporter
+ Supreme Court Reporter
http://purl.org/ontology/bibo/
@@ -37457,14 +37398,14 @@ has super-classes
D.D.S. Doctor of Dental Surgery
-
- D.D.S.
+ D.D.S.
+
-
+
- Saint Kitts and Nevis
Saint Christopher e Nevis
+
52.0
545.0
Saint-Kitts-et-Nevis
@@ -37472,29 +37413,32 @@ has super-classes
(из/житель) Сент-Китса и Невиса
Saint Kitts and Nevis
- Federazione di Saint Cristopher e Nevis
1000 Ha
- dólar del Caribe oriental
+ Federazione di Saint Cristopher e Nevis
9999
+ dólar del Caribe oriental
圣基茨和尼维斯
圣基茨和尼维斯
- dollar des Caraïbes orientales
Saint_Kitts_and_Nevis
+ dollar des Caraïbes orientales
26.0
Official data reported on FAO Questionnaires from countries
Saint Kitts y Nevis
KN
Official data reported on FAO Questionnaires from countries
+
26.0
دولار شرق الكاريبى
- восточнокарибские доллары
+ Saint Kitts and Nevis
Saint Christopher e Nevis
+ восточнокарибские доллары
1000
Population data from the UN Population Division and the data refers to the UN Revision 2008
EC$
188
+
سانت كيتس ونيفيس
8808
@@ -37519,57 +37463,59 @@ has super-classes
Saint-Kitts-et-Nevis
1985
东加勒比元
+
659
سانت كيتس ونيفيس
- 2009
5.5
- 208
EC dollar (East Caribbean dollar)
+ 2009
+ 208
+
-62.54
圣基茨和尼维斯的
Official data reported on FAO Questionnaires from countries
+
+
+
Saint Kitts and Nevis
+
2009
dollaro dei Caraibi orientali
من سانت كيتس ونيفس
1000 Ha
+
圣基茨和尼维斯
- de Saint Kitts y Nevis
of Saint Kitts and Nevis
+ de Saint Kitts y Nevis
Saint Kitts and Nevis
2009
1000 Ha
2009
+
17.42
-62.87
Estimated
سانت كيتس ونيفيس
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
- A position designated as primary by the organization where it is held.
+ A position designated as primary by the organization where it is held.
Primary Position
- A position designated as primary by the organization or group where it is held. This designation may be applied to zero or more of an agent's positions and may be asserted in conjunction with other subclasses of position.
+ A position designated as primary by the organization or group where it is held. This designation may be applied to zero or more of an agent's positions and may be asserted in conjunction with other subclasses of position.
-
+
- 5
+ 5
-
- 5
+
+ 5
@@ -37577,28 +37523,27 @@ has super-classes
- Ethiopia_1993
- 1993
1985
- older_Ethiopia
- older_Ethiopia
-
-
- 230
-
-
-
-
-
-
+
+ 230
+ older_Ethiopia
+
+
+ Ethiopia_1993
+
-
-
+
+ 1993
+
+
+
+
+ older_Ethiopia
+
- Falkland Islands
les Îles Falkland (Malvinas)
Falkland_Islands_(Islas_Malvinas)
@@ -37612,11 +37557,12 @@ has super-classes
福克兰群岛(马尔维纳斯)
81
2009
- 福克兰群岛人(马尔维纳斯群岛人)/福克兰群岛的(马尔维纳斯群岛的
Фолклендские (Мальвинские) острова
- 2783
Data reported on country official publications or web sites (Official) or trade country files.
+ 福克兰群岛人(马尔维纳斯群岛人)/福克兰群岛的(马尔维纳斯群岛的
+ 2783
Population data from the UN Population Division and the data refers to the UN Revision 2008
+
1217.0
1000
Falkland Islands (Malvinas)
@@ -37626,17 +37572,23 @@ has super-classes
livre
des Îles Falkland (Malvinas)
de las Islas Malvinas (Falkland Islands)
+
+
Îles Falkland
+
+ 1217.0
of the Falkland Islands (Malvinas)
福克兰群岛
- 1217.0
pound
1000 Ha
Data reported on country official publications or web sites (Official) or trade country files.
1109.5
+
(من جزر فوكلاند (مالفيناس
- £
+
Falkland Islands
+ £
+ Falkland Islands
2009
2009
Islas Malvinas
@@ -37646,6 +37598,7 @@ has super-classes
2009
les Îles Falkland (Malvinas)
Isole Falkland
+
جزر فوكلاند (مالفيناس)
Data reported on country official publications or web sites (Official) or trade country files.
镑
@@ -37655,31 +37608,28 @@ has super-classes
FLK
1000 Ha
福克兰群岛(马尔维纳斯)
+
238
(из/ житель) Фолклендских (Мальвинских) островов
фунт
24504
جنيه
- 3.0
+ 3.0
Isole Falkland
-
-
-
-
-
-
-
-
- Central American Council of Agriculture
Conseil agricole d'Amérique centrale
+
+
中美洲农业理事会
+ Central American Council of Agriculture
CAC
+
المجلس الزراعي لأمريكا الوسطى
http://www.sica.int/busqueda/busqueda_basica.aspx?IdCat=29&IdMod=6&IdEnt=695&IdEntStyle=690&Indv=2
+
Consejo Agropecuario Centroamericano
CAC
CAC
@@ -37689,83 +37639,73 @@ has super-classes
Центральноамериканский сельскохозяйственный совет
CAC
- CAC http://www.sica.int/busqueda/busqueda_basica.aspx?IdCat=29&IdMod=6&IdEnt=695&IdEntStyle=690&Indv=2
+ CAC http://www.sica.int/busqueda/busqueda_basica.aspx?IdCat=29&IdMod=6&IdEnt=695&IdEntStyle=690&Indv=2
2010-08-31
1985
Central American Council of Agriculture
-
+
56426
-
-
-
-
-
- true
+
+ true
editor
- 20
-
- true
- 5
+ 20
+
+ true
+ 5
-
+
-
-
-
+
+
+
-
+
webpageOf
-
- 40
+
+ 40
- true
- webpageOf
+ true
+ webpageOf
- true
- 5
- The core:webpage relates to an intermediate node (of type core:URLLink) that allows specifying the homepage URL as a literal, as well as a human-readable label ("anchor text") for the link.
+ true
+ 5
+ The core:webpage relates to an intermediate node (of type core:URLLink) that allows specifying the homepage URL as a literal, as well as a human-readable label ("anchor text") for the link.
-
-
-
-
- 1
-
+
first name
- http://xmlns.com/foaf/spec/#term_firstName. Note from foaf: "The lastName property is provided (alongside firstName) as a mechanism to support legacy data that cannot be easily interpreted in terms of the (otherwise preferred) familyName and givenName properties. The concepts of 'first' and 'last' names do not work well across cultural and linguistic boundaries; however they are widely used in addressbooks and databases."
-
+ http://xmlns.com/foaf/spec/#term_firstName. Note from foaf: "The lastName property is provided (alongside firstName) as a mechanism to support legacy data that cannot be easily interpreted in terms of the (otherwise preferred) familyName and givenName properties. The concepts of 'first' and 'last' names do not work well across cultural and linguistic boundaries; however they are widely used in addressbooks and databases."
+
- 10
-
+ 10
+
- 1
+ 1
-
- The legal first name of a person as indicated in data loaded most likely from their institution. Only 1 first name can be displayed for each individual.
+
+ The legal first name of a person as indicated in data loaded most likely from their institution. Only 1 first name can be displayed for each individual.
- Netherlands
177
مملكة هولندا
150
@@ -37787,15 +37727,20 @@ has super-classes
3373.0
los Países Bajos
le Royaume des Pays-Bas
+
les Pays-Bas
Netherlands
Нидерланды
+
+
Regno dei Paesi Bassi
евро
néerlandais
+
NLD
+
EUR or €
Paesi Bassi
@@ -37804,17 +37749,21 @@ has super-classes
荷兰王国
Нидерланды
Pays-Bas
+
Official data reported on FAO Questionnaires from countries
هولندي
- 16592.0
el Reino de los Países Bajos
+ 16592.0
5142
- 1000 Ha
+
Official data reported on FAO Questionnaires from countries
+
+ 1000 Ha
2009
528
荷 兰
+
7.22
هولندا
olandese
@@ -37823,6 +37772,7 @@ has super-classes
the Kingdom of the Netherlands
1000
+
Netherlands
1000 Ha
12.03
@@ -37841,44 +37791,35 @@ has super-classes
هولندا
2009
NL
+
2010
Calculated
NET
euro
+ Netherlands
欧 元
the Netherlands
-
-
-
-
-
-
-
-
-
-
-
- D.D.
-
D.D. Doctor of Divinity
+ D.D.
+
-
+
-
+
- 1
-
+ 1
+
- A parent property for institutional and other identifiers. This data property is not seen or updated by anyone.
+ A parent property for institutional and other identifiers. This data property is not seen or updated by anyone.
identifier
-
+
- 1
+ 1
populationNotes
@@ -37888,33 +37829,18 @@ has super-classes
-
-
-
-
-
- current member of
- true
- member of
-
-
- A person's formal or informal affiliation with a group.
-
-
-
-
- Since we have defined geopolitical.owl.hasMember to be a subproperty of core:hasMember, we should not make changes to this property that would change the definition of geopolitical.owl.hasMember in ways that may make it inconsistent with its usage in other ontologies.
- true
+
+
- Lebanon
1000
Libano
- 33.05
黎巴嫩共和国
+ 33.05
Lebanese
34.68
sterlina libanese
+
黎巴嫩
Repubblica libanese
LB
@@ -37933,25 +37859,29 @@ has super-classes
Liban
141
2009
+
4224.0
ليرة
Libano
+
Population data from the UN Population Division and the data refers to the UN Revision 2008
el Líbano
pound
le Liban
la República libanesa
the Lebanese Republic
+
121
黎巴嫩的
2009
millions of US dollars
- Líbano
422
+ Líbano
Lebanon
Lebanon
+
1985
Data reported on country official publications or web sites (Official) or trade country files.
1000 Ha
@@ -37965,53 +37895,63 @@ has super-classes
Ливанская Республика
Ливан
35.11
+
1000 Ha
36.64
+
+ Lebanon
LBN
لبنان
1045.0
+
2009
1023.0
Manual Estimation
Ливан
+
4244
الجمهورية اللبنانية
+
黎巴嫩
la République libanaise
688.0
Manual Estimation
Estimated
لبناني
- libanais
-
-
-
-
-
-
-
-
-
-
+ libanais
+
+
+
+ current member of
+ true
+ member of
+
+
+ A person's formal or informal affiliation with a group.
+
+
+
+
+ Since we have defined geopolitical.owl.hasMember to be a subproperty of core:hasMember, we should not make changes to this property that would change the definition of geopolitical.owl.hasMember in ways that may make it inconsistent with its usage in other ontologies.
+ true
- low income and food deficit countries
-
+
PBIDA
paese a basso reddito con deficit alimentare
-
+
PBIDA
- FAO Country profiles http://www.fao.org/countryprofiles/lifdc.asp?lang=en
+ FAO Country profiles http://www.fao.org/countryprofiles/lifdc.asp?lang=en
pays à faible revenu et à déficit vivrier
@@ -38026,14 +37966,15 @@ has super-classes
paese a basso reddito con deficit alimentare
+
-
-
страны с низким уровнем дохода и дефицитом продово
+
+
@@ -38041,19 +37982,21 @@ has super-classes
+
- low income food deficit countries
+ low income food deficit countries
-
+
876
+ low income and food deficit countries
@@ -38065,8 +38008,8 @@ has super-classes
低收入缺粮国
PFRDV
страна с низким уровнем дохода и дефицитом продовольствия
-
+
低收入缺粮国
@@ -38076,8 +38019,8 @@ has super-classes
-
+
低收入缺粮国
http://www.fao.org/countryprofiles/lifdc.asp?lang=fr
@@ -38085,22 +38028,24 @@ has super-classes
PFRDV
- http://www.fao.org/countryprofiles/lifdc.asp?lang=es
بلدان العجز الغذائي ذات الدخل المنخفض
+ http://www.fao.org/countryprofiles/lifdc.asp?lang=es
بلدان العجز الغذائى ذات الدخل المنخفض
-
+
+
FAO Country profiles
2010
+
- LIFDCs
+ LIFDCs
@@ -38109,124 +38054,125 @@ has super-classes
http://www.fao.org/countryprofiles/lifdc.asp?lang=ar
-
-
-
-
-
-
-
-
-
-
- true
-
+
+ true
+
- 1
+ 1
- true
+ true
attendee role of
- 5
+ 5
+
+
+
+
+
total award amount
-
+
- 60
-
- 1
+ 60
+
+ 1
-
+
- This includes the direct cost being used for the grant activity plus indirect costs associated with administering the grant.
+ This includes the direct cost being used for the grant activity plus indirect costs associated with administering the grant.
- Intergovernmental Authority on Development
- 1996
- 1986
- Autoridad Intergubernamental sobre el Desarrollo
- Intergovernmental Authority on Drought and Development
- Intergovernmental Authority on Development
+ Intergovernmental Authority on Drought and Development
+ Intergovernmental Authority on Development
+ Autoridad Intergubernamental sobre el Desarrollo
+ 1986
+
-
-
-
+ Intergovernmental Authority on Development
+ 1996
+
+
-
- 80
- true
-
+
+ 80
+ true
+
- 5
- true
- This relates an agent to their mailing address.
+ 5
+ true
+ This relates an agent to their mailing address.
mailing address
- mailingAddress
- This is done with a restriction on agent.
-
- edu.cornell.mannlib.vitro.webapp.edit.n3editing.configuration.generators.PersonHasMailingAddressGenerator
+ mailingAddress
+ This is done with a restriction on agent.
+
+ edu.cornell.mannlib.vitro.webapp.edit.n3editing.configuration.generators.PersonHasMailingAddressGenerator
- Sc.D.
-
Sc.D. Doctor of Science
+ Sc.D.
+
-
+
+
+
+
+
+
-
+
A collection of statutes.
- A work consisting of texts of rules and regulations related to statutes issued by executive or administrative agencies
- stable
+ A work consisting of texts of rules and regulations related to statutes issued by executive or administrative agencies
+ stable
http://purl.org/ontology/bibo/
-
- -1
+
+ -1
Code
- Short Definition from OCLC Input Standards, EntW
- -1
+ Short Definition from OCLC Input Standards, EntW
+ -1
- Code of Federal Regulations
+ Code of Federal Regulations
Alabama
-
-
-
-
-
+
+
-
+
+
+
+
+
D.Ed. Doctor of Education
-
- D.Ed.
+ D.Ed.
+
-
+
- Honduras
HON
2009
Honduras
@@ -38237,19 +38183,21 @@ has super-classes
3651
Calculated
14318.0
-
- 伦皮拉
洪都拉斯共和国
+ 伦皮拉
1000 Ha
+
Honduran
2009
Honduras
1985
+
Honduras
2009
- L
+ Honduras
Гондурас
+ L
HN
95
@@ -38258,6 +38206,7 @@ has super-classes
111
2009
Honduras
+
12.98
Гондурас
le Honduras
@@ -38266,22 +38215,28 @@ has super-classes
millions of US dollars
Honduras
+
لمبيرا
-
Estimated
+
+
15423
- Repubblica di Honduras
-
- гондурасский
+
+
Honduras
+
+ Repubblica di Honduras
+
+ гондурасский
the Republic of Honduras
lempira
- hondureño
Республика Гондурас
+ hondureño
-89.35
340
+
Manual Estimation
Population data from the UN Population Division and the data refers to the UN Revision 2008
@@ -38289,11 +38244,13 @@ has super-classes
Honduras
7466.0
هندوراس
+
lempira
Manual Estimation
洪都拉斯的
16.51
1000 Ha
+
-83.15
la República de Honduras
@@ -38307,112 +38264,110 @@ has super-classes
Honduras
11249.0
- лемпира
+
+ лемпира
la République du Honduras
- 2010
1000
0.604
+ 2010
Data reported on country official publications or web sites (Official) or trade country files.
lempira
hondurien
-
-
-
-
-
-
-
-
-
-
-
-
-
- Marston Science Library
-
-
- Library
-
-
-
- A collection of any materials, for study and enjoyment, which has been systematically arranged.
- Used information from this definition: http://dictionary.reference.com/browse/library.
- -1
-
-
-
- -1
-
-
-
-
-
Oregon
-
-
-
-
-
+
+
-
+
+
+
+
+
+
+
+ Marston Science Library
+
+
+
+ Library
+ A collection of any materials, for study and enjoyment, which has been systematically arranged.
+
+ Used information from this definition: http://dictionary.reference.com/browse/library.
+
+ -1
+
+
+
+
+ -1
+
+
+
+
- true
+ true
-
+
international geographic focus of
- This relates a specific international geographic region to something.
+ This relates a specific international geographic region to something.
- 5
-
-
- 30
+ 5
+
+
+ 30
- true
+ true
- true
- geographic focus of
+ true
+ geographic focus of
UMLS
+
-
+
+
+ Assistant Librarian
+
- Côte d'Ivoire
de Côte d'Ivoire
Côte d'Ivoire
21075.0
384
2009
10.74
-
millions of US dollars
- 2009
+
Республика Кот-д'Ивуар
Estimated
+ 2009
2009
20300.0
2010
32246.0
+
Manual Estimation
科特迪瓦共和国
Calculated
Кот-д'Ивуар
+
+
Cote_dIvoire
Кот-д'Ивуар
CIV
Repubblica della Côte d'Ivoire
+
107
Côte d'Ivoire
@@ -38421,10 +38376,13 @@ has super-classes
1000
كوت ديفوار
1000 Ha
- Côte d'Ivoire
+
ivoirien
+ Côte d'Ivoire
1000 Ha
+
+
CI
franco CFA (Communauté financière africaine)
@@ -38435,9 +38393,9 @@ has super-classes
1985
Population data from the UN Population Division and the data refers to the UN Revision 2008
1000 Ha
- ивуарский
-
-2.49
+
+ ивуарский
франк КФА
非洲法郎
كوت ديفوار
@@ -38445,6 +38403,7 @@ has super-classes
66
31800.0
+ Côte d'Ivoire
من جمهورية كوت ديفوار
Côte d'Ivoire
@@ -38453,9 +38412,9 @@ has super-classes
Ivorian
4.36
-
科特迪瓦
4027
+
la République de Côte d'Ivoire
ivoriano
科特迪瓦
@@ -38465,6 +38424,7 @@ has super-classes
0.397
-8.6
la República de Côte d'Ivoire
+
the Republic of Côte d'Ivoire
Côte d'Ivoire
la Côte d'Ivoire
@@ -38475,97 +38435,92 @@ has super-classes
Manual Estimation
جمهورية كوت ديفوار
2009
+
franco CFA
CFA franc (Communauté financière africaine)
-
-
-
-
-
-
-
-
-
-
-
+
+
-
+
documentation for
- true
-
-
+ true
+
+
- low income and food deficit countries
+
-
+
PFRDV
-
+
países de bajos ingresos y con déficit de alimentos
PBIDA
-
+
低收入缺粮国
2008
-
страны с низким уровнем дохода и дефицитом продовольствия
-
-
+
+
+
+ low income and food deficit countries
2009
low income and food deficit countries
-
+
-
-
+
+
PFRDV
23475
低收入缺粮国
+
-
-
-
+
+
+
+
-
-
+
+
@@ -38575,6 +38530,7 @@ has super-classes
+
low income food deficit countries
@@ -38584,8 +38540,8 @@ has super-classes
-
+
@@ -38609,47 +38565,48 @@ has super-classes
pays à faible revenu et à déficit vivrier
-
-
-
-
+
+
+
+
+
- Austria
- австрийский
+ австрийский
3168.0
2009
Official data reported on FAO Questionnaires from countries
Austria
+ Austria
46.38
la República de Austria
Population data from the UN Population Division and the data refers to the UN Revision 2008
- 15368
- autrichien
نمساوى
+ autrichien
+ 15368
النمسا
euro
8364.0
8387.9
- 9.54
+ النمسا
Austria
€
l'Autriche
- النمسا
+ 9.54
8243.5
euro
- 17.16
Austria
- 2010
+ 17.16
欧 元
+ 2010
يورو
+ евро
Official data reported on FAO Questionnaires from countries
AT
- евро
Austria
18
奥地利
@@ -38657,12 +38614,15 @@ has super-classes
Австрийская Республика
2009
+
Autriche
381084.0
+
1985
la République d'Autriche
Calculated
+
Repubblica d'Austria
@@ -38670,7 +38630,9 @@ has super-classes
2009
奥地利
جمهورية النسما
+
Official data reported on FAO Questionnaires from countries
+
1000
Austrian
@@ -38682,12 +38644,16 @@ has super-classes
040
Austria
0.851
+
Австрия
euro
1000 Ha
+
+
AUT
+
11
austríaco
@@ -38695,41 +38661,34 @@ has super-classes
奥地利的 / 奥地利人
718
Austria
+
AUS
-
49.02
millions of US dollars
+
austriaco
+
奥地利共和国
Австрия
2009
-
-
-
-
-
-
-
-
-
-
-
- Malta
1000 Ha
+
Calculated
2009
مالطة
maltais
+ Malta
4548
409.0
Population data from the UN Population Division and the data refers to the UN Revision 2008
马耳他
+
15449
Мальта
lira maltese
@@ -38738,28 +38697,33 @@ has super-classes
Malte
Official data reported on FAO Questionnaires from countries
Malta
- Repubblica di Malta
马耳他共和国
+ Repubblica di Malta
la República de Malta
-
MLT
+
1000 Ha
Official data reported on FAO Questionnaires from countries
Maltese
MT
马 镑
ليرة
+
Estimated
maltés
2009
+
Malta
1000 Ha
14.57
32.0
- 2009
+ 2009
+
1000
+
+
0.815
جمهورية مالطة
2010
@@ -38771,21 +38735,25 @@ has super-classes
2009
9999
maltese
- lira
мальтийский
- millions of US dollars
+ lira
+
Official data reported on FAO Questionnaires from countries
+ millions of US dollars
Malta
马耳他的
Malta
the Republic of Malta
- 马耳他
470
+ 马耳他
+
14.18
Malta
lira
+
1985
2009
+
134
Malte
35.81
@@ -38799,81 +38767,69 @@ has super-classes
Мальта
36.08
156
-
-
-
-
-
-
-
-
-
-
-
-
-
- A written or printed communication addressed to a person or organization and usually transmitted by mail
-
- Letter
- A written or printed communication addressed to a person or organization and usually transmitted by mail
-
-
-
- 15
-
-
-
-
-
- 3
+
+ A written or printed communication addressed to a person or organization and usually transmitted by mail
+
+ Letter
+ A written or printed communication addressed to a person or organization and usually transmitted by mail
+
+
+
+ 15
+
+
+
+
+
+ 3
+
- 5
+ 5
advising contribution to
- true
-
- 50
+ true
+
+ 50
-
+
-
+
D.D.S. Doctor of Dental Science
-
- D.D.S.
+ D.D.S.
+
-
+
+
+
+
+
+
-
+
- 60
+ 60
- 10
- Please enter your complete phone number, with country code if outside the U.S. and Canada
-
+ 10
+ Please enter your complete phone number, with country code if outside the U.S. and Canada
+
phone
-
-
-
-
-
-
+
- Cambodia
- KHM
+ KHM
柬埔寨王国
Manual Estimation
كمبوديا
@@ -38890,10 +38846,11 @@ has super-classes
5555.0
1000 Ha
9999
-
Cambodge
- Camboya
+
102.35
+ Camboya
+
Population data from the UN Population Division and the data refers to the UN Revision 2008
CR
riel
@@ -38905,25 +38862,30 @@ has super-classes
115
+
9.91
Calculated
- 18104.0
رييل
+ 18104.0
KH
cambogiano
柬埔寨的
107.62
Cambogia
+
Manual Estimation
+
2009
the Kingdom of Cambodia
Камбоджа
+
- Cambodian
2010
+ Cambodian
2009
riel
+
millions of US dollars
el Reino de Camboya
1000
@@ -38935,23 +38897,28 @@ has super-classes
1000 Ha
riel
2009
- cambodgien
2009
+ cambodgien
le Royaume du Cambodge
- Manual Estimation
- 44
+ 44
+ Manual Estimation
Cambodia
Regno di Cambogia
- camboyano
مملكة كمبوديا
+ camboyano
Королевство Камбоджа
+
+
1000 Ha
Camboya
+
+
柬埔寨
+
камбоджийский
@@ -38960,51 +38927,41 @@ has super-classes
Cambogia
柬埔寨
+ Cambodia
كمبوديا
-
-
-
-
-
-
-
-
-
-
-
-
+
- 5
- We would like the domain of core:outcome to be the union of Event and Process; and that same union to be the range for core:outcomeOf, but we cannot currently express this with the editor.
+ 5
+ We would like the domain of core:outcome to be the union of Event and Process; and that same union to be the range for core:outcomeOf, but we cannot currently express this with the editor.
- true
+ true
outcome
-
+
- low income and food deficit countries
PBIDA
+ low income and food deficit countries
страны с низким уровнем дохода и дефицитом продовольствия
-
- PBIDA
+ PBIDA
+
2008
+
LIFDCs
-
@@ -39020,6 +38977,7 @@ has super-classes
+
23475
@@ -39029,18 +38987,19 @@ has super-classes
PFRDV
- países de bajos ingresos y con déficit de alimentos
+ países de bajos ingresos y con déficit de alimentos
بلدان العجز الغذائى ذات الدخل المنخفض
+
low income and food deficit countries
- 5815
+ 5815
低收入缺粮国
@@ -39049,19 +39008,21 @@ has super-classes
- PFRDV
+
+ PFRDV
بلدان العجز الغذائى ذات الدخل المنخفض
بلدان العجز الغذائي ذات الدخل المنخفض
-
+
低收入缺粮国
+
@@ -39071,170 +39032,155 @@ has super-classes
-
-
+
+
低收入缺粮国
-
+
-
-
-
-
-
-
-
-
-
-
+
-
-
-
-
-
-
- Agents are things that do stuff
-
-
-
-
- see: http://xmlns.com/foaf/spec/#term_Agent
-
-
-
-
-
-
-
-
-
-
-
-
+
Agent
-
- -1
-
-
-
-
-
-
+
+
+
+
+
+ Agents are things that do stuff
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
- -1
- Used to describe any "agent" related to bibliographic items. Such agents can be persons, organizations or groups of any kind.
-
-
-
-
-
-
-
-
+
+ see: http://xmlns.com/foaf/spec/#term_Agent
+
+
+
+
+
+
+
+
+
+
+ -1
+
+
+
+ -1
+ Used to describe any "agent" related to bibliographic items. Such agents can be persons, organizations or groups of any kind.
+
+
+
+
+
+
+
+
-
+
- Chicago; New York; Bloomington; Gainesville
-
+ Chicago; New York; Bloomington; Gainesville
+
-
- An incorporated municipality, usually governed by a mayor and a board of aldermen or councilmen.
+
+ An incorporated municipality, usually governed by a mayor and a board of aldermen or councilmen.
city
- 20
- 1
+ 20
+ 1
-
-
-
-
-
-
+
- Relates a person to a professional service role they hold.
- 5
- true
- 20
- professionalActivityBy
-
+ Relates a person to a professional service role they hold.
+ 5
+ true
+ 20
+ professionalActivityBy
+
service provider role of
-
+
- true
+ true
- D.M.D.
-
D.M.D. Doctor of Dental Medicine
+ D.M.D.
+
-
+
-
-
-
+
+
+
-
-
-
Wonders of Prevention (SPCA, The 2)
+
+
+
+
-
- A person who has already received a bachelor's degree and is working toward a Master's or Doctoral degree.
+ A person who has already received a bachelor's degree and is working toward a Master's or Doctoral degree.
-
+
-
-
+
+
Graduate Student
- -1
- -1
-
-
-
-
-
+ -1
+ -1
- Saint Lucia
LCA
-61.08
-60.87
@@ -39242,29 +39188,39 @@ has super-classes
1000
2009
saint-lucien
+
圣卢西亚的
15478
+ 圣卢西亚
2009
2009
189
- 圣卢西亚
Saint Lucia
Saint Lucia
- 9999
+
13.7
+ 9999
+
dollaro dei Caraibi orientali
STL
+
+ 1985
Saint Lucia
Population data from the UN Population Division and the data refers to the UN Revision 2008
сент-люсийский
- 1985
+ Saint Lucia
EC$
EC dollar (East Caribbean dollar)
سانت لوسيا
من سانت لوسيا
Сент-Люсия
+
+
+
+
2009
+
Sainte-Lucie
LC
@@ -39273,16 +39229,17 @@ has super-classes
209
دولار شرق الكاريبى
- santalucense
Santa Lucía
+ santalucense
Sainte-Lucie
圣卢西亚
1000 Ha
восточнокарибский
圣卢西亚
7349
-
2009
+
+
millions of US dollars
1000 Ha
سانت لوسيا
@@ -39291,6 +39248,7 @@ has super-classes
62.0
Saint Lucian
946.0
+
di Saint Lucia
Santa Lucía
Manual Estimation
@@ -39298,11 +39256,11 @@ has super-classes
172.0
Сент-Люсия
Saint Lucia
- Sainte-Lucie
+ 11.0
Saint Lucia
- 11.0
+ Sainte-Lucie
东加勒比元
Data reported on country official publications or web sites (Official) or trade country files.
@@ -39317,20 +39275,8 @@ has super-classes
Saint Lucia
61.0
14.11
-
-
-
-
-
-
-
-
-
-
-
- Thailand
baht
Official data reported on FAO Questionnaires from countries
@@ -39338,19 +39284,23 @@ has super-classes
240
9999
+
Thailandia
thaïlandais
la Thaïlande
THA
THA
+
thailandese
19795.0
تايلند
le Royaume de Thaïlande
+
millions of US dollars
2009
+
1000 Ha
Tailandia
Таиланд
@@ -39360,11 +39310,13 @@ has super-classes
تايلند
2010
Calculated
- таиландский
+ таиландский
+
67764.0
1000 Ha
+
1000 Ha
泰王国
2009
@@ -39377,8 +39329,8 @@ has super-classes
20.47
تايلندى
2009
- 1985
泰 国
+ 1985
Estimated
764
Thailand
@@ -39392,10 +39344,13 @@ has super-classes
Thailandia
泰国的
2009
+
0.654
+
Thailand
مملكة تايلند
216
+
el Reino de Tailandia
the Kingdom of Thailand
@@ -39406,76 +39361,74 @@ has super-classes
7701
Thaïlande
Таиланд
+ Thailand
Королевство Таиланд
5.61
+
Thai
Manual Estimation
Regno di Thailandia
+
Tailandia
泰 国
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
-
- D.L.S.
D.L.S. Doctor of Library Science
+ D.L.S.
+
-
+
-
-
- 5
+
+
+ 5
- 20
+ 20
- true
+ true
teacher role of
- teachingActivityBy
+ teachingActivityBy
-
+
- Costa Rica
- 61
1000 Ha
+ Costa Rica
le Costa Rica
Estimated
1920
- Costa Rica
+ 61
Manual Estimation
+
+
2009
+
+
4579.0
哥斯达黎加
0.725
1000 Ha
CRI
+ Costa Rica
2009
Costa_Rica
+
COS
5110.0
48
1985
+
Population data from the UN Population Division and the data refers to the UN Revision 2008
la República de Costa Rica
كوستاريكى
@@ -39485,6 +39438,7 @@ has super-classes
-82.56
costa-ricien
جمهورية كوستاريكا
+
millions of US dollars
colón
Costa Rica
@@ -39504,8 +39458,8 @@ has super-classes
11.21
科 朗
коста-риканский
- 9999
哥斯达黎加的 / 哥斯达黎加人
+ 9999
@@ -39518,6 +39472,7 @@ has super-classes
Коста-Рика
costaricano
+
колон
哥斯达黎加
@@ -39526,6 +39481,7 @@ has super-classes
Official data reported on FAO Questionnaires from countries
¢
1000 Ha
+
Costa Rica
1800.0
Costa Rican
@@ -39538,35 +39494,21 @@ has super-classes
Коста-Рика
Costa Rica
Repubblica di Costa Rica
- 2009
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+ 2009
-
-
- -1
+
+
+ -1
Translation
- -1
+ -1
- The result of rendering a work from one language to another
+ The result of rendering a work from one language to another
@@ -39577,30 +39519,33 @@ has super-classes
-
-
+
+
- Réunion
réunionnais
206
+
251.0
9999
+
+
Reunión
- 47.1
من ريبونيون
Riunione
+ 47.1
Dipartimento della Riunione
- Réunion
1000 Ha
+ Réunion
يورو
2009
638
留尼汪人/留尼汪的
1985
+ Réunion
2009
- la Réunion
REU
+ la Réunion
رييونيون
19030
Réunion
@@ -39608,23 +39553,26 @@ has super-classes
1000
euro
رييونيون
+
182
- 留尼汪
la Réunion
+ 留尼汪
Riunione
Population data from the UN Population Division and the data refers to the UN Revision 2008
1000 Ha
Data reported on country official publications or web sites (Official) or trade country files.
2009
+
della Riunione
Reunión
Manual Estimation
- RE
- 1000 Ha
euro
- Réunion
- REU
+ 1000 Ha
+ RE
+
欧 元
+ REU
+ Réunion
827.0
留尼汪
euro
@@ -39635,6 +39583,8 @@ has super-classes
Manual Estimation
euro
留尼汪
+
+
6543
de Reunión
@@ -39643,14 +39593,6 @@ has super-classes
Reunión
250.0
-
-
-
-
-
-
-
-
hasCoordinate
@@ -39659,40 +39601,50 @@ has super-classes
-
-
+
+
preferredNamespaceUri
- The full URI for the namespace.
+ The full URI for the namespace.
-
-
+
+
+
+
+
+
+
Report
- stable
+
+ stable
- A document describing an account or statement describing in detail an event, situation, or the like, usually as the result of observation, inquiry, etc.
-
+ A document describing an account or statement describing in detail an event, situation, or the like, usually as the result of observation, inquiry, etc.
http://purl.org/ontology/bibo/
- -1
-
+ -1
+
A document describing an account or statement describing in detail an event, situation, or the like, usually as the result of observation, inquiry, etc..
- -1
-
- Medical Subject Heading (MeSH) definition of Technical Report: Work consisting of a formal report giving details of the investigation and results of a medical or other scientific problem. When issued by a government agency or comparable official body, its contents may be classified, unclassified, or declassified with regard to security clearance. This publication type may also cover a scientific paper or article that records the current state or current position of scientific research and development. If so labeled by the editor or publisher, this publication type may be properly used for journal articles.
-
-
+ -1
+
+
+
+ Medical Subject Heading (MeSH) definition of Technical Report: Work consisting of a formal report giving details of the investigation and results of a medical or other scientific problem. When issued by a government agency or comparable official body, its contents may be classified, unclassified, or declassified with regard to security clearance. This publication type may also cover a scientific paper or article that records the current state or current position of scientific research and development. If so labeled by the editor or publisher, this publication type may be properly used for journal articles.
+
+
-
-
-
+
+
+
+ 1
+
+
@@ -39701,23 +39653,24 @@ has super-classes
Nebraska
-
-
-
-
-
+
+
-
+
+
+
+
+
- number of human participants in the study (trial).
- 20
-
+ number of human participants in the study (trial).
+ 20
+
-
-
+
+
study population count
@@ -39725,19 +39678,19 @@ has super-classes
FAO terminology
2010-06-24
nameListAR
+ http://www.fao.org/termportal/en/
http://www.fao.org/termportal/contr/en/
-
-
- FAO terminology http://www.fao.org/termportal/en/
-
-
- http://www.fao.org/termportal/en/
http://www.fao.org/termportal/contr/ar/
+
+
+ FAO terminology http://www.fao.org/termportal/en/
http://www.fao.org/termportal/contr/es/
+
http://www.fao.org/termportal/contr/zh/
http://www.fao.org/termportal/contr/fr/
+
@@ -39745,77 +39698,88 @@ has super-classes
-
D.M.S. Doctor of Medical Science
- D.M.S.
+ D.M.S.
+
-
+
+
+
+
+
+
-
- -1
+
+ -1
economic_region
- -1
-
+ -1
+
- true
- involves employee
- This relates a person's position information to the person themselves.
+ true
+ involves employee
+ This relates a person's position information to the person themselves.
- 40
+ 40
- true
+ true
position for person
-
-
+
+
-
+
- Faroe Islands
1000 Ha
+
139.6
FRO
Faroe Islands
Фарерские Острова
Data reported on country official publications or web sites (Official) or trade country files.
+
法罗群岛
2811
+
las Islas Feroe
+
крона
64
جزر فيرويه
- corona danese
Islas Feroe
+ corona danese
法罗人/法罗群岛的
Faroese
corona danesa
+
2198.0
2009
- 2009
من جزر فيرويه
- Faroe Islands
Faerøerne
- 1000 Ha
+ 2009
2009
+ 1000 Ha
+ Faroe Islands
Фарерские Острова
234
associate member of FAO
Faerøerne
+ Faroe Islands
جزر فيرويه
+
1000 Ha
كرونة دانمركية
Population data from the UN Population Division and the data refers to the UN Revision 2008
@@ -39826,6 +39790,7 @@ has super-classes
Faerøerne
2993
Faroe_Islands
+
丹麦克朗
2009
Data reported on country official publications or web sites (Official) or trade country files.
@@ -39842,28 +39807,21 @@ has super-classes
Islas Feroe
(изб житель) Фарерских островов
50.0
+
139.6
+
法罗群岛
+
1985
82
1000
3.0
Danish krone
جزر فيرويه
- 9999
- DKr
Faroe Islands
-
-
-
-
-
+ DKr
-
-
-
-
-
+ 9999
@@ -39873,13 +39831,7 @@ has super-classes
-
-
-
-
-
- Andean Community
Communauté Andine
مجموعة الأنديز
@@ -39887,39 +39839,52 @@ has super-classes
Андское сообщество
Comunidad Andina
+ Andean Community
CAN
9999
http://www.comunidadandina.org/index.htm
+
Comunidad Andina
CAN
Andean Community
安第斯共同体
- CAN http://www.comunidadandina.org/
+
+ CAN http://www.comunidadandina.org/
+
2006
Andean Community
- CAN
Communauté Andine
+ CAN
http://www.comunidadandina.org/endex.htm
CAN
-
-
-
-
+
+
+
+ 1
+
+
+
+
+ 1
+
+
Armenia
la República de Armenia
- 0.695
Armenia
+ 0.695
德拉姆
亚美尼亚共和国
+
Armenia
-
Data reported on country official publications or web sites (Official) or trade country files.
+
+
Population data from the UN Population Division and the data refers to the UN Revision 2008
@@ -39928,6 +39893,8 @@ has super-classes
AM
2010
+
+
1000 Ha
43.46
2009
@@ -39942,48 +39909,54 @@ has super-classes
драм [м.]
dram
46.63
+
9999
亚美尼亚
armenio
3083.0
2009
-
- 13
Armenia
arménien
+
+ 13
Manual Estimation
2848.0
1991
1000 Ha
+
+
亚美尼亚的 / 亚美尼亚人
Armenia
the Republic of Armenia
- Calculated
41.3
-
+ Calculated
Armenia
+
армянский
亚美尼亚
Armenia
dram
20521
Республика Армения
+
Estimated
2974.0
- l'Arménie
- Armenian
8926
+ Armenian
+ l'Arménie
051
dram
1000 Ha
ARM
+
dram
Arménie
Manual Estimation
+
@@ -39992,56 +39965,50 @@ has super-classes
millions of US dollars
1
Armenia
+
جمهورية أرمينيا
- 2009
+ 2009
أرمنى
درام
la République d'Arménie
38.84
1000
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
- German Democratic Republic
- 1990
- 1985
- German_Democratic_Republic_the
- German_Democratic_Republic_the
-
278
- 3244
+
-
+
+
+ German_Democratic_Republic_the
+ 3244
+
+ German_Democratic_Republic_the
+
+ German Democratic Republic
+
-
+ 1990
+ 1985
-
-
-
-
- D.O.
D.O. Doctor of Osteopathic Medicine
+ D.O.
+
-
+
- Sao Tome and Principe
2009
@@ -40054,9 +40021,10 @@ has super-classes
2009
圣多美和普林西比民主共和国
+
سان تومي وبرنسيبي
- 0.488
1000
+ 0.488
of Sao Tome and Principe
Manual Estimation
96.0
@@ -40066,17 +40034,23 @@ has super-classes
Sao Tomé-et-Principe
圣普的
Sao Tome and Principe
+
+
191.0
من سان تومي وبرنسيبي
Calculated
+
ST
+ Sao Tome and Principe
圣多美和普林西比
6.46
Repubblica democratica di São Tomé e Príncipe
1000 Ha
STP
+
Сан-Томе и Принсипи
+
163.0
добра
@@ -40084,24 +40058,28 @@ has super-classes
millions of US dollars
678
+ STP
(из/житель) Сан-Томе и Принсипи
Estimated
- STP
+
2010
多布拉
+
9999
193
São Tomé e Príncipe
Сан-Томе и Принсипи
+
56.0
جمهورية سان تومي وبرنسيبي الديمقراطية
di São Tomé e Príncipe
96.0
the Democratic Republic of Sao Tome and Principe
- dobra
- دوبرا
1.7
+ دوبرا
+
+ dobra
Population data from the UN Population Division and the data refers to the UN Revision 2008
dobra
-0.01
@@ -40112,10 +40090,11 @@ has super-classes
214
de Santo Tomé y Príncipe
Manual Estimation
- Manual Estimation
15481
+ Manual Estimation
la République démocratique de Sao Tomé-et-Principe
+
圣多美和普林西比
Sao_Tome_and_Principe
@@ -40124,25 +40103,13 @@ has super-classes
1000 Ha
6790
- de Sao Tomé-et-Principe
la República Democrática de Santo Tomé y Príncipe
+ de Sao Tomé-et-Principe
Sao Tomé-et-Principe
-
-
-
-
-
-
-
-
-
-
-
-
+
- Luxembourg
lussemburghese
Luxembourg
يورو
@@ -40156,12 +40123,14 @@ has super-classes
Lussemburgo
52296.0
Calculated
+
- the Grand Duchy of Luxembourg
- 1000 Ha
- 15443
Великое Герцогство Люксембург
+ 15443
+ 1000 Ha
+
+ the Grand Duchy of Luxembourg
148
euro
@@ -40171,6 +40140,7 @@ has super-classes
le Grand-Duché de Luxembourg
euro
+
1985
131.0
@@ -40186,17 +40156,22 @@ has super-classes
卢森堡大公国
2009
+
من لكسمبرغ
5.73
- люксембургский
millions of US dollars
+ люксембургский
Estimated
+
259.0
4471
卢森堡
+
486.0
Official data reported on FAO Questionnaires from countries
+ Luxembourg
+
LUX
6.53
256
@@ -40212,12 +40187,16 @@ has super-classes
Official data reported on FAO Questionnaires from countries
евро
259.0
+
Luxemburgo
2009
Luxembourg
+
0.852
+
LU
9999
+
Data reported on country official publications or web sites (Official) or trade country files.
Population data from the UN Population Division and the data refers to the UN Revision 2008
2009
@@ -40227,63 +40206,54 @@ has super-classes
欧 元
2009
LUX
-
-
-
-
-
-
-
-
-
-
-
- subcontractsGrant
+ subcontractsGrant
- 5
-
- true
+ 5
+
+ true
subcontracts grant
-
- This relates the agency, entity or individual awarding the sub-contract for a grant to the grant itself.
+
+ This relates the agency, entity or individual awarding the sub-contract for a grant to the grant itself.
-
- 62
+
+ 62
- true
+ true
- Nauru
2.0
澳 元
- Data reported on country official publications or web sites (Official) or trade country files.
Australian dollar
+ Data reported on country official publications or web sites (Official) or trade country files.
1000 Ha
la República de Nauru
+
166.95
Nauru
+ 0.4
520
Nauru
- 0.4
ناورو
2.0
Республика Науру
+
2009
19028
+ Nauru
Nauru
جمهورية ناورو
- $A
2009
+ $A
Nauru
9999
NR
@@ -40293,21 +40263,28 @@ has super-classes
瑙 鲁
5093
nauruano
+
Repubblica di Nauru
Nauruan
瑙 鲁
Nauru
+
+
ناوروي
148
2009
- Nauru
NRU
+ Nauru
nauruan
- 1000
-
+
Nauru
+
+
+ 1000
доллар
+
-0.55
+
NAU
dollar australien
dólar australiano
@@ -40327,114 +40304,125 @@ has super-classes
دولار أسترالى
173
Nauru
+
ناورو
nauruano
- 瑙鲁的
1000 Ha
+ 瑙鲁的
науруанский
la République de Nauru
Nauru
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+ Conference Series
+ An organized series of a meeting for consultation or discussion.
+ -1
+
+ -1
+
+
+
+
+
+
+ For individual, separate conferences, use conference instead. core:ConferenceSeries and core:SeminarSeries are very similar.
-
-
+
+
protocol realized by
- true
+ true
-
- Conference Series
- An organized series of a meeting for consultation or discussion.
- -1
-
- -1
-
-
-
-
-
-
- For individual, separate conferences, use conference instead. core:ConferenceSeries and core:SeminarSeries are very similar.
+
+
+
+
- Short Definition from the bibo ontology
+ Short Definition from the bibo ontology
Quote
-
+
http://purl.org/ontology/bibo/
An excerpted collection of words.
- -1
- stable
+ -1
+ stable
-
+
- An excerpted collection of words
- -1
+ An excerpted collection of words
+ -1
-
-
- Those positions are held by people who do academic work but do not have faculty positions in universities or institutes.
-
- true
+
+ Those positions are held by people who do academic work but do not have faculty positions in universities or institutes.
+ true
+
+
+
-
-
- Researcher; Academic Extension Associate; Postdoctoral Associate
+
+
+
+ Researcher; Academic Extension Associate; Postdoctoral Associate
Non-Faculty Academic Position
- A position involving academic work but without faculty status
-
- -1
-
-
- -1
-
-
-
-
+ A position involving academic work but without faculty status
+
+ -1
+
+
+
+ -1
+
-
-
- 5
+
+
+ 5
has geographic location
-
+
- 60
- true
- true
+ 60
+ true
+ true
- nearestGeographicLocation
- Currently being used by a restriction on organization.
+ nearestGeographicLocation
+ Currently being used by a restriction on organization.
- This relates something to its geographic location, for example, an organization to its geographic location.
-
+ This relates something to its geographic location, for example, an organization to its geographic location.
+
+
+
+ 2
+
+
+
+
+
+
+
@@ -40442,37 +40430,38 @@ has super-classes
Outreach Provider Role
-
+
- -1
- true
- Communicating Astronomy to the Public
- An outreach or community service role directed outside a person's primary profession and institution
- -1
-
+ -1
+ true
+ Communicating Astronomy to the Public
+ An outreach or community service role directed outside a person's primary profession and institution
+ -1
+
- The example is one outreach role required by US space agency NASA, which is related with one project in NASA. Name of the outreach role should be put here.
+ The example is one outreach role required by US space agency NASA, which is related with one project in NASA. Name of the outreach role should be put here.
-
-
-
+
+ 1
+
- Sudan
206
Official data reported on FAO Questionnaires from countries
sudanés
38.57
سوداني
+
2009
+
苏 丹
- Estimated
2009
Official data reported on FAO Questionnaires from countries
+ Estimated
суданский
15490
la République du Soudan
@@ -40488,10 +40477,12 @@ has super-classes
la República del Sudán
soudanais
2011
+
2010
- libra
+
Sudan
+ libra
1000 Ha
54681.0
@@ -40501,16 +40492,20 @@ has super-classes
Sudan
جمهورية السودان
+
Sudan
40764
Судан
- SD
Sudan
+ SD
136731.0
динар
+
21.84
1000 Ha
+
+
millions of US dollars
Calculated
1000 Ha
@@ -40524,19 +40519,22 @@ has super-classes
2009
sterlina sudanese
7497
- the Sudan
pound
+ the Sudan
Repubblica del Sudan
- the Republic of the Sudan
SDN
+ the Republic of the Sudan
Population data from the UN Population Division and the data refers to the UN Revision 2008
+
2009
sudanese
le Soudan
+
42272.0
苏 丹
250581.0
+ Sudan
2009
SUD
@@ -40544,41 +40542,21 @@ has super-classes
苏丹共和国
-
-
-
-
-
-
-
-
-
-
-
-
- 80
-
-
- 5
-
-
- This relates something to a specific international geographic region as its focus.
-
- geographic focus
-
- international geographic focus
- true
-
-
- true
+
+ Elizabeth
+ Ms.
+ III
+ Faculty
+ Jane
+
- New Zealand
Official data reported on FAO Questionnaires from countries
Nueva Zelandia
156
New_Zealand
+
neo-zélandais
@@ -40589,8 +40567,9 @@ has super-classes
-52.61
Estimated
4266.0
- neozelandese
1000
+ neozelandese
+
dollar
-29.24
Calculated
@@ -40605,17 +40584,21 @@ has super-classes
NZL
dólar
15460
+ New Zealand
2009
+
Nueva Zelandia
NZ
dollar
- 2009
+ نيوزيلندي
Новая Зеландия
- نيوزيلندي
+ 2009
Новая Зеландия
Nuova Zelanda
+
of New Zealand
+
Nuova Zelanda
New Zealand
نيوزيلندا
@@ -40627,24 +40610,30 @@ has super-classes
178.84
la Nouvelle-Zélande
+
+
+
Population data from the UN Population Division and the data refers to the UN Revision 2008
- Nueva Zelandia
0.907
+ Nueva Zelandia
+
neozelandés
1985
1000 Ha
1000 Ha
- NZE
Manual Estimation
- la Nouvelle-Zélande
+ NZE
11490.0
+ la Nouvelle-Zélande
New Zealand
+
2009
126679.0
- 179
dollaro neozelandese
+ 179
Nouvelle-Zélande
+
-178.44
دولار
5164
@@ -40656,46 +40645,53 @@ has super-classes
2010
新西兰
$NZ
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+ 80
+
+
+ 5
+
+
+ This relates something to a specific international geographic region as its focus.
+
+ geographic focus
+
+ international geographic focus
+ true
+
+
+ true
-
+
- -1
+ -1
- The Ford Foundation
+ The Ford Foundation
- -1
+ -1
- An institution financed by a donation or legacy to aid research, education, the arts, etc.
- Definition take from: http://dictionary.reference.com/browse/foundation.
-
+ An institution financed by a donation or legacy to aid research, education, the arts, etc.
+ Definition take from: http://dictionary.reference.com/browse/foundation.
+
Foundation
-
+
-
+
A legal decision on appeal that takes action on a case (affirming it, reversing it, etc.).
- true
- true
-
+ true
+ true
+
- A legal decision on appeal that takes action on a case (affirming it, reversing it, etc.).
-
- Public description is from comments of this object property in bibo ontology located here: http://bibotools.googlecode.com/svn/bibo-ontology/trunk/doc/index.html
- subsequentLegalDecision
+ A legal decision on appeal that takes action on a case (affirming it, reversing it, etc.).
+
+ Public description is from comments of this object property in bibo ontology located here: http://bibotools.googlecode.com/svn/bibo-ontology/trunk/doc/index.html
+ subsequentLegalDecision
subsequentLegalDecision
@@ -40709,7 +40705,6 @@ has super-classes
- Republic of Moldova
20524
Republic of Moldova
@@ -40729,6 +40724,7 @@ has super-classes
45.46
+
498
República de Moldova
1000
@@ -40739,6 +40735,7 @@ has super-classes
Data reported on country official publications or web sites (Official) or trade country files.
+
MD
лей
摩尔多瓦的
@@ -40751,6 +40748,7 @@ has super-classes
2009
9999
+
MDA
1000 Ha
MOL
@@ -40759,16 +40757,21 @@ has super-classes
2009
0.623
moldavo
+
+
Population data from the UN Population Division and the data refers to the UN Revision 2008
+
Estimated Excludes data for Transnistria.
+
Республика Молдова
+
2009
la République de Moldova
moldove
- 146
Official data reported on FAO Questionnaires from countries
+ 146
列 伊
1000 Ha
Calculated
@@ -40776,8 +40779,9 @@ has super-classes
ليّ
26.62
République de Moldova
- moldovo
+
Республика Молдова
+ moldovo
Moldovan
Республика Молдова
@@ -40788,6 +40792,7 @@ has super-classes
молдавский
Moldavia
48.49
+
جمهورية مولدوفا
3604.0
@@ -40795,36 +40800,37 @@ has super-classes
Republic of Moldova
Moldavia
Moldova
+ Republic of Moldova
-
-
-
-
-
-
-
-
-
-
-
-
-
- 1324-01-01T00:00:00
-
-
-
-
-
-
+
+
+
-
-
- D.P.A. Doctor of Public Administration
- D.P.A.
+
+ 1
+
+
+
+
+ 1324-01-01T00:00:00
+
+
-
+
+
+
+
+
+
+
+
+ D.P.A. Doctor of Public Administration
+ D.P.A.
+
+
+
@@ -40833,41 +40839,46 @@ has super-classes
- The numeric digit assigned to an author in Scopus. In Scopus it's call the "Author Identifier".
-
+ The numeric digit assigned to an author in Scopus. In Scopus it's call the "Author Identifier".
+
Scopus id
- 2
+ 2
-
- 30
-
+
+ 30
+
- Home page for Scopus: http://www.scopus.com/home.url
+ Home page for Scopus: http://www.scopus.com/home.url
+
+
+
+
+
A bill enacted into law.
Statute
- A bill enacted into law
- -1
+ A bill enacted into law
+ -1
- -1
-
-
- stable
+ -1
+
+
+ stable
http://purl.org/ontology/bibo/
- Short Definition from bibo ontology
+ Short Definition from bibo ontology
-
-
-
+
+
+
@@ -40877,18 +40888,12 @@ has super-classes
-
-
-
-
-
-
-
+
1
+
- United Kingdom
le Royaume-Uni de Grande-Bretagne et d'Irlande du Nord
Reino Unido
9999
@@ -40897,20 +40902,25 @@ has super-classes
60.84
millions of US dollars
2009
+
1000 Ha
Official data reported on FAO Questionnaires from countries
United Kingdom
英国的
Royaume-Uni
- 2010
1000 Ha
+ 2010
+
GBR
- Великобритании и Северной Ирландии
Regno Unito
- -8.62
Соединенное Королевство Великобритании и Северной Ирландии
+ -8.62
大不列颠及北爱尔兰联合王国
+ Великобритании и Северной Ирландии
+ United Kingdom
2009
+
+
the United Kingdom of Great Britain and Northern Ireland
2009
@@ -40919,12 +40929,14 @@ has super-classes
GB
the United Kingdom of Great Britain and Northern Ireland
+
Соединенное Королевство Великобритании и Северной Ирландии
el Reino Unido de Gran Bretaña e Irlanda del Norte
Regno Unito di Gran Bretagna e Irlanda del Nord
15504
1.77
61796.0
+
Official data reported on FAO Questionnaires from countries
17325.0
UKM
@@ -40933,13 +40945,16 @@ has super-classes
1000
britannico
Official data reported on FAO Questionnaires from countries
+
جنيه إسترلينى
le Royaume-Uni de Grande-Bretagne et d'Irlande du Nord
Population data from the UN Population Division and the data refers to the UN Revision 2008
+
1000 Ha
pound sterling
0.849
+
229
2174530.0
Estimated
@@ -40947,6 +40962,7 @@ has super-classes
el Reino Unido de Gran Bretaña e Irlanda del Norte
بريطاني
256
+
826
de Gran Bretaña e Irlanda del Norte
@@ -40958,123 +40974,107 @@ has super-classes
24193.0
大不列颠及北爱尔兰联合王国
- (of the) United Kingdom
+ фунт
联合王国
24361.0
- фунт
+ (of the) United Kingdom
Соединенное Королевство Великобритании и Северной Ирландии
Calculated
United_Kingdom
de Grande-Bretagne et d'Irlande du Nord
المملكة المتحدة
- Regno Unito
-
-
-
-
-
-
-
-
-
-
+ Regno Unito
- 1
+ 1
geographically within
- 5
+ 5
- geographicallyWithin
- Relates a geographic location with the geographic location that contains it.
+ geographicallyWithin
+ Relates a geographic location with the geographic location that contains it.
-
- true
+
+ true
-
+
- true
+ true
-
+
-
-
- 1
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Project
-
- -1
-
-
+
+
+
+
+ -1
+
+
+
+
+
+
-
-
-
-
-
-
+
+
+
+
- -1
-
-
-
- An endeavor, frequently collaborative, that occurs over a finite period of time and is intended to achieve a particular aim.
-
-
- An endeavor, frequently collaborative, that occurs over a finite period of time and is intended to achieve a particular aim.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+ -1
+
+ An endeavor, frequently collaborative, that occurs over a finite period of time and is intended to achieve a particular aim.
+
+
+
+
+
+ An endeavor, frequently collaborative, that occurs over a finite period of time and is intended to achieve a particular aim.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
- Haiti
9999
haitiano
@@ -41090,10 +41090,12 @@ has super-classes
-74.48
Haïti
+
Haitian
haitiano
332
+
海 地
гурд
جمهورية هايتي
@@ -41106,36 +41108,41 @@ has super-classes
Haiti
- Haiti
1000 Ha
+ Haiti
Haiti
- 1000
-71.61
+ 1000
1840.0
- 108
Haiti
+ 108
+
0.404
+
Республика Гаити
海地的
Haiti
- la République d'Haïti
+
HTI
+ la République d'Haïti
gourde
+ Haiti
3472
gourde
millions of US dollars
- gourde
1000 Ha
+ gourde
+
Manual Estimation
93
Estimated
2009
Repubblica di Haiti
- Haití
2009
+ Haití
20.09
@@ -41146,88 +41153,85 @@ has super-classes
1000 Ha
15422
2010
+
Гаити
-
Data reported on country official publications or web sites (Official) or trade country files.
+
Haití
Manual Estimation
6479.0
+
гаитянский
2756.0
هايتي
هايتي
2775.0
- Calculated
G
+ Calculated
HAI
2009
2009
+
+
هايتي
HT
- 10033.0
-
-
-
-
-
-
-
-
-
-
+ 10033.0
- Saint Barthélemy
+
سان بارتليمي
سان بارتليمي
+ Saint Barthélemy
Saint-Barthélemy
Saint Barthélemy
- 652
+ 652
+
158874
圣巴泰勒米
Saint-Barthélemy
+
2007
Saint-Barthélemy
Saint Barthélemy
- 9999
- Saint-Barthélemy
+
圣巴泰勒米
- Saint-Barthélemy
+ 9999
San Bartolomé
+ Saint-Barthélemy
+ Saint-Barthélemy
San Bartolomé
Saint Barthélemy
Saint-Barthélemy
+
San Bartolomé
圣巴泰勒米
سان بارتليمي
-
-
-
-
-
-
+
- Greece
евро
- греческий
+
Греция
+
+ греческий
Греция
13196.0
+
希 腊
Grecia
Greece
+
اليونان
- 11161.0
يورو
+ 11161.0
9999
Grecia
GRE
@@ -41236,45 +41240,50 @@ has super-classes
EUR or €
Греческая Республика
- اليونان
+ اليونان
+
- the Hellenic Republic
+ 300
greco
- 300
+ the Hellenic Republic
希腊的
الجمهورية الهيلانية
3373
Calculated
Greek
0.855
- 19.38
2009
+ 19.38
+
euro
- 34.8
+
1000 Ha
- 2009
+ 34.8
+ 2009
euro
-
Greece
+
2009
- Grecia
+ 8199.2
Greece
1000 Ha
- 8199.2
+ Grecia
+
Grecia
希腊共和国
griego
+
2009
- la Grèce
12890.0
+ la Grèce
Grèce
- grec
euro
+ grec
la República Helénica
29.6
2010
@@ -41283,80 +41292,73 @@ has super-classes
GR
Estimated
- Population data from the UN Population Division and the data refers to the UN Revision 2008
1000 Ha
+ Population data from the UN Population Division and the data refers to the UN Revision 2008
la République hellénique
希 腊
+ Greece
Repubblica ellenica
+
1985
329924.0
97
Data reported on country official publications or web sites (Official) or trade country files.
Manual Estimation
2009
+
41.74
15416
1000
欧 元
euro
GRC
-
-
-
-
-
-
-
-
-
-
-
preferred display order
-
+
-
-
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
- Norway
+
381766.0
Норвегия
57.97
+
noruego
NKr
Королевство Норвегия
5234
挪威的
+
1014.38
2009
2009
Norvegia
+ Norway
Regno di Norvegia
norvégien
32378.0
- 2010
-
+
+
Noruega
+
+ 2010
نرويجي
30547.0
+
1000
162
норвежский
@@ -41367,14 +41369,15 @@ has super-classes
norvegese
挪 威
- Norwegian
克 朗
+ Norwegian
Calculated
0.938
Норвегия
النرويج
1000 Ha
+
Norway
Norway
2009
@@ -41398,10 +41401,13 @@ has super-classes
186
millions of US dollars
Population data from the UN Population Division and the data refers to the UN Revision 2008
+
مملكة النرويج
- 9999
- крона
+
+
Official data reported on FAO Questionnaires from countries
+ крона
+ 9999
1000 Ha
578
krone
@@ -41411,51 +41417,42 @@ has super-classes
挪 威
النرويج
+
80.75
挪威王国
NOR
-
+
corona norvegese
-
-
-
-
-
-
-
-
-
-
-
-
-
+
1
+
- Special Libraries Association; Association for Computing Machinery(ACM); American Medical Informatics Association(AMIA)
+ Special Libraries Association; Association for Computing Machinery(ACM); American Medical Informatics Association(AMIA)
Association
- A formal organization of people or organizations around a subject or practice.
-
+ A formal organization of people or organizations around a subject or practice.
+
-
+
- -1
-
- -1
+ -1
+
+ -1
- Caribbean
9999
84967
+
+
الكاريبي
5206
Карибы
@@ -41468,105 +41465,110 @@ has super-classes
الكاريبي
加勒比
+
Caraïbes
Caraïbes
Карибы
Caraibi
Карибы
加勒比
+
Caribe
+ Caribbean
Caraïbes
Caribbean
+
الكاريبي
Caribe
+
+
Caribbean
Caribbean
Caribe
+
029
1320
-
-
-
-
-
-
-
-
+
+
+
+
+
-
-
+
+
- true
- 5
+ true
+ 5
- 30
+ 30
advisee
-
+
-
-
-
+
+ 1
+
-
- 1
+
+ 1
position in organization
-
+
- true
+ true
- involves employer
+ involves employer
- true
-
- 15
- This relates a person's position to the organization that has that position.
+ true
+
+ 15
+ This relates a person's position to the organization that has that position.
- desc
+ desc
- 5
- true
+ 5
+ true
organization for training
-
-
+
+
- New Caledonia
franco CFA
франк КФА
New Caledonian
+ New Caledonia
2009
Manual Estimation
- 1000 Ha
+
2009
+ 1000 Ha
Nuova Caledonia
New Caledonia
- Nueva Caledonia
- NCA
非洲法郎
+ NCA
+ Nueva Caledonia
540
la Nouvelle-Calédonie
250.0
@@ -41576,6 +41578,7 @@ has super-classes
2009
كاليدونيا الجديدة
(из/ житель) Новой Каледонии
+
新喀里多尼亚
من كاليدونيا الجديدة
1858.0
@@ -41592,12 +41595,16 @@ has super-classes
Manual Estimation
Territorio della Nuova Caledonia e dipendenze
178
+
franc CFA (Communauté financière africaine)
كاليدونيا الجديدة
31267
1000
5155
+
251.0
+
+
de Nueva Caledonia
New Caledonia
New Caledonia
@@ -41605,11 +41612,13 @@ has super-classes
NCL
153
新喀里多尼亚人/新喀里多尼亚的
+
Nueva Caledonia
franco CFA (Communauté financière africaine)
Population data from the UN Population Division and the data refers to the UN Revision 2008
la Nouvelle-Calédonie
néo-calédonien
+
1985
新喀里多尼亚
CFA franc (Communauté financière africaine)
@@ -41617,31 +41626,34 @@ has super-classes
新喀里多尼亚
9999
-
-
-
-
-
-
-
-
+
+
+ 1
+
+
-
-
- 1.5
- 1.4
+
+ 1.5
+ 1.4
+
New York
-
-
-
-
-
+
+
-
+
+
+
+
+
+
+
+ 1
+
+
@@ -41655,44 +41667,44 @@ has super-classes
-
-
+
+
-
+
codeDBPediaID
-
+
http://dbpedia.org/About
DBpedia
- DBpedia http://dbpedia.org/About
+ DBpedia http://dbpedia.org/About
2010-04-28
-
+
- hasProceedings
- true
+ hasProceedings
+ true
proceedings
- 5
- This relates a conference proceeding to the conference that produced the proceeding.
+ 5
+ This relates a conference proceeding to the conference that produced the proceeding.
- 30
-
- A possible working example: The conference proceeding of the SPIE was generated from the conference - International Society for Optical Engineering.
-
+ 30
+
+ A possible working example: The conference proceeding of the SPIE was generated from the conference - International Society for Optical Engineering.
+
- true
+ true
-
-
- 1
+
+
+
@@ -41703,116 +41715,130 @@ has super-classes
-
- 3
- 70
-
+
+ 3
+ 70
+
http://purl.org/ontology/bibo/
- The name defining a special edition of a document. Normally its a literal value composed of a version number and words.
+ The name defining a special edition of a document. Normally its a literal value composed of a version number and words.
- stable
+ stable
edition
-
+
The name defining a special edition of a document. Normally its a literal value composed of a version number and words.
+
+
+
+
+
+
+ 1
+
+
+
VIVO core
- vivo
+ vivo
-
-
- 1
-
-
- North America
- أمريكا الشمالية
- América Septentrional; Norteamérica
- America del Nord
- 北美洲
- Северная Америка
+ Amérique septentrionale
+
+
北美洲
+ Amérique septentrionale
+
+
+ North America
+ أمريكا الشمالية
+
84970
- Северная Америка
- Amérique septentrionale
+
América Septentrional; Norteamérica
- America del Nord
- América Septentrional; Norteamérica
- 1985
+
+ 021
9999
+
+
+ 5219
+ America del Nord
+ Северная Америка
+ 5203
+ North America
+ أمريكا الشمالية
أمريكا الشمالية
Северная Америка
- Amérique septentrionale
- North America
-
- 021
- America del Nord
-
- 5219
-
- North America
- 5203
- Amérique septentrionale
+ Amérique septentrionale
+ América Septentrional; Norteamérica
北美洲
- أمريكا الشمالية
- North America
-
+ America del Nord
+ América Septentrional; Norteamérica
+ North America
-
-
-
-
-
-
-
+ America del Nord
+ 北美洲
+ northern America
+
+ North America
+
+ 1985
+ Северная Америка
-
-
-
Primates Unite 2
+
+
+
-
+
+
+
+
+
+
+
-
-
African Primates
-
-
+
+
+
- Saudi Arabia
Estimated
Calculated
+
0.752
25721.0
- риял
- Arabia Saudita
- 55.67
Manual Estimation
+ риял
+ 55.67
+ Arabia Saudita
el Reino de Arabia Saudita
214969.0
саудоаравийский
- المملكة العربية السعودية
+
سعودي
+ المملكة العربية السعودية
里亚尔
+
المملكة العربية السعودية
saudiano
- SRIs
173435.0
+ SRIs
l'Arabie saoudite
المملكة العربية السعودية
Saudi_Arabia
沙特的
+
2009
1000 Ha
9999
@@ -41826,15 +41852,17 @@ has super-classes
árabe saudita
+
saoudien
2010
Саудовская Аравия
ريال
1000
215
- riyal saudita
- 34.5
2009
+ 34.5
+
+ riyal saudita
Manual Estimation
Saudi Arabia
@@ -41843,6 +41871,7 @@ has super-classes
32.15
Regno dell'Arabia Saudita
+
Population data from the UN Population Division and the data refers to the UN Revision 2008
millions of US dollars
@@ -41852,9 +41881,10 @@ has super-classes
214969.0
SAU
2009
- Saudi Arabia
SAU
+ Saudi Arabia
沙特阿拉伯王国
+ Saudi Arabia
1000 Ha
la Arabia Saudita
@@ -41867,50 +41897,43 @@ has super-classes
Arabia Saudita
2009
沙特阿拉伯
+
+
682
SA
+
+
Saudi Arabian
riyal
Arabie saoudite
15.66
Arabia Saudita
-
-
-
-
-
-
-
-
-
-
-
- -1
-
-
+ -1
+
+
+
+
+
+
+
- Short Definition is the Medical Subject Heading (MeSH) definition
-
+ Short Definition is the Medical Subject Heading (MeSH) definition
+ NLM Catalog
- NLM Catalog
+
-
+
+
-
-
-
-
- -1
-
+
+ -1
+
+
Catalog
-
-
- A list of items in a collection; an ordered compilation of item descriptions and sufficient information to afford access to them
-
-
+ A list of items in a collection; an ordered compilation of item descriptions and sufficient information to afford access to them
diff --git a/test/edu/cornell/mannlib/vitro/webapp/search/solr/VivoAgentContextNodeFieldsTest.java b/test/edu/cornell/mannlib/vitro/webapp/search/solr/VivoAgentContextNodeFieldsTest.java
index 3caf9b89..372b1e75 100644
--- a/test/edu/cornell/mannlib/vitro/webapp/search/solr/VivoAgentContextNodeFieldsTest.java
+++ b/test/edu/cornell/mannlib/vitro/webapp/search/solr/VivoAgentContextNodeFieldsTest.java
@@ -24,33 +24,33 @@ import edu.cornell.mannlib.vitro.webapp.rdfservice.impl.RDFServiceFactorySingle;
import edu.cornell.mannlib.vitro.webapp.rdfservice.impl.jena.model.RDFServiceModel;
-public class VivoAgentContextNodeFieldsTest extends AbstractTestClass{
-
- static String SPCA = "http://vivo.mydomain.edu/individual/n8087";
-
- static RDFServiceFactory rdfServiceFactory;
-
- @BeforeClass
- public static void setup(){
- Model m = ModelFactory.createDefaultModel();
- InputStream stream = VivoAgentContextNodeFieldsTest
- .class.getResourceAsStream("./NIHVIVO3853_DataSet1.rdf");
-
- long preloadSize = m.size();
-
- m.read(stream, null);
- assertTrue("expected to load statements from file", m.size() > preloadSize );
-
- assertTrue("expect statements about SPCA",
- m.contains(ResourceFactory.createResource(SPCA),(Property) null,(RDFNode) null));
-
+public class VivoAgentContextNodeFieldsTest extends AbstractTestClass{
+
+ static String SPCA = "http://vivo.mydomain.edu/individual/n8087";
+
+ static RDFServiceFactory rdfServiceFactory;
+
+ @BeforeClass
+ public static void setup(){
+ Model m = ModelFactory.createDefaultModel();
+ InputStream stream = VivoAgentContextNodeFieldsTest
+ .class.getResourceAsStream("./NIHVIVO3853_DataSet1.rdf");
+
+ long preloadSize = m.size();
+
+ m.read(stream, null);
+ assertTrue("expected to load statements from file", m.size() > preloadSize );
+
+ assertTrue("expect statements about SPCA",
+ m.contains(ResourceFactory.createResource(SPCA),(Property) null,(RDFNode) null));
+
RDFService rdfService = new RDFServiceModel(m);
rdfServiceFactory = new RDFServiceFactorySingle(rdfService);
- }
-
- @Test
- public void testJane(){
- Individual ind = new IndividualImpl();
+ }
+
+ @Test
+ public void testJane(){
+ Individual ind = new IndividualImpl();
ind.setURI(SPCA);
VivoAgentContextNodeFields vacnf = new VivoAgentContextNodeFields(rdfServiceFactory);
@@ -60,12 +60,12 @@ public class VivoAgentContextNodeFieldsTest extends AbstractTestClass{
String values = sb.toString();
boolean hasJane = values.toLowerCase().indexOf("jane") > 0;
- assertTrue("expected to have jane because SPCA advises jane", hasJane);
- }
-
- @Test
- public void testWonder(){
- Individual ind = new IndividualImpl();
+ assertTrue("expected to have jane because SPCA advises jane", hasJane);
+ }
+
+ @Test
+ public void testWonder(){
+ Individual ind = new IndividualImpl();
ind.setURI(SPCA);
VivoAgentContextNodeFields vacnf = new VivoAgentContextNodeFields(rdfServiceFactory);
@@ -75,12 +75,12 @@ public class VivoAgentContextNodeFieldsTest extends AbstractTestClass{
String values = sb.toString();
boolean hasWonder = values.toLowerCase().indexOf("wonders") > 0;
- assertTrue("expected to have jane because SPCA won wonders award", hasWonder);
- }
-
- @Test
- public void testChimp(){
- Individual ind = new IndividualImpl();
+ assertTrue("expected to have jane because SPCA won wonders award", hasWonder);
+ }
+
+ @Test
+ public void testChimp(){
+ Individual ind = new IndividualImpl();
ind.setURI(SPCA);
VivoAgentContextNodeFields vacnf = new VivoAgentContextNodeFields(rdfServiceFactory);
@@ -90,6 +90,6 @@ public class VivoAgentContextNodeFieldsTest extends AbstractTestClass{
String values = sb.toString();
boolean hasNotChimp = ! (values.toLowerCase().indexOf("chimp") > 0);
- assertTrue("expected to not have chimp because jane won chimp award, not SPCA", hasNotChimp);
- }
-}
+ assertTrue("expected to not have chimp because jane won chimp award, not SPCA", hasNotChimp);
+ }
+}
\ No newline at end of file
diff --git a/themes/wilma/i18n/all.properties b/themes/wilma/i18n/all.properties
index 158f250a..3d43c23c 100644
--- a/themes/wilma/i18n/all.properties
+++ b/themes/wilma/i18n/all.properties
@@ -120,6 +120,7 @@ missing_info_resource = missing information resource
award_receipt_name = award receipt name
award_name = award name
conferred_by = conferred by
+conferred_on = conferred on
selected_award = Selected Award
incomplete_date_time_interval = incomplete date/time interval