oaf to dc: parial implementation
This commit is contained in:
parent
910aeb22de
commit
6407a0c9cd
|
@ -9,11 +9,8 @@
|
||||||
<xsl:variable name="openaireNamespace" select="string('oai:dnet:')" />
|
<xsl:variable name="openaireNamespace" select="string('oai:dnet:')" />
|
||||||
|
|
||||||
|
|
||||||
<xsl:template match="/oaf:result">
|
<xsl:template match="/oaf:entity/oaf:result">
|
||||||
<oai_dc:dc
|
<oai_dc:dc xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.openarchives.org/OAI/2.0/oai_dc/ http://www.openarchives.org/OAI/2.0/oai_dc.xsd">
|
||||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
||||||
xsi:schemaLocation="http://www.openarchives.org/OAI/2.0/oai_dc/ http://www.openarchives.org/OAI/2.0/oai_dc.xsd">
|
|
||||||
|
|
||||||
|
|
||||||
<!--
|
<!--
|
||||||
<dc:title>Studies of Unicorn Behaviour</dc:title>
|
<dc:title>Studies of Unicorn Behaviour</dc:title>
|
||||||
|
@ -39,24 +36,119 @@
|
||||||
<dc:type>info:eu-repo/semantics/article</dc:type>
|
<dc:type>info:eu-repo/semantics/article</dc:type>
|
||||||
-->
|
-->
|
||||||
|
|
||||||
<!-- Title -->
|
<!-- dc:title -->
|
||||||
<xsl:for-each select="./oaf:title">
|
<xsl:for-each select="./title[@classid='main title']">
|
||||||
<dc:title>
|
<dc:title>
|
||||||
<xsl:value-of select="normalize-space(.)" />
|
<xsl:value-of select="normalize-space(.)" />
|
||||||
</dc:title>
|
</dc:title>
|
||||||
</xsl:for-each>
|
</xsl:for-each>
|
||||||
|
|
||||||
<!-- identifier -->
|
<!-- dc:creator -->
|
||||||
<!-- creator -->
|
<xsl:for-each select="./creator">
|
||||||
<!-- description -->
|
<xsl:sort select="@rank" />
|
||||||
<!-- subject: info:eu-repo/classification/ddc/590< -->
|
<dc:creator>
|
||||||
<!-- subject: free keywords -->
|
<xsl:value-of select="normalize-space(.)" />
|
||||||
<!-- relation: projects -->
|
</dc:creator>
|
||||||
<!-- relation: altIdentifiers -->
|
</xsl:for-each>
|
||||||
<!-- relation: reference -->
|
|
||||||
<!-- relation: dataset -->
|
<!-- dc:subject: free keywords -->
|
||||||
<!-- rights: info:eu-repo/semantics/openAccess -->
|
<xsl:for-each select="./subject[@classname='keyword']">
|
||||||
<xsl:for-each select="./oaf:bestaccessright">
|
<dc:subject>
|
||||||
|
<xsl:value-of select="normalize-space(./text())" />
|
||||||
|
</dc:subject>
|
||||||
|
</xsl:for-each>
|
||||||
|
|
||||||
|
<!-- dc:subject: with classification -->
|
||||||
|
<xsl:for-each select="./subject[not(@classname='keyword') and @classid != '']">
|
||||||
|
<dc:subject>
|
||||||
|
<xsl:value-of select="concat('info:eu-repo/classification/', @classid, '/', normalize-space(./text()))" />
|
||||||
|
</dc:subject>
|
||||||
|
</xsl:for-each>
|
||||||
|
|
||||||
|
<!-- dc:description -->
|
||||||
|
<xsl:for-each select="./description">
|
||||||
|
<dc:description>
|
||||||
|
<xsl:value-of select="normalize-space(.)" />
|
||||||
|
</dc:description>
|
||||||
|
</xsl:for-each>
|
||||||
|
|
||||||
|
<!-- dc:publisher -->
|
||||||
|
<xsl:for-each select="./publisher">
|
||||||
|
<dc:publisher>
|
||||||
|
<xsl:value-of select="normalize-space(.)" />
|
||||||
|
</dc:publisher>
|
||||||
|
</xsl:for-each>
|
||||||
|
|
||||||
|
<!-- dc:contributor -->
|
||||||
|
|
||||||
|
<!-- dc:date -->
|
||||||
|
<xsl:for-each select="./dateofacceptance">
|
||||||
|
<dc:date>
|
||||||
|
<xsl:value-of select="normalize-space(.)" />
|
||||||
|
</dc:date>
|
||||||
|
</xsl:for-each>
|
||||||
|
<xsl:for-each select="./embargoenddate">
|
||||||
|
<dc:date>
|
||||||
|
<xsl:value-of select="concat('info:eu-repo/date/embargoEnd/', normalize-space(.))" />
|
||||||
|
</dc:date>
|
||||||
|
</xsl:for-each>
|
||||||
|
|
||||||
|
<!-- dc:type -->
|
||||||
|
|
||||||
|
<!-- dc:format -->
|
||||||
|
<xsl:for-each select="./format">
|
||||||
|
<dc:format>
|
||||||
|
<xsl:value-of select="normalize-space(.)" />
|
||||||
|
</dc:format>
|
||||||
|
</xsl:for-each>
|
||||||
|
|
||||||
|
<!-- dc:identifier -->
|
||||||
|
<xsl:for-each select="./children/instance/webresource/url">
|
||||||
|
<dc:identifier>
|
||||||
|
<xsl:value-of select="normalize-space(.)" />
|
||||||
|
</dc:identifier>
|
||||||
|
</xsl:for-each>
|
||||||
|
|
||||||
|
<!-- dc:source -->
|
||||||
|
<xsl:for-each select="./source">
|
||||||
|
<dc:source>
|
||||||
|
<xsl:value-of select="normalize-space(.)" />
|
||||||
|
</dc:source>
|
||||||
|
</xsl:for-each>
|
||||||
|
|
||||||
|
<!-- dc:language -->
|
||||||
|
<xsl:for-each select="./language">
|
||||||
|
<dc:language>
|
||||||
|
<xsl:value-of select="./@classid" />
|
||||||
|
</dc:language>
|
||||||
|
</xsl:for-each>
|
||||||
|
|
||||||
|
<!-- dc:coverage -->
|
||||||
|
|
||||||
|
<!-- dc:relation: projects -->
|
||||||
|
<xsl:for-each select=".//rel[./to/@class='isProducedBy']">
|
||||||
|
<xsl:for-each select="./funding/funding_level_0">
|
||||||
|
<xsl:variable name="funder" select="../funder/@shortname" />
|
||||||
|
<xsl:variable name="fundingProgramme" select="@name" />
|
||||||
|
<xsl:variable name="jurisdiction" select="../funder/@jurisdiction" />
|
||||||
|
<xsl:variable name="title" select="../../title" />
|
||||||
|
<xsl:variable name="acronym" select="../../acronym" />
|
||||||
|
<xsl:variable name="code" select="../../code" />
|
||||||
|
<dc:relation>
|
||||||
|
<xsl:value-of
|
||||||
|
select="concat('info:eu-repo/grantAgreement/', $funder, '/', $fundingProgramme, '/', $code, '/', $jurisdiction, '/' , $title, '/', $acronym)" />
|
||||||
|
</dc:relation>
|
||||||
|
</xsl:for-each>
|
||||||
|
</xsl:for-each>
|
||||||
|
|
||||||
|
<!-- dc:relation: altIdentifiers -->
|
||||||
|
|
||||||
|
<!-- dc:relation: reference -->
|
||||||
|
|
||||||
|
<!-- dc:relation: dataset -->
|
||||||
|
|
||||||
|
<!-- dc:rights -->
|
||||||
|
<xsl:for-each select="./bestaccessright">
|
||||||
<dc:rights>
|
<dc:rights>
|
||||||
<xsl:choose>
|
<xsl:choose>
|
||||||
<xsl:when test="@classid='OPEN'">info:eu-repo/semantics/openAccess</xsl:when>
|
<xsl:when test="@classid='OPEN'">info:eu-repo/semantics/openAccess</xsl:when>
|
||||||
|
@ -67,22 +159,6 @@
|
||||||
</xsl:choose>
|
</xsl:choose>
|
||||||
</dc:rights>
|
</dc:rights>
|
||||||
</xsl:for-each>
|
</xsl:for-each>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<!-- rights: other vocabularies -->
|
|
||||||
<!-- source -->
|
|
||||||
<!-- publisher -->
|
|
||||||
<!-- date -->
|
|
||||||
<!-- type -->
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</oai_dc:dc>
|
</oai_dc:dc>
|
||||||
</xsl:template>
|
</xsl:template>
|
||||||
|
|
||||||
|
@ -125,30 +201,9 @@
|
||||||
<funding_level_2>FP7::SP2::ERC</funding_level_2> </funding> </rel> The funding
|
<funding_level_2>FP7::SP2::ERC</funding_level_2> </funding> </rel> The funding
|
||||||
program is funding_level_0. The funder must be inferred from the contract
|
program is funding_level_0. The funder must be inferred from the contract
|
||||||
type - until the Funders won't be added explicitely in the record. -->
|
type - until the Funders won't be added explicitely in the record. -->
|
||||||
<xsl:template
|
|
||||||
match="oaf:result//rel[./to/@class='isProducedBy']">
|
|
||||||
<xsl:for-each select="./funding/funding_level_0">
|
|
||||||
<xsl:variable name="funder"
|
|
||||||
select="../funder/@shortname" />
|
|
||||||
<xsl:variable name="fundingProgramme" select="@name" />
|
|
||||||
<xsl:variable name="jurisdiction"
|
|
||||||
select="../funder/@jurisdiction" />
|
|
||||||
<xsl:variable name="title" select="../../title" />
|
|
||||||
<xsl:variable name="acronym" select="../../acronym" />
|
|
||||||
<xsl:variable name="code" select="../../code" />
|
|
||||||
<dc:relation>
|
|
||||||
<xsl:value-of
|
|
||||||
select="concat('info:eu-repo/grantAgreement/', $funder, '/', $fundingProgramme, '/', $code, '/', $jurisdiction, '/' , $title, '/', $acronym)" />
|
|
||||||
</dc:relation>
|
|
||||||
</xsl:for-each>
|
|
||||||
</xsl:template>
|
|
||||||
|
|
||||||
<xsl:template match="embargoenddate/text()">
|
|
||||||
<dc:date>
|
<!-- <xsl:template match="oaf:result/originalId/text()">
|
||||||
<xsl:value-of
|
|
||||||
select="concat('info:eu-repo/date/embargoEnd/', .)" />
|
|
||||||
</dc:date>
|
|
||||||
</xsl:template><!-- <xsl:template match="oaf:result/originalId/text()">
|
|
||||||
<dc:identifier> <xsl:value-of select="normalize-space(.)"/> </dc:identifier>
|
<dc:identifier> <xsl:value-of select="normalize-space(.)"/> </dc:identifier>
|
||||||
</xsl:template> --><!-- Alternative Identifier (R), idType from pid@classid
|
</xsl:template> --><!-- Alternative Identifier (R), idType from pid@classid
|
||||||
<dc:relation> info:eu-repo/semantics/altIdentifier/[idType]/[ID] </dc:relation> -->
|
<dc:relation> info:eu-repo/semantics/altIdentifier/[idType]/[ID] </dc:relation> -->
|
||||||
|
@ -158,12 +213,7 @@
|
||||||
select="concat('info:eu-repo/semantics/altIdentifier/', @classid, '/', ./text())" />
|
select="concat('info:eu-repo/semantics/altIdentifier/', @classid, '/', ./text())" />
|
||||||
</dc:relation>
|
</dc:relation>
|
||||||
</xsl:template>
|
</xsl:template>
|
||||||
<xsl:template
|
<!--Referenced Publication (R), from extraInfo[@typology='citations']/citation,
|
||||||
match="oaf:children/oaf:instance/oaf:webresource/oaf:url/text()">
|
|
||||||
<dc:identifier>
|
|
||||||
<xsl:value-of select="." />
|
|
||||||
</dc:identifier>
|
|
||||||
</xsl:template><!--Referenced Publication (R), from extraInfo[@typology='citations']/citation,
|
|
||||||
idType from citation/id/@type, ID from citation/id/@value <dc:relation> info:eu-repo/semantics/reference/[idType]/[ID]
|
idType from citation/id/@type, ID from citation/id/@value <dc:relation> info:eu-repo/semantics/reference/[idType]/[ID]
|
||||||
</dc:relation> <dc:relation> info:eu-repo/semantics/reference/doi/10.1234/789.1
|
</dc:relation> <dc:relation> info:eu-repo/semantics/reference/doi/10.1234/789.1
|
||||||
</dc:relation> <dc:relation> info:eu-repo/semantics/reference/pmid/1234567
|
</dc:relation> <dc:relation> info:eu-repo/semantics/reference/pmid/1234567
|
||||||
|
@ -199,34 +249,10 @@
|
||||||
If subject@classname != keywords, then we have a classification scheme to
|
If subject@classname != keywords, then we have a classification scheme to
|
||||||
encode <dc:subject>info:eu-repo/classification/[scheme]/[value]</dc:subject>
|
encode <dc:subject>info:eu-repo/classification/[scheme]/[value]</dc:subject>
|
||||||
<dc:subject>info:eu-repo/classification/dcc/whatever</dc:subject> -->
|
<dc:subject>info:eu-repo/classification/dcc/whatever</dc:subject> -->
|
||||||
<xsl:template
|
<!--description (M w A) from description -->
|
||||||
match="oaf:result/subject[@classname='keyword']">
|
<!--publisher (M w A) from publisher -->
|
||||||
<dc:subject>
|
<!-- Publication date (M) from dateofacceptance -->
|
||||||
<xsl:value-of select="normalize-space(./text())" />
|
<!-- Publication type (M) where [type] is /instancetype[1]/classname
|
||||||
</dc:subject>
|
|
||||||
</xsl:template>
|
|
||||||
<xsl:template
|
|
||||||
match="oaf:result/subject[not(@classname='keyword') and @classid != '']">
|
|
||||||
<dc:subject>
|
|
||||||
<xsl:value-of
|
|
||||||
select="concat('info:eu-repo/classification/', @classid, '/', normalize-space(./text()))" />
|
|
||||||
</dc:subject>
|
|
||||||
</xsl:template><!--description (M w A) from description -->
|
|
||||||
<xsl:template match="oaf:result/description/text()">
|
|
||||||
<dc:description>
|
|
||||||
<xsl:value-of select="normalize-space(.)" />
|
|
||||||
</dc:description>
|
|
||||||
</xsl:template><!--publisher (M w A) from publisher -->
|
|
||||||
<xsl:template match="oaf:result/publisher/text()">
|
|
||||||
<dc:publisher>
|
|
||||||
<xsl:value-of select="normalize-space(.)" />
|
|
||||||
</dc:publisher>
|
|
||||||
</xsl:template><!-- Publication date (M) from dateofacceptance -->
|
|
||||||
<xsl:template match="oaf:result/dateofacceptance/text()">
|
|
||||||
<dc:date>
|
|
||||||
<xsl:value-of select="normalize-space(.)" />
|
|
||||||
</dc:date>
|
|
||||||
</xsl:template><!-- Publication type (M) where [type] is /instancetype[1]/classname
|
|
||||||
(dnet:publication_resource vocabulary). A second dc:type (uncontrolled) can
|
(dnet:publication_resource vocabulary). A second dc:type (uncontrolled) can
|
||||||
be used. <dc:type>info:eu-repo/semantics/[type]</dc:type> -->
|
be used. <dc:type>info:eu-repo/semantics/[type]</dc:type> -->
|
||||||
<xsl:template
|
<xsl:template
|
||||||
|
@ -256,26 +282,13 @@
|
||||||
<xsl:value-of select="./@classname"/> </dc:type> </xsl:template> --><!-- Format (R), in theory from format, not sure we are filling
|
<xsl:value-of select="./@classname"/> </dc:type> </xsl:template> --><!-- Format (R), in theory from format, not sure we are filling
|
||||||
it <dc:format>mediaType of the digital manifestation of the resource</dc:format>
|
it <dc:format>mediaType of the digital manifestation of the resource</dc:format>
|
||||||
<dc:format>application/pdf</dc:format> -->
|
<dc:format>application/pdf</dc:format> -->
|
||||||
<xsl:template match="oaf:result/format/text()">
|
|
||||||
<dc:format>
|
|
||||||
<xsl:value-of select="normalize-space(.)" />
|
|
||||||
</dc:format>
|
|
||||||
</xsl:template><!-- source (R) from source -->
|
|
||||||
<xsl:template match="oaf:result/source/text()">
|
|
||||||
<dc:source>
|
|
||||||
<xsl:value-of select="normalize-space(.)" />
|
|
||||||
</dc:source>
|
|
||||||
</xsl:template>
|
|
||||||
<xsl:template match="oaf:result/collectedfrom">
|
<xsl:template match="oaf:result/collectedfrom">
|
||||||
<dc:source>
|
<dc:source>
|
||||||
<xsl:value-of select="normalize-space(@name)" />
|
<xsl:value-of select="normalize-space(@name)" />
|
||||||
</dc:source>
|
</dc:source>
|
||||||
</xsl:template><!-- Language (R) from language@classid -->
|
</xsl:template><!-- Language (R) from language@classid -->
|
||||||
<xsl:template match="oaf:result/language">
|
<!-- Override default template -->
|
||||||
<dc:language>
|
|
||||||
<xsl:value-of select="./@classid" />
|
|
||||||
</dc:language>
|
|
||||||
</xsl:template><!-- Override default template -->
|
|
||||||
<xsl:template match="text()|@*" /><!-- =========================================================================== --><!-- === Convert camel case
|
<xsl:template match="text()|@*" /><!-- =========================================================================== --><!-- === Convert camel case
|
||||||
text to cameCaseText === --><!-- === Modified from http://blog.inventic.eu/2013/08/xslt-snippet-to-convert-string-from-hyphens-to-camelcase/
|
text to cameCaseText === --><!-- === Modified from http://blog.inventic.eu/2013/08/xslt-snippet-to-convert-string-from-hyphens-to-camelcase/
|
||||||
=== --><!-- === (c) Inventic s.r.o.
|
=== --><!-- === (c) Inventic s.r.o.
|
||||||
|
|
|
@ -3,114 +3,104 @@
|
||||||
<oaf:entity xmlns:oaf="http://namespace.openaire.eu/oaf"
|
<oaf:entity xmlns:oaf="http://namespace.openaire.eu/oaf"
|
||||||
schemaLocation="http://namespace.openaire.eu/oaf https://www.openaire.eu/schema/1.0/oaf-1.0.xsd">
|
schemaLocation="http://namespace.openaire.eu/oaf https://www.openaire.eu/schema/1.0/oaf-1.0.xsd">
|
||||||
<oaf:result>
|
<oaf:result>
|
||||||
<collectedfrom
|
<collectedfrom name="Crossref"
|
||||||
name="Waterford Institute of Technology - Open Access Repository"
|
id="openaire____::081b82f96300b6a6e3d282bad31cb6e2" />
|
||||||
id="opendoar____::50c1f44e426560f3f2cdcb3e19e39903" />
|
<collectedfrom name="UnpayWall"
|
||||||
<collectedfrom name="SETU Open Access Repository"
|
id="openaire____::8ac8380272269217cb09a928c8caa993" />
|
||||||
id="opendoar____::4daa3db355ef2b0e64b472968cb70f0d" />
|
<collectedfrom name="Microsoft Academic Graph"
|
||||||
<originalId>50|od______6005::55a12e2e0fee45ce8005633c6c17fe9f
|
id="openaire____::5f532a3fc4f1ea403f37070f59a7a53a" />
|
||||||
|
<collectedfrom name="DCU Online Research Access Service"
|
||||||
|
id="opendoar____::07e1cd7dca89a1678042477183b7ac3f" />
|
||||||
|
<originalId>10.1148/rg.246045021</originalId>
|
||||||
|
<originalId>50|doiboost____::a5f8c4dd47d89985b9d9a528ada5376f
|
||||||
</originalId>
|
</originalId>
|
||||||
<originalId>oai:repository.wit.ie:3029</originalId>
|
<originalId>1896184979</originalId>
|
||||||
<originalId>50|od_______934::e7162a5632264cd622ee7180ca66fdce
|
<originalId>oai:doras.dcu.ie:18761</originalId>
|
||||||
|
<originalId>50|od_______119::d5e0e4e3bfedc4de943911c58f6c5b3f
|
||||||
</originalId>
|
</originalId>
|
||||||
<originalId>oai:generic.eprints.org:3029</originalId>
|
<pid classid="doi" classname="Digital Object Identifier"
|
||||||
<originalId>50|od_______934::55a12e2e0fee45ce8005633c6c17fe9f
|
schemeid="dnet:pid_types" schemename="dnet:pid_types">10.1148/rg.246045021</pid>
|
||||||
</originalId>
|
<measure id="influence" score="5.1377786E-9" class="C4" />
|
||||||
<measure id="influence" score="3.1177596E-9" class="C5" />
|
<measure id="popularity" score="2.2026336E-9" class="C5" />
|
||||||
<measure id="popularity" score="1.2305752E-9" class="C5" />
|
<measure id="influence_alt" score="8" class="C5" />
|
||||||
<measure id="influence_alt" score="0" class="C5" />
|
<measure id="popularity_alt" score="1.00241" class="C5" />
|
||||||
<measure id="popularity_alt" score="0.0" class="C5" />
|
<measure id="impulse" score="4" class="C5" />
|
||||||
<measure id="impulse" score="0" class="C5" />
|
<title classid="subtitle" classname="subtitle"
|
||||||
<fulltext>http://repository.wit.ie/3029/1/Research%20Day%202015%20-%20Poster%20Tadhg%20Blommerde.pdf
|
schemeid="dnet:dataCite_title" schemename="dnet:dataCite_title">NeatVision: Visual
|
||||||
</fulltext>
|
Programming for Computer-aided Diagnostic Applications</title>
|
||||||
|
<title classid="alternative title" classname="alternative title"
|
||||||
|
schemeid="dnet:dataCite_title" schemename="dnet:dataCite_title">Informatics in radiology
|
||||||
|
(infoRAD): NeatVision: visual programming for computer-aided
|
||||||
|
diagnostic applications.</title>
|
||||||
<title classid="main title" classname="main title"
|
<title classid="main title" classname="main title"
|
||||||
schemeid="dnet:dataCite_title" schemename="dnet:dataCite_title"
|
schemeid="dnet:dataCite_title" schemename="dnet:dataCite_title">
|
||||||
inferred="false" provenanceaction="sysimport:crosswalk:repository"
|
Informatics in Radiology (
|
||||||
trust="0.9">A service innovation capability maturity model for SMEs</title>
|
<b>
|
||||||
|
<i>info</i>
|
||||||
|
</b>
|
||||||
|
RAD)
|
||||||
|
</title>
|
||||||
<bestaccessright classid="OPEN"
|
<bestaccessright classid="OPEN"
|
||||||
classname="Open Access" schemeid="dnet:access_modes"
|
classname="Open Access" schemeid="dnet:access_modes"
|
||||||
schemename="dnet:access_modes" />
|
schemename="dnet:access_modes" />
|
||||||
<creator rank="1" name="Tadhg" surname="Blommerde">Blommerde, Tadhg
|
<creator rank="1" name="Paul F." surname="Whelan"
|
||||||
</creator>
|
orcid="0000-0001-9230-7656">Whelan, Paul F.</creator>
|
||||||
<creator rank="2" name="Patrick" surname="Lynch">Lynch, Patrick
|
<creator rank="2" name="Robert J. T." surname="Sadleir">Sadleir, Robert
|
||||||
|
J.T.</creator>
|
||||||
|
<creator rank="3" name="Ovidiu" surname="Ghita">Ghita, Ovidiu
|
||||||
</creator>
|
</creator>
|
||||||
<country classid="IE" classname="Ireland"
|
<country classid="IE" classname="Ireland"
|
||||||
schemeid="dnet:countries" schemename="dnet:countries" />
|
schemeid="dnet:countries" schemename="dnet:countries" />
|
||||||
<dateofacceptance>2015-04-28</dateofacceptance>
|
<dateofacceptance>2004-11-01</dateofacceptance>
|
||||||
<description>There is general consensus that service innovations are
|
<description>A free visual programming–based image analysis
|
||||||
prerequisite to sustained competitive advantage and are an essential
|
development environment for medical imaging applications called
|
||||||
mechanism for responding to changes in customer needs and the
|
NeatVision was developed to provide high-level access to a wide range
|
||||||
operating environment of firms (Giannopoulou et al., 2011; Stryja et
|
of image processing algorithms through a well-defined, easy-to-use
|
||||||
al., 2013). Services have been described as ubiquitous in their role
|
graphical interface. The system contains over 300 image manipulation,
|
||||||
of generating economic growth and wellbeing and represent over 70% of
|
processing, and analysis algorithms. For more advanced users, an
|
||||||
employment and GDP in developed nations (Janssen et al., 2012;
|
upgrade path is provided to extend the core library with use of the
|
||||||
Mustak, 2014). As a consequence, service innovations must be a core
|
developer’s interface, giving users access to additional plug-in
|
||||||
ambition of all countries, regions, and firms wishing to remain
|
features, automatic source code generation, compilation with full
|
||||||
competitive (van Ark et al., 2003). While acknowledging the
|
error feedback, and dynamic algorithm updates. NeatVision was
|
||||||
importance of once-off innovations, more critical still is the
|
designed to allow users at all levels of expertise to focus on the
|
||||||
capability to repeatedly introduce and exploit service innovations
|
computer vision design task for computer-aided diagnostic (CAD)
|
||||||
(Siguaw et al., 2006). This is generally referred to as service
|
applications rather than the subtleties of a particular programming
|
||||||
innovation capability (SIC) and describes the repeatable routines and
|
language. The environment allows the designers of image
|
||||||
behaviours that organisations have in place to transform ideas and
|
analysis–based CAD techniques to implement their ideas in a dynamic
|
||||||
knowledge into innovations (Basterretxea and Martínez, 2012).
|
and straightforward manner. Both NeatVision standard and developer’s
|
||||||
However, despite links between SIC and continuous, sustainable, and
|
versions can be downloaded free of charge from the Internet and can
|
||||||
consistent service innovations, there is evidence that many
|
run on a variety of computer platforms.</description>
|
||||||
organisations struggle with its effective management (Adams et al.,
|
<subject classid="MAG"
|
||||||
2006; den Hertog et al., 2010). This is often attributed to the lack
|
classname="Microsoft Academic Graph classification"
|
||||||
of formal guidance available and the absence of metrics to determine
|
schemeid="dnet:subject_classification_typologies"
|
||||||
an organisation’s SIC performance (Hogan et al., 2011; Szczygielski,
|
schemename="dnet:subject_classification_typologies">Focus (computing)</subject>
|
||||||
2011). Maturity modelling research in this discipline remains at an
|
<subject classid="FOS"
|
||||||
embryonic stage, thus far presenting only conceptual and opaque
|
classname="Fields of Science and Technology classification"
|
||||||
discussions that fail to address the necessity for an assessment and
|
schemeid="dnet:subject_classification_typologies"
|
||||||
strategic management framework (Gryszkiewicz et al., 2013; Hipp and
|
schemename="dnet:subject_classification_typologies" inferred="true"
|
||||||
Grupp, 2005). Therefore, the purpose of this ongoing research project
|
inferenceprovenance="update" provenanceaction="subject:fos">0302 clinical medicine
|
||||||
is to evaluate the maturity of an organisation’s SIC to inform its
|
|
||||||
effective management and enhancement. To achieve this it
|
|
||||||
dimensionalises the concept into four constituent capabilities,
|
|
||||||
specifically, strategising, customer involvement, knowledge
|
|
||||||
management, and networking (Blommerde and Lynch, 2014). The study
|
|
||||||
then tracks the maturity of these capabilities as they progress
|
|
||||||
through eight evolutionary plateaus towards a fully developed or
|
|
||||||
optimal state. This is accomplished through a capability maturity
|
|
||||||
model that enables organisations to rapidly diagnose key areas of
|
|
||||||
strength and weakness to systematically cultivate behaviours that
|
|
||||||
leverage their untapped innovative potential (Wendler, 2012; Essmann
|
|
||||||
and du Preez, 2010). As a result of the immense knowledge vacuum
|
|
||||||
characteristic of this discipline, it is anticipated that this
|
|
||||||
ongoing research project will make a substantial contribution to both
|
|
||||||
academic understanding and take strides towards filling the void in
|
|
||||||
practical support (Rapaccini et al., 2013). It expands the service
|
|
||||||
innovation literature by detailing key service innovation levers,
|
|
||||||
bolsters the discipline through clear definitions of terminology,
|
|
||||||
provides a powerful explanation of the development of SICs, and
|
|
||||||
operationalises the dynamic capabilities view through a novel
|
|
||||||
self-assessment reference model (Jochem et al., 2011). The next step
|
|
||||||
in the project is the evaluation of the, as yet, conceptual service
|
|
||||||
innovation capability maturity model. Adopting a positivistic
|
|
||||||
philosophical stance, the study proposes the use of structural
|
|
||||||
equation modelling on data gathered through an extensive survey to
|
|
||||||
confirm the model and support theoretical assumptions.
|
|
||||||
</description>
|
|
||||||
<subject classid="keyword" classname="keyword"
|
|
||||||
schemeid="dnet:result_subject" schemename="dnet:result_subject"
|
|
||||||
inferred="false" provenanceaction="sysimport:crosswalk:repository"
|
|
||||||
trust="0.9">RIKON (Research in Inovation, Knowledge & Organisational
|
|
||||||
Networks)
|
|
||||||
</subject>
|
</subject>
|
||||||
|
<subject classid="keyword" classname="keyword"
|
||||||
|
schemeid="dnet:subject_classification_typologies"
|
||||||
|
schemename="dnet:subject_classification_typologies">Radiology, Nuclear Medicine and imaging</subject>
|
||||||
<language classid="eng" classname="English"
|
<language classid="eng" classname="English"
|
||||||
schemeid="dnet:languages" schemename="dnet:languages" />
|
schemeid="dnet:languages" schemename="dnet:languages" />
|
||||||
|
<relevantdate classid="created" classname="created"
|
||||||
|
schemeid="dnet:dataCite_date" schemename="dnet:dataCite_date">2007-03-06</relevantdate>
|
||||||
|
<relevantdate classid="published-print"
|
||||||
|
classname="published-print" schemeid="dnet:dataCite_date"
|
||||||
|
schemename="dnet:dataCite_date">2004-11-01</relevantdate>
|
||||||
|
<publisher>Radiological Society of North America (RSNA)</publisher>
|
||||||
|
<source>Crossref</source>
|
||||||
<format>application/pdf</format>
|
<format>application/pdf</format>
|
||||||
<resulttype classid="publication" classname="publication"
|
<resulttype classid="publication" classname="publication" schemeid="dnet:result_typologies" schemename="dnet:result_typologies" />
|
||||||
schemeid="dnet:result_typologies" schemename="dnet:result_typologies" />
|
|
||||||
<resourcetype classid="UNKNOWN" classname="UNKNOWN"
|
<resourcetype classid="UNKNOWN" classname="UNKNOWN"
|
||||||
schemeid="dnet:dataCite_resource" schemename="dnet:dataCite_resource" />
|
schemeid="dnet:dataCite_resource" schemename="dnet:dataCite_resource" />
|
||||||
<isgreen>false</isgreen>
|
<isgreen>false</isgreen>
|
||||||
|
<openaccesscolor>bronze</openaccesscolor>
|
||||||
<isindiamondjournal>false</isindiamondjournal>
|
<isindiamondjournal>false</isindiamondjournal>
|
||||||
<publiclyfunded>true</publiclyfunded>
|
<publiclyfunded>true</publiclyfunded>
|
||||||
<context id="eu-conexus"
|
<journal issn="0271-5333" eissn="1527-1323" ep="1789" sp="1779" vol="24">RadioGraphics</journal>
|
||||||
label="European University for Smart Urban Coastal Sustainability"
|
|
||||||
type="community" />
|
|
||||||
<context id="tunet" label="TU-NET" type="community" />
|
|
||||||
<datainfo>
|
<datainfo>
|
||||||
<inferred>true</inferred>
|
<inferred>true</inferred>
|
||||||
<deletedbyinference>false</deletedbyinference>
|
<deletedbyinference>false</deletedbyinference>
|
||||||
|
@ -122,70 +112,100 @@
|
||||||
schemename="dnet:provenanceActions" />
|
schemename="dnet:provenanceActions" />
|
||||||
</datainfo>
|
</datainfo>
|
||||||
<rels>
|
<rels>
|
||||||
<rel inferred="true" trust="0.85"
|
<rel inferred="false" trust="0.9" inferenceprovenance=""
|
||||||
inferenceprovenance="propagation"
|
provenanceaction="sysimport:actionset">
|
||||||
provenanceaction="result:organization:instrepo">
|
|
||||||
<to class="hasAuthorInstitution"
|
<to class="hasAuthorInstitution"
|
||||||
scheme="dnet:result_organization_relations" type="organization">openorgs____::54cd984fc7d3b153ec2181f985041f02
|
scheme="dnet:result_organization_relations" type="organization">openorgs____::dafb688ddaf1c6c3d5e09ef61c0f0389
|
||||||
</to>
|
</to>
|
||||||
<country classid="IE" classname="Ireland"
|
<country classid="IE" classname="Ireland"
|
||||||
schemeid="dnet:countries" schemename="dnet:countries" />
|
schemeid="dnet:countries" schemename="dnet:countries" />
|
||||||
<legalshortname>WIT</legalshortname>
|
<legalname>Dublin City University</legalname>
|
||||||
<legalname>South East Technological University</legalname>
|
<legalshortname>DCU</legalshortname>
|
||||||
</rel>
|
</rel>
|
||||||
</rels>
|
</rels>
|
||||||
<children>
|
<children>
|
||||||
<result
|
<result
|
||||||
objidentifier="od_______934::e7162a5632264cd622ee7180ca66fdce">
|
objidentifier="doi_________::a5f8c4dd47d89985b9d9a528ada5376f">
|
||||||
<title classid="main title" classname="main title"
|
<dateofacceptance>2004-11-01</dateofacceptance>
|
||||||
schemeid="dnet:dataCite_title" schemename="dnet:dataCite_title"
|
<collectedfrom name="Crossref"
|
||||||
inferred="false" provenanceaction="sysimport:crosswalk:repository"
|
id="openaire____::081b82f96300b6a6e3d282bad31cb6e2" />
|
||||||
trust="0.9">A service innovation capability maturity model for SMEs
|
<publisher>Radiological Society of North America (RSNA)</publisher>
|
||||||
</title>
|
<collectedfrom name="UnpayWall"
|
||||||
<dateofacceptance>2015-04-28</dateofacceptance>
|
id="openaire____::8ac8380272269217cb09a928c8caa993" />
|
||||||
<collectedfrom name="SETU Open Access Repository"
|
<title classid="subtitle" classname="subtitle"
|
||||||
id="opendoar____::4daa3db355ef2b0e64b472968cb70f0d" />
|
schemeid="dnet:dataCite_title" schemename="dnet:dataCite_title">NeatVision: Visual
|
||||||
|
Programming for Computer-aided Diagnostic Applications</title>
|
||||||
|
<collectedfrom name="Microsoft Academic Graph"
|
||||||
|
id="openaire____::5f532a3fc4f1ea403f37070f59a7a53a" />
|
||||||
|
<pid classid="doi" classname="Digital Object Identifier"
|
||||||
|
schemeid="dnet:pid_types" schemename="dnet:pid_types">10.1148/rg.246045021</pid>
|
||||||
</result>
|
</result>
|
||||||
<result
|
<result
|
||||||
objidentifier="od______6005::55a12e2e0fee45ce8005633c6c17fe9f">
|
objidentifier="od_______119::d5e0e4e3bfedc4de943911c58f6c5b3f">
|
||||||
<title classid="main title" classname="main title"
|
<dateofacceptance>2004-01-01</dateofacceptance>
|
||||||
schemeid="dnet:dataCite_title" schemename="dnet:dataCite_title"
|
<publisher>RSNA</publisher>
|
||||||
inferred="false" provenanceaction="sysimport:crosswalk:repository"
|
|
||||||
trust="0.9">A service innovation capability maturity model for SMEs
|
|
||||||
</title>
|
|
||||||
<dateofacceptance>2015-04-28</dateofacceptance>
|
|
||||||
<collectedfrom
|
<collectedfrom
|
||||||
name="Waterford Institute of Technology - Open Access Repository"
|
name="DCU Online Research Access Service"
|
||||||
id="opendoar____::50c1f44e426560f3f2cdcb3e19e39903" />
|
id="opendoar____::07e1cd7dca89a1678042477183b7ac3f" />
|
||||||
</result>
|
|
||||||
<result
|
|
||||||
objidentifier="od_______934::55a12e2e0fee45ce8005633c6c17fe9f">
|
|
||||||
<title classid="main title" classname="main title"
|
<title classid="main title" classname="main title"
|
||||||
schemeid="dnet:dataCite_title" schemename="dnet:dataCite_title"
|
schemeid="dnet:dataCite_title" schemename="dnet:dataCite_title"
|
||||||
inferred="false" provenanceaction="sysimport:crosswalk:repository"
|
inferred="false" provenanceaction="sysimport:crosswalk:repository"
|
||||||
trust="0.9">A service innovation capability maturity model for SMEs
|
trust="0.9">Informatics in radiology (infoRAD): NeatVision: visual
|
||||||
</title>
|
programming for computer-aided diagnostic applications</title>
|
||||||
<dateofacceptance>2015-04-28</dateofacceptance>
|
|
||||||
<collectedfrom name="SETU Open Access Repository"
|
|
||||||
id="opendoar____::4daa3db355ef2b0e64b472968cb70f0d" />
|
|
||||||
</result>
|
</result>
|
||||||
|
<instance>
|
||||||
|
<accessright classid="UNKNOWN" classname="not available"
|
||||||
|
schemeid="dnet:access_modes" schemename="dnet:access_modes" />
|
||||||
|
<collectedfrom name="Crossref"
|
||||||
|
id="openaire____::081b82f96300b6a6e3d282bad31cb6e2" />
|
||||||
|
<hostedby name="Radiographics"
|
||||||
|
id="issn___print::43bbbb9d0b8229760e963714e2432bde" />
|
||||||
|
<dateofacceptance>2004-11-01</dateofacceptance>
|
||||||
|
<instancetype classid="0001" classname="Article"
|
||||||
|
schemeid="dnet:publication_resource"
|
||||||
|
schemename="dnet:publication_resource" />
|
||||||
|
<pid classid="doi" classname="Digital Object Identifier"
|
||||||
|
schemeid="dnet:pid_types" schemename="dnet:pid_types">10.1148/rg.246045021</pid>
|
||||||
|
<refereed classid="0001" classname="peerReviewed"
|
||||||
|
schemeid="dnet:review_levels" schemename="dnet:review_levels" />
|
||||||
|
<webresource>
|
||||||
|
<url>https://doi.org/10.1148/rg.246045021</url>
|
||||||
|
</webresource>
|
||||||
|
</instance>
|
||||||
<instance>
|
<instance>
|
||||||
<accessright classid="OPEN" classname="Open Access"
|
<accessright classid="OPEN" classname="Open Access"
|
||||||
schemeid="dnet:access_modes" schemename="dnet:access_modes" />
|
schemeid="dnet:access_modes" schemename="dnet:access_modes" />
|
||||||
<collectedfrom name="SETU Open Access Repository"
|
<collectedfrom
|
||||||
id="opendoar____::4daa3db355ef2b0e64b472968cb70f0d" />
|
name="DCU Online Research Access Service"
|
||||||
<hostedby name="SETU Open Access Repository"
|
id="opendoar____::07e1cd7dca89a1678042477183b7ac3f" />
|
||||||
id="opendoar____::4daa3db355ef2b0e64b472968cb70f0d" />
|
<hostedby name="DCU Online Research Access Service"
|
||||||
<dateofacceptance>2015-04-28</dateofacceptance>
|
id="opendoar____::07e1cd7dca89a1678042477183b7ac3f" />
|
||||||
<instancetype classid="0004"
|
<dateofacceptance>2004-01-01</dateofacceptance>
|
||||||
classname="Conference object" schemeid="dnet:publication_resource"
|
<instancetype classid="0001" classname="Article"
|
||||||
|
schemeid="dnet:publication_resource"
|
||||||
schemename="dnet:publication_resource" />
|
schemename="dnet:publication_resource" />
|
||||||
|
<refereed classid="0001" classname="peerReviewed"
|
||||||
|
schemeid="dnet:review_levels" schemename="dnet:review_levels" />
|
||||||
|
<webresource>
|
||||||
|
<url>http://doras.dcu.ie/18761/1/whelan_2004_103.pdf</url>
|
||||||
|
</webresource>
|
||||||
|
</instance>
|
||||||
|
<instance>
|
||||||
|
<accessright classid="OPEN" classname="Open Access"
|
||||||
|
schemeid="dnet:access_modes" schemename="dnet:access_modes" />
|
||||||
|
<collectedfrom name="UnpayWall"
|
||||||
|
id="openaire____::8ac8380272269217cb09a928c8caa993" />
|
||||||
|
<hostedby name="Radiographics"
|
||||||
|
id="issn___print::43bbbb9d0b8229760e963714e2432bde" />
|
||||||
|
<instancetype classid="0001" classname="Article"
|
||||||
|
schemeid="dnet:publication_resource"
|
||||||
|
schemename="dnet:publication_resource" />
|
||||||
|
<pid classid="doi" classname="Digital Object Identifier"
|
||||||
|
schemeid="dnet:pid_types" schemename="dnet:pid_types">10.1148/rg.246045021</pid>
|
||||||
<refereed classid="0002" classname="nonPeerReviewed"
|
<refereed classid="0002" classname="nonPeerReviewed"
|
||||||
schemeid="dnet:review_levels" schemename="dnet:review_levels" />
|
schemeid="dnet:review_levels" schemename="dnet:review_levels" />
|
||||||
<fulltext>http://repository.wit.ie/3029/1/Research%20Day%202015%20-%20Poster%20Tadhg%20Blommerde.pdf
|
|
||||||
</fulltext>
|
|
||||||
<webresource>
|
<webresource>
|
||||||
<url>http://repository.wit.ie/3029/</url>
|
<url>https://pubs.rsna.org/doi/pdf/10.1148/rg.246045021</url>
|
||||||
</webresource>
|
</webresource>
|
||||||
</instance>
|
</instance>
|
||||||
</children>
|
</children>
|
||||||
|
|
Loading…
Reference in New Issue