// --- Nearby Stations Logic Start (Adapted from venues/detail_data.php) --- $nearby_stations = []; // Subway stations $display_stations = []; // KTX/SRT stations $subway_summary = null; $train_summary = null; // Use performance's venue data if (!empty($performance['venue_lat']) && !empty($performance['venue_lng']) && !empty($performance['venue_area'])) { $venue_lat = $performance['venue_lat']; $venue_lon = $performance['venue_lng']; $venue_area = $performance['venue_area']; // --- Subway Stations --- $subway_radius = ($venue_area === '수도권') ? 1 : 2; if (function_exists('get_nearby_subway_stations')) { $nearby_stations = get_nearby_subway_stations($conn, $venue_lat, $venue_lon, $subway_radius, $is_jp_domain); } // --- KTX/SRT Stations --- $ktx_station_most_lines = null; $ktx_station_nearest = null; $nearby_srt_station = null; $search_radius = ($venue_area === '수도권') ? 30 : 40; // KTX Logic 1: Most relevant lines $ktx_stations_candidates = []; $ktx_query_lines = " SELECT title, station_type, srt, latitude, longitude, ktx_line, ST_Distance_Sphere(point(?, ?), point(longitude, latitude)) / 1000 AS distance FROM train_stations WHERE station_type = 'ktx' AND ktx_line IS NOT NULL AND ktx_line != '' HAVING distance <= ? "; $stmt_ktx_lines = mysqli_prepare($conn, $ktx_query_lines); if ($stmt_ktx_lines) { mysqli_stmt_bind_param($stmt_ktx_lines, 'ddi', $venue_lon, $venue_lat, $search_radius); mysqli_stmt_execute($stmt_ktx_lines); $ktx_result_lines = mysqli_stmt_get_result($stmt_ktx_lines); while ($row = mysqli_fetch_assoc($ktx_result_lines)) { $lines = explode(',', trim($row['ktx_line'], ',')); $relevant_lines = ['ktx1', 'ktx3', 'ktx5', 'ktx6']; $count = 0; $found_lines = []; foreach ($lines as $line) { $trimmed_line = trim($line); if (in_array($trimmed_line, $relevant_lines) && !in_array($trimmed_line, $found_lines)) { $count++; $found_lines[] = $trimmed_line; } } if ($count > 0) { $row['relevant_line_count'] = min($count, 4); $ktx_stations_candidates[] = $row; } } mysqli_stmt_close($stmt_ktx_lines); if (!empty($ktx_stations_candidates)) { usort($ktx_stations_candidates, function($a, $b) { if ($a['relevant_line_count'] != $b['relevant_line_count']) { return $b['relevant_line_count'] <=> $a['relevant_line_count']; } return $a['distance'] <=> $b['distance']; }); $ktx_station_most_lines = $ktx_stations_candidates[0]; } } // KTX Logic 2: Nearest $ktx_query_nearest = " SELECT title, station_type, srt, latitude, longitude, ktx_line, ST_Distance_Sphere(point(?, ?), point(longitude, latitude)) / 1000 AS distance FROM train_stations WHERE station_type = 'ktx' HAVING distance <= ? ORDER BY distance ASC LIMIT 1"; $stmt_ktx_nearest = mysqli_prepare($conn, $ktx_query_nearest); if ($stmt_ktx_nearest) { mysqli_stmt_bind_param($stmt_ktx_nearest, 'ddi', $venue_lon, $venue_lat, $search_radius); mysqli_stmt_execute($stmt_ktx_nearest); $ktx_result_nearest = mysqli_stmt_get_result($stmt_ktx_nearest); $ktx_station_nearest = mysqli_fetch_assoc($ktx_result_nearest); mysqli_stmt_close($stmt_ktx_nearest); } // SRT Logic: Nearest $srt_query = " SELECT title, station_type, srt, latitude, longitude, ST_Distance_Sphere(point(?, ?), point(longitude, latitude)) / 1000 AS distance FROM train_stations WHERE station_type = 'srt' HAVING distance <= ? ORDER BY distance ASC LIMIT 1"; $stmt_srt = mysqli_prepare($conn, $srt_query); if ($stmt_srt) { mysqli_stmt_bind_param($stmt_srt, 'ddi', $venue_lon, $venue_lat, $search_radius); mysqli_stmt_execute($stmt_srt); $srt_result = mysqli_stmt_get_result($stmt_srt); $nearby_srt_station = mysqli_fetch_assoc($srt_result); mysqli_stmt_close($stmt_srt); } // Combine and filter train stations for display $added_titles = []; $icon_color = 'text-green-600'; if ($ktx_station_most_lines) { $station_info = $ktx_station_most_lines; $station_info['display_type'] = ($station_info['srt'] == 1) ? 'KTX/SRT' : 'KTX'; $station_info['icon_color'] = $icon_color; $display_stations[] = $station_info; $added_titles[] = $station_info['title']; } if ($ktx_station_nearest && !in_array($ktx_station_nearest['title'], $added_titles)) { $station_info = $ktx_station_nearest; $station_info['display_type'] = ($station_info['srt'] == 1) ? 'KTX/SRT' : 'KTX'; $station_info['icon_color'] = $icon_color; $display_stations[] = $station_info; $added_titles[] = $station_info['title']; } if ($nearby_srt_station) { if (!in_array($nearby_srt_station['title'], $added_titles)) { $station_info = $nearby_srt_station; $station_info['display_type'] = 'SRT'; $station_info['icon_color'] = $icon_color; $display_stations[] = $station_info; } else { foreach ($display_stations as $key => $station) { if ($station['title'] === $nearby_srt_station['title'] && $station['display_type'] === 'KTX') { $display_stations[$key]['display_type'] = 'KTX/SRT'; break; } } } } usort($display_stations, function($a, $b) { return $a['distance'] <=> $b['distance']; }); // Fallback: Find the absolute closest station if both arrays are still empty if (empty($nearby_stations) && empty($display_stations)) { $fallback_query = " SELECT type, title, distance, line_info, srt_flag, lat, lng FROM ( SELECT 'subway' AS type, station_name AS title, (6371 * ACOS(COS(RADIANS(?)) * COS(RADIANS(lat)) * COS(RADIANS(lng) - RADIANS(?)) + SIN(RADIANS(?)) * SIN(RADIANS(lat)))) AS distance, line_names AS line_info, NULL AS srt_flag, lat, lng FROM release_subway UNION ALL SELECT station_type AS type, title, (6371 * ACOS(COS(RADIANS(?)) * COS(RADIANS(latitude)) * COS(RADIANS(longitude) - RADIANS(?)) + SIN(RADIANS(?)) * SIN(RADIANS(latitude)))) AS distance, ktx_line AS line_info, srt AS srt_flag, latitude AS lat, longitude AS lng FROM train_stations WHERE station_type IN ('ktx', 'srt') ) AS combined_stations ORDER BY distance ASC LIMIT 1"; $stmt_fallback = mysqli_prepare($conn, $fallback_query); if ($stmt_fallback) { mysqli_stmt_bind_param($stmt_fallback, 'dddddd', $venue_lat, $venue_lon, $venue_lat, $venue_lat, $venue_lon, $venue_lat); mysqli_stmt_execute($stmt_fallback); $fallback_result = mysqli_stmt_get_result($stmt_fallback); $closest_station = mysqli_fetch_assoc($fallback_result); mysqli_stmt_close($stmt_fallback); if ($closest_station) { if ($closest_station['type'] === 'subway') { $station_data = ['station_name' => $closest_station['title'], 'distance' => $closest_station['distance'], 'line_names' => $closest_station['line_info'], 'lat' => $closest_station['lat'], 'lng' => $closest_station['lng']]; if ($is_jp_domain) { if (!function_exists('trans_station')) { @include_once '/var/www/stagepick/includes/languages/ja_station.php'; } $station_data['station_name_jp'] = function_exists('trans_station') ? trans_station($station_data['station_name']) : ''; } $nearby_stations[] = $station_data; } else { $display_type = ($closest_station['type'] === 'ktx') ? (($closest_station['srt_flag'] == 1) ? 'KTX/SRT' : 'KTX') : 'SRT'; $display_stations[] = ['title' => $closest_station['title'], 'distance' => $closest_station['distance'], 'display_type' => $display_type, 'icon_color' => 'text-green-600', 'latitude' => $closest_station['lat'], 'longitude' => $closest_station['lng']]; } } } } } // --- Nearby Stations Logic End --- ?> 2021 コピコンソツ V. イヒョヌ <ッソッモタイム> - インチョン (2021.07.21) - ステージピック

