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

3D Digital Cities: The Convergence of CAD, GIS and BIM
3D Digital Cities: The Convergence of CAD, GIS and BIM3D Digital Cities: The Convergence of CAD, GIS and BIM
3D Digital Cities: The Convergence of CAD, GIS and BIMACSG Section Montréal
 
Integration of BIM and GIS: From Ideal to Reality
Integration of BIM and GIS: From Ideal to RealityIntegration of BIM and GIS: From Ideal to Reality
Integration of BIM and GIS: From Ideal to RealitySANGHEE SHIN
 
Case Studies On Gis Fm Integration
Case Studies On Gis Fm IntegrationCase Studies On Gis Fm Integration
Case Studies On Gis Fm IntegrationJohn Przybyla
 
DRCOG Keynote on GIS, BIM, CAD Convergence and 3D Cities
DRCOG Keynote on GIS, BIM, CAD Convergence and 3D CitiesDRCOG Keynote on GIS, BIM, CAD Convergence and 3D Cities
DRCOG Keynote on GIS, BIM, CAD Convergence and 3D CitiesMatt Ball
 
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
 
Creating, Managing and Sharing 3D Cities with FME
Creating, Managing and Sharing 3D Cities with FMECreating, Managing and Sharing 3D Cities with FME
Creating, Managing and Sharing 3D Cities with FMESafe Software
 
Vector Tile for Sea Wind
Vector Tile for Sea WindVector Tile for Sea Wind
Vector Tile for Sea WindSANGHEE SHIN
 
Use of CityGML standard in the context of Smart City
Use of CityGML standard in the context of Smart CityUse of CityGML standard in the context of Smart City
Use of CityGML standard in the context of Smart Cityi-SCOPE Project
 
Embedding user generated content into oblique airborne photogrammetry based 3...
Embedding user generated content into oblique airborne photogrammetry based 3...Embedding user generated content into oblique airborne photogrammetry based 3...
Embedding user generated content into oblique airborne photogrammetry based 3...Jianming Liang
 
BIMMeeting 2016 - BIM-Infra-GIS: building bridges from single buildings to di...
BIMMeeting 2016 - BIM-Infra-GIS: building bridges from single buildings to di...BIMMeeting 2016 - BIM-Infra-GIS: building bridges from single buildings to di...
BIMMeeting 2016 - BIM-Infra-GIS: building bridges from single buildings to di...Pieter Pauwels
 
2014 stumico gis_bim
2014 stumico gis_bim2014 stumico gis_bim
2014 stumico gis_bimJakob Beetz
 
Introduction to mago3D: A web based GeoBIM platform on top of FOSS4G
Introduction to mago3D:  A web based GeoBIM platform on top of FOSS4GIntroduction to mago3D:  A web based GeoBIM platform on top of FOSS4G
Introduction to mago3D: A web based GeoBIM platform on top of FOSS4GSANGHEE SHIN
 
Stranger in a Srange Land;Exploring 3D and CityGML
Stranger in a Srange Land;Exploring 3D and CityGMLStranger in a Srange Land;Exploring 3D and CityGML
Stranger in a Srange Land;Exploring 3D and CityGMLSafe Software
 
The FME Bridge Between BIM & GIS
The FME Bridge Between BIM & GISThe FME Bridge Between BIM & GIS
The FME Bridge Between BIM & GISSafe Software
 
Unified Geometry Modelling for Pervasive Design and Fabrication
Unified Geometry Modelling for Pervasive Design and FabricationUnified Geometry Modelling for Pervasive Design and Fabrication
Unified Geometry Modelling for Pervasive Design and FabricationLiu PeiLing
 
APPLICATION OF IP TECHNIQUES IN TRAFFIC CONTROL SYSTEM
APPLICATION OF IP TECHNIQUES IN TRAFFIC CONTROL SYSTEMAPPLICATION OF IP TECHNIQUES IN TRAFFIC CONTROL SYSTEM
APPLICATION OF IP TECHNIQUES IN TRAFFIC CONTROL SYSTEMAshik Ask
 
Teleimmersion
TeleimmersionTeleimmersion
Teleimmersionstudent
 
라이브드론맵 (Live Drone Map) - 실시간 드론 매핑 솔루션
라이브드론맵 (Live Drone Map) - 실시간 드론 매핑 솔루션라이브드론맵 (Live Drone Map) - 실시간 드론 매핑 솔루션
라이브드론맵 (Live Drone Map) - 실시간 드론 매핑 솔루션Impyeong Lee
 

What's hot (20)

3D Digital Cities: The Convergence of CAD, GIS and BIM
3D Digital Cities: The Convergence of CAD, GIS and BIM3D Digital Cities: The Convergence of CAD, GIS and BIM
3D Digital Cities: The Convergence of CAD, GIS and BIM
 
Integration of BIM and GIS: From Ideal to Reality
Integration of BIM and GIS: From Ideal to RealityIntegration of BIM and GIS: From Ideal to Reality
Integration of BIM and GIS: From Ideal to Reality
 
