@uniai-fe/ui-legacy 0.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +27 -0
- package/README.md +3 -0
- package/package.json +141 -0
- package/src/alternate/components/empty/Cage.tsx +29 -0
- package/src/alternate/components/empty/Data.tsx +35 -0
- package/src/alternate/components/empty/Table.tsx +38 -0
- package/src/alternate/components/index.tsx +19 -0
- package/src/alternate/components/loading/Default.tsx +38 -0
- package/src/alternate/components/loading/Icon.tsx +26 -0
- package/src/alternate/components/loading/Table.tsx +46 -0
- package/src/alternate/components/notice/SelectFlock.tsx +21 -0
- package/src/alternate/components/notice/SelectLabel.tsx +15 -0
- package/src/alternate/index.tsx +3 -0
- package/src/alternate/styles/styled/alternate.ts +92 -0
- package/src/asset-url.ts +7 -0
- package/src/button/button.scss +3 -0
- package/src/button/components/array/Add.tsx +39 -0
- package/src/button/components/array/Remove.tsx +34 -0
- package/src/button/components/base/Default.tsx +76 -0
- package/src/button/components/base/Expand.tsx +39 -0
- package/src/button/components/base/Link.tsx +40 -0
- package/src/button/components/base/Refresh.tsx +43 -0
- package/src/button/components/base/Reset.tsx +43 -0
- package/src/button/components/base/ResetSelected.tsx +35 -0
- package/src/button/components/base/Text.tsx +35 -0
- package/src/button/components/base/Tooltip.tsx +35 -0
- package/src/button/components/multiple/Container.tsx +70 -0
- package/src/button/components/select/SelectBox.tsx +37 -0
- package/src/button/icons/Expand.tsx +16 -0
- package/src/button/icons/Loading.tsx +20 -0
- package/src/button/icons/Refresh.tsx +20 -0
- package/src/button/icons/Reset.tsx +20 -0
- package/src/button/icons/ResetSelected.tsx +21 -0
- package/src/button/index.tsx +29 -0
- package/src/button/styled.tsx +12 -0
- package/src/button/styles/scss/multiple.scss +17 -0
- package/src/button/styles/scss/size.scss +46 -0
- package/src/button/styles/scss/theme.scss +36 -0
- package/src/button/styles/styled-components/button.ts +311 -0
- package/src/button/styles/styled-components/icon.ts +30 -0
- package/src/button/styles/styled-components/multiple.ts +75 -0
- package/src/button/styles/styled-components/template.ts +43 -0
- package/src/chart/chart.scss +11 -0
- package/src/chart/components/Contents.tsx +17 -0
- package/src/chart/components/control/Button.tsx +39 -0
- package/src/chart/components/control/Container.tsx +27 -0
- package/src/chart/components/control/Provider.tsx +117 -0
- package/src/chart/components/control/index.tsx +12 -0
- package/src/chart/components/custom/ActivePieSector.tsx +29 -0
- package/src/chart/components/graphs/ArcGauge.tsx +58 -0
- package/src/chart/components/graphs/ArcMeter.tsx +112 -0
- package/src/chart/components/graphs/Area.tsx +132 -0
- package/src/chart/components/graphs/Bar.tsx +179 -0
- package/src/chart/components/graphs/Doughnut.tsx +90 -0
- package/src/chart/components/graphs/Line.tsx +123 -0
- package/src/chart/components/graphs/index.tsx +17 -0
- package/src/chart/components/ticks/XAxis.tsx +39 -0
- package/src/chart/components/ticks/index.tsx +7 -0
- package/src/chart/index.tsx +17 -0
- package/src/chart/styled.tsx +3 -0
- package/src/chart/styles/scss/arc-gauge.scss +11 -0
- package/src/chart/styles/scss/arc-meter.scss +6 -0
- package/src/chart/styles/scss/control.scss +34 -0
- package/src/chart/styles/scss/filter.scss +0 -0
- package/src/chart/styles/scss/graph.scss +3 -0
- package/src/chart/styles/scss/legend.scss +35 -0
- package/src/chart/styles/scss/level.color.scss +7 -0
- package/src/chart/styles/scss/tick.scss +48 -0
- package/src/chart/styles/scss/tooltip.scss +70 -0
- package/src/chart/styles/styled/arc-gauge.ts +65 -0
- package/src/chart/styles/styled/arc-meter.ts +42 -0
- package/src/chart/styles/styled/common.ts +14 -0
- package/src/chart/styles/styled/control.ts +31 -0
- package/src/chart/styles/styled/legend.ts +11 -0
- package/src/chart/svg/gauge-track.min.svg +1 -0
- package/src/chart/utils/getLevel.ts +23 -0
- package/src/chip/chip.scss +1 -0
- package/src/chip/components/Default.tsx +40 -0
- package/src/chip/index.tsx +5 -0
- package/src/chip/styled.tsx +7 -0
- package/src/chip/styles/scss/variables.scss +15 -0
- package/src/chip/styles/styled/base.ts +41 -0
- package/src/components.tsx +42 -0
- package/src/delta/components/Rounded.tsx +72 -0
- package/src/delta/components/Square.tsx +72 -0
- package/src/delta/index.tsx +6 -0
- package/src/delta/styles/styled/delta.ts +126 -0
- package/src/dot/components/Location.tsx +55 -0
- package/src/dot/index.tsx +7 -0
- package/src/dot/styles/styled/location.ts +78 -0
- package/src/dropdown/components/Container.tsx +36 -0
- package/src/dropdown/components/ParentContainer.tsx +32 -0
- package/src/dropdown/dropdown.scss +1 -0
- package/src/dropdown/index.tsx +9 -0
- package/src/dropdown/styled.tsx +3 -0
- package/src/dropdown/styles/scss/variables.scss +24 -0
- package/src/dropdown/styles/styled-components/dropdown.ts +79 -0
- package/src/form/components/Provider.tsx +37 -0
- package/src/form/index.tsx +5 -0
- package/src/form-field/common/components/item-contents/Container.tsx +51 -0
- package/src/form-field/common/components/item-contents/Label.tsx +21 -0
- package/src/form-field/common/components/item-contents/Wrapper.tsx +24 -0
- package/src/form-field/common/components/item-contents/index.tsx +11 -0
- package/src/form-field/common/field.scss +2 -0
- package/src/form-field/common/hook.tsx +1 -0
- package/src/form-field/common/hooks/index.tsx +13 -0
- package/src/form-field/common/hooks/types.ts +16 -0
- package/src/form-field/common/hooks/useChangeEvents.ts +171 -0
- package/src/form-field/common/hooks/useInputCountdown.ts +115 -0
- package/src/form-field/common/hooks/useInputFile.ts +94 -0
- package/src/form-field/common/hooks/useInputMask.ts +56 -0
- package/src/form-field/common/hooks/useOpenDaumPostCodePopup.tsx +55 -0
- package/src/form-field/common/index.tsx +7 -0
- package/src/form-field/common/jotai/find-address.ts +4 -0
- package/src/form-field/common/jotai/password-hide.ts +6 -0
- package/src/form-field/common/styled.tsx +7 -0
- package/src/form-field/common/styles/scss/reset.scss +52 -0
- package/src/form-field/common/styles/scss/variables.scss +52 -0
- package/src/form-field/common/styles/styled-components/item.ts +148 -0
- package/src/form-field/input/components/Container.tsx +54 -0
- package/src/form-field/input/components/assets/button/ResetButton.tsx +24 -0
- package/src/form-field/input/components/assets/calendar/DatePicker.tsx +184 -0
- package/src/form-field/input/components/assets/calendar/DateTimePicker.tsx +187 -0
- package/src/form-field/input/components/assets/calendar/TimePicker.tsx +163 -0
- package/src/form-field/input/components/assets/calendar/custom/ButtonContainer.tsx +15 -0
- package/src/form-field/input/components/assets/calendar/custom/TodayButton.tsx +23 -0
- package/src/form-field/input/components/assets/icon/CalendarIcon.tsx +14 -0
- package/src/form-field/input/components/assets/icon/CheckIcon.tsx +14 -0
- package/src/form-field/input/components/assets/icon/ExpandIcon.tsx +14 -0
- package/src/form-field/input/components/assets/icon/StatusIcon.tsx +17 -0
- package/src/form-field/input/components/assets/util/Countdown.tsx +34 -0
- package/src/form-field/input/components/assets/util/StatusNotice.tsx +22 -0
- package/src/form-field/input/components/click/Checkbox.tsx +99 -0
- package/src/form-field/input/components/click/Radio.tsx +77 -0
- package/src/form-field/input/components/click/index.tsx +9 -0
- package/src/form-field/input/components/date-time/Date.tsx +74 -0
- package/src/form-field/input/components/date-time/DateTime.tsx +72 -0
- package/src/form-field/input/components/date-time/Time.tsx +60 -0
- package/src/form-field/input/components/file-upload/Container.tsx +117 -0
- package/src/form-field/input/components/file-upload/DragAndDrop.tsx +65 -0
- package/src/form-field/input/components/text/Box.tsx +134 -0
- package/src/form-field/input/components/text/index.tsx +7 -0
- package/src/form-field/input/index.tsx +19 -0
- package/src/form-field/input/input.scss +2 -0
- package/src/form-field/input/styled.tsx +5 -0
- package/src/form-field/input/styles/scss/size.scss +39 -0
- package/src/form-field/input/styles/scss/theme.scss +39 -0
- package/src/form-field/input/styles/styled-components/base.ts +96 -0
- package/src/form-field/input/styles/styled-components/calendar.ts +18 -0
- package/src/form-field/input/styles/styled-components/click.ts +37 -0
- package/src/form-field/input/styles/styled-components/input-file.ts +26 -0
- package/src/form-field/input/styles/styled-components/mixin.ts +200 -0
- package/src/form-field/input/styles/styled-components/util.ts +47 -0
- package/src/form-field/select/components/Default.tsx +222 -0
- package/src/form-field/select/components/MultipleCategoryList.tsx +47 -0
- package/src/form-field/select/components/MultipleDefault.tsx +63 -0
- package/src/form-field/select/components/assets/Container.tsx +40 -0
- package/src/form-field/select/components/assets/dropdown/Default.tsx +114 -0
- package/src/form-field/select/components/assets/dropdown/MultipleCategoryList.tsx +95 -0
- package/src/form-field/select/components/assets/dropdown/MultipleDefault.tsx +149 -0
- package/src/form-field/select/components/assets/dropdown/Selected.tsx +48 -0
- package/src/form-field/select/index.tsx +13 -0
- package/src/form-field/select/select.scss +1 -0
- package/src/form-field/select/styled.tsx +5 -0
- package/src/form-field/select/styles/scss/variable.scss +14 -0
- package/src/form-field/select/styles/styled-components/base.ts +135 -0
- package/src/frame/components/breadcrumb/Arrow.tsx +18 -0
- package/src/frame/components/breadcrumb/Container.tsx +20 -0
- package/src/frame/components/breadcrumb/Dropdown.tsx +28 -0
- package/src/frame/components/breadcrumb/Item.tsx +30 -0
- package/src/frame/components/breadcrumb/Label.tsx +11 -0
- package/src/frame/components/breadcrumb/SelectBox.tsx +48 -0
- package/src/frame/components/breadcrumb/SelectItem.tsx +47 -0
- package/src/frame/components/breadcrumb/Selected.tsx +25 -0
- package/src/frame/components/breadcrumb/index.tsx +15 -0
- package/src/frame/components/header/Container.tsx +11 -0
- package/src/frame/components/header/Logo.tsx +19 -0
- package/src/frame/components/header/index.tsx +27 -0
- package/src/frame/components/header/util/Button.tsx +31 -0
- package/src/frame/components/header/util/Container.tsx +15 -0
- package/src/frame/components/header/util/Item.tsx +16 -0
- package/src/frame/components/header/util/logout/Logout.tsx +22 -0
- package/src/frame/components/header/util/notify/Container.tsx +57 -0
- package/src/frame/components/header/util/notify/Dropdown.tsx +24 -0
- package/src/frame/components/header/util/notify/List.tsx +56 -0
- package/src/frame/components/header/util/notify/OpenButton.tsx +35 -0
- package/src/frame/components/header/util/notify/RefreshButton.tsx +31 -0
- package/src/frame/components/header/util/profile/Avatar.tsx +19 -0
- package/src/frame/components/header/util/profile/Container.tsx +61 -0
- package/src/frame/components/header/util/profile/Dropdown.tsx +30 -0
- package/src/frame/components/header/util/profile/DropdownButton.tsx +27 -0
- package/src/frame/components/header/util/profile/Selected.tsx +29 -0
- package/src/frame/components/header/util/setting/Button.tsx +39 -0
- package/src/frame/components/header/util/time/Container.tsx +13 -0
- package/src/frame/components/header/util/time/Time.tsx +11 -0
- package/src/frame/components/index.tsx +17 -0
- package/src/frame/components/nav/Button.tsx +22 -0
- package/src/frame/components/nav/Container.tsx +64 -0
- package/src/frame/components/nav/Logo.tsx +24 -0
- package/src/frame/components/nav/index.tsx +5 -0
- package/src/frame/components/page/Container.tsx +11 -0
- package/src/frame/components/page/ServiceFrame.tsx +13 -0
- package/src/frame/components/page/ServiceMain.tsx +13 -0
- package/src/frame/components/page/ServiceMainWrapper.tsx +26 -0
- package/src/frame/components/page/index.tsx +14 -0
- package/src/frame/components/popup/Container.tsx +21 -0
- package/src/frame/components/popup/frame/Body.tsx +17 -0
- package/src/frame/components/popup/frame/Container.tsx +20 -0
- package/src/frame/components/popup/frame/Header.tsx +27 -0
- package/src/frame/components/popup/frame/index.tsx +11 -0
- package/src/frame/components/popup/index.tsx +9 -0
- package/src/frame/frame.scss +2 -0
- package/src/frame/index.tsx +3 -0
- package/src/frame/styled.tsx +3 -0
- package/src/frame/styles/scss/size.variables.scss +28 -0
- package/src/frame/styles/scss/theme.variables.scss +23 -0
- package/src/frame/styles/styled-components/breadcrumb/base.ts +126 -0
- package/src/frame/styles/styled-components/index.ts +13 -0
- package/src/frame/styles/styled-components/page/common.ts +66 -0
- package/src/frame/styles/styled-components/page/header.ts +44 -0
- package/src/frame/styles/styled-components/page/nav.ts +127 -0
- package/src/frame/styles/styled-components/page/util.common.ts +48 -0
- package/src/frame/styles/styled-components/page/util.notify.ts +116 -0
- package/src/frame/styles/styled-components/page/util.profile.ts +78 -0
- package/src/frame/styles/styled-components/popup/popup.ts +66 -0
- package/src/icon/components/alternate/Loading.tsx +15 -0
- package/src/icon/components/alternate/index.tsx +7 -0
- package/src/icon/components/arrow/dropdown/Breadcrumb.tsx +20 -0
- package/src/icon/components/arrow/dropdown/Select.tsx +20 -0
- package/src/icon/components/arrow/index.tsx +11 -0
- package/src/icon/components/button/Close.tsx +20 -0
- package/src/icon/components/button/Filter.tsx +19 -0
- package/src/icon/components/button/Refresh.tsx +18 -0
- package/src/icon/components/button/Reset.tsx +18 -0
- package/src/icon/components/button/add/Outline.tsx +23 -0
- package/src/icon/components/button/add/Solid.tsx +23 -0
- package/src/icon/components/button/add/index.tsx +9 -0
- package/src/icon/components/button/index.tsx +17 -0
- package/src/icon/components/button/remove/Outline.tsx +23 -0
- package/src/icon/components/button/remove/Solid.tsx +23 -0
- package/src/icon/components/button/remove/index.tsx +9 -0
- package/src/icon/components/cage/Fan.tsx +48 -0
- package/src/icon/components/cage/index.tsx +7 -0
- package/src/icon/components/chart/Control.tsx +40 -0
- package/src/icon/components/chart/index.tsx +7 -0
- package/src/icon/components/delta/Delta.tsx +79 -0
- package/src/icon/components/delta/index.tsx +3 -0
- package/src/icon/components/health-score/HealthScore.tsx +46 -0
- package/src/icon/components/health-score/index.tsx +3 -0
- package/src/icon/components/input/Checkbox.tsx +33 -0
- package/src/icon/components/input/Radio.tsx +17 -0
- package/src/icon/components/input/Search.tsx +12 -0
- package/src/icon/components/input/index.tsx +11 -0
- package/src/icon/components/nav/common/Farm.tsx +12 -0
- package/src/icon/components/nav/factory-service/CCTV.tsx +12 -0
- package/src/icon/components/nav/factory-service/Dashboard.tsx +12 -0
- package/src/icon/components/nav/factory-service/Home.tsx +12 -0
- package/src/icon/components/nav/factory-service/Message.tsx +12 -0
- package/src/icon/components/nav/factory-service/Productivity.tsx +12 -0
- package/src/icon/components/nav/farm-service/Analysis.tsx +12 -0
- package/src/icon/components/nav/farm-service/Control.tsx +12 -0
- package/src/icon/components/nav/farm-service/Dashboard.tsx +12 -0
- package/src/icon/components/nav/farm-service/Eggs.tsx +12 -0
- package/src/icon/components/nav/farm-service/Feeding.tsx +12 -0
- package/src/icon/components/nav/farm-service/Feeds.tsx +12 -0
- package/src/icon/components/nav/farm-service/Flock.tsx +12 -0
- package/src/icon/components/nav/farm-service/Medicine.tsx +12 -0
- package/src/icon/components/nav/farm-service/Summary.tsx +12 -0
- package/src/icon/components/nav/index.tsx +44 -0
- package/src/icon/components/page-header/Check.tsx +12 -0
- package/src/icon/components/page-header/index.tsx +5 -0
- package/src/icon/components/tab-menu/Graph.tsx +12 -0
- package/src/icon/components/tab-menu/Table.tsx +12 -0
- package/src/icon/components/tab-menu/index.tsx +9 -0
- package/src/icon/components/table/index.tsx +9 -0
- package/src/icon/components/table/pagination/First.tsx +18 -0
- package/src/icon/components/table/pagination/Last.tsx +18 -0
- package/src/icon/components/table/pagination/Next.tsx +18 -0
- package/src/icon/components/table/pagination/Prev.tsx +18 -0
- package/src/icon/components/table/pagination/index.tsx +13 -0
- package/src/icon/components/table/sort/Asc.tsx +12 -0
- package/src/icon/components/table/sort/Common.tsx +12 -0
- package/src/icon/components/table/sort/Desc.tsx +12 -0
- package/src/icon/components/table/sort/index.tsx +11 -0
- package/src/icon/components/tooltip/Outline.tsx +7 -0
- package/src/icon/components/tooltip/Solid.tsx +7 -0
- package/src/icon/components/tooltip/index.tsx +9 -0
- package/src/icon/icon.scss +5 -0
- package/src/icon/index.tsx +31 -0
- package/src/icon/styled.tsx +17 -0
- package/src/icon/styles/scss/arrow.scss +6 -0
- package/src/icon/styles/scss/chart.scss +3 -0
- package/src/icon/styles/scss/input.scss +11 -0
- package/src/icon/styles/scss/page-header.scss +6 -0
- package/src/icon/styles/scss/table.scss +6 -0
- package/src/icon/styles/styled/arrow.ts +18 -0
- package/src/icon/styles/styled/chart.ts +17 -0
- package/src/icon/styles/styled/common.ts +27 -0
- package/src/icon/styles/styled/delta.ts +25 -0
- package/src/icon/styles/styled/input.ts +76 -0
- package/src/icon/styles/styled/page-header.ts +17 -0
- package/src/icon/styles/styled/table.ts +19 -0
- package/src/icon/svg/arrow/depth.svg +3 -0
- package/src/icon/svg/arrow/dropdown/breadcrumb.svg +3 -0
- package/src/icon/svg/arrow/dropdown/select.svg +3 -0
- package/src/icon/svg/button/add-outline.svg +4 -0
- package/src/icon/svg/button/add-solid.svg +3 -0
- package/src/icon/svg/button/close.svg +3 -0
- package/src/icon/svg/button/filter.svg +5 -0
- package/src/icon/svg/button/loading.svg +4 -0
- package/src/icon/svg/button/refresh.svg +4 -0
- package/src/icon/svg/button/remove-outline.svg +3 -0
- package/src/icon/svg/button/remove-solid.svg +3 -0
- package/src/icon/svg/button/reset.svg +3 -0
- package/src/icon/svg/chart/control/pan-left.svg +4 -0
- package/src/icon/svg/chart/control/pan-right.svg +4 -0
- package/src/icon/svg/chart/control/zoom-in.svg +4 -0
- package/src/icon/svg/chart/control/zoom-out.svg +4 -0
- package/src/icon/svg/delta/down-arrow.svg +4 -0
- package/src/icon/svg/delta/down-flat.svg +10 -0
- package/src/icon/svg/delta/down-rounded.svg +10 -0
- package/src/icon/svg/delta/up-arrow.svg +4 -0
- package/src/icon/svg/delta/up-flat.svg +10 -0
- package/src/icon/svg/delta/up-rounded.svg +10 -0
- package/src/icon/svg/input/search.svg +4 -0
- package/src/icon/svg/nav/factory-service/cctv.svg +3 -0
- package/src/icon/svg/nav/factory-service/dashboard.svg +3 -0
- package/src/icon/svg/nav/factory-service/farm.svg +3 -0
- package/src/icon/svg/nav/factory-service/home.svg +5 -0
- package/src/icon/svg/nav/factory-service/message.svg +3 -0
- package/src/icon/svg/nav/farm-service/analysis.svg +3 -0
- package/src/icon/svg/nav/farm-service/cctv.svg +3 -0
- package/src/icon/svg/nav/farm-service/control.svg +3 -0
- package/src/icon/svg/nav/farm-service/dashboard.svg +5 -0
- package/src/icon/svg/nav/farm-service/eggs.svg +3 -0
- package/src/icon/svg/nav/farm-service/feeds.svg +14 -0
- package/src/icon/svg/nav/farm-service/flock.svg +14 -0
- package/src/icon/svg/nav/farm-service/medicine.svg +4 -0
- package/src/icon/svg/nav/farm-service/summary.svg +7 -0
- package/src/icon/svg/nav/farm.svg +3 -0
- package/src/icon/svg/nav/grid.svg +3 -0
- package/src/icon/svg/nav/lock.svg +1 -0
- package/src/icon/svg/page-header/check.svg +3 -0
- package/src/icon/svg/tab-menu/graph.svg +3 -0
- package/src/icon/svg/tab-menu/table.svg +8 -0
- package/src/icon/svg/table/pagination/first.svg +4 -0
- package/src/icon/svg/table/pagination/last.svg +4 -0
- package/src/icon/svg/table/pagination/next.svg +3 -0
- package/src/icon/svg/table/pagination/prev.svg +3 -0
- package/src/icon/svg/table/sort/asc.svg +3 -0
- package/src/icon/svg/table/sort/common.svg +6 -0
- package/src/icon/svg/table/sort/desc.svg +3 -0
- package/src/icon/svg/tooltip/outline.svg +5 -0
- package/src/icon/svg/tooltip/solid.svg +3 -0
- package/src/index.scss +20 -0
- package/src/index.tsx +16 -0
- package/src/modal/components/assets/alert/MessageBox.tsx +26 -0
- package/src/modal/components/assets/alert/index.tsx +7 -0
- package/src/modal/components/assets/button/ButtonClose.tsx +34 -0
- package/src/modal/components/assets/button/ButtonDialog.tsx +32 -0
- package/src/modal/components/assets/button/index.tsx +6 -0
- package/src/modal/components/assets/form/ButtonContainer.tsx +18 -0
- package/src/modal/components/assets/form/Provider.tsx +12 -0
- package/src/modal/components/assets/form/index.tsx +9 -0
- package/src/modal/components/assets/layout/Body.tsx +7 -0
- package/src/modal/components/assets/layout/Container.tsx +37 -0
- package/src/modal/components/assets/layout/Footer.tsx +25 -0
- package/src/modal/components/assets/layout/Header.tsx +45 -0
- package/src/modal/components/assets/layout/index.tsx +14 -0
- package/src/modal/components/basic/Container.tsx +45 -0
- package/src/modal/components/basic/Provider.tsx +30 -0
- package/src/modal/components/basic/Root.tsx +84 -0
- package/src/modal/components/basic/index.tsx +11 -0
- package/src/modal/components/draggable/Container.tsx +75 -0
- package/src/modal/components/draggable/Provider.tsx +26 -0
- package/src/modal/components/draggable/index.tsx +9 -0
- package/src/modal/components/index.tsx +17 -0
- package/src/modal/hooks/useModal.ts +295 -0
- package/src/modal/index.tsx +3 -0
- package/src/modal/jotai/modal.ts +18 -0
- package/src/modal/modal.scss +2 -0
- package/src/modal/styled.tsx +15 -0
- package/src/modal/styles/scss/legacy.scss +254 -0
- package/src/modal/styles/scss/variables.scss +32 -0
- package/src/modal/styles/styled-components/alert.ts +24 -0
- package/src/modal/styles/styled-components/basic.ts +41 -0
- package/src/modal/styles/styled-components/draggable.ts +35 -0
- package/src/modal/styles/styled-components/form.ts +23 -0
- package/src/modal/styles/styled-components/layout.ts +106 -0
- package/src/modal/util.ts +4 -0
- package/src/scrollbar/components/Container.tsx +70 -0
- package/src/scrollbar/index.tsx +5 -0
- package/src/scrollbar/scrollbar.scss +2 -0
- package/src/scrollbar/styled.tsx +3 -0
- package/src/scrollbar/styles/scss/reset.scss +59 -0
- package/src/scrollbar/styles/scss/size.scss +4 -0
- package/src/scrollbar/styles/styled-components/scrollbar.ts +82 -0
- package/src/style-base/base.scss +6 -0
- package/src/style-base/essentials/calendar.scss +557 -0
- package/src/style-base/essentials/colors.scss +195 -0
- package/src/style-base/essentials/document.scss +14 -0
- package/src/style-base/essentials/fonts.scss +24 -0
- package/src/style-base/essentials/icon.scss +11 -0
- package/src/style-base/essentials/palette.scss +146 -0
- package/src/style-base/essentials/reset.scss +156 -0
- package/src/style-base/mantine.css +4 -0
- package/src/style-base/responsive.scss +57 -0
- package/src/style-config/index.ts +5 -0
- package/src/style-config/postcss/postcss-config.ts +9 -0
- package/src/styled.components.tsx +31 -0
- package/src/styled.template.tsx +5 -0
- package/src/tab-menu/components/custom/AddButton.tsx +32 -0
- package/src/tab-menu/components/custom/Container.tsx +60 -0
- package/src/tab-menu/components/custom/MenuButton.tsx +39 -0
- package/src/tab-menu/components/filter/Default.tsx +3 -0
- package/src/tab-menu/components/filter/WithData.tsx +36 -0
- package/src/tab-menu/components/mode/List.tsx +66 -0
- package/src/tab-menu/components/page/List.tsx +88 -0
- package/src/tab-menu/components/separated-square/List.tsx +66 -0
- package/src/tab-menu/components/text/List.tsx +53 -0
- package/src/tab-menu/index.tsx +21 -0
- package/src/tab-menu/styled.tsx +21 -0
- package/src/tab-menu/styles/scss/mode.scss +5 -0
- package/src/tab-menu/styles/scss/page-menu.scss +4 -0
- package/src/tab-menu/styles/scss/text-menu.scss +7 -0
- package/src/tab-menu/styles/styled-components/custom-menu.ts +80 -0
- package/src/tab-menu/styles/styled-components/filter-with-data.ts +72 -0
- package/src/tab-menu/styles/styled-components/mode-menu.ts +114 -0
- package/src/tab-menu/styles/styled-components/page-menu.ts +90 -0
- package/src/tab-menu/styles/styled-components/separated-square.ts +78 -0
- package/src/tab-menu/styles/styled-components/tab-menu.ts +21 -0
- package/src/tab-menu/styles/styled-components/text-menu.ts +73 -0
- package/src/tab-menu/tab-menu.scss +3 -0
- package/src/table/components/pagination/Button.tsx +61 -0
- package/src/table/components/pagination/Container.tsx +148 -0
- package/src/table/components/pagination/Icon.tsx +26 -0
- package/src/table/components/sort/Button.tsx +34 -0
- package/src/table/components/tables/Container.tsx +41 -0
- package/src/table/components/tables/basic/Container.tsx +52 -0
- package/src/table/components/tables/basic/index.tsx +13 -0
- package/src/table/components/tables/common/Body.tsx +29 -0
- package/src/table/components/tables/common/Cell.tsx +32 -0
- package/src/table/components/tables/common/CellWrap.tsx +27 -0
- package/src/table/components/tables/common/ColGroup.tsx +30 -0
- package/src/table/components/tables/common/DefaultTemplate.tsx +37 -0
- package/src/table/components/tables/common/Foot.tsx +25 -0
- package/src/table/components/tables/common/Head.tsx +25 -0
- package/src/table/components/tables/common/HeadDefault.tsx +42 -0
- package/src/table/components/tables/common/Row.tsx +36 -0
- package/src/table/components/tables/common/TopLine.tsx +11 -0
- package/src/table/components/tables/common/index.tsx +37 -0
- package/src/table/components/tables/grid/Cell.tsx +25 -0
- package/src/table/components/tables/grid/Container.tsx +23 -0
- package/src/table/components/tables/grid/Contents.tsx +25 -0
- package/src/table/components/tables/grid/index.tsx +19 -0
- package/src/table/components/tables/list/Container.tsx +36 -0
- package/src/table/components/tables/list/index.tsx +13 -0
- package/src/table/components/tables/sheet/Container.tsx +39 -0
- package/src/table/components/tables/sheet/index.tsx +13 -0
- package/src/table/hooks/index.ts +5 -0
- package/src/table/hooks/useTableColumns.ts +24 -0
- package/src/table/hooks/useTablePage.ts +150 -0
- package/src/table/hooks/useTableRowCheck.ts +112 -0
- package/src/table/hooks/useTableSearch.ts +69 -0
- package/src/table/hooks/useTableSort.ts +108 -0
- package/src/table/index.tsx +37 -0
- package/src/table/styled.tsx +3 -0
- package/src/table/styles/scss/common.scss +31 -0
- package/src/table/styles/scss/pagination.scss +14 -0
- package/src/table/styles/scss/reset.scss +7 -0
- package/src/table/styles/styled/basic.ts +59 -0
- package/src/table/styles/styled/common.ts +123 -0
- package/src/table/styles/styled/grid.ts +62 -0
- package/src/table/styles/styled/index.ts +20 -0
- package/src/table/styles/styled/list.ts +38 -0
- package/src/table/styles/styled/pagination.ts +77 -0
- package/src/table/styles/styled/sort.ts +25 -0
- package/src/table/styles/styled/spreadsheet.ts +86 -0
- package/src/table/table.scss +3 -0
- package/src/table/util.ts +1 -0
- package/src/template/compare/compare.scss +1 -0
- package/src/template/compare/components/box/Container.tsx +33 -0
- package/src/template/compare/components/box/TextStrong.tsx +15 -0
- package/src/template/compare/components/box/TextSub.tsx +15 -0
- package/src/template/compare/components/box/index.tsx +11 -0
- package/src/template/compare/components/button/Remove.tsx +28 -0
- package/src/template/compare/components/button/index.tsx +5 -0
- package/src/template/compare/components/chart/Container.tsx +33 -0
- package/src/template/compare/components/chart/graph/Container.tsx +15 -0
- package/src/template/compare/components/chart/graph/Item.tsx +13 -0
- package/src/template/compare/components/chart/index.tsx +16 -0
- package/src/template/compare/components/chart/legend/Container.tsx +23 -0
- package/src/template/compare/components/chart/legend/Section.tsx +31 -0
- package/src/template/compare/components/select-list/Container.tsx +15 -0
- package/src/template/compare/components/select-list/Header.tsx +15 -0
- package/src/template/compare/components/select-list/Item.tsx +15 -0
- package/src/template/compare/components/select-list/List.tsx +18 -0
- package/src/template/compare/components/select-list/index.tsx +13 -0
- package/src/template/compare/index.tsx +13 -0
- package/src/template/compare/styled.tsx +17 -0
- package/src/template/compare/styles/scss/variables.scss +17 -0
- package/src/template/compare/styles/styled-components/chart/graph.ts +26 -0
- package/src/template/compare/styles/styled-components/chart/layout.ts +38 -0
- package/src/template/compare/styles/styled-components/chart/legend.ts +64 -0
- package/src/template/compare/styles/styled-components/common.ts +57 -0
- package/src/template/compare/styles/styled-components/select-list.ts +36 -0
- package/src/template/filter/components/Container.tsx +39 -0
- package/src/template/filter/components/Group.tsx +100 -0
- package/src/template/filter/components/ToggleButton.tsx +27 -0
- package/src/template/filter/index.tsx +5 -0
- package/src/template/filter/styled.tsx +3 -0
- package/src/template/filter/styles/styled-components/filter.ts +66 -0
- package/src/template/health-score/components/Chart.tsx +38 -0
- package/src/template/health-score/index.tsx +3 -0
- package/src/template/health-score/styled.tsx +3 -0
- package/src/template/health-score/styles/styled/chart.ts +26 -0
- package/src/template.tsx +5 -0
- package/src/text-editor/components/Container.tsx +68 -0
- package/src/text-editor/components/Contents.tsx +14 -0
- package/src/text-editor/components/toolbar/Container.tsx +20 -0
- package/src/text-editor/components/toolbar/ControlsGroup.tsx +18 -0
- package/src/text-editor/components/toolbar/align/Center.tsx +23 -0
- package/src/text-editor/components/toolbar/align/Justify.tsx +23 -0
- package/src/text-editor/components/toolbar/align/Left.tsx +23 -0
- package/src/text-editor/components/toolbar/align/Right.tsx +23 -0
- package/src/text-editor/components/toolbar/index.tsx +35 -0
- package/src/text-editor/components/toolbar/list/Bullet.tsx +23 -0
- package/src/text-editor/components/toolbar/list/Ordered.tsx +23 -0
- package/src/text-editor/components/toolbar/text/Bold.tsx +23 -0
- package/src/text-editor/components/toolbar/text/Italic.tsx +23 -0
- package/src/text-editor/components/toolbar/text/Strike.tsx +27 -0
- package/src/text-editor/components/toolbar/text/Underline.tsx +23 -0
- package/src/text-editor/index.tsx +11 -0
- package/src/text-editor/styled.tsx +5 -0
- package/src/text-editor/styles/scss/style.scss +10 -0
- package/src/text-editor/styles/scss/theme.scss +17 -0
- package/src/text-editor/styles/styled/editor.ts +73 -0
- package/src/text-editor/svg/align/center.svg +6 -0
- package/src/text-editor/svg/align/justify.svg +6 -0
- package/src/text-editor/svg/align/left.svg +6 -0
- package/src/text-editor/svg/align/right.svg +6 -0
- package/src/text-editor/svg/list/bullet.svg +8 -0
- package/src/text-editor/svg/list/ordered.svg +8 -0
- package/src/text-editor/svg/text/bold.svg +4 -0
- package/src/text-editor/svg/text/italic.svg +5 -0
- package/src/text-editor/svg/text/strikethrough.svg +4 -0
- package/src/text-editor/svg/text/underline.svg +4 -0
- package/src/text-editor/text-editor.scss +2 -0
- package/src/tooltip/components/Help.tsx +38 -0
- package/src/tooltip/components/MessageBox.tsx +26 -0
- package/src/tooltip/components/Wrapper.tsx +34 -0
- package/src/tooltip/index.tsx +11 -0
- package/src/tooltip/styled.tsx +9 -0
- package/src/tooltip/styles/scss/size.scss +4 -0
- package/src/tooltip/styles/styled-components/base.ts +20 -0
- package/src/tooltip/styles/styled-components/help.ts +17 -0
- package/src/tooltip/styles/styled-components/message-box.ts +74 -0
- package/src/tooltip/tooltip.scss +1 -0
- package/src/types/button/base.d.ts +91 -0
- package/src/types/button/index.d.ts +2 -0
- package/src/types/button/multiple.d.ts +6 -0
- package/src/types/chart/axis.d.ts +15 -0
- package/src/types/chart/control.d.ts +109 -0
- package/src/types/chart/data.d.ts +41 -0
- package/src/types/chart/dot.d.ts +3 -0
- package/src/types/chart/index.d.ts +7 -0
- package/src/types/chart/legend.d.ts +124 -0
- package/src/types/chart/props.d.ts +271 -0
- package/src/types/chart/tick.d.ts +30 -0
- package/src/types/chip/index.d.ts +1 -0
- package/src/types/chip/props.d.ts +14 -0
- package/src/types/common.d.ts +16 -0
- package/src/types/delta/index.d.ts +1 -0
- package/src/types/delta/option.d.ts +57 -0
- package/src/types/form/common/format.d.ts +15 -0
- package/src/types/form/common/hook.d.ts +74 -0
- package/src/types/form/common/index.d.ts +6 -0
- package/src/types/form/common/label.d.ts +11 -0
- package/src/types/form/common/props.d.ts +136 -0
- package/src/types/form/common/state.d.ts +96 -0
- package/src/types/form/common/validation.d.ts +18 -0
- package/src/types/form/index.d.ts +5 -0
- package/src/types/form/input/index.d.ts +7 -0
- package/src/types/form/input/legacy/auto-complete.d.ts +77 -0
- package/src/types/form/input/legacy/base.d.ts +159 -0
- package/src/types/form/input/legacy/find-address.d.ts +7 -0
- package/src/types/form/input/legacy/refer.d.ts +84 -0
- package/src/types/form/input/legacy/select.options.d.ts +123 -0
- package/src/types/form/input/props.d.ts +156 -0
- package/src/types/form/search/index.d.ts +1 -0
- package/src/types/form/search/search.d.ts +4 -0
- package/src/types/form/select/index.d.ts +2 -0
- package/src/types/form/select/option.d.ts +43 -0
- package/src/types/form/select/props.d.ts +101 -0
- package/src/types/form/util/find-address.d.ts +7 -0
- package/src/types/form/util/index.d.ts +1 -0
- package/src/types/frame/index.d.ts +2 -0
- package/src/types/frame/notify.d.ts +7 -0
- package/src/types/frame/sitemap.d.ts +38 -0
- package/src/types/icon/delta.d.ts +32 -0
- package/src/types/icon/fan.d.ts +17 -0
- package/src/types/icon/index.d.ts +2 -0
- package/src/types/index.d.ts +15 -0
- package/src/types/location/geojson.d.ts +59 -0
- package/src/types/location/index.d.ts +2 -0
- package/src/types/location/region.d.ts +19 -0
- package/src/types/modal/index.d.ts +2 -0
- package/src/types/modal/modal.d.ts +88 -0
- package/src/types/modal/modal.options.d.ts +33 -0
- package/src/types/style-option.d.ts +33 -0
- package/src/types/tab-menu/index.d.ts +1 -0
- package/src/types/tab-menu/tab-menu.d.ts +37 -0
- package/src/types/table/components/pagination.d.ts +7 -0
- package/src/types/table/components/props.d.ts +104 -0
- package/src/types/table/data/column.d.ts +60 -0
- package/src/types/table/data/row.d.ts +26 -0
- package/src/types/table/index.d.ts +10 -0
- package/src/types/table/layout/grid.d.ts +8 -0
- package/src/types/table/layout/layout.d.ts +3 -0
- package/src/types/table/utils/row.check.d.ts +37 -0
- package/src/types/template/compare/chart.d.ts +8 -0
- package/src/types/template/filter.d.ts +39 -0
- package/src/types/template/index.d.ts +2 -0
- package/src/types/weather/api.d.ts +184 -0
- package/src/types/weather/base.d.ts +14 -0
- package/src/types/weather/index.d.ts +4 -0
- package/src/types/weather/korea.d.ts +163 -0
- package/src/types/weather/open-weather-map.d.ts +181 -0
- package/src/weather/apis/index.ts +4 -0
- package/src/weather/apis/korea/client.ts +93 -0
- package/src/weather/apis/korea/server.ts +250 -0
- package/src/weather/apis/open-weather-map/client.ts +69 -0
- package/src/weather/apis/open-weather-map/server.ts +134 -0
- package/src/weather/components/icon/Address.tsx +17 -0
- package/src/weather/components/icon/Weather.tsx +33 -0
- package/src/weather/components/index.tsx +7 -0
- package/src/weather/components/page-header/Address.tsx +21 -0
- package/src/weather/components/page-header/Alert.tsx +42 -0
- package/src/weather/components/page-header/Container.tsx +14 -0
- package/src/weather/components/page-header/Forecast.tsx +23 -0
- package/src/weather/components/page-header/NextDays.tsx +34 -0
- package/src/weather/components/page-header/Today.tsx +153 -0
- package/src/weather/data/alert-regions-meta.json +1286 -0
- package/src/weather/data/response.ts +36 -0
- package/src/weather/data/weather-regions-meta.json +9833 -0
- package/src/weather/hooks/index.ts +4 -0
- package/src/weather/hooks/useOpenWeatherMap.ts +31 -0
- package/src/weather/hooks/useWeatherKorea.ts +58 -0
- package/src/weather/hooks/useWeatherKoreaAlert.ts +22 -0
- package/src/weather/index.tsx +4 -0
- package/src/weather/jotai/coordinate.ts +16 -0
- package/src/weather/jotai/farm-idx.ts +5 -0
- package/src/weather/jotai/index.ts +2 -0
- package/src/weather/styled.tsx +13 -0
- package/src/weather/styles/styled-components/alert.ts +30 -0
- package/src/weather/styles/styled-components/base.ts +79 -0
- package/src/weather/styles/styled-components/next-days.ts +25 -0
- package/src/weather/styles/styled-components/today.ts +40 -0
- package/src/weather/utils/alert.ts +30 -0
- package/src/weather/utils/date-time.ts +68 -0
- package/src/weather/utils/index.ts +4 -0
- package/src/weather/utils/location.ts +159 -0
- package/src/weather/utils/validate.ts +9 -0
- package/src/weather/utils/weather.ts +304 -0
|
@@ -0,0 +1,1286 @@
|
|
|
1
|
+
{
|
|
2
|
+
"response": {
|
|
3
|
+
"header": {
|
|
4
|
+
"resultCode": "00",
|
|
5
|
+
"resultMsg": "NORMAL_SERVICE"
|
|
6
|
+
},
|
|
7
|
+
"body": {
|
|
8
|
+
"dataType": "JSON",
|
|
9
|
+
"items": {
|
|
10
|
+
"item": [
|
|
11
|
+
{
|
|
12
|
+
"warningAreaCode": "L1080600",
|
|
13
|
+
"korName": "창원시"
|
|
14
|
+
},
|
|
15
|
+
{
|
|
16
|
+
"warningAreaCode": "L1060800",
|
|
17
|
+
"korName": "장수군"
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
"warningAreaCode": "S1231300",
|
|
21
|
+
"korName": "전남북부서해앞바다"
|
|
22
|
+
},
|
|
23
|
+
{
|
|
24
|
+
"warningAreaCode": "S1250000",
|
|
25
|
+
"korName": "서해중부전해상"
|
|
26
|
+
},
|
|
27
|
+
{
|
|
28
|
+
"warningAreaCode": "S1251300",
|
|
29
|
+
"korName": "충남북부앞바다"
|
|
30
|
+
},
|
|
31
|
+
{
|
|
32
|
+
"warningAreaCode": "S1310000",
|
|
33
|
+
"korName": "남해동부전해상"
|
|
34
|
+
},
|
|
35
|
+
{
|
|
36
|
+
"warningAreaCode": "S1311300",
|
|
37
|
+
"korName": "경남중부남해앞바다"
|
|
38
|
+
},
|
|
39
|
+
{
|
|
40
|
+
"warningAreaCode": "S1321200",
|
|
41
|
+
"korName": "전남동부남해앞바다"
|
|
42
|
+
},
|
|
43
|
+
{
|
|
44
|
+
"warningAreaCode": "S1323200",
|
|
45
|
+
"korName": "제주도동부앞바다"
|
|
46
|
+
},
|
|
47
|
+
{
|
|
48
|
+
"warningAreaCode": "S1330000",
|
|
49
|
+
"korName": "제주도전해상"
|
|
50
|
+
},
|
|
51
|
+
{
|
|
52
|
+
"warningAreaCode": "S2110200",
|
|
53
|
+
"korName": "울산앞바다중 평수구역"
|
|
54
|
+
},
|
|
55
|
+
{
|
|
56
|
+
"warningAreaCode": "L1000000",
|
|
57
|
+
"korName": "전국"
|
|
58
|
+
},
|
|
59
|
+
{
|
|
60
|
+
"warningAreaCode": "L1010000",
|
|
61
|
+
"korName": "경기도"
|
|
62
|
+
},
|
|
63
|
+
{
|
|
64
|
+
"warningAreaCode": "L1010300",
|
|
65
|
+
"korName": "과천시"
|
|
66
|
+
},
|
|
67
|
+
{
|
|
68
|
+
"warningAreaCode": "L1010500",
|
|
69
|
+
"korName": "시흥시"
|
|
70
|
+
},
|
|
71
|
+
{
|
|
72
|
+
"warningAreaCode": "L1010600",
|
|
73
|
+
"korName": "부천시"
|
|
74
|
+
},
|
|
75
|
+
{
|
|
76
|
+
"warningAreaCode": "L1010700",
|
|
77
|
+
"korName": "김포시"
|
|
78
|
+
},
|
|
79
|
+
{
|
|
80
|
+
"warningAreaCode": "L1010800",
|
|
81
|
+
"korName": "인천광역시"
|
|
82
|
+
},
|
|
83
|
+
{
|
|
84
|
+
"warningAreaCode": "L1011100",
|
|
85
|
+
"korName": "동두천시"
|
|
86
|
+
},
|
|
87
|
+
{
|
|
88
|
+
"warningAreaCode": "L1011200",
|
|
89
|
+
"korName": "연천군"
|
|
90
|
+
},
|
|
91
|
+
{
|
|
92
|
+
"warningAreaCode": "L1011300",
|
|
93
|
+
"korName": "포천시"
|
|
94
|
+
},
|
|
95
|
+
{
|
|
96
|
+
"warningAreaCode": "L1011500",
|
|
97
|
+
"korName": "고양시"
|
|
98
|
+
},
|
|
99
|
+
{
|
|
100
|
+
"warningAreaCode": "L1011600",
|
|
101
|
+
"korName": "양주시"
|
|
102
|
+
},
|
|
103
|
+
{
|
|
104
|
+
"warningAreaCode": "L1011700",
|
|
105
|
+
"korName": "의정부시"
|
|
106
|
+
},
|
|
107
|
+
{
|
|
108
|
+
"warningAreaCode": "L1011800",
|
|
109
|
+
"korName": "파주시"
|
|
110
|
+
},
|
|
111
|
+
{
|
|
112
|
+
"warningAreaCode": "L1011900",
|
|
113
|
+
"korName": "수원시"
|
|
114
|
+
},
|
|
115
|
+
{
|
|
116
|
+
"warningAreaCode": "L1012100",
|
|
117
|
+
"korName": "안양시"
|
|
118
|
+
},
|
|
119
|
+
{
|
|
120
|
+
"warningAreaCode": "L1012200",
|
|
121
|
+
"korName": "구리시"
|
|
122
|
+
},
|
|
123
|
+
{
|
|
124
|
+
"warningAreaCode": "L1012300",
|
|
125
|
+
"korName": "남양주시"
|
|
126
|
+
},
|
|
127
|
+
{
|
|
128
|
+
"warningAreaCode": "L1012400",
|
|
129
|
+
"korName": "오산시"
|
|
130
|
+
},
|
|
131
|
+
{
|
|
132
|
+
"warningAreaCode": "L1012500",
|
|
133
|
+
"korName": "평택시"
|
|
134
|
+
},
|
|
135
|
+
{
|
|
136
|
+
"warningAreaCode": "L1012700",
|
|
137
|
+
"korName": "의왕시"
|
|
138
|
+
},
|
|
139
|
+
{
|
|
140
|
+
"warningAreaCode": "L1012800",
|
|
141
|
+
"korName": "하남시"
|
|
142
|
+
},
|
|
143
|
+
{
|
|
144
|
+
"warningAreaCode": "L1012900",
|
|
145
|
+
"korName": "용인시"
|
|
146
|
+
},
|
|
147
|
+
{
|
|
148
|
+
"warningAreaCode": "L1013000",
|
|
149
|
+
"korName": "이천시"
|
|
150
|
+
},
|
|
151
|
+
{
|
|
152
|
+
"warningAreaCode": "L1013100",
|
|
153
|
+
"korName": "안성시"
|
|
154
|
+
},
|
|
155
|
+
{
|
|
156
|
+
"warningAreaCode": "L1013400",
|
|
157
|
+
"korName": "광주시"
|
|
158
|
+
},
|
|
159
|
+
{
|
|
160
|
+
"warningAreaCode": "L1013500",
|
|
161
|
+
"korName": "양평군"
|
|
162
|
+
},
|
|
163
|
+
{
|
|
164
|
+
"warningAreaCode": "L1014000",
|
|
165
|
+
"korName": "서해5도"
|
|
166
|
+
},
|
|
167
|
+
{
|
|
168
|
+
"warningAreaCode": "L1014100",
|
|
169
|
+
"korName": "서해5도"
|
|
170
|
+
},
|
|
171
|
+
{
|
|
172
|
+
"warningAreaCode": "L1020000",
|
|
173
|
+
"korName": "강원도"
|
|
174
|
+
},
|
|
175
|
+
{
|
|
176
|
+
"warningAreaCode": "L1020300",
|
|
177
|
+
"korName": "태백시"
|
|
178
|
+
},
|
|
179
|
+
{
|
|
180
|
+
"warningAreaCode": "L1020800",
|
|
181
|
+
"korName": "영월군"
|
|
182
|
+
},
|
|
183
|
+
{
|
|
184
|
+
"warningAreaCode": "L1021200",
|
|
185
|
+
"korName": "원주시"
|
|
186
|
+
},
|
|
187
|
+
{
|
|
188
|
+
"warningAreaCode": "L1021300",
|
|
189
|
+
"korName": "철원군"
|
|
190
|
+
},
|
|
191
|
+
{
|
|
192
|
+
"warningAreaCode": "L1021400",
|
|
193
|
+
"korName": "화천군"
|
|
194
|
+
},
|
|
195
|
+
{
|
|
196
|
+
"warningAreaCode": "L1021600",
|
|
197
|
+
"korName": "춘천시"
|
|
198
|
+
},
|
|
199
|
+
{
|
|
200
|
+
"warningAreaCode": "L1030000",
|
|
201
|
+
"korName": "충청남도"
|
|
202
|
+
},
|
|
203
|
+
{
|
|
204
|
+
"warningAreaCode": "L1030200",
|
|
205
|
+
"korName": "천안시"
|
|
206
|
+
},
|
|
207
|
+
{
|
|
208
|
+
"warningAreaCode": "L1030300",
|
|
209
|
+
"korName": "공주시"
|
|
210
|
+
},
|
|
211
|
+
{
|
|
212
|
+
"warningAreaCode": "L1030400",
|
|
213
|
+
"korName": "아산시"
|
|
214
|
+
},
|
|
215
|
+
{
|
|
216
|
+
"warningAreaCode": "L1030500",
|
|
217
|
+
"korName": "논산시"
|
|
218
|
+
},
|
|
219
|
+
{
|
|
220
|
+
"warningAreaCode": "L1030600",
|
|
221
|
+
"korName": "금산군"
|
|
222
|
+
},
|
|
223
|
+
{
|
|
224
|
+
"warningAreaCode": "L1030800",
|
|
225
|
+
"korName": "부여군"
|
|
226
|
+
},
|
|
227
|
+
{
|
|
228
|
+
"warningAreaCode": "L1030900",
|
|
229
|
+
"korName": "청양군"
|
|
230
|
+
},
|
|
231
|
+
{
|
|
232
|
+
"warningAreaCode": "L1031000",
|
|
233
|
+
"korName": "예산군"
|
|
234
|
+
},
|
|
235
|
+
{
|
|
236
|
+
"warningAreaCode": "L1031100",
|
|
237
|
+
"korName": "태안군"
|
|
238
|
+
},
|
|
239
|
+
{
|
|
240
|
+
"warningAreaCode": "L1031300",
|
|
241
|
+
"korName": "서산시"
|
|
242
|
+
},
|
|
243
|
+
{
|
|
244
|
+
"warningAreaCode": "L1031400",
|
|
245
|
+
"korName": "보령시"
|
|
246
|
+
},
|
|
247
|
+
{
|
|
248
|
+
"warningAreaCode": "L1031600",
|
|
249
|
+
"korName": "홍성군"
|
|
250
|
+
},
|
|
251
|
+
{
|
|
252
|
+
"warningAreaCode": "L1031700",
|
|
253
|
+
"korName": "계룡시"
|
|
254
|
+
},
|
|
255
|
+
{
|
|
256
|
+
"warningAreaCode": "L1040000",
|
|
257
|
+
"korName": "충청북도"
|
|
258
|
+
},
|
|
259
|
+
{
|
|
260
|
+
"warningAreaCode": "L1040100",
|
|
261
|
+
"korName": "청주시"
|
|
262
|
+
},
|
|
263
|
+
{
|
|
264
|
+
"warningAreaCode": "L1040300",
|
|
265
|
+
"korName": "보은군"
|
|
266
|
+
},
|
|
267
|
+
{
|
|
268
|
+
"warningAreaCode": "L1040400",
|
|
269
|
+
"korName": "괴산군"
|
|
270
|
+
},
|
|
271
|
+
{
|
|
272
|
+
"warningAreaCode": "L1040600",
|
|
273
|
+
"korName": "옥천군"
|
|
274
|
+
},
|
|
275
|
+
{
|
|
276
|
+
"warningAreaCode": "L1040700",
|
|
277
|
+
"korName": "영동군"
|
|
278
|
+
},
|
|
279
|
+
{
|
|
280
|
+
"warningAreaCode": "L1040800",
|
|
281
|
+
"korName": "충주시"
|
|
282
|
+
},
|
|
283
|
+
{
|
|
284
|
+
"warningAreaCode": "L1041000",
|
|
285
|
+
"korName": "진천군"
|
|
286
|
+
},
|
|
287
|
+
{
|
|
288
|
+
"warningAreaCode": "L1041100",
|
|
289
|
+
"korName": "음성군"
|
|
290
|
+
},
|
|
291
|
+
{
|
|
292
|
+
"warningAreaCode": "L1041200",
|
|
293
|
+
"korName": "단양군"
|
|
294
|
+
},
|
|
295
|
+
{
|
|
296
|
+
"warningAreaCode": "L1050000",
|
|
297
|
+
"korName": "전라남도"
|
|
298
|
+
},
|
|
299
|
+
{
|
|
300
|
+
"warningAreaCode": "L1050100",
|
|
301
|
+
"korName": "광주광역시"
|
|
302
|
+
},
|
|
303
|
+
{
|
|
304
|
+
"warningAreaCode": "L1050300",
|
|
305
|
+
"korName": "담양군"
|
|
306
|
+
},
|
|
307
|
+
{
|
|
308
|
+
"warningAreaCode": "L1050400",
|
|
309
|
+
"korName": "곡성군"
|
|
310
|
+
},
|
|
311
|
+
{
|
|
312
|
+
"warningAreaCode": "L1050500",
|
|
313
|
+
"korName": "구례군"
|
|
314
|
+
},
|
|
315
|
+
{
|
|
316
|
+
"warningAreaCode": "L1050600",
|
|
317
|
+
"korName": "장성군"
|
|
318
|
+
},
|
|
319
|
+
{
|
|
320
|
+
"warningAreaCode": "L1050800",
|
|
321
|
+
"korName": "고흥군"
|
|
322
|
+
},
|
|
323
|
+
{
|
|
324
|
+
"warningAreaCode": "L1050900",
|
|
325
|
+
"korName": "보성군"
|
|
326
|
+
},
|
|
327
|
+
{
|
|
328
|
+
"warningAreaCode": "L1051000",
|
|
329
|
+
"korName": "여수시"
|
|
330
|
+
},
|
|
331
|
+
{
|
|
332
|
+
"warningAreaCode": "L1051100",
|
|
333
|
+
"korName": "광양시"
|
|
334
|
+
},
|
|
335
|
+
{
|
|
336
|
+
"warningAreaCode": "L1051200",
|
|
337
|
+
"korName": "순천시"
|
|
338
|
+
},
|
|
339
|
+
{
|
|
340
|
+
"warningAreaCode": "L1051400",
|
|
341
|
+
"korName": "강진군"
|
|
342
|
+
},
|
|
343
|
+
{
|
|
344
|
+
"warningAreaCode": "L1051500",
|
|
345
|
+
"korName": "해남군"
|
|
346
|
+
},
|
|
347
|
+
{
|
|
348
|
+
"warningAreaCode": "L1051600",
|
|
349
|
+
"korName": "완도군"
|
|
350
|
+
},
|
|
351
|
+
{
|
|
352
|
+
"warningAreaCode": "L1051700",
|
|
353
|
+
"korName": "영암군"
|
|
354
|
+
},
|
|
355
|
+
{
|
|
356
|
+
"warningAreaCode": "L1051900",
|
|
357
|
+
"korName": "함평군"
|
|
358
|
+
},
|
|
359
|
+
{
|
|
360
|
+
"warningAreaCode": "L1052000",
|
|
361
|
+
"korName": "영광군"
|
|
362
|
+
},
|
|
363
|
+
{
|
|
364
|
+
"warningAreaCode": "L1052100",
|
|
365
|
+
"korName": "목포시"
|
|
366
|
+
},
|
|
367
|
+
{
|
|
368
|
+
"warningAreaCode": "L1052200",
|
|
369
|
+
"korName": "신안군(흑산면제외)"
|
|
370
|
+
},
|
|
371
|
+
{
|
|
372
|
+
"warningAreaCode": "L1052300",
|
|
373
|
+
"korName": "진도군"
|
|
374
|
+
},
|
|
375
|
+
{
|
|
376
|
+
"warningAreaCode": "L1052400",
|
|
377
|
+
"korName": "흑산도.홍도"
|
|
378
|
+
},
|
|
379
|
+
{
|
|
380
|
+
"warningAreaCode": "L1060100",
|
|
381
|
+
"korName": "고창군"
|
|
382
|
+
},
|
|
383
|
+
{
|
|
384
|
+
"warningAreaCode": "L1060200",
|
|
385
|
+
"korName": "부안군"
|
|
386
|
+
},
|
|
387
|
+
{
|
|
388
|
+
"warningAreaCode": "L1060300",
|
|
389
|
+
"korName": "군산시"
|
|
390
|
+
},
|
|
391
|
+
{
|
|
392
|
+
"warningAreaCode": "L1060400",
|
|
393
|
+
"korName": "김제시"
|
|
394
|
+
},
|
|
395
|
+
{
|
|
396
|
+
"warningAreaCode": "L1060500",
|
|
397
|
+
"korName": "완주군"
|
|
398
|
+
},
|
|
399
|
+
{
|
|
400
|
+
"warningAreaCode": "L1060600",
|
|
401
|
+
"korName": "진안군"
|
|
402
|
+
},
|
|
403
|
+
{
|
|
404
|
+
"warningAreaCode": "L1060700",
|
|
405
|
+
"korName": "무주군"
|
|
406
|
+
},
|
|
407
|
+
{
|
|
408
|
+
"warningAreaCode": "L1060900",
|
|
409
|
+
"korName": "임실군"
|
|
410
|
+
},
|
|
411
|
+
{
|
|
412
|
+
"warningAreaCode": "L1061100",
|
|
413
|
+
"korName": "익산시"
|
|
414
|
+
},
|
|
415
|
+
{
|
|
416
|
+
"warningAreaCode": "L1061200",
|
|
417
|
+
"korName": "정읍시"
|
|
418
|
+
},
|
|
419
|
+
{
|
|
420
|
+
"warningAreaCode": "L1061300",
|
|
421
|
+
"korName": "전주시"
|
|
422
|
+
},
|
|
423
|
+
{
|
|
424
|
+
"warningAreaCode": "L1061400",
|
|
425
|
+
"korName": "남원시"
|
|
426
|
+
},
|
|
427
|
+
{
|
|
428
|
+
"warningAreaCode": "L1070000",
|
|
429
|
+
"korName": "경상북도"
|
|
430
|
+
},
|
|
431
|
+
{
|
|
432
|
+
"warningAreaCode": "L1070100",
|
|
433
|
+
"korName": "대구광역시"
|
|
434
|
+
},
|
|
435
|
+
{
|
|
436
|
+
"warningAreaCode": "L1070300",
|
|
437
|
+
"korName": "구미시"
|
|
438
|
+
},
|
|
439
|
+
{
|
|
440
|
+
"warningAreaCode": "L1070400",
|
|
441
|
+
"korName": "영천시"
|
|
442
|
+
},
|
|
443
|
+
{
|
|
444
|
+
"warningAreaCode": "L1070500",
|
|
445
|
+
"korName": "경산시"
|
|
446
|
+
},
|
|
447
|
+
{
|
|
448
|
+
"warningAreaCode": "L1070800",
|
|
449
|
+
"korName": "고령군"
|
|
450
|
+
},
|
|
451
|
+
{
|
|
452
|
+
"warningAreaCode": "L1070900",
|
|
453
|
+
"korName": "성주군"
|
|
454
|
+
},
|
|
455
|
+
{
|
|
456
|
+
"warningAreaCode": "L1071000",
|
|
457
|
+
"korName": "칠곡군"
|
|
458
|
+
},
|
|
459
|
+
{
|
|
460
|
+
"warningAreaCode": "L1071100",
|
|
461
|
+
"korName": "김천시"
|
|
462
|
+
},
|
|
463
|
+
{
|
|
464
|
+
"warningAreaCode": "L1071200",
|
|
465
|
+
"korName": "상주시"
|
|
466
|
+
},
|
|
467
|
+
{
|
|
468
|
+
"warningAreaCode": "L1071400",
|
|
469
|
+
"korName": "예천군"
|
|
470
|
+
},
|
|
471
|
+
{
|
|
472
|
+
"warningAreaCode": "L1071500",
|
|
473
|
+
"korName": "안동시"
|
|
474
|
+
},
|
|
475
|
+
{
|
|
476
|
+
"warningAreaCode": "L1071600",
|
|
477
|
+
"korName": "영주시"
|
|
478
|
+
},
|
|
479
|
+
{
|
|
480
|
+
"warningAreaCode": "L1071700",
|
|
481
|
+
"korName": "의성군"
|
|
482
|
+
},
|
|
483
|
+
{
|
|
484
|
+
"warningAreaCode": "L1071800",
|
|
485
|
+
"korName": "청송군"
|
|
486
|
+
},
|
|
487
|
+
{
|
|
488
|
+
"warningAreaCode": "L1072100",
|
|
489
|
+
"korName": "울릉도.독도"
|
|
490
|
+
},
|
|
491
|
+
{
|
|
492
|
+
"warningAreaCode": "L1072200",
|
|
493
|
+
"korName": "영덕군"
|
|
494
|
+
},
|
|
495
|
+
{
|
|
496
|
+
"warningAreaCode": "L1072400",
|
|
497
|
+
"korName": "포항시"
|
|
498
|
+
},
|
|
499
|
+
{
|
|
500
|
+
"warningAreaCode": "L1072500",
|
|
501
|
+
"korName": "경주시"
|
|
502
|
+
},
|
|
503
|
+
{
|
|
504
|
+
"warningAreaCode": "L1080000",
|
|
505
|
+
"korName": "경상남도"
|
|
506
|
+
},
|
|
507
|
+
{
|
|
508
|
+
"warningAreaCode": "L1080900",
|
|
509
|
+
"korName": "김해시"
|
|
510
|
+
},
|
|
511
|
+
{
|
|
512
|
+
"warningAreaCode": "L1081000",
|
|
513
|
+
"korName": "밀양시"
|
|
514
|
+
},
|
|
515
|
+
{
|
|
516
|
+
"warningAreaCode": "L1081100",
|
|
517
|
+
"korName": "의령군"
|
|
518
|
+
},
|
|
519
|
+
{
|
|
520
|
+
"warningAreaCode": "L1081200",
|
|
521
|
+
"korName": "함안군"
|
|
522
|
+
},
|
|
523
|
+
{
|
|
524
|
+
"warningAreaCode": "L1081300",
|
|
525
|
+
"korName": "창녕군"
|
|
526
|
+
},
|
|
527
|
+
{
|
|
528
|
+
"warningAreaCode": "L1081500",
|
|
529
|
+
"korName": "하동군"
|
|
530
|
+
},
|
|
531
|
+
{
|
|
532
|
+
"warningAreaCode": "L1081600",
|
|
533
|
+
"korName": "산청군"
|
|
534
|
+
},
|
|
535
|
+
{
|
|
536
|
+
"warningAreaCode": "L1081700",
|
|
537
|
+
"korName": "함양군"
|
|
538
|
+
},
|
|
539
|
+
{
|
|
540
|
+
"warningAreaCode": "L1081800",
|
|
541
|
+
"korName": "거창군"
|
|
542
|
+
},
|
|
543
|
+
{
|
|
544
|
+
"warningAreaCode": "L1081900",
|
|
545
|
+
"korName": "합천군"
|
|
546
|
+
},
|
|
547
|
+
{
|
|
548
|
+
"warningAreaCode": "L1082000",
|
|
549
|
+
"korName": "통영시"
|
|
550
|
+
},
|
|
551
|
+
{
|
|
552
|
+
"warningAreaCode": "L1082100",
|
|
553
|
+
"korName": "사천시"
|
|
554
|
+
},
|
|
555
|
+
{
|
|
556
|
+
"warningAreaCode": "L1082200",
|
|
557
|
+
"korName": "거제시"
|
|
558
|
+
},
|
|
559
|
+
{
|
|
560
|
+
"warningAreaCode": "L1082300",
|
|
561
|
+
"korName": "고성군"
|
|
562
|
+
},
|
|
563
|
+
{
|
|
564
|
+
"warningAreaCode": "L1082400",
|
|
565
|
+
"korName": "남해군"
|
|
566
|
+
},
|
|
567
|
+
{
|
|
568
|
+
"warningAreaCode": "L1090000",
|
|
569
|
+
"korName": "제주도"
|
|
570
|
+
},
|
|
571
|
+
{
|
|
572
|
+
"warningAreaCode": "L1090600",
|
|
573
|
+
"korName": "제주도서부"
|
|
574
|
+
},
|
|
575
|
+
{
|
|
576
|
+
"warningAreaCode": "L1090700",
|
|
577
|
+
"korName": "제주도북부"
|
|
578
|
+
},
|
|
579
|
+
{
|
|
580
|
+
"warningAreaCode": "L1090800",
|
|
581
|
+
"korName": "제주도동부"
|
|
582
|
+
},
|
|
583
|
+
{
|
|
584
|
+
"warningAreaCode": "L1090900",
|
|
585
|
+
"korName": "제주도남부"
|
|
586
|
+
},
|
|
587
|
+
{
|
|
588
|
+
"warningAreaCode": "L1100000",
|
|
589
|
+
"korName": "서울특별시"
|
|
590
|
+
},
|
|
591
|
+
{
|
|
592
|
+
"warningAreaCode": "L1110000",
|
|
593
|
+
"korName": "인천광역시"
|
|
594
|
+
},
|
|
595
|
+
{
|
|
596
|
+
"warningAreaCode": "L1120000",
|
|
597
|
+
"korName": "대전광역시"
|
|
598
|
+
},
|
|
599
|
+
{
|
|
600
|
+
"warningAreaCode": "L1130000",
|
|
601
|
+
"korName": "광주광역시"
|
|
602
|
+
},
|
|
603
|
+
{
|
|
604
|
+
"warningAreaCode": "L1140000",
|
|
605
|
+
"korName": "대구광역시"
|
|
606
|
+
},
|
|
607
|
+
{
|
|
608
|
+
"warningAreaCode": "L1150000",
|
|
609
|
+
"korName": "부산광역시"
|
|
610
|
+
},
|
|
611
|
+
{
|
|
612
|
+
"warningAreaCode": "L1160000",
|
|
613
|
+
"korName": "울산광역시"
|
|
614
|
+
},
|
|
615
|
+
{
|
|
616
|
+
"warningAreaCode": "L1600000",
|
|
617
|
+
"korName": "울릉도.독도"
|
|
618
|
+
},
|
|
619
|
+
{
|
|
620
|
+
"warningAreaCode": "S1000000",
|
|
621
|
+
"korName": "전해상"
|
|
622
|
+
},
|
|
623
|
+
{
|
|
624
|
+
"warningAreaCode": "S1100000",
|
|
625
|
+
"korName": "동해전해상"
|
|
626
|
+
},
|
|
627
|
+
{
|
|
628
|
+
"warningAreaCode": "S1130000",
|
|
629
|
+
"korName": "동해남부전해상"
|
|
630
|
+
},
|
|
631
|
+
{
|
|
632
|
+
"warningAreaCode": "S1131000",
|
|
633
|
+
"korName": "동해남부앞바다"
|
|
634
|
+
},
|
|
635
|
+
{
|
|
636
|
+
"warningAreaCode": "S1131100",
|
|
637
|
+
"korName": "울산앞바다"
|
|
638
|
+
},
|
|
639
|
+
{
|
|
640
|
+
"warningAreaCode": "S1131200",
|
|
641
|
+
"korName": "경북남부앞바다"
|
|
642
|
+
},
|
|
643
|
+
{
|
|
644
|
+
"warningAreaCode": "S1131300",
|
|
645
|
+
"korName": "경북북부앞바다"
|
|
646
|
+
},
|
|
647
|
+
{
|
|
648
|
+
"warningAreaCode": "S1150000",
|
|
649
|
+
"korName": "동해중부전해상"
|
|
650
|
+
},
|
|
651
|
+
{
|
|
652
|
+
"warningAreaCode": "S1151000",
|
|
653
|
+
"korName": "동해중부앞바다"
|
|
654
|
+
},
|
|
655
|
+
{
|
|
656
|
+
"warningAreaCode": "S1151100",
|
|
657
|
+
"korName": "강원북부앞바다"
|
|
658
|
+
},
|
|
659
|
+
{
|
|
660
|
+
"warningAreaCode": "S1151200",
|
|
661
|
+
"korName": "강원중부앞바다"
|
|
662
|
+
},
|
|
663
|
+
{
|
|
664
|
+
"warningAreaCode": "S1200000",
|
|
665
|
+
"korName": "서해전해상"
|
|
666
|
+
},
|
|
667
|
+
{
|
|
668
|
+
"warningAreaCode": "S1230000",
|
|
669
|
+
"korName": "서해남부전해상"
|
|
670
|
+
},
|
|
671
|
+
{
|
|
672
|
+
"warningAreaCode": "S1231000",
|
|
673
|
+
"korName": "서해남부앞바다"
|
|
674
|
+
},
|
|
675
|
+
{
|
|
676
|
+
"warningAreaCode": "S1231100",
|
|
677
|
+
"korName": "전북북부앞바다"
|
|
678
|
+
},
|
|
679
|
+
{
|
|
680
|
+
"warningAreaCode": "S1231200",
|
|
681
|
+
"korName": "전북남부앞바다"
|
|
682
|
+
},
|
|
683
|
+
{
|
|
684
|
+
"warningAreaCode": "S1231400",
|
|
685
|
+
"korName": "전남중부서해앞바다"
|
|
686
|
+
},
|
|
687
|
+
{
|
|
688
|
+
"warningAreaCode": "S1231500",
|
|
689
|
+
"korName": "전남남부서해앞바다"
|
|
690
|
+
},
|
|
691
|
+
{
|
|
692
|
+
"warningAreaCode": "S1251000",
|
|
693
|
+
"korName": "서해중부앞바다"
|
|
694
|
+
},
|
|
695
|
+
{
|
|
696
|
+
"warningAreaCode": "S1251200",
|
|
697
|
+
"korName": "인천·경기남부앞바다"
|
|
698
|
+
},
|
|
699
|
+
{
|
|
700
|
+
"warningAreaCode": "S1251400",
|
|
701
|
+
"korName": "충남남부앞바다"
|
|
702
|
+
},
|
|
703
|
+
{
|
|
704
|
+
"warningAreaCode": "S1300000",
|
|
705
|
+
"korName": "남해전해상"
|
|
706
|
+
},
|
|
707
|
+
{
|
|
708
|
+
"warningAreaCode": "S1311000",
|
|
709
|
+
"korName": "남해동부앞바다"
|
|
710
|
+
},
|
|
711
|
+
{
|
|
712
|
+
"warningAreaCode": "S1311100",
|
|
713
|
+
"korName": "부산앞바다"
|
|
714
|
+
},
|
|
715
|
+
{
|
|
716
|
+
"warningAreaCode": "S1311200",
|
|
717
|
+
"korName": "경남서부남해앞바다"
|
|
718
|
+
},
|
|
719
|
+
{
|
|
720
|
+
"warningAreaCode": "S1320000",
|
|
721
|
+
"korName": "남해서부전해상"
|
|
722
|
+
},
|
|
723
|
+
{
|
|
724
|
+
"warningAreaCode": "S1321000",
|
|
725
|
+
"korName": "남해서부앞바다"
|
|
726
|
+
},
|
|
727
|
+
{
|
|
728
|
+
"warningAreaCode": "S1321100",
|
|
729
|
+
"korName": "전남서부남해앞바다"
|
|
730
|
+
},
|
|
731
|
+
{
|
|
732
|
+
"warningAreaCode": "S1323000",
|
|
733
|
+
"korName": "제주도앞바다"
|
|
734
|
+
},
|
|
735
|
+
{
|
|
736
|
+
"warningAreaCode": "S1323100",
|
|
737
|
+
"korName": "제주도북부앞바다"
|
|
738
|
+
},
|
|
739
|
+
{
|
|
740
|
+
"warningAreaCode": "S1323300",
|
|
741
|
+
"korName": "제주도남부앞바다"
|
|
742
|
+
},
|
|
743
|
+
{
|
|
744
|
+
"warningAreaCode": "S1323400",
|
|
745
|
+
"korName": "제주도서부앞바다"
|
|
746
|
+
},
|
|
747
|
+
{
|
|
748
|
+
"warningAreaCode": "S2000000",
|
|
749
|
+
"korName": "연안바다/평수구역"
|
|
750
|
+
},
|
|
751
|
+
{
|
|
752
|
+
"warningAreaCode": "S2110100",
|
|
753
|
+
"korName": "경북남부앞바다중 평수구역"
|
|
754
|
+
},
|
|
755
|
+
{
|
|
756
|
+
"warningAreaCode": "S2120100",
|
|
757
|
+
"korName": "경북북부앞바다중 연안바다"
|
|
758
|
+
},
|
|
759
|
+
{
|
|
760
|
+
"warningAreaCode": "S2120200",
|
|
761
|
+
"korName": "경북북부앞바다중 영덕연안바다"
|
|
762
|
+
},
|
|
763
|
+
{
|
|
764
|
+
"warningAreaCode": "S2120300",
|
|
765
|
+
"korName": "경북남부앞바다중 연안바다"
|
|
766
|
+
},
|
|
767
|
+
{
|
|
768
|
+
"warningAreaCode": "S2120400",
|
|
769
|
+
"korName": "울산앞바다중 연안바다"
|
|
770
|
+
},
|
|
771
|
+
{
|
|
772
|
+
"warningAreaCode": "S2120500",
|
|
773
|
+
"korName": "강원중부앞바다중 연안바다"
|
|
774
|
+
},
|
|
775
|
+
{
|
|
776
|
+
"warningAreaCode": "S2120600",
|
|
777
|
+
"korName": "강원북부앞바다중 연안바다"
|
|
778
|
+
},
|
|
779
|
+
{
|
|
780
|
+
"warningAreaCode": "S2120700",
|
|
781
|
+
"korName": "강원남부앞바다중 연안바다"
|
|
782
|
+
},
|
|
783
|
+
{
|
|
784
|
+
"warningAreaCode": "S2210100",
|
|
785
|
+
"korName": "전북북부앞바다중 평수구역"
|
|
786
|
+
},
|
|
787
|
+
{
|
|
788
|
+
"warningAreaCode": "S2210200",
|
|
789
|
+
"korName": "전북남부앞바다중 평수구역"
|
|
790
|
+
},
|
|
791
|
+
{
|
|
792
|
+
"warningAreaCode": "S2210300",
|
|
793
|
+
"korName": "전남북부서해앞바다중 평수구역"
|
|
794
|
+
},
|
|
795
|
+
{
|
|
796
|
+
"warningAreaCode": "S2210700",
|
|
797
|
+
"korName": "충남남부앞바다중 평수구역"
|
|
798
|
+
},
|
|
799
|
+
{
|
|
800
|
+
"warningAreaCode": "S2211100",
|
|
801
|
+
"korName": "인천경기남부앞바다중 먼평수구역"
|
|
802
|
+
},
|
|
803
|
+
{
|
|
804
|
+
"warningAreaCode": "S2310200",
|
|
805
|
+
"korName": "부산앞바다중 서부평수구역"
|
|
806
|
+
},
|
|
807
|
+
{
|
|
808
|
+
"warningAreaCode": "S2310300",
|
|
809
|
+
"korName": "경남중부남해앞바다중 평수구역"
|
|
810
|
+
},
|
|
811
|
+
{
|
|
812
|
+
"warningAreaCode": "S2310500",
|
|
813
|
+
"korName": "경남서부남해앞바다중 서부평수구역"
|
|
814
|
+
},
|
|
815
|
+
{
|
|
816
|
+
"warningAreaCode": "S2310700",
|
|
817
|
+
"korName": "전남서부남해앞바다중 평수구역"
|
|
818
|
+
},
|
|
819
|
+
{
|
|
820
|
+
"warningAreaCode": "S2310800",
|
|
821
|
+
"korName": "전남동부남해앞바다중 서부평수구역"
|
|
822
|
+
},
|
|
823
|
+
{
|
|
824
|
+
"warningAreaCode": "S2320100",
|
|
825
|
+
"korName": "부산앞바다중 연안바다"
|
|
826
|
+
},
|
|
827
|
+
{
|
|
828
|
+
"warningAreaCode": "S2320300",
|
|
829
|
+
"korName": "경남서부남해앞바다중 남해군연안바다"
|
|
830
|
+
},
|
|
831
|
+
{
|
|
832
|
+
"warningAreaCode": "S2330200",
|
|
833
|
+
"korName": "제주도동부앞바다중 우도연안바다"
|
|
834
|
+
},
|
|
835
|
+
{
|
|
836
|
+
"warningAreaCode": "S2330300",
|
|
837
|
+
"korName": "제주도서부앞바다중 가파도연안바다"
|
|
838
|
+
},
|
|
839
|
+
{
|
|
840
|
+
"warningAreaCode": "L1010200",
|
|
841
|
+
"korName": "광명시"
|
|
842
|
+
},
|
|
843
|
+
{
|
|
844
|
+
"warningAreaCode": "L1012000",
|
|
845
|
+
"korName": "성남시"
|
|
846
|
+
},
|
|
847
|
+
{
|
|
848
|
+
"warningAreaCode": "L1012600",
|
|
849
|
+
"korName": "군포시"
|
|
850
|
+
},
|
|
851
|
+
{
|
|
852
|
+
"warningAreaCode": "L1013200",
|
|
853
|
+
"korName": "화성시"
|
|
854
|
+
},
|
|
855
|
+
{
|
|
856
|
+
"warningAreaCode": "L1021100",
|
|
857
|
+
"korName": "횡성군"
|
|
858
|
+
},
|
|
859
|
+
{
|
|
860
|
+
"warningAreaCode": "L1030100",
|
|
861
|
+
"korName": "대전광역시"
|
|
862
|
+
},
|
|
863
|
+
{
|
|
864
|
+
"warningAreaCode": "L1040900",
|
|
865
|
+
"korName": "제천시"
|
|
866
|
+
},
|
|
867
|
+
{
|
|
868
|
+
"warningAreaCode": "L1050200",
|
|
869
|
+
"korName": "나주시"
|
|
870
|
+
},
|
|
871
|
+
{
|
|
872
|
+
"warningAreaCode": "L1050700",
|
|
873
|
+
"korName": "화순군"
|
|
874
|
+
},
|
|
875
|
+
{
|
|
876
|
+
"warningAreaCode": "L1061000",
|
|
877
|
+
"korName": "순창군"
|
|
878
|
+
},
|
|
879
|
+
{
|
|
880
|
+
"warningAreaCode": "L1071300",
|
|
881
|
+
"korName": "문경시"
|
|
882
|
+
},
|
|
883
|
+
{
|
|
884
|
+
"warningAreaCode": "L1080500",
|
|
885
|
+
"korName": "양산시"
|
|
886
|
+
},
|
|
887
|
+
{
|
|
888
|
+
"warningAreaCode": "L1081400",
|
|
889
|
+
"korName": "진주시"
|
|
890
|
+
},
|
|
891
|
+
{
|
|
892
|
+
"warningAreaCode": "L1010400",
|
|
893
|
+
"korName": "안산시"
|
|
894
|
+
},
|
|
895
|
+
{
|
|
896
|
+
"warningAreaCode": "L1010900",
|
|
897
|
+
"korName": "강화군"
|
|
898
|
+
},
|
|
899
|
+
{
|
|
900
|
+
"warningAreaCode": "L1031500",
|
|
901
|
+
"korName": "서천군"
|
|
902
|
+
},
|
|
903
|
+
{
|
|
904
|
+
"warningAreaCode": "L1051300",
|
|
905
|
+
"korName": "장흥군"
|
|
906
|
+
},
|
|
907
|
+
{
|
|
908
|
+
"warningAreaCode": "L1051800",
|
|
909
|
+
"korName": "무안군"
|
|
910
|
+
},
|
|
911
|
+
{
|
|
912
|
+
"warningAreaCode": "L1052500",
|
|
913
|
+
"korName": "흑산도.홍도"
|
|
914
|
+
},
|
|
915
|
+
{
|
|
916
|
+
"warningAreaCode": "L1090500",
|
|
917
|
+
"korName": "제주도산지"
|
|
918
|
+
},
|
|
919
|
+
{
|
|
920
|
+
"warningAreaCode": "S2320800",
|
|
921
|
+
"korName": "경남중부남해앞바다중 연안바다 "
|
|
922
|
+
},
|
|
923
|
+
{
|
|
924
|
+
"warningAreaCode": "S2120900",
|
|
925
|
+
"korName": "울릉도서면연안바다"
|
|
926
|
+
},
|
|
927
|
+
{
|
|
928
|
+
"warningAreaCode": "L1020510",
|
|
929
|
+
"korName": "속초시평지"
|
|
930
|
+
},
|
|
931
|
+
{
|
|
932
|
+
"warningAreaCode": "L1021810",
|
|
933
|
+
"korName": "인제군평지"
|
|
934
|
+
},
|
|
935
|
+
{
|
|
936
|
+
"warningAreaCode": "L1020610",
|
|
937
|
+
"korName": "고성군평지"
|
|
938
|
+
},
|
|
939
|
+
{
|
|
940
|
+
"warningAreaCode": "L1020710",
|
|
941
|
+
"korName": "양양군평지"
|
|
942
|
+
},
|
|
943
|
+
{
|
|
944
|
+
"warningAreaCode": "L1020110",
|
|
945
|
+
"korName": "강릉시평지"
|
|
946
|
+
},
|
|
947
|
+
{
|
|
948
|
+
"warningAreaCode": "L1021510",
|
|
949
|
+
"korName": "홍천군평지"
|
|
950
|
+
},
|
|
951
|
+
{
|
|
952
|
+
"warningAreaCode": "L1020910",
|
|
953
|
+
"korName": "평창군평지"
|
|
954
|
+
},
|
|
955
|
+
{
|
|
956
|
+
"warningAreaCode": "L1020210",
|
|
957
|
+
"korName": "동해시평지"
|
|
958
|
+
},
|
|
959
|
+
{
|
|
960
|
+
"warningAreaCode": "L1020410",
|
|
961
|
+
"korName": "삼척시평지"
|
|
962
|
+
},
|
|
963
|
+
{
|
|
964
|
+
"warningAreaCode": "L1021010",
|
|
965
|
+
"korName": "정선군평지"
|
|
966
|
+
},
|
|
967
|
+
{
|
|
968
|
+
"warningAreaCode": "L1072010",
|
|
969
|
+
"korName": "봉화군평지"
|
|
970
|
+
},
|
|
971
|
+
{
|
|
972
|
+
"warningAreaCode": "L1071910",
|
|
973
|
+
"korName": "영양군평지"
|
|
974
|
+
},
|
|
975
|
+
{
|
|
976
|
+
"warningAreaCode": "S2120800",
|
|
977
|
+
"korName": "울릉도울릉읍연안바다"
|
|
978
|
+
},
|
|
979
|
+
{
|
|
980
|
+
"warningAreaCode": "L1170000",
|
|
981
|
+
"korName": "세종특별자치시"
|
|
982
|
+
},
|
|
983
|
+
{
|
|
984
|
+
"warningAreaCode": "L1031800",
|
|
985
|
+
"korName": "세종특별자치시"
|
|
986
|
+
},
|
|
987
|
+
{
|
|
988
|
+
"warningAreaCode": "L1021710",
|
|
989
|
+
"korName": "양구군평지"
|
|
990
|
+
},
|
|
991
|
+
{
|
|
992
|
+
"warningAreaCode": "S1311400",
|
|
993
|
+
"korName": "거제시동부앞바다"
|
|
994
|
+
},
|
|
995
|
+
{
|
|
996
|
+
"warningAreaCode": "S2320200",
|
|
997
|
+
"korName": "거제시동부앞바다중 연안바다"
|
|
998
|
+
},
|
|
999
|
+
{
|
|
1000
|
+
"warningAreaCode": "S2211300",
|
|
1001
|
+
"korName": "전남중부서해앞바다중 먼평수구역"
|
|
1002
|
+
},
|
|
1003
|
+
{
|
|
1004
|
+
"warningAreaCode": "L1072310",
|
|
1005
|
+
"korName": "울진군평지"
|
|
1006
|
+
},
|
|
1007
|
+
{
|
|
1008
|
+
"warningAreaCode": "S2211500",
|
|
1009
|
+
"korName": "천수만 평수구역"
|
|
1010
|
+
},
|
|
1011
|
+
{
|
|
1012
|
+
"warningAreaCode": "L1052600",
|
|
1013
|
+
"korName": "거문도.초도"
|
|
1014
|
+
},
|
|
1015
|
+
{
|
|
1016
|
+
"warningAreaCode": "L1091000",
|
|
1017
|
+
"korName": "추자도"
|
|
1018
|
+
},
|
|
1019
|
+
{
|
|
1020
|
+
"warningAreaCode": "S1251100",
|
|
1021
|
+
"korName": "인천·경기북부앞바다"
|
|
1022
|
+
},
|
|
1023
|
+
{
|
|
1024
|
+
"warningAreaCode": "L1031200",
|
|
1025
|
+
"korName": "당진시"
|
|
1026
|
+
},
|
|
1027
|
+
{
|
|
1028
|
+
"warningAreaCode": "L1075020",
|
|
1029
|
+
"korName": "경북북동산지"
|
|
1030
|
+
},
|
|
1031
|
+
{
|
|
1032
|
+
"warningAreaCode": "L1026020",
|
|
1033
|
+
"korName": "강원중부산지"
|
|
1034
|
+
},
|
|
1035
|
+
{
|
|
1036
|
+
"warningAreaCode": "S2320610",
|
|
1037
|
+
"korName": "제주도서부앞바다중 북서연안바다"
|
|
1038
|
+
},
|
|
1039
|
+
{
|
|
1040
|
+
"warningAreaCode": "S1322100",
|
|
1041
|
+
"korName": "남해서부서쪽먼바다"
|
|
1042
|
+
},
|
|
1043
|
+
{
|
|
1044
|
+
"warningAreaCode": "S1322200",
|
|
1045
|
+
"korName": "남해서부동쪽먼바다"
|
|
1046
|
+
},
|
|
1047
|
+
{
|
|
1048
|
+
"warningAreaCode": "S2211900",
|
|
1049
|
+
"korName": "안면도 서쪽 평수구역"
|
|
1050
|
+
},
|
|
1051
|
+
{
|
|
1052
|
+
"warningAreaCode": "L1013600",
|
|
1053
|
+
"korName": "옹진군"
|
|
1054
|
+
},
|
|
1055
|
+
{
|
|
1056
|
+
"warningAreaCode": "S2321000",
|
|
1057
|
+
"korName": "제주도동부앞바다중 남동연안바다"
|
|
1058
|
+
},
|
|
1059
|
+
{
|
|
1060
|
+
"warningAreaCode": "L1013300",
|
|
1061
|
+
"korName": "여주시"
|
|
1062
|
+
},
|
|
1063
|
+
{
|
|
1064
|
+
"warningAreaCode": "L1100400",
|
|
1065
|
+
"korName": "서울서북권"
|
|
1066
|
+
},
|
|
1067
|
+
{
|
|
1068
|
+
"warningAreaCode": "L1100300",
|
|
1069
|
+
"korName": "서울서남권"
|
|
1070
|
+
},
|
|
1071
|
+
{
|
|
1072
|
+
"warningAreaCode": "L1100200",
|
|
1073
|
+
"korName": "서울동북권"
|
|
1074
|
+
},
|
|
1075
|
+
{
|
|
1076
|
+
"warningAreaCode": "L1100100",
|
|
1077
|
+
"korName": "서울동남권"
|
|
1078
|
+
},
|
|
1079
|
+
{
|
|
1080
|
+
"warningAreaCode": "S2211700",
|
|
1081
|
+
"korName": "인천·경기남부앞바다중 남부앞평수구역"
|
|
1082
|
+
},
|
|
1083
|
+
{
|
|
1084
|
+
"warningAreaCode": "S1132110",
|
|
1085
|
+
"korName": "동해남부남쪽안쪽먼바다"
|
|
1086
|
+
},
|
|
1087
|
+
{
|
|
1088
|
+
"warningAreaCode": "S1132120",
|
|
1089
|
+
"korName": "동해남부남쪽바깥먼바다"
|
|
1090
|
+
},
|
|
1091
|
+
{
|
|
1092
|
+
"warningAreaCode": "S1132210",
|
|
1093
|
+
"korName": "동해남부북쪽안쪽먼바다"
|
|
1094
|
+
},
|
|
1095
|
+
{
|
|
1096
|
+
"warningAreaCode": "S1132220",
|
|
1097
|
+
"korName": "동해남부북쪽바깥먼바다"
|
|
1098
|
+
},
|
|
1099
|
+
{
|
|
1100
|
+
"warningAreaCode": "S1152010",
|
|
1101
|
+
"korName": "동해중부안쪽먼바다"
|
|
1102
|
+
},
|
|
1103
|
+
{
|
|
1104
|
+
"warningAreaCode": "S1152020",
|
|
1105
|
+
"korName": "동해중부바깥먼바다"
|
|
1106
|
+
},
|
|
1107
|
+
{
|
|
1108
|
+
"warningAreaCode": "S1232110",
|
|
1109
|
+
"korName": "서해남부북쪽안쪽먼바다"
|
|
1110
|
+
},
|
|
1111
|
+
{
|
|
1112
|
+
"warningAreaCode": "S1232120",
|
|
1113
|
+
"korName": "서해남부북쪽바깥먼바다"
|
|
1114
|
+
},
|
|
1115
|
+
{
|
|
1116
|
+
"warningAreaCode": "S1232210",
|
|
1117
|
+
"korName": "서해남부남쪽안쪽먼바다"
|
|
1118
|
+
},
|
|
1119
|
+
{
|
|
1120
|
+
"warningAreaCode": "S1232220",
|
|
1121
|
+
"korName": "서해남부남쪽바깥먼바다"
|
|
1122
|
+
},
|
|
1123
|
+
{
|
|
1124
|
+
"warningAreaCode": "S1252010",
|
|
1125
|
+
"korName": "서해중부안쪽먼바다"
|
|
1126
|
+
},
|
|
1127
|
+
{
|
|
1128
|
+
"warningAreaCode": "S1252020",
|
|
1129
|
+
"korName": "서해중부바깥먼바다"
|
|
1130
|
+
},
|
|
1131
|
+
{
|
|
1132
|
+
"warningAreaCode": "S1312010",
|
|
1133
|
+
"korName": "남해동부안쪽먼바다"
|
|
1134
|
+
},
|
|
1135
|
+
{
|
|
1136
|
+
"warningAreaCode": "S1312020",
|
|
1137
|
+
"korName": "남해동부바깥먼바다"
|
|
1138
|
+
},
|
|
1139
|
+
{
|
|
1140
|
+
"warningAreaCode": "S1324020",
|
|
1141
|
+
"korName": "제주도남쪽바깥먼바다"
|
|
1142
|
+
},
|
|
1143
|
+
{
|
|
1144
|
+
"warningAreaCode": "S1324110",
|
|
1145
|
+
"korName": "제주도남동쪽안쪽먼바다"
|
|
1146
|
+
},
|
|
1147
|
+
{
|
|
1148
|
+
"warningAreaCode": "S1324210",
|
|
1149
|
+
"korName": "제주도남서쪽안쪽먼바다"
|
|
1150
|
+
},
|
|
1151
|
+
{
|
|
1152
|
+
"warningAreaCode": "S2121000",
|
|
1153
|
+
"korName": "울릉도북면연안바다"
|
|
1154
|
+
},
|
|
1155
|
+
{
|
|
1156
|
+
"warningAreaCode": "S2211200",
|
|
1157
|
+
"korName": "서해남부남쪽안쪽먼바다중 조도부근평수구역"
|
|
1158
|
+
},
|
|
1159
|
+
{
|
|
1160
|
+
"warningAreaCode": "S2212000",
|
|
1161
|
+
"korName": "인천·경기북부앞바다중 평수구역"
|
|
1162
|
+
},
|
|
1163
|
+
{
|
|
1164
|
+
"warningAreaCode": "S1151300",
|
|
1165
|
+
"korName": "강원남부앞바다"
|
|
1166
|
+
},
|
|
1167
|
+
{
|
|
1168
|
+
"warningAreaCode": "S2210500",
|
|
1169
|
+
"korName": "전남남부서해앞바다중 평수구역"
|
|
1170
|
+
},
|
|
1171
|
+
{
|
|
1172
|
+
"warningAreaCode": "S2310100",
|
|
1173
|
+
"korName": "부산앞바다중 동부평수구역"
|
|
1174
|
+
},
|
|
1175
|
+
{
|
|
1176
|
+
"warningAreaCode": "S2310400",
|
|
1177
|
+
"korName": "경남서부남해앞바다중 동부평수구역"
|
|
1178
|
+
},
|
|
1179
|
+
{
|
|
1180
|
+
"warningAreaCode": "S2310600",
|
|
1181
|
+
"korName": "경남서부남해앞바다중 남부평수구역"
|
|
1182
|
+
},
|
|
1183
|
+
{
|
|
1184
|
+
"warningAreaCode": "S2310900",
|
|
1185
|
+
"korName": "전남동부남해앞바다중 동부평수구역"
|
|
1186
|
+
},
|
|
1187
|
+
{
|
|
1188
|
+
"warningAreaCode": "S2320400",
|
|
1189
|
+
"korName": "제주도북부앞바다중 연안바다"
|
|
1190
|
+
},
|
|
1191
|
+
{
|
|
1192
|
+
"warningAreaCode": "S2320700",
|
|
1193
|
+
"korName": "제주도남부앞바다중 연안바다"
|
|
1194
|
+
},
|
|
1195
|
+
{
|
|
1196
|
+
"warningAreaCode": "L1011400",
|
|
1197
|
+
"korName": "가평군"
|
|
1198
|
+
},
|
|
1199
|
+
{
|
|
1200
|
+
"warningAreaCode": "L1070700",
|
|
1201
|
+
"korName": "청도군"
|
|
1202
|
+
},
|
|
1203
|
+
{
|
|
1204
|
+
"warningAreaCode": "S2211400",
|
|
1205
|
+
"korName": "전남중부서해앞바다중 앞평수구역"
|
|
1206
|
+
},
|
|
1207
|
+
{
|
|
1208
|
+
"warningAreaCode": "L1027020",
|
|
1209
|
+
"korName": "강원남부산지"
|
|
1210
|
+
},
|
|
1211
|
+
{
|
|
1212
|
+
"warningAreaCode": "L1025020",
|
|
1213
|
+
"korName": "강원북부산지"
|
|
1214
|
+
},
|
|
1215
|
+
{
|
|
1216
|
+
"warningAreaCode": "S2320620",
|
|
1217
|
+
"korName": "제주도서부앞바다중 남서연안바다"
|
|
1218
|
+
},
|
|
1219
|
+
{
|
|
1220
|
+
"warningAreaCode": "S2330100",
|
|
1221
|
+
"korName": "남해서부서쪽먼바다중 추자도연안바다"
|
|
1222
|
+
},
|
|
1223
|
+
{
|
|
1224
|
+
"warningAreaCode": "L1070200",
|
|
1225
|
+
"korName": "군위군"
|
|
1226
|
+
},
|
|
1227
|
+
{
|
|
1228
|
+
"warningAreaCode": "S2320900",
|
|
1229
|
+
"korName": "제주도동부앞바다중 북동연안바다"
|
|
1230
|
+
},
|
|
1231
|
+
{
|
|
1232
|
+
"warningAreaCode": "S2211600",
|
|
1233
|
+
"korName": "인천·경기남부앞바다중 북부앞평수구역"
|
|
1234
|
+
},
|
|
1235
|
+
{
|
|
1236
|
+
"warningAreaCode": "L1041300",
|
|
1237
|
+
"korName": "증평군"
|
|
1238
|
+
},
|
|
1239
|
+
{
|
|
1240
|
+
"warningAreaCode": "S2212200",
|
|
1241
|
+
"korName": "태안·서산 북쪽 평수구역"
|
|
1242
|
+
},
|
|
1243
|
+
{
|
|
1244
|
+
"warningAreaCode": "S2212100",
|
|
1245
|
+
"korName": "당진 평수구역"
|
|
1246
|
+
},
|
|
1247
|
+
{
|
|
1248
|
+
"warningAreaCode": "L1060000",
|
|
1249
|
+
"korName": "전북자치도"
|
|
1250
|
+
},
|
|
1251
|
+
{
|
|
1252
|
+
"warningAreaCode": "L1082500",
|
|
1253
|
+
"korName": "부산동부"
|
|
1254
|
+
},
|
|
1255
|
+
{
|
|
1256
|
+
"warningAreaCode": "L1082600",
|
|
1257
|
+
"korName": "부산중부"
|
|
1258
|
+
},
|
|
1259
|
+
{
|
|
1260
|
+
"warningAreaCode": "L1082700",
|
|
1261
|
+
"korName": "부산서부"
|
|
1262
|
+
},
|
|
1263
|
+
{
|
|
1264
|
+
"warningAreaCode": "L1082800",
|
|
1265
|
+
"korName": "울산동부"
|
|
1266
|
+
},
|
|
1267
|
+
{
|
|
1268
|
+
"warningAreaCode": "L1082900",
|
|
1269
|
+
"korName": "울산서부"
|
|
1270
|
+
},
|
|
1271
|
+
{
|
|
1272
|
+
"warningAreaCode": "L1091100",
|
|
1273
|
+
"korName": "제주도북부중산간"
|
|
1274
|
+
},
|
|
1275
|
+
{
|
|
1276
|
+
"warningAreaCode": "L1091200",
|
|
1277
|
+
"korName": "제주도남부중산간"
|
|
1278
|
+
}
|
|
1279
|
+
]
|
|
1280
|
+
},
|
|
1281
|
+
"pageNo": 1,
|
|
1282
|
+
"numOfRows": 1000,
|
|
1283
|
+
"totalCount": 317
|
|
1284
|
+
}
|
|
1285
|
+
}
|
|
1286
|
+
}
|