SlideShare a Scribd company logo
1 of 74
도시건축설계와 GIS
Ph.D, Tae wook, kang. Senior Researcher, KICT
Interests – BIM, GIS, Interoperability
laputa99999@gmail.com www.facebook.com/laputa999
laputa99999@gmail.com
Introduce
Name - Tae Wook, Kang
Ph.D, Senior Research, ICT Lab, KICT
Email – laputa99999@gmail.com
Blog - https://sites.google.com/site/bimprinciple/
Interests – BIM, GIS, CAD, PLM, Interoperability
Specialty – Civil Engineering, Software Engineering
Books - BIM principle, BIM interoperability and platform, Civil BIM with Autodesk Civil3D, Collaborative Architecture
Design with BIM, BIM-based Facility Management, Smart Building System, Arduino-based Smart Home Automation
Experiences
BIM on GIS R&D (1, 2) Project, KICT
BIM-based Railway System Planning Project, MLIT
VDC Support System Development Planning Project, KICT
World Best Software BIM Modeler and Check Development, Ministry of Knowledge Economy (2012)
BIM Division Head Manager, Hangil IT (2011)
Adjunct Professor, Chung-Ang University (2010)
CONTENTS
3BIM on GIS
1Overview Lesson &
Learn
2Urban design
& GIS
1 Overview
laputa99999@gmail.com
GIS
Geographic information system
E. W. Gilbert's version (1958) of John Snow's 1855 map of the Soho cholera outbreak
showing the clusters of cholera cases in the London epidemic of 1854 (map analysis results
– relationship between cholera and water)
laputa99999@gmail.com
GIS
http://www.healthmap.org/ebola/#
laputa99999@gmail.com
GIS
Geographic information system
•Crime mapping
•Landscape Analysis
•Civil engineering
•Remote sensing applications
•Knowledge gis
•Public Participation GIS
•Road networking
•Wastewater and stormwater systems
•Waste management
Pedestrian zones
Incorporation of nature within a city
Aesthetics
Urban structure
Urban typology, density and sustainability
Accessibility
Legibility and wayfinding
Function and fit
Interaction between uses
Character and meaning between places
Order
Continuity and change considering culture
Civil society
Decision
Support
System
Brooklyn
laputa99999@gmail.com
GIS
http://www.oilandgasbmps.org/resources/gis.php
Decision support system
laputa99999@gmail.com
GIS
Crime mapping
visualize, and analyze crime incident patterns
laputa99999@gmail.com
GIS
Remote sensing application
Air photo of a military target used to
evaluate the effect of bombing
generating geographic information from satellite and airborne sensor data.
laputa99999@gmail.com
GIS
Landscape Analysis
www.esri.com
KICT & GAIA3D
Thornton North Structure Plan
(http://www.maitland.nsw.gov.au/Planning
Devel/CityStrategy/ThorntonNorthPlan)
Land use, visibility, DEM, Open space, Stormwater Drainage etc
laputa99999@gmail.com
GIS
P 12
precisionhawk.com precisionhawk.com
Riegl Announce Break-Through LiDAR Sensor Technology For UAVs (AU)
UAV & Lidar based
Remote survey
-Mine
-Gas
-Farm
…
Landscape Analysis
laputa99999@gmail.com
GIS
Spatial network analysis
various graph-based analysis of spatial networks
Goodchild on Spatial Analysis and GIS(www.csiss.org) www.esri.com
laputa99999@gmail.com
GIS
Fig. BIM Platform concept(BIM의 원리, 2011)
Civil engineering
Integrated Modeling
framework
Civil engineering
laputa99999@gmail.com
GIS
www.innovativegis.com
3D GIS
laputa99999@gmail.com
GIS
InteroperabilityBased on Web Cloud Computing
GIS Cloud System
laputa99999@gmail.com
GIS– google map / earth (video)
2 Urban design &
GIS
laputa99999@gmail.com
GIS
satellite image
aerial photograph
Paper map
Analysis
decoding
Scanning
decoding
Digitizing
Digitizing
Vectorizing
Thematic map
development
Properties Input administrative area map
Traffic map
Spatial DB
development
DEM
Vegetation map
Weather map
River/Soil map
Topographical map
Survey
Topographic drawing
laputa99999@gmail.com
GIS database & data mining
RDBMS
http://en.wikipedia.org/wiki/Relational_model
laputa99999@gmail.com
GIS database & data mining
RDBMS
laputa99999@gmail.com
GIS database & data mining
Shapefile
.shp — shape format; the feature geometry
itself
.shx — shape index format; a positional index
of the feature geometry to allow seeking
forwards and backwards quickly
.dbf — attribute format; columnar attributes
for each shape, in dBase IV format
http://en.wikipedia.org/wiki/Shapefile
Yu Xia, Bisong Hu ,
Spatial Buffer Query for Geospatial Database
laputa99999@gmail.com
GIS database & data mining
Vector / Raster
Spatial Analysis Using ArcGIS 10
laputa99999@gmail.com
GIS database & data mining
DEM delaunay triangulation
en.wikipedia.org/wiki
laputa99999@gmail.com
GIS database & data mining
DEM
en.wikipedia.org/wiki
laputa99999@gmail.com
GIS database & data mining
Shapefile
http://en.wikipedia.org/wiki/Shapefile
laputa99999@gmail.com
GIS database & data mining
Shapefile
http://en.wikipedia.org/wiki/Shapefile
laputa99999@gmail.com
GIS database & data mining
Arcgis
Yu Xia, Bisong Hu ,
Spatial Buffer Query for Geospatial Database
laputa99999@gmail.com
GIS database & data mining
ETL & Data mining
https://str.llnl.gov/str/Kamath.html
laputa99999@gmail.com
GIS database & data mining
ETL & Data mining
Data mining, betterevaluation.org
laputa99999@gmail.com
GIS database & data mining
ETL & Data mining
Requirement definition
Data selection
Data pre-processing
Data conversion
Data mining model
Knowledge representation
docs.oracle.com
laputa99999@gmail.com
GIS database & data mining
ETL & Data mining
semanticommunity.info/Data_Science/Data_Science_Symposium_2013
laputa99999@gmail.com
GIS database & data mining
Query
http://manual.linfiniti.com/en/postgis/spatial_queries.html
CREATE VIEW vw_select_location AS
SELECT a.gid, a.name, a.the_geom FROM
building a, region b WHERE
WITHIN(a.the_geom, b.the_geom) AND
b.name = 'KwaZulu';
laputa99999@gmail.com
GIS database & data mining
Query
http://manual.linfiniti.com/en/postgis/spatial_queries.html
CREATE VIEW vw_hokkaido_buffer AS SELECT gid
, ST_BUFFER(the_geom, 100) as the_geom FROM
region WHERE name = 'Hokkaido';
This creates a buffer of 100 meters around the
region Hokkaido.
laputa99999@gmail.com
GIS database & data mining
Query
http://manual.linfiniti.com/en/postgis/spatial_queries.html
CREATE VIEW vw_hokkaido_buffer_select AS SEL
ECT b.gid, b.name, b.the_geom FROM ( SELECT *
FROM vw_hokkaido_buffer ) a, region b WHERE
ST_INTERSECTS(a.the_geom, b.the_geom) AND b
.name != 'Hokkaido';
the original buffer view is used as any other table wo
uld be. It is given the alias a, and its geometry field,a.
the_geom, is used to select any polygon in the regio
n table (alias b) that intersects it.
laputa99999@gmail.com
GIS database & data mining
Automation
http://www.qgis.nl/tag/tips1/?lang=en
Layers.Add(new Layer(“City.tiff”), new Style(“Gray.xml”))
Layers.Add(new Layer(“Traffic.shp”))
Layers.Add(new Layer(“People.shp”, “Properties.dbf”))
…
R = Query(“SELECT * FROM BUFFER(VIEW_GEOM, 100)”)
Layers.Add(new Layer(R))
…
laputa99999@gmail.com
GIS Coordination system
(박희구, 2014.1, QGIS Tutorial, Gaia3D)
[전지구 좌표계]
WGS84 경위도
• EPSG:4326, EPSG:4166 (Korean 1995): +proj=longlat +ellps=WGS84 +datum=WGS84 +no_defs
Bessel 1841 경위도
• EPSG:4004, EPSG:4162 (Korean 1985): +proj=longlat +ellps=bessel +no_defs +towgs84=-115.80,474.99,674.11,1.16,-2.31,-1.63,
6.43
GRS80 경위도
• EPSG:4019, EPSG:4737 (Korean 2000): +proj=longlat +ellps=GRS80 +no_defs
Google Mercator, 구글지도/빙지도/야후지도/OSM 등 에서 사용중인 좌표계
• EPSG:900913(통칭), EPSG:3857(공식): +proj=merc +a=6378137 +b=6378137 +lat_ts=0.0 +lon_0=0.0 +x_0=0.0 +y_0=0 +k=1.0 +
units=m +nadgrids=@null +no_defs
www.gpspassion.com
Universal Transverse Mercator (en.wikipedia.org)
laputa99999@gmail.com
GIS tools
http://en.wikipedia.org/wiki/Comparison_of_geographic_information_systems_software
laputa99999@gmail.com
GIS tools
Hundreds of tools for performing spatial analysis are included in ArcGIS
With support for more than 70 data formats
Manipulate data with a minimum number of clicks and automate your editing workflow
with powerful editing tools
With geocoded addresses, you can display the address locations and see patterns
within the information
Initial release
December 27, 1999; 15 years ago
laputa99999@gmail.com
GIS tools
Spatial ETL
Extract, Transform, Load (ETL) software
laputa99999@gmail.com
GIS tools
Spatial ETL
GeoKettle is a “spatially-enabled” version of Pentaho Data Integration (also known as
Kettle).
laputa99999@gmail.com
GIS tools
OpenGeo Suite Architecture (boundlessgeo.com)
GeoExt is built on top of
the robust OpenLayers
JavaScript mapping library
and the rich graphical
components of ExtJS.
GeoWebCache is a Java web application
used to cache map tiles coming from a
variety of sources such as OGC Web Map
Service (WMS) including Google Maps KML.
allows users to share and edit geospatial data.
PostGIS provides spatial objects for the
PostgreSQL database,
Open soucre GIS
laputa99999@gmail.com
GIS tools
QGIS
A Free and Open Source Geographic Information System
http://www.qgis.org/
laputa99999@gmail.com
GIS tools
OpenLayers
is an open source (provided under the 2-clause BSD License[2]) JavaScript library for
displaying map data in web browsers.
laputa99999@gmail.com
GIS tools
OpenLayers
laputa99999@gmail.com
GIS tools
GeoServer
GeoServer is an open source software server written in Java that allows users to share and
edit geospatial data. Designed for interoperability, it publishes data from any major spatial
data source using open standards.
GeoServer is the reference implementation of the Open Geospatial Consortium (OGC)
Web Feature Service (WFS) and Web Coverage Service (WCS) standards, as well as a high
performance certified compliant Web Map Service (WMS).
GeoServer Archives (boundlessgeo.com)
laputa99999@gmail.com
GIS tools
www.cartography.at
laputa99999@gmail.com
GIS tools
PostGIS
a spatial database extender for PostgreSQL object-relational database. It adds support
for geographic objects allowing location queries to be run in SQL.
SELECT superhero.name FROM city, superhero WHERE
ST_Contains(city.geom, superhero.geom) AND city.name = 'Gotham';
PostgreSQL, often simply "Postgres", is an object-relational database management
system (ORDBMS) with an emphasis on extensibility and standards-compliance
SELECT first_name,
last_name,
email
FROM customer;
http://www.postgresqltutorial.com/
PostgreSQL
laputa99999@gmail.com
GIS tools
Civil 3D
InRoad
laputa99999@gmail.com
GIS tools
ONOMABIM
system
ONUMACloud system
ONUMAGIS system
(Googleearth plugin 제공)
BIMXML
(ONUMA BIM 표준 파일 포맷)
OGC GIS-BIM 포맷
(OGCGIS/BIM상호운용 포맷)
ONUMAModel 서버
모델 Import / Export
(IFC, Revit , Archicad , BIMXML, KMZ …)
Report 생성기
Javascript 기반 UI
SaaS
(Web serivce Open API 지원)
ONUMA플랫폼
BIM Bomb
-폭발해석 시뮬레이션 응용프
로그램
-Archicad 에너지 해석 결과 시
뮬레이터 기반
VR system
- FMS, BEMS 프로그램
- VROS 기반 프로그램
ONUMA
Exchange
-프로젝트 협업 프
로그램
모델 쿼리 엔진
(조건에 의한 모델 정보 쿼리 및 생성 엔진)
Auotomaiton
using IFC, Revit , Archicad plugin
ONUMA
laputa99999@gmail.com
GIS tools - ONUMA (video)
laputa99999@gmail.com
GIS tools
Natural Earth is a public domain map dataset available at 1:10 million (1 cm = 100 km), 1:50
million, and 1:110 million map scales
laputa99999@gmail.com
Open source community
FOSS4G - Free Open Source Software for Geo-Spatial
FOSS4G-2014, Asian Institute of Technology,
Thailand. 112 participants from 18 countries
www.oslandia.com/retour-sur-le-foss4g-2013-
partie-3.html
3 BIM on GIS
laputa99999@gmail.com
BIM on GIS Use-cases
To describe the requirement. identifying common use-cases between BIM and GIS
GIS
Use-cases
BIM
Use-cases
Common
Use-cases
BIM-GIS based FM in KICT
Fig. KICT buildings and FM documents
KICT FM office
manages 3 Sites and 24
Buildings in one site.
laputa99999@gmail.com
BIM on GIS platform requirement for KICT FM
SELECT * FROM Alignment, Building WHERE Buffer(Alignment, Building, ‘1km’) AND
Building.Pset(‘FM’).PCI < ‘50%’ ORDERBY Building.Pset(‘FM’).PCI
BIM (ex - IFC)GIS (ex - CityGML)
SELECT * FROM Building, Pipe WHERE Overlap(Pipe, Building,
‘1m’) AND Building.Pset(‘FM’).Owner = ‘LH’
…
•Geographic Data Model
But
•No Detailed Building FM
Data
•Rich Data Model
But
•No LOD
•No Perspective Definition Method to define the
needed FM application data for user viewpoint
laputa99999@gmail.com
BIM on GIS interview results in KICT FM
Owner
FM Office
Work Site
FM Documents
Archive
MIS (Management
Information System)
1. Defect Confirmed
2. Request Maintenance
3. Verify defect
4. Check
construction/ma-
intenance history
5. Check location/structure/history of the
construction/maintenance (using
blueprints))
6. Draft work
plans
FM
Subcontractors
7. Request cost estimation
11. Deliver cost estimation
12. Examine cost
estimation
13. Request
operation
commencement
approval
14. Send approval
15. Request company-
contracted work
8. Perform site
verification of the
company
16. Perform
maintenance18. Submit product and results
before and after maintenance 17. Check status
before and after
maintenance
22. Request
expense
sanction
19. Confirm the results of maintenance on site
23. Approve payment
and register the
historical record
20. Renew blueprints,
documents, and historical
records
DB DB
24. Send notification of maintenance result
21. Request payment
9. Request site
operation related
data
10. Deliver
relevant data
25. Authorize payment
RequestPlace / System
Data
Acquisition
Repetitive Work
User
Worker
Facility
Manager
Administrative Manager
Archive
Manager
Actor
Self-
execution
In KICT FM, there are 25 activities
from the FM issue arise to resolve.
Minimum FM data acquisition
repetitive number in legacy system
= 28
laputa99999@gmail.com
BIM on GIS interview responses in KICT FM
BIM-
based FM
Work Site
MIS
(Management
Information System)
1. Defect Confirmed
2. Request Maintenance
3. Verify defect
4. Check construction/maintenance
history using BIM-based FM system
5. Check location/structure/history of
the construction/maintenance
6. Draft work plans
FM
Subcontractors7. Request cost estimation
11. Deliver cost estimation
12. Examine cost estimation
13. Request operation
commencement approval 14. Send approval
15. Request company-
contracted work
8. Perform site
verification of
the company
16. Perform
maintenance
18. Submit product and results
before and after maintenance
17. Check status
before and after
maintenance
22. Request expense sanction
19. Confirm the results of maintenance on site
23. Approve payment
and register the
historical record
20. Renew blueprints, documents,
and historical records
DB
24. Send notification of maintenance result
21. Request payment
9. Request site
operation related
data
10. Deliver relevant data
25. Authorize payment
User
WorkerFacility
Manager
Administrative Manager
FM DBMS
RequestPlace / System
Data
Acquisition
Repetitive Work
Actor
Self-
execution
Underlined tasks which can be
replaced as BIM-based FM work to
improve the effectiveness
BIM DB
Item Traditional FM work scenario BIM-based FM work scenario Improvement
Minimum Repetitive Number 28 = 15 + 5 × 2 + (1 × 3) 21 = 15 + 5 × 1 + 1 25%
Minimum FM data acquisition repetitive
number in legacy system = 21
laputa99999@gmail.com
BIM on GIS
•Seamless BIM-GIS information rendering and exchange
http://www.youtube.com/watch?v=-kSDCYWMRQg
laputa99999@gmail.com
Case study : Data Query using BIM on GIS-based Platform (video)
Prototype version
laputa99999@gmail.com
GIS standard
Fig. IFC (http://www.iai-tech.org/)
IfcProject – Activity to make product
IfcProcess – Process and activity in project
IfcResource – Used resource object definition in process
IfcActor – Human resource definition in process
IfcProduct – Physical representation object
IfcControl – Control object
IfcGroup – Object set
Kernel
3개 기본 확장 패키지
5개 AEC/FM 공통 패키지
AEC/FM 도메인별 9개의 패키지
26개의 리소스 패키지
IFC2x3
Building
Oriented
Format
IFC4
GIS CRS
NURBS
…
but
Heavy
Complex
Ambiguous
laputa99999@gmail.com
GIS standard
•Developed by OGC
•Open 3D urban object model for interoperability(ISO TC211)
•Shape, material, feature information support
•Focusing city Infrastructure object model
•Model abstraction support(LOD)Version 2.0
CityGML
GIS Oriented
Format
LOD
Features
But
Detailed
Building
Information?
laputa99999@gmail.com
GIS standard
•Developed by Autodesk & US DOT EAS-E
•Integrated as LandGML(Geography Markup Language) in OGC(Open Geospatial
Consortium, 1994)
•Civil engineering Industry Standard
•Engineering object(DTM, Alignment, Profile, X-section etc) model support
•Open API SDK and converter(ex - LandXML to SVG) support
DTM surface(Autodesk Civil 3D)
Schema 1.2
(2008.8)
IHSDM(Interactive Highway Safety Design Model , FHWA )
laputa99999@gmail.com
GIS standard
Parameter set
Civil engineering
object
Detailed object
information
related to civil
engineering
ex - superelevation
LandXML
Civil
Engineering
Oriented
Format
But
Detailed
Building
Information?
GIS Topology
Element?
laputa99999@gmail.com
GIS standard
Item IFC LandXML CityGML
Use Architecture Engineering
3D urban object
representation
Limitation
Architectural Object
Model
No asset information
BIM & engineering
information shortage
Development BuildingSmart Autodesk OGC
Characteristic
Detailed arhictectural
element / material /
parameter set
Civil engineering
information
representation
GIS object information
representation as LOD
Support object
Product, Process,
Organization object(ex
- Wall, Door, Beam,
Relationship etc.)
Digital Terrain model,
Alignment, Profile, X-
Section, superelevation
etc.
CityModel, Abstact
Building, Tin, Road,
Surfaces(ex - Wall,
Floor) etc.
Format STEP, XML XML GML
Issue based on file format specification
• Information usage viewpoint dependency
• Performance(ex - Heavy size)
• Commercial product compatibility
Lesson & Learn
laputa99999@gmail.com
opportunities
Open source initiative
laputa99999@gmail.com
opportunities
Open source-based GIS contents generation Drone, Balloon, LiDAR, Stereo camera, RGB-D
Open source-based modeling tools
Tango project (google)
Cloud
Compare
laputa99999@gmail.com
opportunities
BUSINESS opportunities using
Cloud-based GIS
laputa99999@gmail.com
opportunities
Urban design for client
laputa99999@gmail.com
opportunities
SMART Building & City
- Facility Management & Operation
ONUMA systems
commons.wikimedia.org
laputa99999@gmail.com
opportunities
SMART Building & City
- Facility Management & Operation
GSA Vision for Smart Buildings
laputa99999@gmail.com
Opportunities – smart building / city
프레젠테이션 주제Thanks for your interest
Tae Wook, Kang(www.facebook.com/laputa999)

More Related Content

What's hot

OpenWebGlobe - GeoSharing Bern
OpenWebGlobe - GeoSharing BernOpenWebGlobe - GeoSharing Bern
OpenWebGlobe - GeoSharing BernMartin Christen
 
Spatial Computing and the Future of Utility GIS
Spatial Computing and the Future of Utility GISSpatial Computing and the Future of Utility GIS
Spatial Computing and the Future of Utility GISGeorge Percivall
 
High Performance Computing for Satellite Image Processing and Analyzing – A ...
High Performance Computing for Satellite Image  Processing and Analyzing – A ...High Performance Computing for Satellite Image  Processing and Analyzing – A ...
High Performance Computing for Satellite Image Processing and Analyzing – A ...Editor IJCATR
 
PPP methods and geodetic usage
PPP methods and geodetic usagePPP methods and geodetic usage
PPP methods and geodetic usageQust04
 
Amin tayyebi: Big Data and Land Use Change Science
Amin tayyebi: Big Data and Land Use Change ScienceAmin tayyebi: Big Data and Land Use Change Science
Amin tayyebi: Big Data and Land Use Change Scienceknowdiff
 
Modified Resource Google Presentation
Modified Resource Google PresentationModified Resource Google Presentation
Modified Resource Google PresentationWilliam Worford
 
A cost-effective GPS-aided autonomous guided vehicle for global path planning
A cost-effective GPS-aided autonomous guided vehicle for global path planningA cost-effective GPS-aided autonomous guided vehicle for global path planning
A cost-effective GPS-aided autonomous guided vehicle for global path planningjournalBEEI
 
Foss4 g 2017-kansai-ryoo-kim
Foss4 g 2017-kansai-ryoo-kimFoss4 g 2017-kansai-ryoo-kim
Foss4 g 2017-kansai-ryoo-kimOSgeo Japan
 
A visualization-oriented 3D method for efficient computation of urban solar r...
A visualization-oriented 3D method for efficient computation of urban solar r...A visualization-oriented 3D method for efficient computation of urban solar r...
A visualization-oriented 3D method for efficient computation of urban solar r...Jianming Liang
 
3D WebGIS using Opensource software
3D WebGIS using Opensource software3D WebGIS using Opensource software
3D WebGIS using Opensource softwareParthesh Bulbule
 
Web Mapping with Drupal
Web Mapping with DrupalWeb Mapping with Drupal
Web Mapping with DrupalRanel Padon
 
Paradigm Shift of Geospatial Information Service
Paradigm Shift of Geospatial Information ServiceParadigm Shift of Geospatial Information Service
Paradigm Shift of Geospatial Information ServiceSANGHEE SHIN
 
Mago3D - An innovative AEC/GIS integration platform that can service millions...
Mago3D - An innovative AEC/GIS integration platform that can service millions...Mago3D - An innovative AEC/GIS integration platform that can service millions...
Mago3D - An innovative AEC/GIS integration platform that can service millions...SANGHEE SHIN
 
an-open-source-3d-solar-radiation-model-integrated-with-a-3d-geographic-infor...
an-open-source-3d-solar-radiation-model-integrated-with-a-3d-geographic-infor...an-open-source-3d-solar-radiation-model-integrated-with-a-3d-geographic-infor...
an-open-source-3d-solar-radiation-model-integrated-with-a-3d-geographic-infor...Jianming Liang
 
satellite image processing
satellite image processingsatellite image processing
satellite image processingavhadlaxmikant
 
Introduction of MAGO3D
Introduction of MAGO3DIntroduction of MAGO3D
Introduction of MAGO3DSANGHEE SHIN
 
Google map tutorials
Google map tutorialsGoogle map tutorials
Google map tutorialsZreena
 

What's hot (19)

Ijetcas14 474
Ijetcas14 474Ijetcas14 474
Ijetcas14 474
 
OpenWebGlobe - GeoSharing Bern
OpenWebGlobe - GeoSharing BernOpenWebGlobe - GeoSharing Bern
OpenWebGlobe - GeoSharing Bern
 
Spatial Computing and the Future of Utility GIS
Spatial Computing and the Future of Utility GISSpatial Computing and the Future of Utility GIS
Spatial Computing and the Future of Utility GIS
 
High Performance Computing for Satellite Image Processing and Analyzing – A ...
High Performance Computing for Satellite Image  Processing and Analyzing – A ...High Performance Computing for Satellite Image  Processing and Analyzing – A ...
High Performance Computing for Satellite Image Processing and Analyzing – A ...
 
PPP methods and geodetic usage
PPP methods and geodetic usagePPP methods and geodetic usage
PPP methods and geodetic usage
 
Amin tayyebi: Big Data and Land Use Change Science
Amin tayyebi: Big Data and Land Use Change ScienceAmin tayyebi: Big Data and Land Use Change Science
Amin tayyebi: Big Data and Land Use Change Science
 
Modified Resource Google Presentation
Modified Resource Google PresentationModified Resource Google Presentation
Modified Resource Google Presentation
 
A cost-effective GPS-aided autonomous guided vehicle for global path planning
A cost-effective GPS-aided autonomous guided vehicle for global path planningA cost-effective GPS-aided autonomous guided vehicle for global path planning
A cost-effective GPS-aided autonomous guided vehicle for global path planning
 
Foss4 g 2017-kansai-ryoo-kim
Foss4 g 2017-kansai-ryoo-kimFoss4 g 2017-kansai-ryoo-kim
Foss4 g 2017-kansai-ryoo-kim
 
A visualization-oriented 3D method for efficient computation of urban solar r...
A visualization-oriented 3D method for efficient computation of urban solar r...A visualization-oriented 3D method for efficient computation of urban solar r...
A visualization-oriented 3D method for efficient computation of urban solar r...
 
3D WebGIS using Opensource software
3D WebGIS using Opensource software3D WebGIS using Opensource software
3D WebGIS using Opensource software
 
Web Mapping with Drupal
Web Mapping with DrupalWeb Mapping with Drupal
Web Mapping with Drupal
 
Paradigm Shift of Geospatial Information Service
Paradigm Shift of Geospatial Information ServiceParadigm Shift of Geospatial Information Service
Paradigm Shift of Geospatial Information Service
 
Mago3D - An innovative AEC/GIS integration platform that can service millions...
Mago3D - An innovative AEC/GIS integration platform that can service millions...Mago3D - An innovative AEC/GIS integration platform that can service millions...
Mago3D - An innovative AEC/GIS integration platform that can service millions...
 
an-open-source-3d-solar-radiation-model-integrated-with-a-3d-geographic-infor...
an-open-source-3d-solar-radiation-model-integrated-with-a-3d-geographic-infor...an-open-source-3d-solar-radiation-model-integrated-with-a-3d-geographic-infor...
an-open-source-3d-solar-radiation-model-integrated-with-a-3d-geographic-infor...
 
satellite image processing
satellite image processingsatellite image processing
satellite image processing
 
Smart city and gis
Smart city and gisSmart city and gis
Smart city and gis
 
Introduction of MAGO3D
Introduction of MAGO3DIntroduction of MAGO3D
Introduction of MAGO3D
 
Google map tutorials
Google map tutorialsGoogle map tutorials
Google map tutorials
 

Viewers also liked

오픈소스 GIS 동향과 활용사례
오픈소스 GIS 동향과 활용사례오픈소스 GIS 동향과 활용사례
오픈소스 GIS 동향과 활용사례SANGHEE SHIN
 
Port of Halifax presentation
Port of Halifax presentation Port of Halifax presentation
Port of Halifax presentation Halifax_Gateway
 
Safety Meeting Starter (SMS) Jan 2013
Safety Meeting Starter (SMS) Jan 2013Safety Meeting Starter (SMS) Jan 2013
Safety Meeting Starter (SMS) Jan 2013safestrat
 
Holding the Key
Holding the KeyHolding the Key
Holding the KeyMakala (D)
 
Grace of Mother Nature.
Grace of Mother Nature.Grace of Mother Nature.
Grace of Mother Nature.Makala (D)
 
15 years of IP Web Portal history and what next?
15 years of IP Web Portal history and what next?15 years of IP Web Portal history and what next?
15 years of IP Web Portal history and what next?design_reuse
 
Preach preaching semminar
Preach  preaching semminarPreach  preaching semminar
Preach preaching semminarRoger Hernandez
 
Georgia- Ana and Mina
Georgia- Ana and MinaGeorgia- Ana and Mina
Georgia- Ana and Minaklei8103
 
Community building lessons from Ansible
Community building lessons from AnsibleCommunity building lessons from Ansible
Community building lessons from AnsibleGreg DeKoenigsberg
 
Recipes OnDemand
Recipes OnDemandRecipes OnDemand
Recipes OnDemandsudderth1
 
Bab 1 sejarah & kita
Bab 1 sejarah & kitaBab 1 sejarah & kita
Bab 1 sejarah & kitaNur Atizza
 
Kyangunyi villa
Kyangunyi villaKyangunyi villa
Kyangunyi villamemusimak
 

Viewers also liked (19)

오픈소스 GIS 동향과 활용사례
오픈소스 GIS 동향과 활용사례오픈소스 GIS 동향과 활용사례
오픈소스 GIS 동향과 활용사례
 
Ai ed
Ai edAi ed
Ai ed
 
Port of Halifax presentation
Port of Halifax presentation Port of Halifax presentation
Port of Halifax presentation
 
Safety Meeting Starter (SMS) Jan 2013
Safety Meeting Starter (SMS) Jan 2013Safety Meeting Starter (SMS) Jan 2013
Safety Meeting Starter (SMS) Jan 2013
 
Holding the Key
Holding the KeyHolding the Key
Holding the Key
 
Grace of Mother Nature.
Grace of Mother Nature.Grace of Mother Nature.
Grace of Mother Nature.
 
Researchss
ResearchssResearchss
Researchss
 
15 years of IP Web Portal history and what next?
15 years of IP Web Portal history and what next?15 years of IP Web Portal history and what next?
15 years of IP Web Portal history and what next?
 
Preach preaching semminar
Preach  preaching semminarPreach  preaching semminar
Preach preaching semminar
 
Importance of time
Importance of timeImportance of time
Importance of time
 
Georgia- Ana and Mina
Georgia- Ana and MinaGeorgia- Ana and Mina
Georgia- Ana and Mina
 
Community building lessons from Ansible
Community building lessons from AnsibleCommunity building lessons from Ansible
Community building lessons from Ansible
 
Visas italia
Visas italiaVisas italia
Visas italia
 
Mas in kaart
Mas in kaartMas in kaart
Mas in kaart
 
Recipes OnDemand
Recipes OnDemandRecipes OnDemand
Recipes OnDemand
 
Presentation1
Presentation1Presentation1
Presentation1
 
Bab 1 sejarah & kita
Bab 1 sejarah & kitaBab 1 sejarah & kita
Bab 1 sejarah & kita
 
Young Adult Ministry
Young Adult MinistryYoung Adult Ministry
Young Adult Ministry
 
Kyangunyi villa
Kyangunyi villaKyangunyi villa
Kyangunyi villa
 

Similar to 도시건축설계와 오픈소스 기반 GIS

Case Study about BIM on GIS platform development project with the standard model
Case Study about BIM on GIS platform development project with the standard modelCase Study about BIM on GIS platform development project with the standard model
Case Study about BIM on GIS platform development project with the standard modelTae wook kang
 
Introduction to mago3D, an Open Source Based Digital Twin Platform
Introduction to mago3D, an Open Source Based Digital Twin PlatformIntroduction to mago3D, an Open Source Based Digital Twin Platform
Introduction to mago3D, an Open Source Based Digital Twin PlatformSANGHEE SHIN
 
Bring Cartography to the Cloud
Bring Cartography to the CloudBring Cartography to the Cloud
Bring Cartography to the CloudNick Dimiduk
 
mago3D: A brand new Geo-BIM platform on top of Cesium & World Wind
mago3D: A brand new Geo-BIM platform on top of Cesium & World Wind mago3D: A brand new Geo-BIM platform on top of Cesium & World Wind
mago3D: A brand new Geo-BIM platform on top of Cesium & World Wind SANGHEE SHIN
 
Current State of mago3D, an Open Source Based Digital Twin Platform
Current State of mago3D, an Open Source Based Digital Twin PlatformCurrent State of mago3D, an Open Source Based Digital Twin Platform
Current State of mago3D, an Open Source Based Digital Twin PlatformSANGHEE SHIN
 
State of mago3D, An Open Source Based Digital Twin Platform
State of mago3D, An Open Source Based Digital Twin PlatformState of mago3D, An Open Source Based Digital Twin Platform
State of mago3D, An Open Source Based Digital Twin PlatformSANGHEE SHIN
 
Processing Geospatial at Scale at LocationTech
Processing Geospatial at Scale at LocationTechProcessing Geospatial at Scale at LocationTech
Processing Geospatial at Scale at LocationTechRob Emanuele
 
Golden Age of Geospatial Data Science
Golden Age of Geospatial Data ScienceGolden Age of Geospatial Data Science
Golden Age of Geospatial Data ScienceGeorge Percivall
 
OGC Update for State of Geospatial Tech at T-Rex
OGC Update for State of Geospatial Tech at T-RexOGC Update for State of Geospatial Tech at T-Rex
OGC Update for State of Geospatial Tech at T-RexGeorge Percivall
 
Developing Spatial Applications with Google Maps and CARTO
Developing Spatial Applications with Google Maps and CARTODeveloping Spatial Applications with Google Maps and CARTO
Developing Spatial Applications with Google Maps and CARTOCARTO
 
GIS in the Rockies Geospatial Revolution
GIS in the Rockies Geospatial RevolutionGIS in the Rockies Geospatial Revolution
GIS in the Rockies Geospatial RevolutionPeter Batty
 
Design and Development of BIM on GIS Interoperability Open Platform
Design and Development of BIM on GIS Interoperability Open PlatformDesign and Development of BIM on GIS Interoperability Open Platform
Design and Development of BIM on GIS Interoperability Open Platformslhead1
 
Free GIS Resources
Free GIS ResourcesFree GIS Resources
Free GIS Resourcesrutlandrpc
 
Scaling Spatial Analytics with Google Cloud & CARTO
Scaling Spatial Analytics with Google Cloud & CARTOScaling Spatial Analytics with Google Cloud & CARTO
Scaling Spatial Analytics with Google Cloud & CARTOCARTO
 
What we've done so far with mago3D, an open source based 'Digital Twin' platf...
What we've done so far with mago3D, an open source based 'Digital Twin' platf...What we've done so far with mago3D, an open source based 'Digital Twin' platf...
What we've done so far with mago3D, an open source based 'Digital Twin' platf...SANGHEE SHIN
 
NCGIC The Geospatial Revolution
NCGIC The Geospatial RevolutionNCGIC The Geospatial Revolution
NCGIC The Geospatial RevolutionPeter Batty
 
Introduction to mago3D: A Web Based Open Source GeoBIM Platform
Introduction to mago3D: A Web Based Open Source GeoBIM PlatformIntroduction to mago3D: A Web Based Open Source GeoBIM Platform
Introduction to mago3D: A Web Based Open Source GeoBIM PlatformSANGHEE SHIN
 
mago3D - A Brand-New Live 3D Geo-Platform
mago3D - A Brand-New Live 3D Geo-Platform mago3D - A Brand-New Live 3D Geo-Platform
mago3D - A Brand-New Live 3D Geo-Platform SANGHEE SHIN
 

Similar to 도시건축설계와 오픈소스 기반 GIS (20)

Case Study about BIM on GIS platform development project with the standard model
Case Study about BIM on GIS platform development project with the standard modelCase Study about BIM on GIS platform development project with the standard model
Case Study about BIM on GIS platform development project with the standard model
 
Introduction to mago3D, an Open Source Based Digital Twin Platform
Introduction to mago3D, an Open Source Based Digital Twin PlatformIntroduction to mago3D, an Open Source Based Digital Twin Platform
Introduction to mago3D, an Open Source Based Digital Twin Platform
 
Bring Cartography to the Cloud
Bring Cartography to the CloudBring Cartography to the Cloud
Bring Cartography to the Cloud
 
mago3D: A brand new Geo-BIM platform on top of Cesium & World Wind
mago3D: A brand new Geo-BIM platform on top of Cesium & World Wind mago3D: A brand new Geo-BIM platform on top of Cesium & World Wind
mago3D: A brand new Geo-BIM platform on top of Cesium & World Wind
 
Current State of mago3D, an Open Source Based Digital Twin Platform
Current State of mago3D, an Open Source Based Digital Twin PlatformCurrent State of mago3D, an Open Source Based Digital Twin Platform
Current State of mago3D, an Open Source Based Digital Twin Platform
 
State of mago3D, An Open Source Based Digital Twin Platform
State of mago3D, An Open Source Based Digital Twin PlatformState of mago3D, An Open Source Based Digital Twin Platform
State of mago3D, An Open Source Based Digital Twin Platform
 
Processing Geospatial at Scale at LocationTech
Processing Geospatial at Scale at LocationTechProcessing Geospatial at Scale at LocationTech
Processing Geospatial at Scale at LocationTech
 
Golden Age of Geospatial Data Science
Golden Age of Geospatial Data ScienceGolden Age of Geospatial Data Science
Golden Age of Geospatial Data Science
 
QGIS training class 3
QGIS training class 3QGIS training class 3
QGIS training class 3
 
OGC Update for State of Geospatial Tech at T-Rex
OGC Update for State of Geospatial Tech at T-RexOGC Update for State of Geospatial Tech at T-Rex
OGC Update for State of Geospatial Tech at T-Rex
 
Developing Spatial Applications with Google Maps and CARTO
Developing Spatial Applications with Google Maps and CARTODeveloping Spatial Applications with Google Maps and CARTO
Developing Spatial Applications with Google Maps and CARTO
 
GIS in the Rockies Geospatial Revolution
GIS in the Rockies Geospatial RevolutionGIS in the Rockies Geospatial Revolution
GIS in the Rockies Geospatial Revolution
 
Design and Development of BIM on GIS Interoperability Open Platform
Design and Development of BIM on GIS Interoperability Open PlatformDesign and Development of BIM on GIS Interoperability Open Platform
Design and Development of BIM on GIS Interoperability Open Platform
 
QGIS training class 1
QGIS training class 1QGIS training class 1
QGIS training class 1
 
Free GIS Resources
Free GIS ResourcesFree GIS Resources
Free GIS Resources
 
Scaling Spatial Analytics with Google Cloud & CARTO
Scaling Spatial Analytics with Google Cloud & CARTOScaling Spatial Analytics with Google Cloud & CARTO
Scaling Spatial Analytics with Google Cloud & CARTO
 
What we've done so far with mago3D, an open source based 'Digital Twin' platf...
What we've done so far with mago3D, an open source based 'Digital Twin' platf...What we've done so far with mago3D, an open source based 'Digital Twin' platf...
What we've done so far with mago3D, an open source based 'Digital Twin' platf...
 
NCGIC The Geospatial Revolution
NCGIC The Geospatial RevolutionNCGIC The Geospatial Revolution
NCGIC The Geospatial Revolution
 
Introduction to mago3D: A Web Based Open Source GeoBIM Platform
Introduction to mago3D: A Web Based Open Source GeoBIM PlatformIntroduction to mago3D: A Web Based Open Source GeoBIM Platform
Introduction to mago3D: A Web Based Open Source GeoBIM Platform
 
mago3D - A Brand-New Live 3D Geo-Platform
mago3D - A Brand-New Live 3D Geo-Platform mago3D - A Brand-New Live 3D Geo-Platform
mago3D - A Brand-New Live 3D Geo-Platform
 

Recently uploaded

VIP Call Girls Service Kukatpally Hyderabad Call +91-8250192130
VIP Call Girls Service Kukatpally Hyderabad Call +91-8250192130VIP Call Girls Service Kukatpally Hyderabad Call +91-8250192130
VIP Call Girls Service Kukatpally Hyderabad Call +91-8250192130Suhani Kapoor
 
Kindergarten Assessment Questions Via LessonUp
Kindergarten Assessment Questions Via LessonUpKindergarten Assessment Questions Via LessonUp
Kindergarten Assessment Questions Via LessonUpmainac1
 
Cheap Rate Call girls Kalkaji 9205541914 shot 1500 night
Cheap Rate Call girls Kalkaji 9205541914 shot 1500 nightCheap Rate Call girls Kalkaji 9205541914 shot 1500 night
Cheap Rate Call girls Kalkaji 9205541914 shot 1500 nightDelhi Call girls
 
Dubai Call Girls Pro Domain O525547819 Call Girls Dubai Doux
Dubai Call Girls Pro Domain O525547819 Call Girls Dubai DouxDubai Call Girls Pro Domain O525547819 Call Girls Dubai Doux
Dubai Call Girls Pro Domain O525547819 Call Girls Dubai Douxkojalkojal131
 
Peaches App development presentation deck
Peaches App development presentation deckPeaches App development presentation deck
Peaches App development presentation decktbatkhuu1
 
CBD Belapur Individual Call Girls In 08976425520 Panvel Only Genuine Call Girls
CBD Belapur Individual Call Girls In 08976425520 Panvel Only Genuine Call GirlsCBD Belapur Individual Call Girls In 08976425520 Panvel Only Genuine Call Girls
CBD Belapur Individual Call Girls In 08976425520 Panvel Only Genuine Call Girlsmodelanjalisharma4
 
Cheap Rate ➥8448380779 ▻Call Girls In Iffco Chowk Gurgaon
Cheap Rate ➥8448380779 ▻Call Girls In Iffco Chowk GurgaonCheap Rate ➥8448380779 ▻Call Girls In Iffco Chowk Gurgaon
Cheap Rate ➥8448380779 ▻Call Girls In Iffco Chowk GurgaonDelhi Call girls
 
The_Canvas_of_Creative_Mastery_Newsletter_April_2024_Version.pdf
The_Canvas_of_Creative_Mastery_Newsletter_April_2024_Version.pdfThe_Canvas_of_Creative_Mastery_Newsletter_April_2024_Version.pdf
The_Canvas_of_Creative_Mastery_Newsletter_April_2024_Version.pdfAmirYakdi
 
SCRIP Lua HTTP PROGRACMACION PLC WECON CA
SCRIP Lua HTTP PROGRACMACION PLC  WECON CASCRIP Lua HTTP PROGRACMACION PLC  WECON CA
SCRIP Lua HTTP PROGRACMACION PLC WECON CANestorGamez6
 
VIP Call Girls Bhiwandi Ananya 8250192130 Independent Escort Service Bhiwandi
VIP Call Girls Bhiwandi Ananya 8250192130 Independent Escort Service BhiwandiVIP Call Girls Bhiwandi Ananya 8250192130 Independent Escort Service Bhiwandi
VIP Call Girls Bhiwandi Ananya 8250192130 Independent Escort Service BhiwandiSuhani Kapoor
 
DragonBall PowerPoint Template for demo.pptx
DragonBall PowerPoint Template for demo.pptxDragonBall PowerPoint Template for demo.pptx
DragonBall PowerPoint Template for demo.pptxmirandajeremy200221
 
AMBER GRAIN EMBROIDERY | Growing folklore elements | Root-based materials, w...
AMBER GRAIN EMBROIDERY | Growing folklore elements |  Root-based materials, w...AMBER GRAIN EMBROIDERY | Growing folklore elements |  Root-based materials, w...
AMBER GRAIN EMBROIDERY | Growing folklore elements | Root-based materials, w...BarusRa
 
Top Rated Pune Call Girls Koregaon Park ⟟ 6297143586 ⟟ Call Me For Genuine S...
Top Rated  Pune Call Girls Koregaon Park ⟟ 6297143586 ⟟ Call Me For Genuine S...Top Rated  Pune Call Girls Koregaon Park ⟟ 6297143586 ⟟ Call Me For Genuine S...
Top Rated Pune Call Girls Koregaon Park ⟟ 6297143586 ⟟ Call Me For Genuine S...Call Girls in Nagpur High Profile
 
(AISHA) Ambegaon Khurd Call Girls Just Call 7001035870 [ Cash on Delivery ] P...
(AISHA) Ambegaon Khurd Call Girls Just Call 7001035870 [ Cash on Delivery ] P...(AISHA) Ambegaon Khurd Call Girls Just Call 7001035870 [ Cash on Delivery ] P...
(AISHA) Ambegaon Khurd Call Girls Just Call 7001035870 [ Cash on Delivery ] P...ranjana rawat
 
VIP Russian Call Girls in Saharanpur Deepika 8250192130 Independent Escort Se...
VIP Russian Call Girls in Saharanpur Deepika 8250192130 Independent Escort Se...VIP Russian Call Girls in Saharanpur Deepika 8250192130 Independent Escort Se...
VIP Russian Call Girls in Saharanpur Deepika 8250192130 Independent Escort Se...Suhani Kapoor
 
The history of music videos a level presentation
The history of music videos a level presentationThe history of music videos a level presentation
The history of music videos a level presentationamedia6
 
Call Girls in Kalkaji Delhi 8264348440 call girls ❤️
Call Girls in Kalkaji Delhi 8264348440 call girls ❤️Call Girls in Kalkaji Delhi 8264348440 call girls ❤️
Call Girls in Kalkaji Delhi 8264348440 call girls ❤️soniya singh
 
Kurla Call Girls Pooja Nehwal📞 9892124323 ✅ Vashi Call Service Available Nea...
Kurla Call Girls Pooja Nehwal📞 9892124323 ✅  Vashi Call Service Available Nea...Kurla Call Girls Pooja Nehwal📞 9892124323 ✅  Vashi Call Service Available Nea...
Kurla Call Girls Pooja Nehwal📞 9892124323 ✅ Vashi Call Service Available Nea...Pooja Nehwal
 
Cosumer Willingness to Pay for Sustainable Bricks
Cosumer Willingness to Pay for Sustainable BricksCosumer Willingness to Pay for Sustainable Bricks
Cosumer Willingness to Pay for Sustainable Bricksabhishekparmar618
 

Recently uploaded (20)

VIP Call Girls Service Kukatpally Hyderabad Call +91-8250192130
VIP Call Girls Service Kukatpally Hyderabad Call +91-8250192130VIP Call Girls Service Kukatpally Hyderabad Call +91-8250192130
VIP Call Girls Service Kukatpally Hyderabad Call +91-8250192130
 
Kindergarten Assessment Questions Via LessonUp
Kindergarten Assessment Questions Via LessonUpKindergarten Assessment Questions Via LessonUp
Kindergarten Assessment Questions Via LessonUp
 
Cheap Rate Call girls Kalkaji 9205541914 shot 1500 night
Cheap Rate Call girls Kalkaji 9205541914 shot 1500 nightCheap Rate Call girls Kalkaji 9205541914 shot 1500 night
Cheap Rate Call girls Kalkaji 9205541914 shot 1500 night
 
Dubai Call Girls Pro Domain O525547819 Call Girls Dubai Doux
Dubai Call Girls Pro Domain O525547819 Call Girls Dubai DouxDubai Call Girls Pro Domain O525547819 Call Girls Dubai Doux
Dubai Call Girls Pro Domain O525547819 Call Girls Dubai Doux
 
Peaches App development presentation deck
Peaches App development presentation deckPeaches App development presentation deck
Peaches App development presentation deck
 
CBD Belapur Individual Call Girls In 08976425520 Panvel Only Genuine Call Girls
CBD Belapur Individual Call Girls In 08976425520 Panvel Only Genuine Call GirlsCBD Belapur Individual Call Girls In 08976425520 Panvel Only Genuine Call Girls
CBD Belapur Individual Call Girls In 08976425520 Panvel Only Genuine Call Girls
 
Cheap Rate ➥8448380779 ▻Call Girls In Iffco Chowk Gurgaon
Cheap Rate ➥8448380779 ▻Call Girls In Iffco Chowk GurgaonCheap Rate ➥8448380779 ▻Call Girls In Iffco Chowk Gurgaon
Cheap Rate ➥8448380779 ▻Call Girls In Iffco Chowk Gurgaon
 
The_Canvas_of_Creative_Mastery_Newsletter_April_2024_Version.pdf
The_Canvas_of_Creative_Mastery_Newsletter_April_2024_Version.pdfThe_Canvas_of_Creative_Mastery_Newsletter_April_2024_Version.pdf
The_Canvas_of_Creative_Mastery_Newsletter_April_2024_Version.pdf
 
SCRIP Lua HTTP PROGRACMACION PLC WECON CA
SCRIP Lua HTTP PROGRACMACION PLC  WECON CASCRIP Lua HTTP PROGRACMACION PLC  WECON CA
SCRIP Lua HTTP PROGRACMACION PLC WECON CA
 
VIP Call Girls Bhiwandi Ananya 8250192130 Independent Escort Service Bhiwandi
VIP Call Girls Bhiwandi Ananya 8250192130 Independent Escort Service BhiwandiVIP Call Girls Bhiwandi Ananya 8250192130 Independent Escort Service Bhiwandi
VIP Call Girls Bhiwandi Ananya 8250192130 Independent Escort Service Bhiwandi
 
DragonBall PowerPoint Template for demo.pptx
DragonBall PowerPoint Template for demo.pptxDragonBall PowerPoint Template for demo.pptx
DragonBall PowerPoint Template for demo.pptx
 
AMBER GRAIN EMBROIDERY | Growing folklore elements | Root-based materials, w...
AMBER GRAIN EMBROIDERY | Growing folklore elements |  Root-based materials, w...AMBER GRAIN EMBROIDERY | Growing folklore elements |  Root-based materials, w...
AMBER GRAIN EMBROIDERY | Growing folklore elements | Root-based materials, w...
 
Top Rated Pune Call Girls Koregaon Park ⟟ 6297143586 ⟟ Call Me For Genuine S...
Top Rated  Pune Call Girls Koregaon Park ⟟ 6297143586 ⟟ Call Me For Genuine S...Top Rated  Pune Call Girls Koregaon Park ⟟ 6297143586 ⟟ Call Me For Genuine S...
Top Rated Pune Call Girls Koregaon Park ⟟ 6297143586 ⟟ Call Me For Genuine S...
 
(AISHA) Ambegaon Khurd Call Girls Just Call 7001035870 [ Cash on Delivery ] P...
(AISHA) Ambegaon Khurd Call Girls Just Call 7001035870 [ Cash on Delivery ] P...(AISHA) Ambegaon Khurd Call Girls Just Call 7001035870 [ Cash on Delivery ] P...
(AISHA) Ambegaon Khurd Call Girls Just Call 7001035870 [ Cash on Delivery ] P...
 
VIP Russian Call Girls in Saharanpur Deepika 8250192130 Independent Escort Se...
VIP Russian Call Girls in Saharanpur Deepika 8250192130 Independent Escort Se...VIP Russian Call Girls in Saharanpur Deepika 8250192130 Independent Escort Se...
VIP Russian Call Girls in Saharanpur Deepika 8250192130 Independent Escort Se...
 
The history of music videos a level presentation
The history of music videos a level presentationThe history of music videos a level presentation
The history of music videos a level presentation
 
B. Smith. (Architectural Portfolio.).pdf
B. Smith. (Architectural Portfolio.).pdfB. Smith. (Architectural Portfolio.).pdf
B. Smith. (Architectural Portfolio.).pdf
 
Call Girls in Kalkaji Delhi 8264348440 call girls ❤️
Call Girls in Kalkaji Delhi 8264348440 call girls ❤️Call Girls in Kalkaji Delhi 8264348440 call girls ❤️
Call Girls in Kalkaji Delhi 8264348440 call girls ❤️
 
Kurla Call Girls Pooja Nehwal📞 9892124323 ✅ Vashi Call Service Available Nea...
Kurla Call Girls Pooja Nehwal📞 9892124323 ✅  Vashi Call Service Available Nea...Kurla Call Girls Pooja Nehwal📞 9892124323 ✅  Vashi Call Service Available Nea...
Kurla Call Girls Pooja Nehwal📞 9892124323 ✅ Vashi Call Service Available Nea...
 
Cosumer Willingness to Pay for Sustainable Bricks
Cosumer Willingness to Pay for Sustainable BricksCosumer Willingness to Pay for Sustainable Bricks
Cosumer Willingness to Pay for Sustainable Bricks
 

도시건축설계와 오픈소스 기반 GIS

  • 1. 도시건축설계와 GIS Ph.D, Tae wook, kang. Senior Researcher, KICT Interests – BIM, GIS, Interoperability laputa99999@gmail.com www.facebook.com/laputa999
  • 2. laputa99999@gmail.com Introduce Name - Tae Wook, Kang Ph.D, Senior Research, ICT Lab, KICT Email – laputa99999@gmail.com Blog - https://sites.google.com/site/bimprinciple/ Interests – BIM, GIS, CAD, PLM, Interoperability Specialty – Civil Engineering, Software Engineering Books - BIM principle, BIM interoperability and platform, Civil BIM with Autodesk Civil3D, Collaborative Architecture Design with BIM, BIM-based Facility Management, Smart Building System, Arduino-based Smart Home Automation Experiences BIM on GIS R&D (1, 2) Project, KICT BIM-based Railway System Planning Project, MLIT VDC Support System Development Planning Project, KICT World Best Software BIM Modeler and Check Development, Ministry of Knowledge Economy (2012) BIM Division Head Manager, Hangil IT (2011) Adjunct Professor, Chung-Ang University (2010)
  • 3. CONTENTS 3BIM on GIS 1Overview Lesson & Learn 2Urban design & GIS
  • 5. laputa99999@gmail.com GIS Geographic information system E. W. Gilbert's version (1958) of John Snow's 1855 map of the Soho cholera outbreak showing the clusters of cholera cases in the London epidemic of 1854 (map analysis results – relationship between cholera and water)
  • 7. laputa99999@gmail.com GIS Geographic information system •Crime mapping •Landscape Analysis •Civil engineering •Remote sensing applications •Knowledge gis •Public Participation GIS •Road networking •Wastewater and stormwater systems •Waste management Pedestrian zones Incorporation of nature within a city Aesthetics Urban structure Urban typology, density and sustainability Accessibility Legibility and wayfinding Function and fit Interaction between uses Character and meaning between places Order Continuity and change considering culture Civil society Decision Support System Brooklyn
  • 10. laputa99999@gmail.com GIS Remote sensing application Air photo of a military target used to evaluate the effect of bombing generating geographic information from satellite and airborne sensor data.
  • 11. laputa99999@gmail.com GIS Landscape Analysis www.esri.com KICT & GAIA3D Thornton North Structure Plan (http://www.maitland.nsw.gov.au/Planning Devel/CityStrategy/ThorntonNorthPlan) Land use, visibility, DEM, Open space, Stormwater Drainage etc
  • 12. laputa99999@gmail.com GIS P 12 precisionhawk.com precisionhawk.com Riegl Announce Break-Through LiDAR Sensor Technology For UAVs (AU) UAV & Lidar based Remote survey -Mine -Gas -Farm … Landscape Analysis
  • 13. laputa99999@gmail.com GIS Spatial network analysis various graph-based analysis of spatial networks Goodchild on Spatial Analysis and GIS(www.csiss.org) www.esri.com
  • 14. laputa99999@gmail.com GIS Fig. BIM Platform concept(BIM의 원리, 2011) Civil engineering Integrated Modeling framework Civil engineering
  • 16. laputa99999@gmail.com GIS InteroperabilityBased on Web Cloud Computing GIS Cloud System
  • 18. 2 Urban design & GIS
  • 19. laputa99999@gmail.com GIS satellite image aerial photograph Paper map Analysis decoding Scanning decoding Digitizing Digitizing Vectorizing Thematic map development Properties Input administrative area map Traffic map Spatial DB development DEM Vegetation map Weather map River/Soil map Topographical map Survey Topographic drawing
  • 20. laputa99999@gmail.com GIS database & data mining RDBMS http://en.wikipedia.org/wiki/Relational_model
  • 22. laputa99999@gmail.com GIS database & data mining Shapefile .shp — shape format; the feature geometry itself .shx — shape index format; a positional index of the feature geometry to allow seeking forwards and backwards quickly .dbf — attribute format; columnar attributes for each shape, in dBase IV format http://en.wikipedia.org/wiki/Shapefile Yu Xia, Bisong Hu , Spatial Buffer Query for Geospatial Database
  • 23. laputa99999@gmail.com GIS database & data mining Vector / Raster Spatial Analysis Using ArcGIS 10
  • 24. laputa99999@gmail.com GIS database & data mining DEM delaunay triangulation en.wikipedia.org/wiki
  • 25. laputa99999@gmail.com GIS database & data mining DEM en.wikipedia.org/wiki
  • 26. laputa99999@gmail.com GIS database & data mining Shapefile http://en.wikipedia.org/wiki/Shapefile
  • 27. laputa99999@gmail.com GIS database & data mining Shapefile http://en.wikipedia.org/wiki/Shapefile
  • 28. laputa99999@gmail.com GIS database & data mining Arcgis Yu Xia, Bisong Hu , Spatial Buffer Query for Geospatial Database
  • 29. laputa99999@gmail.com GIS database & data mining ETL & Data mining https://str.llnl.gov/str/Kamath.html
  • 30. laputa99999@gmail.com GIS database & data mining ETL & Data mining Data mining, betterevaluation.org
  • 31. laputa99999@gmail.com GIS database & data mining ETL & Data mining Requirement definition Data selection Data pre-processing Data conversion Data mining model Knowledge representation docs.oracle.com
  • 32. laputa99999@gmail.com GIS database & data mining ETL & Data mining semanticommunity.info/Data_Science/Data_Science_Symposium_2013
  • 33. laputa99999@gmail.com GIS database & data mining Query http://manual.linfiniti.com/en/postgis/spatial_queries.html CREATE VIEW vw_select_location AS SELECT a.gid, a.name, a.the_geom FROM building a, region b WHERE WITHIN(a.the_geom, b.the_geom) AND b.name = 'KwaZulu';
  • 34. laputa99999@gmail.com GIS database & data mining Query http://manual.linfiniti.com/en/postgis/spatial_queries.html CREATE VIEW vw_hokkaido_buffer AS SELECT gid , ST_BUFFER(the_geom, 100) as the_geom FROM region WHERE name = 'Hokkaido'; This creates a buffer of 100 meters around the region Hokkaido.
  • 35. laputa99999@gmail.com GIS database & data mining Query http://manual.linfiniti.com/en/postgis/spatial_queries.html CREATE VIEW vw_hokkaido_buffer_select AS SEL ECT b.gid, b.name, b.the_geom FROM ( SELECT * FROM vw_hokkaido_buffer ) a, region b WHERE ST_INTERSECTS(a.the_geom, b.the_geom) AND b .name != 'Hokkaido'; the original buffer view is used as any other table wo uld be. It is given the alias a, and its geometry field,a. the_geom, is used to select any polygon in the regio n table (alias b) that intersects it.
  • 36. laputa99999@gmail.com GIS database & data mining Automation http://www.qgis.nl/tag/tips1/?lang=en Layers.Add(new Layer(“City.tiff”), new Style(“Gray.xml”)) Layers.Add(new Layer(“Traffic.shp”)) Layers.Add(new Layer(“People.shp”, “Properties.dbf”)) … R = Query(“SELECT * FROM BUFFER(VIEW_GEOM, 100)”) Layers.Add(new Layer(R)) …
  • 37. laputa99999@gmail.com GIS Coordination system (박희구, 2014.1, QGIS Tutorial, Gaia3D) [전지구 좌표계] WGS84 경위도 • EPSG:4326, EPSG:4166 (Korean 1995): +proj=longlat +ellps=WGS84 +datum=WGS84 +no_defs Bessel 1841 경위도 • EPSG:4004, EPSG:4162 (Korean 1985): +proj=longlat +ellps=bessel +no_defs +towgs84=-115.80,474.99,674.11,1.16,-2.31,-1.63, 6.43 GRS80 경위도 • EPSG:4019, EPSG:4737 (Korean 2000): +proj=longlat +ellps=GRS80 +no_defs Google Mercator, 구글지도/빙지도/야후지도/OSM 등 에서 사용중인 좌표계 • EPSG:900913(통칭), EPSG:3857(공식): +proj=merc +a=6378137 +b=6378137 +lat_ts=0.0 +lon_0=0.0 +x_0=0.0 +y_0=0 +k=1.0 + units=m +nadgrids=@null +no_defs www.gpspassion.com Universal Transverse Mercator (en.wikipedia.org)
  • 39. laputa99999@gmail.com GIS tools Hundreds of tools for performing spatial analysis are included in ArcGIS With support for more than 70 data formats Manipulate data with a minimum number of clicks and automate your editing workflow with powerful editing tools With geocoded addresses, you can display the address locations and see patterns within the information Initial release December 27, 1999; 15 years ago
  • 41. laputa99999@gmail.com GIS tools Spatial ETL GeoKettle is a “spatially-enabled” version of Pentaho Data Integration (also known as Kettle).
  • 42. laputa99999@gmail.com GIS tools OpenGeo Suite Architecture (boundlessgeo.com) GeoExt is built on top of the robust OpenLayers JavaScript mapping library and the rich graphical components of ExtJS. GeoWebCache is a Java web application used to cache map tiles coming from a variety of sources such as OGC Web Map Service (WMS) including Google Maps KML. allows users to share and edit geospatial data. PostGIS provides spatial objects for the PostgreSQL database, Open soucre GIS
  • 43. laputa99999@gmail.com GIS tools QGIS A Free and Open Source Geographic Information System http://www.qgis.org/
  • 44. laputa99999@gmail.com GIS tools OpenLayers is an open source (provided under the 2-clause BSD License[2]) JavaScript library for displaying map data in web browsers.
  • 46. laputa99999@gmail.com GIS tools GeoServer GeoServer is an open source software server written in Java that allows users to share and edit geospatial data. Designed for interoperability, it publishes data from any major spatial data source using open standards. GeoServer is the reference implementation of the Open Geospatial Consortium (OGC) Web Feature Service (WFS) and Web Coverage Service (WCS) standards, as well as a high performance certified compliant Web Map Service (WMS). GeoServer Archives (boundlessgeo.com)
  • 48. laputa99999@gmail.com GIS tools PostGIS a spatial database extender for PostgreSQL object-relational database. It adds support for geographic objects allowing location queries to be run in SQL. SELECT superhero.name FROM city, superhero WHERE ST_Contains(city.geom, superhero.geom) AND city.name = 'Gotham'; PostgreSQL, often simply "Postgres", is an object-relational database management system (ORDBMS) with an emphasis on extensibility and standards-compliance SELECT first_name, last_name, email FROM customer; http://www.postgresqltutorial.com/ PostgreSQL
  • 50. laputa99999@gmail.com GIS tools ONOMABIM system ONUMACloud system ONUMAGIS system (Googleearth plugin 제공) BIMXML (ONUMA BIM 표준 파일 포맷) OGC GIS-BIM 포맷 (OGCGIS/BIM상호운용 포맷) ONUMAModel 서버 모델 Import / Export (IFC, Revit , Archicad , BIMXML, KMZ …) Report 생성기 Javascript 기반 UI SaaS (Web serivce Open API 지원) ONUMA플랫폼 BIM Bomb -폭발해석 시뮬레이션 응용프 로그램 -Archicad 에너지 해석 결과 시 뮬레이터 기반 VR system - FMS, BEMS 프로그램 - VROS 기반 프로그램 ONUMA Exchange -프로젝트 협업 프 로그램 모델 쿼리 엔진 (조건에 의한 모델 정보 쿼리 및 생성 엔진) Auotomaiton using IFC, Revit , Archicad plugin ONUMA
  • 52. laputa99999@gmail.com GIS tools Natural Earth is a public domain map dataset available at 1:10 million (1 cm = 100 km), 1:50 million, and 1:110 million map scales
  • 53. laputa99999@gmail.com Open source community FOSS4G - Free Open Source Software for Geo-Spatial FOSS4G-2014, Asian Institute of Technology, Thailand. 112 participants from 18 countries www.oslandia.com/retour-sur-le-foss4g-2013- partie-3.html
  • 54. 3 BIM on GIS
  • 55. laputa99999@gmail.com BIM on GIS Use-cases To describe the requirement. identifying common use-cases between BIM and GIS GIS Use-cases BIM Use-cases Common Use-cases BIM-GIS based FM in KICT Fig. KICT buildings and FM documents KICT FM office manages 3 Sites and 24 Buildings in one site.
  • 56. laputa99999@gmail.com BIM on GIS platform requirement for KICT FM SELECT * FROM Alignment, Building WHERE Buffer(Alignment, Building, ‘1km’) AND Building.Pset(‘FM’).PCI < ‘50%’ ORDERBY Building.Pset(‘FM’).PCI BIM (ex - IFC)GIS (ex - CityGML) SELECT * FROM Building, Pipe WHERE Overlap(Pipe, Building, ‘1m’) AND Building.Pset(‘FM’).Owner = ‘LH’ … •Geographic Data Model But •No Detailed Building FM Data •Rich Data Model But •No LOD •No Perspective Definition Method to define the needed FM application data for user viewpoint
  • 57. laputa99999@gmail.com BIM on GIS interview results in KICT FM Owner FM Office Work Site FM Documents Archive MIS (Management Information System) 1. Defect Confirmed 2. Request Maintenance 3. Verify defect 4. Check construction/ma- intenance history 5. Check location/structure/history of the construction/maintenance (using blueprints)) 6. Draft work plans FM Subcontractors 7. Request cost estimation 11. Deliver cost estimation 12. Examine cost estimation 13. Request operation commencement approval 14. Send approval 15. Request company- contracted work 8. Perform site verification of the company 16. Perform maintenance18. Submit product and results before and after maintenance 17. Check status before and after maintenance 22. Request expense sanction 19. Confirm the results of maintenance on site 23. Approve payment and register the historical record 20. Renew blueprints, documents, and historical records DB DB 24. Send notification of maintenance result 21. Request payment 9. Request site operation related data 10. Deliver relevant data 25. Authorize payment RequestPlace / System Data Acquisition Repetitive Work User Worker Facility Manager Administrative Manager Archive Manager Actor Self- execution In KICT FM, there are 25 activities from the FM issue arise to resolve. Minimum FM data acquisition repetitive number in legacy system = 28
  • 58. laputa99999@gmail.com BIM on GIS interview responses in KICT FM BIM- based FM Work Site MIS (Management Information System) 1. Defect Confirmed 2. Request Maintenance 3. Verify defect 4. Check construction/maintenance history using BIM-based FM system 5. Check location/structure/history of the construction/maintenance 6. Draft work plans FM Subcontractors7. Request cost estimation 11. Deliver cost estimation 12. Examine cost estimation 13. Request operation commencement approval 14. Send approval 15. Request company- contracted work 8. Perform site verification of the company 16. Perform maintenance 18. Submit product and results before and after maintenance 17. Check status before and after maintenance 22. Request expense sanction 19. Confirm the results of maintenance on site 23. Approve payment and register the historical record 20. Renew blueprints, documents, and historical records DB 24. Send notification of maintenance result 21. Request payment 9. Request site operation related data 10. Deliver relevant data 25. Authorize payment User WorkerFacility Manager Administrative Manager FM DBMS RequestPlace / System Data Acquisition Repetitive Work Actor Self- execution Underlined tasks which can be replaced as BIM-based FM work to improve the effectiveness BIM DB Item Traditional FM work scenario BIM-based FM work scenario Improvement Minimum Repetitive Number 28 = 15 + 5 × 2 + (1 × 3) 21 = 15 + 5 × 1 + 1 25% Minimum FM data acquisition repetitive number in legacy system = 21
  • 59. laputa99999@gmail.com BIM on GIS •Seamless BIM-GIS information rendering and exchange http://www.youtube.com/watch?v=-kSDCYWMRQg
  • 60. laputa99999@gmail.com Case study : Data Query using BIM on GIS-based Platform (video) Prototype version
  • 61. laputa99999@gmail.com GIS standard Fig. IFC (http://www.iai-tech.org/) IfcProject – Activity to make product IfcProcess – Process and activity in project IfcResource – Used resource object definition in process IfcActor – Human resource definition in process IfcProduct – Physical representation object IfcControl – Control object IfcGroup – Object set Kernel 3개 기본 확장 패키지 5개 AEC/FM 공통 패키지 AEC/FM 도메인별 9개의 패키지 26개의 리소스 패키지 IFC2x3 Building Oriented Format IFC4 GIS CRS NURBS … but Heavy Complex Ambiguous
  • 62. laputa99999@gmail.com GIS standard •Developed by OGC •Open 3D urban object model for interoperability(ISO TC211) •Shape, material, feature information support •Focusing city Infrastructure object model •Model abstraction support(LOD)Version 2.0 CityGML GIS Oriented Format LOD Features But Detailed Building Information?
  • 63. laputa99999@gmail.com GIS standard •Developed by Autodesk & US DOT EAS-E •Integrated as LandGML(Geography Markup Language) in OGC(Open Geospatial Consortium, 1994) •Civil engineering Industry Standard •Engineering object(DTM, Alignment, Profile, X-section etc) model support •Open API SDK and converter(ex - LandXML to SVG) support DTM surface(Autodesk Civil 3D) Schema 1.2 (2008.8) IHSDM(Interactive Highway Safety Design Model , FHWA )
  • 64. laputa99999@gmail.com GIS standard Parameter set Civil engineering object Detailed object information related to civil engineering ex - superelevation LandXML Civil Engineering Oriented Format But Detailed Building Information? GIS Topology Element?
  • 65. laputa99999@gmail.com GIS standard Item IFC LandXML CityGML Use Architecture Engineering 3D urban object representation Limitation Architectural Object Model No asset information BIM & engineering information shortage Development BuildingSmart Autodesk OGC Characteristic Detailed arhictectural element / material / parameter set Civil engineering information representation GIS object information representation as LOD Support object Product, Process, Organization object(ex - Wall, Door, Beam, Relationship etc.) Digital Terrain model, Alignment, Profile, X- Section, superelevation etc. CityModel, Abstact Building, Tin, Road, Surfaces(ex - Wall, Floor) etc. Format STEP, XML XML GML Issue based on file format specification • Information usage viewpoint dependency • Performance(ex - Heavy size) • Commercial product compatibility
  • 68. laputa99999@gmail.com opportunities Open source-based GIS contents generation Drone, Balloon, LiDAR, Stereo camera, RGB-D Open source-based modeling tools Tango project (google) Cloud Compare
  • 71. laputa99999@gmail.com opportunities SMART Building & City - Facility Management & Operation ONUMA systems commons.wikimedia.org
  • 72. laputa99999@gmail.com opportunities SMART Building & City - Facility Management & Operation GSA Vision for Smart Buildings
  • 74. 프레젠테이션 주제Thanks for your interest Tae Wook, Kang(www.facebook.com/laputa999)

Editor's Notes

  1. 이 프레젠테이션은 PowerPoint의 새로운 기능에 대해 안내하며, 슬라이드 쇼에서 가장 잘 보입니다. 이 슬라이드에서는 PowerPoint 2010에서 만드는 프레젠테이션에 대한 설명을 제공합니다. 더 많은 예제 서식 파일을 보려면 [파일] 탭을 클릭한 다음 [새로 만들기] 탭에서 [예제 서식 파일]을 클릭하십시오.
  2. 3~4장 ONUMA 무엇이며. – 웹기반 BIM Fusion 모델링 및 검토 솔류션 기능 – 키워드 위주로 LIST 장점 – 웹기반. 상호운용성(IFC, BIMXML, ARCGIS, REVIT, ARCHICAD…). 클라우드환경. 단점 – 단순한 모델링 및 검토만 가능. 속도.
  3. * schedule and plan (if there is issue about this plan, let me know that.) * 1. 2012.10.10 (wed) ~ 2012.10.11(thu) : BIM Forum (Seattle) 2. 2012.10.12 (fri) : Introduction of BIM R&D project in KICT. Introduction of BIM progress and projects in Korea. Learning about VDC scorecard and the philosophy related to it in CIFE. 3. 2012.10.15 (mon) : Discussion about BIM maturity model and assessment framework for developing BIM policy (for next main project) and research methodology including the action plan and issues related to this planning project. Discussion about the collaboration plan related to VDC scorecard and my planning project. Etc... (Also, I would like to know about CIFE including the research and education programs related to BIM, VDC.) 4. 2012.10.16 : Return to my home
  4. 1. The many facility objects should be represented as the proper LOD on GIS. Because of that, the semi-automated LOD generation method is needed. 2. There are limitations related to IFC such as the heavy file volume, slow performance when the mesh of the IFC geometry is generated and so on. We believe that It’s not fit for the purpose of the object visualization on GIS. But, the IFC properties can be useful to integrate the BIM object data. 3. The FM data is consists of various file format such as Excel or database. Because of that, we need the effective method to extract the FM data and load it into BIM-based FM database.
  5. 3~4장 ONUMA 무엇이며. – 웹기반 BIM Fusion 모델링 및 검토 솔류션 기능 – 키워드 위주로 LIST 장점 – 웹기반. 상호운용성(IFC, BIMXML, ARCGIS, REVIT, ARCHICAD…). 클라우드환경. 단점 – 단순한 모델링 및 검토만 가능. 속도.
  6. 기능 – 키워드 위주로 LIST
  7. 3~4장 ONUMA 무엇이며. – 웹기반 BIM Fusion 모델링 및 검토 솔류션 기능 – 키워드 위주로 LIST 장점 – 웹기반. 상호운용성(IFC, BIMXML, ARCGIS, REVIT, ARCHICAD…). 클라우드환경. 단점 – 단순한 모델링 및 검토만 가능. 속도.