Case Studies On Gis Fm Integration
Case Studies On Gis Fm IntegrationCase Studies On Gis Fm Integration
Case Studies On Gis Fm Integration
 
DRCOG Keynote on GIS, BIM, CAD Convergence and 3D Cities
DRCOG Keynote on GIS, BIM, CAD Convergence and 3D CitiesDRCOG Keynote on GIS, BIM, CAD Convergence and 3D Cities
DRCOG Keynote on GIS, BIM, CAD Convergence and 3D Cities
 
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...
 
Creating, Managing and Sharing 3D Cities with FME
Creating, Managing and Sharing 3D Cities with FMECreating, Managing and Sharing 3D Cities with FME
Creating, Managing and Sharing 3D Cities with FME
 
3D CITY MODELS
3D CITY MODELS3D CITY MODELS
3D CITY MODELS
 
Vector Tile for Sea Wind
Vector Tile for Sea WindVector Tile for Sea Wind
Vector Tile for Sea Wind
 
Use of CityGML standard in the context of Smart City
Use of CityGML standard in the context of Smart CityUse of CityGML standard in the context of Smart City
Use of CityGML standard in the context of Smart City
 
Embedding user generated content into oblique airborne photogrammetry based 3...
Embedding user generated content into oblique airborne photogrammetry based 3...Embedding user generated content into oblique airborne photogrammetry based 3...
Embedding user generated content into oblique airborne photogrammetry based 3...
 
BIMMeeting 2016 - BIM-Infra-GIS: building bridges from single buildings to di...
BIMMeeting 2016 - BIM-Infra-GIS: building bridges from single buildings to di...BIMMeeting 2016 - BIM-Infra-GIS: building bridges from single buildings to di...
BIMMeeting 2016 - BIM-Infra-GIS: building bridges from single buildings to di...
 
2014 stumico gis_bim
2014 stumico gis_bim2014 stumico gis_bim
2014 stumico gis_bim
 
Introduction to mago3D: A web based GeoBIM platform on top of FOSS4G
Introduction to mago3D:  A web based GeoBIM platform on top of FOSS4GIntroduction to mago3D:  A web based GeoBIM platform on top of FOSS4G
Introduction to mago3D: A web based GeoBIM platform on top of FOSS4G
 
Stranger in a Srange Land;Exploring 3D and CityGML
Stranger in a Srange Land;Exploring 3D and CityGMLStranger in a Srange Land;Exploring 3D and CityGML
Stranger in a Srange Land;Exploring 3D and CityGML
 
The FME Bridge Between BIM & GIS
The FME Bridge Between BIM & GISThe FME Bridge Between BIM & GIS
The FME Bridge Between BIM & GIS
 
Unified Geometry Modelling for Pervasive Design and Fabrication
Unified Geometry Modelling for Pervasive Design and FabricationUnified Geometry Modelling for Pervasive Design and Fabrication
Unified Geometry Modelling for Pervasive Design and Fabrication
 
3D Modeling by GIS
3D Modeling by GIS3D Modeling by GIS
3D Modeling by GIS
 
APPLICATION OF IP TECHNIQUES IN TRAFFIC CONTROL SYSTEM
APPLICATION OF IP TECHNIQUES IN TRAFFIC CONTROL SYSTEMAPPLICATION OF IP TECHNIQUES IN TRAFFIC CONTROL SYSTEM
APPLICATION OF IP TECHNIQUES IN TRAFFIC CONTROL SYSTEM
 
Teleimmersion
TeleimmersionTeleimmersion
Teleimmersion
 
라이브드론맵 (Live Drone Map) - 실시간 드론 매핑 솔루션
라이브드론맵 (Live Drone Map) - 실시간 드론 매핑 솔루션라이브드론맵 (Live Drone Map) - 실시간 드론 매핑 솔루션
라이브드론맵 (Live Drone Map) - 실시간 드론 매핑 솔루션
 

Viewers also liked

SOU MAIS PERNAMBUCO
SOU MAIS PERNAMBUCOSOU MAIS PERNAMBUCO
SOU MAIS PERNAMBUCOmartinsfrc
 
La revolució científica2
La revolució científica2La revolució científica2
La revolució científica2Filosofosflorida
 
Media question 4
Media question 4 Media question 4
Media question 4 11025663
 
Press note saraiki (f)
Press note saraiki (f)Press note saraiki (f)
Press note saraiki (f)Nasir Ismail
 
A Touch of Romance
A Touch of RomanceA Touch of Romance
A Touch of RomanceMakala (D)
 
Media powerpoint
Media powerpointMedia powerpoint
Media powerpoint11025663
 
Digital scavenger hunt
Digital scavenger huntDigital scavenger hunt
Digital scavenger huntjroep2
 
Tulip's Elegance
Tulip's Elegance Tulip's Elegance
Tulip's Elegance Makala (D)
 