公演詳細情報

2021 커피콘서트 V. 이현우 <썸머타임> - 인천

2021 コピコンソツ V. イヒョヌ <ッソッモタイム> - インチョン

2021 커피콘서트 V. 이현우 <썸머타임> - 인천

公演紹介

특유의 웃음소리와 어눌한 말투로 대중의 사랑을 받아온 이현우는 드라마, CF, 방송인, 뮤지컬배우를 넘나드는 만능 연예인이자 싱어송라이터 가수이다. 시원한 가창력에 더욱 깊은 감성으로 돌아온 가수 이현우가 기타와 건반으로 구성된 어쿠스틱 버전을 준비해 그 진면목을 보여줄 것이다. 젠틀 발라더를 기억하는 관객들에게 큰 선물 같은 시간이 될 것이다.

最終更新: 2025年03月29日

登録日: 2024年10月14日

他の回のコンサート

2025커피콘서트II. 신현필x고희안 <시네마 인 재즈> - 인천 D-7

2025コピコンソツII. シニョンピルxコフイアン <シネマ イン チェジュ> - インチョン

2025.04.16

トンッグムヌァチェユクセント

2025커피콘서트I. 박혜경&조윤성트리오 "Flower Dance" - 인천 公演終了

2025コピコンソツI. パキェギョン&チョユンソンツリオ "Flower Dance" - インチョン

2025.03.19

トンッグムヌァチェユクセント

2024 커피콘서트 - 카리나 네뷸라 <스캣의 디바들> - 인천 公演終了

2024 コピコンソツ - カリナ ネビュルラ <スケッスイ チバデュル> - インチョン

2024.11.13

トンッグムヌァチェユクセント

2024 커피콘서트 - 킹스턴 루디스카 <스카 잔치> - 인천 公演終了

2024 コピコンソツ - キンストン ルヂスカ <スカ チャンチ> - インチョン

2024.09.25

トンッグムヌァチェユクセント

2024 커피콘서트 - 빛과 소금 <오래된 친구처럼> - 인천 公演終了

2024 コピコンソツ - ピツクァ ソグム <オレデュェン チングチョロム> - インチョン

2024.03.20

トンッグムヌァチェユクセント

2023 커피콘서트 블루스 디바, 강허달림 〈LOVE〉 - 인천 公演終了

2023 コピコンソツ プルルス チバ, カンホダルリム 〈LOVE〉 - インチョン

2023.11.22

トンッグムヌァチェユクセント

2023 커피콘서트 악단광칠 〈악단광칠 콘서트〉 - 인천 公演終了

2023 コピコンソツ アッタングァンチル 〈アッタングァンチル コンソツ〉 - インチョン

2023.08.23

トンッグムヌァチェユクセント

2023 커피콘서트 in 동구문화체육센터 김종서 〈In my life〉 - 인천 公演終了

2023 コピコンソツ in トンッグムヌァチェユクセント キムジョンソ 〈In my life〉 - インチョン

2023.07.19

トンッグムヌァチェユクセント

2022커피콘서트Ⅹ. 장필순&한동준 <크리스마스 N 포크콘서트> - 인천 公演終了

2022コピコンソツⅩ. チャンピルスン&ハンドンジュン <クリスマス N ポクコンソツ> - インチョン

2022.12.21

インチョンムヌァイェスルフェグァン

2022커피콘서트Ⅷ. 소리새 <그대 그리고 나> - 인천 公演終了

2022コピコンソツⅧ. ソリセ <クデ クリゴ ナ> - インチョン

2022.10.19

インチョンムヌァイェスルフェグァン

2021 커피콘서트Ⅹ. 홍경민 <스페셜 스테이지> - 인천 公演終了

2021 コピコンソツⅩ. ホンッギョンミン <スペショル ステイジ> - インチョン

2021.12.08

インチョンムヌァイェスルフェグァンデゴンギョンジャン

2020 커피콘서트VIII. 부미스 재즈 오딧세이 "TANGO" - 인천 公演終了

2020 コピコンソツVIII. プミス チェジュ オヂツセイ "TANGO" - インチョン

2020.10.21

インチョンムヌァイェスルフェグァンソゴンギョンジャン

2019 커피콘서트 X 로스 아미고스 "라틴 크리스마스" - 인천 公演終了

