Gvsos: a New Client for Ogc® Sos Interface Standard

Total Page:16

File Type:pdf, Size:1020Kb

Gvsos: a New Client for Ogc® Sos Interface Standard GVSOS: A NEW CLIENT FOR OGC® SOS INTERFACE STANDARD Alain Tamayo Fong i GVSOS: A NEW CLIENT FOR OGC® SOS INTERFACE STANDARD Dissertation supervised by PhD Joaquín Huerta PhD Fernando Bacao Laura Díaz March, 2009 ii ACKNOWLEDGEMENTS I would like to thank to professors Joaquin Huerta and Michael Gould for their support during every step of the Master Degree Program. I would also like to thanks the Erasmus Mundus Scholarship program for giving me the chance to be part of this wonderful experience. Last, to all my colleagues and friends, thank you for making this time together so pleasant. iii GVSOS: A NEW CLIENT FOR OGC® SOS INTERFACE STANDARD ABSTRACT The popularity of sensor networks has increased very fast recently. A major problem with these networks is achieving interoperability between different networks which are potentially built using different platforms. OGC’s specifications allow clients to access geospatial data without knowing the details about how this data is gathered or stored. Currently OGC is working on an initiative called Sensor Web Enablement (SWE), for specifying interoperability interfaces and metadata encodings that enable real‐time integration of heterogeneous sensor webs into the information infrastructure. In this work we present the implementation of gvSOS, a new module for the GIS gvSIG to connect to Sensor Observation Services (SOS). The SOS client module allows gvSIG users to interact with SOS servers, displaying the information gathered by sensors in a layer composed by features. We present the detailed software engineering development process followed to build the module. For each step of the process we specify the main obstacles found during the development such as, restrictions of the gvSIG architecture, inaccuracies in the OGC’s specifications, and a set of common problems found in current SOS servers implementations available on the Internet. iv KEYWORDS GIS Applications Sensor Web Enablement OGC SOS specification gvSIG extensions Software Engineering v ACRONYMS OGC – Open Geospatial Consortium SOA ‐ Service‐Oriented Architecture GIS – Geographic Information System WMS ‐ Web Map Service WCS ‐ Web Coverage Service WFS ‐ Web Feature Service SWE ‐ Sensor Web Enablement O&M ‐ Observation & Measurement SOS ‐ Sensor Observations Service SPS ‐ Sensor Planning Service SAS ‐ Sensor Alert Service WNS ‐ Web Notification Service ADC ‐ Analog to Digital Converter SIVAM ‐ System for the Vigilance of the Amazon XML ‐ Extensible Markup Language GML – Geography Markup Language GPL ‐ GNU General Public License MDI ‐ Multiple Documents Interface JTS – Java Topology Suite OWS – OGC Web Services UML‐ Unified Modelling Language vi INDEX Index of Figures __________________________________________________ ix 1. Introduction____________________________________________________ 1 2. State of the Art__________________________________________________ 5 2.1 Sensor Networks __________________________________________________________5 2.1.1 Sensor Nodes__________________________________________________________7 2.1.2 Applications___________________________________________________________8 2.2 Sensor Web Enablement __________________________________________________11 2.2.1 Services and Encodings_________________________________________________12 2.2.2 Typical workflows_____________________________________________________14 2.2.2 SWE Common________________________________________________________17 2.2.3 O&M implementation specification _______________________________________17 2.2.4 SensorML implementation Specification ___________________________________20 2.2.5 SOS implementation Specification ________________________________________22 2.3 Known SWE implementations______________________________________________23 2.3.1 52° North’s SWE implementation _________________________________________24 2.3.2 UAH VAST’s SWE implementation_______________________________________24 2.4 Some projects using SWE _________________________________________________25 2.5 Summary _______________________________________________________________26 3. gvSIG ________________________________________________________ 27 3.1. Architecture ____________________________________________________________27 3.1.1 The gvSIG Subsystem __________________________________________________29 3.1.2 The Fmap Subsystem___________________________________________________30 3.1.3 The Subdriver Subsystem _______________________________________________32 3.1.4 Andami _____________________________________________________________33 vii 3.2. Plug-in and Extensions ___________________________________________________35 3.2.1 Extensions ___________________________________________________________35 3.3. gvSIG Mobile ___________________________________________________________37 3.4. Supporting Libraries _____________________________________________________37 3.5. Summary_______________________________________________________________39 4. Analysis ______________________________________________________ 40 4.1 Plug-in Requirements _____________________________________________________40 4.1 Use case model___________________________________________________________41 4.2 High Level Architecture ___________________________________________________42 4.3 Summary _______________________________________________________________43 5. Design and Implementation______________________________________ 44 5.1 gvSIG layer _____________________________________________________________44 5.2 Fmap layer______________________________________________________________46 5.3 SubDriver layer__________________________________________________________48 5.4 Initialize extension _______________________________________________________51 5.5 Add SOS Layer __________________________________________________________52 5.5.1 gvSIG layer __________________________________________________________53 5.5.2 Fmap and Remote Services layers_________________________________________54 5.6 Showing sensors and observations data ______________________________________57 5.7 Tests and Preliminary Results ______________________________________________59 5.8 Summary _______________________________________________________________61 6. Conclusions ___________________________________________________ 62 References ______________________________________________________ 63 viii INDEX OF FIGURES Figure 1: Generic architecture of sensor networks (Akyildiz et al., 2002) 5 Figure 2: Components of a sensor node. Adapted form (Akyildiz et al., 2002) 8 Figure 3: SWE framework context (OGC, 2008) 13 Figure 4: SOS client requesting observation’s data from a server (OGC, 2008) 15 Figure 5: SOS client accessing streaming data from the source (OGC, 2008) 16 Figure 6: SOS client accessing sensor’s data from a server (OGC, 2008) 16 Figure 7: Basic Observation Model (OGC, 2007) 18 Figure 8: Conceptual model for Processes (OGC, 2007b) 21 Figure 9: Functional components of gvSIG. 28 Figure 10: Component diagram of the gvSIG subsystem (gvSIG, 2008a) 29 Figure 11: Component diagram of the Fmap subsystem (gvSIG, 2008a) 31 Figure 12: Component diagram of the SubDriver subsystem(gvSIG, 2008a) 32 Figure 13: ANDAMI functional blocks (gvSIG, 2008a) 33 Figure 14: IExtension relationships (gvSIG, 2008a) 36 Figure 15: Use case diagram for gvSOS. 41 Figure 16: Package diagram showing the gvSOS architecture. 43 Figure 17: gvSIG‐SOS package diagram. 45 Figure 18: Class diagram showing SOSWizard and its relationships 46 Figure 19: Fmap‐SOS package diagram. 47 Figure 20: Fmap‐SOS class diagram. 47 Figure 21: Remote Services package diagram. 49 Figure 22: Class diagram of the RemoteServices‐SOS package. ________ 50 Figure 23: gvSOS configuration file (config.xml). 52 Figure 24: Diagram showing how connection is established at the user interface level. 53 Figure 25: Sequence diagram showing the layer creation process. _______54 Figure 26: Sequence diag. showing how connection is established at the driver level. 55 ix Figure 27: Sequence diag. showing how information regarding procedures is read. 56 Figure 28: Sensor systems located in four Mediterranean harbours. 56 Figure 29: Table containing the information about the sensors included in the view. 57 Figure 30: Sequence diagram showing how observations are read from the server. 58 Figure 31: Table showing observation times and values. 58 Figure 32: Displaying observations on a graph. 59 x 1 INTRODUCTION The popularity of sensor networks has increased very quickly. The production of sensors that become cheaper every day is possible due to continuous advances in semiconductor technology. At present, a low‐cost processor, a group of sensors and a radio transmitter, can be easily combined in a single and inexpensive unit. These devices, although useful individually, offer maximum effectiveness when used together for sensing complex physical phenomena. Sensor nodes can be distributed inside a particular phenomenon or in its neighbourhood to measure its main properties. Sensor networks can be used in a wide variety of applications. Examples include environmental monitoring (Martinez et al., 2004), habitat monitoring (Mainwaring et al., 2002)(Szewczyk et al., 2004), structural health monitoring (Paek et al.,2005)(Chintalapudi et al., 2006), seismic detection (Werner‐Allen et al., 2005) (Werner‐Allen et al., 2006) and military surveillance. Sensor networks can be implemented using a large range of technologies regarding sensors and communication devices. Many design aspects must be considered such as fault tolerance, scalability,
Recommended publications
  • Development of an Extension of Geoserver for Handling 3D Spatial Data Hyung-Gyu Ryoo Pusan National University
    Free and Open Source Software for Geospatial (FOSS4G) Conference Proceedings Volume 17 Boston, USA Article 6 2017 Development of an extension of GeoServer for handling 3D spatial data Hyung-Gyu Ryoo Pusan National University Soojin Kim Pusan National University Joon-Seok Kim Pusan National University Ki-Joune Li Pusan National University Follow this and additional works at: https://scholarworks.umass.edu/foss4g Part of the Databases and Information Systems Commons Recommended Citation Ryoo, Hyung-Gyu; Kim, Soojin; Kim, Joon-Seok; and Li, Ki-Joune (2017) "Development of an extension of GeoServer for handling 3D spatial data," Free and Open Source Software for Geospatial (FOSS4G) Conference Proceedings: Vol. 17 , Article 6. DOI: https://doi.org/10.7275/R5ZK5DV5 Available at: https://scholarworks.umass.edu/foss4g/vol17/iss1/6 This Paper is brought to you for free and open access by ScholarWorks@UMass Amherst. It has been accepted for inclusion in Free and Open Source Software for Geospatial (FOSS4G) Conference Proceedings by an authorized editor of ScholarWorks@UMass Amherst. For more information, please contact [email protected]. Development of an extension of GeoServer for handling 3D spatial data Optional Cover Page Acknowledgements This research was supported by a grant (14NSIP-B080144-01) from National Land Space Information Research Program funded by Ministry of Land, Infrastructure and Transport of Korean government and BK21PLUS, Creative Human Resource Development Program for IT Convergence. This paper is available in Free and Open Source Software for Geospatial (FOSS4G) Conference Proceedings: https://scholarworks.umass.edu/foss4g/vol17/iss1/6 Development of an extension of GeoServer for handling 3D spatial data Hyung-Gyu Ryooa,∗, Soojin Kima, Joon-Seok Kima, Ki-Joune Lia aDepartment of Computer Science and Engineering, Pusan National University Abstract: Recently, several open source software tools such as CesiumJS and iTowns have been developed for dealing with 3-dimensional spatial data.
    [Show full text]
  • The State of Open Source GIS
    The State of Open Source GIS Prepared By: Paul Ramsey, Director Refractions Research Inc. Suite 300 – 1207 Douglas Street Victoria, BC, V8W-2E7 [email protected] Phone: (250) 383-3022 Fax: (250) 383-2140 Last Revised: September 15, 2007 TABLE OF CONTENTS 1 SUMMARY ...................................................................................................4 1.1 OPEN SOURCE ........................................................................................... 4 1.2 OPEN SOURCE GIS.................................................................................... 6 2 IMPLEMENTATION LANGUAGES ........................................................7 2.1 SURVEY OF ‘C’ PROJECTS ......................................................................... 8 2.1.1 Shared Libraries ............................................................................... 9 2.1.1.1 GDAL/OGR ...................................................................................9 2.1.1.2 Proj4 .............................................................................................11 2.1.1.3 GEOS ...........................................................................................13 2.1.1.4 Mapnik .........................................................................................14 2.1.1.5 FDO..............................................................................................15 2.1.2 Applications .................................................................................... 16 2.1.2.1 MapGuide Open Source...............................................................16
    [Show full text]
  • (Iso19107) of the Open Geospatial Consortium
    Technical Report A Java Implementation of the OpenGIS™ Feature Geometry Abstract Specification (ISO 19107 Spatial Schema) Sanjay Dominik Jena, Jackson Roehrig {[email protected], [email protected]} University of Applied Sciences Cologne Institute for Technology in the Tropics Version 0.1 July 2007 ABSTRACT The Open Geospatial Consortium’s (OGC) Feature Geometry Abstract Specification (ISO/TC211 19107) describes a geometric and topological data structure for two and three dimensional representations of vector data. GeoAPI, an OGC working group, defines inter- face APIs derived from the ISO 19107. GeoTools provides an open source Java code library, which implements (OGC) specifications in close collaboration with GeoAPI projects. This work describes a partial but serviceable implementation of the ISO 19107 specifi- cation and its corresponding GeoAPI interfaces considering previous implementations and related specifications. It is intended to be a first impulse to the GeoTools project towards a full implementation of the Feature Geometry Abstract Specification. It focuses on aspects of spatial operations, such as robustness, precision, persistence and performance. A JUnit Test Suite was developed to verify the compliance of the implementation with the GeoAPI. The ISO 19107 is discussed and proposals for improvement of the GeoAPI are presented. II © Copyright by Sanjay Dominik Jena and Jackson Roehrig 2007 ACKNOWLEDGMENTS Our appreciation goes to the whole of the GeoTools and GeoAPI communities, in par- ticular to Martin Desruisseaux, Bryce Nordgren, Jody Garnett and Graham Davis for their extensive support and several discussions, and to the JTS developers, the JTS developer mail- ing list and to those, who will make use of and continue the implementation accomplished in this work.
    [Show full text]
  • Centre for Geo-Information Thesis Report GIRS-2018-06 Managing Big Geospatial Data with Apache Spark Msc Thesis Hector Muro Maur
    Centre for Geo-Information Thesis Report GIRS-2018-06 Managing Big Geospatial Data with Apache Spark MSc Thesis Hector Muro Mauri March 2018 Managing Big Geospatial Data with Apache Spark MSc Thesis Hector Muro Mauri Registration number 920908592110 Supervisors: Dr Arend Ligtenberg Dr Ioannis Athanasiadis A thesis submitted in partial fulfillment of the degree of Master of Science at Wageningen University and Research Centre, The Netherlands. March 2018 Wageningen, The Netherlands Thesis code number: GRS80436 Thesis Report: GIRS 2018 06 Wageningen University and Research Centre Laboratory of Geo-Information Science and Remote Sensing Contents 1 Introduction 3 1.1 Introduction & Context.........................................3 1.2 Problem definition & Research questions................................5 1.3 Structure of the document........................................5 2 Methods & Tools 6 2.1 Methods..................................................6 2.2 Tools....................................................7 3 Tests Design & Definition 9 3.1 Functionality Test............................................9 3.2 Performance Benchmark Test...................................... 17 3.3 Use Case................................................. 19 4 Functionality Test Results 21 4.1 Magellan.................................................. 21 4.2 GeoPySpark................................................ 25 4.3 GeoSpark................................................. 28 4.4 GeoMesa................................................. 31 5 Results
    [Show full text]
  • Client-Side Versus Server-Side Geoprocessing
    CLIENT-SIDE VERSUS SERVER-SIDE GEOPROCESSING Benchmarking the performance of web browsers processing geospatial data using common GIS operations. by Erin L. Hamilton A thesis submitted in partial fulfillment of the requirements for the degree of Master of Science (Cartography and Geographic Information Systems) at the UNIVERSITY OF WISCONSIN–MADISON 2014 i Acknowledgements The completion of this thesis could not have been accomplished without the help and support of many people. Thank you to Jim Burt for serving as my advisor. Your ability to see the big picture and ask hard questions made my work infinitely stronger. Your feedback on my drafts pushed me to produce my best work and I am thankful for that. Thank you to Qunying Huang and David Hart for serving on my committee. Your feedback on this thesis was much appreciated. More importantly, the support you provided me in improving my programming skills over the past three years enabled me to execute the technical pieces of this research. I am extremely grateful for that. Thank you to the members of the GIS group. The questions asked during my research progress presentations over the last year were significant in shaping and refining my work. Big thank you to the people in the Cartography Laboratory. Your guidance, support, and friendship were critical in keeping me moving forward. I especially want to thank Tanya Buckingham and Daniel Huffman for providing me with so much insightful perspective and advice along the way and Bill Buckingham for providing tremendously helpful recommendations on my writing. Thank you to my Mom and Dad for being my cheer team across the country.
    [Show full text]
  • Handling Data Consistency Through Spatial Data Integrity Rules in Constraint Decision Tables
    Handling Data Consistency through Spatial Data Integrity Rules in Constraint Decision Tables Fei Wang Vollständiger Abdruck von der Fakultät für Bauingenieur- und Vermessungswesen der Universität der Bundeswehr München zur Erlangung des akademischen Grades eines Doktor- Ingenieurs (Dr.-Ing.) genehmigten Dissertation. Vorsitzender: Univ.-Prof. Dr.-Ing. Wilhelm Caspary 1.Berichterstatter: Univ.-Prof. Dr.-Ing. Wolfgang Reinhardt 2.Berichterstatter: Univ.-Prof. Dr.-Ing. Anders Östman Diese Dissertation wurde am 31. Jan. 2008 bei der Universität der Bundeswehr münchen eingereicht. Tag der Mündlichen Prüfung: 13. Mai 2008 2 3 Abstract With the rapid development of the GIS world, spatial data are being increasingly shared, transformed, used and re-used. The quality of spatial data is put in a high priority because spatial data of inadequate quality is of little value to the GIS community. Several main components of spatial data quality were indentified by international standardization bodies such as ISO/TC 211, OGC and FGDC, which consists of seven usual quality elements: lineage, positional accuracy, attribute accuracy, semantic accuracy, temporal accuracy, logical consistency and completeness (two different names for similar aspects of quality are grouped in the same category). In this dissertation our work focuses on the data consistency issue of the spatial data quality components, which involves the logical consistency as well as semantic and temporal aspects. Due to complex geographic data characteristics, various data capture workflows and different data sources, the final large datasets often result in inconsistency, incompleteness and inaccuracy. To reduce spatial data inconsistency and provide users the data of adequate quality, the specification of spatial data consistency requirements should be explicitly described.
    [Show full text]
  • The Decision Table Template for Geospatial Business Rules
    The Decision Table Template For Geospatial Business Rules Alex Karman CTO and Co-Founder Revolutionary Machines, Inc. www.rev-mac.com San Jose, Oct 13-15, 2014 1 OpenRules Now Supports Spatial Rules • Leverages the popular JTS Topology Suite (“JTS”) • Supports the Egenhofer Relationships (“DE9-IM”) for 2D points, polygons and line strings – Contains, touches, crosses, overlaps, disjoint, etc. • Supports distance and area calculations; and ranking by distance or area • Supports aggregates (max/min) of spatial rules • Supports non-spatial mereological rules – Part of/comprises • Loads Geographic Markup Language (GML) from text files with a GeometryDatabaseBuilder utility Motivation • Last year, we used OpenRules to handle business rules related to security constraints and service level agreements in a data center management project. • This year, the customer asked us if OpenRules could manage fraud detection and privacy rules in a healthcare project in the same data center. • We looked at the problem domain and saw a large number of spatial rules. Spatial Business Rules Are Everywhere • Healthcare – Hospital Referral Region, Hospital Service Area, Hospital, Patient, Emergency Routes • Sales – Supplier and buyer territories, census block demographics • Utilities – Markets are usually defined geographically • Local government – Cadasters, zones, counties, municipalities Most Spatial Business Rules Only Require a Simple Vocabulary • Describe how simple points, polygons and lines interact • Describe distances between them • Describe “at least” or “no more than” rules (aggregate spatial rules) Most Spatial Business Rules Never Use Most GIS Features • Continuous field data – Weather, climate, netCDF, raster • Slope and aspect – Digital elevation model, bathymetry, viewshed • Topology – The shoreline borders the shore • Spatial statistics – Autocorrelation, Moran’s I, Geary’s C, etc.
    [Show full text]
  • Maa-123.2441 GIS Software Development 4 Op 4 Op Data And
    Maa-123.2441 GIS Software Development 4 op Data and databases 10/27/2013 Jari Reini GIS – in 4 categories •Categories based on competences – Data collection and management – Spatial data analysis – Software development – GIS Solutions • Today concentrating on data collection, management and analysis (and partly SW development) Jari Reini 10/27/2013 Architectural choices in GIS (simplified) Desktop Client-Server Internet Application Server Database Jari Reini Database 10/27/2013 Principles •Re-use, Keep it simple •Use COTS as much as possible –Less in-house development –Less maintenance –Already includes a lot of required functionality •For example –Storage: Oracle Spatial database –Editing: ESRI ArcGIS –Quality checking: Radius, JavaML, JTS –Product Creation: FME and own tools 10/27/2013 Architecture and flow Data Sourcing Editing Conversion Products Public Comm upload Delivery unity Database Server Other Rule engine Quality Pre-filter checks Specs Jari Reini 10/27/2013 Content types •Maps (2D) •Voice-Enabled Maps •Address Points •Points of Interest •City Guides •Landmarks •3D maps Jari Reini 10/27/2013 Content gategories •Business content Guide –Office locations, factories, stores … -Voice Maps –Environmental data -Speed Cameras –Etc -Traffic •Find -Logistics –POIs Display –Address Points -2D/3D City Maps –Locality Index -3D Landmarks -3D Terrain Model Jari Reini 10/27/2013 Tele Atlas:Mobile Mapping Vans •Faster data collection •Superior accuracy •Advanced image collection for richer, more accurate content –Renders texture to buildings
    [Show full text]
  • Development of a Query Language for GML Based on Xpath∗
    Development of a Query Language for GML based on XPath∗ Jes´usM. Almendros-Jim´enez,Antonio Becerra-Ter´onand Francisco Garc´ıa-Garc´ıa University of Almer´ıa Almeria, Spain fjalmen,abecerra,[email protected] Abstract Geography Markup Language (GML) has been established as the standard language for the transport, storage and modelling of geographic information. In this paper we study how to adapt the XPath query language to GML documents. With this aim, we have defined a semantic based XPath language which is not based on the (tree-based) syntactic structure of GML documents, instead it is based on the \semantic structure" of GML documents. In other words, the proposed XPath language is based on the GML schema. We have developed a system called UALGIS, in order to implement the approach. Such system stores GML documents by means of the PostGIS RDBMS. In order to execute semantic-based XPath queries we have defined a translation of the queries into SQL. Such translation takes into account the GML schema. Finally, the system allows to visualize the result. With this aim, the result of a query is exported to the Keyhole Markup Language (KML) format. 1 Introduction The Geography Markup Language (GML) [7, 20, 21, 8] has been established as the standard language for the transport, storage and modeling of geographic information. GML is a dialect of the eXtensible Markup Language (XML) [27], which adapts XML to Geo-spatial data. XML allows to describe the structure of Web data by means of a tree. The tree structure is used to describe relations between data: for instance, a paper tag contains author, title and publisher as subtree tags and the subtree publisher can be described by means of name of the journal, country, editors, etc.
    [Show full text]
  • A Mobile Application for Geographical Data Gathering And
    A Mobile Application for Geographical Data Gathering and Validation in Fieldwork (Invited Talk) Karine Reis Ferreira, Cláudio Henrique Bogossian, Lúbia Vinhas, André F. Araújo de Carvalho National Institute for Space Research (INPE), Brazil Foundation of Science, Technology and Space {karine, lubia}@dpi.inpe.br Applications (FUNCATE), Brazil {claudio.bogossian, andre.carvalho}@funcate.org.br ABSTRACT Therefore, an essential feature of geographical data collection and Mobile devices, such as smartphones and tablets, are useful tools validation mobile systems is the capability of working offline. To for in situ collecting information about spatial locations. In this meet the demands of these two projects, this paper presents an paper, we describe the architecture of a mobile application for ongoing work on designing and implementing a mobile geographical data gathering and validation in fieldwork. This application for geographical data gathering and validation in application is being developed based on well-established fieldwork. Section 2 presents its architecture and section 3, its standards in order to assure spatial data interoperability between implementation issues. existing Spatial Data Infrastructures (SDI) and mobile systems. 2. ARCHITECTURE Categories and Subject Descriptors TerraMobile App is the name of the mobile application for D.2.11 [Software Engineering]: Software Architecture – domain- geographical data gathering and validation in fieldwork developed specific architectures. in this work. Figure 1 presents its general architecture. TerraMobile App has two modules for accessing geographical Keywords data, “Online Data Access” and “Offline Data Access”. The Mobile application, spatial data, interoperability “Online Data Access” module accesses geographical data from Spatial Data Infrastructures (SDI) through two kinds of well- 1.
    [Show full text]
  • Arxiv:2006.16900V1 [Cs.CY] 26 Jun 2020 Resenting Moving Features As Well As Standardized Operations for Manipulating Moving Geometries
    From Simple Features to Moving Features and Beyond? Anita Graser Esteban Zimanyi´ Krishna Chaitanya Bommakanti AIT Austrian Institute of Technology Universite´ libre de Bruxelles Adonmo University of Salzburg Brussels, Belgium HITEC City, Hyderabad, Vienna / Salzburg, Austria ORCID: 0000-0003-1843-5099 Telangana 500081, India ORCID: 0000-0001-5361-2885 Abstract—Mobility data science lacks common data structures Spatial plane and analytical functions. This position paper assesses the current status and open issues towards a universal API for mobility A data science. In particular, we look at standardization efforts revolving around the OGC Moving Features standard which, so far, has not attracted much attention within the mobility data time science community. We discuss the hurdles any universal API B for movement data has to overcome and propose key steps of a roadmap that would provide the foundation for the development of this API. t= 0 t= 1 t= 2 2011-07-14 22:00:00 2011-07-14 22:00:10 2011-07-14 22:00:20 I. INTRODUCTION Fig. 1: Data model of the Moving Features standard illustrated with two moving points A and B. Stars mark changes in Data analysis tools are essential for data science. Robust attribute values. movement data analysis tools are therefore key to advancing mobility data science. However, the development of movement data analysis tools is hampered by a lack of shared understand- API for mobility data science -– if such a thing exists. Based ing and standardization. There are numerous implementations, on these findings, we then propose essential building blocks including dozens of R libraries, as well as Python libraries to advance movement data science.
    [Show full text]
  • Geospatial Processing in Basex
    Geospatial Processing in BaseX Master Thesis in fulfillment of the requirements for the degree of Master of Science (M.Sc.) submitted from Masoumeh Seydi Gheranghiyeh in the Department of Computer and Information Science Chair of Database and Information Systems Group 1.Supervisor: Prof. Dr. Marc H. Scholl 2.Supervisor: Prof. Dr. M. Grossniklaus Konstanz, 2014 Abstract Geospatial information has been growing rapidly and has been used in variety of applications such as Geographic Information Systems, bioinformatics, and decision support systems. Variety of applications have demanded efficient approaches of data manipulation to cover their requirements. The XML-based data representation and manipulation in this field is one of these approaches that also has been considered and applied by databases, especially native XML databases. This work tries to investigate the challenges of geospatial data processing in BaseX [26], an open-source native XML database, by discussing the issues in geo- spatial querying, geospatial functionality, and query efficiency. At first, this thesis starts with introducing a number of indexing approaches as various ways of effi- cient geospatial data manipulation. Next, general geospatial functionality in some similar databases are investigated. Then, the geospatial features for Geography Markup Language (GML) [23] data representation are added to BaseX, using the Java Topology Suite (JTS) library [66] and based on the EXPath specification. To improve the performance of spatial queries, an indexing structure is applied as an external library. At the end, we have tried another querying approach by con- necting to MongoDB, a powerful document-based database system, through BaseX as an effort to find other efficient ways.
    [Show full text]