📦 Initialize Geulbeot structure and merge Prompts & test projects
This commit is contained in:
315
03. Code/geulbeot_10th/static/result/brief_1.html
Normal file
315
03. Code/geulbeot_10th/static/result/brief_1.html
Normal file
@@ -0,0 +1,315 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="ko">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<title>한국 토목 엔지니어링의 딜레마 - 기획서</title>
|
||||
<style>
|
||||
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@300;400;500;700;900&display=swap');
|
||||
|
||||
:root {
|
||||
--primary-blue: #3057B9;
|
||||
--gray-light: #F2F2F2;
|
||||
--gray-medium: #E6E6E6;
|
||||
--gray-dark: #666666;
|
||||
--border-light: #DDDDDD;
|
||||
--text-black: #000000;
|
||||
}
|
||||
|
||||
* {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
box-sizing: border-box;
|
||||
-webkit-print-color-adjust: exact;
|
||||
}
|
||||
|
||||
body {
|
||||
font-family: 'Noto Sans KR', sans-serif;
|
||||
background-color: #525659;
|
||||
color: var(--text-black);
|
||||
line-height: 1.35;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
padding: 10px 0;
|
||||
}
|
||||
|
||||
.sheet {
|
||||
background-color: white;
|
||||
width: 210mm;
|
||||
height: 297mm;
|
||||
padding: 20mm 20mm;
|
||||
box-shadow: 0 0 15px rgba(0,0,0,0.1);
|
||||
position: relative;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
@media print {
|
||||
body { background: none; padding: 0; }
|
||||
.sheet { box-shadow: none; margin: 0; border: none; }
|
||||
}
|
||||
|
||||
.page-header {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: flex-start;
|
||||
margin-bottom: 15px;
|
||||
font-size: 8.5pt;
|
||||
color: var(--gray-dark);
|
||||
}
|
||||
|
||||
.header-title {
|
||||
font-size: 24pt;
|
||||
font-weight: 900;
|
||||
margin-bottom: 8px;
|
||||
letter-spacing: -1.5px;
|
||||
color: #111;
|
||||
}
|
||||
|
||||
.title-divider {
|
||||
height: 4px;
|
||||
background-color: var(--primary-blue);
|
||||
width: 100%;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
|
||||
.lead-box {
|
||||
background-color: var(--gray-light);
|
||||
padding: 18px 20px;
|
||||
margin-bottom: 5px;
|
||||
border-radius: 2px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.lead-box div {
|
||||
font-size: 13pt;
|
||||
font-weight: 700;
|
||||
color: var(--primary-blue);
|
||||
letter-spacing: -0.5px;
|
||||
}
|
||||
|
||||
.lead-notes {
|
||||
font-size: 8.5pt;
|
||||
color: #777;
|
||||
margin-bottom: 20px;
|
||||
padding-left: 5px;
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
.body-content {
|
||||
flex: 1;
|
||||
}
|
||||
|
||||
.section {
|
||||
margin-bottom: 22px;
|
||||
}
|
||||
|
||||
.section-title {
|
||||
font-size: 13pt;
|
||||
font-weight: 700;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
margin-bottom: 10px;
|
||||
color: #111;
|
||||
}
|
||||
|
||||
.section-title::before {
|
||||
content: "";
|
||||
display: inline-block;
|
||||
width: 10px;
|
||||
height: 10px;
|
||||
background-color: #999;
|
||||
margin-right: 10px;
|
||||
}
|
||||
|
||||
ul {
|
||||
list-style: none;
|
||||
padding-left: 12px;
|
||||
}
|
||||
|
||||
li {
|
||||
font-size: 10pt;
|
||||
position: relative;
|
||||
margin-bottom: 6px;
|
||||
padding-left: 15px;
|
||||
color: #333;
|
||||
text-align: justify;
|
||||
}
|
||||
|
||||
li::before {
|
||||
content: "•";
|
||||
position: absolute;
|
||||
left: 0;
|
||||
color: #AAA;
|
||||
font-size: 11pt;
|
||||
}
|
||||
|
||||
table {
|
||||
width: 100%;
|
||||
border-collapse: collapse;
|
||||
margin: 8px 0;
|
||||
font-size: 9.5pt;
|
||||
border-top: 1.5px solid #333;
|
||||
}
|
||||
|
||||
th {
|
||||
background-color: var(--gray-medium);
|
||||
font-weight: 700;
|
||||
padding: 10px;
|
||||
border: 1px solid var(--border-light);
|
||||
}
|
||||
|
||||
td {
|
||||
padding: 10px;
|
||||
border: 1px solid var(--border-light);
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
.group-cell {
|
||||
background-color: #F9F9F9;
|
||||
font-weight: 700;
|
||||
width: 20%;
|
||||
text-align: center;
|
||||
color: var(--primary-blue);
|
||||
}
|
||||
|
||||
.bottom-box {
|
||||
border: 1.5px dashed var(--primary-blue);
|
||||
display: flex;
|
||||
margin-top: 15px;
|
||||
min-height: 75px;
|
||||
}
|
||||
|
||||
.bottom-left {
|
||||
width: 20%;
|
||||
background-color: #F0F4FA;
|
||||
padding: 12px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
text-align: center;
|
||||
font-weight: 700;
|
||||
font-size: 10pt;
|
||||
color: var(--primary-blue);
|
||||
}
|
||||
|
||||
.bottom-right {
|
||||
width: 80%;
|
||||
background-color: var(--gray-light);
|
||||
padding: 15px 25px;
|
||||
font-size: 10pt;
|
||||
line-height: 1.6;
|
||||
}
|
||||
|
||||
.page-footer {
|
||||
margin-top: 15px;
|
||||
padding-top: 10px;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
font-size: 8.5pt;
|
||||
color: var(--gray-dark);
|
||||
border-top: 1px solid #EEE;
|
||||
}
|
||||
|
||||
.footer-page { flex: 1; text-align: center; }
|
||||
|
||||
b { font-weight: 700; color: var(--primary-blue); }
|
||||
.keyword { font-weight: 700; color: #000; }
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div class="sheet">
|
||||
<header class="page-header">
|
||||
<div class="header-left">
|
||||
조직: <b>건설 DX 추진팀</b> / 기술혁신본부<br>
|
||||
보고: 토목 설계 소프트웨어 전환 전략 기획
|
||||
</div>
|
||||
<div class="header-right">
|
||||
문서번호: 2026-DX-003<br>
|
||||
작성일자: 2026. 02. 10.
|
||||
</div>
|
||||
</header>
|
||||
|
||||
<div class="title-block">
|
||||
<h1 class="header-title">한국 토목 엔지니어링의 딜레마 </h1>
|
||||
<div class="title-divider"></div>
|
||||
</div>
|
||||
|
||||
<div class="body-content">
|
||||
<div class="lead-box">
|
||||
<div>"AutoCAD 독점 구조의 기술적·경제적 리스크를 분석하고,<br> 3D/BIM 시대에 대응하는 단계적 전환 로드맵을 제시"</div>
|
||||
</div>
|
||||
|
||||
<div class="section">
|
||||
<div class="section-title">추진 배경 및 전략적 목적</div>
|
||||
<ul>
|
||||
<li><span class="keyword">독점 시장 구조 타파:</span> 국내 토목 설계 시장의 <b>AutoCAD 점유율 85% 이상</b>, 연간 라이선스 비용(인당 280만원) 지속 인상으로 경제적 부담 심화.</li>
|
||||
<li><span class="keyword">기술 종속 해소:</span> 비공개 독점 포맷(.dwg) 기반 성과물 관리로 <b>데이터 주권</b> 및 지식재산권 제약 발생, 장기적 기술 자립 저해.</li>
|
||||
<li><span class="keyword">토목 특성 대응:</span> AutoCAD는 건축 직교 체계에 최적화되어 토목 분야의 <b>비정형 형상</b>(지형·비탈면) 설계에 구조적 한계 존재.</li>
|
||||
<li><span class="keyword">3D/BIM 전환 대비:</span> 측량→설계→시공 간 <b>데이터 단절</b> 문제 해결 및 개방형 포맷(IFC/LandXML) 기반 워크플로우 구축 필요.</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<div class="section">
|
||||
<div class="section-title">핵심 요구사항 및 차별화 전략</div>
|
||||
<ul>
|
||||
<li><span class="keyword">비정형 지형 모델링:</span> <b>토공량 자동 산출</b> 및 3차원 지형 분석 기능을 통해 토목 고유 업무의 디지털 전환 가속.</li>
|
||||
<li><span class="keyword">원스톱 데이터 연계:</span> 측량·설계·시공 <b>전주기 데이터 흐름</b>을 단절 없이 연결하여 수작업 변환 오류 제거.</li>
|
||||
<li><span class="keyword">개방형 포맷 전환:</span> <b>IFC/LandXML</b> 국제 표준 포맷 채택으로 특정 소프트웨어 종속성 탈피 및 데이터 주권 확보.</li>
|
||||
<li><span class="keyword">국산 솔루션 육성:</span> 국내 실정에 맞는 토목 전용 솔루션 개발을 통한 <b>기술 자립</b> 및 장기적 비용 절감 실현.</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<div class="section">
|
||||
<div class="section-title">단계별 전환 로드맵</div>
|
||||
<table>
|
||||
<thead>
|
||||
<tr>
|
||||
<th>단계</th>
|
||||
<th>핵심 수행 전략</th>
|
||||
<th>적용 기술 / 기간</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td class="group-cell">현황 진단</td>
|
||||
<td>부서별 CAD 사용 현황 및 비용 구조 분석, 리스크 도출</td>
|
||||
<td><b>Q1 '26</b> / 내부 실태 조사</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="group-cell">대안 PoC</td>
|
||||
<td>Civil 3D, OpenRoads, 국산 솔루션 대상 기능 비교, 시범 적용</td>
|
||||
<td><b>Q2 '26</b> / 벤치마크</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="group-cell">파일럿 적용</td>
|
||||
<td>선정 솔루션 실 프로젝트 투입, 기존 워크플로우 호환성 검증</td>
|
||||
<td><b>Q3 '26</b> / 시범 프로젝트</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="group-cell">전사 확산</td>
|
||||
<td>교육 체계 수립, 라이선스 전환, 전 부서 단계적 롤아웃</td>
|
||||
<td><b>Q4 '26</b> / 전사 배포</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
|
||||
<div class="bottom-box">
|
||||
<div class="bottom-left">기대 효과 및<br>향후 계획</div>
|
||||
<div class="bottom-right">
|
||||
• <b>라이선스 비용</b> 연간 30% 이상 절감 및 특정 벤더 종속 리스크 해소<br>
|
||||
• 개방형 포맷 전환을 통한 <b>데이터 주권 확보</b> 및 장기적 기술 자립 기반 마련<br>
|
||||
• 3D/BIM 기반 <b>원스톱 워크플로우</b> 구축으로 설계 생산성 향상 및 오류 최소화
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<footer class="page-footer">
|
||||
<div class="footer-slogan"><span style="color:#3057B9">기술</span>로 <span style="color:#D32F2F">사람</span>의 가치를 높이고 <span style="color:#388E3C">자연</span>스러운 업무 혁신을 이룹니다</div>
|
||||
<div class="footer-page">- 1 -</div>
|
||||
<div class="footer-info">CAD Dependency & Alternative Strategy</div>
|
||||
</footer>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user