MODELLING AND MANAGING 3D SPATIAL OBJECTS. Siti Nur Awanis Mohamad Zulkifli and Alias Abdul Rahman

Size: px
Start display at page:

Download "MODELLING AND MANAGING 3D SPATIAL OBJECTS. Siti Nur Awanis Mohamad Zulkifli and Alias Abdul Rahman"

Transcription

1 MODELLING AND MANAGING 3D SPATIAL OBJECTS Siti Nur Awanis Mohamad Zulkifli and Alias Abdul Rahman Departments of Geoinformatics, Faculty of Geoinformation Engineering and Sciences, Universiti Teknologi Malaysia, UTM Skudai, Johor, Malaysia utm.my Abstract Currently, variety of software is already capable of handling a wide range of spatial problems, beginning with approaches for describing spatial objects to quite complex analysis and 3D visualisation. However, increasing number of applications need more advanced tools for representing and analyzing the 3D world. Among all types of systems dealing with spatial information, GIS has proven to be the most sophisticated system that operates with the largest scope of objects (spatial and semantic), relationships and provide means to analyze them. However, how about 3D GIS? It is the aim of this paper to find the answer by analyzing the available software. A 3D case study performed in Oracle Spatial and MicroStation Bentley Map provides knowledge about the 3D functionality offered by commercial systems. At the end, the paper addresses some of the issues and problems involved in developing such a system and recommends directions for further research. Key Words: 3D Spatial Objects, DBMS 1.0 INTRODUCTION Nowadays, GIS users are getting more complex datasets and needs to manipulate and generate information as we perceived in the real world, i.e. in 3D environment. This environment provides better understanding of geospatial pattern and phenomena either in small or large areas. Relevant questions such as: How we model the real world object, i.e. 2D and 3D spatial objects in DBMS and visualizing the objects in GIS/CAD frontend? Answering this question provides on interesting experiment toward realizing 3D geospatial database. In general, many organisations realize the needs for a central DBMS: a system that spatial and attribute data are maintained in one integrated environment. Many DBMSs are capable of maintaining spatial data in 2D, since spatial data types and data structure in 2D have been implemented in DBMSs. However, aspect of 3D data still needs a lot of efforts to be addressed. Over the last few years we have seen an increasing amount of work in the field of modeling and managing 3D spatial objects. A number of projects were focusing on the modeling and management of complex 3D objects in a primarily relational DBMS environment, e.g. (Pfund, 2001), (Wang, 2000). Some ongoing projects employ object-relational concepts to address the issues of topology (Oosterom et al., 2002) and integrated 3D geodata management within a 3D GIS framework, e.g. (Nebiker, 2002a), (Zlatanova et al., 2002). Therefore, in this paper we highlighted all the experiment to manage and modelling 3D spatial objects using Oracle Spatial and Bentley Map. Section 2 elaborates the method on how to represent the 2D and 3D spatial objects in the DBMS. In section 3, the experiment on managing the 3D spatial objects are highlighted. Finally, section 4 concludes all the current work. 2.0 MODELLING THE REAL WORLD OBJECTS The real world objects can be described into two components, i.e. 2D objects such as lot parcels and 3D objects (e.g. buildings). Real world objects are characterized based on certain representation and storage within the DBMS. The representation depends on the purpose of the application of the database, identification and data capture process.

2 2.1 2D Objects In general, 2D objects could be represented by a series of polygon geometry, and their nodes as list of points i.e. connected one-by-one by straight line segments and the last point connected to the first. For example, 2D lot parcels in 2D DBMS are mostly represented by closed polygons, as this will simplify objects identification in GIS. Most lot parcels are identified and captured as a closed polygon as shown at figure D Objects Figure 1: 2D object by closed polygon The representation of real world objects is far more complicated when we move to 3D application. In 3D, opposed to 2.5D, it is not possible to assume that objects can be flattened and defined as polygon footprint on the surface. Instead, a proper 3D model representation of the object is needed, meaning more than one Z-value is attached to a 2D polygon and more information is needed than one Z-value attached to the vertices of the 2D polygon (Zlatanova, 2000). In 3D, the definition of the geometrical and topological description and validation of the correctness is far more complicated than in 2D. The polyhedral approach, as described in among others (Stoter, 2004) defines the polygons, where each polygon should be flat and valid according to the Simple Feature Specification (SFS) of the Open Geospatial Consortium (OGC), i.e. non-self intersecting. The set of faces should enclose a single volume. For example, in this research Oracle Spatial 10g are used to manage 3D points, lines and polygons. Using 3D polygons, 3D spatial objects can be represented as polyhedron in two methods: face-by-face polygons. multipolygon collection. In the first method, 3D objects are defined as face-by-face polygons. This model is partly a topological model; since the body is defined by references to the faces (faces share two bodies). To develop 3D objects, series of coordinates that contain x, y, z are extracted from one face of object to another face of object. The 3D object was stored as a list of 3D polygon and it defined by reference to the faces and the faces can be shared by neighbour-bodies as shown at Figure 2. The generated tables for stored 3D object face-by-face look as shown in Table 1. (a) (b) (c)

3 Figure 2: The extracted coordinates (face by face) of the 3D object, (a) Build_ID: 1, (b) Face_ID: 1, (c) list of coordinate for face 1. Table 1: Coordinates list face by face Build_ID Face_ID Shape(mdsys.sdo_geometry) 1 1 x1,y1,z1 x3,y3,z3 x4,y4,z4 x2,y2,z2 x1,y1,z1 2 x7,y7,z7 x1,y1,z1 x2,y2,z2 x5,y5,z5 x7,y7,z7 3 x2,y2,z2 x4,y4,z4 x6,y6,z6 x5,y5,z5 x2,y2,z2 4 x7,y7,z7 x8,y8,z8 x6,y6,z6 z5,y5,z5 x7,y7,z7 5 x1,y1,z1 x3,y3,z3 x8,y8,z8 z7,y7,z7 x1,y1,z1 6 x8,y8,z8 x3,y3,z3 x4,y4,z4 z6,y6,z6 x8,y8,z8 An advantage of face by face polygons is that it is recognized as one object by front-end applications (GIS/CAD) that can access, visualize, and edit these data and post the changes back to the database so we can easily store the information about the object i.e. face 1 represent the wall and face 2 represent the roof. In second method defining 3D object using multipolygon collection method, a 3D object is stored as one record instead of a set of records. The multipolygon, which is also supported in Oracle Spatial, is used for this representation. This has also been implemented and the example to store 3D objects using multipolygon method as shown in Figure 3. Figure 3: Representation of 3D object using multipolygon method. An advantage of 3D multipolygons (compare to face by face polygons) is that it is recognized as one object by front-end applications (GIS/CAD) that can access, visualize, and edit these data and post the changes back to the database. Another advantage of the 3D multipolygon approach is the one-to-one correspondence between a record and an object. 3.0 MANAGING 3D SPATIAL OBJECTS Over the last few years we have seen an increasing amount of work in the field of modeling and managing geospatial 3D objects. A number of projects were focusing on the modeling and management of 3D objects. 3.1 Study Area The study area in this research is Suleymaniye, Istanbul, Turkey. In this area, we assume the following scenario: the user has 3D data organized only in a database (a quite common case for real world data), i.e. no file with graphical information (e.g. DGN) exists. We have experimented with a set of buildings from the Suleymaniye area. Planar rectangular faces constitute each building. The data are build in CAD and further

