// --- 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 --- ?> チェジュ ウァイネ ッパジダ - エンリオモリッコネ (2015.08.14) - ステージピック

公演詳細情報

재즈 와인에 빠지다 - 엔리오모리꼬네

チェジュ ウァイネ ッパジダ - エンリオモリッコネ

재즈 와인에 빠지다 - 엔리오모리꼬네

最終更新: 2025年02月11日

登録日: 2024年10月14日

他の回のコンサート

재즈 와인에 빠지다 147th - 부산 公演終了

チェジュ ウァイネ ッパジダ 147th - プサン

2024.07.12

コンッガンゲツチュ

재즈 와인에 빠지다 146th - 부산 公演終了

チェジュ ウァイネ ッパジダ 146th - プサン

2023.12.22

ヘウンデムヌァフェグァン

재즈 와인에 빠지다 145th - 부산 公演終了

チェジュ ウァイネ ッパジダ 145th - プサン

2023.11.29

ヘウンデムヌァフェグァン

재즈 와인에 빠지다 144th - 부산 公演終了

チェジュ ウァイネ ッパジダ 144th - プサン

2023.07.21

ヘウンデムヌァフェグァン

재즈 와인에 빠지다 143rd - 부산 公演終了

チェジュ ウァイネ ッパジダ 143rd - プサン

2023.05.24

ヘウンデムヌァフェグァン

재즈 와인에 빠지다 142nd concert - 신연아 BAND - 부산 公演終了

チェジュ ウァイネ ッパジダ 142nd concert - シニョナ BAND - プサン

2021.08.27

ヘウンデムヌァフェグァン

재즈 와인에 빠지다 141st Concert - 부산 公演終了

チェジュ ウァイネ ッパジダ 141st Concert - プサン

2020.11.27

ヘウンデムヌァフェグァン

재즈 와인에 빠지다 140th Concert - 부산 公演終了

チェジュ ウァイネ ッパジダ 140th Concert - プサン

2019.12.27

ヘウンデムヌァフェグァン

재즈 와인에 빠지다 139th concert - 부산 公演終了

チェジュ ウァイネ ッパジダ 139th concert - プサン

2019.11.29

ヘウンデムヌァフェグァン

재즈 와인에 빠지다 134th concert - 부산 公演終了

チェジュ ウァイネ ッパジダ 134th concert - プサン

2019.09.27

ヘウンデムヌァフェグァン

재즈 와인에 빠지다 132nd concert - 부산 公演終了

チェジュ ウァイネ ッパジダ 132nd concert - プサン

2019.07.12

ヘウンデムヌァフェグァン

재즈 와인에 빠지다 131st concert - 부산 公演終了

チェジュ ウァイネ ッパジダ 131st concert - プサン

2019.05.24

ヘウンデムヌァフェグァン

재즈 와인에 빠지다 130th concert - 부산 公演終了

チェジュ ウァイネ ッパジダ 130th concert - プサン

2019.03.29

チェムストン

재즈 와인에 빠지다 129th concert - 부산 公演終了

チェジュ ウァイネ ッパジダ 129th concert - プサン

2019.02.22

ヘウンデムヌァフェグァン

재즈 와인에 빠지다 128th concert - 부산 公演終了

チェジュ ウァイネ ッパジダ 128th concert - プサン

2019.01.25

ヘウンデムヌァフェグァン

재즈 와인에 빠지다 127th concert - 부산 公演終了

チェジュ ウァイネ ッパジダ 127th concert - プサン

2018.12.28

ヘウンデムヌァフェグァン

재즈 와인에 빠지다 122th concert - 부산 公演終了

チェジュ ウァイネ ッパジダ 122th concert - プサン

2018.09.28

ヘウンデムヌァフェグァン

재즈 와인에 빠지다 121th concert - 부산 公演終了

チェジュ ウァイネ ッパジダ 121th concert - プサン

2018.07.27

ヘウンデムヌァフェグァン

재즈 와인에 빠지다 119th concert - 부산 公演終了

チェジュ ウァイネ ッパジダ 119th concert - プサン

2018.06.29

ヘウンデムヌァフェグァン

재즈 와인에 빠지다 118th concert - 부산 公演終了

チェジュ ウァイネ ッパジダ 118th concert - プサン

2018.05.25

ヘウンデムヌァフェグァン

재즈 와인에 빠지다 117th concert - 부산 公演終了

チェジュ ウァイネ ッパジダ 117th concert - プサン

2018.04.27

ヘウンデムヌァフェグァン

재즈 와인에 빠지다 화이트데이 특집 - 부산 公演終了

チェジュ ウァイネ ッパジダ ファイツデイ ツクチッ - プサン

2018.03.14

ヘウンデムヌァフェグァン

재즈 와인에 빠지다 115th concert - 부산 公演終了

チェジュ ウァイネ ッパジダ 115th concert - プサン

2018.02.14

ヘウンデムヌァフェグァン

재즈 와인에 빠지다 114th concert - 부산 公演終了

