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:template match="/oaf:result">
|
||||
<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">
|
||||
|
||||
<xsl:template match="/oaf:entity/oaf:result">
|
||||
<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">
|
||||
|
||||
<!--
|
||||
<dc:title>Studies of Unicorn Behaviour</dc:title>
|
||||
|
@ -39,24 +36,119 @@
|
|||
<dc:type>info:eu-repo/semantics/article</dc:type>
|
||||
-->
|
||||
|
||||
<!-- Title -->
|
||||
<xsl:for-each select="./oaf:title">
|
||||
<!-- dc:title -->
|
||||
<xsl:for-each select="./title[@classid='main title']">
|
||||
<dc:title>
|
||||
<xsl:value-of select="normalize-space(.)" />
|
||||
</dc:title>
|
||||
</xsl:for-each>
|
||||
|
||||
<!-- identifier -->
|
||||
<!-- creator -->
|
||||
<!-- description -->
|
||||
<!-- subject: info:eu-repo/classification/ddc/590< -->
|
||||
<!-- subject: free keywords -->
|
||||
<!-- relation: projects -->
|
||||
<!-- relation: altIdentifiers -->
|
||||
<!-- relation: reference -->
|
||||
<!-- relation: dataset -->
|
||||
<!-- rights: info:eu-repo/semantics/openAccess -->
|
||||
<xsl:for-each select="./oaf:bestaccessright">
|
||||
<!-- dc:creator -->
|
||||
<xsl:for-each select="./creator">
|
||||
<xsl:sort select="@rank" />
|
||||
<dc:creator>
|
||||
<xsl:value-of select="normalize-space(.)" />
|
||||
</dc:creator>
|
||||
</xsl:for-each>
|
||||
|
||||
<!-- dc:subject: free keywords -->
|
||||
<xsl:for-each select="./subject[@classname='keyword']">
|
||||
<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>
|
||||
<xsl:choose>
|
||||
<xsl:when test="@classid='OPEN'">info:eu-repo/semantics/openAccess</xsl:when>
|
||||
|
@ -67,22 +159,6 @@
|
|||
</xsl:choose>
|
||||
</dc:rights>
|
||||
</xsl:for-each>
|
||||
|
||||
|
||||
|
||||
<!-- rights: other vocabularies -->
|
||||
<!-- source -->
|
||||
<!-- publisher -->
|
||||
<!-- date -->
|
||||
<!-- type -->
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</oai_dc:dc>
|
||||
</xsl:template>
|
||||
|
||||
|
@ -125,30 +201,9 @@
|
|||
<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
|
||||
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:value-of
|
||||
select="concat('info:eu-repo/date/embargoEnd/', .)" />
|
||||
</dc:date>
|
||||
</xsl:template><!-- <xsl:template match="oaf:result/originalId/text()">
|
||||
|
||||
<!-- <xsl:template match="oaf:result/originalId/text()">
|
||||
<dc:identifier> <xsl:value-of select="normalize-space(.)"/> </dc:identifier>
|
||||
</xsl:template> --><!-- Alternative Identifier (R), idType from pid@classid
|
||||
<dc:relation> info:eu-repo/semantics/altIdentifier/[idType]/[ID] </dc:relation> -->
|
||||
|
@ -158,12 +213,7 @@
|
|||
select="concat('info:eu-repo/semantics/altIdentifier/', @classid, '/', ./text())" />
|
||||
</dc:relation>
|
||||
</xsl:template>
|
||||
<xsl:template
|
||||
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,
|
||||
<!--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]
|
||||
</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
|
||||
|
@ -199,34 +249,10 @@
|
|||
If subject@classname != keywords, then we have a classification scheme to
|
||||
encode <dc:subject>info:eu-repo/classification/[scheme]/[value]</dc:subject>
|
||||
<dc:subject>info:eu-repo/classification/dcc/whatever</dc:subject> -->
|
||||
<xsl:template
|
||||
match="oaf:result/subject[@classname='keyword']">
|
||||
<dc:subject>
|
||||
<xsl:value-of select="normalize-space(./text())" />
|
||||
</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
|
||||
<!--description (M w A) from description -->
|
||||
<!--publisher (M w A) from publisher -->
|
||||
<!-- Publication date (M) from dateofacceptance -->
|
||||
<!-- Publication type (M) where [type] is /instancetype[1]/classname
|
||||
(dnet:publication_resource vocabulary). A second dc:type (uncontrolled) can
|
||||
be used. <dc:type>info:eu-repo/semantics/[type]</dc:type> -->
|
||||
<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
|
||||
it <dc:format>mediaType of the digital manifestation of the resource</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">
|
||||
<dc:source>
|
||||
<xsl:value-of select="normalize-space(@name)" />
|
||||
</dc:source>
|
||||
</xsl:template><!-- Language (R) from language@classid -->
|
||||
<xsl:template match="oaf:result/language">
|
||||
<dc:language>
|
||||
<xsl:value-of select="./@classid" />
|
||||
</dc:language>
|
||||
</xsl:template><!-- Override default template -->
|
||||
<!-- Override default template -->
|
||||
<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/
|
||||
=== --><!-- === (c) Inventic s.r.o.
|
||||
|
|
|
@ -3,114 +3,104 @@
|
|||
<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">
|
||||
<oaf:result>
|
||||
<collectedfrom
|
||||
name="Waterford Institute of Technology - Open Access Repository"
|
||||
id="opendoar____::50c1f44e426560f3f2cdcb3e19e39903" />
|
||||
<collectedfrom name="SETU Open Access Repository"
|
||||
id="opendoar____::4daa3db355ef2b0e64b472968cb70f0d" />
|
||||
<originalId>50|od______6005::55a12e2e0fee45ce8005633c6c17fe9f
|
||||
<collectedfrom name="Crossref"
|
||||
id="openaire____::081b82f96300b6a6e3d282bad31cb6e2" />
|
||||
<collectedfrom name="UnpayWall"
|
||||
id="openaire____::8ac8380272269217cb09a928c8caa993" />
|
||||
<collectedfrom name="Microsoft Academic Graph"
|
||||
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>oai:repository.wit.ie:3029</originalId>
|
||||
<originalId>50|od_______934::e7162a5632264cd622ee7180ca66fdce
|
||||
<originalId>1896184979</originalId>
|
||||
<originalId>oai:doras.dcu.ie:18761</originalId>
|
||||
<originalId>50|od_______119::d5e0e4e3bfedc4de943911c58f6c5b3f
|
||||
</originalId>
|
||||
<originalId>oai:generic.eprints.org:3029</originalId>
|
||||
<originalId>50|od_______934::55a12e2e0fee45ce8005633c6c17fe9f
|
||||
</originalId>
|
||||
<measure id="influence" score="3.1177596E-9" class="C5" />
|
||||
<measure id="popularity" score="1.2305752E-9" class="C5" />
|
||||
<measure id="influence_alt" score="0" class="C5" />
|
||||
<measure id="popularity_alt" score="0.0" class="C5" />
|
||||
<measure id="impulse" score="0" class="C5" />
|
||||
<fulltext>http://repository.wit.ie/3029/1/Research%20Day%202015%20-%20Poster%20Tadhg%20Blommerde.pdf
|
||||
</fulltext>
|
||||
<pid classid="doi" classname="Digital Object Identifier"
|
||||
schemeid="dnet:pid_types" schemename="dnet:pid_types">10.1148/rg.246045021</pid>
|
||||
<measure id="influence" score="5.1377786E-9" class="C4" />
|
||||
<measure id="popularity" score="2.2026336E-9" class="C5" />
|
||||
<measure id="influence_alt" score="8" class="C5" />
|
||||
<measure id="popularity_alt" score="1.00241" class="C5" />
|
||||
<measure id="impulse" score="4" class="C5" />
|
||||
<title classid="subtitle" classname="subtitle"
|
||||
schemeid="dnet:dataCite_title" schemename="dnet:dataCite_title">NeatVision: Visual
|
||||
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"
|
||||
schemeid="dnet:dataCite_title" schemename="dnet:dataCite_title"
|
||||
inferred="false" provenanceaction="sysimport:crosswalk:repository"
|
||||
trust="0.9">A service innovation capability maturity model for SMEs</title>
|
||||
schemeid="dnet:dataCite_title" schemename="dnet:dataCite_title">
|
||||
Informatics in Radiology (
|
||||
<b>
|
||||
<i>info</i>
|
||||
</b>
|
||||
RAD)
|
||||
</title>
|
||||
<bestaccessright classid="OPEN"
|
||||
classname="Open Access" schemeid="dnet:access_modes"
|
||||
schemename="dnet:access_modes" />
|
||||
<creator rank="1" name="Tadhg" surname="Blommerde">Blommerde, Tadhg
|
||||
</creator>
|
||||
<creator rank="2" name="Patrick" surname="Lynch">Lynch, Patrick
|
||||
<creator rank="1" name="Paul F." surname="Whelan"
|
||||
orcid="0000-0001-9230-7656">Whelan, Paul F.</creator>
|
||||
<creator rank="2" name="Robert J. T." surname="Sadleir">Sadleir, Robert
|
||||
J.T.</creator>
|
||||
<creator rank="3" name="Ovidiu" surname="Ghita">Ghita, Ovidiu
|
||||
</creator>
|
||||
<country classid="IE" classname="Ireland"
|
||||
schemeid="dnet:countries" schemename="dnet:countries" />
|
||||
<dateofacceptance>2015-04-28</dateofacceptance>
|
||||
<description>There is general consensus that service innovations are
|
||||
prerequisite to sustained competitive advantage and are an essential
|
||||
mechanism for responding to changes in customer needs and the
|
||||
operating environment of firms (Giannopoulou et al., 2011; Stryja et
|
||||
al., 2013). Services have been described as ubiquitous in their role
|
||||
of generating economic growth and wellbeing and represent over 70% of
|
||||
employment and GDP in developed nations (Janssen et al., 2012;
|
||||
Mustak, 2014). As a consequence, service innovations must be a core
|
||||
ambition of all countries, regions, and firms wishing to remain
|
||||
competitive (van Ark et al., 2003). While acknowledging the
|
||||
importance of once-off innovations, more critical still is the
|
||||
capability to repeatedly introduce and exploit service innovations
|
||||
(Siguaw et al., 2006). This is generally referred to as service
|
||||
innovation capability (SIC) and describes the repeatable routines and
|
||||
behaviours that organisations have in place to transform ideas and
|
||||
knowledge into innovations (Basterretxea and Martínez, 2012).
|
||||
However, despite links between SIC and continuous, sustainable, and
|
||||
consistent service innovations, there is evidence that many
|
||||
organisations struggle with its effective management (Adams et al.,
|
||||
2006; den Hertog et al., 2010). This is often attributed to the lack
|
||||
of formal guidance available and the absence of metrics to determine
|
||||
an organisation’s SIC performance (Hogan et al., 2011; Szczygielski,
|
||||
2011). Maturity modelling research in this discipline remains at an
|
||||
embryonic stage, thus far presenting only conceptual and opaque
|
||||
discussions that fail to address the necessity for an assessment and
|
||||
strategic management framework (Gryszkiewicz et al., 2013; Hipp and
|
||||
Grupp, 2005). Therefore, the purpose of this ongoing research project
|
||||
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)
|
||||
<dateofacceptance>2004-11-01</dateofacceptance>
|
||||
<description>A free visual programming–based image analysis
|
||||
development environment for medical imaging applications called
|
||||
NeatVision was developed to provide high-level access to a wide range
|
||||
of image processing algorithms through a well-defined, easy-to-use
|
||||
graphical interface. The system contains over 300 image manipulation,
|
||||
processing, and analysis algorithms. For more advanced users, an
|
||||
upgrade path is provided to extend the core library with use of the
|
||||
developer’s interface, giving users access to additional plug-in
|
||||
features, automatic source code generation, compilation with full
|
||||
error feedback, and dynamic algorithm updates. NeatVision was
|
||||
designed to allow users at all levels of expertise to focus on the
|
||||
computer vision design task for computer-aided diagnostic (CAD)
|
||||
applications rather than the subtleties of a particular programming
|
||||
language. The environment allows the designers of image
|
||||
analysis–based CAD techniques to implement their ideas in a dynamic
|
||||
and straightforward manner. Both NeatVision standard and developer’s
|
||||
versions can be downloaded free of charge from the Internet and can
|
||||
run on a variety of computer platforms.</description>
|
||||
<subject classid="MAG"
|
||||
classname="Microsoft Academic Graph classification"
|
||||
schemeid="dnet:subject_classification_typologies"
|
||||
schemename="dnet:subject_classification_typologies">Focus (computing)</subject>
|
||||
<subject classid="FOS"
|
||||
classname="Fields of Science and Technology classification"
|
||||
schemeid="dnet:subject_classification_typologies"
|
||||
schemename="dnet:subject_classification_typologies" inferred="true"
|
||||
inferenceprovenance="update" provenanceaction="subject:fos">0302 clinical medicine
|
||||
</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"
|
||||
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>
|
||||
<resulttype classid="publication" classname="publication"
|
||||
schemeid="dnet:result_typologies" schemename="dnet:result_typologies" />
|
||||
<resulttype classid="publication" classname="publication" schemeid="dnet:result_typologies" schemename="dnet:result_typologies" />
|
||||
<resourcetype classid="UNKNOWN" classname="UNKNOWN"
|
||||
schemeid="dnet:dataCite_resource" schemename="dnet:dataCite_resource" />
|
||||
<isgreen>false</isgreen>
|
||||
<openaccesscolor>bronze</openaccesscolor>
|
||||
<isindiamondjournal>false</isindiamondjournal>
|
||||
<publiclyfunded>true</publiclyfunded>
|
||||
<context id="eu-conexus"
|
||||
label="European University for Smart Urban Coastal Sustainability"
|
||||
type="community" />
|
||||
<context id="tunet" label="TU-NET" type="community" />
|
||||
<journal issn="0271-5333" eissn="1527-1323" ep="1789" sp="1779" vol="24">RadioGraphics</journal>
|
||||
<datainfo>
|
||||
<inferred>true</inferred>
|
||||
<deletedbyinference>false</deletedbyinference>
|
||||
|
@ -122,70 +112,100 @@
|
|||
schemename="dnet:provenanceActions" />
|
||||
</datainfo>
|
||||
<rels>
|
||||
<rel inferred="true" trust="0.85"
|
||||
inferenceprovenance="propagation"
|
||||
provenanceaction="result:organization:instrepo">
|
||||
<rel inferred="false" trust="0.9" inferenceprovenance=""
|
||||
provenanceaction="sysimport:actionset">
|
||||
<to class="hasAuthorInstitution"
|
||||
scheme="dnet:result_organization_relations" type="organization">openorgs____::54cd984fc7d3b153ec2181f985041f02
|
||||
scheme="dnet:result_organization_relations" type="organization">openorgs____::dafb688ddaf1c6c3d5e09ef61c0f0389
|
||||
</to>
|
||||
<country classid="IE" classname="Ireland"
|
||||
schemeid="dnet:countries" schemename="dnet:countries" />
|
||||
<legalshortname>WIT</legalshortname>
|
||||
<legalname>South East Technological University</legalname>
|
||||
<legalname>Dublin City University</legalname>
|
||||
<legalshortname>DCU</legalshortname>
|
||||
</rel>
|
||||
</rels>
|
||||
<children>
|
||||
<result
|
||||
objidentifier="od_______934::e7162a5632264cd622ee7180ca66fdce">
|
||||
<title classid="main title" classname="main title"
|
||||
schemeid="dnet:dataCite_title" schemename="dnet:dataCite_title"
|
||||
inferred="false" provenanceaction="sysimport:crosswalk:repository"
|
||||
trust="0.9">A service innovation capability maturity model for SMEs
|
||||
</title>
|
||||
<dateofacceptance>2015-04-28</dateofacceptance>
|
||||
<collectedfrom name="SETU Open Access Repository"
|
||||
id="opendoar____::4daa3db355ef2b0e64b472968cb70f0d" />
|
||||
objidentifier="doi_________::a5f8c4dd47d89985b9d9a528ada5376f">
|
||||
<dateofacceptance>2004-11-01</dateofacceptance>
|
||||
<collectedfrom name="Crossref"
|
||||
id="openaire____::081b82f96300b6a6e3d282bad31cb6e2" />
|
||||
<publisher>Radiological Society of North America (RSNA)</publisher>
|
||||
<collectedfrom name="UnpayWall"
|
||||
id="openaire____::8ac8380272269217cb09a928c8caa993" />
|
||||
<title classid="subtitle" classname="subtitle"
|
||||
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
|
||||
objidentifier="od______6005::55a12e2e0fee45ce8005633c6c17fe9f">
|
||||
<title classid="main title" classname="main title"
|
||||
schemeid="dnet:dataCite_title" schemename="dnet:dataCite_title"
|
||||
inferred="false" provenanceaction="sysimport:crosswalk:repository"
|
||||
trust="0.9">A service innovation capability maturity model for SMEs
|
||||
</title>
|
||||
<dateofacceptance>2015-04-28</dateofacceptance>
|
||||
objidentifier="od_______119::d5e0e4e3bfedc4de943911c58f6c5b3f">
|
||||
<dateofacceptance>2004-01-01</dateofacceptance>
|
||||
<publisher>RSNA</publisher>
|
||||
<collectedfrom
|
||||
name="Waterford Institute of Technology - Open Access Repository"
|
||||
id="opendoar____::50c1f44e426560f3f2cdcb3e19e39903" />
|
||||
</result>
|
||||
<result
|
||||
objidentifier="od_______934::55a12e2e0fee45ce8005633c6c17fe9f">
|
||||
name="DCU Online Research Access Service"
|
||||
id="opendoar____::07e1cd7dca89a1678042477183b7ac3f" />
|
||||
<title classid="main title" classname="main title"
|
||||
schemeid="dnet:dataCite_title" schemename="dnet:dataCite_title"
|
||||
inferred="false" provenanceaction="sysimport:crosswalk:repository"
|
||||
trust="0.9">A service innovation capability maturity model for SMEs
|
||||
</title>
|
||||
<dateofacceptance>2015-04-28</dateofacceptance>
|
||||
<collectedfrom name="SETU Open Access Repository"
|
||||
id="opendoar____::4daa3db355ef2b0e64b472968cb70f0d" />
|
||||
trust="0.9">Informatics in radiology (infoRAD): NeatVision: visual
|
||||
programming for computer-aided diagnostic applications</title>
|
||||
</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>
|
||||
<accessright classid="OPEN" classname="Open Access"
|
||||
schemeid="dnet:access_modes" schemename="dnet:access_modes" />
|
||||
<collectedfrom name="SETU Open Access Repository"
|
||||
id="opendoar____::4daa3db355ef2b0e64b472968cb70f0d" />
|
||||
<hostedby name="SETU Open Access Repository"
|
||||
id="opendoar____::4daa3db355ef2b0e64b472968cb70f0d" />
|
||||
<dateofacceptance>2015-04-28</dateofacceptance>
|
||||
<instancetype classid="0004"
|
||||
classname="Conference object" schemeid="dnet:publication_resource"
|
||||
<collectedfrom
|
||||
name="DCU Online Research Access Service"
|
||||
id="opendoar____::07e1cd7dca89a1678042477183b7ac3f" />
|
||||
<hostedby name="DCU Online Research Access Service"
|
||||
id="opendoar____::07e1cd7dca89a1678042477183b7ac3f" />
|
||||
<dateofacceptance>2004-01-01</dateofacceptance>
|
||||
<instancetype classid="0001" classname="Article"
|
||||
schemeid="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"
|
||||
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>
|
||||
<url>http://repository.wit.ie/3029/</url>
|
||||
<url>https://pubs.rsna.org/doi/pdf/10.1148/rg.246045021</url>
|
||||
</webresource>
|
||||
</instance>
|
||||
</children>
|
||||
|
|
Loading…
Reference in New Issue