4 converted to the geometry representation of Oracle Spatial 10g. The conversion is completed with a topologygeometry of the 2D and 3D spatial object. Since the Oracle Spatial 10g geometry does not maintain a true 3D object, we represented every building as a set of faces (walls, flat roofs and foundations). The faces are stored as polygons with 3D coordinates. In this experiment table LOT stored 2D object, table BUILDING represent 3D object stored face by face and table BODY_BUILDING stored the whole 3D object as a one object. Figure 4 shows the Suleymaniye area. 3.2 The conceptual data model Figure 4: Satellite image of the Suleymaniye (Source: Goggle Earth, 2008) In general, the conceptual data model is the basic contents for organize spatial and attributes data. The conceptual model is a core of spatial data model design, which is used to define some rules for representing attributes of spatial model. The main entities in managing the 3D spatial objects for Suleymaniye area consist of LOT, ROAD, PARCELLER, BODY_BUILDING and BUILDING. Figure 5 shows ER-Diagram for modelling Suleymaniye Area.

5 Figure5: ER Diagram of Suleymaniye Area In this model, the 3D objects were represented by BODY_BUILDING and BUILDING tables. All of these tables contain geometry and attributes of the objects. The attribute components for the 3D objects No_Lot: number of lot parcel Build_Name: name of the building Build_ID: Id of the building Age: age of the building Face_ID: Id of the faces Material: Material of the faces e.g. brick, concrete Description: Description of the faces e.g. wall, roof The geometry components for the 3D objects Polygon: include the geometry of the object The components of 2D objects consist of LOT, PARCELLER and ROAD. The attributes and geometry for 2D objects components are as follows: The attributes for 2D objects No_Lot: number of lot parcel Lot_Perimeter: perimeter of the lot Lot_Area: area of lot P_Perimeter: perimeter of the parcel Parcel_Area: area of the parcel Parcel_ID: ID of the parcel Road_ID: ID of the Road Road_Name: name of the road Length: length of the road Width: width of the road Type: type of the road e.g. highway

6 The geometry component for 2D objects Polygon: include the geometry of the object 3.3 The logical model In this experiment two tables that represent 3D objects are develop as shown in Table 2. In the table, BODY_BUILDING the 3D spatial object is defined by a set of records. This table was constructed by using multipolygon method. In the table BUILDING, the actual geometries of faces are stored as face-byface method. Table 2: Description of BODY_BUILDING and BUILDING table. 3.4 Storing of 3D object using face-by-face method The 3D objects in table BUILDING are stored using face-by-face method and the example to store the 3D object in Oracle as shown at Figure 6. Figure 6: The 3D Face store by faces 3.5 Storing of 3D object using multipolygon method In the table BODY_BUILDING, the 3D objects are stored by multipolygon method and the example to store the 3D objects in Oracle as shown in figure 7.

7 3.6 Managing 2D and 3D spatial object in DBMS Figure 7: Store 3D object by multipolygon method In managing 2D and 3D spatial object, Oracle Spatial supports storage for 3D points, lines and polygons. In this experiment, we divide into four steps to store spatial object in DBMS. The first step is creating 2D and 3D tables. In this case, we choose the table LOT to represent 2D objects and the table BUILDING to represent 3D objects. The steps to created table for spatial objects as shown in Figure 8. Figure 8: Step 1- creating table in Oracle Spatial The next steps are inserting the dataset. In Figure 9 represent the SQL- how to insert the 2D and 3D datasets.

8 Figure 9: Step 2 - Insert 2D and 3D data. The third step is inserting the metadata. Besides the tables that represent the geometries of the objects, metadata is maintained in Oracle by describing the dimension, lower and upper bounds and tolerance in each dimension. In the following figure (Figure 10), the information on the tables (LOT and BUILDING) is inserted in the metadata table. The final step, a spatial index (r-tree in 2D and in 3D) is created in the tables (to speed up spatial queries) as shown in Figure 11. Figure 10: Step 3 - Insert the metadata

9 Figure 11: Step 4 - Creating Index. 3.7 The Linkage between Oracle Spatial and Bentley Map Bentley Map is directly integrated with MicroStation and takes advantage of its features i.e. capture, editing, display, and output capabilities. It supported geospatial modelling and interoperability. It also capable to import n export to ESRI SHP files, MapInfo TAB files, Oracle Spatial features and others. In Bentley Map, topological relationships are stored in the DGN file according to the same model employed by Oracle Spatial. This allows complex analysis operations to occur quickly and maintains compatibility with Oracle Spatial for organizations that choose to use Bentley Map as an editing application for Oracle Spatial. The object that we store in Oracle will be appearing when we connect the Bentley Map with Oracle Spatial. Figure 12 and shows the 2D objects and 3D objects were upload into the Bentley Map. 3.8 Editing 3D objects in Bentley Map Figure 12: 2D and 3D model was uploaded to Bentley Map In Bentley Map, we also can edit the spatial objects using the EDIT function. After editing, we can post the new object directly to Oracle database as shown in the figure 13.

10 Figure 13: Edited 3D object Beside that, we also can change texture of the object. Figure 14 show how the 3D wire frame objects we transform into the solid texture, Figure 15 texture the object using the generated texture and Figure 16 show the 3D objects with the real texture. Figure 14: 3D objects with solid texture

11 Figure 15: 3D objects with generated texture 3.9 Query of objects in Bentley Map Figure 16: 3D objects with real texture There is a possibility to query spatial objects stored in Oracle database via Bentley Map. The linkage between the two systems i.e. Oracle Spatial and Bentley Map needs to be setup first to perform spatial queries. In the experiment, the registrations of spatial objects are conducted using two methods, i.e. registration by faces and using multi polygons. Therefore, the query from each method will be highlighted. In Bentley Map, the query is conducted via the visual SQL Query Builder features. Figure 17 shows the list of spatial attributes based on the selected table. The query for faces registration is conducted by

12 selecting the faces attributes. The output of the experiment can be seen in figure 18. The same method is also applied for querying multi polygon registration. Figure 19 shows the result of the query. Figure 17: Visual SQL Query Builder (with list of spatial attributes) Figure 18: The result of the spatial query based on face-by-face method

13 Figure 19: The result of the spatial query based on multi polygon method 4.0 CONCLUDING AND REMARKS In this paper, we have discussed how to manage 3D spatial objects on Oracle Spatial 10g and visualize in Bentley Map and exhibited valuable information related to 3D functionality (query based on 3D objects selection, editing 3D spatial objects and attributes) currently offered. In addition visualising 3D objects stored in a DBMS is not always straightforward. With Bentley Map it is possible to visualise 3D objects rather easily, however the posting of data to the DBMS is not straight forward. The user is expected to have excellent skills in both systems, i.e. understanding the conceptual representation in Bentley Map and being aware of the implementation in storing geometrical and topological data in Oracle Spatial 10g. In the future, we would like to extend the work by addressing the automated spatial data updating and maintenance. ACKNOWLEDGEMENTS We would like to thank to Mr. Beh Boon Heng from Bentley System Malaysia for their assistants on Bentley product and to the Ministry of Science, Technology and Innovations (MOSTI) as well as Universiti Teknologi Malaysia (UTM) for the research funding. REFERENCES Arens, C., J.E. Stoter, and P.J.M. van Oosterom (2003), Modelling 3D spatial objects in a GeoDBMS using a 3D primitive, under review for AGILE Batty M, Chapman D, Evans S, Haklay Mi, Kueppers S, Shiode N, Smith A, Torrens P, M, 2000, Visualizing the city: Communicating Urban Design to Planners and Decision-Makers, ISSN: , CASA, UCL, Batty M, Dodge M, Jiang B, Smith A, 1998, GIS and Urban Design, ISSN: CASA, UCL, Bentley (2002), Bentley Map edition (2007). URL: De La Losa, 1998, Toward a 3D GIS: Conception of a 3D GIS with a complete topological management, In: Proceedings of GIS PlaNET 98 Conference, Lisbon, Portugal ESRI, 1997, Using ArcView 3D Analyst. ESRI Publication, Redlands, California, USA, 118. p.