LX 공간정보아카데미 PostGIS 강의자료
LX 공간정보아카데미 PostGIS 강의자료LX 공간정보아카데미 PostGIS 강의자료
LX 공간정보아카데미 PostGIS 강의자료JungHwan Yun
 
Proj4를 이용한 좌표계 변환
Proj4를 이용한 좌표계 변환Proj4를 이용한 좌표계 변환
Proj4를 이용한 좌표계 변환BJ Jang
 
Travel in germany
Travel in germanyTravel in germany
Travel in germanyChris Han
 
[FOSS4G Korea 2016] GeoHash를 이용한 지형도 변화탐지와 시계열 관리
[FOSS4G Korea 2016] GeoHash를 이용한 지형도 변화탐지와 시계열 관리[FOSS4G Korea 2016] GeoHash를 이용한 지형도 변화탐지와 시계열 관리
[FOSS4G Korea 2016] GeoHash를 이용한 지형도 변화탐지와 시계열 관리BJ Jang
 
"Some New Results on the Estimation of Structural Budget Balance for Spain"; ...
"Some New Results on the Estimation of Structural Budget Balance for Spain"; ..."Some New Results on the Estimation of Structural Budget Balance for Spain"; ...
"Some New Results on the Estimation of Structural Budget Balance for Spain"; ...Investigador Principal (IELAT_UAH)
 
Achievement of substantial stomach weight loss and much more
Achievement of substantial stomach weight loss and much moreAchievement of substantial stomach weight loss and much more
Achievement of substantial stomach weight loss and much moremrbonafide
 

Viewers also liked (20)

Calendario de la liga barrial 20 04-2012
Calendario de la liga barrial 20 04-2012Calendario de la liga barrial 20 04-2012
Calendario de la liga barrial 20 04-2012
 
SOU MAIS PERNAMBUCO
SOU MAIS PERNAMBUCOSOU MAIS PERNAMBUCO
SOU MAIS PERNAMBUCO
 
La revolució científica2
La revolució científica2La revolució científica2
La revolució científica2
 
Media question 4
Media question 4 Media question 4
Media question 4
 
Gftg 2012 Presentation
Gftg   2012 PresentationGftg   2012 Presentation
Gftg 2012 Presentation
 
Press note saraiki (f)
Press note saraiki (f)Press note saraiki (f)
Press note saraiki (f)
 
A Touch of Romance
A Touch of RomanceA Touch of Romance
A Touch of Romance
 
Media powerpoint
Media powerpointMedia powerpoint
Media powerpoint
 
FCBarcelona-Real Betis
FCBarcelona-Real BetisFCBarcelona-Real Betis
FCBarcelona-Real Betis
 
Digital scavenger hunt
Digital scavenger huntDigital scavenger hunt
Digital scavenger hunt
 
Tulip's Elegance
Tulip's Elegance Tulip's Elegance
Tulip's Elegance
 
LX 공간정보아카데미 PostGIS 강의자료
LX 공간정보아카데미 PostGIS 강의자료LX 공간정보아카데미 PostGIS 강의자료
LX 공간정보아카데미 PostGIS 강의자료
 
Proj4를 이용한 좌표계 변환
Proj4를 이용한 좌표계 변환Proj4를 이용한 좌표계 변환
Proj4를 이용한 좌표계 변환
 
Travel in germany
Travel in germanyTravel in germany
Travel in germany
 
Enviar
EnviarEnviar
Enviar
 
February Activities
February ActivitiesFebruary Activities
February Activities
 
Sauna
SaunaSauna
Sauna
 
[FOSS4G Korea 2016] GeoHash를 이용한 지형도 변화탐지와 시계열 관리
[FOSS4G Korea 2016] GeoHash를 이용한 지형도 변화탐지와 시계열 관리[FOSS4G Korea 2016] GeoHash를 이용한 지형도 변화탐지와 시계열 관리
[FOSS4G Korea 2016] GeoHash를 이용한 지형도 변화탐지와 시계열 관리
 
"Some New Results on the Estimation of Structural Budget Balance for Spain"; ...
"Some New Results on the Estimation of Structural Budget Balance for Spain"; ..."Some New Results on the Estimation of Structural Budget Balance for Spain"; ...
"Some New Results on the Estimation of Structural Budget Balance for Spain"; ...
 
Achievement of substantial stomach weight loss and much more
Achievement of substantial stomach weight loss and much moreAchievement of substantial stomach weight loss and much more
Achievement of substantial stomach weight loss and much more
 

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
 
Processing Geospatial at Scale at LocationTech
Processing Geospatial at Scale at LocationTechProcessing Geospatial at Scale at LocationTech
Processing Geospatial at Scale at LocationTechRob Emanuele
 
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
 
Golden Age of Geospatial Data Science
Golden Age of Geospatial Data ScienceGolden Age of Geospatial Data Science
Golden Age of Geospatial Data ScienceGeorge Percivall
 
