SlideShare a Scribd company logo
1 of 38
Block chain and construction
BIM, IoT, AI
2018.9.9
Korea Institute of Civil engineering and building Technology
강태욱 공학박사
Ph.D Taewook, Kang
laputa99999@gmail.com
sites.google.com/site/bimprinciple
AI
GPU
Open
data
Open
source
Collective
Intelligence
TPU
Ph.D. KICT senior researcher
ISO/TC211 committee member. 11 books author
Industry 4.0
https://www.i-scoop.eu/industry-4-0/
KICT
Industry 4.0 – Construction perspective
AEC-CPS
CPS
Structural
health
monitoring
Track and
trace
Remote
diagnosis
Remote
services
Remote
control
Condition
monitoring
Systems
health
monitoring
BIM
as i-DB
IoT…
AI
Sensor device
ICBM
MRRobotics
Scan-Vision
Smart contract
based on Blockchain
Blockchain-based smart contract
KICT
Blockchain-based smart contract
KICT
Albawaba business, 2017
BIM-COIN
DUBAI CITY
BIM principle, 2018.1, 블록체인과 BIM
- 스마트 계약을 위한 블록체인 기술
Blockchain-based smart contract
KICT
Blockchain & Transaction Hash (Wikipedia)
Merkle Trees
Blockchain-based smart contract
KICT
Bitcoin wiki
Blockchain-based smart contract
KICT
sykhaulage.com, ontract Mining
Bitcoin Tx Mine Cloud Mining
Blockchain-based smart contract
KICT
비트코인 구조
sykhaulage.com, ontract Mining
Bitcoin Tx Mine Cloud Mining
Blockchain-based smart contract
KICT
sykhaulage.com, ontract Mining
Bitcoin Tx Mine Cloud Mining
Blockchain-based smart contract
KICT
sykhaulage.com, ontract Mining
Bitcoin Tx Mine Cloud Mining
Blockchain-based smart contract
KICT
sykhaulage.com, ontract Mining
Bitcoin Tx Mine Cloud Mining
Blockchain-based smart contract
KICT
Sha256 hash bitcoin - Satoshi bitcoin, Neural
network bitcoin mining
Secure
Hash
Algorithm
Blockchain-based smart contract
KICT
Learningspot, 2017, The task of
Bitcoin miners
10 min
Blockchain-based smart contract
KICT
Daddy Maker, 2018, 비트코인 소스 코드
빌드, 사용 및 블록체인 코드 구조 분석
2000 TX
TX TREE
KEY CONTRACT
Merkle Trees
Blockchain-based smart contract
KICT
https://www.coindesk.com/ethereum-price/
Blockchain-based smart contract
KICT
MyEtherWallet, 2018, What is Gas
Blockchain-based smart contract
KICT
Distributing Business Processes using Finite State
Machines in the Blockchain
Blockchain-based smart contract
KICT web3j.readthedocs.io
Blockchain-based smart contract
KICT
Pragma solidity ^0.4.0
Contract Lottery {
uint count = 0;
uint prize_money = 0;
function () payable public {
count++;
prize_money += msg.value;
if(count % 7 == 0) {
msg.sender.transfer(prize_money);
prize_money = 0;
}
}
}
Ethereum wiki
Blockchain-based smart contract
KICTFabio Jose Moraes, 2018, Building a Smart Contract to Sell Goods, DZone
Contract
+
Token
Blockchain-based smart contract
KICTBlockchainHub
Initial Coin Offering (ICO) or token sale refers to a
type of crowdfunding campaign conducted on the
blockchain.
Blockchain-based smart contract
KICT
Sandeep Panda, 2017. 12, How to build your own
Ethereum based ERC20 Token and launch an ICO in
next 20 minutes, hashnode.com
pragma solidity ^0.4.4;
contract Token {
function totalSupply() constant returns (uint256 supply) {}
function balanceOf(address _owner) constant returns
(uint256 balance) {}
function transfer(address _to, uint256 _value) returns (bool
success) {}
function transferFrom(address _from, address _to, uint256
_value) returns (bool success) {}
function approve(address _spender, uint256 _value) returns
(bool success) {}
function allowance(address _owner, address _spender)
constant returns (uint256 remaining) {}
event Transfer(address indexed _from, address indexed _to,
uint256 _value);
event Approval(address indexed _owner, address indexed
_spender, uint256 _value);
}
contract StandardToken is Token {
function transfer(address _to, uint256 _value) returns (bool
success) {
if (balances[msg.sender] >= _value && _value > 0) {
balances[msg.sender] -= _value;
balances[_to] += _value;
Transfer(msg.sender, _to, _value);
return true;
} else { return false; }
}
function transferFrom(address _from, address _to,
uint256 _value) returns (bool success) {
if (balances[_from] >= _value &&
allowed[_from][msg.sender] >= _value && _value > 0) {
balances[_to] += _value;
balances[_from] -= _value;
allowed[_from][msg.sender] -= _value;
Transfer(_from, _to, _value);
return true;
} else { return false; }
}
function balanceOf(address _owner) constant returns
(uint256 balance) {
return balances[_owner];
}
function approve(address _spender, uint256 _value)
returns (bool success) {
allowed[msg.sender][_spender] = _value;
Approval(msg.sender, _spender, _value);
return true;
}
function allowance(address _owner, address _spender)
constant returns (uint256 remaining) {
return allowed[_owner][_spender];
}
mapping (address => uint256) balances;
mapping (address => mapping (address => uint256))
allowed;
uint256 public totalSupply;
Coding Your Token
Blockchain-based smart contract
KICT
Sandeep Panda, 2017. 12, How to build your own
Ethereum based ERC20 Token and launch an ICO in
next 20 minutes, hashnode.com
Create Wallet by using Mist, MetaMask(Chrome) etc
Blockchain-based smart contract
KICT
Sandeep Panda, 2017. 12, How to build your own
Ethereum based ERC20 Token and launch an ICO in
next 20 minutes, hashnode.com
Remix IDE to compile your Token
Blockchain-based smart contract
KICT
Sandeep Panda, 2017. 12, How to build your own
Ethereum based ERC20 Token and launch an ICO in
next 20 minutes, hashnode.com
Verify and publish the Token
Blockchain-based smart contract
KICT
Sandeep Panda, 2017. 12, How to build your own
Ethereum based ERC20 Token and launch an ICO in
next 20 minutes, hashnode.com
Test
Blockchain-based smart contract
KICT
Sandeep Panda, 2017. 12, How to build your own
Ethereum based ERC20 Token and launch an ICO in
next 20 minutes, hashnode.com
For ICO, develop webpage by using web3.js
Use cases
Home
Building
Infra
City
Energy
FM/OM
Automation
Safety
Smart
construction
based on
contract
KICT
Blockchain use case – smart city
Smart city with Blockchain
KICT
Blockchain use case – IoT service
Blockchain based IoT service
KICT
Blockchain use case – BIM and contract
Blockchain based BIM
KICT
Blockchain use case – BIM and contract
Bitrent ecosystem
KICT
https://bitrent.io/
Blockchain use case – BIM token
Bitrent ecosystem
KICT
https://bitrent.io/
Blockchain use case - COBie
COBie blockchain
KICT
Conclusion
https://www.i-
scoop.eu/industry-4-0/
IoT + BIM
Big data
AI / ML
VR/AR
Robotics
Smart contract
based on Blockchain
1. 강태욱, 비트코인 소스 코드 빌드, 사용 및 블록체인 코드 구조 분석, daddy maker
2. 강태욱, 임지순 역, 2015.2, 스마트 홈 오토메이션, 씨아이알
3. 강태욱, 현소영 역, 2014.12, 스마트 빌딩 시스템, 씨아이알
4. 강태욱, 김호중, 2014.1, BIM기반 건축 협업 디자인, SpaceTime
5. 강태욱, 2011.6, BIM의 원리, SpaceTime
6. Alan Safe, 2016.2.12, How the Internet of Things is Impacting the Construction Industry, For Construction Pros.com
7. Rachel Burger, 2015.7.28, Three Ways the Internet of Things Can Benefit Your Construction Project, Construction
Management
8. Jacqi Levy, 2016.4.28, 4 BIG ways the IoT is impacting design and construction, Internet of Things blog, IBM
9. whitelight group, 2014.8.18, How the Internet of Things is transforming the construction industry
10. Rachel Burger, 2016.8.5, How "The Internet of Things" is Affecting the Construction Industry, the balance.com
11. AIG, Human Condition Safety: Using Sensors to Improve Worker Safety
12. Niina Gromov, 2015.11.23, Offering Value through Internet of Things Case: Construction Companies in Finland, School of
Science, Aalto University
13. Wipro Digital, 2016.4.1, CASE STUDY: INCREASING CUSTOMER VALUE THROUGH IOT FOR JCB INDIA
14. Monitor Deloitte, 2015.7, Every. Thing. Connected.
15. Laura Black, 2015.8.12, An Inside Look at Autodesk’s Project Aquila, ConstructionTech
16. Jeff Walsh, 2015.10.1, Human Condition Aims to Transform Construction-Site Safety With Wearables, Line shape space.com
17. Insights, IoT Logistics Are Transforming the Trucking Industry
18. Chris Topham, 2015.9.10, Case Study: Northumbria Specialist Care Hospital Pushes KNX into the IoT, Abtec Building
Technologies
19. Mike Chino, 2015.11.6, Intel’s Smart Tiny House packs futuristic technology into 264 square feet, inhabitat
20. Wanda Lau, 2016.5.9, KieranTimberlake Offers a New Tool for Architects Wanting an In on IoT
21. CADDIGEST, 2016.7.7, IBM Watson IoT Platform to Add Intelligence to Buildings Worldwide
Reference
KICT

More Related Content

What's hot

Block chain 101 what it is, why it matters
Block chain 101  what it is, why it mattersBlock chain 101  what it is, why it matters
Block chain 101 what it is, why it mattersPaul Brody
 
Adopting Blockchain for Alternative Energy access slides
Adopting Blockchain for Alternative Energy access slidesAdopting Blockchain for Alternative Energy access slides
Adopting Blockchain for Alternative Energy access slidesNigeria Alternative Energy Expo
 
Solutions Architect's Handbook 2nd Edition - Book Review
Solutions Architect's Handbook 2nd Edition - Book ReviewSolutions Architect's Handbook 2nd Edition - Book Review
Solutions Architect's Handbook 2nd Edition - Book ReviewAshraf Fouad
 
Blockchain HyperLedger Fabric Internals - Clavent
Blockchain HyperLedger Fabric Internals - ClaventBlockchain HyperLedger Fabric Internals - Clavent
Blockchain HyperLedger Fabric Internals - ClaventAraf Karsh Hamid
 
Magister Advisors - Blockchain & Bitcoin in 2016 - A Survey Of Global Leaders
Magister Advisors - Blockchain & Bitcoin in 2016 - A Survey Of Global LeadersMagister Advisors - Blockchain & Bitcoin in 2016 - A Survey Of Global Leaders
Magister Advisors - Blockchain & Bitcoin in 2016 - A Survey Of Global LeadersJeremy Millar
 
Enterprise Architecture in Strategy Deployment
Enterprise Architecture in Strategy DeploymentEnterprise Architecture in Strategy Deployment
Enterprise Architecture in Strategy DeploymentJouko Poutanen
 
Bitcoin-allokaation asymmetrinen tuotto-riskiprofiili perinteisissä salkussa
 Bitcoin-allokaation asymmetrinen tuotto-riskiprofiili perinteisissä salkussa Bitcoin-allokaation asymmetrinen tuotto-riskiprofiili perinteisissä salkussa
Bitcoin-allokaation asymmetrinen tuotto-riskiprofiili perinteisissä salkussaThomas Brand
 
Microservice - Up to 500k CCU
Microservice - Up to 500k CCUMicroservice - Up to 500k CCU
Microservice - Up to 500k CCUViet Tran
 
Applying Blockchain to the Energy Industry
Applying Blockchain to the Energy IndustryApplying Blockchain to the Energy Industry
Applying Blockchain to the Energy IndustryIndigo Advisory Group
 
On Engineering Economic Systems
On Engineering Economic SystemsOn Engineering Economic Systems
On Engineering Economic SystemsMichael Zargham
 
Blockchain and Internet of Things
Blockchain and Internet of ThingsBlockchain and Internet of Things
Blockchain and Internet of ThingsValerie Lampkin
 
Challenges of Blockchain Technology for the Enterprise
Challenges of Blockchain Technology for the EnterpriseChallenges of Blockchain Technology for the Enterprise
Challenges of Blockchain Technology for the EnterpriseEugene Aseev
 
Distributed Transaction in Microservices.pdf
Distributed Transaction in Microservices.pdfDistributed Transaction in Microservices.pdf
Distributed Transaction in Microservices.pdfrony setyawansyah
 
비트코인으로 이해하는 블록체인 기술
비트코인으로 이해하는 블록체인 기술비트코인으로 이해하는 블록체인 기술
비트코인으로 이해하는 블록체인 기술Seong-Bok Lee
 
Agile For Sustainability
Agile For SustainabilityAgile For Sustainability
Agile For SustainabilityEmiliano Soldi
 
Quant - Interchain Development And Cross-Chain Protocols. BlockchainLive 2018
Quant - Interchain Development And Cross-Chain Protocols. BlockchainLive 2018Quant - Interchain Development And Cross-Chain Protocols. BlockchainLive 2018
Quant - Interchain Development And Cross-Chain Protocols. BlockchainLive 2018Gilbert Verdian
 
How First Principles, Advice & AI is killing Banking
How First Principles, Advice & AI is killing BankingHow First Principles, Advice & AI is killing Banking
How First Principles, Advice & AI is killing BankingBrett King
 
Blockchain-Based Transformation: A Gartner Trend Insight Report
Blockchain-Based Transformation: A Gartner Trend Insight ReportBlockchain-Based Transformation: A Gartner Trend Insight Report
Blockchain-Based Transformation: A Gartner Trend Insight ReportSantiago Rivera González
 

What's hot (20)

Block chain 101 what it is, why it matters
Block chain 101  what it is, why it mattersBlock chain 101  what it is, why it matters
Block chain 101 what it is, why it matters
 
Adopting Blockchain for Alternative Energy access slides
Adopting Blockchain for Alternative Energy access slidesAdopting Blockchain for Alternative Energy access slides
Adopting Blockchain for Alternative Energy access slides
 
Solutions Architect's Handbook 2nd Edition - Book Review
Solutions Architect's Handbook 2nd Edition - Book ReviewSolutions Architect's Handbook 2nd Edition - Book Review
Solutions Architect's Handbook 2nd Edition - Book Review
 
Blockchain HyperLedger Fabric Internals - Clavent
Blockchain HyperLedger Fabric Internals - ClaventBlockchain HyperLedger Fabric Internals - Clavent
Blockchain HyperLedger Fabric Internals - Clavent
 
Magister Advisors - Blockchain & Bitcoin in 2016 - A Survey Of Global Leaders
Magister Advisors - Blockchain & Bitcoin in 2016 - A Survey Of Global LeadersMagister Advisors - Blockchain & Bitcoin in 2016 - A Survey Of Global Leaders
Magister Advisors - Blockchain & Bitcoin in 2016 - A Survey Of Global Leaders
 
Enterprise Architecture in Strategy Deployment
Enterprise Architecture in Strategy DeploymentEnterprise Architecture in Strategy Deployment
Enterprise Architecture in Strategy Deployment
 
Bitcoin-allokaation asymmetrinen tuotto-riskiprofiili perinteisissä salkussa
 Bitcoin-allokaation asymmetrinen tuotto-riskiprofiili perinteisissä salkussa Bitcoin-allokaation asymmetrinen tuotto-riskiprofiili perinteisissä salkussa
Bitcoin-allokaation asymmetrinen tuotto-riskiprofiili perinteisissä salkussa
 
Microservice - Up to 500k CCU
Microservice - Up to 500k CCUMicroservice - Up to 500k CCU
Microservice - Up to 500k CCU
 
Power-up services with gRPC
Power-up services with gRPCPower-up services with gRPC
Power-up services with gRPC
 
Applying Blockchain to the Energy Industry
Applying Blockchain to the Energy IndustryApplying Blockchain to the Energy Industry
Applying Blockchain to the Energy Industry
 
On Engineering Economic Systems
On Engineering Economic SystemsOn Engineering Economic Systems
On Engineering Economic Systems
 
Blockchain and Internet of Things
Blockchain and Internet of ThingsBlockchain and Internet of Things
Blockchain and Internet of Things
 
Challenges of Blockchain Technology for the Enterprise
Challenges of Blockchain Technology for the EnterpriseChallenges of Blockchain Technology for the Enterprise
Challenges of Blockchain Technology for the Enterprise
 
Distributed Transaction in Microservices.pdf
Distributed Transaction in Microservices.pdfDistributed Transaction in Microservices.pdf
Distributed Transaction in Microservices.pdf
 
비트코인으로 이해하는 블록체인 기술
비트코인으로 이해하는 블록체인 기술비트코인으로 이해하는 블록체인 기술
비트코인으로 이해하는 블록체인 기술
 
Agile For Sustainability
Agile For SustainabilityAgile For Sustainability
Agile For Sustainability
 
Quant - Interchain Development And Cross-Chain Protocols. BlockchainLive 2018
Quant - Interchain Development And Cross-Chain Protocols. BlockchainLive 2018Quant - Interchain Development And Cross-Chain Protocols. BlockchainLive 2018
Quant - Interchain Development And Cross-Chain Protocols. BlockchainLive 2018
 
How First Principles, Advice & AI is killing Banking
How First Principles, Advice & AI is killing BankingHow First Principles, Advice & AI is killing Banking
How First Principles, Advice & AI is killing Banking
 
Layer 2 Scaling Solutions
Layer 2 Scaling SolutionsLayer 2 Scaling Solutions
Layer 2 Scaling Solutions
 
Blockchain-Based Transformation: A Gartner Trend Insight Report
Blockchain-Based Transformation: A Gartner Trend Insight ReportBlockchain-Based Transformation: A Gartner Trend Insight Report
Blockchain-Based Transformation: A Gartner Trend Insight Report
 

Similar to 블록체인 기반 건설 스마트 서비스와 계약

4차산업혁명과 건설, 그리고 블록체인
4차산업혁명과 건설, 그리고 블록체인4차산업혁명과 건설, 그리고 블록체인
4차산업혁명과 건설, 그리고 블록체인Tae wook kang
 
건설 스타트업과 오픈소스
건설 스타트업과 오픈소스건설 스타트업과 오픈소스
건설 스타트업과 오픈소스Tae wook kang
 
Blockchain Economic Theory
Blockchain Economic TheoryBlockchain Economic Theory
Blockchain Economic TheoryMelanie Swan
 
IoT 기반 건설 지능화와 BIM
IoT 기반 건설 지능화와 BIMIoT 기반 건설 지능화와 BIM
IoT 기반 건설 지능화와 BIMTae wook kang
 
Steve Bennett .Net Architect/Developer Resume
Steve Bennett .Net Architect/Developer ResumeSteve Bennett .Net Architect/Developer Resume
Steve Bennett .Net Architect/Developer Resume?? Stephen Bennett ??
 
CWIN17 Rome / blockchain
CWIN17 Rome / blockchainCWIN17 Rome / blockchain
CWIN17 Rome / blockchainCapgemini
 
apidays LIVE Australia - From micro to macro-coordination through domain-cent...
apidays LIVE Australia - From micro to macro-coordination through domain-cent...apidays LIVE Australia - From micro to macro-coordination through domain-cent...
apidays LIVE Australia - From micro to macro-coordination through domain-cent...apidays
 
Catalogue ditriot consulting
Catalogue ditriot consultingCatalogue ditriot consulting
Catalogue ditriot consultingIlyes Abdelmlak
 
ICON Project 101 - Messari Mainnet 2020 Presentation
ICON Project 101 - Messari Mainnet 2020 PresentationICON Project 101 - Messari Mainnet 2020 Presentation
ICON Project 101 - Messari Mainnet 2020 PresentationICON Foundation
 
20151029 compose virtual_iot_meetup
20151029 compose virtual_iot_meetup20151029 compose virtual_iot_meetup
20151029 compose virtual_iot_meetupIker Larizgoitia
 
2017 06-08 2nd BIG IoT Webinar
2017 06-08 2nd BIG IoT Webinar2017 06-08 2nd BIG IoT Webinar
2017 06-08 2nd BIG IoT WebinarBIG IoT Project
 
Service composition for IP smart object using realtime Web protocols
Service composition for IP smart object using realtime Web protocolsService composition for IP smart object using realtime Web protocols
Service composition for IP smart object using realtime Web protocolsmaryam dana
 
Mobile and Social CPS including Augmented Reality
Mobile and Social CPS including Augmented RealityMobile and Social CPS including Augmented Reality
Mobile and Social CPS including Augmented RealityBob Marcus
 
2017 06-01 1st BIG IoT Webinar
2017 06-01 1st BIG IoT Webinar2017 06-01 1st BIG IoT Webinar
2017 06-01 1st BIG IoT WebinarBIG IoT Project
 
Assignment2 : SMART CITIES
Assignment2 : SMART CITIESAssignment2 : SMART CITIES
Assignment2 : SMART CITIESSho Ikeda
 

Similar to 블록체인 기반 건설 스마트 서비스와 계약 (20)

4차산업혁명과 건설, 그리고 블록체인
4차산업혁명과 건설, 그리고 블록체인4차산업혁명과 건설, 그리고 블록체인
4차산업혁명과 건설, 그리고 블록체인
 
건설 스타트업과 오픈소스
건설 스타트업과 오픈소스건설 스타트업과 오픈소스
건설 스타트업과 오픈소스
 
Blockchain with iot
Blockchain with iotBlockchain with iot
Blockchain with iot
 
Blockchain Economic Theory
Blockchain Economic TheoryBlockchain Economic Theory
Blockchain Economic Theory
 
IoT 기반 건설 지능화와 BIM
IoT 기반 건설 지능화와 BIMIoT 기반 건설 지능화와 BIM
IoT 기반 건설 지능화와 BIM
 
Steve Bennett .Net Architect/Developer Resume
Steve Bennett .Net Architect/Developer ResumeSteve Bennett .Net Architect/Developer Resume
Steve Bennett .Net Architect/Developer Resume
 
CWIN17 Rome / blockchain
CWIN17 Rome / blockchainCWIN17 Rome / blockchain
CWIN17 Rome / blockchain
 
apidays LIVE Australia - From micro to macro-coordination through domain-cent...
apidays LIVE Australia - From micro to macro-coordination through domain-cent...apidays LIVE Australia - From micro to macro-coordination through domain-cent...
apidays LIVE Australia - From micro to macro-coordination through domain-cent...
 
Catalogue ditriot consulting
Catalogue ditriot consultingCatalogue ditriot consulting
Catalogue ditriot consulting
 
ICON Project 101 - Messari Mainnet 2020 Presentation
ICON Project 101 - Messari Mainnet 2020 PresentationICON Project 101 - Messari Mainnet 2020 Presentation
ICON Project 101 - Messari Mainnet 2020 Presentation
 
20151029 compose virtual_iot_meetup
20151029 compose virtual_iot_meetup20151029 compose virtual_iot_meetup
20151029 compose virtual_iot_meetup
 
2017 06-08 2nd BIG IoT Webinar
2017 06-08 2nd BIG IoT Webinar2017 06-08 2nd BIG IoT Webinar
2017 06-08 2nd BIG IoT Webinar
 
Smart Cities
Smart CitiesSmart Cities
Smart Cities
 
IoT and Embedded OS Lecture - Cristian Toma and George Iosif
IoT and Embedded OS Lecture - Cristian Toma and George IosifIoT and Embedded OS Lecture - Cristian Toma and George Iosif
IoT and Embedded OS Lecture - Cristian Toma and George Iosif
 
Service composition for IP smart object using realtime Web protocols
Service composition for IP smart object using realtime Web protocolsService composition for IP smart object using realtime Web protocols
Service composition for IP smart object using realtime Web protocols
 
Encode Club Hackathon
Encode Club Hackathon  Encode Club Hackathon
Encode Club Hackathon
 
Mobile and Social CPS including Augmented Reality
Mobile and Social CPS including Augmented RealityMobile and Social CPS including Augmented Reality
Mobile and Social CPS including Augmented Reality
 
2017 06-01 1st BIG IoT Webinar
2017 06-01 1st BIG IoT Webinar2017 06-01 1st BIG IoT Webinar
2017 06-01 1st BIG IoT Webinar
 
Assignment2 : SMART CITIES
Assignment2 : SMART CITIESAssignment2 : SMART CITIES
Assignment2 : SMART CITIES
 
Assignment2 smart city
Assignment2 smart cityAssignment2 smart city
Assignment2 smart city
 

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
 
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
 
도시 인프라 공간정보 데이터 커넥션-통합 기술 표준화를 위한 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
 
스마트시티 프레임웍과 기술분류체계
스마트시티 프레임웍과 기술분류체계스마트시티 프레임웍과 기술분류체계
스마트시티 프레임웍과 기술분류체계Tae wook kang
 
스마트시티 공간정보 서비스 지원을 위한 BIM-GIS 객체 맵핑 표준
스마트시티 공간정보 서비스 지원을 위한 BIM-GIS 객체 맵핑 표준스마트시티 공간정보 서비스 지원을 위한 BIM-GIS 객체 맵핑 표준
스마트시티 공간정보 서비스 지원을 위한 BIM-GIS 객체 맵핑 표준Tae wook kang
 
연구원 체험교실 프로그램 - 스케치업으로 만드는 우리 집 설계
연구원 체험교실 프로그램 - 스케치업으로 만드는 우리 집 설계연구원 체험교실 프로그램 - 스케치업으로 만드는 우리 집 설계
연구원 체험교실 프로그램 - 스케치업으로 만드는 우리 집 설계Tae 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
 
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
 
도시 인프라 공간정보 데이터 커넥션-통합 기술 표준화를 위한 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차원 이미지 스캔 역설계 기술 전망 및 건설 활용
 
스마트시티 프레임웍과 기술분류체계
스마트시티 프레임웍과 기술분류체계스마트시티 프레임웍과 기술분류체계
스마트시티 프레임웍과 기술분류체계
 
스마트시티 공간정보 서비스 지원을 위한 BIM-GIS 객체 맵핑 표준
스마트시티 공간정보 서비스 지원을 위한 BIM-GIS 객체 맵핑 표준스마트시티 공간정보 서비스 지원을 위한 BIM-GIS 객체 맵핑 표준
스마트시티 공간정보 서비스 지원을 위한 BIM-GIS 객체 맵핑 표준
 
연구원 체험교실 프로그램 - 스케치업으로 만드는 우리 집 설계
연구원 체험교실 프로그램 - 스케치업으로 만드는 우리 집 설계연구원 체험교실 프로그램 - 스케치업으로 만드는 우리 집 설계
연구원 체험교실 프로그램 - 스케치업으로 만드는 우리 집 설계
 

Recently uploaded

Study on Air-Water & Water-Water Heat Exchange in a Finned Tube Exchanger
Study on Air-Water & Water-Water Heat Exchange in a Finned Tube ExchangerStudy on Air-Water & Water-Water Heat Exchange in a Finned Tube Exchanger
Study on Air-Water & Water-Water Heat Exchange in a Finned Tube ExchangerAnamika Sarkar
 
Past, Present and Future of Generative AI
Past, Present and Future of Generative AIPast, Present and Future of Generative AI
Past, Present and Future of Generative AIabhishek36461
 
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escortsranjana rawat
 
Architect Hassan Khalil Portfolio for 2024
Architect Hassan Khalil Portfolio for 2024Architect Hassan Khalil Portfolio for 2024
Architect Hassan Khalil Portfolio for 2024hassan khalil
 
Application of Residue Theorem to evaluate real integrations.pptx
Application of Residue Theorem to evaluate real integrations.pptxApplication of Residue Theorem to evaluate real integrations.pptx
Application of Residue Theorem to evaluate real integrations.pptx959SahilShah
 
VICTOR MAESTRE RAMIREZ - Planetary Defender on NASA's Double Asteroid Redirec...
VICTOR MAESTRE RAMIREZ - Planetary Defender on NASA's Double Asteroid Redirec...VICTOR MAESTRE RAMIREZ - Planetary Defender on NASA's Double Asteroid Redirec...
VICTOR MAESTRE RAMIREZ - Planetary Defender on NASA's Double Asteroid Redirec...VICTOR MAESTRE RAMIREZ
 
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130Suhani Kapoor
 
CCS355 Neural Network & Deep Learning Unit II Notes with Question bank .pdf
CCS355 Neural Network & Deep Learning Unit II Notes with Question bank .pdfCCS355 Neural Network & Deep Learning Unit II Notes with Question bank .pdf
CCS355 Neural Network & Deep Learning Unit II Notes with Question bank .pdfAsst.prof M.Gokilavani
 
HARMONY IN THE NATURE AND EXISTENCE - Unit-IV
HARMONY IN THE NATURE AND EXISTENCE - Unit-IVHARMONY IN THE NATURE AND EXISTENCE - Unit-IV
HARMONY IN THE NATURE AND EXISTENCE - Unit-IVRajaP95
 
College Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
College Call Girls Nashik Nehal 7001305949 Independent Escort Service NashikCollege Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
College Call Girls Nashik Nehal 7001305949 Independent Escort Service NashikCall Girls in Nagpur High Profile
 
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur EscortsHigh Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur EscortsCall Girls in Nagpur High Profile
 
CCS355 Neural Network & Deep Learning UNIT III notes and Question bank .pdf
CCS355 Neural Network & Deep Learning UNIT III notes and Question bank .pdfCCS355 Neural Network & Deep Learning UNIT III notes and Question bank .pdf
CCS355 Neural Network & Deep Learning UNIT III notes and Question bank .pdfAsst.prof M.Gokilavani
 
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...Soham Mondal
 
Internship report on mechanical engineering
Internship report on mechanical engineeringInternship report on mechanical engineering
Internship report on mechanical engineeringmalavadedarshan25
 
power system scada applications and uses
power system scada applications and usespower system scada applications and uses
power system scada applications and usesDevarapalliHaritha
 
microprocessor 8085 and its interfacing
microprocessor 8085  and its interfacingmicroprocessor 8085  and its interfacing
microprocessor 8085 and its interfacingjaychoudhary37
 
Oxy acetylene welding presentation note.
Oxy acetylene welding presentation note.Oxy acetylene welding presentation note.
Oxy acetylene welding presentation note.eptoze12
 
Biology for Computer Engineers Course Handout.pptx
Biology for Computer Engineers Course Handout.pptxBiology for Computer Engineers Course Handout.pptx
Biology for Computer Engineers Course Handout.pptxDeepakSakkari2
 

Recently uploaded (20)

Study on Air-Water & Water-Water Heat Exchange in a Finned Tube Exchanger
Study on Air-Water & Water-Water Heat Exchange in a Finned Tube ExchangerStudy on Air-Water & Water-Water Heat Exchange in a Finned Tube Exchanger
Study on Air-Water & Water-Water Heat Exchange in a Finned Tube Exchanger
 
Past, Present and Future of Generative AI
Past, Present and Future of Generative AIPast, Present and Future of Generative AI
Past, Present and Future of Generative AI
 
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
 
Architect Hassan Khalil Portfolio for 2024
Architect Hassan Khalil Portfolio for 2024Architect Hassan Khalil Portfolio for 2024
Architect Hassan Khalil Portfolio for 2024
 
Application of Residue Theorem to evaluate real integrations.pptx
Application of Residue Theorem to evaluate real integrations.pptxApplication of Residue Theorem to evaluate real integrations.pptx
Application of Residue Theorem to evaluate real integrations.pptx
 
VICTOR MAESTRE RAMIREZ - Planetary Defender on NASA's Double Asteroid Redirec...
VICTOR MAESTRE RAMIREZ - Planetary Defender on NASA's Double Asteroid Redirec...VICTOR MAESTRE RAMIREZ - Planetary Defender on NASA's Double Asteroid Redirec...
VICTOR MAESTRE RAMIREZ - Planetary Defender on NASA's Double Asteroid Redirec...
 
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130
 
CCS355 Neural Network & Deep Learning Unit II Notes with Question bank .pdf
CCS355 Neural Network & Deep Learning Unit II Notes with Question bank .pdfCCS355 Neural Network & Deep Learning Unit II Notes with Question bank .pdf
CCS355 Neural Network & Deep Learning Unit II Notes with Question bank .pdf
 
HARMONY IN THE NATURE AND EXISTENCE - Unit-IV
HARMONY IN THE NATURE AND EXISTENCE - Unit-IVHARMONY IN THE NATURE AND EXISTENCE - Unit-IV
HARMONY IN THE NATURE AND EXISTENCE - Unit-IV
 
College Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
College Call Girls Nashik Nehal 7001305949 Independent Escort Service NashikCollege Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
College Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
 
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur EscortsHigh Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
 
CCS355 Neural Network & Deep Learning UNIT III notes and Question bank .pdf
CCS355 Neural Network & Deep Learning UNIT III notes and Question bank .pdfCCS355 Neural Network & Deep Learning UNIT III notes and Question bank .pdf
CCS355 Neural Network & Deep Learning UNIT III notes and Question bank .pdf
 
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...
 
Internship report on mechanical engineering
Internship report on mechanical engineeringInternship report on mechanical engineering
Internship report on mechanical engineering
 
power system scada applications and uses
power system scada applications and usespower system scada applications and uses
power system scada applications and uses
 
9953056974 Call Girls In South Ex, Escorts (Delhi) NCR.pdf
9953056974 Call Girls In South Ex, Escorts (Delhi) NCR.pdf9953056974 Call Girls In South Ex, Escorts (Delhi) NCR.pdf
9953056974 Call Girls In South Ex, Escorts (Delhi) NCR.pdf
 
microprocessor 8085 and its interfacing
microprocessor 8085  and its interfacingmicroprocessor 8085  and its interfacing
microprocessor 8085 and its interfacing
 
Call Us -/9953056974- Call Girls In Vikaspuri-/- Delhi NCR
Call Us -/9953056974- Call Girls In Vikaspuri-/- Delhi NCRCall Us -/9953056974- Call Girls In Vikaspuri-/- Delhi NCR
Call Us -/9953056974- Call Girls In Vikaspuri-/- Delhi NCR
 
Oxy acetylene welding presentation note.
Oxy acetylene welding presentation note.Oxy acetylene welding presentation note.
Oxy acetylene welding presentation note.
 
Biology for Computer Engineers Course Handout.pptx
Biology for Computer Engineers Course Handout.pptxBiology for Computer Engineers Course Handout.pptx
Biology for Computer Engineers Course Handout.pptx
 

블록체인 기반 건설 스마트 서비스와 계약

  • 1. Block chain and construction BIM, IoT, AI 2018.9.9 Korea Institute of Civil engineering and building Technology 강태욱 공학박사 Ph.D Taewook, Kang laputa99999@gmail.com sites.google.com/site/bimprinciple AI GPU Open data Open source Collective Intelligence TPU
  • 2. Ph.D. KICT senior researcher ISO/TC211 committee member. 11 books author
  • 4. Industry 4.0 – Construction perspective AEC-CPS CPS Structural health monitoring Track and trace Remote diagnosis Remote services Remote control Condition monitoring Systems health monitoring BIM as i-DB IoT… AI Sensor device ICBM MRRobotics Scan-Vision Smart contract based on Blockchain
  • 6. Blockchain-based smart contract KICT Albawaba business, 2017 BIM-COIN DUBAI CITY BIM principle, 2018.1, 블록체인과 BIM - 스마트 계약을 위한 블록체인 기술
  • 7. Blockchain-based smart contract KICT Blockchain & Transaction Hash (Wikipedia) Merkle Trees
  • 9. Blockchain-based smart contract KICT sykhaulage.com, ontract Mining Bitcoin Tx Mine Cloud Mining
  • 10. Blockchain-based smart contract KICT 비트코인 구조 sykhaulage.com, ontract Mining Bitcoin Tx Mine Cloud Mining
  • 11. Blockchain-based smart contract KICT sykhaulage.com, ontract Mining Bitcoin Tx Mine Cloud Mining
  • 12. Blockchain-based smart contract KICT sykhaulage.com, ontract Mining Bitcoin Tx Mine Cloud Mining
  • 13. Blockchain-based smart contract KICT sykhaulage.com, ontract Mining Bitcoin Tx Mine Cloud Mining
  • 14. Blockchain-based smart contract KICT Sha256 hash bitcoin - Satoshi bitcoin, Neural network bitcoin mining Secure Hash Algorithm
  • 15. Blockchain-based smart contract KICT Learningspot, 2017, The task of Bitcoin miners 10 min
  • 16. Blockchain-based smart contract KICT Daddy Maker, 2018, 비트코인 소스 코드 빌드, 사용 및 블록체인 코드 구조 분석 2000 TX TX TREE KEY CONTRACT Merkle Trees
  • 19. Blockchain-based smart contract KICT Distributing Business Processes using Finite State Machines in the Blockchain
  • 20. Blockchain-based smart contract KICT web3j.readthedocs.io
  • 21. Blockchain-based smart contract KICT Pragma solidity ^0.4.0 Contract Lottery { uint count = 0; uint prize_money = 0; function () payable public { count++; prize_money += msg.value; if(count % 7 == 0) { msg.sender.transfer(prize_money); prize_money = 0; } } } Ethereum wiki
  • 22. Blockchain-based smart contract KICTFabio Jose Moraes, 2018, Building a Smart Contract to Sell Goods, DZone Contract + Token
  • 23. Blockchain-based smart contract KICTBlockchainHub Initial Coin Offering (ICO) or token sale refers to a type of crowdfunding campaign conducted on the blockchain.
  • 24. Blockchain-based smart contract KICT Sandeep Panda, 2017. 12, How to build your own Ethereum based ERC20 Token and launch an ICO in next 20 minutes, hashnode.com pragma solidity ^0.4.4; contract Token { function totalSupply() constant returns (uint256 supply) {} function balanceOf(address _owner) constant returns (uint256 balance) {} function transfer(address _to, uint256 _value) returns (bool success) {} function transferFrom(address _from, address _to, uint256 _value) returns (bool success) {} function approve(address _spender, uint256 _value) returns (bool success) {} function allowance(address _owner, address _spender) constant returns (uint256 remaining) {} event Transfer(address indexed _from, address indexed _to, uint256 _value); event Approval(address indexed _owner, address indexed _spender, uint256 _value); } contract StandardToken is Token { function transfer(address _to, uint256 _value) returns (bool success) { if (balances[msg.sender] >= _value && _value > 0) { balances[msg.sender] -= _value; balances[_to] += _value; Transfer(msg.sender, _to, _value); return true; } else { return false; } } function transferFrom(address _from, address _to, uint256 _value) returns (bool success) { if (balances[_from] >= _value && allowed[_from][msg.sender] >= _value && _value > 0) { balances[_to] += _value; balances[_from] -= _value; allowed[_from][msg.sender] -= _value; Transfer(_from, _to, _value); return true; } else { return false; } } function balanceOf(address _owner) constant returns (uint256 balance) { return balances[_owner]; } function approve(address _spender, uint256 _value) returns (bool success) { allowed[msg.sender][_spender] = _value; Approval(msg.sender, _spender, _value); return true; } function allowance(address _owner, address _spender) constant returns (uint256 remaining) { return allowed[_owner][_spender]; } mapping (address => uint256) balances; mapping (address => mapping (address => uint256)) allowed; uint256 public totalSupply; Coding Your Token
  • 25. Blockchain-based smart contract KICT Sandeep Panda, 2017. 12, How to build your own Ethereum based ERC20 Token and launch an ICO in next 20 minutes, hashnode.com Create Wallet by using Mist, MetaMask(Chrome) etc
  • 26. Blockchain-based smart contract KICT Sandeep Panda, 2017. 12, How to build your own Ethereum based ERC20 Token and launch an ICO in next 20 minutes, hashnode.com Remix IDE to compile your Token
  • 27. Blockchain-based smart contract KICT Sandeep Panda, 2017. 12, How to build your own Ethereum based ERC20 Token and launch an ICO in next 20 minutes, hashnode.com Verify and publish the Token
  • 28. Blockchain-based smart contract KICT Sandeep Panda, 2017. 12, How to build your own Ethereum based ERC20 Token and launch an ICO in next 20 minutes, hashnode.com Test
  • 29. Blockchain-based smart contract KICT Sandeep Panda, 2017. 12, How to build your own Ethereum based ERC20 Token and launch an ICO in next 20 minutes, hashnode.com For ICO, develop webpage by using web3.js
  • 31. Blockchain use case – smart city Smart city with Blockchain KICT
  • 32. Blockchain use case – IoT service Blockchain based IoT service KICT
  • 33. Blockchain use case – BIM and contract Blockchain based BIM KICT
  • 34. Blockchain use case – BIM and contract Bitrent ecosystem KICT https://bitrent.io/
  • 35. Blockchain use case – BIM token Bitrent ecosystem KICT https://bitrent.io/
  • 36. Blockchain use case - COBie COBie blockchain KICT
  • 37. Conclusion https://www.i- scoop.eu/industry-4-0/ IoT + BIM Big data AI / ML VR/AR Robotics Smart contract based on Blockchain
  • 38. 1. 강태욱, 비트코인 소스 코드 빌드, 사용 및 블록체인 코드 구조 분석, daddy maker 2. 강태욱, 임지순 역, 2015.2, 스마트 홈 오토메이션, 씨아이알 3. 강태욱, 현소영 역, 2014.12, 스마트 빌딩 시스템, 씨아이알 4. 강태욱, 김호중, 2014.1, BIM기반 건축 협업 디자인, SpaceTime 5. 강태욱, 2011.6, BIM의 원리, SpaceTime 6. Alan Safe, 2016.2.12, How the Internet of Things is Impacting the Construction Industry, For Construction Pros.com 7. Rachel Burger, 2015.7.28, Three Ways the Internet of Things Can Benefit Your Construction Project, Construction Management 8. Jacqi Levy, 2016.4.28, 4 BIG ways the IoT is impacting design and construction, Internet of Things blog, IBM 9. whitelight group, 2014.8.18, How the Internet of Things is transforming the construction industry 10. Rachel Burger, 2016.8.5, How "The Internet of Things" is Affecting the Construction Industry, the balance.com 11. AIG, Human Condition Safety: Using Sensors to Improve Worker Safety 12. Niina Gromov, 2015.11.23, Offering Value through Internet of Things Case: Construction Companies in Finland, School of Science, Aalto University 13. Wipro Digital, 2016.4.1, CASE STUDY: INCREASING CUSTOMER VALUE THROUGH IOT FOR JCB INDIA 14. Monitor Deloitte, 2015.7, Every. Thing. Connected. 15. Laura Black, 2015.8.12, An Inside Look at Autodesk’s Project Aquila, ConstructionTech 16. Jeff Walsh, 2015.10.1, Human Condition Aims to Transform Construction-Site Safety With Wearables, Line shape space.com 17. Insights, IoT Logistics Are Transforming the Trucking Industry 18. Chris Topham, 2015.9.10, Case Study: Northumbria Specialist Care Hospital Pushes KNX into the IoT, Abtec Building Technologies 19. Mike Chino, 2015.11.6, Intel’s Smart Tiny House packs futuristic technology into 264 square feet, inhabitat 20. Wanda Lau, 2016.5.9, KieranTimberlake Offers a New Tool for Architects Wanting an In on IoT 21. CADDIGEST, 2016.7.7, IBM Watson IoT Platform to Add Intelligence to Buildings Worldwide Reference KICT

Editor's Notes

  1. (whitelight group, 2014).
  2. 자산관리는 건설 분야에서 가장 큰 시장 중 하나이다. 자산관리는 시공된 후 획득된 자산의 유지보수, 운영 등을 포함한다. Project Aquila Demo Dec 2015 CCC(Consolidated Contractors Company)는 세계 20대 건설 업체 중 하나로 IoT 기술을 이용하고 있다(Monitor Deloitte, 2015). CCC의 IoT 기술은 실시간 시각적 정보를 세계 40국의 16,500 자산 유지보수 현황을 제공한다. 이를 통해, 11% 개선된 사전 유지보수를 할 수 있었으며, 자산 당 1,100 달러를 매년 비용 절감할 수 있었다. IBM 왓슨 연구소는 IoT 기술을 연구하고 있다(CADDIGEST, 2016). 최근, 개발한 IoT 클라우드 플랫폼을 이용해, 빌딩 작업자가 작업에 편리한 환경을 만들기 위해 노력하고 있다. 이 기술을 이용해 센서로 부터 취득한 데이터를 분석하고, 사람이 작업하기 편리한 환경을 만드는 데 사용하고 있다. IBM의 Watson IoT 플랫폼은 TRIRIGA 시설물 관리 소프트웨어와 연계되어 활용하고 있다. 이외에 시설물 관리, 환경 관리, 물류, 스마트 그리드 기반 유틸리티 관리 분야에서 큰 기회가 있다. 향후 10년 간 관련 분야에서 많은 스타트업 회사가 생겨날 것이며, 이들이 개발하는 서비스는 건설 분야에 큰 영향을 줄 것이라 생각한다.
  3. 자산관리는 건설 분야에서 가장 큰 시장 중 하나이다. 자산관리는 시공된 후 획득된 자산의 유지보수, 운영 등을 포함한다. Project Aquila Demo Dec 2015 CCC(Consolidated Contractors Company)는 세계 20대 건설 업체 중 하나로 IoT 기술을 이용하고 있다(Monitor Deloitte, 2015). CCC의 IoT 기술은 실시간 시각적 정보를 세계 40국의 16,500 자산 유지보수 현황을 제공한다. 이를 통해, 11% 개선된 사전 유지보수를 할 수 있었으며, 자산 당 1,100 달러를 매년 비용 절감할 수 있었다. IBM 왓슨 연구소는 IoT 기술을 연구하고 있다(CADDIGEST, 2016). 최근, 개발한 IoT 클라우드 플랫폼을 이용해, 빌딩 작업자가 작업에 편리한 환경을 만들기 위해 노력하고 있다. 이 기술을 이용해 센서로 부터 취득한 데이터를 분석하고, 사람이 작업하기 편리한 환경을 만드는 데 사용하고 있다. IBM의 Watson IoT 플랫폼은 TRIRIGA 시설물 관리 소프트웨어와 연계되어 활용하고 있다. 이외에 시설물 관리, 환경 관리, 물류, 스마트 그리드 기반 유틸리티 관리 분야에서 큰 기회가 있다. 향후 10년 간 관련 분야에서 많은 스타트업 회사가 생겨날 것이며, 이들이 개발하는 서비스는 건설 분야에 큰 영향을 줄 것이라 생각한다.
  4. 자산관리는 건설 분야에서 가장 큰 시장 중 하나이다. 자산관리는 시공된 후 획득된 자산의 유지보수, 운영 등을 포함한다. Project Aquila Demo Dec 2015 CCC(Consolidated Contractors Company)는 세계 20대 건설 업체 중 하나로 IoT 기술을 이용하고 있다(Monitor Deloitte, 2015). CCC의 IoT 기술은 실시간 시각적 정보를 세계 40국의 16,500 자산 유지보수 현황을 제공한다. 이를 통해, 11% 개선된 사전 유지보수를 할 수 있었으며, 자산 당 1,100 달러를 매년 비용 절감할 수 있었다. IBM 왓슨 연구소는 IoT 기술을 연구하고 있다(CADDIGEST, 2016). 최근, 개발한 IoT 클라우드 플랫폼을 이용해, 빌딩 작업자가 작업에 편리한 환경을 만들기 위해 노력하고 있다. 이 기술을 이용해 센서로 부터 취득한 데이터를 분석하고, 사람이 작업하기 편리한 환경을 만드는 데 사용하고 있다. IBM의 Watson IoT 플랫폼은 TRIRIGA 시설물 관리 소프트웨어와 연계되어 활용하고 있다. 이외에 시설물 관리, 환경 관리, 물류, 스마트 그리드 기반 유틸리티 관리 분야에서 큰 기회가 있다. 향후 10년 간 관련 분야에서 많은 스타트업 회사가 생겨날 것이며, 이들이 개발하는 서비스는 건설 분야에 큰 영향을 줄 것이라 생각한다.
  5. 자산관리는 건설 분야에서 가장 큰 시장 중 하나이다. 자산관리는 시공된 후 획득된 자산의 유지보수, 운영 등을 포함한다. Project Aquila Demo Dec 2015 CCC(Consolidated Contractors Company)는 세계 20대 건설 업체 중 하나로 IoT 기술을 이용하고 있다(Monitor Deloitte, 2015). CCC의 IoT 기술은 실시간 시각적 정보를 세계 40국의 16,500 자산 유지보수 현황을 제공한다. 이를 통해, 11% 개선된 사전 유지보수를 할 수 있었으며, 자산 당 1,100 달러를 매년 비용 절감할 수 있었다. IBM 왓슨 연구소는 IoT 기술을 연구하고 있다(CADDIGEST, 2016). 최근, 개발한 IoT 클라우드 플랫폼을 이용해, 빌딩 작업자가 작업에 편리한 환경을 만들기 위해 노력하고 있다. 이 기술을 이용해 센서로 부터 취득한 데이터를 분석하고, 사람이 작업하기 편리한 환경을 만드는 데 사용하고 있다. IBM의 Watson IoT 플랫폼은 TRIRIGA 시설물 관리 소프트웨어와 연계되어 활용하고 있다. 이외에 시설물 관리, 환경 관리, 물류, 스마트 그리드 기반 유틸리티 관리 분야에서 큰 기회가 있다. 향후 10년 간 관련 분야에서 많은 스타트업 회사가 생겨날 것이며, 이들이 개발하는 서비스는 건설 분야에 큰 영향을 줄 것이라 생각한다.
  6. 자산관리는 건설 분야에서 가장 큰 시장 중 하나이다. 자산관리는 시공된 후 획득된 자산의 유지보수, 운영 등을 포함한다. Project Aquila Demo Dec 2015 CCC(Consolidated Contractors Company)는 세계 20대 건설 업체 중 하나로 IoT 기술을 이용하고 있다(Monitor Deloitte, 2015). CCC의 IoT 기술은 실시간 시각적 정보를 세계 40국의 16,500 자산 유지보수 현황을 제공한다. 이를 통해, 11% 개선된 사전 유지보수를 할 수 있었으며, 자산 당 1,100 달러를 매년 비용 절감할 수 있었다. IBM 왓슨 연구소는 IoT 기술을 연구하고 있다(CADDIGEST, 2016). 최근, 개발한 IoT 클라우드 플랫폼을 이용해, 빌딩 작업자가 작업에 편리한 환경을 만들기 위해 노력하고 있다. 이 기술을 이용해 센서로 부터 취득한 데이터를 분석하고, 사람이 작업하기 편리한 환경을 만드는 데 사용하고 있다. IBM의 Watson IoT 플랫폼은 TRIRIGA 시설물 관리 소프트웨어와 연계되어 활용하고 있다. 이외에 시설물 관리, 환경 관리, 물류, 스마트 그리드 기반 유틸리티 관리 분야에서 큰 기회가 있다. 향후 10년 간 관련 분야에서 많은 스타트업 회사가 생겨날 것이며, 이들이 개발하는 서비스는 건설 분야에 큰 영향을 줄 것이라 생각한다.
  7. 자산관리는 건설 분야에서 가장 큰 시장 중 하나이다. 자산관리는 시공된 후 획득된 자산의 유지보수, 운영 등을 포함한다. Project Aquila Demo Dec 2015 CCC(Consolidated Contractors Company)는 세계 20대 건설 업체 중 하나로 IoT 기술을 이용하고 있다(Monitor Deloitte, 2015). CCC의 IoT 기술은 실시간 시각적 정보를 세계 40국의 16,500 자산 유지보수 현황을 제공한다. 이를 통해, 11% 개선된 사전 유지보수를 할 수 있었으며, 자산 당 1,100 달러를 매년 비용 절감할 수 있었다. IBM 왓슨 연구소는 IoT 기술을 연구하고 있다(CADDIGEST, 2016). 최근, 개발한 IoT 클라우드 플랫폼을 이용해, 빌딩 작업자가 작업에 편리한 환경을 만들기 위해 노력하고 있다. 이 기술을 이용해 센서로 부터 취득한 데이터를 분석하고, 사람이 작업하기 편리한 환경을 만드는 데 사용하고 있다. IBM의 Watson IoT 플랫폼은 TRIRIGA 시설물 관리 소프트웨어와 연계되어 활용하고 있다. 이외에 시설물 관리, 환경 관리, 물류, 스마트 그리드 기반 유틸리티 관리 분야에서 큰 기회가 있다. 향후 10년 간 관련 분야에서 많은 스타트업 회사가 생겨날 것이며, 이들이 개발하는 서비스는 건설 분야에 큰 영향을 줄 것이라 생각한다.