14 Oosterom, P. v, J. Stoter, W. Quak and S. Zlatanova, 2002, The balance between geometry and topology, In: Proceedings of Spatial Data Handling, 8-12 July, Ottawa, Canada (to be published) Oracle (2001): Oracle Spatial User's Guide and Reference Release Part Number A , June Stoter, J. and P. van Oosterom, 2002, Incorporating 3D geoobjects into a 2D geo-dbms, Proceedings of SPRS/ACSM, April, 2002, Washington, USA. Varshosaz M., True Realistic 3d Models Of Buildings In Urban Areas, International Archives of the Photogrammetry, Remote Sensing and Spatial Information Sciences, Vol. XXXIV-5/W10. Zlatanova, S., 2000, 3D GIS for urban development, PhD thesis, ITC, The Netherlands, 222 p. Siyka Zlatanova, Alias Abdul Rahman, Morakot Pilouk, 2003, 3D GIS: Current Status and Perspectives, ISPRS and CGI (Canadian Geomatic Institution) Conference, Ottawa, Canada.

5 MANAGING AND MODELLING OF 3D SPATIAL OBJECTS FOR URBAN ENVIROMENT

5 MANAGING AND MODELLING OF 3D SPATIAL OBJECTS FOR URBAN ENVIROMENT 86 Advances toward 3D GIS 5 MANAGING AND MODELLING OF 3D SPATIAL OBJECTS FOR URBAN ENVIROMENT Siti Nur Awanis Mohamad Zulkifli Alias Abdul Rahman Department of Geoinformatics, Faculty of Geoinformation

More information

3D SPATIAL OPERATIONS FOR GEO-DBMS: GEOMETRY VS. TOPOLOGY

3D SPATIAL OPERATIONS FOR GEO-DBMS: GEOMETRY VS. TOPOLOGY 3D SPATIAL OPERATIONS FOR GEO-DBMS: GEOMETRY VS. TOPOLOGY T.K. Chen a, *, A. Abdul-Rahman a, S. Zlatanov b a Department of Geoinformatics, Faculty of Geoinformation Science and Engineering, Universiti

More information

A DBMS-BASED 3D TOPOLOGY MODEL FOR LASER RADAR SIMULATION

A DBMS-BASED 3D TOPOLOGY MODEL FOR LASER RADAR SIMULATION A DBMS-BASED 3D TOPOLOGY MODEL FOR LASER RADAR SIMULATION C. Jun a, * G. Kim a a Dept. of Geoinformatics, University of Seoul, Seoul, Korea - (cmjun, nani0809)@uos.ac.kr Commission VII KEY WORDS: Modelling,

More information

Registration of 3D Spatial Objects for 3D Cadastre

Registration of 3D Spatial Objects for 3D Cadastre Registration of 3D Spatial Objects for 3D Cadastre Mohd Hasif Ahmad Nasruddin and Alias Abdul Rahman Departments of Geoinformatics, Faculty of Geoinformation Science and Engineering, Universiti Teknologi

More information

Proceedings of the 6 th AGILE Dates Lieu MODELLING 3D SPATIAL OBJECTS IN A GEO-DBMS USING A 3D PRIMITIVE

Proceedings of the 6 th AGILE Dates Lieu MODELLING 3D SPATIAL OBJECTS IN A GEO-DBMS USING A 3D PRIMITIVE Proceedings of the 6 th AGILE Dates Lieu MODELLING 3D SPATIAL OBJECTS IN A GEO-DBMS USING A 3D PRIMITIVE Călin Arens, Jantien Stoter and Peter van Oosterom Section GIS-Technology, Department of Geodesy,

More information

Advances in 3D GIS. Siyka Zlatanova Section GISt, Delft University of Technology, The Netherlands

Advances in 3D GIS. Siyka Zlatanova Section GISt, Delft University of Technology, The Netherlands DDD - Advances in 3DGIS Siyka Zlatanova 24 DDD - Rivista trimestrale di Disegno Digitale e Design edita da Poli.Design Anno 1 n. 4 ott/dic 2002 Registrazione n. 718 del 18.12.01 trib. di Milano Advances

More information

Towards a 3D cadastre: where do cadastral needs and technical possibilities meet?

Towards a 3D cadastre: where do cadastral needs and technical possibilities meet? Computers, Environment and Urban Systems 27 (2003) 395 410 www.elsevier.com/locate/compenvurbsys Towards a 3D cadastre: where do cadastral needs and technical possibilities meet? Jantien Stoter a, *, Martin

More information

INCORPORATING 3D SPATIAL OPERATOR WITH BUILDING INFORMATION MODELS IN CONSTRUCTION MANAGEMENT USING GEO-DBMS

INCORPORATING 3D SPATIAL OPERATOR WITH BUILDING INFORMATION MODELS IN CONSTRUCTION MANAGEMENT USING GEO-DBMS INCORPORATING 3D SPATIAL OPERATOR WITH BUILDING INFORMATION MODELS IN CONSTRUCTION MANAGEMENT USING GEO-DBMS Ivin Amri Musliman 1, Alias Abdul-Rahman 1, and Volker Coors 2 1 3D GIS Research Lab, Faculty

More information

Keywords: 3D-GIS, R-Tree, Progressive Data Transfer.

Keywords: 3D-GIS, R-Tree, Progressive Data Transfer. 3D Cadastres 3D Data Model Visualisation 3D-GIS IN NETWORKING ENVIRONMENTS VOLKER COORS Fraunhofer Institute for Computer Graphics Germany ABSTRACT In this paper, we present a data model for 3D geometry

More information

3D GEOSPATIAL DATABASE FROM TERRESTRIAL /LASER SCANNING (TLS) DATA

3D GEOSPATIAL DATABASE FROM TERRESTRIAL /LASER SCANNING (TLS) DATA 3D GEOSPATIAL DATABASE FROM TERRESTRIAL /LASER SCANNING (TLS) DATA Alias Abdul Rahman 1, Chen Tet Khuan 2, Nor Suhaibah Azri 2, and Gurcan Buyuksalih 3 Department of Geoinformatics, Faculty of Geoinformation

More information

10 DIJKSTRA S ALGORITHM BASED ON 3D CAD NETWORK MODULE FOR SPATIAL INDOOR ENVIRONMENT

10 DIJKSTRA S ALGORITHM BASED ON 3D CAD NETWORK MODULE FOR SPATIAL INDOOR ENVIRONMENT 10 DIJKSTRA S ALGORITHM BASED ON 3D CAD NETWORK MODULE FOR SPATIAL INDOOR ENVIRONMENT Muhamad Uznir Ujang Alias Abdul Rahman Department of Geoinformatics, Faculty of Geoinformation Science and Engineering,

More information

Automated Extraction of Buildings from Aerial LiDAR Point Cloud and Digital Imaging Datasets for 3D Cadastre - Preliminary Results

Automated Extraction of Buildings from Aerial LiDAR Point Cloud and Digital Imaging Datasets for 3D Cadastre - Preliminary Results Automated Extraction of Buildings from Aerial LiDAR Point Cloud and Digital Imaging Datasets for 3D Pankaj Kumar 1*, Alias Abdul Rahman 1 and Gurcan Buyuksalih 2 ¹Department of Geoinformation Universiti

More information

Web 3D GIS for Urban Environments

Web 3D GIS for Urban Environments Web 3D GIS for Urban Environments Georg Held¹, Alias Abdul-Rahman¹, Siyka Zlatanova² ¹Department of Geoinformatics and Institute for Geospatial Science and Technology Universiti Teknologi Malaysia, 81310

More information

Topology in spatial DBMSs

Topology in spatial DBMSs Topology in spatial DBMSs Wilko Quak, Jantien Stoter and Theo Tijssen Department of Geodesy, Faculty of Civil Engineering and Geosciences Delft University of Technology, The Netherlands Telephone: +31

More information

Texturing Techniques in 3D City Modeling

Texturing Techniques in 3D City Modeling Texturing Techniques in 3D City Modeling 1 İdris Kahraman, 2 İsmail Rakıp Karaş, Faculty of Engineering, Department of Computer Engineering, Karabuk University, Turkey 1 idriskahraman@karabuk.edu.tr, 2

More information

UPDATING OBJECT FOR GIS DATABASE INFORMATION USING HIGH RESOLUTION SATELLITE IMAGES: A CASE STUDY ZONGULDAK

UPDATING OBJECT FOR GIS DATABASE INFORMATION USING HIGH RESOLUTION SATELLITE IMAGES: A CASE STUDY ZONGULDAK UPDATING OBJECT FOR GIS DATABASE INFORMATION USING HIGH RESOLUTION SATELLITE IMAGES: A CASE STUDY ZONGULDAK M. Alkan 1, *, D. Arca 1, Ç. Bayik 1, A.M. Marangoz 1 1 Zonguldak Karaelmas University, Engineering

More information

AUTOMATIC GENERATION OF 3-D BUILDING MODELS FROM BUILDING POLYGONS ON GIS

AUTOMATIC GENERATION OF 3-D BUILDING MODELS FROM BUILDING POLYGONS ON GIS AUTOMATIC GENERATION OF 3-D BUILDING MODELS FROM BUILDING POLYGONS ON GIS Kenichi Sugihara 1, Yoshitugu Hayashi 2 ABSTRACT When a real urban world is projected into 3-D virtual space, buildings are major

More information

AUTOMATIC EXTRACTION OF BUILDING FEATURES FROM TERRESTRIAL LASER SCANNING

AUTOMATIC EXTRACTION OF BUILDING FEATURES FROM TERRESTRIAL LASER SCANNING AUTOMATIC EXTRACTION OF BUILDING FEATURES FROM TERRESTRIAL LASER SCANNING Shi Pu and George Vosselman International Institute for Geo-information Science and Earth Observation (ITC) spu@itc.nl, vosselman@itc.nl

More information

GENERATING BUILDING OUTLINES FROM TERRESTRIAL LASER SCANNING

GENERATING BUILDING OUTLINES FROM TERRESTRIAL LASER SCANNING GENERATING BUILDING OUTLINES FROM TERRESTRIAL LASER SCANNING Shi Pu International Institute for Geo-information Science and Earth Observation (ITC), Hengelosestraat 99, P.O. Box 6, 7500 AA Enschede, The

More information

Computational Geometry Algorithms Library. Geographic information Systems

Computational Geometry Algorithms Library. Geographic information Systems Computational Geometry Algorithms Library in Geographic information Systems Edward Verbree, Peter van Oosterom and Wilko Quak TU Delft, Department of Geodesy, Thijsseweg 11, 2629 JA Delft, the Netherlands

More information

GEOMETRICAL AND TOPOLOGICAL MODELS FOR REAL-TIME GIS

GEOMETRICAL AND TOPOLOGICAL MODELS FOR REAL-TIME GIS GEOMETRICAL AND TOPOLOGICAL MODELS FOR REAL-TIME GIS Siyka Zlatanova a, Daniel Holweg b, Volker Coors c a Delft University of Technology, Thijsseweg 11, 2629JA, Delft, The Netherlands, s.zlatanova@citg.tudelft.nl

More information

Height in the Cadastre Integrating Point Heights and Parcel Boundaries

Height in the Cadastre Integrating Point Heights and Parcel Boundaries Height in the Cadastre Integrating Point Heights and Parcel Boundaries Jantien STOTER and Ben GORTE, the Netherlands Key words: 3D cadastre, 3D data models, geo-dbms, DTM. SUMMARY In the research concerning

More information

Feature Enhancements by Release

Feature Enhancements by Release Autodesk Map Feature Enhancements by Release This document highlights the feature enhancements that have occurred with each release of Autodesk Map software from Release 4 (2000i) through the current 2004

More information

A CONSISTENCY MAINTENANCE OF SHARED BOUNDARY AFTER POLYGON GENERALIZATION

A CONSISTENCY MAINTENANCE OF SHARED BOUNDARY AFTER POLYGON GENERALIZATION CO-182 A CONSISTENCY MAINTENANCE OF SHARED BOUNDARY AFTER POLYGON GENERALIZATION AI T.(1), ZHANG W.(2) (1) Wuhan University, WUHAN CITY, CHINA ; (2) Zhongnan University of Economics and Law, WUHAN CITY,

More information

Harmonisation of distributed geographic datasets - A model driven approach for geotechnical & footprint data.

Harmonisation of distributed geographic datasets - A model driven approach for geotechnical & footprint data. Harmonisation of distributed geographic datasets - A model driven approach for geotechnical & footprint data. Bart van den Berg (1,2), Bart Hulshof (1), Theo Tijssen (2) en Peter van Oosterom (2) (1) Shell/NAM,

More information

AN AMALGAMATION OF 3D SPATIAL DATA MODEL FOR SURFACE AND SUBSURFACE SPATIAL OBJECTS. Edward Eric Duncan, and Alias Abdul Rahman.

AN AMALGAMATION OF 3D SPATIAL DATA MODEL FOR SURFACE AND SUBSURFACE SPATIAL OBJECTS. Edward Eric Duncan, and Alias Abdul Rahman. AN AMALGAMATION OF 3D SPATIAL DATA MODEL FOR SURFACE AND SUBSURFACE SPATIAL OBJECTS Edward Eric Duncan, and Alias Abdul Rahman Introduction The current city Earth surface is actually an amalgamation of

More information

Introduction to Geodatabase and Spatial Management in ArcGIS. Craig Gillgrass Esri

Introduction to Geodatabase and Spatial Management in ArcGIS. Craig Gillgrass Esri Introduction to Geodatabase and Spatial Management in ArcGIS Craig Gillgrass Esri Session Path The Geodatabase - What is it? - Why use it? - What types are there? - What can I do with it? Query Layers

More information

OPERATORS FOR CELL TUPLE-BASED SPATIOTEMPORAL DATA MODEL

OPERATORS FOR CELL TUPLE-BASED SPATIOTEMPORAL DATA MODEL OPERTORS FOR CELL TUPLE-BSED SPTIOTEMPORL DT MODEL le Raza ESRI 80 New York Street, Redlands, California 97-800, US Tel.: +-909-79-85 (ext. 009) Fax: +-909-07-067 araza@esri.com Commission IV, WG IV/ KEY

More information

Storing And Using Multi-Scale Topological Data Efficiently In A Client-Server DBMS Environment

Storing And Using Multi-Scale Topological Data Efficiently In A Client-Server DBMS Environment Storing And Using Multi-Scale Topological Data Efficiently In A Client-Server DBMS Environment MAARTEN VERMEIJ, PETER VAN OOSTEROM, WILKO QUAK AND THEO TIJSSEN. Faculty of Civil Engineering and Geosciences,

More information

Generating online map for Skudai using the Minnesota Map Server

Generating online map for Skudai using the Minnesota Map Server Generating online map for Skudai using the Minnesota Map Server Boonheng Beh and Alias Abdul Rahman Department of Geoinformatic, Universiti Teknologi Malaysia, 81310 UTM Skudai, Johor, Malaysia. alias@fksg.utm.my

More information

3D GEO INFORMATION SYSTEM WHERE ARE WE?

3D GEO INFORMATION SYSTEM WHERE ARE WE? 3D GEO INFORMATION SYSTEM WHERE ARE WE? Alias Abdul Rahman 1, Sisi Zlatanova 2, Volker Coors 3 and Chris Gold 4 1 Department of Geoinformatics, Faculty of Geoinformation Science and Engineering, Universiti

More information

DISTANCE-VALUE-ADDED PANORAMIC IMAGES AS THE BASE DATA MODEL FOR 3D-GIS

DISTANCE-VALUE-ADDED PANORAMIC IMAGES AS THE BASE DATA MODEL FOR 3D-GIS DISTANCE-VALUE-ADDED PANORAMIC IMAGES AS THE BASE DATA MODEL FOR 3D-GIS Panoramic Photogrammetry Workshop - Berlin Germany, 24-25 February 2005 Edward Verbree 1), Sisi Zlatanova 1) and Sander Dijkman 2)

More information

Developing an Advanced Document Based Map Server *

Developing an Advanced Document Based Map Server * Proceedings of the 8 th International Conference on Applied Informatics Eger, Hungary, January 27 30, 2010. Vol. 1. pp. 337 344. Developing an Advanced Document Based Map Server * Roberto Giachetta a,

More information

MODELLING FOR 3D GIS: SPATIAL ANALYSIS AND VISUALISATION THROUGH THE WEB

MODELLING FOR 3D GIS: SPATIAL ANALYSIS AND VISUALISATION THROUGH THE WEB MODELLING FOR 3D GIS: SPATIAL ANALYSIS AND VISUALISATION THROUGH THE WEB Siyka ZLATANOVA *, Klaus TEMPFLI ** * Delft University of Technology, The Netherlands s.zlatanova@geo.tudelft.nl ** International

More information

DERIVING SPATIOTEMPORAL RELATIONS FROM SIMPLE DATA STRUCTURE

DERIVING SPATIOTEMPORAL RELATIONS FROM SIMPLE DATA STRUCTURE DERIVING SPATIOTEMPORAL RELATIONS FROM SIMPLE DATA STRUCTURE Ale Raza ESRI 380 New York Street, Redlands, California 9373-800, USA Tel.: +-909-793-853 (extension 009) Fax: +-909-307-3067 araza@esri.com

More information

GEOSPATIAL ENGINEERING COMPETENCIES. Geographic Information Science

GEOSPATIAL ENGINEERING COMPETENCIES. Geographic Information Science GEOSPATIAL ENGINEERING COMPETENCIES Geographic Information Science The character and structure of spatial information, its methods of capture, organisation, classification, qualification, analysis, management,

More information

2011 Bentley Systems, Incorporated. Bentley Descartes V8i Advancing Information Modeling For Intelligent Infrastructure

2011 Bentley Systems, Incorporated. Bentley Descartes V8i Advancing Information Modeling For Intelligent Infrastructure Bentley Descartes V8i Advancing Information Modeling For Intelligent Infrastructure Agenda Why would you need Bentley Descartes? What is Bentley Descartes? Advanced Point Cloud Workflows Advanced Terrain

More information

May 21, 2014 Walter E. Washington Convention Center Washington, DC USA. Copyright 2014, Oracle and/or its affiliates. All rights reserved.

May 21, 2014 Walter E. Washington Convention Center Washington, DC USA. Copyright 2014, Oracle and/or its affiliates. All rights reserved. May 21, 2014 Walter E. Washington Convention Center Washington, DC USA 1 Innovation in Spatial Data Processing Hans Viehmann Product Manager EMEA The following is intended to outline our general product

More information

LSGI 521: Principles of GIS. Lecture 5: Spatial Data Management in GIS. Dr. Bo Wu

LSGI 521: Principles of GIS. Lecture 5: Spatial Data Management in GIS. Dr. Bo Wu Lecture 5: Spatial Data Management in GIS Dr. Bo Wu lsbowu@polyu.edu.hk Department of Land Surveying & Geo-Informatics The Hong Kong Polytechnic University Contents 1. Learning outcomes 2. From files to

More information

IT Infrastructure for BIM and GIS 3D Data, Semantics, and Workflows

IT Infrastructure for BIM and GIS 3D Data, Semantics, and Workflows IT Infrastructure for BIM and GIS 3D Data, Semantics, and Workflows Hans Viehmann Product Manager EMEA ORACLE Corporation November 23, 2017 @SpatialHannes Safe Harbor Statement The following is intended

More information

Graph-based Modeling of Building Roofs Judith Milde, Claus Brenner Institute of Cartography and Geoinformatics, Leibniz Universität Hannover

Graph-based Modeling of Building Roofs Judith Milde, Claus Brenner Institute of Cartography and Geoinformatics, Leibniz Universität Hannover 12th AGILE International Conference on Geographic Information Science 2009 page 1 of 5 Graph-based Modeling of Building Roofs Judith Milde, Claus Brenner Institute of Cartography and Geoinformatics, Leibniz

More information

Topological and temporal modelling in GML

Topological and temporal modelling in GML Topological and temporal modelling in GML Wilko Quak, Marian de Vries Delft University of Technology Jaffalaan 9 2628 BX Delft The Netherlands w.quak@otb.tudelft.nl, m.d.vries@otb.tudelft.nl Abstract GML

More information

A 3D MOBILE MAPPING AND NAVIGATION SYSTEM: AUTOMATIC 3D TOPOLOGICAL DATA EXTRACTION, NETWORK ANALYSES, SIMULATION AND INTERACTIVE HUMAN NAVIGATION

A 3D MOBILE MAPPING AND NAVIGATION SYSTEM: AUTOMATIC 3D TOPOLOGICAL DATA EXTRACTION, NETWORK ANALYSES, SIMULATION AND INTERACTIVE HUMAN NAVIGATION A 3D MOBILE MAPPING AND NAVIGATION SYSTEM: AUTOMATIC 3D TOPOLOGICAL DATA EXTRACTION, NETWORK ANALYSES, SIMULATION AND INTERACTIVE HUMAN NAVIGATION I. R. Karas a, *, F. Batuk b, O. Emem b a Gebze Institute

More information

14 3D NAVIGATION SYSTEMS BASED ON SYNTHETIC TEXTURING

14 3D NAVIGATION SYSTEMS BASED ON SYNTHETIC TEXTURING 14 3D NAVIGATION SYSTEMS BASED ON SYNTHETIC TEXTURING 1 Behnam Alizadehashrafi 1 Alias Abdul Rahman 2 Volker Coors 2 Thorsten Schulz 1 Department of Geoinformatics Faculty of Geoinformation Science and

More information

MANAGEMENT AND 3D VISUALIZATION OF PIPELINE NETWORKS USING DBMS AND AEC SOFTWARE

MANAGEMENT AND 3D VISUALIZATION OF PIPELINE NETWORKS USING DBMS AND AEC SOFTWARE MANAGEMENT AND 3D VISUALIZATION OF PIPELINE NETWORKS USING DBMS AND AEC SOFTWARE Yunqiang Du 1, Sisi Zlatanova 2 and Xianglin Liu 3 1 The urban planning bureau of Yibing city, Sichuan Province, P.R.China

More information

Enhancing photogrammetric 3d city models with procedural modeling techniques for urban planning support

Enhancing photogrammetric 3d city models with procedural modeling techniques for urban planning support IOP Conference Series: Earth and Environmental Science OPEN ACCESS Enhancing photogrammetric 3d city models with procedural modeling techniques for urban planning support To cite this article: S Schubiger-Banz

More information

Using ESRI data in Autodesk ISD Products

Using ESRI data in Autodesk ISD Products GI13-3 Using ESRI data in Autodesk ISD Products 1.5 hr. Class 02-Dec-03 3:30pm - 5:00pm Session Description: We will focus on using data in a variety of ESRI formats within the Autodesk GIS product line,

More information

