October 2001
Sophia-Antipolis
. Slide 1
Electronic Commerce: A Killer (Application) for the Semantic Web? - - PowerPoint PPT Presentation
Sophia-Antipolis October 2001 Electronic Commerce: A Killer (Application) for the Semantic Web? Dieter Fensel Vrije Universiteit Amsterdam http://www.cs.vu.nl/~dieter, dieter@cs.vu.nl . Slide 1 Sophia-Antipolis October 2001 Contents 1.
October 2001
Sophia-Antipolis
. Slide 1
October 2001
Sophia-Antipolis
. Slide 2
October 2001
Sophia-Antipolis
Slide 3
October 2001
Sophia-Antipolis
Slide 4
October 2001
Sophia-Antipolis
Slide 5
October 2001
Sophia-Antipolis
Slide 6
October 2001
Sophia-Antipolis
Slide 7
October 2001
Sophia-Antipolis
Slide 8
October 2001
Sophia-Antipolis
Slide 9
October 2001
Sophia-Antipolis
Slide 10
October 2001
Sophia-Antipolis
Slide 11
October 2001
Sophia-Antipolis
Slide 12
October 2001
Sophia-Antipolis
Slide 13
October 2001
Sophia-Antipolis
Slide 14
<xsl:for-each select="Address/PostalAddress"> <OrganizationAddress> <xsl:variable name="addrline" select="Street"/> <xsl:choose> <xsl:when test="contains($addrline,', ') and (starts-with($addrline,'1') or starts- with($addrline,'2') or …)"> <!-- Address Line is (House, Street) --> <HouseNumber><xsl:value-of select="substring-before($addrline,',')"/></HouseNumber> <Street><xsl:value-of select="substring-after($addrline,', ')"/></Street> </xsl:when> <xsl:when test="contains($addrline,',')"> <!-- Address Line is (Street, House) --> <Street><xsl:value-of select="substring-before($addrline,',')"/></Street> <HouseNumber><xsl:value-of select="substring-after($addrline,', ')"/></HouseNumber> </xsl:when> <xsl:when test="contains($addrline,' ')"> <!-- Address Line is (Street House) --> <Street><xsl:value-of select="substring-before($addrline,' ')"/></Street> <HouseNumber><xsl:value-of select="substring-after($addrline,' ')"/></HouseNumber> </xsl:when> </xsl:choose> … </OrganizationAddress> </xsl:for-each> Aligning granularity level: Street (mixed street name and house number) to Street (name) and HouseNumber Transforming attribute values Splitting is guided by element values Mapping terminology: PostalAddress to OrganizationAddress
October 2001
Sophia-Antipolis
Slide 15
October 2001
Sophia-Antipolis
Slide 16
October 2001
Sophia-Antipolis
Slide 17
October 2001
Sophia-Antipolis
Slide 18
October 2001
Sophia-Antipolis
Slide 19
October 2001
Sophia-Antipolis
Slide 20
October 2001
Sophia-Antipolis
Slide 21
October 2001
Sophia-Antipolis
Slide 22
October 2001
Sophia-Antipolis
Slide 23