mago3D: Let's integrate BIM and 3D GIS on top of FOSS4G
mago3D: Let's integrate BIM and 3D GIS on top of FOSS4Gmago3D: Let's integrate BIM and 3D GIS on top of FOSS4G
mago3D: Let's integrate BIM and 3D GIS on top of FOSS4GSANGHEE SHIN
 
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
 
Web Mapping with Drupal
Web Mapping with DrupalWeb Mapping with Drupal
Web Mapping with DrupalRanel Padon
 
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
 

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
 
Processing Geospatial at Scale at LocationTech
Processing Geospatial at Scale at LocationTechProcessing Geospatial at Scale at LocationTech
Processing Geospatial at Scale at LocationTech
 
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...
 
Golden Age of Geospatial Data Science
Golden Age of Geospatial Data ScienceGolden Age of Geospatial Data Science
Golden Age of Geospatial Data Science
 
mago3D: Let's integrate BIM and 3D GIS on top of FOSS4G
mago3D: Let's integrate BIM and 3D GIS on top of FOSS4Gmago3D: Let's integrate BIM and 3D GIS on top of FOSS4G
mago3D: Let's integrate BIM and 3D GIS on top of FOSS4G
 
QGIS training class 3
QGIS training class 3QGIS training class 3
QGIS training class 3
 
Agi08 Jeremy Morley
Agi08 Jeremy MorleyAgi08 Jeremy Morley
Agi08 Jeremy Morley
 
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
 
Web Mapping with Drupal
Web Mapping with DrupalWeb Mapping with Drupal
Web Mapping with Drupal
 
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
 

More from Tae wook kang

3D 모델러 ADDIN 개발과정 요약
3D 모델러 ADDIN 개발과정 요약3D 모델러 ADDIN 개발과정 요약
3D 모델러 ADDIN 개발과정 요약Tae wook kang
 
오픈소스로 쉽게 따라해보는 Unreal과 IoT 연계 및 개발 방법 소개.pdf
오픈소스로 쉽게 따라해보는 Unreal과 IoT 연계 및 개발 방법 소개.pdf오픈소스로 쉽게 따라해보는 Unreal과 IoT 연계 및 개발 방법 소개.pdf
오픈소스로 쉽게 따라해보는 Unreal과 IoT 연계 및 개발 방법 소개.pdfTae wook kang
 
Python과 node.js기반 데이터 분석 및 가시화
Python과 node.js기반 데이터 분석 및 가시화Python과 node.js기반 데이터 분석 및 가시화
Python과 node.js기반 데이터 분석 및 가시화Tae wook kang
 
BIM 표준과 구현 (standard and development)
BIM 표준과 구현 (standard and development)BIM 표준과 구현 (standard and development)
BIM 표준과 구현 (standard and development)Tae wook kang
 
ISO 19166 BIM-GIS conceptual mapping
ISO 19166 BIM-GIS conceptual mappingISO 19166 BIM-GIS conceptual mapping
ISO 19166 BIM-GIS conceptual mappingTae wook kang
 
SBF(Scan-BIM-Field) 기반 스마트 시설물 관리 기술 개발
SBF(Scan-BIM-Field) 기반 스마트 시설물 관리 기술 개발SBF(Scan-BIM-Field) 기반 스마트 시설물 관리 기술 개발
SBF(Scan-BIM-Field) 기반 스마트 시설물 관리 기술 개발Tae wook kang
 
오픈소스 ROS기반 건설 로보틱스 기술 개발
오픈소스 ROS기반 건설 로보틱스 기술 개발오픈소스 ROS기반 건설 로보틱스 기술 개발
오픈소스 ROS기반 건설 로보틱스 기술 개발Tae wook kang
 
한국 건설 기술 전망과 건설 테크 스타트업 소개
한국 건설 기술 전망과 건설 테크 스타트업 소개한국 건설 기술 전망과 건설 테크 스타트업 소개
한국 건설 기술 전망과 건설 테크 스타트업 소개Tae wook kang
 
Coding, maker and SDP
Coding, maker and SDPCoding, maker and SDP
Coding, maker and SDPTae wook kang
 
오픈 데이터, 팹시티와 메이커
오픈 데이터, 팹시티와 메이커오픈 데이터, 팹시티와 메이커
오픈 데이터, 팹시티와 메이커Tae wook kang
 
AI - Media Art. 인공지능과 미디어아트
AI - Media Art. 인공지능과 미디어아트AI - Media Art. 인공지능과 미디어아트
AI - Media Art. 인공지능과 미디어아트Tae wook kang
 
ISO 19166 BIM to GIS conceptual mapping China (WUHAN) meeting
ISO 19166 BIM to GIS conceptual mapping China (WUHAN) meetingISO 19166 BIM to GIS conceptual mapping China (WUHAN) meeting
ISO 19166 BIM to GIS conceptual mapping China (WUHAN) meetingTae wook kang
 
