export type HazardType = 'petrochemical' | 'lng' | 'oilTank' | 'hazardPort' | 'nuclear' | 'thermal' | 'shipyard' | 'wastewater' | 'heavyIndustry'; export interface HazardFacility { id: string; type: HazardType; nameKo: string; name: string; lat: number; lng: number; address?: string; capacity?: string; operator?: string; description: string; } export const HAZARD_FACILITIES: HazardFacility[] = [ // ── 해안인접석유화학단지 ────────────────────────────────────────── { id: 'pc-01', type: 'petrochemical', nameKo: '여수국가산업단지', name: 'Yeosu National Industrial Complex', lat: 34.757, lng: 127.723, address: '전남 여수시 화치동 산 183-1', capacity: '연산 2,400만 톤', operator: '여수광양항만공사·LG화학·롯데케미칼', description: '국내 최대 석유화학단지. NCC·LG화학·롯데케미칼·GS칼텍스 등 입주.', }, { id: 'pc-02', type: 'petrochemical', nameKo: '울산미포국가산업단지', name: 'Ulsan Mipo National Industrial Complex', lat: 35.479, lng: 129.357, address: '울산광역시 남구 사평로 137 (부곡동 439-1)', capacity: '연산 1,800만 톤', operator: 'S-OIL·SK에너지·SK지오센트릭', description: '정유·NCC 중심 울산미포국가산단 내 석유화학 집적지.', }, { id: 'pc-03', type: 'petrochemical', nameKo: '대산석유화학단지', name: 'Daesan Petrochemical Complex', lat: 37.025, lng: 126.360, address: '충남 서산시 대산읍 독곶1로 82 (롯데케미칼 대산공장 기준)', capacity: '연산 900만 톤', operator: '롯데케미칼·현대오일뱅크·한화토탈에너지스', description: '충남 서산 대산항 인근 3대 석유화학단지.', }, { id: 'pc-04', type: 'petrochemical', nameKo: '광양 석유화학단지', name: 'Gwangyang Petrochemical Complex', lat: 34.970, lng: 127.705, capacity: '연산 600만 톤', operator: 'POSCO·포스코케미칼', description: '광양제철소 연계 석유화학 시설.', }, { id: 'pc-05', type: 'petrochemical', nameKo: '인천 석유화학단지', name: 'Incheon Petrochemical Complex', lat: 37.470, lng: 126.618, capacity: '연산 400만 톤', operator: 'SK인천석유화학', description: '인천 북항 인근 정유·석유화학 시설.', }, // ── LNG 생산기지 (한국가스공사 KOGAS) ──────────────────────────── { id: 'lng-01', type: 'lng', nameKo: '평택 LNG 생산기지', name: 'Pyeongtaek LNG Production Base', lat: 37.017, lng: 126.870, address: '경기도 평택시 포승읍', operator: '한국가스공사(KOGAS)', description: '국내 최초의 LNG 기지. 수도권 공급의 핵심 거점.', }, { id: 'lng-02', type: 'lng', nameKo: '인천 LNG 생산기지', name: 'Incheon LNG Production Base', lat: 37.374, lng: 126.622, address: '인천광역시 연수구 송도동', operator: '한국가스공사(KOGAS)', description: '세계 최대 규모의 해상 LNG 기지 중 하나.', }, { id: 'lng-03', type: 'lng', nameKo: '통영 LNG 생산기지', name: 'Tongyeong LNG Production Base', lat: 34.906, lng: 128.465, address: '경상남도 통영시 광도면', operator: '한국가스공사(KOGAS)', description: '남부권 가스 공급 및 영남권 산업단지 지원 거점.', }, { id: 'lng-04', type: 'lng', nameKo: '삼척 LNG 생산기지', name: 'Samcheok LNG Production Base', lat: 37.262, lng: 129.290, address: '강원도 삼척시 원덕읍', operator: '한국가스공사(KOGAS)', description: '동해안 에너지 거점 및 수입 다변화 대응.', }, { id: 'lng-05', type: 'lng', nameKo: '제주 LNG 생산기지', name: 'Jeju LNG Production Base', lat: 33.448, lng: 126.330, address: '제주특별자치도 제주시 애월읍', operator: '한국가스공사(KOGAS)', description: '제주 지역 천연가스 보급을 위해 조성된 기지.', }, { id: 'lng-06', type: 'lng', nameKo: '당진 LNG 생산기지', name: 'Dangjin LNG Production Base', lat: 37.048, lng: 126.595, address: '충청남도 당진시 석문면', operator: '한국가스공사(KOGAS)', description: '2026년 말 1단계 준공 예정 (현재 건설 중).', }, // ── 민간 LNG 터미널 ────────────────────────────────────────────── { id: 'lng-p01', type: 'lng', nameKo: '광양 LNG 터미널', name: 'Gwangyang LNG Terminal', lat: 34.934, lng: 127.714, address: '전라남도 광양시 금호동', operator: '포스코인터내셔널', description: '포스코인터내셔널 운영 민간 LNG 터미널.', }, { id: 'lng-p02', type: 'lng', nameKo: '보령 LNG 터미널', name: 'Boryeong LNG Terminal', lat: 36.380, lng: 126.513, address: '충청남도 보령시 오천면', operator: 'SK E&S · GS에너지', description: 'SK E&S·GS에너지 공동 운영 민간 LNG 터미널.', }, { id: 'lng-p03', type: 'lng', nameKo: '울산 북항 에너지터미널', name: 'Ulsan North Port Energy Terminal', lat: 35.518, lng: 129.383, address: '울산광역시 남구 북항 일원', operator: 'KET (한국석유공사·SK Gas 등)', description: 'KET(Korea Energy Terminal) 운영 민간 에너지터미널.', }, { id: 'lng-p04', type: 'lng', nameKo: '통영 에코파워 LNG', name: 'Tongyeong Ecopower LNG Terminal', lat: 34.873, lng: 128.508, address: '경상남도 통영시 광도면 (성동조선 인근)', operator: 'HDC현대산업개발 등', description: '성동조선 인근 민간 LNG 터미널.', }, // ── 유류저장탱크 ────────────────────────────────────────────────── { id: 'oil-01', type: 'oilTank', nameKo: '여수 유류저장시설', name: 'Yeosu Oil Storage', lat: 34.733, lng: 127.741, capacity: '630만 ㎘', operator: 'SK에너지·GS칼텍스', description: '여수항 인근 정유제품 및 원유 저장시설.', }, { id: 'oil-02', type: 'oilTank', nameKo: '울산 정유 저장시설', name: 'Ulsan Refinery Storage', lat: 35.516, lng: 129.413, capacity: '850만 ㎘', operator: 'S-OIL·SK에너지', description: '울산 온산 정유시설 연계 대형 유류탱크군.', }, { id: 'oil-03', type: 'oilTank', nameKo: '포항 저유소', name: 'Pohang Oil Depot', lat: 36.018, lng: 129.380, capacity: '20만 ㎘', operator: '대한송유관공사', description: '동해안 석유 공급 거점 저유소.', }, { id: 'oil-04', type: 'oilTank', nameKo: '목포 유류저장', name: 'Mokpo Oil Storage', lat: 34.773, lng: 126.384, capacity: '30만 ㎘', operator: '한국석유공사', description: '서남해안 유류 공급 저장기지.', }, { id: 'oil-05', type: 'oilTank', nameKo: '부산 북항 저유소', name: 'Busan North Port Oil Depot', lat: 35.100, lng: 129.041, capacity: '45만 ㎘', operator: '대한송유관공사', description: '부산항 연계 유류 저장·공급 시설.', }, { id: 'oil-06', type: 'oilTank', nameKo: '보령 저유소', name: 'Boryeong Oil Depot', lat: 36.380, lng: 126.570, capacity: '15만 ㎘', operator: '대한송유관공사', description: '충남 서해안 유류 공급 저장기지.', }, // ── KNOC 국가 석유비축기지 ──────────────────────────────────────── { id: 'knoc-01', type: 'oilTank', nameKo: 'KNOC 울산 비축기지', name: 'KNOC Ulsan SPR Base', lat: 35.406, lng: 129.351, address: '울산광역시 울주군 온산읍 학남리', capacity: '국가비축', operator: '한국석유공사(KNOC)', description: '국가 전략 석유비축기지. 원유 (지상탱크) 방식.', }, { id: 'knoc-02', type: 'oilTank', nameKo: 'KNOC 여수 비축기지', name: 'KNOC Yeosu SPR Base', lat: 34.716, lng: 127.742, address: '전라남도 여수시 낙포동', capacity: '국가비축', operator: '한국석유공사(KNOC)', description: '국가 전략 석유비축기지. 원유 (지상탱크·지하공동) 방식.', }, { id: 'knoc-03', type: 'oilTank', nameKo: 'KNOC 거제 비축기지', name: 'KNOC Geoje SPR Base', lat: 34.852, lng: 128.722, address: '경상남도 거제시 일운면 지세포리', capacity: '국가비축', operator: '한국석유공사(KNOC)', description: '국가 전략 석유비축기지. 원유 (지하공동) 방식.', }, { id: 'knoc-04', type: 'oilTank', nameKo: 'KNOC 서산 비축기지', name: 'KNOC Seosan SPR Base', lat: 37.018, lng: 126.374, address: '충청남도 서산시 대산읍 대죽리', capacity: '국가비축', operator: '한국석유공사(KNOC)', description: '국가 전략 석유비축기지. 원유·제품 (지상탱크) 방식.', }, { id: 'knoc-05', type: 'oilTank', nameKo: 'KNOC 평택 비축기지', name: 'KNOC Pyeongtaek SPR Base', lat: 37.017, lng: 126.858, address: '경기도 평택시 포승읍 원정리', capacity: '국가비축', operator: '한국석유공사(KNOC)', description: '국가 전략 석유비축기지. LPG 방식.', }, { id: 'knoc-06', type: 'oilTank', nameKo: 'KNOC 구리 비축기지', name: 'KNOC Guri SPR Base', lat: 37.562, lng: 127.138, address: '경기도 구리시 아차산로', capacity: '국가비축', operator: '한국석유공사(KNOC)', description: '국가 전략 석유비축기지. 제품 (지하공동) 방식.', }, { id: 'knoc-07', type: 'oilTank', nameKo: 'KNOC 용인 비축기지', name: 'KNOC Yongin SPR Base', lat: 37.238, lng: 127.213, address: '경기도 용인시 처인구 해실로', capacity: '국가비축', operator: '한국석유공사(KNOC)', description: '국가 전략 석유비축기지. 제품 (지상탱크) 방식.', }, { id: 'knoc-08', type: 'oilTank', nameKo: 'KNOC 동해 비축기지', name: 'KNOC Donghae SPR Base', lat: 37.503, lng: 129.097, address: '강원특별자치도 동해시 공단12로', capacity: '국가비축', operator: '한국석유공사(KNOC)', description: '국가 전략 석유비축기지. 제품 (지상탱크) 방식.', }, { id: 'knoc-09', type: 'oilTank', nameKo: 'KNOC 곡성 비축기지', name: 'KNOC Gokseong SPR Base', lat: 35.228, lng: 127.302, address: '전라남도 곡성군 겸면 괴정리', capacity: '국가비축', operator: '한국석유공사(KNOC)', description: '국가 전략 석유비축기지. 제품 (지상탱크) 방식.', }, // ── 위험물항만하역시설 ──────────────────────────────────────────── { id: 'hp-01', type: 'hazardPort', nameKo: '광양항 위험물 부두', name: 'Gwangyang Hazardous Cargo Terminal', lat: 34.923, lng: 127.703, capacity: '연 3,000만 톤', operator: '여수광양항만공사', description: '석유화학제품·액체화물 전용 위험물 하역 부두.', }, { id: 'hp-02', type: 'hazardPort', nameKo: '울산항 위험물 부두', name: 'Ulsan Hazardous Cargo Terminal', lat: 35.519, lng: 129.392, capacity: '연 2,500만 톤', operator: '울산항만공사', description: '원유·석유제품·LPG 등 위험물 전용 하역 부두.', }, { id: 'hp-03', type: 'hazardPort', nameKo: '인천항 위험물 부두', name: 'Incheon Hazardous Cargo Terminal', lat: 37.464, lng: 126.621, capacity: '연 800만 톤', operator: '인천항만공사', description: '인천 북항 위험물(화학·가스·유류) 하역 전용 부두.', }, { id: 'hp-04', type: 'hazardPort', nameKo: '여수항 위험물 부두', name: 'Yeosu Hazardous Cargo Terminal', lat: 34.729, lng: 127.741, capacity: '연 1,200만 톤', operator: '여수광양항만공사', description: '여수 석유화학단지 연계 위험물 하역 부두.', }, { id: 'hp-05', type: 'hazardPort', nameKo: '부산항 위험물 부두', name: 'Busan Hazardous Cargo Terminal', lat: 35.090, lng: 129.022, capacity: '연 500만 톤', operator: '부산항만공사', description: '부산 신항·북항 위험물 전용 하역 부두.', }, { id: 'hp-06', type: 'hazardPort', nameKo: '군산항 위험물 부두', name: 'Gunsan Hazardous Cargo Terminal', lat: 35.973, lng: 126.712, capacity: '연 300만 톤', operator: '군산항만공사', description: '서해안 위험물(석유·화학) 하역 부두.', }, // ── 원자력발전소 ────────────────────────────────────────────────── { id: 'npp-01', type: 'nuclear', nameKo: '고리 원자력발전소', name: 'Kori Nuclear Power Plant', lat: 35.316, lng: 129.291, address: '부산광역시 기장군 장안읍 고리', capacity: '4기 (신고리 포함 총 6기)', operator: '한국수력원자력(한수원)', description: '국내 최초 상업용 원전 부지. 1호기 영구정지(2017), 신고리 1~4호기 운영 중.', }, { id: 'npp-02', type: 'nuclear', nameKo: '월성 원자력발전소', name: 'Wolseong Nuclear Power Plant', lat: 35.712, lng: 129.476, address: '경상북도 경주시 양남면 나아리', capacity: '4기 (월성·신월성)', operator: '한국수력원자력(한수원)', description: '중수로(CANDU) 방식. 월성 1호기 영구정지(2019), 신월성 1·2호기 운영 중.', }, { id: 'npp-03', type: 'nuclear', nameKo: '한울 원자력발전소', name: 'Hanul Nuclear Power Plant', lat: 37.093, lng: 129.381, address: '경상북도 울진군 북면 부구리', capacity: '6기 운영 + 신한울 2기', operator: '한국수력원자력(한수원)', description: '구 울진 원전. 한울 1~6호기 + 신한울 1·2호기(2022~2024 준공).', }, { id: 'npp-04', type: 'nuclear', nameKo: '한빛 원자력발전소', name: 'Hanbit Nuclear Power Plant', lat: 35.410, lng: 126.424, address: '전라남도 영광군 홍농읍 계마리', capacity: '6기 운영', operator: '한국수력원자력(한수원)', description: '구 영광 원전. 한빛 1~6호기 운영 중. 국내 최대 용량 원전 부지.', }, { id: 'npp-05', type: 'nuclear', nameKo: '새울 원자력발전소', name: 'Saeul Nuclear Power Plant', lat: 35.311, lng: 129.303, address: '울산광역시 울주군 서생면 신암리', capacity: '4기 (신고리 5~8호기)', operator: '한국수력원자력(한수원)', description: '신고리 5·6호기 운영 중, 7·8호기 건설 예정. 고리 부지 인근.', }, // ── 화력발전소 ──────────────────────────────────────────────────── { id: 'tp-01', type: 'thermal', nameKo: '당진 화력발전소', name: 'Dangjin Thermal Power Plant', lat: 37.048, lng: 126.598, address: '충청남도 당진시 석문면 교로리', capacity: '6,040MW (10기)', operator: '한국동서발전(EWP)', description: '국내 최대 규모 석탄 화력발전소.', }, { id: 'tp-02', type: 'thermal', nameKo: '태안 화력발전소', name: 'Taean Thermal Power Plant', lat: 36.849, lng: 126.232, address: '충청남도 태안군 원북면 방갈리', capacity: '6,100MW (10기)', operator: '한국서부발전(WPP)', description: '서해안 최대 규모 석탄 화력발전소.', }, { id: 'tp-03', type: 'thermal', nameKo: '삼척 화력발전소', name: 'Samcheok Thermal Power Plant', lat: 37.243, lng: 129.326, address: '강원특별자치도 삼척시 근덕면 초곡리', capacity: '2,100MW (2기)', operator: '삼척블루파워(포스코에너지·GS에너지)', description: '동해안 민자 석탄 화력발전소. 2022년 준공.', }, { id: 'tp-04', type: 'thermal', nameKo: '여수 화력발전소', name: 'Yeosu Thermal Power Plant', lat: 34.738, lng: 127.721, address: '전라남도 여수시 낙포동', capacity: '870MW', operator: 'GS E&R', description: '여수 석유화학단지 인근 열병합 발전소.', }, { id: 'tp-05', type: 'thermal', nameKo: '하동 화력발전소', name: 'Hadong Thermal Power Plant', lat: 34.977, lng: 127.901, address: '경상남도 하동군 금성면 갈사리', capacity: '4,000MW (8기)', operator: '한국남부발전(KOSPO)', description: '남해안 주요 석탄 화력발전소.', }, // ── 조선소 도장시설 ─────────────────────────────────────────────── { id: 'sy-01', type: 'shipyard', nameKo: '한화오션 거제조선소', name: 'Hanwha Ocean Geoje Shipyard', lat: 34.893, lng: 128.623, address: '경상남도 거제시 아주동 1', operator: '한화오션(구 대우조선해양)', description: '초대형 선박·해양플랜트 도장시설. 유기용제·VOC 대량 취급.', }, { id: 'sy-02', type: 'shipyard', nameKo: 'HD현대중공업 울산조선소', name: 'HD Hyundai Heavy Industries Ulsan Shipyard', lat: 35.508, lng: 129.421, address: '울산광역시 동구 방어진순환도로 1000', operator: 'HD현대중공업', description: '세계 최대 단일 조선소. 도크 10기, 도장시설·VOC 취급.', }, { id: 'sy-03', type: 'shipyard', nameKo: '삼성중공업 거제조선소', name: 'Samsung Heavy Industries Geoje Shipyard', lat: 34.847, lng: 128.682, address: '경상남도 거제시 장평동 530', operator: '삼성중공업', description: 'LNG 운반선·FPSO 전문 조선소. 도장·도막 처리시설.', }, { id: 'sy-04', type: 'shipyard', nameKo: 'HD현대미포조선 울산', name: 'HD Hyundai Mipo Dockyard Ulsan', lat: 35.479, lng: 129.407, address: '울산광역시 동구 화정동', operator: 'HD현대미포조선', description: '중형 선박 전문 조선소. 도장시설 다수.', }, { id: 'sy-05', type: 'shipyard', nameKo: 'HD현대삼호 영암조선소', name: 'HD Hyundai Samho Yeongam Shipyard', lat: 34.746, lng: 126.459, address: '전라남도 영암군 삼호읍 용당리', operator: 'HD현대삼호중공업', description: '서남해안 대형 조선소. 유기용제·도장 화학물질 취급.', }, { id: 'sy-06', type: 'shipyard', nameKo: 'HJ중공업 부산조선소', name: 'HJ Shipbuilding Busan Shipyard', lat: 35.048, lng: 128.978, address: '부산광역시 영도구 해양로 195', operator: 'HJ중공업(구 한진중공업)', description: '부산 영도 소재 조선소. 도장·표면처리 시설.', }, // ── 폐수/하수처리장 ─────────────────────────────────────────────── { id: 'ww-01', type: 'wastewater', nameKo: '여수 국가산단 폐수처리장', name: 'Yeosu Industrial Wastewater Treatment', lat: 34.748, lng: 127.730, address: '전라남도 여수시 화치동', operator: '여수시·환경부', description: '여수국가산단 배후 산업폐수처리장. 황화수소·메탄 발생 가능.', }, { id: 'ww-02', type: 'wastewater', nameKo: '울산 온산공단 폐수처리장', name: 'Ulsan Onsan Industrial Wastewater Treatment', lat: 35.413, lng: 129.338, address: '울산광역시 울주군 온산읍', operator: '울산시·환경부', description: '온산국가산업단지 배후 폐수처리 거점. 유해가스 발생 위험.', }, { id: 'ww-03', type: 'wastewater', nameKo: '대산공단 폐수처리장', name: 'Daesan Industrial Wastewater Treatment', lat: 37.023, lng: 126.348, address: '충청남도 서산시 대산읍', operator: '서산시·환경부', description: '대산석유화학단지 배후 폐수처리장. H₂S·메탄 발생 위험.', }, { id: 'ww-04', type: 'wastewater', nameKo: '인천 북항 항만폐수처리', name: 'Incheon North Port Wastewater Treatment', lat: 37.468, lng: 126.618, address: '인천광역시 중구 북성동', operator: '인천항만공사·인천시', description: '인천 북항 인접 항만 폐수처리 시설.', }, { id: 'ww-05', type: 'wastewater', nameKo: '광양 임해 폐수처리장', name: 'Gwangyang Coastal Wastewater Treatment', lat: 34.930, lng: 127.696, address: '전라남도 광양시 금호동', operator: '광양시·포스코', description: '광양제철소·산단 배후 폐수처리 시설. 황화수소 발생 위험.', }, // ── 시멘트/제철소/원료저장시설 ──────────────────────────────────── { id: 'hi-01', type: 'heavyIndustry', nameKo: 'POSCO 포항제철소', name: 'POSCO Pohang Steelworks', lat: 36.027, lng: 129.358, address: '경상북도 포항시 남구 동해안로 6261', capacity: '1,800만 톤/년', operator: 'POSCO', description: '국내 최대 제철소. 고로·코크스 원료 대량 저장·처리.', }, { id: 'hi-02', type: 'heavyIndustry', nameKo: 'POSCO 광양제철소', name: 'POSCO Gwangyang Steelworks', lat: 34.932, lng: 127.702, address: '전라남도 광양시 금호동 700', capacity: '2,100만 톤/년', operator: 'POSCO', description: '세계 최대 규모 제철소 중 하나. 임해 원료 저장기지.', }, { id: 'hi-03', type: 'heavyIndustry', nameKo: '현대제철 당진공장', name: 'Hyundai Steel Dangjin Plant', lat: 37.046, lng: 126.616, address: '충청남도 당진시 송악읍 복운리', capacity: '1,200만 톤/년', operator: '현대제철', description: '당진 임해 제철소. 철광석·석탄 원료저장 부두 인접.', }, { id: 'hi-04', type: 'heavyIndustry', nameKo: '삼척 시멘트 공단', name: 'Samcheok Cement Industrial Complex', lat: 37.480, lng: 129.130, address: '강원특별자치도 삼척시 동해대로', operator: '쌍용C&E·성신양회', description: '삼척 임해 시멘트 단지. 분진·원료저장시설 밀집.', }, { id: 'hi-05', type: 'heavyIndustry', nameKo: '동해 시멘트/석회공장', name: 'Donghae Cement Complex', lat: 37.501, lng: 129.103, address: '강원특별자치도 동해시 북평공단', operator: '한일시멘트·아세아시멘트', description: '동해항 인근 시멘트·석회 생산·원료저장시설.', }, ];