Add breadcrumbs in resources pages. Change hide delay in navbar dropdown
This commit is contained in:
parent
89f9bb87bf
commit
81b3a5f8b4
|
@ -3,7 +3,7 @@ import {Component} from "@angular/core";
|
|||
@Component({
|
||||
selector: 'how',
|
||||
template: `
|
||||
<div class="how" uk-scrollspy="target: [uk-scrollspy-class]; cls: uk-animation-fade; delay: 200">
|
||||
<div class="how" uk-scrollspy="target: [uk-scrollspy-class]; cls: uk-animation-fade; delay: 100">
|
||||
<div class="uk-flex uk-flex-wrap">
|
||||
<div class="uk-width-1-3@s first" uk-scrollspy-class>
|
||||
<div>
|
||||
|
|
|
@ -3,15 +3,19 @@ import {properties} from "../../../../environments/environment";
|
|||
import {ActivatedRoute, Router} from "@angular/router";
|
||||
import {Meta, Title} from "@angular/platform-browser";
|
||||
import {SEOService} from "../../sharedComponents/SEO/SEO.service";
|
||||
import {Breadcrumb} from "../../utils/breadcrumbs/breadcrumbs.component";
|
||||
|
||||
@Component({
|
||||
selector: 'indicator-themes-page',
|
||||
template: `
|
||||
<div class="uk-section">
|
||||
<div class="uk-container">
|
||||
<h1>Indicator Themes<span class="uk-text-primary">.</span></h1>
|
||||
</div>
|
||||
<div class="uk-section uk-container">
|
||||
<div class="uk-container uk-container-large uk-section uk-section-small uk-padding-remove-bottom">
|
||||
<div class="uk-padding-small uk-padding-remove-horizontal">
|
||||
<breadcrumbs [breadcrumbs]="breadcrumbs"></breadcrumbs>
|
||||
</div>
|
||||
</div>
|
||||
<div class="uk-section uk-container">
|
||||
<h1>Indicator Themes<span class="uk-text-primary">.</span></h1>
|
||||
<div class="uk-section">
|
||||
<div class="uk-grid uk-grid-large uk-child-width-1-2@m uk-child-width-1-1 uk-flex-middle" uk-grid>
|
||||
<div>
|
||||
<img src="assets/common-assets/monitor-assets/indicator-themes-circle.png">
|
||||
|
@ -38,6 +42,7 @@ import {SEOService} from "../../sharedComponents/SEO/SEO.service";
|
|||
})
|
||||
export class IndicatorThemesComponent implements OnInit {
|
||||
public properties = properties;
|
||||
public breadcrumbs: Breadcrumb[] = [{name: 'home', route: '/'}, {name: 'Resources'}, {name: 'Themes'}];
|
||||
|
||||
constructor(private router: Router,
|
||||
private meta: Meta,
|
||||
|
|
|
@ -1,18 +0,0 @@
|
|||
import {NgModule} from "@angular/core";
|
||||
import {CommonModule} from "@angular/common";
|
||||
import {RouterModule} from "@angular/router";
|
||||
import {IndicatorThemesComponent} from "./indicator-themes.component";
|
||||
import {PreviousRouteRecorder} from "../../utils/piwik/previousRouteRecorder.guard";
|
||||
|
||||
@NgModule({
|
||||
imports: [CommonModule, RouterModule.forChild([
|
||||
{
|
||||
path: '',
|
||||
component: IndicatorThemesComponent,
|
||||
canDeactivate: [PreviousRouteRecorder]
|
||||
},
|
||||
])],
|
||||
declarations: [IndicatorThemesComponent],
|
||||
exports: [IndicatorThemesComponent]
|
||||
})
|
||||
export class IndicatorThemesModule {}
|
|
@ -6,10 +6,16 @@ import {HelperService} from "../../utils/helper/helper.service";
|
|||
import {Meta, Title} from "@angular/platform-browser";
|
||||
import {SEOService} from "../../sharedComponents/SEO/SEO.service";
|
||||
import {ResourcesService} from "../services/resources.service";
|
||||
import {Breadcrumb} from "../../utils/breadcrumbs/breadcrumbs.component";
|
||||
|
||||
@Component({
|
||||
selector: 'indicators-page',
|
||||
template: `
|
||||
<div class="uk-container uk-container-large uk-section uk-section-small uk-padding-remove-bottom">
|
||||
<div class="uk-padding-small uk-padding-remove-horizontal">
|
||||
<breadcrumbs [breadcrumbs]="breadcrumbs"></breadcrumbs>
|
||||
</div>
|
||||
</div>
|
||||
<helper *ngIf="pageContents && pageContents['top'] && pageContents['top'].length > 0" [texts]="pageContents['top']"></helper>
|
||||
`
|
||||
})
|
||||
|
@ -18,6 +24,7 @@ export class IndicatorsComponent implements OnInit, OnDestroy {
|
|||
public types = ResourcesService.types;
|
||||
public properties = properties;
|
||||
public pageContents;
|
||||
public breadcrumbs: Breadcrumb[] = [{name: 'home', route: '/'}, {name: 'Resources'}];
|
||||
|
||||
constructor(private helper: HelperService,
|
||||
private resourcesService: ResourcesService,
|
||||
|
@ -37,6 +44,7 @@ export class IndicatorsComponent implements OnInit, OnDestroy {
|
|||
const description = "Monitor | Indicators for " + type.label;
|
||||
const title = "Monitor | Indicators for " + type.label;
|
||||
this.metaTags(title, description);
|
||||
this.breadcrumbs[2] = {name: type.label};
|
||||
}
|
||||
}
|
||||
}))
|
||||
|
|
|
@ -4,16 +4,23 @@ import {RouterModule} from "@angular/router";
|
|||
import {IndicatorsComponent} from "./indicators.component";
|
||||
import {PreviousRouteRecorder} from "../../utils/piwik/previousRouteRecorder.guard";
|
||||
import {HelperModule} from "../../utils/helper/helper.module";
|
||||
import {IndicatorThemesComponent} from "./indicator-themes.component";
|
||||
import {BreadcrumbsModule} from "../../utils/breadcrumbs/breadcrumbs.module";
|
||||
|
||||
@NgModule({
|
||||
imports: [CommonModule, RouterModule.forChild([
|
||||
{
|
||||
path: '',
|
||||
path: 'themes',
|
||||
component: IndicatorThemesComponent,
|
||||
canDeactivate: [PreviousRouteRecorder]
|
||||
},
|
||||
{
|
||||
path: ':type',
|
||||
component: IndicatorsComponent,
|
||||
canDeactivate: [PreviousRouteRecorder]
|
||||
},
|
||||
]), HelperModule],
|
||||
declarations: [IndicatorsComponent],
|
||||
exports: [IndicatorsComponent]
|
||||
]), HelperModule, BreadcrumbsModule],
|
||||
declarations: [IndicatorsComponent, IndicatorThemesComponent],
|
||||
exports: [IndicatorsComponent, IndicatorThemesComponent]
|
||||
})
|
||||
export class IndicatorsModule {}
|
||||
|
|
|
@ -10,6 +10,7 @@ import {TabsModule} from "../../utils/tabs/tabs.module";
|
|||
import {IconsModule} from "../../utils/icons/icons.module";
|
||||
import {IconsService} from "../../utils/icons/icons.service";
|
||||
import {graph} from "../../utils/icons/icons";
|
||||
import {BreadcrumbsModule} from "../../utils/breadcrumbs/breadcrumbs.module";
|
||||
|
||||
@NgModule({
|
||||
declarations: [TerminologyComponent, SeeHowItWorksComponent],
|
||||
|
@ -29,7 +30,7 @@ import {graph} from "../../utils/icons/icons";
|
|||
component: SeeHowItWorksComponent,
|
||||
canDeactivate: [PreviousRouteRecorder]
|
||||
},
|
||||
]), PageContentModule, HowModule, TabsModule, IconsModule],
|
||||
]), PageContentModule, HowModule, TabsModule, IconsModule, BreadcrumbsModule],
|
||||
exports: [TerminologyComponent, SeeHowItWorksComponent]
|
||||
})
|
||||
export class MethodologyModule {
|
||||
|
|
|
@ -7,38 +7,61 @@ import {OpenaireEntities} from "../../utils/properties/searchFields";
|
|||
import {StakeholderService} from "../services/stakeholder.service";
|
||||
import {SEOService} from "../../sharedComponents/SEO/SEO.service";
|
||||
import {properties} from "../../../../environments/environment";
|
||||
import {Breadcrumb} from "../../utils/breadcrumbs/breadcrumbs.component";
|
||||
|
||||
@Component({
|
||||
selector: 'see-how-it-works',
|
||||
template: `
|
||||
<div class="uk-section">
|
||||
<div id="how" class="uk-container uk-container-large">
|
||||
<h2 class="uk-h1">
|
||||
Inclusion, transparency, <br> quality, state of the art <br> technology<span class="uk-text-primary">.</span>
|
||||
</h2>
|
||||
<div class="uk-margin-large-top uk-card uk-card-default uk-card-body">
|
||||
<p class="uk-margin-top">Our methodological approach is based on the following operational quality criteria:</p>
|
||||
<ul>
|
||||
<li><span class="uk-text-bold">Openness and transparency:</span> Methodological assumptions are openly and clearly presented.</li>
|
||||
<li><span class="uk-text-bold">Coverage and accuracy:</span> As detailed in <a href="https://graph.openaire.eu/" target="_blank">graph.openaire.eu</a>
|
||||
multiple data sources are ingested in the OpenAIRE research graph for coverage to the fullest extent possible, in order to provide meaningful indicators.</li>
|
||||
<li><span class="uk-text-bold">Clarity and replicability:</span> We describe our construction methodology in detail, so that
|
||||
it can be verified and used by the scholarly communication community to create ongoing updates to our proposed statistics and indicators.</li>
|
||||
<li><span class="uk-text-bold">Readiness and timeliness:</span> The methodology is built around well-established open databases
|
||||
and already tested knowledge extraction technologies - natural language processing (NLP)/machine-learning (ML) - using operational
|
||||
workflows in OpenAIRE to warrant timely results.</li>
|
||||
<li><span class="uk-text-bold">Trust and robustness:</span> Our methodology also strives to be reliable, robust, and aligned
|
||||
to other assessment methods so that it can be operationalized, used and reused, in conjunction with other assessment methods.</li>
|
||||
</ul>
|
||||
<div class="uk-text-small uk-text-italic uk-text-right">The text above is modified from <a href="https://op.europa.eu/en/publication-detail/-/publication/56cc104f-0ebb-11ec-b771-01aa75ed71a1"
|
||||
target="_blank">this report</a> (DOI: 10.2777/268348).</div>
|
||||
</div>
|
||||
<div class="uk-margin-large-top uk-padding-small">
|
||||
<h3 class="uk-h4">Step-by-step</h3>
|
||||
<how></how>
|
||||
<div class="uk-container uk-container-large uk-section uk-section-small uk-padding-remove-bottom">
|
||||
<div class="uk-padding-small uk-padding-remove-horizontal">
|
||||
<breadcrumbs [breadcrumbs]="breadcrumbs"></breadcrumbs>
|
||||
</div>
|
||||
</div>
|
||||
<div class="uk-section" uk-scrollspy="target: [uk-scrollspy-class]; cls: uk-animation-fade; delay: 250">
|
||||
<div id="how" class="uk-container uk-container-large">
|
||||
<h2 class="uk-h1" uk-scrollspy-class>
|
||||
Inclusion, transparency, <br> quality, state of the art <br> technology<span class="uk-text-primary">.</span>
|
||||
</h2>
|
||||
<div class="uk-margin-large-top uk-card uk-card-default uk-card-body" uk-scrollspy-class>
|
||||
<p class="uk-margin-top">Our methodological approach is based on the following operational quality
|
||||
criteria:</p>
|
||||
<ul>
|
||||
<li><span class="uk-text-bold">Openness and transparency:</span> Methodological assumptions are openly and
|
||||
clearly presented.
|
||||
</li>
|
||||
<li><span class="uk-text-bold">Coverage and accuracy:</span> As detailed in <a
|
||||
href="https://graph.openaire.eu/" target="_blank">graph.openaire.eu</a>
|
||||
multiple data sources are ingested in the OpenAIRE research graph for coverage to the fullest extent
|
||||
possible, in order to provide meaningful indicators.
|
||||
</li>
|
||||
<li><span class="uk-text-bold">Clarity and replicability:</span> We describe our construction methodology in
|
||||
detail, so that
|
||||
it can be verified and used by the scholarly communication community to create ongoing updates to our
|
||||
proposed statistics and indicators.
|
||||
</li>
|
||||
<li><span class="uk-text-bold">Readiness and timeliness:</span> The methodology is built around
|
||||
well-established open databases
|
||||
and already tested knowledge extraction technologies - natural language processing (NLP)/machine-learning
|
||||
(ML) - using operational
|
||||
workflows in OpenAIRE to warrant timely results.
|
||||
</li>
|
||||
<li><span class="uk-text-bold">Trust and robustness:</span> Our methodology also strives to be reliable,
|
||||
robust, and aligned
|
||||
to other assessment methods so that it can be operationalized, used and reused, in conjunction with other
|
||||
assessment methods.
|
||||
</li>
|
||||
</ul>
|
||||
<div class="uk-text-small uk-text-italic uk-text-right">The text above is modified from <a
|
||||
href="https://op.europa.eu/en/publication-detail/-/publication/56cc104f-0ebb-11ec-b771-01aa75ed71a1"
|
||||
target="_blank">this report</a> (DOI: 10.2777/268348).
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="uk-margin-large-top uk-padding-small" uk-scrollspy-class>
|
||||
<h3 class="uk-h4">Step-by-step</h3>
|
||||
<how></how>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
`
|
||||
})
|
||||
export class SeeHowItWorksComponent implements OnInit, OnDestroy {
|
||||
|
@ -46,7 +69,11 @@ export class SeeHowItWorksComponent implements OnInit, OnDestroy {
|
|||
public tab: 'entities' | 'attributes' = 'entities';
|
||||
private subscriptions: any[] = [];
|
||||
public openaireEntities = OpenaireEntities;
|
||||
|
||||
public breadcrumbs: Breadcrumb[] = [{name: 'home', route: '/'}, {name: 'Resources'}, {
|
||||
name: 'See how it works',
|
||||
keepFormat: true
|
||||
}];
|
||||
|
||||
constructor(private stakeholderService: StakeholderService,
|
||||
private seoService: SEOService,
|
||||
private _meta: Meta,
|
||||
|
|
|
@ -7,394 +7,444 @@ import {OpenaireEntities} from "../../utils/properties/searchFields";
|
|||
import {StakeholderService} from "../services/stakeholder.service";
|
||||
import {SEOService} from "../../sharedComponents/SEO/SEO.service";
|
||||
import {properties} from "../../../../environments/environment";
|
||||
import {Breadcrumb} from "../../utils/breadcrumbs/breadcrumbs.component";
|
||||
|
||||
@Component({
|
||||
selector: 'terminology',
|
||||
template: `
|
||||
<div class="uk-section">
|
||||
<div class="uk-container uk-container-large">
|
||||
<h1>Terminology and <br> construction<span class="uk-text-primary">.</span></h1>
|
||||
</div>
|
||||
<div class="uk-section uk-container uk-container-large">
|
||||
<ul class="uk-tab" uk-tab>
|
||||
<li>
|
||||
<a>Entities</a>
|
||||
</li>
|
||||
<li>
|
||||
<a>Inherited and Inferred Attributes</a>
|
||||
</li>
|
||||
<li>
|
||||
<a>Constructed Attributes</a>
|
||||
</li>
|
||||
</ul>
|
||||
<ul class="uk-switcher">
|
||||
<li>
|
||||
<dl class="uk-description-list uk-description-list-divider">
|
||||
<div class="uk-grid uk-padding-small" uk-grid>
|
||||
<dt class="uk-width-1-5@m uk-width-1-1 uk-text-primary">{{openaireEntities.RESULTS}}</dt>
|
||||
<dd class="uk-width-expand">
|
||||
<div>There are currently four different types of {{openaireEntities.RESULTS | lowercase}} in the OpenAIRE Research <br> Graph:</div>
|
||||
<ul class="uk-list uk-list-bullet uk-list-primary">
|
||||
<li>{{openaireEntities.PUBLICATIONS}}</li>
|
||||
<li>{{openaireEntities.DATASETS}}</li>
|
||||
<li>{{openaireEntities.SOFTWARE}}</li>
|
||||
<li>{{openaireEntities.OTHER}}.</li>
|
||||
</ul>
|
||||
<div class="uk-margin-small-top">
|
||||
OpenAIRE deduplicates (merges) different records of {{openaireEntities.RESULTS | lowercase}} and keeps the <br> metadata of all instances.
|
||||
</div>
|
||||
</dd>
|
||||
</div>
|
||||
<hr>
|
||||
<div class="uk-grid uk-padding-small" uk-grid>
|
||||
<dt class="uk-width-1-5@m uk-width-1-1">{{openaireEntities.PUBLICATION}}</dt>
|
||||
<dd class="uk-width-expand">
|
||||
{{openaireEntities.RESULTS}} intended for human reading (published articles, pre-prints, conference <br> papers, presentations, technical reports, etc.)
|
||||
</dd>
|
||||
</div>
|
||||
<hr>
|
||||
<div class="uk-grid uk-padding-small" uk-grid>
|
||||
<dt class="uk-width-1-5@m uk-width-1-1">{{openaireEntities.DATASET}}</dt>
|
||||
<dd class="uk-width-expand">
|
||||
<!-- <div>{{openaireEntities.DATASET}}</div>-->
|
||||
<div>Granularity is not defined by OpenAIRE, it reflects the granularity supported by
|
||||
the sources <br> from which the description of the {{openaireEntities.DATASET | lowercase}} has been collected.</div>
|
||||
</dd>
|
||||
</div>
|
||||
<hr>
|
||||
<div class="uk-grid uk-padding-small" uk-grid>
|
||||
<dt class="uk-width-1-5@m uk-width-1-1">{{openaireEntities.SOFTWARE_SINGULAR}}</dt>
|
||||
<dd class="uk-width-expand">
|
||||
Source code or software package developed and/or used in a research context
|
||||
</dd>
|
||||
</div>
|
||||
<hr>
|
||||
<div class="uk-grid uk-padding-small" uk-grid>
|
||||
<dt class="uk-width-1-5@m uk-width-1-1">{{openaireEntities.OTHER_SINGULAR}}</dt>
|
||||
<dd class="uk-width-expand">
|
||||
Anything that does not fall in the previous categories (e.g. workflow, methods, protocols)
|
||||
</dd>
|
||||
</div>
|
||||
</dl>
|
||||
</li>
|
||||
<li>
|
||||
<div class="uk-text-center uk-padding">
|
||||
The attributes of entities listed below are either inherited via entries in the harvested metadata records or automatically generated by our inference (text and data mining) algorithms.
|
||||
</div>
|
||||
<hr>
|
||||
<dl class="uk-description-list uk-description-list-divider">
|
||||
<div class="uk-grid uk-padding-small" uk-grid>
|
||||
<dt class="uk-width-1-5@m uk-width-1-1">{{openaireEntities.ORGANIZATION}}</dt>
|
||||
<dd class="uk-width-expand">
|
||||
<p><span class="uk-text-bold">For {{openaireEntities.RESULTS | lowercase}},</span> this refers to the affiliated organizations of its authors</p>
|
||||
<p><span class="uk-text-bold">For {{openaireEntities.PROJECTS | lowercase}}:</span> the {{openaireEntities.ORGANIZATIONS | lowercase}} participating in the {{openaireEntities.PROJECT | lowercase}}
|
||||
(i.e. beneficiaries of the grant)</p>
|
||||
<p>The OpenAIRE research graph is in the process of improving the {{openaireEntities.ORGANIZATION | lowercase}} database (disambiguation) with the newly developed <a href="https://www.openaire.eu/blogs/openorgs-bridging-registries-of-research-organisations" target="_blank">OpenOrgs</a> tool.</p>
|
||||
</dd>
|
||||
</div>
|
||||
<hr>
|
||||
<div class="uk-grid uk-padding-small" uk-grid>
|
||||
<dt class="uk-width-1-5@m uk-width-1-1">Country</dt>
|
||||
<dd class="uk-width-expand">
|
||||
<p>The country of the {{openaireEntities.ORGANIZATION | lowercase}}. </p>
|
||||
<p>
|
||||
<span class="uk-text-bold">Country code mapping: </span>
|
||||
<a href="https://api.openaire.eu/vocabularies/dnet:countries" target="_blank">
|
||||
https://api.openaire.eu/vocabularies/dnet:countries</a>
|
||||
</p>
|
||||
</dd>
|
||||
</div>
|
||||
<hr>
|
||||
<div class="uk-grid uk-padding-small" uk-grid>
|
||||
<dt class="uk-width-1-5@m uk-width-1-1">Funder</dt>
|
||||
<dd class="uk-width-expand">
|
||||
<p>Funders that have joined OpenAIRE, i.e. their {{openaireEntities.PROJECT | lowercase}} data have gone through a validation process.</p>
|
||||
<p>You can visit <a class="https://explore.openaire.eu/search/find" target="_blank">https://explore.openaire.eu/search/find</a> if you would like to explore the {{openaireEntities.RESULTS | lowercase}} and {{openaireEntities.PROJECTS | lowercase}} of all funders in OpenAIRE (the list of funders can be seen under the "Funder" Filter shown on the left side of the page).</p>
|
||||
<p><span class="uk-text-bold">To join: </span><a href="https://www.openaire.eu/funders-how-to-join-guide" target="_blank">https://www.openaire.eu/funders-how-to-join-guide</a></p>
|
||||
</dd>
|
||||
</div>
|
||||
<hr>
|
||||
<div class="uk-grid uk-padding-small" uk-grid>
|
||||
<dt class="uk-width-1-5@m uk-width-1-1">Type</dt>
|
||||
<dd class="uk-width-expand">
|
||||
<p>The sub-type of a {{openaireEntities.RESULT | lowercase}} (e.g., a {{openaireEntities.PUBLICATION | lowercase}} can be a pre-print, conference proceeding,
|
||||
article,
|
||||
etc.)</p>
|
||||
<p><span class="uk-text-bold">Resource type mapping: </span>
|
||||
<a href="https://api.openaire.eu/vocabularies/dnet:result_typologies" target="_blank">https://api.openaire.eu/vocabularies/dnet:result_typologies</a>
|
||||
(click on the code to see the specific types for each result type)
|
||||
</p>
|
||||
</dd>
|
||||
</div>
|
||||
<hr>
|
||||
<div class="uk-grid uk-padding-small" uk-grid>
|
||||
<dt class="uk-width-1-5@m uk-width-1-1">Access mode or access rights</dt>
|
||||
<dd class="uk-width-expand">
|
||||
<p>The best available (across all instances) access rights of a {{openaireEntities.RESULT | lowercase}}</p>
|
||||
<p>Types: open, restricted, closed, embargo (= closed for a specific period of time, then open)</p>
|
||||
<p><span class="uk-text-bold">Note:</span> definition of <span class="uk-text-bold">restricted</span>
|
||||
may vary by data source, it may refer to access rights being given to registered users, potentially behind a paywall.</p>
|
||||
</dd>
|
||||
</div>
|
||||
<hr>
|
||||
<div class="uk-grid uk-padding-small" uk-grid>
|
||||
<dt class="uk-width-1-5@m uk-width-1-1">CC license</dt>
|
||||
<dd class="uk-width-expand">
|
||||
<p>A Creative Commons copyright license <a href="(https://creativecommons.org/)" target="_blank">(https://creativecommons.org/)</a></p>
|
||||
</dd>
|
||||
</div>
|
||||
<hr>
|
||||
<div class="uk-grid uk-padding-small" uk-grid>
|
||||
<dt class="uk-width-1-5@m uk-width-1-1">PID (persistent identifier)</dt>
|
||||
<dd class="uk-width-expand">
|
||||
<p>A long-lasting reference to a resource</p>
|
||||
<p><span class="uk-text-bold">Types: </span> <a
|
||||
href="http://api.openaire.eu/vocabularies/dnet:pid_types" target="_blank">http://api.openaire.eu/vocabularies/dnet:pid_types</a>
|
||||
</p>
|
||||
</dd>
|
||||
</div>
|
||||
<hr>
|
||||
<div class="uk-grid uk-padding-small" uk-grid>
|
||||
<dt class="uk-width-1-5@m uk-width-1-1">Context</dt>
|
||||
<dd class="uk-width-expand">
|
||||
Related {{openaireEntities.COMMUNITY | lowercase}}, initiative or infrastructure.
|
||||
</dd>
|
||||
</div>
|
||||
<hr>
|
||||
<div class="uk-grid uk-padding-small" uk-grid>
|
||||
<dt class="uk-width-1-5@m uk-width-1-1">Journal</dt>
|
||||
<dd class="uk-width-expand">
|
||||
The scientific journal an article is published in.
|
||||
</dd>
|
||||
</div>
|
||||
<hr>
|
||||
<div class="uk-grid uk-padding-small" uk-grid>
|
||||
<dt class="uk-width-1-5@m uk-width-1-1">Publisher</dt>
|
||||
<dd class="uk-width-expand">
|
||||
The publisher of the venue (journal, book, etc.) of a {{openaireEntities.RESULT | lowercase}}.
|
||||
</dd>
|
||||
</div>
|
||||
<hr>
|
||||
<div class="uk-grid uk-padding-small" uk-grid>
|
||||
<dt class="uk-width-1-5@m uk-width-1-1 uk-text-primary">{{openaireEntities.DATASOURCES}}</dt>
|
||||
<dd class="uk-width-expand">
|
||||
<p>The different data sources ingested in the OpenAIRE Research Graph.</p>
|
||||
<div class="uk-text-bold">Data Source Types:</div>
|
||||
<ul class="uk-list uk-list-disc">
|
||||
<li>Repositories</li>
|
||||
<li>Open Access Publishers & Journals</li>
|
||||
<li>Aggregators</li>
|
||||
<li>Entity Registries</li>
|
||||
<li>Journal Aggregators</li>
|
||||
<li>CRIS (Current Research Information System)</li>
|
||||
</ul>
|
||||
</dd>
|
||||
</div>
|
||||
<hr>
|
||||
<div class="uk-grid uk-padding-small" uk-grid>
|
||||
<dt class="uk-width-1-5@m uk-width-1-1">Repositories</dt>
|
||||
<dd class="uk-width-expand">
|
||||
Information systems where scientists upload the bibliographic metadata and payloads of their
|
||||
{{openaireEntities.RESULTS | lowercase}} (e.g. PDFs of their scientific articles, CSVs of their data, archive with their
|
||||
software), due to obligations from their {{openaireEntities.ORGANIZATIONS | lowercase}}, their funders, or due to community practices
|
||||
(e.g. ArXiv, Europe PMC, Zenodo).
|
||||
</dd>
|
||||
</div>
|
||||
<hr>
|
||||
<div class="uk-grid uk-padding-small" uk-grid>
|
||||
<dt class="uk-width-1-5@m uk-width-1-1">Open Access Publishers & Journals</dt>
|
||||
<dd class="uk-width-expand">
|
||||
Information systems of open access publishers or relative journals, which offer bibliographic
|
||||
metadata and PDFs of their published articles.
|
||||
</dd>
|
||||
</div>
|
||||
<hr>
|
||||
<div class="uk-grid uk-padding-small" uk-grid>
|
||||
<dt class="uk-width-1-5@m uk-width-1-1">Aggregators</dt>
|
||||
<dd class="uk-width-expand">
|
||||
Information systems that collect descriptive metadata about {{openaireEntities.RESULTS | lowercase}} from multiple sources
|
||||
in order to enable cross-data source discovery of given {{openaireEntities.RESULTS | lowercase}} (e,g, DataCite,
|
||||
BASE, DOAJ).
|
||||
</dd>
|
||||
</div>
|
||||
<hr>
|
||||
<div class="uk-grid uk-padding-small" uk-grid>
|
||||
<dt class="uk-width-1-5@m uk-width-1-1">Entity Registries</dt>
|
||||
<dd class="uk-width-expand">
|
||||
Information systems created with the intent of maintaining authoritative registries of given
|
||||
entities in the scholarly communication, such as OpenDOAR for the institutional repositories, re3data
|
||||
for the data repositories, CORDA and other funder databases for {{openaireEntities.PROJECTS | lowercase}} and funding information.
|
||||
</dd>
|
||||
</div>
|
||||
<hr>
|
||||
<div class="uk-grid uk-padding-small" uk-grid>
|
||||
<dt class="uk-width-1-5@m uk-width-1-1">CRIS (Current Research Information System)</dt>
|
||||
<dd class="uk-width-expand">
|
||||
Information systems adopted by research and academic {{openaireEntities.ORGANIZATIONS | lowercase}} to keep track of their research
|
||||
administration records and relative results; examples of CRIS content are articles or {{openaireEntities.DATASETS | lowercase}} funded
|
||||
by {{openaireEntities.PROJECTS | lowercase}}, their principal investigators, facilities acquired thanks to funding, etc.
|
||||
</dd>
|
||||
</div>
|
||||
</dl>
|
||||
</li>
|
||||
<li>
|
||||
<div class="uk-text-center uk-padding">
|
||||
The attributes of entities under this tab are constructed following the methodology described below.
|
||||
</div>
|
||||
<hr>
|
||||
<dl class="uk-description-list uk-description-list-divider">
|
||||
<div class="uk-grid uk-padding-small" uk-grid>
|
||||
<dt class="uk-width-1-3@m uk-width-1-1">Attribute</dt>
|
||||
<dd class="uk-width-1-3@m uk-width-1-1 uk-text-bold">Definition</dd>
|
||||
<dd class="uk-width-1-3@m uk-width-1-1 uk-text-bold">Construction</dd>
|
||||
</div>
|
||||
<hr>
|
||||
<div class="uk-padding-small uk-text-bold uk-text-primary">
|
||||
Journal Business Models
|
||||
</div>
|
||||
<hr>
|
||||
<div class="uk-grid uk-padding-small" uk-grid>
|
||||
<dt class="uk-width-1-3@m uk-width-1-1">Fully Open Access (OA)</dt>
|
||||
<dd class="uk-width-1-3@m uk-width-1-1">
|
||||
<p>A journal that publishes only in open access.</p>
|
||||
</dd>
|
||||
<dd class="uk-width-1-3@m uk-width-1-1">
|
||||
<p>We construct the list of fully OA journals using Unpaywall data. </p>
|
||||
<p>In brief, a journal is fully OA if </p>
|
||||
<ol>
|
||||
<li>It is in the Directory of Open Access Journals (DOAJ) </li>
|
||||
<li>It has a known (curated list) fully OA Publisher. </li>
|
||||
<li>It only publishes OA articles. </li>
|
||||
</ol>
|
||||
<p><a href="https://support.unpaywall.org/support/solutions/articles/44001792752-how-do-we-decide-if-a-given-journal-is-fully-oa-" target="_blank">More information</a></p>
|
||||
</dd>
|
||||
</div>
|
||||
<hr>
|
||||
<div class="uk-grid uk-padding-small" uk-grid>
|
||||
<dt class="uk-width-1-3@m uk-width-1-1">Subscription</dt>
|
||||
<dd class="uk-width-1-3@m uk-width-1-1">
|
||||
<p>A journal that charges for access to its articles.</p>
|
||||
</dd>
|
||||
<dd class="uk-width-1-3@m uk-width-1-1">
|
||||
<p>Journals without any open access articles.</p>
|
||||
</dd>
|
||||
</div>
|
||||
<hr>
|
||||
<div class="uk-grid uk-padding-small" uk-grid>
|
||||
<dt class="uk-width-1-3@m uk-width-1-1">Hybrid</dt>
|
||||
<dd class="uk-width-1-3@m uk-width-1-1">
|
||||
<p>A subscription journal where some of its articles are open access.</p>
|
||||
</dd>
|
||||
<dd class="uk-width-1-3@m uk-width-1-1">
|
||||
<p>Journals with open access articles that are not fully OA journals are hybrid.</p>
|
||||
</dd>
|
||||
</div>
|
||||
<hr>
|
||||
<div class="uk-grid uk-padding-small" uk-grid>
|
||||
<dt class="uk-width-1-3@m uk-width-1-1">Transformative</dt>
|
||||
<dd class="uk-width-1-3@m uk-width-1-1">
|
||||
<p>"A Transformative Journal is a subscription/hybrid journal that is actively committed to transitioning to a fully Open Access journal.</p>
|
||||
<p>In addition, a Transformative Journal must:</p>
|
||||
<ul>
|
||||
<li>gradually increase the share of Open Access content; and</li>
|
||||
<li>offset subscription income from payments for publishing services (to avoid double payments)."</li>
|
||||
</ul>
|
||||
<p>Source:</p>
|
||||
<p><a href="https://www.coalition-s.org/transformative-journals-faq/" target="_blank">https://www.coalition-s.org/transformative-journals-faq/</a></p>
|
||||
</dd>
|
||||
<dd class="uk-width-1-3@m uk-width-1-1">
|
||||
<p>Transformative Journals are identified by ISSN matching with the publicly available Transformative Journals data (<a href="https://journalcheckertool.org/transformative-journals/" target="_blank">https://journalcheckertool.org/transformative-journals/</a>)</p>
|
||||
</dd>
|
||||
</div>
|
||||
<hr>
|
||||
<div class="uk-padding-small uk-text-bold uk-text-primary">
|
||||
Journal APC Business Models
|
||||
</div>
|
||||
<hr>
|
||||
<div class="uk-grid uk-padding-small" uk-grid>
|
||||
<dt class="uk-width-1-3@m uk-width-1-1">Diamond OA</dt>
|
||||
<dd class="uk-width-1-3@m uk-width-1-1">
|
||||
<p>A fully OA journal that does not charge article processing charges (APCs).</p>
|
||||
</dd>
|
||||
<dd class="uk-width-1-3@m uk-width-1-1">
|
||||
<p>APC information is obtained from DOAJ using DOAJ’s exportable version of the journal metadata (<a href="https://doaj.org/docs/public-data-dump/" target="_blank">https://doaj.org/docs/public-data-dump/</a>). We used it to determine whether a particular fully OA journal charges APCs. </p>
|
||||
</dd>
|
||||
</div>
|
||||
<hr>
|
||||
<div class="uk-padding-small uk-text-bold uk-text-primary">
|
||||
Routes to Open Access (OA)
|
||||
</div>
|
||||
<hr>
|
||||
<div class="uk-grid uk-padding-small" uk-grid>
|
||||
<dt class="uk-width-1-3@m uk-width-1-1">Green OA</dt>
|
||||
<dd class="uk-width-1-3@m uk-width-1-1">
|
||||
<p>An open access scientific publication deposited in a repository</p>
|
||||
</dd>
|
||||
<dd class="uk-width-1-3@m uk-width-1-1">
|
||||
<p>As in definition</p>
|
||||
</dd>
|
||||
</div>
|
||||
<hr>
|
||||
<div class="uk-grid uk-padding-small" uk-grid>
|
||||
<dt class="uk-width-1-3@m uk-width-1-1">Gold OA</dt>
|
||||
<dd class="uk-width-1-3@m uk-width-1-1">
|
||||
<p>A scientific publication published in a fully OA journal.</p>
|
||||
</dd>
|
||||
<dd class="uk-width-1-3@m uk-width-1-1">
|
||||
<p>Fully OA journals are defined above.</p>
|
||||
</dd>
|
||||
</div>
|
||||
<hr>
|
||||
<div class="uk-grid uk-padding-small" uk-grid>
|
||||
<dt class="uk-width-1-3@m uk-width-1-1">Hybrid OA</dt>
|
||||
<dd class="uk-width-1-3@m uk-width-1-1">
|
||||
<p>An open access scientific publication published in a hybrid journal with an open license.</p>
|
||||
</dd>
|
||||
<dd class="uk-width-1-3@m uk-width-1-1">
|
||||
<p>Hybrid journals are defined above.</p>
|
||||
<p>At this point we consider only CC licenses “open”, we are currently working on cleaning non-CC licenses as well to identify other open ones.</p>
|
||||
<p>In principle, this means that we may be underestimating the number of hybrid OA articles and overestimating the number of bronze.</p>
|
||||
</dd>
|
||||
</div>
|
||||
<hr>
|
||||
<div class="uk-grid uk-padding-small" uk-grid>
|
||||
<dt class="uk-width-1-3@m uk-width-1-1">Bronze OA</dt>
|
||||
<dd class="uk-width-1-3@m uk-width-1-1">
|
||||
<p>An open access scientific publication published in a hybrid journal without an open license.</p>
|
||||
</dd>
|
||||
<dd class="uk-width-1-3@m uk-width-1-1">
|
||||
|
||||
</dd>
|
||||
</div>
|
||||
<hr>
|
||||
<div class="uk-padding-small uk-text-bold uk-text-primary">
|
||||
Miscellaneous
|
||||
</div>
|
||||
<hr>
|
||||
<div class="uk-grid uk-padding-small" uk-grid>
|
||||
<dt class="uk-width-1-3@m uk-width-1-1">Downloads</dt>
|
||||
<dd class="uk-width-1-3@m uk-width-1-1">
|
||||
<p>The number of downloads of a publication’s full text in a specific time frame, from a given set of data sources.</p>
|
||||
</dd>
|
||||
<dd class="uk-width-1-3@m uk-width-1-1">
|
||||
<p>Data for downloads is taken from OpenAIRE’s Usage Counts service that harvests it from a set of repositories. The time range of available downloads varies for each repository.</p>
|
||||
<p>
|
||||
<a href="https://www.openaire.eu/guides-usage-counts" target="_blank">More information</a>
|
||||
</p>
|
||||
</dd>
|
||||
</div>
|
||||
<hr>
|
||||
</dl>
|
||||
</li>
|
||||
</ul>
|
||||
<div class="uk-margin-medium-top">
|
||||
<icon name="graph" customClass="text-graph"></icon>
|
||||
<span class="uk-margin-small-left uk-text-meta">More information for </span>
|
||||
<a href="https://graph.openaire.eu" class="text-graph">OpenAIRE Research Graph</a>
|
||||
<span class="uk-text-meta">.</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="uk-container uk-container-large uk-section uk-section-small uk-padding-remove-bottom">
|
||||
<div class="uk-padding-small uk-padding-remove-horizontal">
|
||||
<breadcrumbs [breadcrumbs]="breadcrumbs"></breadcrumbs>
|
||||
</div>
|
||||
</div>
|
||||
<div class="uk-section" uk-scrollspy="target: [uk-scrollspy-class]; cls: uk-animation-fade; delay: 250">
|
||||
<div class="uk-container uk-container-large" uk-scrollspy-class>
|
||||
<h1>Terminology and <br> construction<span class="uk-text-primary">.</span></h1>
|
||||
</div>
|
||||
<div class="uk-section uk-container uk-container-large" uk-scrollspy-class>
|
||||
<ul class="uk-tab" uk-tab>
|
||||
<li>
|
||||
<a>Entities</a>
|
||||
</li>
|
||||
<li>
|
||||
<a>Inherited and Inferred Attributes</a>
|
||||
</li>
|
||||
<li>
|
||||
<a>Constructed Attributes</a>
|
||||
</li>
|
||||
</ul>
|
||||
<ul class="uk-switcher">
|
||||
<li>
|
||||
<dl class="uk-description-list uk-description-list-divider">
|
||||
<div class="uk-grid uk-padding-small" uk-grid>
|
||||
<dt class="uk-width-1-5@m uk-width-1-1 uk-text-primary">{{openaireEntities.RESULTS}}</dt>
|
||||
<dd class="uk-width-expand">
|
||||
<div>There are currently four different types of {{openaireEntities.RESULTS | lowercase}} in the
|
||||
OpenAIRE Research <br> Graph:
|
||||
</div>
|
||||
<ul class="uk-list uk-list-bullet uk-list-primary">
|
||||
<li>{{openaireEntities.PUBLICATIONS}}</li>
|
||||
<li>{{openaireEntities.DATASETS}}</li>
|
||||
<li>{{openaireEntities.SOFTWARE}}</li>
|
||||
<li>{{openaireEntities.OTHER}}.</li>
|
||||
</ul>
|
||||
<div class="uk-margin-small-top">
|
||||
OpenAIRE deduplicates (merges) different records of {{openaireEntities.RESULTS | lowercase}} and
|
||||
keeps the <br> metadata of all instances.
|
||||
</div>
|
||||
</dd>
|
||||
</div>
|
||||
<hr>
|
||||
<div class="uk-grid uk-padding-small" uk-grid>
|
||||
<dt class="uk-width-1-5@m uk-width-1-1">{{openaireEntities.PUBLICATION}}</dt>
|
||||
<dd class="uk-width-expand">
|
||||
{{openaireEntities.RESULTS}} intended for human reading (published articles, pre-prints, conference
|
||||
<br> papers, presentations, technical reports, etc.)
|
||||
</dd>
|
||||
</div>
|
||||
<hr>
|
||||
<div class="uk-grid uk-padding-small" uk-grid>
|
||||
<dt class="uk-width-1-5@m uk-width-1-1">{{openaireEntities.DATASET}}</dt>
|
||||
<dd class="uk-width-expand">
|
||||
<!-- <div>{{openaireEntities.DATASET}}</div>-->
|
||||
<div>Granularity is not defined by OpenAIRE, it reflects the granularity supported by
|
||||
the sources <br> from which the description of the {{openaireEntities.DATASET | lowercase}} has been
|
||||
collected.
|
||||
</div>
|
||||
</dd>
|
||||
</div>
|
||||
<hr>
|
||||
<div class="uk-grid uk-padding-small" uk-grid>
|
||||
<dt class="uk-width-1-5@m uk-width-1-1">{{openaireEntities.SOFTWARE_SINGULAR}}</dt>
|
||||
<dd class="uk-width-expand">
|
||||
Source code or software package developed and/or used in a research context
|
||||
</dd>
|
||||
</div>
|
||||
<hr>
|
||||
<div class="uk-grid uk-padding-small" uk-grid>
|
||||
<dt class="uk-width-1-5@m uk-width-1-1">{{openaireEntities.OTHER_SINGULAR}}</dt>
|
||||
<dd class="uk-width-expand">
|
||||
Anything that does not fall in the previous categories (e.g. workflow, methods, protocols)
|
||||
</dd>
|
||||
</div>
|
||||
</dl>
|
||||
</li>
|
||||
<li>
|
||||
<div class="uk-text-center uk-padding">
|
||||
The attributes of entities listed below are either inherited via entries in the harvested metadata records
|
||||
or automatically generated by our inference (text and data mining) algorithms.
|
||||
</div>
|
||||
<hr>
|
||||
<dl class="uk-description-list uk-description-list-divider">
|
||||
<div class="uk-grid uk-padding-small" uk-grid>
|
||||
<dt class="uk-width-1-5@m uk-width-1-1">{{openaireEntities.ORGANIZATION}}</dt>
|
||||
<dd class="uk-width-expand">
|
||||
<p><span class="uk-text-bold">For {{openaireEntities.RESULTS | lowercase}},</span> this refers to the
|
||||
affiliated organizations of its authors</p>
|
||||
<p><span class="uk-text-bold">For {{openaireEntities.PROJECTS | lowercase}}:</span>
|
||||
the {{openaireEntities.ORGANIZATIONS | lowercase}} participating in
|
||||
the {{openaireEntities.PROJECT | lowercase}}
|
||||
(i.e. beneficiaries of the grant)</p>
|
||||
<p>The OpenAIRE research graph is in the process of improving
|
||||
the {{openaireEntities.ORGANIZATION | lowercase}} database (disambiguation) with the newly developed
|
||||
<a href="https://www.openaire.eu/blogs/openorgs-bridging-registries-of-research-organisations"
|
||||
target="_blank">OpenOrgs</a> tool.</p>
|
||||
</dd>
|
||||
</div>
|
||||
<hr>
|
||||
<div class="uk-grid uk-padding-small" uk-grid>
|
||||
<dt class="uk-width-1-5@m uk-width-1-1">Country</dt>
|
||||
<dd class="uk-width-expand">
|
||||
<p>The country of the {{openaireEntities.ORGANIZATION | lowercase}}. </p>
|
||||
<p>
|
||||
<span class="uk-text-bold">Country code mapping: </span>
|
||||
<a href="https://api.openaire.eu/vocabularies/dnet:countries" target="_blank">
|
||||
https://api.openaire.eu/vocabularies/dnet:countries</a>
|
||||
</p>
|
||||
</dd>
|
||||
</div>
|
||||
<hr>
|
||||
<div class="uk-grid uk-padding-small" uk-grid>
|
||||
<dt class="uk-width-1-5@m uk-width-1-1">Funder</dt>
|
||||
<dd class="uk-width-expand">
|
||||
<p>Funders that have joined OpenAIRE, i.e. their {{openaireEntities.PROJECT | lowercase}} data have
|
||||
gone through a validation process.</p>
|
||||
<p>You can visit <a class="https://explore.openaire.eu/search/find" target="_blank">https://explore.openaire.eu/search/find</a>
|
||||
if you would like to explore the {{openaireEntities.RESULTS | lowercase}}
|
||||
and {{openaireEntities.PROJECTS | lowercase}} of all funders in OpenAIRE (the list of funders can be
|
||||
seen under the "Funder" Filter shown on the left side of the page).</p>
|
||||
<p><span class="uk-text-bold">To join: </span><a
|
||||
href="https://www.openaire.eu/funders-how-to-join-guide" target="_blank">https://www.openaire.eu/funders-how-to-join-guide</a>
|
||||
</p>
|
||||
</dd>
|
||||
</div>
|
||||
<hr>
|
||||
<div class="uk-grid uk-padding-small" uk-grid>
|
||||
<dt class="uk-width-1-5@m uk-width-1-1">Type</dt>
|
||||
<dd class="uk-width-expand">
|
||||
<p>The sub-type of a {{openaireEntities.RESULT | lowercase}} (e.g.,
|
||||
a {{openaireEntities.PUBLICATION | lowercase}} can be a pre-print, conference proceeding,
|
||||
article,
|
||||
etc.)</p>
|
||||
<p><span class="uk-text-bold">Resource type mapping: </span>
|
||||
<a href="https://api.openaire.eu/vocabularies/dnet:result_typologies" target="_blank">https://api.openaire.eu/vocabularies/dnet:result_typologies</a>
|
||||
(click on the code to see the specific types for each result type)
|
||||
</p>
|
||||
</dd>
|
||||
</div>
|
||||
<hr>
|
||||
<div class="uk-grid uk-padding-small" uk-grid>
|
||||
<dt class="uk-width-1-5@m uk-width-1-1">Access mode or access rights</dt>
|
||||
<dd class="uk-width-expand">
|
||||
<p>The best available (across all instances) access rights of
|
||||
a {{openaireEntities.RESULT | lowercase}}</p>
|
||||
<p>Types: open, restricted, closed, embargo (= closed for a specific period of time, then open)</p>
|
||||
<p><span class="uk-text-bold">Note:</span> definition of <span class="uk-text-bold">restricted</span>
|
||||
may vary by data source, it may refer to access rights being given to registered users, potentially
|
||||
behind a paywall.</p>
|
||||
</dd>
|
||||
</div>
|
||||
<hr>
|
||||
<div class="uk-grid uk-padding-small" uk-grid>
|
||||
<dt class="uk-width-1-5@m uk-width-1-1">CC license</dt>
|
||||
<dd class="uk-width-expand">
|
||||
<p>A Creative Commons copyright license <a href="(https://creativecommons.org/)" target="_blank">(https://creativecommons.org/)</a>
|
||||
</p>
|
||||
</dd>
|
||||
</div>
|
||||
<hr>
|
||||
<div class="uk-grid uk-padding-small" uk-grid>
|
||||
<dt class="uk-width-1-5@m uk-width-1-1">PID (persistent identifier)</dt>
|
||||
<dd class="uk-width-expand">
|
||||
<p>A long-lasting reference to a resource</p>
|
||||
<p><span class="uk-text-bold">Types: </span> <a
|
||||
href="http://api.openaire.eu/vocabularies/dnet:pid_types" target="_blank">http://api.openaire.eu/vocabularies/dnet:pid_types</a>
|
||||
</p>
|
||||
</dd>
|
||||
</div>
|
||||
<hr>
|
||||
<div class="uk-grid uk-padding-small" uk-grid>
|
||||
<dt class="uk-width-1-5@m uk-width-1-1">Context</dt>
|
||||
<dd class="uk-width-expand">
|
||||
Related {{openaireEntities.COMMUNITY | lowercase}}, initiative or infrastructure.
|
||||
</dd>
|
||||
</div>
|
||||
<hr>
|
||||
<div class="uk-grid uk-padding-small" uk-grid>
|
||||
<dt class="uk-width-1-5@m uk-width-1-1">Journal</dt>
|
||||
<dd class="uk-width-expand">
|
||||
The scientific journal an article is published in.
|
||||
</dd>
|
||||
</div>
|
||||
<hr>
|
||||
<div class="uk-grid uk-padding-small" uk-grid>
|
||||
<dt class="uk-width-1-5@m uk-width-1-1">Publisher</dt>
|
||||
<dd class="uk-width-expand">
|
||||
The publisher of the venue (journal, book, etc.) of a {{openaireEntities.RESULT | lowercase}}.
|
||||
</dd>
|
||||
</div>
|
||||
<hr>
|
||||
<div class="uk-grid uk-padding-small" uk-grid>
|
||||
<dt class="uk-width-1-5@m uk-width-1-1 uk-text-primary">{{openaireEntities.DATASOURCES}}</dt>
|
||||
<dd class="uk-width-expand">
|
||||
<p>The different data sources ingested in the OpenAIRE Research Graph.</p>
|
||||
<div class="uk-text-bold">Data Source Types:</div>
|
||||
<ul class="uk-list uk-list-disc">
|
||||
<li>Repositories</li>
|
||||
<li>Open Access Publishers & Journals</li>
|
||||
<li>Aggregators</li>
|
||||
<li>Entity Registries</li>
|
||||
<li>Journal Aggregators</li>
|
||||
<li>CRIS (Current Research Information System)</li>
|
||||
</ul>
|
||||
</dd>
|
||||
</div>
|
||||
<hr>
|
||||
<div class="uk-grid uk-padding-small" uk-grid>
|
||||
<dt class="uk-width-1-5@m uk-width-1-1">Repositories</dt>
|
||||
<dd class="uk-width-expand">
|
||||
Information systems where scientists upload the bibliographic metadata and payloads of their
|
||||
{{openaireEntities.RESULTS | lowercase}} (e.g. PDFs of their scientific articles, CSVs of their data,
|
||||
archive with their
|
||||
software), due to obligations from their {{openaireEntities.ORGANIZATIONS | lowercase}}, their
|
||||
funders, or due to community practices
|
||||
(e.g. ArXiv, Europe PMC, Zenodo).
|
||||
</dd>
|
||||
</div>
|
||||
<hr>
|
||||
<div class="uk-grid uk-padding-small" uk-grid>
|
||||
<dt class="uk-width-1-5@m uk-width-1-1">Open Access Publishers & Journals</dt>
|
||||
<dd class="uk-width-expand">
|
||||
Information systems of open access publishers or relative journals, which offer bibliographic
|
||||
metadata and PDFs of their published articles.
|
||||
</dd>
|
||||
</div>
|
||||
<hr>
|
||||
<div class="uk-grid uk-padding-small" uk-grid>
|
||||
<dt class="uk-width-1-5@m uk-width-1-1">Aggregators</dt>
|
||||
<dd class="uk-width-expand">
|
||||
Information systems that collect descriptive metadata about {{openaireEntities.RESULTS | lowercase}}
|
||||
from multiple sources
|
||||
in order to enable cross-data source discovery of given {{openaireEntities.RESULTS | lowercase}} (e,g,
|
||||
DataCite,
|
||||
BASE, DOAJ).
|
||||
</dd>
|
||||
</div>
|
||||
<hr>
|
||||
<div class="uk-grid uk-padding-small" uk-grid>
|
||||
<dt class="uk-width-1-5@m uk-width-1-1">Entity Registries</dt>
|
||||
<dd class="uk-width-expand">
|
||||
Information systems created with the intent of maintaining authoritative registries of given
|
||||
entities in the scholarly communication, such as OpenDOAR for the institutional repositories, re3data
|
||||
for the data repositories, CORDA and other funder databases
|
||||
for {{openaireEntities.PROJECTS | lowercase}} and funding information.
|
||||
</dd>
|
||||
</div>
|
||||
<hr>
|
||||
<div class="uk-grid uk-padding-small" uk-grid>
|
||||
<dt class="uk-width-1-5@m uk-width-1-1">CRIS (Current Research Information System)</dt>
|
||||
<dd class="uk-width-expand">
|
||||
Information systems adopted by research and academic {{openaireEntities.ORGANIZATIONS | lowercase}} to
|
||||
keep track of their research
|
||||
administration records and relative results; examples of CRIS content are articles
|
||||
or {{openaireEntities.DATASETS | lowercase}} funded
|
||||
by {{openaireEntities.PROJECTS | lowercase}}, their principal investigators, facilities acquired
|
||||
thanks to funding, etc.
|
||||
</dd>
|
||||
</div>
|
||||
</dl>
|
||||
</li>
|
||||
<li>
|
||||
<div class="uk-text-center uk-padding">
|
||||
The attributes of entities under this tab are constructed following the methodology described below.
|
||||
</div>
|
||||
<hr>
|
||||
<dl class="uk-description-list uk-description-list-divider">
|
||||
<div class="uk-grid uk-padding-small" uk-grid>
|
||||
<dt class="uk-width-1-3@m uk-width-1-1">Attribute</dt>
|
||||
<dd class="uk-width-1-3@m uk-width-1-1 uk-text-bold">Definition</dd>
|
||||
<dd class="uk-width-1-3@m uk-width-1-1 uk-text-bold">Construction</dd>
|
||||
</div>
|
||||
<hr>
|
||||
<div class="uk-padding-small uk-text-bold uk-text-primary">
|
||||
Journal Business Models
|
||||
</div>
|
||||
<hr>
|
||||
<div class="uk-grid uk-padding-small" uk-grid>
|
||||
<dt class="uk-width-1-3@m uk-width-1-1">Fully Open Access (OA)</dt>
|
||||
<dd class="uk-width-1-3@m uk-width-1-1">
|
||||
<p>A journal that publishes only in open access.</p>
|
||||
</dd>
|
||||
<dd class="uk-width-1-3@m uk-width-1-1">
|
||||
<p>We construct the list of fully OA journals using Unpaywall data. </p>
|
||||
<p>In brief, a journal is fully OA if </p>
|
||||
<ol>
|
||||
<li>It is in the Directory of Open Access Journals (DOAJ)</li>
|
||||
<li>It has a known (curated list) fully OA Publisher.</li>
|
||||
<li>It only publishes OA articles.</li>
|
||||
</ol>
|
||||
<p><a
|
||||
href="https://support.unpaywall.org/support/solutions/articles/44001792752-how-do-we-decide-if-a-given-journal-is-fully-oa-"
|
||||
target="_blank">More information</a></p>
|
||||
</dd>
|
||||
</div>
|
||||
<hr>
|
||||
<div class="uk-grid uk-padding-small" uk-grid>
|
||||
<dt class="uk-width-1-3@m uk-width-1-1">Subscription</dt>
|
||||
<dd class="uk-width-1-3@m uk-width-1-1">
|
||||
<p>A journal that charges for access to its articles.</p>
|
||||
</dd>
|
||||
<dd class="uk-width-1-3@m uk-width-1-1">
|
||||
<p>Journals without any open access articles.</p>
|
||||
</dd>
|
||||
</div>
|
||||
<hr>
|
||||
<div class="uk-grid uk-padding-small" uk-grid>
|
||||
<dt class="uk-width-1-3@m uk-width-1-1">Hybrid</dt>
|
||||
<dd class="uk-width-1-3@m uk-width-1-1">
|
||||
<p>A subscription journal where some of its articles are open access.</p>
|
||||
</dd>
|
||||
<dd class="uk-width-1-3@m uk-width-1-1">
|
||||
<p>Journals with open access articles that are not fully OA journals are hybrid.</p>
|
||||
</dd>
|
||||
</div>
|
||||
<hr>
|
||||
<div class="uk-grid uk-padding-small" uk-grid>
|
||||
<dt class="uk-width-1-3@m uk-width-1-1">Transformative</dt>
|
||||
<dd class="uk-width-1-3@m uk-width-1-1">
|
||||
<p>"A Transformative Journal is a subscription/hybrid journal that is actively committed to
|
||||
transitioning to a fully Open Access journal.</p>
|
||||
<p>In addition, a Transformative Journal must:</p>
|
||||
<ul>
|
||||
<li>gradually increase the share of Open Access content; and</li>
|
||||
<li>offset subscription income from payments for publishing services (to avoid double payments)."
|
||||
</li>
|
||||
</ul>
|
||||
<p>Source:</p>
|
||||
<p><a href="https://www.coalition-s.org/transformative-journals-faq/" target="_blank">https://www.coalition-s.org/transformative-journals-faq/</a>
|
||||
</p>
|
||||
</dd>
|
||||
<dd class="uk-width-1-3@m uk-width-1-1">
|
||||
<p>Transformative Journals are identified by ISSN matching with the publicly available Transformative
|
||||
Journals data (<a href="https://journalcheckertool.org/transformative-journals/" target="_blank">https://journalcheckertool.org/transformative-journals/</a>)
|
||||
</p>
|
||||
</dd>
|
||||
</div>
|
||||
<hr>
|
||||
<div class="uk-padding-small uk-text-bold uk-text-primary">
|
||||
Journal APC Business Models
|
||||
</div>
|
||||
<hr>
|
||||
<div class="uk-grid uk-padding-small" uk-grid>
|
||||
<dt class="uk-width-1-3@m uk-width-1-1">Diamond OA</dt>
|
||||
<dd class="uk-width-1-3@m uk-width-1-1">
|
||||
<p>A fully OA journal that does not charge article processing charges (APCs).</p>
|
||||
</dd>
|
||||
<dd class="uk-width-1-3@m uk-width-1-1">
|
||||
<p>APC information is obtained from DOAJ using DOAJ’s exportable version of the journal metadata (<a
|
||||
href="https://doaj.org/docs/public-data-dump/" target="_blank">https://doaj.org/docs/public-data-dump/</a>).
|
||||
We used it to determine whether a particular fully OA journal charges APCs. </p>
|
||||
</dd>
|
||||
</div>
|
||||
<hr>
|
||||
<div class="uk-padding-small uk-text-bold uk-text-primary">
|
||||
Routes to Open Access (OA)
|
||||
</div>
|
||||
<hr>
|
||||
<div class="uk-grid uk-padding-small" uk-grid>
|
||||
<dt class="uk-width-1-3@m uk-width-1-1">Green OA</dt>
|
||||
<dd class="uk-width-1-3@m uk-width-1-1">
|
||||
<p>An open access scientific publication deposited in a repository</p>
|
||||
</dd>
|
||||
<dd class="uk-width-1-3@m uk-width-1-1">
|
||||
<p>As in definition</p>
|
||||
</dd>
|
||||
</div>
|
||||
<hr>
|
||||
<div class="uk-grid uk-padding-small" uk-grid>
|
||||
<dt class="uk-width-1-3@m uk-width-1-1">Gold OA</dt>
|
||||
<dd class="uk-width-1-3@m uk-width-1-1">
|
||||
<p>A scientific publication published in a fully OA journal.</p>
|
||||
</dd>
|
||||
<dd class="uk-width-1-3@m uk-width-1-1">
|
||||
<p>Fully OA journals are defined above.</p>
|
||||
</dd>
|
||||
</div>
|
||||
<hr>
|
||||
<div class="uk-grid uk-padding-small" uk-grid>
|
||||
<dt class="uk-width-1-3@m uk-width-1-1">Hybrid OA</dt>
|
||||
<dd class="uk-width-1-3@m uk-width-1-1">
|
||||
<p>An open access scientific publication published in a hybrid journal with an open license.</p>
|
||||
</dd>
|
||||
<dd class="uk-width-1-3@m uk-width-1-1">
|
||||
<p>Hybrid journals are defined above.</p>
|
||||
<p>At this point we consider only CC licenses “open”, we are currently working on cleaning non-CC
|
||||
licenses as well to identify other open ones.</p>
|
||||
<p>In principle, this means that we may be underestimating the number of hybrid OA articles and
|
||||
overestimating the number of bronze.</p>
|
||||
</dd>
|
||||
</div>
|
||||
<hr>
|
||||
<div class="uk-grid uk-padding-small" uk-grid>
|
||||
<dt class="uk-width-1-3@m uk-width-1-1">Bronze OA</dt>
|
||||
<dd class="uk-width-1-3@m uk-width-1-1">
|
||||
<p>An open access scientific publication published in a hybrid journal without an open license.</p>
|
||||
</dd>
|
||||
<dd class="uk-width-1-3@m uk-width-1-1">
|
||||
|
||||
</dd>
|
||||
</div>
|
||||
<hr>
|
||||
<div class="uk-padding-small uk-text-bold uk-text-primary">
|
||||
Miscellaneous
|
||||
</div>
|
||||
<hr>
|
||||
<div class="uk-grid uk-padding-small" uk-grid>
|
||||
<dt class="uk-width-1-3@m uk-width-1-1">Downloads</dt>
|
||||
<dd class="uk-width-1-3@m uk-width-1-1">
|
||||
<p>The number of downloads of a publication’s full text in a specific time frame, from a given set of
|
||||
data sources.</p>
|
||||
</dd>
|
||||
<dd class="uk-width-1-3@m uk-width-1-1">
|
||||
<p>Data for downloads is taken from OpenAIRE’s Usage Counts service that harvests it from a set of
|
||||
repositories. The time range of available downloads varies for each repository.</p>
|
||||
<p>
|
||||
<a href="https://www.openaire.eu/guides-usage-counts" target="_blank">More information</a>
|
||||
</p>
|
||||
</dd>
|
||||
</div>
|
||||
<hr>
|
||||
</dl>
|
||||
</li>
|
||||
</ul>
|
||||
<div class="uk-margin-medium-top">
|
||||
<icon name="graph" customClass="text-graph"></icon>
|
||||
<span class="uk-margin-small-left uk-text-meta">More information for </span>
|
||||
<a href="https://graph.openaire.eu" class="text-graph">OpenAIRE Research Graph</a>
|
||||
<span class="uk-text-meta">.</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
`
|
||||
})
|
||||
export class TerminologyComponent implements OnInit, OnDestroy {
|
||||
|
@ -402,7 +452,11 @@ export class TerminologyComponent implements OnInit, OnDestroy {
|
|||
public tab: 'entities' | 'attributes' = 'entities';
|
||||
private subscriptions: any[] = [];
|
||||
public openaireEntities = OpenaireEntities;
|
||||
|
||||
public breadcrumbs: Breadcrumb[] = [{
|
||||
name: 'home',
|
||||
route: '/'
|
||||
}, {name: 'Resources'}, {name: 'Terminology and construction', keepFormat: true}];
|
||||
|
||||
constructor(private stakeholderService: StakeholderService,
|
||||
private seoService: SEOService,
|
||||
private _meta: Meta,
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
<div *ngIf="showMenu && activeHeader">
|
||||
<div class="uk-hidden@l">
|
||||
<nav class="uk-navbar-container uk-navbar" uk-navbar="">
|
||||
<nav class="uk-navbar-container uk-navbar" uk-navbar="delay-hide: 400">
|
||||
<div
|
||||
*ngIf="(properties.environment =='beta' || properties.environment =='development') && showLogo && activeHeader.badge">
|
||||
<img class="uk-position-top-left"
|
||||
|
@ -100,7 +100,7 @@
|
|||
alt="BETA" style="height: 65px; width: 65px; z-index: 1000">
|
||||
</div>
|
||||
<div class="uk-container uk-container-expand">
|
||||
<nav class="uk-navbar" uk-navbar>
|
||||
<nav class="uk-navbar" uk-navbar="delay-hide: 400">
|
||||
<ng-container *ngIf="!onlyTop">
|
||||
<div class="uk-navbar-left">
|
||||
<ng-container *ngIf="showLogo && isHeaderLeft">
|
||||
|
@ -238,7 +238,7 @@
|
|||
<ng-container *ngIf="isFeaturedMenuEnabled && featuredMenuItems?.length > 0">
|
||||
<div class="uk-background-primary uk-light">
|
||||
<div class="uk-container uk-container-expand">
|
||||
<div class="uk-navbar" uk-navbar>
|
||||
<div class="uk-navbar" uk-navbar="delay-hide: 400">
|
||||
<div class="uk-navbar-right">
|
||||
<ul class="uk-navbar-nav">
|
||||
<ng-container *ngFor="let item of featuredMenuItems">
|
||||
|
|
|
@ -3,6 +3,7 @@ import {Component, Input} from "@angular/core";
|
|||
export interface Breadcrumb {
|
||||
name: string;
|
||||
route?: string;
|
||||
keepFormat?: boolean
|
||||
}
|
||||
|
||||
@Component({
|
||||
|
@ -10,8 +11,8 @@ export interface Breadcrumb {
|
|||
template: `
|
||||
<ul class="uk-breadcrumb uk-margin-remove-bottom" [ngClass]="addClass" [class.uk-light]="light">
|
||||
<li *ngFor="let breadcrumb of breadcrumbs">
|
||||
<a class="uk-text-capitalize" *ngIf="breadcrumb.route" [routerLink]="breadcrumb.route">{{breadcrumb.name}}</a>
|
||||
<span class="uk-text-capitalize" *ngIf="!breadcrumb.route">{{breadcrumb.name}}</span>
|
||||
<a [class.uk-text-capitalize]="!breadcrumb.keepFormat" *ngIf="breadcrumb.route" [routerLink]="breadcrumb.route">{{breadcrumb.name}}</a>
|
||||
<span [class.uk-text-capitalize]="!breadcrumb.keepFormat" *ngIf="!breadcrumb.route">{{breadcrumb.name}}</span>
|
||||
</li>
|
||||
</ul>`
|
||||
})
|
||||
|
|
Loading…
Reference in New Issue