DEVELOPING A THREE-DIMENSIONAL TOPOLOGICAL DATA MODEL

DEVELOPING A THREE-DIMENSIONAL TOPOLOGICAL DATA MODEL DEVELOPING A THREE-DIMENSIONAL TOPOLOGICAL DATA MODEL Saadi MESGARI International Institute for Aerospace Survey and Earth Sciences (ITC) The Netherlands Mesgari@itc.nl Working Group IC/16 KEY WORDS: Data

More information

A New Approach for Data Conversion from CAD to GIS

A New Approach for Data Conversion from CAD to GIS Esin Bitik (PhD) Dursun Zafer Şeker Ziyadin ÇAKIR Hakan DENLİ A New Approach for Data Conversion from CAD to GIS June 19, 2014 Contents 1. Aim of the study 2. Introduction 3. Vector Data Structure 4. Converting

More information

TOPOSCOPY, A CLOSE RANGE PHOTOGRAMMETRIC SYSTEM FOR ARCHITECTS AND LANDSCAPE DESIGNERS

TOPOSCOPY, A CLOSE RANGE PHOTOGRAMMETRIC SYSTEM FOR ARCHITECTS AND LANDSCAPE DESIGNERS TOPOSCOPY, A CLOSE RANGE PHOTOGRAMMETRIC SYSTEM FOR ARCHITECTS AND LANDSCAPE DESIGNERS A. C. Groneman-van der Hoeven Bureau Toposcopie, Bachlaan 78, 6865 ES Doorwerth, The Netherlands. info@toposcopie.nl

More information

Introduction to Bentley Map

Introduction to Bentley Map Presenter: Chris Slavin, Project Manager, Professional Services Geospatial Bentley Systems, Incorporated 685 Stockton Drive Exton, PA 19341 www.bentley.com Lesson Name: Introduction to XFM...3 The Bentley

More information

3D Cadastre: Progress Report. Jantien Stoter

3D Cadastre: Progress Report. Jantien Stoter 3D Cadastre: Progress Report Jantien Stoter GISt Report No. 14 October 2002 Summary: At the Department of Geodesy, Section GIS technology a research is carried out to study the needs, possibilities and

More information

Geodatabases. Dr. Zhang SPRING 2016 GISC /03/2016

Geodatabases. Dr. Zhang SPRING 2016 GISC /03/2016 Geodatabases Dr. Zhang SPRING 2016 GISC 1401 10/03/2016 Using and making maps Navigating GIS maps Map design Working with spatial data Spatial data infrastructure Interactive maps Map Animations Map layouts

More information

From 2D to 3D at Esri

From 2D to 3D at Esri From 2D to 3D at Esri Paul Hardy, Esri Inc phardy@esri.com, Cambridge, UK SHORT PAPER This short paper provides an overview of the 3D capabilities of a modern GIS, illustrated by the Esri ArcGIS system,

More information

The Modelling of Spatial Units (Parcels) in the Land Administration Domain Model (LADM, ISO 19152)

The Modelling of Spatial Units (Parcels) in the Land Administration Domain Model (LADM, ISO 19152) The Modelling of Spatial Units (Parcels) in the Land Administration Domain Model (LADM, ISO 19152) Christiaan LEMMEN; Peter VAN OOSTEROM; Rod THOMPSON; João HESPANHA and Harry UITERMARK, XXIV FIG International

More information

The What, Why, Who and How of Where: Building a Portal for Geospatial Data. Alan Darnell Director, Scholars Portal

The What, Why, Who and How of Where: Building a Portal for Geospatial Data. Alan Darnell Director, Scholars Portal The What, Why, Who and How of Where: Building a Portal for Geospatial Data Alan Darnell Director, Scholars Portal What? Scholars GeoPortal Beta release Fall 2011 Production release March 2012 OLITA Award

More information

CARTODB: VISUALIZE SPATIAL DATA ON THE WEB Thematic Mapping of Enschede socio-economic data

CARTODB: VISUALIZE SPATIAL DATA ON THE WEB Thematic Mapping of Enschede socio-economic data CARTODB: VISUALIZE SPATIAL DATA ON THE WEB Thematic Mapping of Enschede socio-economic data Barend Köbben Version 2.1 [Enschede] November 7, 2014 Contents 1 The CartoDB web application 1 2 Mapping socio-economic

More information

3D TOPOLOGY FOR MODELLING OF URBAN STRUCTURES

3D TOPOLOGY FOR MODELLING OF URBAN STRUCTURES 3D TOPOLOGY FOR MODELLING OF URBAN STRUCTURES Tarun Ghawana & Sisi Zlatanoa Delft Uniersity of Technology Challenge the future Increased awareness of underground information Ludig Emgard Jakob Beetz 2

More information

Making and Sharing Digital Community Asset Maps Using Free Software and Web Resources

Making and Sharing Digital Community Asset Maps Using Free Software and Web Resources Making and Sharing Digital Community Asset Maps Using Free Software and Web Resources A Guide for Community Groups Prepared by Dave Whiting Consulting (dave.whiting@shaw.ca) May, 2009 A product of the

More information

Geo-DBMS harmonization of subsurface threedimensional geo-information related to infrastructure

Geo-DBMS harmonization of subsurface threedimensional geo-information related to infrastructure Geo-DBMS harmonization of subsurface threedimensional geo-information related to infrastructure Research idea paper Ludvig Emgård Table of Contents 1. Introduction...3 2. Background...5 2.1. Problems with

More information

Whitepaper. Reading Map 3D Object Data with FME. Overview. FME and Spatial Data Interoperability. Spatial ETL Tools

Whitepaper. Reading Map 3D Object Data with FME. Overview. FME and Spatial Data Interoperability. Spatial ETL Tools Whitepaper Reading Map 3D Object Data with FME Overview A key challenge for users of spatial data is interoperability. Even for a committed user of AutoCAD Map 3D, there are likely to be occasional needs

More information

Analyzing the performance of NoSQL vs. SQL databases for Spatial and Aggregate queries

Analyzing the performance of NoSQL vs. SQL databases for Spatial and Aggregate queries Free and Open Source Software for Geospatial (FOSS4G) Conference Proceedings Volume 17 FOSS4G 2017 Full Conference Proceedings (papers and posters), Boston, USA. Article 4 2017 Analyzing the performance

More information

Representing Three-Dimensional Topography in a DBMS with a Star-Based Data Structure