チェジュ ウァイネ ッパジダ 114th concert - プサン

2018.01.26

ヘウンデムヌァフェグァン

재즈 와인에 빠지다 113th concert - 부산 公演終了

チェジュ ウァイネ ッパジダ 113th concert - プサン

2017.12.29

ヘウンデムヌァフェグァン

재즈 와인에 빠지다 112th concert - 대전 公演終了

チェジュ ウァイネ ッパジダ 112th concert - テジョン

2017.11.26

アツブリツチ

재즈 와인에 빠지다 111th concert - 부산 公演終了

チェジュ ウァイネ ッパジダ 111th concert - プサン

2017.11.24

ヘウンデムヌァフェグァン

재즈 와인에 빠지다 110th concert 公演終了

チェジュ ウァイネ ッパジダ 110th concert

2017.11.23

ソンスアツホル

재즈 와인에 빠지다 109th concert - 고양 公演終了

チェジュ ウァイネ ッパジダ 109th concert - コヤン

2017.11.22

コヤンゴウルリムヌリ ピョルモレグクチャン

재즈 와인에 빠지다 104th concert - 부산 公演終了

チェジュ ウァイネ ッパジダ 104th concert - プサン

2017.09.29

ヘウンデムヌァフェグァン

재즈 와인에 빠지다 103th concert - 부산 公演終了

チェジュ ウァイネ ッパジダ 103th concert - プサン

2017.08.25

ヘウンデムヌァフェグァン

재즈 와인에 빠지다 102th concert - 부산 公演終了

チェジュ ウァイネ ッパジダ 102th concert - プサン

2017.07.28

ヘウンデムヌァフェグァン

재즈 와인에 빠지다 101th concert - 부산 公演終了

チェジュ ウァイネ ッパジダ 101th concert - プサン

2017.06.30

ヘウンデムヌァフェグァン

재즈 와인에 빠지다 100th concert - 부산 公演終了

チェジュ ウァイネ ッパジダ 100th concert - プサン

2017.05.26

ヘウンデムヌァフェグァン

재즈 와인에 빠지다 99th concert - 부산 公演終了

チェジュ ウァイネ ッパジダ 99th concert - プサン

2017.04.28

ヘウンデムヌァフェグァン

재즈 와인에 빠지다 - 발렌타인데이 스페셜 - 부산 公演終了

チェジュ ウァイネ ッパジダ - パルレンタインデイ スペショル - プサン

2017.02.14

ヘウンデムヌァフェグァン

재즈 와인에 빠지다 - Goodbye 2016 公演終了

チェジュ ウァイネ ッパジダ - Goodbye 2016

2016.12.30

ヘウンデムヌァフェグァン

재즈 와인에 빠지다 이탈리아반도네온듀오 - 부산 公演終了

チェジュ ウァイネ ッパジダ イタルリアバンドネオンヂュオ - プサン

2016.11.26

ヨンファウイジョンダン

재즈 와인에 빠지다 이탈리아반도네온듀오 - 대구 公演終了

チェジュ ウァイネ ッパジダ イタルリアバンドネオンヂュオ - テグ

2016.11.25

대구수성아트피아 무학홀

재즈 와인에 빠지다 이탈리아반도네온듀오 公演終了

チェジュ ウァイネ ッパジダ イタルリアバンドネオンヂュオ

2016.11.23

오디오가이 스튜디오

재즈 와인에 빠지다 - 이지영 어쿠스틱 프로젝트 公演終了

チェジュ ウァイネ ッパジダ - イジヨン オクスチッ プロジェッツ

2016.09.23

ヘウンデムヌァフェグァン

재즈 와인에 빠지다 - EDM+JAZZ 公演終了

チェジュ ウァイネ ッパジダ - EDM+JAZZ

2016.08.26

ヘウンデムヌァフェグァン

재즈 와인에 빠지다 - 커먼그라운드 公演終了

チェジュ ウァイネ ッパジダ - コモングラウンデュ

2016.07.22

ヘウンデムヌァフェグァン

재즈 와인에 빠지다 - 박윤우트리오 公演終了

チェジュ ウァイネ ッパジダ - パギュヌツリオ

2016.06.24

ヘウンデムヌァフェグァン

재즈 와인에 빠지다 in 대전_Jazz & Tango 公演終了

チェジュ ウァイネ ッパジダ in テジョン_Jazz & Tango

2016.05.27

아트브릿지

Jazz..와인에 빠지다 84th_Jazz&Tango 公演終了

Jazz..ウァイネ ッパジダ 84th_Jazz&Tango

2016.05.24

ペガマツホル

재즈,와인에 빠지다 - 부산 公演終了

チェジュ,ウァイネ ッパジダ - プサン

2016.04.29

ヘウンデムヌァフェグァン

2016 재즈 와인에 빠지다 - 서미현재즈트리오 公演終了

2016 チェジュ ウァイネ ッパジダ - ソミヒョンジェジュツリオ

2016.03.25

ヘウンデムヌァフェグァン