건설 스타트업과 오픈소스
건설 스타트업과 오픈소스건설 스타트업과 오픈소스
건설 스타트업과 오픈소스Tae wook kang
 
블록체인 기반 건설 스마트 서비스와 계약
블록체인 기반 건설 스마트 서비스와 계약블록체인 기반 건설 스마트 서비스와 계약
블록체인 기반 건설 스마트 서비스와 계약Tae wook kang
 
4차산업혁명과 건설, 그리고 블록체인
4차산업혁명과 건설, 그리고 블록체인4차산업혁명과 건설, 그리고 블록체인
4차산업혁명과 건설, 그리고 블록체인Tae wook kang
 
도시 인프라 공간정보 데이터 커넥션-통합 기술 표준화를 위한 ISO TC211 19166 개발 이야기
도시 인프라 공간정보 데이터 커넥션-통합 기술 표준화를 위한 ISO TC211 19166 개발 이야기 도시 인프라 공간정보 데이터 커넥션-통합 기술 표준화를 위한 ISO TC211 19166 개발 이야기
도시 인프라 공간정보 데이터 커넥션-통합 기술 표준화를 위한 ISO TC211 19166 개발 이야기 Tae wook kang
 
Smart BIM for Facility Management
Smart BIM for Facility ManagementSmart BIM for Facility Management
Smart BIM for Facility ManagementTae wook kang
 
메이커 시티와 메이커 운동 참여를 통해 얻은 것
메이커 시티와 메이커 운동 참여를 통해 얻은 것메이커 시티와 메이커 운동 참여를 통해 얻은 것
메이커 시티와 메이커 운동 참여를 통해 얻은 것Tae wook kang
 
최신 3차원 이미지 스캔 역설계 기술 전망 및 건설 활용
최신 3차원 이미지 스캔 역설계 기술 전망 및 건설 활용최신 3차원 이미지 스캔 역설계 기술 전망 및 건설 활용
최신 3차원 이미지 스캔 역설계 기술 전망 및 건설 활용Tae wook kang
 
IoT 기반 건설 지능화와 BIM
IoT 기반 건설 지능화와 BIMIoT 기반 건설 지능화와 BIM
IoT 기반 건설 지능화와 BIMTae wook kang
 

More from Tae wook kang (20)

3D 모델러 ADDIN 개발과정 요약
3D 모델러 ADDIN 개발과정 요약3D 모델러 ADDIN 개발과정 요약
3D 모델러 ADDIN 개발과정 요약
 
오픈소스로 쉽게 따라해보는 Unreal과 IoT 연계 및 개발 방법 소개.pdf
오픈소스로 쉽게 따라해보는 Unreal과 IoT 연계 및 개발 방법 소개.pdf오픈소스로 쉽게 따라해보는 Unreal과 IoT 연계 및 개발 방법 소개.pdf
오픈소스로 쉽게 따라해보는 Unreal과 IoT 연계 및 개발 방법 소개.pdf
 
Python과 node.js기반 데이터 분석 및 가시화
Python과 node.js기반 데이터 분석 및 가시화Python과 node.js기반 데이터 분석 및 가시화
Python과 node.js기반 데이터 분석 및 가시화
 
BIM 표준과 구현 (standard and development)
BIM 표준과 구현 (standard and development)BIM 표준과 구현 (standard and development)
BIM 표준과 구현 (standard and development)
 
ISO 19166 BIM-GIS conceptual mapping
ISO 19166 BIM-GIS conceptual mappingISO 19166 BIM-GIS conceptual mapping
ISO 19166 BIM-GIS conceptual mapping
 
SBF(Scan-BIM-Field) 기반 스마트 시설물 관리 기술 개발
SBF(Scan-BIM-Field) 기반 스마트 시설물 관리 기술 개발SBF(Scan-BIM-Field) 기반 스마트 시설물 관리 기술 개발
SBF(Scan-BIM-Field) 기반 스마트 시설물 관리 기술 개발
 
오픈소스 ROS기반 건설 로보틱스 기술 개발
오픈소스 ROS기반 건설 로보틱스 기술 개발오픈소스 ROS기반 건설 로보틱스 기술 개발
오픈소스 ROS기반 건설 로보틱스 기술 개발
 
한국 건설 기술 전망과 건설 테크 스타트업 소개
한국 건설 기술 전망과 건설 테크 스타트업 소개한국 건설 기술 전망과 건설 테크 스타트업 소개
한국 건설 기술 전망과 건설 테크 스타트업 소개
 
Coding, maker and SDP
Coding, maker and SDPCoding, maker and SDP
Coding, maker and SDP
 
오픈 데이터, 팹시티와 메이커
오픈 데이터, 팹시티와 메이커오픈 데이터, 팹시티와 메이커
오픈 데이터, 팹시티와 메이커
 
AI - Media Art. 인공지능과 미디어아트
AI - Media Art. 인공지능과 미디어아트AI - Media Art. 인공지능과 미디어아트
AI - Media Art. 인공지능과 미디어아트
 
