如何使用RML映射xml文件的子元素来创建RDF?

问题描述 投票:1回答:1

我想使用RML映射创建RDF。 XML部分如下所示。我为“属性”和“ FB”制作了三重映射。其中一个FB有一个子“属性”,但是结果是,每个“ FB”三元组都具有“属性”。是否有任何解决方案可以使子“属性”仅对于一个“ FB”元素唯一?

  <Application ID="A4ABD8400116F035" Name="HotWater">
<SubAppNetwork>
  <FB ID="3D77F5AE3E23F522" Name="HW_setpoint" Type="CAThmiInput" x="360" y="880" Namespace="nxtControl.Tutorial" />
  <FB ID="38615A5C87F12AA3" Name="HW_pump1" Type="CATmotor" x="2760" y="260" Namespace="nxtControl.Tutorial" />
  <FB ID="3632883FE07D2F09" Name="HW_pump2" Type="CATmotor" x="2760" y="860" Namespace="nxtControl.Tutorial">
    <Parameter Name="AutoOn" Value="TRUE" />
  </FB>
  <FB ID="FB64994118EB2489" Name="HW_pidController" Type="CATpidController" x="1000" y="260" Namespace="nxtControl.Tutorial" />
  <FB ID="1C32C8BEDD84AAA7" Name="HW_sensor" Type="CATsensor" x="360" y="260" Namespace="nxtControl.Tutorial" />
  <FB ID="97DE5397424C589F" Name="HW_valve" Type="CATvalve" x="1620" y="260" Namespace="nxtControl.Tutorial" />
  <FB ID="3A265436F99A7B87" Name="HW_compare" Type="COMPARE_1990CFD1468AAE4A6" x="2220" y="260" Namespace="Main">
    <Attribute Name="Configuration.GenericFBType.InterfaceParams" Value="Runtime.Standard#CNT:=2;IN${CNT}:LREAL" />
    <Parameter Name="IN2" Value="0.0" />
  </FB>
  <EventConnections>
    <Connection Source="HW_sensor.CNF" Destination="HW_pidController.REQ" />
    <Connection Source="HW_setpoint.CNF" Destination="HW_pidController.REQ" dx1="110.7709">
      <AvoidsNodes>false</AvoidsNodes>
    </Connection>
    <Connection Source="HW_pidController.CNF" Destination="HW_valve.REQ" />
    <Connection Source="HW_valve.CNF" Destination="HW_compare.REQ" />
    <Connection Source="HW_compare.CNF" Destination="HW_pump1.REQ" />
  </EventConnections>
  <DataConnections>
    <Connection Source="HW_sensor.outValue" Destination="HW_pidController.pv" dx1="41.3125" />
    <Connection Source="HW_setpoint.value" Destination="HW_pidController.sp" dx1="170.7709">
      <AvoidsNodes>false</AvoidsNodes>
    </Connection>
    <Connection Source="HW_pidController.cp" Destination="HW_valve.AutoSP" />
    <Connection Source="HW_compare.GT" Destination="HW_pump1.AutoOn" dx1="70" />
    <Connection Source="HW_valve.cp" Destination="HW_compare.IN1" />
  </DataConnections>
</SubAppNetwork>

映射:

  <#AttributeMapping>
  a rr:TriplesMap;
  rml:logicalSource [
    rml:source "System.xml" ;
    rml:iterator "/System/Application/SubAppNetwork/FB/Attribute";
    rml:referenceFormulation ql:XPath
  ];

rr:subjectMap [
rr:template "http://sth/example#/SubAppNetwork/FB/Attribute-{@Name}";
rr:class iec61499:Attribute
];

rr:predicateObjectMap [
rr:predicate iec61499:hasName;
rr:objectMap [
  rml:reference "@Name"
];
];

rr:predicateObjectMap [
rr:predicate iec61499:hasValue;
rr:objectMap [
  rml:reference "@Value"
];
].


<#FBMapping>
a rr:TriplesMap;
rml:logicalSource [
rml:source "System.xml" ;
rml:iterator "/System/Application/SubAppNetwork/FB";
rml:referenceFormulation ql:XPath
];

rr:subjectMap [
rr:template "http://sth/example#/SubAppNetwork/FB-{../../../@Name}-{@ID}";
rr:class iec61499:FB
];

rr:predicateObjectMap [
rr:predicate iec61499:hasID;
rr:objectMap [
  rml:reference "@ID"
];
];

rr:predicateObjectMap [
rr:predicate iec61499:hasName;
rr:objectMap [
  rml:reference "@Name"
];
];

