sxpath extending xpath towards spatial querying on web
play

SXPath - Extending XPath towards Spatial Querying on Web Documents - PowerPoint PPT Presentation

Introduction SXPath Conclusions and Future Work SXPath - Extending XPath towards Spatial Querying on Web Documents Ermelinda Oro 1 Massimo Ruffolo 1 Steffen Staab 2 1 Institute of High Performance Computing and Networking of CNR (ICAR-CNR)


  1. Introduction SXPath Conclusions and Future Work SXPath - Extending XPath towards Spatial Querying on Web Documents Ermelinda Oro 1 Massimo Ruffolo 1 Steffen Staab 2 1 Institute of High Performance Computing and Networking of CNR (ICAR-CNR) University of Calabria, Italy 2 Institute for Computer Science, University of Koblenz, Koblenz, Germany VLDB 2011 Oro, Ruffolo, Staab SXPath

  2. Introduction SXPath Conclusions and Future Work Outline Introduction 1 Motivations State of the Art SXPath Language SXPath 2 Spatial Data Model Syntax and Semantics Complexity Issues Implementation Issues and Experiments Conclusions and Future Work 3 Oro, Ruffolo, Staab SXPath

  3. Introduction Motivations SXPath State of the Art Conclusions and Future Work SXPath Language Outline Introduction 1 Motivations State of the Art SXPath Language SXPath 2 Spatial Data Model Syntax and Semantics Complexity Issues Implementation Issues and Experiments Conclusions and Future Work 3 Oro, Ruffolo, Staab SXPath

  4. Introduction Motivations SXPath State of the Art Conclusions and Future Work SXPath Language Motivations Users need to access the Web and capture information in many application fields (e.g. business, competitive and military intelligence; content, document and knowledge management) Web pages are human oriented. The spatial arrangement of content items in Web pages produces visual cues that help human readers to make sense of document contents Well founded and known query formalisms, such as XPath and XQuery, do not consider spatial arrangements in querying Web pages Oro, Ruffolo, Staab SXPath

  5. Introduction Motivations SXPath State of the Art Conclusions and Future Work SXPath Language Presentation-Oriented Documents Oro, Ruffolo, Staab SXPath

  6. Introduction Motivations SXPath State of the Art Conclusions and Future Work SXPath Language Presentation-Oriented Documents HTML DOM allows only site-centric extraction A Web Page Document Object Model Spatial arrangements are rarely explicit and frequently hidden in complex nestings of layout elements corresponding to intricate tree structures that are conceptually difficult to query Oro, Ruffolo, Staab SXPath

  7. Introduction Motivations SXPath State of the Art Conclusions and Future Work SXPath Language Outline Introduction 1 Motivations State of the Art SXPath Language SXPath 2 Spatial Data Model Syntax and Semantics Complexity Issues Implementation Issues and Experiments Conclusions and Future Work 3 Oro, Ruffolo, Staab SXPath

  8. Introduction Motivations SXPath State of the Art Conclusions and Future Work SXPath Language State of the Art Web Query language XPath 1.0 and XQuery 1.0 represent well founded and known web query languages having very intuitive navigational features, but the intricate DOM structure makes difficult to pose queries Visual languages Spatial Graph Grammars [Kong et al.] are quite complex in term of both usability and efficiency Algebras for creating and querying multimedia interactive presentations (e.g. ppt) [Subrahmanian et al.] require database for multimedia presentation should be created for the whole Web Web wrapper induction exploiting visual interface [Gottlob et al.] [Sahuguet et al.] generate XPath location paths of DOM nodes can benefit from using Spatial XPath Oro, Ruffolo, Staab SXPath

  9. Introduction Motivations SXPath State of the Art Conclusions and Future Work SXPath Language Outline Introduction 1 Motivations State of the Art SXPath Language SXPath 2 Spatial Data Model Syntax and Semantics Complexity Issues Implementation Issues and Experiments Conclusions and Future Work 3 Oro, Ruffolo, Staab SXPath

  10. Introduction Motivations SXPath State of the Art Conclusions and Future Work SXPath Language Extending XPath towards Spatial Querying As extension of XPath 1.0, Spatial XPath (SXPath): adopts the intuitive path notation: /axis::nodetest [pred 1 ]* adds new spatial axes and new spatial position functions has a natural semantics that enables spatial querying maintains polynomial time combined complexity Advantages: it is easy to learn and easier to use than pure XPath on Web pages it is more tolerant to modifications of the internal structure of Web pages it enables users to spatial query Web documents on the base of what they see on the document it is capable to provide benefits to some current Web contents manipulation and wrapper learning approaches Oro, Ruffolo, Staab SXPath

  11. Introduction Motivations SXPath State of the Art Conclusions and Future Work SXPath Language Presentation-Oriented Documents A Web Page from the lastfm Web site (http://www.lastfm.it/) Acquiring a music band profile: A music band photo that has at east its descriptive information Oro, Ruffolo, Staab SXPath

  12. Introduction Motivations SXPath State of the Art Conclusions and Future Work SXPath Language Example 1 Exploiting XPath Exploiting SXPath for $li in document for $li in document ("last-fm.htm") ("last-fm.htm") (1.1) //div[@id=’content’] //ul/li (2.1) / CD::img [N|S::img] return return <music-band> <music-band> (1.2) <name> (2.2) <name> { $ li / a / strong / text() } { $img/ E::text [N,1] } </name> </name> . . . . . . </music-band> </music-band> Oro, Ruffolo, Staab SXPath

  13. Introduction Motivations SXPath State of the Art Conclusions and Future Work SXPath Language Example 2 Acquiring friend lists from different social networks pages represented as couples <photo, name>. Friend lists from different social networks pages (a) Bebo (b) Care (c) Netlog. for $img in document ("http://www.bebo.com/friendlist.html") (3.1) //img[ N|S|E|W::img ] return <friend> (3.2) <photo> {$img} </photo> (3.3) <name> { $img/ S :: text() [N,1] } </name> </friend> Oro, Ruffolo, Staab SXPath

  14. Introduction Motivations SXPath State of the Art Conclusions and Future Work SXPath Language Example 2 A single data record can be split in different sub-trees Wrapper induction techniques like DEPTA [Zhai et al.] recognize data records when they are encoded in the DOM as consecutive similar subtrees for $img in document ("http://www.bebo.com/friendlist.html") (3.1) //img[ N|S|E|W::img ] return <friend> (3.2) <photo> {$img} </photo> (3.3) <name> { $img/ S :: text() [N,1] } </name> </friend> Oro, Ruffolo, Staab SXPath

  15. Spatial Data Model Introduction Syntax and Semantics SXPath Complexity Conclusions and Future Work Implementation Issues and Experiments Outline Introduction 1 Motivations State of the Art SXPath Language SXPath 2 Spatial Data Model Syntax and Semantics Complexity Issues Implementation Issues and Experiments Conclusions and Future Work 3 Oro, Ruffolo, Staab SXPath

  16. Spatial Data Model Introduction Syntax and Semantics SXPath Complexity Conclusions and Future Work Implementation Issues and Experiments Spatial Data Model The Document Object Model (DOM) is the internal rapresentation of markup languages (XML, HTML) The tree-based structures of XML are often not convenient and not expressive enough in order to represent spatial arrangements The spatial arrangements are rarely explicit and frequently hidden into intricate tree structures that are conceptually difficult to query Oro, Ruffolo, Staab SXPath

  17. Spatial Data Model Introduction Syntax and Semantics SXPath Complexity Conclusions and Future Work Implementation Issues and Experiments Spatial Relations among Nodes The Rectangular Algebra (RA) [Balbiani et al.] extends Allen’s temporal interval algebra (IA) to the 2-dimensional case RA is a very fine-grained and expressive model that allows the computations of spatial relations as well as algebraic optimizations RA holds many important properties (e.g. invertibility) that allows for optimized query evaluation Oro, Ruffolo, Staab SXPath

  18. Spatial Data Model Introduction Syntax and Semantics SXPath Complexity Conclusions and Future Work Implementation Issues and Experiments Spatial DOM (SDOM) ../ul/li[2]/p[2]/text()[1] ../ul/li[2] ../ul/li[2]/a[2] ../ul/li[2]/a[1]/strong ../ul/li[2]/p[1] ../ul/li[2]/p[2]/text()[4] ../ul/li[2]/a[2]/text() ../ul/li[2]/a[1]/strong/text() ../ul/li[2]/p[1]/text() ../ul/li[2]/p[3] ../ul/li[2]/p[3]/a ../ul/li/a[1] ../ul/li[2]/a[1]/span ../ul/li[2]/p[2]/a[2] ../ul/li[2]/p[2] ../ul/li[2]/a[1]/span/span ../ul/li[2]/p[3]/a/span ../ul/li[2]/p[2]/a[2]/text() ../ul/li[2]/a[1]/span/span/img ../ul/li[2]/p[3]/a/span/text() From North to South From West From East The SDOM extends the Document Object to East to West Model (DOM) by: mbr(n 4 ) mbr(n 3 ) mbr(n 5 ) RA relations existing between pairs of mbr(n 2 ) mbr(n 6 ) nodes visualized on screen mbr(n 1 ) spatial orders among nodes From South to North n 1 ⩽ ↑ n 2 = ↑ n 4 = ↑ n 6 ⩽ ↑ n 3 = ↑ n 5 Oro, Ruffolo, Staab SXPath

  19. Spatial Data Model Introduction Syntax and Semantics SXPath Complexity Conclusions and Future Work Implementation Issues and Experiments The Spatial DOM (SDOM) Definition SDOM is a node labeled sibling ordered tree enriched by RA relations SDOM = ⟨ V , R ⇓ , R ⇒ , A , f s ⟩ where: V is the set of labeled DOM nodes. V = V v ∪ V nv R ⇓ is the firstchild relation R ⇒ is the nextsibling relation A ⊆ V v × V v Let R rec be the set of RA relations f s ∶ A → R rec Oro, Ruffolo, Staab SXPath

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend