OPEN SOURCE SOFTWARE FOR GEOSCIENCES AT UNIVERSITY OF WEST BOHEMIA
|
|
|
- Steven Rogers
- 10 years ago
- Views:
Transcription
1 OPEN SOURCE SOFTWARE FOR GEOSCIENCES AT UNIVERSITY OF WEST BOHEMIA Bc. Josef Bezděk 1, Ing. Karel Jedlička 2, Ing. Jan Ježek 3, Ing. Jiří Petrák 4 Geomatic section of Department of Mathematics, Faculty of Applied Sciences, University of West Bohemia, Univerzitní 22, , Pilsen, Czech Republic. [email protected] 1, [email protected] 2, [email protected] 3, [email protected] 4 The 2 nd author was supported by the Research Plan MSM The 3 rd author was supported by the Google Summer of Code 2006, 2007 projects. Abstrakt. Geografické informační systémy (GIS) postavené na bázi free a open source software začaly být zejména v poslední době respektovaným způsobem řešení. Tento druh software také představuje vynikající příležitost pro univerzity, jak realizovat projekty, které nejsou přímým zájmem softwarových firem, ale které mohou být užitečné a mají potenciál být využívány širokou obcí uživatelů. Cílem toho příspěvku je popsat vývoj otevřeného software, do kterého je zapojeno oddělení Geomatiky na Západočeské Univerzitě v Plzni. Popsána bude obecná vývojářská infrastruktura a také stručná charakteristika dílčích projektů zaměřených na open source software na kterých v současnosti spolupracujeme. Jde o následující projekty: Transformace referenčních souřadnicových systémů pro GeoTools and udig (CRS), Delaunyho triangulace pro GeoTools (DiMoT), Geomorfologický informační systém (GmIS) a Otevřený katastr (OC). Klíčová slova: geografický informační systém, svobodný a otevřený software, vývoj. Abstract. Open source software for geosciences at the University of West Bohemia. Free and open source software for GIS has been becoming one of respected solutions in the recent years. This kind of software also represents an excellent opportunity for universities to realize projects which are not in area of interest of software companies, but which are helpful and usually often used by end users all around the world. The aim of this paper is to describe such a development that takes place at the University of West Bohemia in Pilsen (Department of Geomatics). Common development tools and procedures will be described as well as examples of projects that we are working on: Coordinate Reference System Transformations for GeoTools and udig (CRS), Delaunay Triangulation for GeoTools (DiMoT), Geomorphologic Information System (GmIS) and Open Cadastre (OC). Keywords: geographic information system, free and open source software, development. 1
2 1 Introduction The Open Source GIS software products include tools to fill every level of complex GIS stack. Existing products are now entering a phase of rapid refinement and enhancement, using the core software structures that are already in place. Open Source software can provide a feature-complete alternative to proprietary software in most system designs. There are also a lot of projects (dissertation, diploma and bachelor thesis) focused on software development that take place on section for Geomatics (see more in Geomatics 2007a) at the University of West Bohemia (see UWB 2007 for more). We decided to publish these projects under Open Source licenses (most often based on GPL or LGPL see GNU 2007) and also to use Open Source practices during the working on these projects. Our motivation to do this is: To get interested students involved in Open Source as much as possible and to encourage them in such activities. To learn also related practices in software development projects (tools of software engineering). To take software development seriously and to build infrastructure for maintaing and sharing students work across longer period and to wider audience. 2 Technical infrastructure for software development Free software projects rely on technologies that support the selective capture and integration of information. The more skilled you are at using these technologies, and at persuading others to use them, the more successful your project will be. This only becomes more true as the project grows, Fogel Main tools that help us to establish development infrastructure are solved in these ways: Web site we use MediaWiki (see MediaWiki 2007 for more) engine. Currently hosted at Wiki based sites enables collaborative approach for creation and maintenance. Version Control each project has its own version control mechanism. Most of them are using Subversion (see SVN 2007 for more) engine hosted at our department server. Bug tracking to track the working progress we are going to use some of common bug tracking tool. The final decision of concrete tool hasn't been made yet. Mailing list communication forum of the project and also the "medium of record." Real-time chat quick and lightweight discussion. Usually not archived completely. However we have to admire that our projects are not yet so huge so it is not necessary to use all of these tools. The meaning of using it consists in learning how to exploit them and also to take even small development project seriously from the scratch. Nowadays we typically maintain documentation of a project at wiki based web pages and develop source codes using support of Subversion software. Our teams are still small, thus it is not necessary to use official mailing lists or real time chats, but the environment is set up for using it in the future. 3 Description of concrete projects We can generally divide software projects into two types: standalone applications and extensions to already existing open source or proprietary software products. Even if some of subsequently presented projects can be understood as a standalone application, the final goal 2
3 is usually to incorporate them into large projects (see details bellow). Next chapters introduce four projects which have been initially involved into the open source software development at the University of West Bohemia at the server Projects are introduced in alphabetical order. 3.1 Coordinate reference system transformations for GeoTools and udig The main goal of this project is to extend current state of GeoTools library (see GeoTools 2007 for more) especially its referencing module, by set of functions to enable precise transformations with respect to specific needs of reference systems used in the Czech Republic. This project can be divided into two parts. One part of the work is extending the GeoTools library and the other presents the user interface for such functionality that is being realized through udig plug-in (see udig 2007 for more). In more details - this project adds other algorithms for coordinate system transformations that help to calculate transformation coefficients and apply various kind of coordinate system transformations (linear as well as warping methods) and also to make a simple GUI for udig to apply these new functions (the example of can be seen at the figure 1). All these functions are made with respect to the specific needs of coordinate system transformation used in the Czech Republic (especially the transformation from local system S-JTSK and WGS-84). Fig. 1. Plug-in for applying transformations the example of warp function. Adopted from udig,
4 This project brings the following functionality: Math Transform Builders that let users to calculate various kinds of transformations from known control points. It is possible to calculate constants for these methods: Linear transformation (similar, affine, projective, bursa wolf) using least square method. Warping transformations based on interpolated grid of shifts (similar to NADCON transformation as described in NADCON 2007). These grid can be calculated using various kinds of interpolation (inverse distance weighted, thin plate spline). Peace vise method also known as Rubber Sheeting. This method combines triangulation and affine transformation. Simple GUI realized as udig plug-in that let users to calculate and apply described methods. First draft of this plug-in is available from udig community update site. For details how to install this plug-in see udig The project is being developed together with partners from CTU Prague (Faculty of Civil Engineering, Department Mapping and Cartography). This work was sponsored by the Google Summer of Code (see Google 2007 for more) project during the summer year 2006 as well as Detailed description can be found in Geomatics 2007b. 3.2 Delaunay Triangulation for GeoTools Fig. 2. Standalone GUI for demonstrating the calculation of TIN using fixed edges (the black ones). Adopted from Bezděk The aim of this project is to implement the tool for building TIN (Triangulated Irregular Network) complaint with Delaunay criterion with strong emphasis on algorithm optimalization and robustness. The work is conceived as an extension to GeoTools library. The project is closely related to bachelor thesis (see Bezděk 2007 for more) of Josef Bezděk, 4
5 which was focused on description and usage of GeoTools library. This project enables following functionality: Generate the TIN from an input point layer (each point consist of a set of XY coordinates). Generate the TIN from an input point layer and another layer which consist of fixed edges that must to be kept after triangulation (see fig. 2). The next work of the project is focused to use the TIN as a source for generating isolines. 3.3 Geomorphologic Information System The Geomorphologic Information System (GmIS) is a special type of Geographic Information System (GIS), which can be helpful to geomorphologist in various situations in research. It can be understood as a specific type of GIS, focused on geomorphologic data. GmIS provides useful geomorphologic tools and techniques, which can be used in various situations. First is a field survey, where GmIS can work as a mobile GIS solution for data collection. Next necessary activity is to store the collected data to the structure of geomorphologic database (GmDB). GmDB consist of both collected data and other fundamental data (topography, geology, hydrology, etc.). But the core of its functionality is in geomorphologic analysis, where GmIS can offer efficient geomorphologic tools (GmT) to process geomorphologic methods in computer environment. Last but not least it of course can serve tools for presentation of created outputs, such maps, graphs, etc. Fig. 3. Early version of GmIS plugged in ArcGIS. Adopted from Mentlík et al The GmIS is a system technologically based on ESRI technologies. It consists of a Geomorphologic Database (GmDB) and Geomorphologic Tools (GmT) whose can handle 5
6 (collect, process, analyze, present) data stored there. It can be understood as a plug-in to ESRI software ArcGIS. The GmIS plug-in is published and distributed under the General Public License (GPL). Of course that ESRI products are not included, they have their own licensing. The GPL applies only on a source code developed by the GmIS team. Geomorphologic information system (GmIS) is being developed in a team of professional geomorphologists and geoinformatics from the Commenius University in Bratislava and the University of West Bohemia in Pilsen. The team described the GmIS visions in Minár et al. 2005, Mentlík et al. 2006, Jedlička 2007 and Jedlička Open Cadastre Open Cadastre (OC) is a project which is dealing to create an open source interface to data of real estate in the Czech Republic. The realization consists of development of couple tools. The first toolset is used for import of real estate data from specifically formatted text exchange format to spatial database PostGIS. Next tools are used for the data publishing, using UMN MapServer technology. Crucial is the way of real estate attribute information acquisition that is necessary for the Ownership Certificate construction (see fig 4). The project solves Czech real estate data, thus the further documentation is in Czech language only. Fig. 4. OC Ownership certificate (in Czech only). Green outlines show the tables necessary to query to get the result. Adopted from Petrák The Open Cadastre takes advantage of following open source technologies: Python for scripting, PostgreSQL and its spatial extension PostGIS for data storage, UMN MapServer, PHP and of course HTML for data publishing. Source codes of tools which have been 6
7 developed can are maintained by Subversion (SVN) and are available at Open Cadastre is being developed in a team containing of professional geomaticians and students of the University of West Bohemia in Pilsen. The team described the Open Cadastre mainly in Petrák 2007 and Jedlička, Ježek and Petrák Acknowledgement The introduced software developments are supported by following research activities: Coordinate Reference System transformation for GeoTools and udig (CRS) Google Summer of Code 2006, Google Summer of Code Geomorphologic Information System (GmIS) Research Plan MSM , Czech-Slovak project of AIP no. 116: GmIS as a base of environmental applications. Open Cadastre (OC) ) Research Plan MSM Conclusion The open source software focused on geosciences has grown a lot in recent the years and it has been proved that it presents alternative solutions that must be seriously taken into account. We see it as very important to get interested students involved not just as passive users but also to give them an opportunity to look deeper behind the user level of open source. By taking their software development projects seriously from the beginning, we expect to get better control and overview on working progress especially in longer time period and in this way we wish to establish better collaborative environment as well. Centralizing the projects information into one wiki web site also should bring us better dissemination of results of already running projects. Reference 1. BEZDĚK, J GeoTools (The open source Java GIS Toolkit) - implementace Delaunayovy triangulace. Bakalářská práce. Plzeň : Západočeská univerzita. Fakulta aplikovaných věd. [on-line] < 2. FOGEL, K Producing Open Source Software. O'Reilly GEOMATICS. 2007a. Section of Geomatics at UWB home page. [on-line] < 4. GEOMATICS. 2007b. Geomatics. [on-line] < Open source projects home page. 5. GEOTOOLS GeoTools community. GeoTools home page. [on-line] < 6. GNU LPGL home page, GNU site. [on-line] < 7. GOOGLE Google Summer of Code home page. [on-line] < 8. JEDLIČKA, K Geomorfologický informační systém. Teze disertační práce. Ostrava: Technická univerzita Ostrava. 7
8 9. JEDLIČKA, K Geomorfologic information system a concept and use cases. Sympozium GIS Ostrava Ostrava : VŠB TUO. In press. 10. JEDLIČKA, J., JEŽEK, J., PETRÁK, J Otevřený katastr - svobodné internetové řešení pro prohlížení dat výměnného formátu katastru nemovitostí. Geoinformatics FCE CTU Praha : ČVUT. In press. [on-line] < _svobodn%c3%a9_internetov%c3%a9_%c5%99e%c5%a1en%c3%ad_pro_prohl% C3%AD%C5%BEen%C3%AD_dat_v%C3%BDm%C4%9Bnn%C3%A9ho_form%C3% A1tu_katastru_nemovitost%C3%AD>. 11. MEDIAWIKI MediaWiki community home page. [on-line] < 12. MENTLÍK, P., JEDLIČKA, K., MINÁR, J., BARKA, I Geomorphological information system: physical model and options of geomorphological analysis. In Geografie. year 111, no 1., pages MINÁR, J., MENTLÍK, P., JEDLIČKA, K. BARKA, I Geomorphological information system: idea and options for practical implementation. In Geografický časopis. Year 57, no 3, pages , ISSN NADCON NADCON home page. [on-line] < 15. PETRÁK, J Open source mapový server pro data katastru nemovitostí. Plzeň : Západočeská univerzita. Fakulta aplikovaných věd. 57 p. [on-line] < Open_source_mapovy_server_p ro_data_kn DP.pdf>. 16. SVN Subversion community home page. [on-line] < 17. UDIG udig community. udig home page. [on-line] < 18. UWB University of West Bohemia homepage. [on-line] < 8
GEO-RELATED OPEN SOURCE SOFTWARE DEVELOPMENT AT UNIVERSITY OF WEST BOHEMIA
GEO-RELATED OPEN SOURCE SOFTWARE DEVELOPMENT AT UNIVERSITY OF WEST BOHEMIA Karel Jedlička, Jan Ježek Ing. Karel Jedlička ([email protected]), Ing. Jan Ježek ([email protected]) University of West Bohemia,
ADVANCED DATA STRUCTURES FOR SURFACE STORAGE
1Department of Mathematics, Univerzitni Karel, Faculty 22, JANECKA1, 323 of 00, Applied Pilsen, Michal, Sciences, Czech KARA2 Republic University of West Bohemia, ADVANCED DATA STRUCTURES FOR SURFACE STORAGE
Master Specialization in Digital Design: Design and Programming of Embedded Systems
Master Specialization in Digital Design: Design and Programming of Embedded Systems Jan Schmidt, Ph.D. Department of Digital Design Faculty of Information Technology Czech Technical University in Prague
KEY WORDS: Geoinformatics, Geoinformation technique, Remote Sensing, Information technique, Curriculum, Surveyor.
CURRICULUM OF GEOINFORMATICS INTEGRATION OF REMOTE SENSING AND GEOGRAPHICAL INFORMATION TECHNOLOGY Kirsi VIRRANTAUS*, Henrik HAGGRÉN** Helsinki University of Technology, Finland Department of Surveying
Design/build and visualization of political and social-statistics. statistics geodatabase by open source tools
Design/build and visualization of political and social-statistics statistics geodatabase by open source tools Ferenc Speiser Post-graduate distance learning course in Geoinformatics Contents The goals
An Introduction to Open Source Geospatial Tools
An Introduction to Open Source Geospatial Tools by Tyler Mitchell, author of Web Mapping Illustrated GRSS would like to thank Mr. Mitchell for this tutorial. Geospatial technologies come in many forms,
SUMMER SCHOOL ON ADVANCES IN GIS
SUMMER SCHOOL ON ADVANCES IN GIS Six Workshops Overview The workshop sequence at the UMD Center for Geospatial Information Science is designed to provide a comprehensive overview of current state-of-the-art
Framework as a master tool in modern web development
Framework as a master tool in modern web development PETR DO, VOJTECH ONDRYHAL Communication and Information Systems Department University of Defence Kounicova 65, Brno, 662 10 CZECH REPUBLIC [email protected],
GEOENGINE MSc in Geomatics Engineering, Master Thesis Gina Campuzano
Master Thesis Gina CAMPUZANO Gina Campuzano Development of a GIS web application as a tool for learning of environmental protection -Comparison between MapServer and GeoServer constructing a tool for not
FREEDOM IN ADULT EDUCATION
FREEDOM IN ADULT EDUCATION Abstract The paper deals with the term freedom in the education environment. The author s attention is focused on the adult education. He attempts to specify his point of view
Web and Mobile GIS Applications Development
Web and Mobile GIS Applications Development Presented by : Aamir Ali Manager Section Head (GIS Software Customization) Pakistan Space and Upper Atmosphere Research Commission (SUPARCO) Geographical Information
Web Mapping in Archaeology
Non-invasive methods in the contemporary archaeological practice 25th February 2014 http://www.pborycki.pl/pdf/webmapping.pdf Plan of the presentation 1 Web Mapping General Idea History of Web Mapping
Development of 3D Cadastre System to Monitor Land Value and Capacity of Zoning (Case study: Tehran)
8 th International Congress on Advances in Civil Engineering, 15-17 September 2008 Eastern Mediterranean University, Famagusta, North Cyprus Development of 3D Cadastre System to Monitor Land Value and
Iraklis Karampourniotis, Zoi Arvanitidou, Ioannis Paraschakis. Using open source software in gis training and education
Iraklis Karampourniotis, Zoi Arvanitidou, Ioannis Paraschakis Using open source software in gis training and education Can open source be used? The question troubling us was Can Open Source Software be
METHODS OF GEOREFERENCING OLD MAPS ON THE EXAMPLE OF CZECH EARLY MAPS
CO-314 METHODS OF GEOREFERENCING OLD MAPS ON THE EXAMPLE OF CZECH EARLY MAPS CAJTHAML J. Czech Technical University in Prague, PRAGUE 6, CZECH REPUBLIC BACKGROUND AND OBJECTIVES Old maps are unique source
ŠTUDIJNÝ ODBOR PRIEMYSELNÉ INŽINIERSTVO NA VYSOKÝCH ŠKOLÁCH FIELD OF STUDY INDUSTRIAL ENGINEERING AT SCHOOLS OF HIGHER EDUCATION
ŠTUDIJNÝ ODBOR PRIEMYSELNÉ INŽINIERSTVO NA VYSOKÝCH ŠKOLÁCH FIELD OF STUDY INDUSTRIAL ENGINEERING AT SCHOOLS OF HIGHER EDUCATION Renáta TURISOVÁ Stela BESLEROVÁ Abstract This paper deals with the field
National critical geo infrastructure runs on open source database PostGIS
National critical geo infrastructure runs on open source database PostGIS TU Delft Geomatics Open Guest Lecture March 21st 2011 Thijs Brentjens Who am I? TU Delft MSc Geodetic Engineering (2004) Thesis:
Introduction to OSGeo and QGIS
Introduction to OSGeo and QGIS Arnulf Christl OSGeo President Emeritus ESTGIS Pühajärve, Estonia Arnulf Christl Geospatial Systems Architect OSGeo President Emeritus Director of the metaspatial Institute
Dr. Marco Hugentobler, Sourcepole Twitter: @sourcepole. QGIS from a geodata viewer to a GIS platform
QGIS from a geodata viewer to a GIS platform Dr. Marco Hugentobler, Sourcepole Twitter: @sourcepole QGIS > Open source desktop GIS > License: GNU GPL, Version 3 > Founded in 2002 by Gary Sherman > C++,
Ulyxes automatic deformation monitoring system
Ulyxes automatic deformation monitoring system Dániel Moka, Szonja Zemkó (Hungary) The CLGE Students Contest 2012 2013 Category: GIS and Mapping and Cadastre 1. Summary We live in a dynamic world. Buildings,
Lecture 8. Online GIS
Lecture 8 Online GIS Lecture 8: Outline I. Online GIS 1. Google Earth 2. MSN Live Maps II. Open Source GIS III. ArcGIS Server and the ESRI suite of online software utility options IV. Advanced Data Mining
Cloud application for water resources modeling. Faculty of Computer Science, University Goce Delcev Shtip, Republic of Macedonia
Cloud application for water resources modeling Assist. Prof. Dr. Blagoj Delipetrev 1, Assist. Prof. Dr. Marjan Delipetrev 2 1 Faculty of Computer Science, University Goce Delcev Shtip, Republic of Macedonia
Using open source software for the supervision and management of the water resource system of Athens
Using open source software for the supervision and management of the water resource system of Athens European Geosciences Union (EGU) General Assembly, Vienna, Austria, 22-27 April 2012 Session HS3.3:
Open Source GIS The Future?
Open Source GIS The Future? Daniel Morissette DM Solutions Group Inc. Open Source Licensing No licensing costs Unlimited rights to: Use the software View and analyse the source Copy, reuse in other systems
Training in Cartography: e-learning Courses in Thematic Cartography
Training in Cartography: e-learning Courses in Thematic Cartography Concepción Romera and Judith Sánchez National Atlas and Thematic Cartography Department ([email protected], [email protected]) National
A geospatial relational database schema for interdependent network analysis and modelling
A geospatial relational database schema for interdependent network analysis and modelling David Alderson *1, Stuart Barr 1, Tomas Holderness 2, Craig Robson^1, Alistair Ford #1 and Ruth Kennedy-Walker
County of Los Angeles. Chief Information Office Preferred Technologies for Geographic Information Systems (GIS) September 2014
County of Los Angeles Chief Information Office Preferred Technologies for Geographic Information Systems (GIS) September 2014 CIO Preferred Technologies for GIS This document lists the preferred Geographic
AUTOMATED CONFERENCE CD-ROM BUILDER AN OPEN SOURCE APPROACH Stefan Karastanev
International Journal "Information Technologies & Knowledge" Vol.5 / 2011 319 AUTOMATED CONFERENCE CD-ROM BUILDER AN OPEN SOURCE APPROACH Stefan Karastanev Abstract: This paper presents a new approach
AUDIO POINTER V2 JOYSTICK & CAMERA IN MATLAB
AUDIO POINTER V2 JOYSTICK & CAMERA IN MATLAB F. Rund Department of Radioelectronics, Faculty of Electrical Engineering, Czech Technical University in Prague, Czech Republic Abstract A virtual sound source
Otakar Čerba, Klára Brašnová
Cartographic Visualization of Temporal Aspect of Spatial Data Otakar Čerba, Klára Brašnová ABSTRACT: Data sets visualized by cartographic techniques have not only spatial aspects but also a temporal aspects
The State Land Cadastre of Belarus: Moving Forward
Permanent Committee on Cadastre in the European Union Plenary Meeting under Polish Presidency 21 22 November 2011, Warsaw, Poland The State Land Cadastre of Belarus: Moving Forward Anastasiya Kudryakova
CLIDATA In Ostrava 18/06/2013
CLIDATA In Ostrava 18/06/2013 Content Introduction...3 Structure of Clidata Application...4 Clidata Database...5 Rich Java Client...6 Oracle Discoverer...7 Web Client...8 Map Viewer...9 Clidata GIS and
Easy configuration of NETCONF devices
Easy configuration of NETCONF devices David Alexa 1 Tomas Cejka 2 FIT, CTU in Prague CESNET, a.l.e. Czech Republic Czech Republic [email protected] [email protected] Abstract. It is necessary for developers
Create a folder on your network drive called DEM. This is where data for the first part of this lesson will be stored.
In this lesson you will create a Digital Elevation Model (DEM). A DEM is a gridded array of elevations. In its raw form it is an ASCII, or text, file. First, you will interpolate elevations on a topographic
Institute of Natural Resources Departament of General Geology and Land use planning Work with a MAPS
Institute of Natural Resources Departament of General Geology and Land use planning Work with a MAPS Lecturers: Berchuk V.Y. Gutareva N.Y. Contents: 1. Qgis; 2. General information; 3. Qgis desktop; 4.
ARCHITECTURE OF INTEGRATED GIS AND GPS FOR VEHICLE MONITORING
1 st Logistics International Conference Belgrade, Serbia 28-30 November 2013 ARCHITECTURE OF INTEGRATED GIS AND GPS FOR VEHICLE MONITORING Adela B. Crnišanin * State University of Novi Pazar, Department
GEO-SPATIAL-TECHNOLOGIES", a trans-university new integrative master degree
GEO-SPATIAL-TECHNOLOGIES", a trans-university new integrative master degree Wolfgang Sulzer Institute for Geography and Regional Science University of Graz, Austria Heinrichstrasse 36 A-8010 Graz, Austria
THE STATUS OF GEOSPATIAL TRAINING IN TANZANIAN UNIVERSITIES
1 st Esri Eastern Africa Education UC Opening Session 17 September 2013 THE STATUS OF GEOSPATIAL TRAINING IN TANZANIAN UNIVERSITIES Dr. Job Asheri Chaula & Mr. Zakaria Ngereja School of Geospatial Sciences
COURSE CATALOGUE 2013/2014
COURSE CATALOGUE 2013/2014 Field: COMPUTER SCIENCE Programme: Master s Degree Programme in Advanced Programming and Databases Length of studies: 2 years (4 semesters) Number of ECTS Credits: 120 +20 for
IMPLEMENTATION OF QUALITY MANAGEMENT SYSTEM ACCORDING TO ISO 9001 AT VSB TECHNICAL UNIVERSITY OF OSTRAVA.
IMPLEMENTATION OF QUALITY MANAGEMENT SYSTEM ACCORDING TO ISO 9001 AT VSB TECHNICAL UNIVERSITY OF OSTRAVA. Milan Hutyra, quality manager, VSB Technical University of Ostrava, Czech Republic, e-mail: [email protected]
Andrea Bondì, Irene D Urso, Matteo Ombrelli e Paolo Telaroli (Thetis S.p.A.) Luisa Sterponi e Cesar Urrutia (Spacedat S.r.l.) Water Calesso (Marco
Generation of a digital elevation model of the Wadi Lebda basin, Leptis Magna - Lybia Andrea Bondì, Irene D Urso, Matteo Ombrelli e Paolo Telaroli (Thetis S.p.A.) Luisa Sterponi e Cesar Urrutia (Spacedat
(Geo)database and Data Management
(Geo)database and Data Management An introduction to the possibilities of a centralized (spatial) data storing and access as well as its data management constraints (GLOWA Volta Project) GLOWA Volta Project
DEVELOPING AND IMPLEMENTING MULTIUSER, FULLY RELATIONAL GIS DATABASE FOR DESKTOP SYSTEMS USING OPEN SOURCE TECHNOLOGIES
Geographia Technica, Vol. 10, Issue 2, 2015, pp 59 to 65 DEVELOPING AND IMPLEMENTING MULTIUSER, FULLY RELATIONAL GIS DATABASE FOR DESKTOP SYSTEMS USING OPEN SOURCE TECHNOLOGIES Zsolt MAGYARI-SÁSKA 1 ABSTRACT:
APPLICATION OF OPEN SOURCE/FREE SOFTWARE (R + GOOGLE EARTH) IN DESIGNING 2D GEODETIC CONTROL NETWORK
INTERNATIONAL SCIENTIFIC CONFERENCE AND XXIV MEETING OF SERBIAN SURVEYORS PROFESSIONAL PRACTICE AND EDUCATION IN GEODESY AND RELATED FIELDS 24-26, June 2011, Kladovo -,,Djerdap upon Danube, Serbia. APPLICATION
An Open Source SCADA Toolkit
An Open Source SCADA Toolkit Stanley A. Klein Open Secure Energy Control Systems, LLC (301) 565 4025 [email protected] This work was supported by the United States Department of Homeland Security Agenda
OPEN STANDARD WEB SERVICES FOR VISUALISATION OF TIME SERIES DATA OF FLOOD MODELS
OPEN STANDARD WEB SERVICES FOR VISUALISATION OF TIME SERIES DATA OF FLOOD MODELS Barend Köbben FRMRC RPA 7 Workshop visualisations and flow simulations as flood risk communication tools
OSGeo Web Mapping Typification: GeoMajas, Mapbender, MapFish and OpenLayers. Christoph Baudson Arnulf Christl FOSS4G 2010 Barcelona
OSGeo Web Mapping Typification: GeoMajas, Mapbender, MapFish and OpenLayers Christoph Baudson Arnulf Christl FOSS4G 2010 Barcelona Disclaimer All information contained in this presentation has been compiled
SA4 Software Developer Survey Survey Specification v2.2
Last updated: 30-06-2009 Activity: SA4 Dissemination Level: PP (Project Participants) Authors: Branko Marović (UoB/AMRES), Cezary Mazurek (PSNC), Gina Kramer (DANTE) Table of Contents 1 Introduction 1
GIS FOR SMALL MUNICIPALITIES
GIS FOR SMALL MUNICIPALITIES Irena OPATŘILOVÁ 1, Dalibor BARTONĚK 2 1 Institute of Geodesy, Faculty of Civil Engineering, Brno University of Technology, Veveří 95, 602 00, Brno, Czech Republic, [email protected]
Automated Model Based Testing for an Web Applications
Automated Model Based Testing for an Web Applications Agasarpa Mounica, Lokanadham Naidu Vadlamudi Abstract- As the development of web applications plays a major role in our day-to-day life. Modeling the
ArcGIS Viewer for Silverlight An Introduction
Esri International User Conference San Diego, California Technical Workshops July 26, 2012 ArcGIS Viewer for Silverlight An Introduction Rich Zwaap Agenda Background Product overview Getting started and
Implementation of information system to respond to a nuclear emergency affecting agriculture and food products - Case of Morocco
Centre National de l énergie des sciences et techniques nucléaires (CNESTEN-Morocco) Implementation of information system to respond to a nuclear emergency affecting agriculture and food products - Case
Intelligent Transport Systems
FULL-TIME MULTIPLE DEGREE PROGRAM IN ENGLISH MASTER S Intelligent > Technology is networking. FACHHOCHSCHULE TECHNIKUM WIEN CZECH TECHNICAL UNIVERSITY IN PRAGUE Intelligent Challenges in Transport The
On-campus and fully online distance learning Full-time and Part-time. www.ulster.ac.uk/es. PgCert/PgDip/MSc Geographic Information Systems (GIS)
PgCert/PgDip/MSc Geographic Information Systems (GIS) On-campus and fully online distance learning Full-time and Part-time PgCert/PgDip/MSc Geographic Information Systems (GIS) The Programme: In recent
Open Source tools for geospatial tasks
Open Source tools for geospatial tasks Some alternatives to commercial software packages ([email protected]) Graduate Student Department of Biology Dalhousie University Workshop on Inshore Ecosystems
ABSTRACT INTRODUCTION OVERVIEW OF POSTGRESQL AND POSTGIS SESUG 2012. Paper RI-14
SESUG 2012 Paper RI-14 Creating a Heatmap Visualization of 150 Million GPS Points on Roadway Maps via SAS Shih-Ching Wu, Virginia Tech Transportation Institute, Blacksburg, Virginia Shane McLaughlin, Virginia
Link Analysis Tool Design Description Final Version
Link Analysis Tool Design Description Final Version Doc. No.: Revision History Date Version Description Author 2010-10-08 1.0 Initial Draft Hassan Aziz Khan 2010-11-06 1.1 2 nd Draft Hassan Aziz Khan
3D Model of the City Using LiDAR and Visualization of Flood in Three-Dimension
3D Model of the City Using LiDAR and Visualization of Flood in Three-Dimension R.Queen Suraajini, Department of Civil Engineering, College of Engineering Guindy, Anna University, India, [email protected]
Open Source Software Communities - Lessons Learnt
1 Open Source Software Communities - Lessons Learnt Imed Hammouda, adjunct professor Alexander Lokhman, researcher Tampere University of Technology 25.2.2011 Open Source vs. Free Software 2 Free software
COMPREHENSIVE MATLAB TOOL FOR HRTF MEASUREMENT AND VIRTUAL AUDITORY SPACE TESTING
COMPREHENSIVE MATLAB TOOL FOR HRTF MEASUREMENT AND VIRTUAL AUDITORY SPACE TESTING F. Rund, J. Bouše, T. Baráth Department of Radioelectronics, Faculty of Electrical Engineering, Czech Technical University
Oklahoma s Open Source Spatial Data Clearinghouse: OKMaps
Oklahoma s Open Source Spatial Data Clearinghouse: OKMaps Presented by: Mike Sharp State Geographic Information Coordinator Oklahoma Office of Geographic Information MAGIC 2014 Symposium April 28-May1,
HydroDesktop Overview
HydroDesktop Overview 1. Initial Objectives HydroDesktop (formerly referred to as HIS Desktop) is a new component of the HIS project intended to address the problem of how to obtain, organize and manage
Appendix I: Module Descriptions
Appendix I: Module Descriptions Learning Outcomes AGI Propedeutics and Electives 856M11 18 ECTS Students are adjusting to the requirements of the MSc AGI programme based on their different first degrees.
OPEN SOURCE SOFTWARES IN BUILDING WEBGIS OF BUS INFORMATION SYSTEM.
OPEN SOURCE SOFTWARES IN BUILDING WEBGIS OF BUS INFORMATION SYSTEM. Duc Nguyen Huu 1 and Chon Le Trung 2 1 University of Resources and Environment, Ho Chi Minh City. Email: [email protected] 2 University
About As. In a team with the best. ESRI Bulgaria is the exclusive distributor of Esri Inc. for Bulgaria. Esri Inc.
About As ESRI Bulgaria is an IT company, leader in the field of Geographic Information Systems (GIS) on the Bulgarian market. Offering the most advanced high-tech products, solutions and services, ESRI
Methodology Framework for Analysis and Design of Business Intelligence Systems
Applied Mathematical Sciences, Vol. 7, 2013, no. 31, 1523-1528 HIKARI Ltd, www.m-hikari.com Methodology Framework for Analysis and Design of Business Intelligence Systems Martin Závodný Department of Information
Final Report - HydrometDB Belize s Climatic Database Management System. Executive Summary
Executive Summary Belize s HydrometDB is a Climatic Database Management System (CDMS) that allows easy integration of multiple sources of automatic and manual stations, data quality control procedures,
STATISTICAL DATA ANALYSIS COURSE VIA THE MATLAB WEB SERVER
STATISTICAL DATA ANALYSIS COURSE VIA THE MATLAB WEB SERVER Ale š LINKA Dept. of Textile Materials, TU Liberec Hálkova 6, 461 17 Liberec, Czech Republic e-mail: [email protected] Petr VOLF Dept. of Applied
Use of NASA World Wind Java SDK for Three-Dimensional Accessibility Visualization of Remote Areas in Lao P.D.R.
Use of NASA World Wind Java SDK for Three-Dimensional Accessibility Visualization of Remote Areas in Lao P.D.R. Adrian Weber 1, Andreas Heinimann 2, Peter Messerli 2 1 Institute of Cartography, ETH Zurich,
An Android based Quantum GIS prototype. Ramon Carrillo, Daniel Ochoa [email protected]
An Android based Quantum GIS prototype Ramon Carrillo, Daniel Ochoa [email protected] Summary Background Past works Quantum GIS Mobile Quantum GIS Results Future works Background Robotic and computer
Designing English Language Courses in Class Server
Theory and Practice in English Studies 3 (2005): Proceedings from the Eighth Conference of British, American and Canadian Studies. Brno: Masarykova univerzita Designing English Language Courses in Class
VOL. 2, NO. 1, January 2012 ISSN 2225-7217 ARPN Journal of Science and Technology 2010-2012 ARPN Journals. All rights reserved
Mobile Application for News and Interactive Services L. Ashwin Kumar Department of Information Technology, JNTU, Hyderabad, India [email protected] ABSTRACT In this paper, we describe the design and
Dr. Rob Donald - Curriculum Vitae. Email: [email protected], Web: http://www.statsresearch.co.uk Mob: 07780 650 910
Dr. Rob Donald - Curriculum Vitae Email: [email protected], Web: http://www.statsresearch.co.uk Mob: 07780 650 910 Profile Data Scientist, Systems and Data Analyst In my current role I am a senior
Investigating Hadoop for Large Spatiotemporal Processing Tasks
Investigating Hadoop for Large Spatiotemporal Processing Tasks David Strohschein [email protected] Stephen Mcdonald [email protected] Benjamin Lewis [email protected] Weihe
The Courses. Covering complete breadth of GIS technology from ESRI including ArcGIS, ArcGIS Server and ArcGIS Engine.
ESRI India: Corporate profile ESRI India A profile India s Premier GIS Company Strategic alliance between ESRI Inc. and NIIT Technologies Adjudged as India s Best GIS Solutions Company - Map India 2001
Visualisation in the Google Cloud
Visualisation in the Google Cloud by Kieran Barker, 1 School of Computing, Faculty of Engineering ABSTRACT Providing software as a service is an emerging trend in the computing world. This paper explores
gvsig: A GIS desktop solution for an open SDI.
gvsig: A GIS desktop solution for an open SDI. ALVARO ANGUIX1, LAURA DÍAZ1, MARIO CARRERA2 1 IVER Tecnologías de la Información. Valencia, Spain. Tel. +34 96 316 34 00; Fax. +34 96 316 34 00 Email: [email protected]
3D Model of Carbon Relief in the Czech Part of Upper Silesian Coal Basin
3D Model of Carbon Relief in the Czech Part of Upper Silesian Coal Basin Vladimír Mandrla Green Gas DPB, a.s. tř. Rudé armády 637 739 21, Paskov [email protected] Abstract. Coal mining in the Czech
SOFTWARE TESTING TRAINING COURSES CONTENTS
SOFTWARE TESTING TRAINING COURSES CONTENTS 1 Unit I Description Objectves Duration Contents Software Testing Fundamentals and Best Practices This training course will give basic understanding on software
Marketing tools to support university library s mission
Qualitative and Quantitative Methods in Libraries (QQML) 2: 205 2012, 2012 Marketing tools to support university library s mission Ilona Trtikova 1, 2 and Lenka Nemeckova 1, 2 1 Czech Technical University
Geography 676 Web Spatial Database Development and Programming
Geography 676 Web Spatial Database Development and Programming Instructor: Prof. Qunying Huang Office: 426 Science Hall Tel: 608-890-4946 E-mail: [email protected] Office Hours: T, R, and F 1:00-2:00 PM
ArcGIS 10.1 Geodatabase Administration. Gordon Sumerling & Christopher Brown
ArcGIS 10.1 Geodatabase Administration Gordon Sumerling & Christopher Brown Key Improvements at ArcGIS 10.1 1. Easier Administration through Graphic Interfaces 2. Greater Seamless integration with Open
How To Use Web Services In Matlab
WEB SERVICES BASED DATA ACQUISITION FROM A PROCESS DATABASE J. Cigler 1, J. Široký 2,3, M. Kulvejt 3, M. Chlupáč 3, D. Gyalistras 4 1 Department of Control Engineering, Faculty of Electrical Engineering,
Documentation and Project Organization
Documentation and Project Organization Software Engineering Workshop, December 5-6, 2005 Jan Beutel ETH Zürich, Institut TIK December 5, 2005 Overview Project Organization Specification Bug tracking/milestones
A Tool for Evaluation and Optimization of Web Application Performance
A Tool for Evaluation and Optimization of Web Application Performance Tomáš Černý 1 [email protected] Michael J. Donahoo 2 [email protected] Abstract: One of the main goals of web application
DATABASE OF SETTLEMENTS AND ITS USAGE FOR LOCALIZATION OF OLD MAPS
DATABASE OF SETTLEMENTS AND ITS USAGE FOR LOCALIZATION OF OLD MAPS Vaclav CADA 1, Karel JANECKA 1, 1 University of West Bohemia, Faculty of Applied Sciences Univerzitni 22, Pilsen, Czech Republic [email protected],
