usage-counts/src/app/about/about.component.html

106 lines
5.6 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<div class="about">
<div class="uk-container uk-container-large about-background">
<div class="uk-container uk-section uk-section-small uk-visible@l">
<h2 class="uk-text-bold">About</h2>
<div class="uk-padding uk-width-3-4">
UsageCounts service is an OpenAIRE service built after the development of the Usage Statistics Service within
OpenAIRE. UsageCounts forms metrics of usage activity of Open Access Repositories categorizing the data
retrieved by country, number of downloads, number of views, number of repositories and all derivative
quantitative open metrics, in a comprehensive way for all stakeholders.
</div>
</div>
<a class="uk-visible@l next uk-flex uk-flex-middle" (click)="goTo('architecture')">
Architecture
<icon name="arrow_down" [flex]="true" class="uk-margin-left"></icon>
</a>
<div class="uk-hidden@l">
<h2 class="uk-text-bold">About</h2>
<div class="uk-padding uk-padding-remove-horizontal">
UsageCounts service is an OpenAIRE service built after the development of the Usage Statistics Service within
OpenAIRE. UsageCounts forms metrics of usage activity of Open Access Repositories categorizing the data
retrieved by country, number of downloads, number of views, number of repositories and all derivative
quantitative open metrics, in a comprehensive way for all stakeholders.
</div>
</div>
</div>
<div id="architecture" class="uk-container uk-section">
<div class="uk-section uk-padding-remove-top">
<h2 class="uk-text-bold">Architecture</h2>
<div class="architecture uk-margin-large-top uk-flex uk-flex-right">
<div class="uk-visible@l uk-padding-large uk-padding-remove-bottom uk-padding-remove-right">
UsageCounts service collects usage activity from OpenAIRE content providers for usage events related to
research products of the OpenAIRE graph, creates and deploys aggregated statistics for these products.
</div>
</div>
<div class="uk-hidden@l uk-padding uk-margin-top">
UsageCounts service collects usage activity from OpenAIRE content providers for usage events related to
research products of the OpenAIRE graph, creates and deploys aggregated statistics for these products.
</div>
</div>
<div class="uk-section uk-margin-large-top">
<h2 class="uk-text-bold">Architecture & Workflows</h2>
<div class="uk-flex uk-grid uk-child-width-1-2@l" uk-grid>
<div class="uk-width-3-5@l uk-flex uk-flex-center workflows">
<img src="assets/usage-statistics-assets/about/3.1.png" class="uk-margin-large-top uk-margin-left">
</div>
<div>
<h3 class="uk-text-bold portal-color">Architecture functionalities</h3>
<div class="uk-margin-large-left">
<ol class="light-blue">
<li>Constant tracking of views and downloads of open science repositories registered on OpenAIRE PROVIDE
</li>
<li>Creation of downloadable reports available only for content providers</li>
<li>Instant connection with the OpenAIRE Research Graph</li>
<li>Compatibility with COUNTER Code of Practice that provides standards based usage statistics and enables
comparability with statistics from other data sources
</li>
<li>Anonymisation of IP-addresses</li>
</ol>
</div>
</div>
</div>
<div class="uk-section uk-margin-large-top push-pull">
<div class=" uk-grid uk-child-width-1-2@m" uk-grid>
<div>
<h5 class="uk-text-primary uk-text-bold">
<span class="uk-text-normal portal-color">Push</span>
Usage Statistics Tracking Workflow
</h5>
<ul class="light-blue-circle uk-margin-medium-top">
<li>An institutional repository is registered in OpenAIRE.</li>
<li>Server side tracking: Plugins (Dspace) or patches (Eprints) using Matomos Web Analytics HTTP API.
</li>
<li>Usage Activity is tracked and logged in real time.</li>
<li>Ιnformation is transferred offline to OpenAIREs DBs for statistical analysis.</li>
<li>Statistics are deployed for human (OpenAIREs Portal) and machine (Sushi-Lite API) consumption.</li>
</ul>
</div>
<div class="uk-margin-medium-top">
<h5 class="uk-text-primary uk-text-bold uk-width-2-3@m">
Collecting <span class="uk-text-normal portal-color">(Pull)</span> Consolidated Usage Statistics Reports
</h5>
<ul class="light-blue-circle uk-margin-medium-top">
<li>Gathering of consolidated statistics reports from aggregation services, such as IRUS-UK, using
protocols such as SUSHI-Lite.
</li>
<li>Statistics are stored in OpenAIREs DB for statistical analysis.</li>
<li>Statistics are deployed via OpenAIREs Portal or Sushi-Lite API.</li>
</ul>
</div>
</div>
</div>
</div>
</div>
<div id="faqs" class="uk-container uk-section" [class.uk-hidden]="faqs.length == 0">
<h2 class="uk-text-bold">About - FAQs</h2>
<ul class="faqs uk-margin-medium-top" uk-accordion="multiple: true">
<li *ngFor="let faq of faqs;let i=index" [class.uk-open]="i===0">
<a class="uk-accordion-title">{{faq.question}}</a>
<div class="uk-accordion-content">
{{faq.answer}}
</div>
</li>
</ul>
</div>
</div>