2019 コピコンソツ X ロス アミゴス "ラチン クリスマス" - インチョン

2019.12.18

インチョンムヌァイェスルフェグァン

2019 커피콘서트 VI 추가열 "포크 콘서트" - 인천 公演終了

2019 コピコンソツ VI チュガヨル "ポク コンソツ" - インチョン

2019.08.21

インチョンムヌァイェスルフェグァン

2019 커피콘서트 V 박학기 콘서트 '계절학기' - 인천 公演終了

2019 コピコンソツ V パカッキ コンソツ 'キェジョルハッキ' - インチョン

2019.07.17

インチョンムヌァイェスルフェグァンソゴンギョンジャン

2019 커피콘서트 II 김성녀의 '나의 인생, 나의 무대' - 인천 公演終了

2019 コピコンソツ II キムソンニョウイ 'ナウイ インセン, ナウイ ムデ' - インチョン

2019.04.17

インチョンムヌァイェスルフェグァン

2018 커피콘서트10 - 인천 公演終了

2018 コピコンソツ10 - インチョン

2018.12.19

インチョンムヌァイェスルフェグァンソゴンギョンジャン

2018 커피콘서트3 - 인천 公演終了

2018 コピコンソツ3 - インチョン

2018.05.16

インチョンムヌァイェスルフェグァンソゴンギョンジャン

2017 커피콘서트10 - 인천 公演終了

2017 コピコンソツ10 - インチョン

2017.12.20

インチョンムヌァイェスルフェグァンソゴンギョンジャン

2017 커피콘서트7 - 인천 公演終了

2017 コピコンソツ7 - インチョン

2017.09.20

インチョンムヌァイェスルフェグァンソゴンギョンジャン

2017 커피콘서트6 - 인천 公演終了

2017 コピコンソツ6 - インチョン

2017.08.23

インチョンムヌァイェスルフェグァンソゴンギョンジャン

2017 커피콘서트5 - 인천 公演終了

2017 コピコンソツ5 - インチョン

2017.07.19

インチョンムヌァイェスルフェグァンソゴンギョンジャン

2016 커피콘서트12 - 인천 公演終了

2016 コピコンソツ12 - インチョン

2016.12.21

インチョンムヌァイェスルフェグァンデゴンギョンジャン

2016 커피콘서트11 - 인천 公演終了

2016 コピコンソツ11 - インチョン

2016.11.16

インチョンムヌァイェスルフェグァンソゴンギョンジャン

2016 커피콘서트7 - 인천 公演終了

2016 コピコンソツ7 - インチョン

2016.07.20

インチョンムヌァイェスルフェグァンソゴンギョンジャン

2016 커피콘서트6 - 인천 公演終了

2016 コピコンソツ6 - インチョン

2016.06.15

インチョンムヌァイェスルフェグァンソゴンギョンジャン

2016 커피콘서트5 - 인천 公演終了

2016 コピコンソツ5 - インチョン

2016.05.18

インチョンムヌァイェスルフェグァンソゴンギョンジャン

2016 커피콘서트4 - 인천 公演終了

2016 コピコンソツ4 - インチョン

2016.04.20

インチョンムヌァイェスルフェグァンソゴンギョンジャン

2015 커피콘서트 12 전제덕 - 인천 公演終了

2015 コピコンソツ 12 チョンジェドッ - インチョン

2015.12.16

インチョンムヌァイェスルフェグァンソゴンギョンジャン

2015 커피콘서트 8 국립현대무용단 - 인천 公演終了

2015 コピコンソツ 8 ククリッヒョンデムヨンダン - インチョン

2015.08.19

インチョンムヌァイェスルフェグァンソゴンギョンジャン

2015 커피콘서트7 라 벤타나 - 인천 公演終了

2015 コピコンソツ7 ラ ペンタナ - インチョン

2015.07.15

インチョンムヌァイェスルフェグァンソゴンギョンジャン

2015 커피콘서트 6 임진모 - 인천 公演終了

2015 コピコンソツ 6 イムジンモ - インチョン

2015.06.17

インチョンムヌァイェスルフェグァンソゴンギョンジャン

2015 커피콘서트 3 박준면 - 인천 公演終了

2015 コピコンソツ 3 パクチュンミョン - インチョン

2015.03.18

インチョンムヌァイェスルフェグァンソゴンギョンジャン