ISO 19166 BIM to GIS conceptual mapping China (WUHAN) meeting
ISO 19166 BIM to GIS conceptual mapping China (WUHAN) meetingISO 19166 BIM to GIS conceptual mapping China (WUHAN) meeting
ISO 19166 BIM to GIS conceptual mapping China (WUHAN) meeting
 
건설 스타트업과 오픈소스
건설 스타트업과 오픈소스건설 스타트업과 오픈소스
건설 스타트업과 오픈소스
 
블록체인 기반 건설 스마트 서비스와 계약
블록체인 기반 건설 스마트 서비스와 계약블록체인 기반 건설 스마트 서비스와 계약
블록체인 기반 건설 스마트 서비스와 계약
 
4차산업혁명과 건설, 그리고 블록체인
4차산업혁명과 건설, 그리고 블록체인4차산업혁명과 건설, 그리고 블록체인
4차산업혁명과 건설, 그리고 블록체인
 
도시 인프라 공간정보 데이터 커넥션-통합 기술 표준화를 위한 ISO TC211 19166 개발 이야기
도시 인프라 공간정보 데이터 커넥션-통합 기술 표준화를 위한 ISO TC211 19166 개발 이야기 도시 인프라 공간정보 데이터 커넥션-통합 기술 표준화를 위한 ISO TC211 19166 개발 이야기
도시 인프라 공간정보 데이터 커넥션-통합 기술 표준화를 위한 ISO TC211 19166 개발 이야기
 
Smart BIM for Facility Management
Smart BIM for Facility ManagementSmart BIM for Facility Management
Smart BIM for Facility Management
 
메이커 시티와 메이커 운동 참여를 통해 얻은 것
메이커 시티와 메이커 운동 참여를 통해 얻은 것메이커 시티와 메이커 운동 참여를 통해 얻은 것
메이커 시티와 메이커 운동 참여를 통해 얻은 것
 
최신 3차원 이미지 스캔 역설계 기술 전망 및 건설 활용
최신 3차원 이미지 스캔 역설계 기술 전망 및 건설 활용최신 3차원 이미지 스캔 역설계 기술 전망 및 건설 활용
최신 3차원 이미지 스캔 역설계 기술 전망 및 건설 활용
 
IoT 기반 건설 지능화와 BIM
IoT 기반 건설 지능화와 BIMIoT 기반 건설 지능화와 BIM
IoT 기반 건설 지능화와 BIM
 

Recently uploaded

Düsseldorf U学位证,杜塞尔多夫大学毕业证书1:1制作
Düsseldorf U学位证,杜塞尔多夫大学毕业证书1:1制作Düsseldorf U学位证,杜塞尔多夫大学毕业证书1:1制作
Düsseldorf U学位证,杜塞尔多夫大学毕业证书1:1制作f3774p8b
 
Air Pollution Control Technique and application.
Air Pollution Control Technique and application.Air Pollution Control Technique and application.
Air Pollution Control Technique and application.yadavsuyash008
 
9873940964 Full Enjoy 24/7 Call Girls Near Shangri La’s Eros Hotel, New Delhi
9873940964 Full Enjoy 24/7 Call Girls Near Shangri La’s Eros Hotel, New Delhi9873940964 Full Enjoy 24/7 Call Girls Near Shangri La’s Eros Hotel, New Delhi
9873940964 Full Enjoy 24/7 Call Girls Near Shangri La’s Eros Hotel, New Delhidelih Escorts
 
Hi FI Call Girl Ahmedabad 7397865700 Independent Call Girls
Hi FI Call Girl Ahmedabad 7397865700 Independent Call GirlsHi FI Call Girl Ahmedabad 7397865700 Independent Call Girls
Hi FI Call Girl Ahmedabad 7397865700 Independent Call Girlsssuser7cb4ff
 
'Upcycling Research' presentation for SNU GSES
'Upcycling Research' presentation for SNU GSES'Upcycling Research' presentation for SNU GSES
'Upcycling Research' presentation for SNU GSESKyungeun Sung
 
See How do animals kill their prey for food
See How do animals kill their prey for foodSee How do animals kill their prey for food
See How do animals kill their prey for fooddrsk203
 
BIODIVERSITY QUIZ ELIMINATION ROUND.pptx
BIODIVERSITY QUIZ ELIMINATION ROUND.pptxBIODIVERSITY QUIZ ELIMINATION ROUND.pptx
BIODIVERSITY QUIZ ELIMINATION ROUND.pptxROLANARIBATO3
 
办理德州理工大学毕业证书TTU文凭学位证书
办理德州理工大学毕业证书TTU文凭学位证书办理德州理工大学毕业证书TTU文凭学位证书
办理德州理工大学毕业证书TTU文凭学位证书zdzoqco
 