rr:predicateObjectMap [
rr:predicate iec61499:hasType;
rr:objectMap [
  rml:reference "@Type"
];
];

rr:predicateObjectMap [
rr:predicate iec61499:hasX;
rr:objectMap [
  rml:reference "@x"
];
];

rr:predicateObjectMap [
rr:predicate iec61499:hasY;
rr:objectMap [
  rml:reference "@y"
];
];

rr:predicateObjectMap [
rr:predicate iec61499:hasNamespace;
rr:objectMap [
  rml:reference "@Namespace"
];
];

rr:predicateObjectMap [
rr:predicate iec61499:hasAttribute;
rr:objectMap [
  rr:parentTriplesMap <#AttributeMapping>
];
].
xml xpath rdf r2rml
1个回答
3
投票

您可以通过rr:joinCondition在RML中将孩子链接到其父母:

rr:predicateObjectMap [
        rr:predicate iec61499:hasAttribute;
        rr:objectMap [
            rr:parentTriplesMap <#AttributeMapping>;
            rr:joinCondition [
                rr:child "@Name";
                rr:parent "../@Name"
            ];
        ];
    ].

rr:joinCondition将确保仅在rr:childrr:parent的值相等时才发生联接。

由于XML无效,缺少</Application>结束标记,因此我修改了您的数据,您可以在下面找到新数据:

<Application ID="A4ABD8400116F035" Name="HotWater">
    <SubAppNetwork>
        <FB ID="3D77F5AE3E23F522" Name="HW_setpoint" Type="CAThmiInput" x="360" y="880" Namespace="nxtControl.Tutorial" />
        <FB ID="38615A5C87F12AA3" Name="HW_pump1" Type="CATmotor" x="2760" y="260" Namespace="nxtControl.Tutorial" />
        <FB ID="3632883FE07D2F09" Name="HW_pump2" Type="CATmotor" x="2760" y="860" Namespace="nxtControl.Tutorial">
            <Parameter Name="AutoOn" Value="TRUE" />
        </FB>
        <FB ID="FB64994118EB2489" Name="HW_pidController" Type="CATpidController" x="1000" y="260" Namespace="nxtControl.Tutorial" />
        <FB ID="1C32C8BEDD84AAA7" Name="HW_sensor" Type="CATsensor" x="360" y="260" Namespace="nxtControl.Tutorial" />
        <FB ID="97DE5397424C589F" Name="HW_valve" Type="CATvalve" x="1620" y="260" Namespace="nxtControl.Tutorial" />
        <FB ID="3A265436F99A7B87" Name="HW_compare" Type="COMPARE_1990CFD1468AAE4A6" x="2220" y="260" Namespace="Main">
            <Attribute Name="Configuration.GenericFBType.InterfaceParams" Value="Runtime.Standard#CNT:=2;IN${CNT}:LREAL" />
            <Parameter Name="IN2" Value="0.0" />
        </FB>
        <EventConnections>
            <Connection Source="HW_sensor.CNF" Destination="HW_pidController.REQ" />
            <Connection Source="HW_setpoint.CNF" Destination="HW_pidController.REQ" dx1="110.7709">
                <AvoidsNodes>false</AvoidsNodes>
            </Connection>
            <Connection Source="HW_pidController.CNF" Destination="HW_valve.REQ" />
            <Connection Source="HW_valve.CNF" Destination="HW_compare.REQ" />
            <Connection Source="HW_compare.CNF" Destination="HW_pump1.REQ" />
        </EventConnections>
        <DataConnections>
            <Connection Source="HW_sensor.outValue" Destination="HW_pidController.pv" dx1="41.3125" />
            <Connection Source="HW_setpoint.value" Destination="HW_pidController.sp" dx1="170.7709">
                <AvoidsNodes>false</AvoidsNodes>
            </Connection>
            <Connection Source="HW_pidController.cp" Destination="HW_valve.AutoSP" />
            <Connection Source="HW_compare.GT" Destination="HW_pump1.AutoOn" dx1="70" />
            <Connection Source="HW_valve.cp" Destination="HW_compare.IN1" />
        </DataConnections>
    </SubAppNetwork>
</Application>

我将您的示例减少到最低限度,并添加了rr:joinCondition以仅在NameFB属性与父项及其子项匹配时执行连接:

@base <http://example.org/> .
@prefix rml: <http://semweb.mmlab.be/ns/rml#> .
@prefix rr: <http://www.w3.org/ns/r2rml#> .
@prefix ql: <http://semweb.mmlab.be/ns/ql#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix schema: <http://schema.org/> .
@prefix dbo: <http://dbpedia.org/ontology/> .
@prefix iec61499: <http://example.org/iec61499/> . 

<#AttributeMapping>
    a rr:TriplesMap;
    rml:logicalSource [
        rml:source "System.xml";
        rml:referenceFormulation ql:XPath;
        rml:iterator "/Application/SubAppNetwork/FB/Attribute"
    ];

    rr:subjectMap [
        rr:template "http://sth/example#/SubAppNetwork/FB/Attribute-{@Name}";
        rr:class iec61499:Attribute
    ];

    rr:predicateObjectMap [
        rr:predicate iec61499:hasName;
        rr:objectMap [
            rml:reference "@Name"
        ];
    ].

<#FBMapping>
    a rr:TriplesMap;
    rml:logicalSource [
        rml:source "System.xml" ;
        rml:iterator "/Application/SubAppNetwork/FB";
        rml:referenceFormulation ql:XPath
    ];

    rr:subjectMap [
        rr:template "http://sth/example#/SubAppNetwork/FB-{../../@Name}-{@ID}";
        rr:class iec61499:FB
    ];

    rr:predicateObjectMap [
        rr:predicate iec61499:hasName;
        rr:objectMap [
            rml:reference "@Name"
        ];
    ];

    rr:predicateObjectMap [
        rr:predicate iec61499:hasAttribute;
        rr:objectMap [
            rr:parentTriplesMap <#AttributeMapping>;
            rr:joinCondition [
                rr:child "@Name";
                rr:parent "../@Name"
            ];
        ];
    ].

如果为RML处理器提供这些映射和数据,您将获得以下输出:

<http://sth/example#/SubAppNetwork/FB/Attribute-Configuration.GenericFBType.InterfaceParams> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://example.org/iec61499/Attribute>.
<http://sth/example#/SubAppNetwork/FB/Attribute-Configuration.GenericFBType.InterfaceParams> <http://example.org/iec61499/hasName> "Configuration.GenericFBType.InterfaceParams".
<http://sth/example#/SubAppNetwork/FB-HotWater-3D77F5AE3E23F522> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://example.org/iec61499/FB>.
<http://sth/example#/SubAppNetwork/FB-HotWater-3D77F5AE3E23F522> <http://example.org/iec61499/hasName> "HW_setpoint".
<http://sth/example#/SubAppNetwork/FB-HotWater-38615A5C87F12AA3> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://example.org/iec61499/FB>.
<http://sth/example#/SubAppNetwork/FB-HotWater-38615A5C87F12AA3> <http://example.org/iec61499/hasName> "HW_pump1".
<http://sth/example#/SubAppNetwork/FB-HotWater-3632883FE07D2F09> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://example.org/iec61499/FB>.
<http://sth/example#/SubAppNetwork/FB-HotWater-3632883FE07D2F09> <http://example.org/iec61499/hasName> "HW_pump2".
<http://sth/example#/SubAppNetwork/FB-HotWater-FB64994118EB2489> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://example.org/iec61499/FB>.
<http://sth/example#/SubAppNetwork/FB-HotWater-FB64994118EB2489> <http://example.org/iec61499/hasName> "HW_pidController".
<http://sth/example#/SubAppNetwork/FB-HotWater-1C32C8BEDD84AAA7> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://example.org/iec61499/FB>.
<http://sth/example#/SubAppNetwork/FB-HotWater-1C32C8BEDD84AAA7> <http://example.org/iec61499/hasName> "HW_sensor".
<http://sth/example#/SubAppNetwork/FB-HotWater-97DE5397424C589F> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://example.org/iec61499/FB>.
<http://sth/example#/SubAppNetwork/FB-HotWater-97DE5397424C589F> <http://example.org/iec61499/hasName> "HW_valve".
<http://sth/example#/SubAppNetwork/FB-HotWater-3A265436F99A7B87> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://example.org/iec61499/FB>.
<http://sth/example#/SubAppNetwork/FB-HotWater-3A265436F99A7B87> <http://example.org/iec61499/hasName> "HW_compare".
<http://sth/example#/SubAppNetwork/FB-HotWater-3A265436F99A7B87> <http://example.org/iec61499/hasAttribute> <http://sth/example#/SubAppNetwork/FB/Attribute-Configuration.GenericFBType.InterfaceParams>.

:我为RML及其技术做出了贡献。

© www.soinside.com 2019 - 2024. All rights reserved.