Representing Three-Dimensional Topography in a DBMS with a Star-Based Data Structure Representing Three-Dimensional Topography in a DBMS with a Star-Based Data Structure Hugo Ledoux and Martijn Meijers Abstract For storing and modelling three-dimensional topographic objects (e.g. buildings,

More information

ArcMap - EXPLORING THE DATABASE Part I. SPATIAL DATA FORMATS Part II

ArcMap - EXPLORING THE DATABASE Part I. SPATIAL DATA FORMATS Part II Week 5 ArcMap - EXPLORING THE DATABASE Part I SPATIAL DATA FORMATS Part II topics of the week Exploring the Database More on the Table of Contents Exploration tools Identify, Find, Measure, Map tips, Hyperlink,

More information

Outline of Presentation. Introduction to Overwatch Geospatial Software Feature Analyst and LIDAR Analyst Software

Outline of Presentation. Introduction to Overwatch Geospatial Software Feature Analyst and LIDAR Analyst Software Outline of Presentation Automated Feature Extraction from Terrestrial and Airborne LIDAR Presented By: Stuart Blundell Overwatch Geospatial - VLS Ops Co-Author: David W. Opitz Overwatch Geospatial - VLS

More information

DEVELOPING A NEW GEOGRAPHICAL OBJECT DATABASE. EXPERIENCES FROM IDEA TO DELIVERING DATASETS TOP10NL

DEVELOPING A NEW GEOGRAPHICAL OBJECT DATABASE. EXPERIENCES FROM IDEA TO DELIVERING DATASETS TOP10NL DEVELOPING A NEW GEOGRAPHICAL OBJECT DATABASE. EXPERIENCES FROM IDEA TO DELIVERING DATASETS TOP10NL NICO J. BAKKER Topografische Dienst Kadaster Bendienplein 5 7815 SM Emmen, The Netherlands nbakker@tdkadaster.nl

More information

APPLYING THE 3D GIS DILAS TO ARCHAEOLOGY AND CULTURAL HERITAGE PROJECTS REQUIREMENTS AND FIRST RESULTS

APPLYING THE 3D GIS DILAS TO ARCHAEOLOGY AND CULTURAL HERITAGE PROJECTS REQUIREMENTS AND FIRST RESULTS APPLYING THE 3D GIS DILAS TO ARCHAEOLOGY AND CULTURAL HERITAGE PROJECTS REQUIREMENTS AND FIRST RESULTS T. Wüst, S. Nebiker, R. Landolt Basel University of Applied Sciences (FHBB), CH-4132 Muttenz, Switzerland

More information

3D TECHNOLOGY FOR IMPROVING DISASTER MANAGEMENT: GEO-DBMS AND POSITIONING

3D TECHNOLOGY FOR IMPROVING DISASTER MANAGEMENT: GEO-DBMS AND POSITIONING 3D TECHNOLOGY FOR IMPROVING DISASTER MANAGEMENT: GEO-DBMS AND POSITIONING S. Zlatanova, P. van Oosterom and E. Verbree Delft University of Technology, Jaffalaan 9, Delft, The Netherlands, {s.zlatanova

More information

3D CITY MODELLING FOR MOBILE AUGMENTED REALITY

3D CITY MODELLING FOR MOBILE AUGMENTED REALITY 3D CITY MODELLING FOR MOBILE AUGMENTED REALITY Siyka Zlatanova, Frank A. van den Heuvel Delft University of Technology, Department of Geodesy Thijsseweg 11, 2629JA Delft, The Netherlands Email: {S.Zlatanova,

More information

Unwrapping of Urban Surface Models

Unwrapping of Urban Surface Models Unwrapping of Urban Surface Models Generation of virtual city models using laser altimetry and 2D GIS Abstract In this paper we present an approach for the geometric reconstruction of urban areas. It is

More information

Matthew Heric, Geoscientist and Kevin D. Potter, Product Manager. Autometric, Incorporated 5301 Shawnee Road Alexandria, Virginia USA

Matthew Heric, Geoscientist and Kevin D. Potter, Product Manager. Autometric, Incorporated 5301 Shawnee Road Alexandria, Virginia USA INTEGRATIONS OF STRUCTURED QUERY LANGUAGE WITH GEOGRAPHIC INFORMATION SYSTEM PROCESSING: GeoServer Matthew Heric, Geoscientist and Kevin D. Potter, Product Manager Autometric, Incorporated 5301 Shawnee

More information

3D Solids and Their Management In DBMS

3D Solids and Their Management In DBMS Chapter 16 3D Solids and Their Management In DBMS Chen Tet Khuan, Alias Abdul-Rahman, and Sisi Zlatanova Abstract 3D spatial modeling is one of the most important issues in 3D GIS research. It involves

More information

GISP: The Road to and Through an Exam. Presented By: Bill Hodge, GISP Executive Director GISCI June 7, 2017 GeoEd 17

GISP: The Road to and Through an Exam. Presented By: Bill Hodge, GISP Executive Director GISCI June 7, 2017 GeoEd 17 GISP: The Road to and Through an Exam Presented By: Bill Hodge, GISP Executive Director GISCI June 7, 2017 GeoEd 17 GISP An Updated Perspective Certification GISP Certification History GISP Current Process

More information

SPATIAL DATA STORAGE AND TOPOLOGY IN THE REDESIGNED MAF/TIGER SYSTEM

SPATIAL DATA STORAGE AND TOPOLOGY IN THE REDESIGNED MAF/TIGER SYSTEM SPATIAL DATA STORAGE AND TOPOLOGY IN THE REDESIGNED MAF/TIGER SYSTEM David Galdi Abstract: Since the late 1980 s, the Geography Division has utilized the TIGER system to provide geographic support for

More information

Geog 469 GIS Workshop. System Requirements - Data

Geog 469 GIS Workshop. System Requirements - Data Geog 469 GIS Workshop System Requirements - Data Outline 1. What are some principles of project management? 2. What are some fundamental issues associated with system requirements? 3. What are some issues

More information

3D Cadastral System Functionalities for 5D Multi- Purpose LIS

3D Cadastral System Functionalities for 5D Multi- Purpose LIS 3D Cadastral System Functionalities for 5D Multi- Purpose LIS ΕΣΠΑ 2007-2013, Δράση«Διμερής Ε&Τ Συνεργασία Ελλάδας- Ισραήλ 2013-2015» YΠOYPΓEIO ΠAΙΔΕΙΑΣ ΚΑΙ ΘΡΗΣΚΕΥΜΑΤΩΝ Γ.Γ.Ε.Τ. ΕΥΔΕ - ΕΤΑΚ Outline 5DMuPLIS

More information

Urban Perspectives: A Raster-Based Approach to 3D Generalization of Groups of Buildings

Urban Perspectives: A Raster-Based Approach to 3D Generalization of Groups of Buildings Urban Perspectives: A Raster-Based Approach to 3D Generalization of Groups of Buildings Alexey Noskov Mapping and Geo-Information Engineering Technion Israel Institute of Technology Haifa, Israel e-mail:

More information

Accessing Data Where it Lives

Accessing Data Where it Lives Accessing Data Where it Lives Session 3A Steve Carr TSI Tyson Haverkort Safe Software Session Description We ll discuss many types of data that can be used in MapInfo Professional such as: Business Data

More information

GEOSPATIAL ERDAS APOLLO. Your Geospatial Business System for Managing and Serving Information

GEOSPATIAL ERDAS APOLLO. Your Geospatial Business System for Managing and Serving Information GEOSPATIAL ERDAS APOLLO Your Geospatial Business System for Managing and Serving Information ERDAS APOLLO Do you have large volumes of data, a geographicallydistributed user base and rapidly changing

More information

SERVO - ACES Abstract

SERVO - ACES Abstract 1 of 6 12/27/2004 2:33 PM 2 of 6 12/27/2004 2:33 PM Implementing GIS Grid Services for the International Solid Earth Research Virtual Observatory Galip Aydin (1), Marlon Pierce (1), Geoffrey Fox (1), Mehmet

More information

DEVELOPMENT OF A SOFTWARE SYSTEM FOR LEAST SQUARES ESTIMATION, DEFORMATION DETECTION AND VISUALIZATION ANALYSIS

DEVELOPMENT OF A SOFTWARE SYSTEM FOR LEAST SQUARES ESTIMATION, DEFORMATION DETECTION AND VISUALIZATION ANALYSIS DEVELOPMENT OF A SOFTWARE SYSTEM FOR LEAST SQUARES ESTIMATION, DEFORMATION DETECTION AND VISUALIZATION ANALYSIS Halim Setan, Bong Chin Nyet Center for Industrial Measurement and Engineering Surveying (CIMES),

More information

Integrating ArcGIS desktop in data interoperability environments with heterogeneous GIS clients

Integrating ArcGIS desktop in data interoperability environments with heterogeneous GIS clients Data-Interoperability based on Common Databases Integrating ArcGIS desktop in data interoperability environments with heterogeneous GIS clients M.Sc Abdurasyid Moestofa / Prof. Rainer Kettemann Stuttgart

More information

Modelling of 3D Cadastral Systems

Modelling of 3D Cadastral Systems Modelling of 3D Cadastral Systems Peter van Oosterom 1, Jantien Stoter 2 and Christiaan Lemmen 2,3 1 OTB Research Institute for Housing, Urban and Mobility Studies, Delft University of Technology, Jaffalaan

More information

GISCI GEOSPATIAL CORE TECHNICAL KNOWLEDGE EXAM CANDIDATE MANUAL AUGUST 2017

GISCI GEOSPATIAL CORE TECHNICAL KNOWLEDGE EXAM CANDIDATE MANUAL AUGUST 2017 GISCI GEOSPATIAL CORE TECHNICAL KNOWLEDGE EXAM CANDIDATE MANUAL AUGUST 2017 This document provides information about the GISCI Geospatial Core Technical Knowledge Exam, now a requirement for GISCI GISP

More information

Geog 469 GIS Workshop. System Requirements

Geog 469 GIS Workshop. System Requirements Geog 469 GIS Workshop System Requirements Outline 1. What are some fundamental issues associated with system requirements? 2. What are your GIS data requirements? 3. What are your GIS software requirements?

More information

Topology versus non-topology storage structures Functional analysis and performance test using LaserScan Radius Topology

Topology versus non-topology storage structures Functional analysis and performance test using LaserScan Radius Topology Topology versus non-topology storage structures Functional analysis and performance test using LaserScan Radius Topology J.H. Louwsma Cover: Query elements for the performance test Topology versus non-topology

More information

ABSTRACT FUNDAMENTAL ASPECT OF 3D SPATIAL OBJECTS VALIDATION VIA SET AND EULER THEORIES

ABSTRACT FUNDAMENTAL ASPECT OF 3D SPATIAL OBJECTS VALIDATION VIA SET AND EULER THEORIES ABSTRACT FUNDAMENTAL ASPECT OF 3D SPATIAL OBJECTS VALIDATION VIA SET AND EULER THEORIES (Key words: 3D spatial objects, DBMS, set theory, and Euler theory) This research attempts to explore two mathematical

More information

Semi-Automated and Interactive Construction of 3D Urban Terrains

Semi-Automated and Interactive Construction of 3D Urban Terrains Semi-Automated and Interactive Construction of 3D Urban Terrains Tony Wasilewski *, Nickolas Faust, and William Ribarsky Center for GIS and Spatial Analysis Technologies Graphics, Visualization, and Usability

More information

Semi-Automatic Approach for Building Reconstruction Using SPLIT-MERGE-SHAPE Method

Semi-Automatic Approach for Building Reconstruction Using SPLIT-MERGE-SHAPE Method Semi-Automatic Approach for Building Reconstruction Using SPLIT-MERGE-SHAPE Method Jiann-Yeou RAU, Liang-Chien CHEN Tel: 886-3-4227151 Ext. 7651,7627,7622 Fax: 886-3-4255535 {jyrau, lcchen} @csrsr.ncu.edu.tw

More information

The visualisation of integrated 3D petroleum datasets in ArcGIS

The visualisation of integrated 3D petroleum datasets in ArcGIS The visualisation of integrated 3D petroleum datasets in ArcGIS Alistair Ford Abstract This paper describes the use of ArcGIS and the 3D Analyst extension for the integration of multiple petroleum datasets

More information

THE TOOLS OF AUTOMATED GENERALIZATION AND BUILDING GENERALIZATION IN AN ArcGIS ENVIRONMENT

THE TOOLS OF AUTOMATED GENERALIZATION AND BUILDING GENERALIZATION IN AN ArcGIS ENVIRONMENT Vol. XIX, 2011, No. 1, 1 7, DOI: 10.2478/v10189-011-0001-4 V. DROPPOVÁ THE TOOLS OF AUTOMATED GENERALIZATION AND BUILDING GENERALIZATION IN AN ArcGIS ENVIRONMENT Veronika Droppová email: veronika.droppova@gmail.com

More information

Geospatial database for heritage building conservation

Geospatial database for heritage building conservation IOP Conf. Series: Earth and Environmental Science 18 (2014) 012087 doi:10.1088/1755-1315/18/1/012087 Geospatial database for heritage building conservation W N F W A Basir1,3, H Setan1, Z M ajid1, A Chong2

More information

USING 3D GIS SIMULATION FOR URBAN DESIGN

USING 3D GIS SIMULATION FOR URBAN DESIGN Do-Hyung Kim Ilir Bejleri USING 3D GIS SIMULATION FOR URBAN DESIGN Abstract The Florida town of High Springs joins the University of Florida to develop a vision for the revitalization of its historic town

More information

Unit 4: Vector Overlay Analysis. Lecture Outline. Possible background reading material: McHarg, Ian 1992 Design with Nature. Wiley and Sons, New York.

Unit 4: Vector Overlay Analysis. Lecture Outline. Possible background reading material: McHarg, Ian 1992 Design with Nature. Wiley and Sons, New York. Unit 4: Vector Overlay Analysis Lecture Outline Possible background reading material: McHarg, Ian 1992 Design with Nature. Wiley and Sons, New York. Introduction: The idea of overlay originated when maps

More information

2011 Bentley Systems, Incorporated. Bentley Descartes V8i (SELECTseries 3) Advancing Information Modeling For Intelligent Infrastructure

2011 Bentley Systems, Incorporated. Bentley Descartes V8i (SELECTseries 3) Advancing Information Modeling For Intelligent Infrastructure Bentley Descartes V8i (SELECTseries 3) Advancing Information Modeling For Intelligent Infrastructure What is Bentley Descartes? Image Processing Raster Geo-Referencing Advanced raster transformation (warping,

More information

THE DIGITAL ROCK ENGINEERING SYSTEM BASED ON 3D GIS TECHNOLOGY

THE DIGITAL ROCK ENGINEERING SYSTEM BASED ON 3D GIS TECHNOLOGY THE DIGITAL ROCK ENGINEERING SYSTEM BASED ON 3D GIS TECHNOLOGY Wu Defu a, Peng Pei a, Tor Yam Khoon a a School of Civil and Environmental Engineering, Nanyang Technological University, Singapore, 639798

More information

History in Spatial Databases

History in Spatial Databases History in Spatial Databases Henri J.G.L. Aalders Delft University of Technology, Department of Geodesy, the Netherlands Katholieke University Leuven, Faculty of Applied Sciences, Belgium Phone: 00-31-15-278

More information

BUILDING SPACE ANALYSIS FOR INTEGRATING DESIGN AND CONSTRUCTION

BUILDING SPACE ANALYSIS FOR INTEGRATING DESIGN AND CONSTRUCTION BUILDING SPACE ANALYSIS FOR INTEGRATING DESIGN AND CONSTRUCTION Che Wan Fadhil CHE WAN PUTRA 1 and Mustafa ALSHAWI 2 1 Faculty of Civil Eng., Univ. Teknologi Malaysia, 81310 UTM Skudai, Johor, Malaysia

More information

CityGML Experience: From Validation to Database Management. Kean Huat SOON, Eric LOW, Zhen Hao NG and Victor KHOO

CityGML Experience: From Validation to Database Management. Kean Huat SOON, Eric LOW, Zhen Hao NG and Victor KHOO Experience: From Validation to Database Management Kean Huat SOON, Eric LOW, Zhen Hao NG and Victor KHOO Outline : WOG 3D National Topographic Mapping Project Validation Process Management of Data in DBMS

More information

LECTURE 2 SPATIAL DATA MODELS

LECTURE 2 SPATIAL DATA MODELS LECTURE 2 SPATIAL DATA MODELS Computers and GIS cannot directly be applied to the real world: a data gathering step comes first. Digital computers operate in numbers and characters held internally as binary

More information