原版1:1复刻塔夫斯大学毕业证Tufts毕业证留信学历认证
原版1:1复刻塔夫斯大学毕业证Tufts毕业证留信学历认证原版1:1复刻塔夫斯大学毕业证Tufts毕业证留信学历认证
原版1:1复刻塔夫斯大学毕业证Tufts毕业证留信学历认证jdkhjh
 
Dwarka Call Girls 9643097474 Phone Number 24x7 Best Services
Dwarka Call Girls 9643097474 Phone Number 24x7 Best ServicesDwarka Call Girls 9643097474 Phone Number 24x7 Best Services
Dwarka Call Girls 9643097474 Phone Number 24x7 Best Servicesnajka9823
 
办理(Victoria毕业证书)维多利亚大学毕业证成绩单原版一比一
办理(Victoria毕业证书)维多利亚大学毕业证成绩单原版一比一办理(Victoria毕业证书)维多利亚大学毕业证成绩单原版一比一
办理(Victoria毕业证书)维多利亚大学毕业证成绩单原版一比一z xss
 
Call In girls Connaught Place (DELHI)⇛9711147426🔝Delhi NCR
Call In girls Connaught Place (DELHI)⇛9711147426🔝Delhi NCRCall In girls Connaught Place (DELHI)⇛9711147426🔝Delhi NCR
Call In girls Connaught Place (DELHI)⇛9711147426🔝Delhi NCRjennyeacort
 
Uae-NO1 Black Magic Specialist Expert In Bahawalpur, Sargodha, Sialkot, Sheik...
Uae-NO1 Black Magic Specialist Expert In Bahawalpur, Sargodha, Sialkot, Sheik...Uae-NO1 Black Magic Specialist Expert In Bahawalpur, Sargodha, Sialkot, Sheik...
Uae-NO1 Black Magic Specialist Expert In Bahawalpur, Sargodha, Sialkot, Sheik...Amil baba
 
毕业文凭制作#回国入职#diploma#degree美国密苏里大学毕业证成绩单pdf电子版制作修改#毕业文凭制作#回国入职#diploma#degree
毕业文凭制作#回国入职#diploma#degree美国密苏里大学毕业证成绩单pdf电子版制作修改#毕业文凭制作#回国入职#diploma#degree 毕业文凭制作#回国入职#diploma#degree美国密苏里大学毕业证成绩单pdf电子版制作修改#毕业文凭制作#回国入职#diploma#degree
毕业文凭制作#回国入职#diploma#degree美国密苏里大学毕业证成绩单pdf电子版制作修改#毕业文凭制作#回国入职#diploma#degree ttt fff
 
Environmental Management System - ISO 14001:2015-
Environmental Management System      - ISO 14001:2015-Environmental Management System      - ISO 14001:2015-
Environmental Management System - ISO 14001:2015-Kawther MEKNI
 
Science, Technology and Nation Building.pptx
Science, Technology and Nation Building.pptxScience, Technology and Nation Building.pptx
Science, Technology and Nation Building.pptxgrandmarshall132
 
Biogas Production from Agricultural Feedstock and Energy Crops
Biogas Production from Agricultural Feedstock and Energy CropsBiogas Production from Agricultural Feedstock and Energy Crops
Biogas Production from Agricultural Feedstock and Energy CropsRabiyaSalman2
 
办理英属哥伦比亚大学毕业证成绩单|购买加拿大UBC文凭证书
办理英属哥伦比亚大学毕业证成绩单|购买加拿大UBC文凭证书办理英属哥伦比亚大学毕业证成绩单|购买加拿大UBC文凭证书
办理英属哥伦比亚大学毕业证成绩单|购买加拿大UBC文凭证书zdzoqco
 

Recently uploaded (20)

Düsseldorf U学位证,杜塞尔多夫大学毕业证书1:1制作
Düsseldorf U学位证,杜塞尔多夫大学毕业证书1:1制作Düsseldorf U学位证,杜塞尔多夫大学毕业证书1:1制作
Düsseldorf U学位证,杜塞尔多夫大学毕业证书1:1制作
 
Air Pollution Control Technique and application.
Air Pollution Control Technique and application.Air Pollution Control Technique and application.
Air Pollution Control Technique and application.
 
9873940964 Full Enjoy 24/7 Call Girls Near Shangri La’s Eros Hotel, New Delhi
9873940964 Full Enjoy 24/7 Call Girls Near Shangri La’s Eros Hotel, New Delhi9873940964 Full Enjoy 24/7 Call Girls Near Shangri La’s Eros Hotel, New Delhi
9873940964 Full Enjoy 24/7 Call Girls Near Shangri La’s Eros Hotel, New Delhi
 
Hi FI Call Girl Ahmedabad 7397865700 Independent Call Girls
Hi FI Call Girl Ahmedabad 7397865700 Independent Call GirlsHi FI Call Girl Ahmedabad 7397865700 Independent Call Girls
Hi FI Call Girl Ahmedabad 7397865700 Independent Call Girls
 
