Project

General

Profile

1
<schema2jsonld [URL]="properties.domain"
2
               [logoURL]="properties.domain + '/assets/common-assets/logo-small-usage-counts.png'"
3
               type="other" [description]="description" [name]="title">
4
</schema2jsonld>
5
<div class="about">
6
  <div class="uk-container uk-container-large about-background">
7
    <div class="uk-container uk-section uk-section-small uk-visible@l">
8
      <h2 class="uk-text-bold">About</h2>
9
      <div class="uk-padding uk-width-3-4">
10
        UsageCounts service is an OpenAIRE service built after the development of the Usage Statistics Service within
11
        OpenAIRE. UsageCounts forms metrics of usage activity of Open Access Repositories categorizing the data
12
        retrieved by country, number of downloads, number of views, number of repositories and all derivative
13
        quantitative open metrics, in a comprehensive way for all stakeholders.
14
      </div>
15
    </div>
16
    <a class="uk-visible@l next uk-flex uk-flex-middle" (click)="goTo('architecture')">
17
      Architecture
18
      <icon name="arrow_down" [flex]="true" class="uk-margin-left"></icon>
19
    </a>
20
    <div class="uk-hidden@l">
21
      <h2 class="uk-text-bold">About</h2>
22
      <div class="uk-padding uk-padding-remove-horizontal">
23
        UsageCounts service is an OpenAIRE service built after the development of the Usage Statistics Service within
24
        OpenAIRE. UsageCounts forms metrics of usage activity of Open Access Repositories categorizing the data
25
        retrieved by country, number of downloads, number of views, number of repositories and all derivative
26
        quantitative open metrics, in a comprehensive way for all stakeholders.
27
      </div>
28
    </div>
29
  </div>
30
  <div id="architecture" class="uk-container uk-section">
31
    <div class="uk-section uk-padding-remove-top">
32
      <h2 class="uk-text-bold">Architecture</h2>
33
      <div class="architecture uk-margin-large-top uk-flex uk-flex-right">
34
        <div class="uk-visible@l uk-padding-large uk-padding-remove-bottom uk-padding-remove-right">
35
          UsageCounts service collects usage activity from OpenAIRE content providers for usage events related to
36
          research products of the OpenAIRE graph, creates and deploys aggregated statistics for these products.
37
        </div>
38
      </div>
39
      <div class="uk-hidden@l uk-padding uk-margin-top">
40
        UsageCounts service collects usage activity from OpenAIRE content providers for usage events related to
41
        research products of the OpenAIRE graph, creates and deploys aggregated statistics for these products.
42
      </div>
43
    </div>
44
    <div class="uk-section uk-margin-large-top">
45
      <h2 class="uk-text-bold">Architecture & Workflows</h2>
46
      <div class="uk-flex uk-grid uk-child-width-1-2@l" uk-grid>
47
        <div class="uk-width-3-5@l uk-flex uk-flex-center workflows">
48
          <img src="assets/usage-statistics-assets/about/3.1.png" class="uk-margin-large-top uk-margin-left">
49
        </div>
50
        <div>
51
          <h3 class="uk-text-bold portal-color">Architecture functionalities</h3>
52
          <div class="uk-margin-large-left">
53
            <ol class="light-blue">
54
              <li>Constant tracking of views and downloads of open science repositories registered on OpenAIRE PROVIDE
55
              </li>
56
              <li>Creation of downloadable reports available only for content providers</li>
57
              <li>Instant connection with the OpenAIRE Research Graph</li>
58
              <li>Compatibility with COUNTER Code of Practice that provides standards based usage statistics and enables
59
                comparability with statistics from other data sources
60
              </li>
61
              <li>Anonymisation of IP-addresses</li>
62
            </ol>
63
          </div>
64
        </div>
65
      </div>
66
      <div class="uk-section uk-margin-large-top push-pull">
67
        <div class=" uk-grid uk-child-width-1-2@m" uk-grid>
68
          <div>
69
            <h5 class="uk-text-primary uk-text-bold">
70
              <span class="uk-text-normal portal-color">Push</span>
71
              Usage Statistics Tracking Workflow
72
            </h5>
73
            <ul class="light-blue-circle uk-margin-medium-top">
74
              <li>An institutional repository is registered in OpenAIRE.</li>
75
              <li>Server side tracking: Plugins (Dspace) or patches (Eprints) using Matomo’s Web Analytics HTTP API.
76
              </li>
77
              <li>Usage Activity is tracked and logged in real time.</li>
78
              <li>Ιnformation is transferred offline to OpenAIRE’s DBs for statistical analysis.</li>
79
              <li>Statistics are deployed for human (OpenAIRE’s Portal) and machine (Sushi-Lite API) consumption.</li>
80
            </ul>
81
          </div>
82
          <div class="uk-margin-medium-top">
83
            <h5 class="uk-text-primary uk-text-bold uk-width-2-3@m">
84
              Collecting <span class="uk-text-normal portal-color">(Pull)</span> Consolidated Usage Statistics Reports
85
            </h5>
86
            <ul class="light-blue-circle uk-margin-medium-top">
87
              <li>Gathering of consolidated statistics reports from aggregation services, such as IRUS-UK, using
88
                protocols such as SUSHI-Lite.
89
              </li>
90
              <li>Statistics are stored in OpenAIRE’s DB for statistical analysis.</li>
91
              <li>Statistics are deployed via OpenAIRE’s Portal or Sushi-Lite API.</li>
92
            </ul>
93
          </div>
94
        </div>
95
      </div>
96
    </div>
97
  </div>
98
  <div id="faqs" class="uk-container uk-section" [class.uk-hidden]="faqs.length == 0">
99
    <h2 class="uk-text-bold">About - FAQs</h2>
100
    <ul class="faqs uk-margin-medium-top" uk-accordion="multiple: true">
101
      <li *ngFor="let faq of faqs;let i=index" [class.uk-open]="i===0">
102
        <a class="uk-accordion-title">{{faq.question}}</a>
103
        <div class="uk-accordion-content">
104
          {{faq.answer}}
105
        </div>
106
      </li>
107
    </ul>
108
  </div>
109
</div>
(2-2/5)