2016 재즈 와인에 빠지다 - 젠틀레인 公演終了

2016 チェジュ ウァイネ ッパジダ - チェンツルレイン

2016.02.26

ヘウンデムヌァフェグァン

Jazz...와인에빠지다 80th concert Rianopoom 公演終了

Jazz...ウァイネッパジダ 80th concert Rianopoom

2016.01.29

ヘウンデムヌァフェグァン

재즈 와인에 빠지다 - Pasquale Stafano & Gianni Iorio 公演終了

チェジュ ウァイネ ッパジダ - Pasquale Stafano & Gianni Iorio

2015.10.30

대구문화예술회관 비슬홀(소극장)

재즈 와인에 빠지다 - 박라온 트리오 公演終了

チェジュ ウァイネ ッパジダ - パクラオン ツリオ

2015.09.18

ヘウンデムヌァフェグァン テゴンギョンジャン

재즈 와인에 빠지다 - 데이먼 브라운 & 김지석 公演終了

チェジュ ウァイネ ッパジダ - テイモン プラウン & キムジソッ

2015.07.31

ヘウンデムヌァフェグァン テゴンギョンジャン

재즈 와인에 빠지다 - 이지연 콰르텟 公演終了

チェジュ ウァイネ ッパジダ - イジヨン クァルテツ

2015.06.26

ヘウンデムヌァフェグァン テゴンギョンジャン

재즈 와인에 빠지다 - 남경윤트리오 & 강윤미 公演終了

チェジュ ウァイネ ッパジダ - ナムギョンギュンツリオ & カンギュンミ

2015.05.22

ヘウンデムヌァフェグァン テゴンギョンジャン

재즈 와인에 빠지다 - 루카스 公演終了

チェジュ ウァイネ ッパジダ - ルカス

2015.04.24

ヘウンデムヌァフェグァン

재즈 와인에 빠지다 - 이주미 & 프렌즈 프롬 재팬 公演終了

チェジュ ウァイネ ッパジダ - イジュミ & プレンジュ プロム チェペン

2015.03.20

ヘウンデムヌァフェグァン

재즈 와인에 빠지다 - A-FUZZ, 다락방트리오 公演終了

チェジュ ウァイネ ッパジダ - A-FUZZ, タラクパンツリオ

2015.02.27

ヘウンデムヌァフェグァン テゴンギョンジャン

재즈 와인에 빠지다 - Strings of 장태화 公演終了

チェジュ ウァイネ ッパジダ - Strings of チャンテファ

2014.12.26

ヘウンデムヌァフェグァン テゴンギョンジャン

재즈 와인에 빠지다 - 정영애 재즈리퍼블릭 公演終了

チェジュ ウァイネ ッパジダ - チョンギョンゲ チェジュリポブルリッ

2014.09.26

ヘウンデムヌァフェグァン テゴンギョンジャン

재즈 와인에 빠지다 - 류복성 재즈 올스타즈 公演終了

チェジュ ウァイネ ッパジダ - リュボクソン チェジュ オルスタジュ

2014.03.14

ヘウンデムヌァフェグァン テゴンギョンジャン

재즈 와인에 빠지다 - 남경윤 公演終了

チェジュ ウァイネ ッパジダ - ナムギョンギュン

2013.12.27

ヘウンデムヌァフェグァン

재즈 와인에 빠지다 - 매직톤즈 公演終了

チェジュ ウァイネ ッパジダ - メジットンジュ

2013.07.26

ヘウンデムヌァフェグァン テゴンギョンジャン

재즈 와인에 빠지다 - 소울로지 公演終了

チェジュ ウァイネ ッパジダ - ソウルロジ

2013.03.01

ヘウンデムヌァフェグァン テゴンギョンジャン

재즈 와인에 빠지다 - 강허달림 公演終了

チェジュ ウァイネ ッパジダ - カンホダルリム

2012.10.26

ヘウンデムヌァフェグァン

재즈 와인에 빠지다 - 핫 페퍼 파스타 公演終了

チェジュ ウァイネ ッパジダ - ハツ ペポ パスタ

2012.07.20

ヘウンデムヌァフェグァン テゴンギョンジャン

재즈 와인에 빠지다 - HOT PEPPER PASTA 公演終了

チェジュ ウァイネ ッパジダ - HOT PEPPER PASTA

2012.03.16

ヘウンデムヌァフェグァン テゴンギョンジャン

재즈 와인에 빠지다 - MJ 公演終了

チェジュ ウァイネ ッパジダ - MJ

2011.12.31

プサンシミヌェグァン ソグクチャン

재즈 와인에 빠지다 - Choi BAND 公演終了

チェジュ ウァイネ ッパジダ - Choi BAND

2011.07.15

ヘウンデムヌァフェグァン テゴンギョンジャン

재즈 와인에 빠지다 - from france Remi Panossian Trio 公演終了

チェジュ ウァイネ ッパジダ - from france Remi Panossian Trio

2011.02.11

プサンシミヌェグァン ソグクチャン