Biopesticide. pptx.
Biopesticide. pptx.Biopesticide. pptx.
Biopesticide. pptx.
 
'Upcycling Research' presentation for SNU GSES
'Upcycling Research' presentation for SNU GSES'Upcycling Research' presentation for SNU GSES
'Upcycling Research' presentation for SNU GSES
 
See How do animals kill their prey for food
See How do animals kill their prey for foodSee How do animals kill their prey for food
See How do animals kill their prey for food
 
BIODIVERSITY QUIZ ELIMINATION ROUND.pptx
BIODIVERSITY QUIZ ELIMINATION ROUND.pptxBIODIVERSITY QUIZ ELIMINATION ROUND.pptx
BIODIVERSITY QUIZ ELIMINATION ROUND.pptx
 
办理德州理工大学毕业证书TTU文凭学位证书
办理德州理工大学毕业证书TTU文凭学位证书办理德州理工大学毕业证书TTU文凭学位证书
办理德州理工大学毕业证书TTU文凭学位证书
 
原版1:1复刻塔夫斯大学毕业证Tufts毕业证留信学历认证
原版1:1复刻塔夫斯大学毕业证Tufts毕业证留信学历认证原版1:1复刻塔夫斯大学毕业证Tufts毕业证留信学历认证
原版1:1复刻塔夫斯大学毕业证Tufts毕业证留信学历认证
 
Dwarka Call Girls 9643097474 Phone Number 24x7 Best Services
Dwarka Call Girls 9643097474 Phone Number 24x7 Best ServicesDwarka Call Girls 9643097474 Phone Number 24x7 Best Services
Dwarka Call Girls 9643097474 Phone Number 24x7 Best Services
 
PLANTILLAS DE MEMORAMA CIENCIAS NATURALES
PLANTILLAS DE MEMORAMA CIENCIAS NATURALESPLANTILLAS DE MEMORAMA CIENCIAS NATURALES
PLANTILLAS DE MEMORAMA CIENCIAS NATURALES
 
办理(Victoria毕业证书)维多利亚大学毕业证成绩单原版一比一
办理(Victoria毕业证书)维多利亚大学毕业证成绩单原版一比一办理(Victoria毕业证书)维多利亚大学毕业证成绩单原版一比一
办理(Victoria毕业证书)维多利亚大学毕业证成绩单原版一比一
 
Call In girls Connaught Place (DELHI)⇛9711147426🔝Delhi NCR
Call In girls Connaught Place (DELHI)⇛9711147426🔝Delhi NCRCall In girls Connaught Place (DELHI)⇛9711147426🔝Delhi NCR
Call In girls Connaught Place (DELHI)⇛9711147426🔝Delhi NCR
 
Uae-NO1 Black Magic Specialist Expert In Bahawalpur, Sargodha, Sialkot, Sheik...
Uae-NO1 Black Magic Specialist Expert In Bahawalpur, Sargodha, Sialkot, Sheik...Uae-NO1 Black Magic Specialist Expert In Bahawalpur, Sargodha, Sialkot, Sheik...
Uae-NO1 Black Magic Specialist Expert In Bahawalpur, Sargodha, Sialkot, Sheik...
 
毕业文凭制作#回国入职#diploma#degree美国密苏里大学毕业证成绩单pdf电子版制作修改#毕业文凭制作#回国入职#diploma#degree
毕业文凭制作#回国入职#diploma#degree美国密苏里大学毕业证成绩单pdf电子版制作修改#毕业文凭制作#回国入职#diploma#degree 毕业文凭制作#回国入职#diploma#degree美国密苏里大学毕业证成绩单pdf电子版制作修改#毕业文凭制作#回国入职#diploma#degree
毕业文凭制作#回国入职#diploma#degree美国密苏里大学毕业证成绩单pdf电子版制作修改#毕业文凭制作#回国入职#diploma#degree
 
Environmental Management System - ISO 14001:2015-
Environmental Management System      - ISO 14001:2015-Environmental Management System      - ISO 14001:2015-
Environmental Management System - ISO 14001:2015-
 
Science, Technology and Nation Building.pptx
Science, Technology and Nation Building.pptxScience, Technology and Nation Building.pptx
Science, Technology and Nation Building.pptx
 
Biogas Production from Agricultural Feedstock and Energy Crops
Biogas Production from Agricultural Feedstock and Energy CropsBiogas Production from Agricultural Feedstock and Energy Crops
Biogas Production from Agricultural Feedstock and Energy Crops
 
办理英属哥伦比亚大学毕业证成绩单|购买加拿大UBC文凭证书
办理英属哥伦比亚大学毕业证成绩单|购买加拿大UBC文凭证书办理英属哥伦比亚大学毕业证成绩单|购买加拿大UBC文凭证书
办理英属哥伦比亚大学毕业证成绩单|购买加拿大UBC文凭证书
 

도시 설계와 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…). 클라우드환경. 단점 – 단순한 모델링 및 검토만 가능. 속도.