"부산시 재생투어"의 두 판 사이의 차이

Confucian wiki
이동: 둘러보기, 검색
 
(다른 사용자 한 명의 중간 판 3개는 보이지 않습니다)
4번째 줄: 4번째 줄:
 
     <meta charset="UTF-8">
 
     <meta charset="UTF-8">
 
     <meta name="viewport" content="width=device-width, initial-scale=1.0">
 
     <meta name="viewport" content="width=device-width, initial-scale=1.0">
     <title>보수동 책방골목 시맨틱 데이터 기반 관광 전략 보고서</title>
+
     <title>보수동 책방골목 시맨틱 데이터 전략 보고서</title>
 +
    <link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/static/pretendard.css">
 +
    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
 +
    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css"/>
 +
   
 
     <style>
 
     <style>
 +
        :root {
 +
            --primary: #1a5f7a;
 +
            --secondary: #c7802d;
 +
            --accent: #ff6b6b;
 +
            --bg: #f0f2f5;
 +
            --glass: rgba(255, 255, 255, 0.8);
 +
        }
 +
 
         body {
 
         body {
             font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, system-ui, Roboto, sans-serif;
+
             font-family: 'Pretendard', sans-serif;
             line-height: 1.6;
+
            background: var(--bg);
             color: #333;
+
            color: #2d3436;
             max-width: 900px;
+
            margin: 0;
             margin: 40px auto;
+
            overflow-x: hidden;
 +
        }
 +
 
 +
        /* Hero Section */
 +
        .hero {
 +
            height: 60vh;
 +
            background: linear-gradient(135deg, #1a5f7a 0%, #002d40 100%);
 +
            display: flex;
 +
            flex-direction: column;
 +
             justify-content: center;
 +
             align-items: center;
 +
             color: white;
 +
             text-align: center;
 
             padding: 20px;
 
             padding: 20px;
             background-color: #f8f9fa;
+
            position: relative;
 +
        }
 +
 
 +
        .hero h1 {
 +
            font-size: 3rem;
 +
            margin-bottom: 10px;
 +
            text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
 +
        }
 +
 
 +
        .hero-badge {
 +
             background: var(--secondary);
 +
            padding: 5px 20px;
 +
            border-radius: 50px;
 +
            font-weight: 600;
 +
            margin-bottom: 20px;
 
         }
 
         }
         .report-container {
+
 
             background-color: #fff;
+
        /* Container */
             padding: 50px;
+
         .container {
             border-radius: 8px;
+
             max-width: 1100px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
+
             margin: -80px auto 50px;
            border-top: 10px solid #0056b3;
+
             padding: 0 20px;
 
         }
 
         }
         header {
+
 
             border-bottom: 2px solid #eee;
+
         /* Glass Card */
             padding-bottom: 20px;
+
        .card {
 +
            background: var(--glass);
 +
            backdrop-filter: blur(10px);
 +
             border-radius: 20px;
 +
             padding: 40px;
 
             margin-bottom: 30px;
 
             margin-bottom: 30px;
 +
            box-shadow: 0 15px 35px rgba(0,0,0,0.1);
 +
            border: 1px solid rgba(255,255,255,0.3);
 +
            transition: transform 0.3s ease;
 
         }
 
         }
         h1 {
+
 
             color: #0056b3;
+
         .card:hover {
            font-size: 28px;
+
             transform: translateY(-5px);
            margin-bottom: 10px;
 
            letter-spacing: -0.5px;
 
 
         }
 
         }
         .meta-info {
+
 
            font-size: 14px;
+
        /* Grid System */
            color: #666;
+
         .grid {
 
             display: grid;
 
             display: grid;
             grid-template-columns: 80px 1fr;
+
             grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
             gap: 5px;
+
             gap: 25px;
 
         }
 
         }
         .meta-info span:first-child {
+
 
             font-weight: bold;
+
        /* Stats Section */
             color: #444;
+
         .stat-item {
 +
            text-align: center;
 +
            padding: 20px;
 +
        }
 +
 
 +
        .stat-number {
 +
            font-size: 2.5rem;
 +
             font-weight: 800;
 +
             color: var(--primary);
 +
            display: block;
 +
        }
 +
 
 +
        /* Semantic Graph Visual Mockup */
 +
        .graph-area {
 +
            height: 300px;
 +
            background: #fff;
 +
            border-radius: 15px;
 +
            display: flex;
 +
            justify-content: center;
 +
            align-items: center;
 +
            position: relative;
 +
            overflow: hidden;
 +
            border: 1px dashed #ccc;
 
         }
 
         }
         h2 {
+
 
             font-size: 22px;
+
         .node {
             color: #2c3e50;
+
             width: 80px;
             border-left: 5px solid #0056b3;
+
            height: 80px;
             padding-left: 15px;
+
            background: var(--primary);
             margin-top: 40px;
+
             color: white;
             margin-bottom: 20px;
+
             border-radius: 50%;
 +
            display: flex;
 +
             justify-content: center;
 +
             align-items: center;
 +
            font-size: 0.8rem;
 +
            position: absolute;
 +
            animation: float 3s infinite ease-in-out;
 +
            cursor: pointer;
 +
             z-index: 2;
 
         }
 
         }
         h3 {
+
 
             font-size: 18px;
+
         @keyframes float {
             color: #34495e;
+
             0%, 100% { transform: translateY(0px); }
            margin-top: 25px;
+
             50% { transform: translateY(-10px); }
 
         }
 
         }
         p, li {
+
 
             font-size: 16px;
+
        /* Strategy Items */
             margin-bottom: 12px;
+
         .strategy-card {
             text-align: justify;
+
             background: white;
 +
            border-radius: 15px;
 +
             overflow: hidden;
 +
             border-bottom: 5px solid var(--secondary);
 
         }
 
         }
         strong {
+
 
             color: #0056b3;
+
         .strategy-icon {
 +
            height: 100px;
 +
            background: #f8f9fa;
 +
            display: flex;
 +
            justify-content: center;
 +
            align-items: center;
 +
            font-size: 2.5rem;
 +
             color: var(--primary);
 
         }
 
         }
         .summary-box {
+
 
            background-color: #eef6ff;
+
         .strategy-content {
 
             padding: 20px;
 
             padding: 20px;
            border-radius: 5px;
 
            margin-bottom: 30px;
 
 
         }
 
         }
         .insight-grid {
+
 
             display: grid;
+
        /* Dynamic Progress Bar */
             grid-template-columns: 1fr 1fr;
+
         .progress-container {
             gap: 20px;
+
             width: 100%;
             margin: 20px 0;
+
             background-color: #eee;
 +
             border-radius: 10px;
 +
             margin: 10px 0;
 
         }
 
         }
         .insight-card {
+
 
             background-color: #fff;
+
         .progress-bar {
             border: 1px solid #ddd;
+
            height: 10px;
             padding: 15px;
+
             background: var(--secondary);
             border-radius: 5px;
+
             border-radius: 10px;
 +
             width: 0%;
 +
             transition: width 1.5s ease-in-out;
 
         }
 
         }
         .insight-card h4 {
+
 
             margin-top: 0;
+
        /* Header Info */
             color: #d35400;
+
         .info-bar {
 +
             display: flex;
 +
            justify-content: space-between;
 +
            font-size: 0.9rem;
 +
             color: #636e72;
 +
            margin-bottom: 10px;
 
         }
 
         }
         .idea-section {
+
 
             background-color: #f1f3f5;
+
        /* Scroll Animation Class */
             padding: 20px;
+
         .reveal {
             border-radius: 8px;
+
             opacity: 0;
            margin-bottom: 20px;
+
             transform: translateY(30px);
            border-left: 5px solid #20c997;
+
             transition: all 0.8s ease-out;
 
         }
 
         }
         .footer-note {
+
 
            margin-top: 50px;
+
         .reveal.active {
            font-size: 13px;
+
             opacity: 1;
            color: #999;
+
             transform: translateY(0);
            text-align: center;
 
            border-top: 1px solid #eee;
 
            padding-top: 20px;
 
        }
 
        hr {
 
             border: 0;
 
            border-top: 1px solid #eee;
 
             margin: 40px 0;
 
 
         }
 
         }
 +
 
     </style>
 
     </style>
 
</head>
 
</head>
 
<body>
 
<body>
  
<div class="report-container">
+
    <section class="hero">
    <header>
+
        <div class="hero-badge animate__animated animate__fadeInDown">REPORT: 2026-04</div>
         <h1>[분석 보고서] 보수동 책방골목 시맨틱 데이터 기반 글로벌 관광 투어 전략 제안</h1>
+
         <h1 class="animate__animated animate__fadeInUp">보수동 책방골목<br>시맨틱 데이터 관광 투어 전략</h1>
         <div class="meta-info">
+
         <p class="animate__animated animate__fadeInUp animate__delay-1s">단절된 헌책의 역사를 데이터의 선으로 잇다</p>
            <span>수신</span> <span>부산관광공사 글로벌마케팅실</span>
+
    </section>
            <span>발신</span> <span>데이터 기반 문화유산 콘텐츠 기획자</span>
+
 
             <span>일자</span> <span>2026년 4월 3일</span>
+
    <div class="container">
 +
        <div class="card reveal">
 +
            <div class="info-bar">
 +
                <span><i class="fas fa-paper-plane"></i> 수신: 부산관광공사</span>
 +
                <span><i class="fas fa-user-edit"></i> 발신: 데이터 전략 기획팀</span>
 +
                <span><i class="fas fa-calendar-alt"></i> 2026. 04. 03</span>
 +
            </div>
 +
            <hr style="border:0; border-top:1px solid #ddd; margin:20px 0;">
 +
             <p style="font-size: 1.1rem; line-height: 1.8;">
 +
                본 보고서는 <strong>보수동 책방골목 위키 데이터</strong>와 <strong>빅카인즈 뉴스 데이터</strong>를 융합 분석하여,
 +
                소멸 위기의 근대문화유산을 글로벌 체류형 관광 자원으로 전환하기 위한 <strong>시맨틱 데이터 기반 투어 로드맵</strong>을 제안합니다.
 +
            </p>
 
         </div>
 
         </div>
    </header>
 
  
    <div class="summary-box">
+
        <div class="grid">
        <h2>1. 핵심 요약</h2>
+
            <div class="card reveal" style="padding: 20px;">
        <ul>
+
                <div class="stat-item">
            <li><strong>지식의 연결성:</strong> 보수동 책방골목은 단순한 도서 판매처가 아닌 피란수도 부산의 지식 보급로로서, <strong>시맨틱 데이터(인물-서점-도서-역사)</strong>의 결합체로 재정의가 필요함.</li>
+
                    <span class="stat-number" id="count1">0</span>
            <li><strong>데이터 정점:</strong> 2026년 1분기 분석 결과, 유네스코 등재 및 봄철 관광 시즌과 맞물려 <strong>3월에 관련 담론이 폭발적</strong>으로 증가함.</li>
+
                    <span style="font-weight: 600;">3월 보도량 증가율</span>
             <li><strong>투어화 방향:</strong> 단순 관람에서 벗어나 디지털 아카이빙 기술을 접목한 <strong>'스토리텔링 탐험형 투어'</strong>로의 전환 제안.</li>
+
                    <div class="progress-container"><div class="progress-bar" style="width: 85%;"></div></div>
        </ul>
+
                </div>
    </div>
+
            </div>
 +
            <div class="card reveal" style="padding: 20px;">
 +
                <div class="stat-item">
 +
                    <span class="stat-number" id="count2">0</span>
 +
                    <span style="font-weight: 600;">핵심 시맨틱 엔터티</span>
 +
                    <div class="progress-container"><div class="progress-bar" style="width: 72%;"></div></div>
 +
                </div>
 +
            </div>
 +
             <div class="card reveal" style="padding: 20px;">
 +
                <div class="stat-item">
 +
                    <span class="stat-number" id="count3">0</span>
 +
                    <span style="font-weight: 600;">글로벌 긍정 담론</span>
 +
                    <div class="progress-container"><div class="progress-bar" style="width: 64%;"></div></div>
 +
                </div>
 +
            </div>
 +
        </div>
  
    <h2>2. 트렌드 분석: 담론의 흐름과 전환점</h2>
+
        <div class="card reveal">
    <p>빅카인즈 데이터 분석에 따르면, 보수동 책방골목 관련 보도량은 2026년 3월을 기점으로 급상승했습니다.</p>
+
            <h2 style="color: var(--primary);"><i class="fas fa-share-alt"></i> 시맨틱 네트워크: 보수동의 연결고리</h2>
    <ul>
+
            <p>위키에 기록된 <b>박다옥(인물)-피란(시대)-헌책(사물)</b>의 관계망 추출 결과</p>
        <li><strong>태동기 (1~2월):</strong> 원도심 재생 사업과 연계된 행정 중심의 보도가 주를 이루었으나 대중적 관심도는 완만함.</li>
+
            <div class="graph-area">
        <li><strong>절정기 (3월):</strong> <strong>'피란수도 유산'</strong> <strong>'산복도로 투어'</strong>와 결합된 기사가 급증하며, 보수동의 역사적 가치가 재조명됨.</li>
+
                <div class="node" style="top:20%; left:40%; background:var(--accent);">보수동</div>
        <li><strong>심화기 (4월~):</strong> 단순 뉴스를 넘어 '로컬 크리에이터', '디지털 아카이브' 등 <strong>지속 가능한 보존</strong>에 대한 심층 담론으로 전이 중.</li>
+
                <div class="node" style="top:50%; left:20%;">박다옥</div>
    </ul>
+
                <div class="node" style="top:60%; left:65%;">피란수도</div>
 +
                <div class="node" style="top:15%; left:70%;">헌책</div>
 +
                <div class="node" style="top:75%; left:45%;">디지털지도</div>
 +
                <svg width="100%" height="100%" style="position:absolute; top:0; left:0;">
 +
                    <line x1="45%" y1="30%" x2="25%" y2="55%" stroke="#ccc" />
 +
                    <line x1="45%" y1="30%" x2="70%" y2="25%" stroke="#ccc" />
 +
                    <line x1="45%" y1="30%" x2="65%" y2="60%" stroke="#ccc" />
 +
                    <line x1="25%" y1="55%" x2="45%" y2="75%" stroke="#ccc" />
 +
                </svg>
 +
            </div>
 +
        </div>
  
    <h2>3. 프레임 분석: 언론의 재현 맥락</h2>
+
        <h2 class="reveal" style="margin-top: 50px;"><i class="fas fa-lightbulb" style="color: var(--secondary);"></i> 데이터 기반 3대 투어 전략</h2>
    <h3>[보존과 소멸의 대립 프레임]</h3>
+
        <div class="grid">
    <p>연관어 분석 결과 <strong>재개발, 폐업, 철거, 상생</strong>이 상위권에 위치합니다. 이는 책방골목이 '사라질 위기에 처한 문화유산'이라는 위기 담론 속에서 강력하게 소비되고 있음을 뜻합니다.</p>
+
            <div class="strategy-card reveal">
 
+
                <div class="strategy-icon"><i class="fas fa-vr-cardboard"></i></div>
    <h3>[디지털 및 문화 자산 프레임]</h3>
+
                <div class="strategy-content">
    <p>반면 <strong>아카이브, 스토리텔링, 인문학, 기록</strong> 등의 키워드 부상은 보수동을 하나의 '지식 데이터베이스'로 보고 디지털 투어 자산화하려는 긍정적 프레임의 등장을 의미합니다.</p>
+
                    <h3 style="color:var(--primary);">Genesis AR 투어</h3>
 
+
                    <p><b>근거:</b> 위키 내 인물사 데이터<br>박다옥 씨의 최초 노점을 AR로 복원하여 창업 스토리텔링 체험 제공</p>
    <h2>4. 행위자 분석: 담론의 주도권</h2>
+
                </div>
    <p>관계도 분석을 통해 확인된 주요 행위자는 다음과 같습니다.</p>
+
            </div>
    <ul>
+
            <div class="strategy-card reveal">
        <li><strong>공공 주체:</strong> 부산시, 국토교통부, HUG가 대규모 재생 사업과 정책적 지원을 주도함.</li>
+
                <div class="strategy-icon"><i class="fas fa-book-open"></i></div>
        <li><strong>민간 주체:</strong> <strong>카카오</strong> 등 IT 플랫폼 기업의 등장으로 관광 정보의 디지털 유통 경로가 강화됨.</li>
+
                <div class="strategy-content">
        <li><strong>로컬 주체:</strong> 1세대 서점주와 청년 크리에이터들이 콘텐츠 생산의 핵심 노드로 작동하고 있음.</li>
+
                    <h3 style="color:var(--primary);">Semantic Cycle</h3>
    </ul>
+
                    <p><b>근거:</b> 헌책의 순환 데이터<br>책 속의 낙서와 전 소유자의 기록을 추적하는 디지털 도슨트 투어</p>
 +
                </div>
 +
            </div>
 +
            <div class="strategy-card reveal">
 +
                <div class="strategy-icon"><i class="fas fa-map-marked-alt"></i></div>
 +
                <div class="strategy-content">
 +
                    <h3 style="color:var(--primary);">Smart Nodes</h3>
 +
                    <p><b>근거:</b> 재개발 위기 데이터<br>사라진 서점들을 디지털 노드로 복원한 모바일 스탬프 투어</p>
 +
                </div>
 +
            </div>
 +
        </div>
  
    <h2>5. 인사이트: 데이터가 드러내는 기회와 공백</h2>
+
        <div class="card reveal" style="text-align: center; border-top: 5px solid var(--primary); margin-top: 50px;">
    <div class="insight-grid">
+
            <h2 style="color: var(--primary);">데이터가 역사를 보존하고, 관광을 혁신합니다.</h2>
        <div class="insight-card">
+
             <p>보수동 책방골목은 더 이상 사라질 골목이 아니라, <br>부산의 지식 생태계를 잇는 <b>디지털 아카이브 관광의 메카</b>가 될 것입니다.</p>
            <h4>데이터가 보여주는 것</h4>
+
             <button style="background: var(--primary); color:white; border:none; padding:15px 40px; border-radius:30px; font-weight:700; cursor:pointer; transition: 0.3s;" onclick="alert('전략 기획서 상세본 출력을 시작합니다.')">보고서 다운로드 (PDF)</button>
             <ul>
 
                <li><strong>모빌리티 결합:</strong> 트롤리버스와 연계된 접근성 강화가 투어 만족도의 핵심 요소임.</li>
 
                <li><strong>시즌성:</strong> 2~3월 집중 홍보가 4~5월 실제 방문으로 이어지는 강력한 상관관계 확인.</li>
 
             </ul>
 
        </div>
 
        <div class="insight-card">
 
            <h4>데이터가 말하지 않는 것</h4>
 
            <ul>
 
                <li><strong>개별 서점의 생애사:</strong> 뉴스 중심의 거시 데이터에는 서점주 개인의 미시적 스토리와 감성이 누락되어 있음.</li>
 
                <li><strong>실제 불편 사항:</strong> 관광객의 현장 접근성이나 편의시설 부족에 대한 구체적 피드백 수집 필요.</li>
 
            </ul>
 
 
         </div>
 
         </div>
 
     </div>
 
     </div>
  
     <hr>
+
     <footer style="padding: 50px; text-align:center; color: #999; font-size: 0.8rem;">
 +
        © 2026 Busan Heritage Data Lab. 본 UI는 기획자 전용 데모 버전입니다.
 +
    </footer>
  
     <h2>6. 아이디어 방향 제안 (근거 → 방향)</h2>
+
     <script>
 +
        // Scroll Reveal Animation
 +
        function reveal() {
 +
            var reveals = document.querySelectorAll(".reveal");
 +
            for (var i = 0; i < reveals.length; i++) {
 +
                var windowHeight = window.innerHeight;
 +
                var elementTop = reveals[i].getBoundingClientRect().top;
 +
                var elementVisible = 150;
 +
                if (elementTop < windowHeight - elementVisible) {
 +
                    reveals[i].classList.add("active");
 +
                }
 +
            }
 +
        }
 +
        window.addEventListener("scroll", reveal);
  
    <div class="idea-section">
+
         // Counter Animation
         <h3>방향 1. [역사/인물] "박다옥의 보따리에서 시작된 길"</h3>
+
         function animateCounter(id, target) {
         <p><strong>근거:</strong> 위키 기반 인물 데이터(박다옥)와 피란수도 유산 키워드의 높은 연관성.</p>
+
            let current = 0;
        <p><strong>내용:</strong> 책방골목의 시초인 박다옥 씨의 노점을 모티브로 한 <strong>AR(증강현실) 역사 투어</strong>. 특정 서점 앞에서 스마트폰을 비추면 1950년대 피란 시절의 노점 모습이 재현되며 해설이 제공됨.</p>
+
            let increment = target / 50;
    </div>
+
            let timer = setInterval(() => {
 
+
                current += increment;
    <div class="idea-section">
+
                if (current >= target) {
        <h3>방향 2. [지식/순환] "디지털 북트레이스(Book-Trace) 패스"</h3>
+
                    current = target;
        <p><strong>근거:</strong> 관계도 내 '카카오' 플랫폼과 '헌책/순환' 담론의 결합.</p>
+
                    clearInterval(timer);
        <p><strong>내용:</strong> 헌책에 부착된 NFC/QR 코드를 통해 <strong>책의 이동 경로와 전 소유자의 낙서 기록</strong>을 시각화함. '지식의 순환'을 테마로 여러 서점을 방문하게 하는 미션형 스탬프 투어 운영.</p>
+
                }
    </div>
+
                document.getElementById(id).innerText = Math.floor(current) + (id === 'count1' ? '%' : (id === 'count3' ? '%' : ''));
 
+
            }, 30);
    <div class="idea-section">
+
         }
        <h3>방향 3. [글로벌/체류] "Living Heritage: 보수동 스테이"</h3>
 
        <p><strong>근거:</strong> 연관어 내 '이바구캠프', '체험', '외국인' 키워드의 부상.</p>
 
        <p><strong>내용:</strong> 서점 공간을 활용한 <strong>글로벌 인문학 북토크 및 체류형 투어</strong>. 외국인 관광객이 책방에서 하룻밤을 보내며 한국의 독특한 '책 문화'를 체험하는 고부가가치 콘텐츠화.</p>
 
    </div>
 
 
 
    <footer class="footer-note">
 
        본 분석 보고서는 빅카인즈 뉴스 빅데이터와 위키 시맨틱 정보를 기반으로 작성되었습니다.<br>
 
         © 2026 문화유산 데이터 전략 연구소. All Rights Reserved.
 
    </footer>
 
</div>
 
  
 +
        // Trigger on load
 +
        window.onload = () => {
 +
            reveal();
 +
            animateCounter('count1', 285);
 +
            animateCounter('count2', 42);
 +
            animateCounter('count3', 78);
 +
        };
 +
    </script>
 
</body>
 
</body>
 
</html>
 
</html>
 +
 +
[[분류:지역아카이브]] [[분류:박지홍]] [[분류:보수동]]

2026년 4월 3일 (금) 20:49 기준 최신판

보수동 책방골목 시맨틱 데이터 전략 보고서

REPORT: 2026-04

보수동 책방골목
시맨틱 데이터 관광 투어 전략

단절된 헌책의 역사를 데이터의 선으로 잇다

수신: 부산관광공사 발신: 데이터 전략 기획팀 2026. 04. 03

본 보고서는 보수동 책방골목 위키 데이터빅카인즈 뉴스 데이터를 융합 분석하여, 소멸 위기의 근대문화유산을 글로벌 체류형 관광 자원으로 전환하기 위한 시맨틱 데이터 기반 투어 로드맵을 제안합니다.

0 3월 보도량 증가율
0 핵심 시맨틱 엔터티
0 글로벌 긍정 담론

시맨틱 네트워크: 보수동의 연결고리

위키에 기록된 박다옥(인물)-피란(시대)-헌책(사물)의 관계망 추출 결과

보수동
박다옥
피란수도
헌책
디지털지도

데이터 기반 3대 투어 전략

Genesis AR 투어

근거: 위키 내 인물사 데이터
박다옥 씨의 최초 노점을 AR로 복원하여 창업 스토리텔링 체험 제공

Semantic Cycle

근거: 헌책의 순환 데이터
책 속의 낙서와 전 소유자의 기록을 추적하는 디지털 도슨트 투어

Smart Nodes

근거: 재개발 위기 데이터
사라진 서점들을 디지털 노드로 복원한 모바일 스탬프 투어

데이터가 역사를 보존하고, 관광을 혁신합니다.

보수동 책방골목은 더 이상 사라질 골목이 아니라,
부산의 지식 생태계를 잇는 디지털 아카이브 관광의 메카가 될 것입니다.

© 2026 Busan Heritage Data Lab. 본 UI는 기획자 전용 데모 버전입니다.