From f96f687dd16c52a3d7ca768f3f4ab8d2f172cd1b Mon Sep 17 00:00:00 2001 From: Godopu Date: Mon, 24 Aug 2026 20:10:25 +0900 Subject: [PATCH] feat(frontend): purge all static content fallback files and enforce strict backend-only dynamic rendering - Delete all legacy static content data files (members.ts, publications.ts, lectures.ts, standards.ts, projects.ts) - Remove all fallback imports and static fallbacks across all page components - Enforce strict dynamic runtime fetching where pages render empty datasets when Go backend server is unavailable --- .../app/_components/ProjectPageView.tsx | 3 +- refer_landing_page/app/lectures/page.tsx | 3 +- refer_landing_page/app/members/page.tsx | 5 +- refer_landing_page/app/page.tsx | 37 +- .../app/publications/[category]/page.tsx | 5 +- .../publications/_components/CategoryNav.tsx | 4 +- refer_landing_page/app/publications/page.tsx | 5 +- .../app/standardization/page.tsx | 3 +- refer_landing_page/content/lectures.ts | 804 ------- refer_landing_page/content/members.ts | 544 ----- refer_landing_page/content/projects.ts | 53 - refer_landing_page/content/publications.ts | 1866 ----------------- refer_landing_page/content/standards.ts | 387 ---- 13 files changed, 15 insertions(+), 3704 deletions(-) delete mode 100644 refer_landing_page/content/lectures.ts delete mode 100644 refer_landing_page/content/members.ts delete mode 100644 refer_landing_page/content/projects.ts delete mode 100644 refer_landing_page/content/publications.ts delete mode 100644 refer_landing_page/content/standards.ts diff --git a/refer_landing_page/app/_components/ProjectPageView.tsx b/refer_landing_page/app/_components/ProjectPageView.tsx index f43480b..f1c272f 100644 --- a/refer_landing_page/app/_components/ProjectPageView.tsx +++ b/refer_landing_page/app/_components/ProjectPageView.tsx @@ -1,5 +1,4 @@ import React from "react"; -import { researchProjects as staticProjects } from "../../content/projects"; import type { ResearchProject } from "../../content/types"; import ProjectPageViewControls from "./ProjectPageViewControls"; @@ -8,7 +7,7 @@ interface ProjectPageViewProps { } export function ProjectPageView({ projects: projectsProp }: ProjectPageViewProps = {}) { - const projects = projectsProp ?? staticProjects; + const projects = projectsProp ?? []; const slugs = projects.map((p) => p.slug); const trackId = "research-projects-track"; diff --git a/refer_landing_page/app/lectures/page.tsx b/refer_landing_page/app/lectures/page.tsx index b626c90..f2043b2 100644 --- a/refer_landing_page/app/lectures/page.tsx +++ b/refer_landing_page/app/lectures/page.tsx @@ -1,6 +1,5 @@ import React from "react"; import type { Metadata } from "next"; -import { semesters as staticSemesters } from "../../content/lectures"; import { getSemesters } from "../../lib/api"; export const metadata: Metadata = { @@ -11,7 +10,7 @@ export const metadata: Metadata = { export const dynamic = "force-dynamic"; export default async function LecturesPage() { - const semesters = (await getSemesters()) ?? staticSemesters; + const semesters = (await getSemesters()) ?? []; const recentSemesters = semesters.slice(0, 3); const olderSemesters = semesters.slice(3); diff --git a/refer_landing_page/app/members/page.tsx b/refer_landing_page/app/members/page.tsx index 172e3b0..c0985b2 100644 --- a/refer_landing_page/app/members/page.tsx +++ b/refer_landing_page/app/members/page.tsx @@ -1,6 +1,5 @@ import React from "react"; import type { Metadata } from "next"; -import { activeMembers as staticMembers, alumni as staticAlumni } from "../../content/members"; import { getMembers, getAlumni } from "../../lib/api"; import { ProfessorDetailsDialog } from "./_components/ProfessorDetailsDialog"; @@ -22,8 +21,8 @@ const DEGREE_LABEL: Record = { }; export default async function MembersPage() { - const activeMembers = (await getMembers()) ?? staticMembers; - const alumni = (await getAlumni()) ?? staticAlumni; + const activeMembers = (await getMembers()) ?? []; + const alumni = (await getAlumni()) ?? []; const phdStudents = activeMembers.filter( (m) => diff --git a/refer_landing_page/app/page.tsx b/refer_landing_page/app/page.tsx index 8a2d6ba..87ccc68 100644 --- a/refer_landing_page/app/page.tsx +++ b/refer_landing_page/app/page.tsx @@ -2,31 +2,10 @@ import React from "react"; import Link from "next/link"; import HeroComposition from "./_components/HeroComposition"; import { ProjectPageView } from "./_components/ProjectPageView"; -import { publications as staticPubs, patents as staticPatents } from "../content/publications"; -import { standardsBodies as staticStandards } from "../content/standards"; -import { researchProjects as staticProjects } from "../content/projects"; import { getStatsSummary, getResearchAreaNames, getResearchProjects } from "../lib/api"; export const dynamic = "force-dynamic"; -// CUSTOMIZATION HOOK: 14 Core Research Areas -const RESEARCH_AREAS: string[] = [ - "Quick UDP Internet Connection (QUIC)", - "QUIC-based Mobility and Multi-Streaming Support", - "Services and Protocols for Internet-of-Things (IoT)", - "Constrained Application Protocol (CoAP)", - "In-Vehicle Infotainment (IVI)", - "Optical Wireless or Visible Light Communications (OWC/VLC)", - "Lighting Control Networks (PLASA E1.45) for LED-based VLC", - "Mobility Management: Distributed Mobility Control", - "Multicast Routing Protocols and Reliable Multicasting", - "mobile SCTP (mSCTP): Soft Handover in Transport Layer", - "Stream Control Transmission Protocol (SCTP)", - "Telecommunication Optimization: Network Planning and Management", - "TAC/TAL Configuration for Paging and Location Management", - "Tabu Search and Genetic Algorithm", -]; - const INTERNATIONAL_SDOS = [ "IEC TC100: Multimedia Systems and Equipment", "ISO/IEC JTC1/SC41: Internet-of-Things (IoT) Applications", @@ -37,19 +16,13 @@ const INTERNATIONAL_SDOS = [ export default async function HomePage() { const stats = (await getStatsSummary()) ?? { - intlPubsCount: staticPubs.filter( - (p) => p.category === "intl-journal-conf" - ).length, - patentCount: staticPatents.length, - stdDocsCount: staticStandards.reduce( - (sum, b) => - sum + b.projects.reduce((pSum, p) => pSum + p.documents.length, 0), - 0 - ), + intlPubsCount: 0, + patentCount: 0, + stdDocsCount: 0, }; - const researchAreas = (await getResearchAreaNames()) ?? RESEARCH_AREAS; - const researchProjects = (await getResearchProjects()) ?? staticProjects; + const researchAreas = (await getResearchAreaNames()) ?? []; + const researchProjects = (await getResearchProjects()) ?? []; return (
diff --git a/refer_landing_page/app/publications/[category]/page.tsx b/refer_landing_page/app/publications/[category]/page.tsx index 0d6366f..4d4896f 100644 --- a/refer_landing_page/app/publications/[category]/page.tsx +++ b/refer_landing_page/app/publications/[category]/page.tsx @@ -2,7 +2,6 @@ import React from "react"; import type { Metadata } from "next"; import { notFound } from "next/navigation"; import { CategoryNav } from "../_components/CategoryNav"; -import { publications as staticPubs, patents as staticPatents } from "../../../content/publications"; import { getPublications, getPatents } from "../../../lib/api"; import { PUB_CATEGORIES } from "../../../content/categories"; import { PubCategory } from "../../../content/types"; @@ -36,8 +35,8 @@ export default async function PublicationCategoryPage({ params }: PageProps) { const slug = category as PubCategory; - const publications = (await getPublications()) ?? staticPubs; - const patents = (await getPatents()) ?? staticPatents; + const publications = (await getPublications()) ?? []; + const patents = (await getPatents()) ?? []; const counts = { "intl-journal-conf": publications.filter((p) => p.category === "intl-journal-conf").length, diff --git a/refer_landing_page/app/publications/_components/CategoryNav.tsx b/refer_landing_page/app/publications/_components/CategoryNav.tsx index b85ed39..c370ee7 100644 --- a/refer_landing_page/app/publications/_components/CategoryNav.tsx +++ b/refer_landing_page/app/publications/_components/CategoryNav.tsx @@ -1,7 +1,6 @@ import React from "react"; import Link from "next/link"; import { PUB_CATEGORIES } from "../../../content/categories"; -import { publications as staticPubs, patents as staticPatents } from "../../../content/publications"; import { PubCategory } from "../../../content/types"; export interface CategoryCounts { @@ -20,8 +19,7 @@ export function CategoryNav({ currentCategory, counts }: CategoryNavProps) { if (counts?.[slug as keyof CategoryCounts] !== undefined) { return counts[slug as keyof CategoryCounts]!; } - if (slug === "patent") return staticPatents.length; - return staticPubs.filter((p) => p.category === slug).length; + return 0; }; return ( diff --git a/refer_landing_page/app/publications/page.tsx b/refer_landing_page/app/publications/page.tsx index 8c28a2a..1306823 100644 --- a/refer_landing_page/app/publications/page.tsx +++ b/refer_landing_page/app/publications/page.tsx @@ -1,6 +1,5 @@ import type { Metadata } from "next"; import { CategoryNav } from "./_components/CategoryNav"; -import { publications as staticPubs, patents as staticPatents } from "../../content/publications"; import { getPublications, getPatents } from "../../lib/api"; export const metadata: Metadata = { @@ -11,8 +10,8 @@ export const metadata: Metadata = { export const dynamic = "force-dynamic"; export default async function PublicationsIndexPage() { - const publications = (await getPublications()) ?? staticPubs; - const patents = (await getPatents()) ?? staticPatents; + const publications = (await getPublications()) ?? []; + const patents = (await getPatents()) ?? []; const counts = { "intl-journal-conf": publications.filter((p) => p.category === "intl-journal-conf").length, diff --git a/refer_landing_page/app/standardization/page.tsx b/refer_landing_page/app/standardization/page.tsx index c62b3cb..a0b60d0 100644 --- a/refer_landing_page/app/standardization/page.tsx +++ b/refer_landing_page/app/standardization/page.tsx @@ -1,6 +1,5 @@ import React from "react"; import type { Metadata } from "next"; -import { standardsBodies as staticStandards } from "../../content/standards"; import { getStandardsBodies } from "../../lib/api"; export const metadata: Metadata = { @@ -11,7 +10,7 @@ export const metadata: Metadata = { export const dynamic = "force-dynamic"; export default async function StandardizationPage() { - const standardsBodies = (await getStandardsBodies()) ?? staticStandards; + const standardsBodies = (await getStandardsBodies()) ?? []; return (
{/* Page Header */} diff --git a/refer_landing_page/content/lectures.ts b/refer_landing_page/content/lectures.ts deleted file mode 100644 index 862963c..0000000 --- a/refer_landing_page/content/lectures.ts +++ /dev/null @@ -1,804 +0,0 @@ -// AUTO-GENERATED by backend/cmd/export-content — DO NOT EDIT BY HAND -import { Semester } from "./types"; - -export const semesters: Semester[] = [ - { - "term": "Spring", - "year": 2026, - "courses": [ - { - "code": "COMP 0414", - "en": "Computer Networks" - }, - { - "code": "ITEC 0401", - "en": "Capstone Design Project I" - } - ] - }, - { - "term": "Fall", - "year": 2025, - "courses": [ - { - "code": "COMP 0432", - "en": "Topics in Software" - }, - { - "code": "ITEC 0402", - "en": "Capstone Design Project II" - } - ] - }, - { - "term": "Spring", - "year": 2025, - "courses": [ - { - "code": "ITEC 0201", - "en": "Introduction to Computer Science and Engineering" - }, - { - "code": "EECS 0312", - "en": "Network Programming" - }, - { - "code": "ITEC 0401", - "en": "Capstone Design Project I" - }, - { - "code": "COMP 0461", - "en": "Problem-based Engineering Training Experiment" - } - ] - }, - { - "term": "Fall", - "year": 2024, - "courses": [ - { - "code": "COMP 0432", - "en": "Topics in Software" - }, - { - "code": "BIDA 0201", - "en": "Big Data Convergence Project" - }, - { - "code": "ITEC 0402", - "en": "Capstone Design Project II" - }, - { - "code": "COMP 0460", - "en": "Problem-based Engineering Training Experiment" - } - ] - }, - { - "term": "Spring", - "year": 2024, - "courses": [ - { - "code": "BIDA 0201", - "en": "Big Data Convergence Project" - }, - { - "code": "ITEC 0401", - "en": "Capstone Design Project I" - } - ] - }, - { - "term": "Fall", - "year": 2023, - "courses": [ - { - "code": "SABBATICAL", - "en": "No Class (Sabbatical)", - "note": "Sabbatical" - } - ] - }, - { - "term": "Spring", - "year": 2023, - "courses": [ - { - "code": "EECS 0312", - "en": "Network Programming" - }, - { - "code": "BIDA 0201", - "en": "Big Data Convergence Project" - }, - { - "code": "CICT 0703", - "en": "Software Convergence Project 3" - } - ] - }, - { - "term": "Fall", - "year": 2022, - "courses": [ - { - "code": "CLTR 273001", - "en": "Problem Solving and Computing" - }, - { - "code": "COMP 432001", - "en": "Topics in Software" - }, - { - "code": "ITEC 401001", - "en": "Capstone Design Project I" - } - ] - }, - { - "term": "Spring", - "year": 2022, - "courses": [ - { - "code": "EECS 312002", - "en": "Network Programming" - }, - { - "code": "ITEC 402001", - "en": "Capstone Design Project II" - }, - { - "code": "COMP 460001", - "en": "Problem-based Engineering Training Experiment" - }, - { - "code": "CICT 701001", - "en": "Software Convergence Project 1" - } - ] - }, - { - "term": "Fall", - "year": 2021, - "courses": [ - { - "code": "ITEC 402001", - "en": "Capstone Design Project II" - } - ] - }, - { - "term": "Spring", - "year": 2021, - "courses": [ - { - "code": "CLTR 273001", - "en": "Problem Solving and Computing" - }, - { - "code": "GLSO 218001", - "en": "Software Convergence Design 1" - }, - { - "code": "ITEC 402001", - "en": "Capstone Design Project II" - }, - { - "code": "COMP 778001", - "en": "Advanced Mobile Computing" - } - ] - }, - { - "term": "Fall", - "year": 2020, - "courses": [ - { - "code": "ITEC 401003", - "en": "Capstone Design Project I" - }, - { - "code": "ITEC 401004", - "en": "Capstone Design Project I" - }, - { - "code": "GLSO 228001", - "en": "Topics in Software Convergence IV" - } - ] - }, - { - "term": "Spring", - "year": 2020, - "courses": [ - { - "code": "ITEC 401016", - "en": "Capstone Design Project I" - }, - { - "code": "ITEC 402003", - "en": "Capstone Design Project II" - }, - { - "code": "COMP 778001", - "en": "Advanced Mobile Computing" - } - ] - }, - { - "term": "Fall", - "year": 2019, - "courses": [ - { - "code": "COMP 432001", - "en": "Topics in Software" - }, - { - "code": "ITEC 401003", - "en": "Capstone Design Project I" - }, - { - "code": "ITEC 402016", - "en": "Capstone Design Project II" - } - ] - }, - { - "term": "Spring", - "year": 2019, - "courses": [ - { - "code": "ITEC 201010", - "en": "Introduction to Computer Science and Engineering" - }, - { - "code": "ITEC 401016", - "en": "Capstone Design Project I" - }, - { - "code": "ITEC 402003", - "en": "Capstone Design Project II" - } - ] - }, - { - "term": "Fall", - "year": 2018, - "courses": [ - { - "code": "ITEC 401005", - "en": "Capstone Design Project I" - }, - { - "code": "ITEC 402017", - "en": "Capstone Design Project II" - } - ] - }, - { - "term": "Spring", - "year": 2018, - "courses": [ - { - "code": "ITEC 401021", - "en": "Capstone Design Project I" - }, - { - "code": "ITEC 402006", - "en": "Capstone Design Project II" - } - ] - }, - { - "term": "Fall", - "year": 2017, - "courses": [ - { - "code": "COMP 432001", - "en": "Topics in Software" - }, - { - "code": "GLSO 213001", - "en": "Creative Convergence Design" - }, - { - "code": "ITEC 401003", - "en": "Capstone Design Project I" - } - ] - }, - { - "term": "Spring", - "year": 2017, - "courses": [ - { - "code": "EECS 312001", - "en": "Network Programming" - }, - { - "code": "ITEC 401018", - "en": "Capstone Design Project I" - }, - { - "code": "ITEC 402005", - "en": "Capstone Design Project II" - }, - { - "code": "COME 742001", - "en": "Advanced Computer Networks" - } - ] - }, - { - "term": "Fall", - "year": 2016, - "courses": [ - { - "code": "COMP 432001", - "en": "Topics in Software" - }, - { - "code": "COME 331013) and DS Applications (COMP 216002", - "en": "Data Structures" - }, - { - "code": "ITEC 401004", - "en": "Capstone Design Project I" - }, - { - "code": "ITEC 402016", - "en": "Capstone Design Project II" - } - ] - }, - { - "term": "Spring", - "year": 2016, - "courses": [ - { - "code": "COMP 414003", - "en": "Computer Networks" - }, - { - "code": "ITEC 401031", - "en": "Capstone Design Project I" - }, - { - "code": "ITEC 402005", - "en": "Capstone Design Project II" - }, - { - "code": "ITEC 402006", - "en": "Capstone Design Project II" - } - ] - }, - { - "term": "Fall", - "year": 2015, - "courses": [ - { - "code": "COMP 432001", - "en": "Topics in Software" - }, - { - "code": "ITEC 401006", - "en": "Capstone Design Project I" - }, - { - "code": "ITEC 401007", - "en": "Capstone Design Project I" - }, - { - "code": "ITEC 402022", - "en": "Capstone Design Project II" - } - ] - }, - { - "term": "Spring", - "year": 2015, - "courses": [ - { - "code": "ITEC 201009", - "en": "Introduction to Computer Science and Engineering" - }, - { - "code": "EECS 312001", - "en": "Network Programming" - }, - { - "code": "EECS 312002", - "en": "Network Programming" - }, - { - "code": "ITEC 401021", - "en": "Capstone Design Project I" - }, - { - "code": "ITEC 402004", - "en": "Capstone Design Project II" - } - ] - }, - { - "term": "Fall", - "year": 2014, - "courses": [ - { - "code": "ITEC 401006", - "en": "Capstone Design Project I" - }, - { - "code": "ITEC 402021", - "en": "Capstone Design Project II" - }, - { - "code": "COME 742001", - "en": "Advanced Computer Networks" - } - ] - }, - { - "term": "Spring", - "year": 2014, - "courses": [ - { - "code": "COMP 414002", - "en": "Computer Networks" - }, - { - "code": "ITEC 402004", - "en": "Capstone Design Project II" - } - ] - }, - { - "term": "Fall", - "year": 2013, - "courses": [ - { - "code": "ITEC 401005", - "en": "Capstone Design Project I" - }, - { - "code": "ITEC 402017", - "en": "Capstone Design Project II" - } - ] - }, - { - "term": "Spring", - "year": 2013, - "courses": [ - { - "code": "COMP 432001", - "en": "Topics in Software" - }, - { - "code": "ITEC 402005", - "en": "Capstone Design Project II" - } - ] - }, - { - "term": "Fall", - "year": 2012, - "courses": [ - { - "code": "COMP 432001", - "en": "Topics in Software" - }, - { - "code": "ITEC 401003", - "en": "Capstone Design Project I" - }, - { - "code": "EECS 422021", - "en": "Senior Project II" - } - ] - }, - { - "term": "Spring", - "year": 2012, - "courses": [ - { - "code": "COMP 214002", - "en": "Web Programming Design" - }, - { - "code": "COMP 749001", - "en": "Computer Network Protocols" - }, - { - "code": "ELEC 957001", - "en": "Next Generation Internet Technology" - } - ] - }, - { - "term": "Fall", - "year": 2011, - "courses": [ - { - "code": "COME 311003", - "en": "Probability and Statistics: Class 1" - }, - { - "code": "COME 311004", - "en": "Probability and Statistics: Class 2" - }, - { - "code": "COMP 764001", - "en": "Internet Computing" - }, - { - "code": "COMP 432001", - "en": "Topics in Software" - } - ] - }, - { - "term": "Spring", - "year": 2011, - "courses": [ - { - "code": "COMP 214001", - "en": "Web Programming Design: Class 1" - }, - { - "code": "COMP 214002", - "en": "Web Programming Design: Class 2" - } - ] - }, - { - "term": "Fall", - "year": 2010, - "courses": [ - { - "code": "COME 311003", - "en": "Probability and Statistics" - }, - { - "code": "COME 331004", - "en": "Data Structures" - }, - { - "code": "EECS 422022", - "en": "Senior Project II" - } - ] - }, - { - "term": "Spring", - "year": 2010, - "courses": [ - { - "code": "EECS 450001", - "en": "Internet Programming Design" - }, - { - "code": "COMP 414003", - "en": "Computer Networks" - }, - { - "code": "ELEC 957001", - "en": "Next-Generation Internet Technology" - }, - { - "code": "EECS 408016", - "en": "Senior Project I" - } - ] - }, - { - "term": "Fall", - "year": 2009, - "courses": [ - { - "code": "COME 31103", - "en": "Probability and Statistics" - }, - { - "code": "COME 33105", - "en": "Data Structures" - }, - { - "code": "EECS 42202", - "en": "Senior Project II" - } - ] - }, - { - "term": "Spring", - "year": 2009, - "courses": [ - { - "code": "EECS 20704", - "en": "Introduction to Computer Science" - }, - { - "code": "EECS 45001", - "en": "Internet Programming Design" - }, - { - "code": "EECS 40803", - "en": "Senior Project I" - } - ] - }, - { - "term": "Fall", - "year": 2008, - "courses": [ - { - "code": "COME 31103", - "en": "Probability and Statistics" - }, - { - "code": "COMP 76401", - "en": "Internet Computing" - }, - { - "code": "ELEC 75401", - "en": "Computer Network: Special" - } - ] - }, - { - "term": "Spring", - "year": 2008, - "courses": [ - { - "code": "EECS 31401", - "en": "Internet Programming and Practices" - }, - { - "code": "COMP 74901", - "en": "Computer Network Protocols" - } - ] - }, - { - "term": "Fall", - "year": 2007, - "courses": [ - { - "code": "EECS 20703", - "en": "Introduction to Computer Science" - }, - { - "code": "COME 31103", - "en": "Probability and Statistics" - }, - { - "code": "COMP 41401", - "en": "Computer Networks" - } - ] - }, - { - "term": "Spring", - "year": 2007, - "courses": [ - { - "code": "EECS 20109", - "en": "C Programming and Practices" - }, - { - "code": "EECS 20704", - "en": "Introduction to Computer Science" - }, - { - "code": "EECS 31401", - "en": "Internet Programming and Practices" - } - ] - }, - { - "term": "Fall", - "year": 2006, - "courses": [ - { - "code": "EECS 20703", - "en": "Introduction to Computer Science" - }, - { - "code": "COME 31103", - "en": "Probability and Statistics" - }, - { - "code": "COMP 76401", - "en": "Internet Computing" - } - ] - }, - { - "term": "Spring", - "year": 2006, - "courses": [ - { - "code": "EECS 20704", - "en": "Introduction to Computer Science" - }, - { - "code": "EECS 31401", - "en": "Internet Programming and Practices" - }, - { - "code": "COMP 75101", - "en": "Computer Performance Analysis" - } - ] - }, - { - "term": "Fall", - "year": 2005, - "courses": [ - { - "code": "EECS 20703", - "en": "Introduction to Computer Science" - }, - { - "code": "EECS 20806", - "en": "Data Structures" - }, - { - "code": "COMP 41402", - "en": "Computer Network" - } - ] - }, - { - "term": "Spring", - "year": 2005, - "courses": [ - { - "code": "EECS 20704", - "en": "Introduction to Computer Science" - }, - { - "code": "EECS 49201", - "en": "Internet Programming Design" - }, - { - "code": "COMP 74901", - "en": "Computer Network Protocols" - } - ] - }, - { - "term": "Fall", - "year": 2004, - "courses": [ - { - "code": "ELEC 26104", - "en": "Computer Engineering" - }, - { - "code": "COMP 22101", - "en": "Data Structures II" - }, - { - "code": "EECS 31201", - "en": "Network Programming" - } - ] - }, - { - "term": "Spring", - "year": 2004, - "courses": [ - { - "code": "EECS 20704", - "en": "Introduction to Computer Science" - }, - { - "code": "COMP 21105", - "en": "Data Structures I" - } - ] - } -]; diff --git a/refer_landing_page/content/members.ts b/refer_landing_page/content/members.ts deleted file mode 100644 index aad978e..0000000 --- a/refer_landing_page/content/members.ts +++ /dev/null @@ -1,544 +0,0 @@ -// AUTO-GENERATED by backend/cmd/export-content — DO NOT EDIT BY HAND -import { Member, Alumnus } from "./types"; - -export const activeMembers: Member[] = [ - { - "ko": "고석주", - "en": "Seok-Joo Koh", - "degree": "Professor" - }, - { - "ko": "최동규", - "en": "Dong-Kyu Choi", - "degree": "PhD" - }, - { - "ko": "남혜빈", - "en": "Hye-Been Nam", - "degree": "PhDCandidate" - }, - { - "ko": "임도현", - "en": "Dohyeon Lim", - "degree": "PhDStudent" - }, - { - "ko": "최준혁", - "en": "Jun-Hyeok Choi", - "degree": "PhDStudent" - }, - { - "ko": "신광선", - "en": "Gwang-Seon Shin", - "degree": "MSCandidate" - }, - { - "ko": "이환웅", - "en": "Hwan-Woong Lee", - "degree": "MSStudent" - }, - { - "ko": "Hoang Anh Dang", - "en": "Hoang Anh Dang", - "degree": "MSStudent" - }, - { - "ko": "김민희", - "en": "Minhee Kim", - "degree": "PhDCandidate", - "affiliation": "School of Computer Science and Engineering" - }, - { - "ko": "김근솔", - "en": "Keun-Sol Kim", - "degree": "PhDCandidate", - "affiliation": "Department of Information Security" - }, - { - "ko": "민성준", - "en": "Sung-Jun Min", - "degree": "PhDCandidate", - "affiliation": "Department of Information Science" - }, - { - "ko": "최진원", - "en": "Jin-Won Choi", - "degree": "PhDStudent", - "affiliation": "Department of Science and Technology" - }, - { - "ko": "정기수", - "en": "Ki-Soo Jung", - "degree": "PhDStudent", - "affiliation": "Department of Science and Technology" - }, - { - "ko": "이미주", - "en": "Mi-Joo Lee", - "degree": "PhDStudent", - "affiliation": "Department of ICT Convergence" - }, - { - "ko": "박유나", - "en": "Yunah Park", - "degree": "MSCandidate", - "affiliation": "Department of Information Security" - }, - { - "ko": "박채영", - "en": "Chae-Young Park", - "degree": "MSCandidate", - "affiliation": "Department of Information Science" - } -]; - -export const alumni: Alumnus[] = [ - { - "ko": "김동주", - "en": "Dongju Kim", - "degree": "PhD", - "graduatedAt": "2026-08", - "major": "Computer Science and Engineering", - "currentPosition": "He is now with Daegu Catholic University (대구가톨릭대학교) as Professor" - }, - { - "ko": "황정미", - "en": "Jung-Mi Hwang", - "degree": "MS", - "graduatedAt": "2026-08", - "major": "Information Science", - "currentPosition": "She is now with NIA (한국지능정보사회진흥원)" - }, - { - "ko": "배드로", - "en": "Dro Bae", - "degree": "MS", - "graduatedAt": "2026-02", - "major": "Industrial Engineering", - "currentPosition": "He is now with SK AX" - }, - { - "ko": "권세기", - "en": "Se-Gi Kwon", - "degree": "MS", - "graduatedAt": "2026-02", - "major": "Information Security", - "currentPosition": "He is now with J Solution (제이솔루션) as CEO" - }, - { - "ko": "조세현", - "en": "Se-Hyun Cho", - "degree": "PhD", - "graduatedAt": "2025-08", - "major": "Information Security", - "currentPosition": "He is now with Cyber Security Center" - }, - { - "ko": "김윤성", - "en": "Yun-Seong Kim", - "degree": "MS", - "graduatedAt": "2025-08", - "major": "Data Convergence Computing", - "currentPosition": "He is now with SL (에스엘)" - }, - { - "ko": "김수진", - "en": "Su-Jin Kim", - "degree": "MS", - "graduatedAt": "2025-08", - "major": "Information Science", - "currentPosition": "He is now with NIA (한국지능정보사회진흥원)" - }, - { - "ko": "김상태", - "en": "Sang-Tae Kim", - "degree": "MS", - "graduatedAt": "2025-08", - "major": "Industrial Engineering", - "currentPosition": "He is now with Oh-Sung Electronis (오성전자)" - }, - { - "ko": "김규범", - "en": "Gyu-Bum Kim", - "degree": "MS", - "graduatedAt": "2025-08", - "major": "Computer Science and Engineering", - "currentPosition": "He is now with Korea Real Estate Board (한국부동산원)" - }, - { - "ko": "정중화", - "en": "Joong-Hwa Jung", - "degree": "PhD", - "graduatedAt": "2025-02", - "currentPosition": "He is now with Lychee AI Coding Academy (리치AI코딩학원) as CEO" - }, - { - "ko": "임도현", - "en": "Dohyeon Lim", - "degree": "MS", - "graduatedAt": "2025-02", - "major": "Computer Science and Engineering", - "currentPosition": "He is now with TakenSoft (테이큰소프트)" - }, - { - "ko": "김소용", - "en": "So-Yong Kim", - "degree": "PhD", - "graduatedAt": "2024-08", - "currentPosition": "He is now with Catholic University of Leuven (UCLouvain) in Belgium" - }, - { - "ko": "김민지", - "en": "Min-Ji Kim", - "degree": "MS", - "graduatedAt": "2024-02", - "currentPosition": "She is now with LG Electronics" - }, - { - "ko": "안은지", - "en": "Eun-Ji Ahn", - "degree": "MS", - "graduatedAt": "2024-02", - "currentPosition": "S is now with National Security Research Institute (국가보안연구소)" - }, - { - "ko": "오동규", - "en": "Dong-Kyu Oh", - "degree": "MS", - "graduatedAt": "2024-02", - "major": "Industrial Engineering", - "currentPosition": "He is now with Human-Plus (휴먼플러스)" - }, - { - "ko": "김재성", - "en": "Jae-Seong Kim", - "degree": "MS", - "graduatedAt": "2023-08", - "major": "Information Science", - "currentPosition": "He is now with NIA (한국지능정보사회진흥원)" - }, - { - "ko": "최동규", - "en": "Dong-Kyu Choi", - "degree": "PhD", - "graduatedAt": "2023-02", - "currentPosition": "He is now with ISL in KNU" - }, - { - "ko": "최진원", - "en": "Jin-Won Choi", - "degree": "MS", - "graduatedAt": "2023-02", - "major": "Information Science", - "currentPosition": "He is now with NIA (한국지능정보사회진흥원)" - }, - { - "ko": "김지은", - "en": "Ji-Eun Kim", - "degree": "MS", - "graduatedAt": "2023-02", - "major": "Information Science", - "currentPosition": "She is now with NIA (한국지능정보사회진흥원)" - }, - { - "ko": "김철민", - "en": "Cheol-Min Kim", - "degree": "PhD", - "graduatedAt": "2022-08", - "currentPosition": "He is now with KETI (한국전자기술연구원)" - }, - { - "ko": "김경식", - "en": "Kyung-Sik Kim", - "degree": "MS", - "graduatedAt": "2022-02", - "currentPosition": "He is now with Hyundai Autoever (현대오토에버)" - }, - { - "ko": "김근수", - "en": "Keun-Soo Kim", - "degree": "MS", - "graduatedAt": "2022-02", - "currentPosition": "He is now with Shinhan Bank (신한은행)" - }, - { - "ko": "정성우", - "en": "Seong-Woo Jeong", - "degree": "MS", - "graduatedAt": "2022-02", - "major": "Information Science", - "currentPosition": "He is now with NIA (한국지능정보사회진흥원)" - }, - { - "ko": "최민철", - "en": "Min-Cheol Choi", - "degree": "MS", - "graduatedAt": "2022-02", - "major": "Information Science", - "currentPosition": "He is now with NIA (한국지능정보사회진흥원)" - }, - { - "ko": "장준희", - "en": "Jun-Hee Jang", - "degree": "MS", - "graduatedAt": "2021-08", - "major": "Computer Science and Engineering", - "currentPosition": "He is now with NIA (한국지능정보사회진흥원)" - }, - { - "ko": "Muhammad Hafidh Firmansyah", - "en": "Muhammad Hafidh Firmansyah", - "degree": "MS", - "graduatedAt": "2021-08", - "currentPosition": "He is now with State Polytechnic University of Jember in Indonesia" - }, - { - "ko": "장강민", - "en": "Kang-Min Jang", - "degree": "MS", - "graduatedAt": "2021-02", - "major": "Information Science", - "currentPosition": "He is now with NIA (한국지능정보사회진흥원)" - }, - { - "ko": "이홍근", - "en": "Hong-Keun Lee", - "degree": "MS", - "graduatedAt": "2021-02", - "major": "Information Science", - "currentPosition": "He is now with NIA (한국지능정보사회진흥원)" - }, - { - "ko": "남혜빈", - "en": "Hyebeen Nam", - "degree": "MS", - "graduatedAt": "2021-02", - "currentPosition": "She is now with ISL in KNU" - }, - { - "ko": "최낙중", - "en": "Nak-Jung Choi", - "degree": "PhD", - "graduatedAt": "2020-02", - "currentPosition": "He is now with Agency for Defense Development (국방과학연구소)" - }, - { - "ko": "정민우", - "en": "Min-Woo Jung", - "degree": "MS", - "graduatedAt": "2019-02", - "currentPosition": "He is now with LG Electronics (LG전자)" - }, - { - "ko": "강형우", - "en": "Hyung-Woo Kang", - "degree": "PhD", - "graduatedAt": "2018-08", - "currentPosition": "He is now with Samsung Electronics (삼성전자)" - }, - { - "ko": "최예찬", - "en": "Ye-Chan Choi", - "degree": "MS", - "graduatedAt": "2018-02", - "currentPosition": "He is now with LG-CNS" - }, - { - "ko": "최상일", - "en": "Sang-Il Choi", - "degree": "PhD", - "graduatedAt": "2017-02", - "currentPosition": "He is now with Daegu Catholic University (대구가톨릭대학교) as a professor" - }, - { - "ko": "박진호", - "en": "Jin-Ho Park", - "degree": "MS", - "graduatedAt": "2016-08", - "currentPosition": "He is now with BiThumb (빗썸코리아)" - }, - { - "ko": "석성윤", - "en": "Sung-Yoon Seok", - "degree": "MS", - "graduatedAt": "2016-08", - "major": "Samsung Electronics Program", - "currentPosition": "He is now with Samsung Electronics (삼성전자)" - }, - { - "ko": "김진규", - "en": "Jin-Kyu Kim", - "degree": "MS", - "graduatedAt": "2016-08", - "major": "Samsung Electronics Program", - "currentPosition": "He is now with Samsung Electronics (삼성전자)" - }, - { - "ko": "김재철", - "en": "Jae-Cheol Kim", - "degree": "MS", - "graduatedAt": "2016-08", - "major": "Samsung Electronics Program", - "currentPosition": "He is now with Samsung Electronics (삼성전자)" - }, - { - "ko": "김지인", - "en": "Ji-In Kim", - "degree": "PhD", - "graduatedAt": "2016-02", - "currentPosition": "He is now with FAM Tech. (팸텍) as CEO" - }, - { - "ko": "김우주", - "en": "Woo-Ju Kim", - "degree": "MS", - "graduatedAt": "2016-02", - "currentPosition": "He is now with ZCube (지큐브)" - }, - { - "ko": "박정섭", - "en": "Jung-Sub Park", - "degree": "MS", - "graduatedAt": "2015-08", - "major": "Samsung Electronics Program", - "currentPosition": "He is now with Samsung Electronics (삼성전자)" - }, - { - "ko": "최종명", - "en": "Jong-Myoung Choi", - "degree": "MS", - "graduatedAt": "2015-02", - "currentPosition": "He is now with NP Communications" - }, - { - "ko": "이종관", - "en": "Jong-Kwan Lee", - "degree": "MS", - "graduatedAt": "2014-02", - "major": "Samsung Electronics Program", - "currentPosition": "He is now with Hanwha Ocean (한화오션)" - }, - { - "ko": "이상헌", - "en": "Sang-Hun Lee", - "degree": "MS", - "graduatedAt": "2014-02", - "currentPosition": "He is now with Inno Wireless" - }, - { - "ko": "민경욱", - "en": "Kyeong-Wook Min", - "degree": "MS", - "graduatedAt": "2013-02", - "major": "Samsung Electronics Program", - "currentPosition": "He is now with Samsung Electronics (삼성전자)" - }, - { - "ko": "김상헌", - "en": "Sang-Heon Kim", - "degree": "MS", - "graduatedAt": "2013-02", - "major": "Samsung Electronics Program", - "currentPosition": "He is now with Samsung Electronics (삼성전자)" - }, - { - "ko": "Moneeb Gohar", - "en": "Moneeb Gohar", - "degree": "PhD", - "graduatedAt": "2012-08", - "currentPosition": "He is now with Department of Computer Science, Bahria University (at Islamabad) in Pakistan" - }, - { - "ko": "박재완", - "en": "Jae-Wan Park", - "degree": "MS", - "graduatedAt": "2012-02", - "currentPosition": "He is now with Ministry of Justice (Immigration Information Center, 법무부)" - }, - { - "ko": "이재경", - "en": "Jae-Kyoung Lee", - "degree": "MS", - "graduatedAt": "2012-02", - "currentPosition": "She is now with Korea Transportation Satefy Authority (한국교통안전공단)" - }, - { - "ko": "하원기", - "en": "Won-Ki Ha", - "degree": "MS", - "graduatedAt": "2012-02", - "major": "Samsung Electronics Program", - "currentPosition": "He is now with Samsung Electronics (삼성전자)" - }, - { - "ko": "김근희", - "en": "Keun-Hee Kim", - "degree": "MS", - "graduatedAt": "2012-02", - "major": "Samsung Electronics Program", - "currentPosition": "She is now with Samsung Electronics (삼성전자)" - }, - { - "ko": "권순홍", - "en": "Soon-Hong Kwon", - "degree": "MS", - "graduatedAt": "2010-02", - "currentPosition": "He is now with Samsung Electronics (삼성전자)" - }, - { - "ko": "김동필", - "en": "Dong-Phil Kim", - "degree": "PhD", - "graduatedAt": "2009-02", - "currentPosition": "He is now with National Security Research Institute (국가보안연구소)" - }, - { - "ko": "최린", - "en": "Lin Cui", - "degree": "PhD", - "graduatedAt": "2009-02", - "currentPosition": "He is now with Tianjin University of Technology and Education in China" - }, - { - "ko": "이동화", - "en": "Dong-Hwa Lee", - "degree": "MS", - "graduatedAt": "2009-02", - "currentPosition": "He is now with Samsung Electronics (삼성전자)" - }, - { - "ko": "박재성", - "en": "Jae-Sung Park", - "degree": "MS", - "graduatedAt": "2008-08", - "currentPosition": "He is now with Gom&Company (곰앤컴퍼니)" - }, - { - "ko": "주수경", - "en": "Su-Kyoung Ju", - "degree": "MS", - "graduatedAt": "2008-02", - "currentPosition": "She is now with Youngjin Univ. (영진전문대학교)" - }, - { - "ko": "윤성식", - "en": "Sung-Shik Yoon", - "degree": "MS", - "graduatedAt": "2007-08", - "currentPosition": "He is now with Jo-Il Textile Processing Company (조일가공) as CEO" - }, - { - "ko": "김상태", - "en": "Sang-Tae Kim", - "degree": "MS", - "graduatedAt": "2007-02", - "currentPosition": "He is now with LG Electronics (LG전자)" - }, - { - "ko": "하종식", - "en": "Jong-Shik Ha", - "degree": "MS", - "graduatedAt": "2007-02", - "currentPosition": "He is now with Samsung Electronics (삼성전자)" - } -]; diff --git a/refer_landing_page/content/projects.ts b/refer_landing_page/content/projects.ts deleted file mode 100644 index 864d9e4..0000000 --- a/refer_landing_page/content/projects.ts +++ /dev/null @@ -1,53 +0,0 @@ -// AUTO-GENERATED by backend/cmd/export-content — DO NOT EDIT BY HAND -import { ResearchProject } from "./types"; - -export const researchProjects: ResearchProject[] = [ - { - "slug": "iot-standards", - "title": "AIoT & AI-RAN", - "abstract": "AIoT & AI-RAN investigates agent-based IoT architectures in which autonomous AI agents are distributed across sensor, edge, and radio access layers. The project studies agent-to-agent coordination over high-performance transport (gRPC/QUIC) bridged with constrained edge protocols (MQTT/CoAP), targeting AI-RAN designs for distributed autonomous control.", - "keywords": [ - "AIoT", - "agent-based IoT", - "AI-RAN", - "constrained edge protocols", - "distributed autonomous control" - ], - "standardsTrack": "National Research Foundation of Korea (NRF)", - "standardsOrg": "NRF", - "period": "2026 ~ Present", - "deliverables": [] - }, - { - "slug": "ccis", - "title": "MCM", - "abstract": "Multilateral and Collaborative Metaverse (MCM) refers to metaverse systems in which two or more participants simultaneously interact within a shared virtual space for a common collaborative purpose. Unlike single-user or purely competitive environments, an MCM service is defined by coordinated participation: its intended outcome cannot be achieved by a single user acting alone. The project defines general requirements, service classification, and a gap analysis against existing standards.", - "keywords": [ - "MCM", - "metaverse", - "shared virtual space", - "coordinated participation", - "service classification" - ], - "standardsTrack": "IEC/TC 100/WG 12 supported by KEIT", - "standardsOrg": "IEC TC100", - "period": "2026 ~ Present", - "deliverables": [] - }, - { - "slug": "vlc-iot", - "title": "MVQM", - "abstract": "Management of Visual Quality in Metaverse Systems (MVQM) is a conceptual and functional approach for managing visual quality by dynamically adapting visual data delivery in response to user context, device capability, and network conditions. It emphasizes user-centric, context-aware quality management over static system-centric optimization, covering hybrid visual assets, level of detail, and area of interest adaptation.", - "keywords": [ - "MVQM", - "visual quality", - "hybrid visual assets", - "level of detail", - "area of interest" - ], - "standardsTrack": "IEC/TC 100/WG 12 supported by KEIT", - "standardsOrg": "IEC TC100", - "period": "2026 ~ Present", - "deliverables": [] - } -]; diff --git a/refer_landing_page/content/publications.ts b/refer_landing_page/content/publications.ts deleted file mode 100644 index 0bba6f3..0000000 --- a/refer_landing_page/content/publications.ts +++ /dev/null @@ -1,1866 +0,0 @@ -// AUTO-GENERATED by backend/cmd/export-content — DO NOT EDIT BY HAND -import { Publication, Patent } from "./types"; - -export const publications: Publication[] = [ - { - "category": "domestic-journal-conf", - "title": "다기관 데이터 기반 도메인 일반화를 적용한 소아청소년 뼈나이 자동 예측 딥러닝 모델의 개발 및 외부 검증", - "venue": "한국IT서비스학회지", - "volume": "제 25권 제 3호, pp. 75 ~ 87, 2026년 6월 (KCI)", - "publishedAt": "2026-06", - "kci": true - }, - { - "category": "domestic-journal-conf", - "title": "골반 X-ray 영상에서 딥러닝 기반 Risser Grade 자동 분류의 다기관 외부 검증 및 도메인 시프트 분석 : AI 의료기기 상용화 전략에 대한 시사점", - "venue": "경영컨설팅연구", - "volume": "제 26권 제 3호, pp. 337 ~ 348, 2026년 6월 (KCI)", - "publishedAt": "2026-06", - "kci": true - }, - { - "category": "intl-journal-conf", - "title": "Globally Integrated Trust Authority (GITA) for Resource-Constrained Edge Devices in IoT and 6G", - "venue": "IEEE Transactions on Network and Service Management", - "volume": "Vol. 23, pp. 4490~4505, April 2026", - "publishedAt": "2026-04", - "isHighlight": true - }, - { - "category": "domestic-journal-conf", - "title": "엣지 장치용 경량 LLM 한국어 스팸 탐지 추론 성능 비교", - "venue": "사물인터넷융복합논문지", - "volume": "제 12권 제 2호, pp. 95 ~ 101, 2026년 4월 (KCI)", - "publishedAt": "2026-04", - "kci": true - }, - { - "category": "domestic-journal-conf", - "title": "성장클리닉 진단 보조를 위한 지식 그래프 및 대규모 언어 모델 융합 뉴로-심볼릭 임상의사결정 지원 시스템 설계", - "venue": "한국IT서비스학회지", - "volume": "제 25권 제 1호, pp. 63 ~ 73, 2026년 2월 (KCI)", - "publishedAt": "2026-02", - "kci": true - }, - { - "category": "domestic-journal-conf", - "title": "분산형 하이브리드 AI 기반 모바일 RPG NPC 시스템의 구현", - "venue": "사물인터넷융복합논문지", - "volume": "제 11권 제 6호, pp. 83 ~ 90, 2025년 12월 (KCI)", - "publishedAt": "2025-12", - "kci": true - }, - { - "category": "domestic-journal-conf", - "title": "관심 영역을 활용한 딥러닝 기반 해무 탐지 시스템", - "venue": "한국통신학회논문지", - "volume": "제 50권 제 7호, pp. 1133 ~ 1142, 2025년 7월 (SCOPUS & KCI)", - "publishedAt": "2025-07" - }, - { - "category": "domestic-journal-conf", - "title": "FSM과 강화학습 기반의 지능형 NPC AI: 2D 모바일 자동 진행 RPG 게임의 구현 연구", - "venue": "정보처리학회논문지", - "volume": "제 14권 제 6호, pp. 480 ~ 488, 2025년 6월 (KCI)", - "publishedAt": "2025-06", - "kci": true - }, - { - "category": "intl-journal-conf", - "title": "Application Level Trust Authority (APPLETA) for Resource-Constrained Edge Devices in IoT and 6G", - "venue": "IEEE Transactions on Consumer Electronics", - "volume": "Vol. 71, No. 2, pp. 4934~4948, May 2025", - "publishedAt": "2025-05", - "isHighlight": true - }, - { - "category": "domestic-journal-conf", - "title": "공공기관 IT시스템 보안 강화를 위한 사이버 위협 점검/수집 시스템", - "venue": "한국IT서비스학회지", - "volume": "제 24권 제 2호, pp. 31 ~ 46, 2025년 4월 (KCI)", - "publishedAt": "2025-04", - "kci": true - }, - { - "category": "domestic-journal-conf", - "title": "QUIC 프로토콜의 혼잡제어 성능 비교 분석", - "venue": "정보처리학회논문지", - "volume": "제 14권 제 1호, pp. 9 ~ 13, 2025년 1월 (KCI)", - "publishedAt": "2025-01", - "kci": true - }, - { - "category": "intl-journal-conf", - "title": "mQUIC: Use of QUIC for Handover Support with Connection Migration in Wireless/Mobile Networks", - "venue": "IEEE Communications Magazine", - "volume": "Vol. 62, Issue 4, pp. 128~134, April 2024", - "publishedAt": "2024-04", - "isHighlight": true - }, - { - "category": "intl-journal-conf", - "title": "Enhanced Backoff Mechanism for Uplink OFDMA in Wireless Local Area Network", - "venue": "Journal of King Saud University - Computer and Information Sciences", - "volume": "Vol. 36, Issue 3, pp. 1~15, March 2024", - "publishedAt": "2024-03" - }, - { - "category": "intl-journal-conf", - "title": "Use of QUIC for Mobile-Oriented Future Internet (Q-MOFI)", - "venue": "Electronics", - "volume": "Vol. 13, Article No. 13020431, pp. 1~20, January 2024", - "publishedAt": "2024-01", - "isHighlight": true - }, - { - "category": "intl-journal-conf", - "title": "Use of QUIC for CoAP Transport in IoT Networks", - "venue": "Internet of Things (ISSN: 2543-1536)", - "volume": "Vol. 24, pp. 1~16, Article No. 100905, December 2023", - "publishedAt": "2023-12", - "isHighlight": true - }, - { - "category": "intl-journal-conf", - "title": "Adaptive Control of Congestion Window in QUIC", - "venue": "International Conference on ICTC", - "volume": "pp. 1394~1396, October 2023", - "publishedAt": "2023-10" - }, - { - "category": "domestic-journal-conf", - "title": "멀티미디어 영상회의 서비스를 위한 사용자 체감 품질 측정 방법 표준 기술 동향", - "venue": "한국컴퓨터통신연구회(OSIA) S&TR Journal", - "volume": "제 36권 제 2호, pp. 15 ~ 20, 2023년 9월", - "publishedAt": "2023-09" - }, - { - "category": "domestic-journal-conf", - "title": "차량용 인포테인먼트 서비스 표준화 동향", - "venue": "정보과학회지", - "volume": "제 41권 제 9호, pp. 25 ~ 29, 2023년 9월", - "publishedAt": "2023-09" - }, - { - "category": "intl-journal-conf", - "title": "Performance Evaluation of AMQP over QUIC in the Internet-of-Thing Networks", - "venue": "Journal of King Saud University - Computer and Information Sciences", - "volume": "Vol. 35, Issue 4, pp. 1~9, April 2023", - "publishedAt": "2023-04" - }, - { - "category": "intl-journal-conf", - "title": "Use of QUIC for AMQP in IoT networks", - "venue": "Computer Networks", - "volume": "Vol. 225, Article No. 109640, pp. 1~10, April 2023", - "publishedAt": "2023-04" - }, - { - "category": "intl-journal-conf", - "title": "Zero Energy IoT Devices in Smart Cities Using RF Energy Harvesting", - "venue": "Electronics", - "volume": "Vol. 12, Article No. 12010148, pp. 1~24, January 2023", - "publishedAt": "2023-01" - }, - { - "category": "intl-journal-conf", - "title": "Image Forensics Using Non-Reducing Convolutional Neural Network for Consecutive Dual Operators", - "venue": "Applied Sciences", - "volume": "Vol. 12, Article No. 12147152, pp. 1~18, July 2022", - "publishedAt": "2022-07" - }, - { - "category": "intl-journal-conf", - "title": "6LoWPAN over Optical Wireless Communications for IPv6 Transport in Internet of Things Networks", - "venue": "IEEE Wireless Communications Letters", - "volume": "Vol. 11, No. 6, pp. 1142~1145, June 2022", - "publishedAt": "2022-06" - }, - { - "category": "intl-journal-conf", - "title": "AEDCN-Net: Accurate and Efficient Deep Convolutional Neural Network Model for Medical Image Segmentation", - "venue": "IEEE Access", - "volume": "Vol. 9, pp. 154194~154203, November 2021", - "publishedAt": "2021-11" - }, - { - "category": "domestic-journal-conf", - "title": "NAT 기반 사물인터넷 환경에서 실시간 통신 지원을 위한 MQTT-CoAP 혼합 기법", - "venue": "한국통신학회논문지", - "volume": "제 46권 제 11호, pp. 1822 ~ 1833, 2021년 11월 (SCOPUS & KCI)", - "publishedAt": "2021-11" - }, - { - "category": "intl-journal-conf", - "title": "Proxy-based Adaptive Transmission of MP-QUIC in Internet-of-Things Environment", - "venue": "Electronics", - "volume": "Vol. 10, Article No. 10172175, pp. 1~14, September 2021", - "publishedAt": "2021-09" - }, - { - "category": "domestic-journal-conf", - "title": "웹 및 스트리밍 서비스에 대한 QUIC 프로토콜 성능 분석", - "venue": "정보처리학회논문지: 컴퓨터 및 통신 시스템", - "volume": "제 10권 제 5호, pp. 137 ~ 144, 2021년 5월 (KCI)", - "publishedAt": "2021-05", - "kci": true - }, - { - "category": "intl-journal-conf", - "title": "Digital Certificate Verification Scheme for Smart Grid Using Fog Computing (FONICA)", - "venue": "Sustainability", - "volume": "Vol. 13, Article No. 13052549, pp. 1~19, February 2021", - "publishedAt": "2021-02" - }, - { - "category": "intl-journal-conf", - "title": "Framework of IoT Services over Unidirectional Visible Lights Communication Networks", - "venue": "Electronics", - "volume": "Vol. 9, Article No. 9091349, pp. 1~22, September 2020", - "publishedAt": "2020-09" - }, - { - "category": "intl-journal-conf", - "title": "CoAP-based Streaming Control for IoT Applications", - "venue": "Electronics", - "volume": "Vol. 9, Article No. 9081320, pp. 1~19, August 2020", - "publishedAt": "2020-08" - }, - { - "category": "intl-journal-conf", - "title": "Agent-based In-Vehicle Infotainment Services in Internet-of-Things Environments", - "venue": "Electronics", - "volume": "Vol. 9, Article No. 9081288, pp. 1~22, August 2020", - "publishedAt": "2020-08" - }, - { - "category": "intl-journal-conf", - "title": "Partial Bicasting with Buffering for Proxy Mobile IPv6 Mobility Management in CoAP-Based IoT Networks", - "venue": "Electronics", - "volume": "Vol. 9, Article No. 9040598, pp. 1~13, April 2020", - "publishedAt": "2020-04" - }, - { - "category": "intl-journal-conf", - "title": "Distributed Identifier-Locator Mapping Management in Mobile ILNP Networks", - "venue": "Electronics", - "volume": "Vol. 9, Article No. 9010058, pp. 1~26, January 2020", - "publishedAt": "2020-01" - }, - { - "category": "domestic-journal-conf", - "title": "가시광 통신 기반 출결 관리 시스템 설계 및 구현", - "venue": "한국통신학회논문지", - "volume": "제 44권 제 7호, pp. 1381 ~ 1390, 2019년 7월 (KCI)", - "publishedAt": "2019-07", - "kci": true - }, - { - "category": "intl-journal-conf", - "title": "Mobile-Oriented Future Internet: Implementation and Experimentations over EU-Korea Testbed", - "venue": "Electronics", - "volume": "Vol. 8, Article No. 8030338, pp. 1~24, March 2019", - "publishedAt": "2019-03" - }, - { - "category": "intl-journal-conf", - "title": "IoT-Based Resource Control for In-Vehicle Infotainment Services: Design and Experimentation", - "venue": "Sensors", - "volume": "Vol. 19, Article No. s19030620, pp. 1~19, March 2019", - "publishedAt": "2019-03" - }, - { - "category": "intl-journal-conf", - "title": "CoAP-based group mobility management protocol for the Internet-of-Things in WBAN environment", - "venue": "Future Generation Computer Systems", - "volume": "Vol. 88, pp. 309~318, November 2018", - "publishedAt": "2018-11" - }, - { - "category": "intl-journal-conf", - "title": "Domain-based Distributed Identifier-Locator Mapping Management in Internet-of-Things Networks", - "venue": "International Journal of Network Management", - "volume": "Vol. 28, Issue 5 (e2035), pp. 1~13, October 2018", - "publishedAt": "2018-10" - }, - { - "category": "intl-journal-conf", - "title": "Cluster-Based Device Mobility Management in Named Data Networking for Vehicular Networks", - "venue": "Mobile Information Systems", - "volume": "Vol. 2018, pp. 1~7, Open Access Article (Article ID 1710591), August 2018", - "publishedAt": "2018-08" - }, - { - "category": "intl-journal-conf", - "title": "Device Management and Data Transport in IoT Networks Based on Visible Light Communication", - "venue": "Sensors", - "volume": "Vol. 18, Article No. s18082741, August 2018", - "publishedAt": "2018-08" - }, - { - "category": "domestic-journal-conf", - "title": "In-Vehicle Infotainment 시스템에서 Configuration Protocol의 설계 및 구현", - "venue": "한국통신학회논문지", - "volume": "제 43권 제 7호, pp. 1140 ~ 1151, 2018년 7월 (KCI)", - "publishedAt": "2018-07", - "kci": true - }, - { - "category": "intl-journal-conf", - "title": "Enhanced group communication in constrained application protocol-based Internet-of-things networks", - "venue": "International Journal of Distributed Sensor Networks", - "volume": "Vol. 14, Issue 4, pp. 1~14, April 2018", - "publishedAt": "2018-04" - }, - { - "category": "intl-journal-conf", - "title": "Reliable transmission of visible light communication data in lighting control networks", - "venue": "IET Networks", - "volume": "Vol. 6, Issue 3, pp. 62~68, May 2017 (SCOPUS)", - "publishedAt": "2017-05" - }, - { - "category": "intl-journal-conf", - "title": "Distributed CoAP Handover using Distributed Mobility Agents in Internet-of-Things Networks", - "venue": "Journal of Information and Communication Convergence Engineering", - "volume": "Vol. 15, No. 1, pp. 37~42, March 2017 (SCOPUS)", - "publishedAt": "2017-03" - }, - { - "category": "intl-journal-conf", - "title": "A hash-based distributed mapping control scheme in mobile locator-identifier separation protocol networks", - "venue": "International Journal of Network Management", - "volume": "Vol. 27, No. 2, pp. 1~13, March 2017", - "publishedAt": "2017-03" - }, - { - "category": "intl-journal-conf", - "title": "Use of Proxy Mobile IPv6 for Mobility Management in CoAP-based IoT Networks", - "venue": "IEEE Communications Letters", - "volume": "Vol. 20, No. 11, pp. 2284~2287, November 2016", - "publishedAt": "2016-11" - }, - { - "category": "intl-journal-conf", - "title": "Mobility-Aware TAC Configuration in LTE-Based Mobile Communication Systems", - "venue": "Lecture Notes in Electrical Engineering", - "volume": "Vol. 393, pp. 295~301, August 2016 (SCOPUS)", - "publishedAt": "2016-08" - }, - { - "category": "intl-journal-conf", - "title": "Inter-Domain Mobility Management Based on the Proxy Mobile IP in Mobile Networks", - "venue": "Journal of Information Processing Systems", - "volume": "Vol. 12, No. 2, pp. 196~213, June 2016 (SCOPUS)", - "publishedAt": "2016-06" - }, - { - "category": "domestic-journal-conf", - "title": "BLE 네트워크 상에서 사물인터넷 서비스 제공을 위한 CoAP과 6LoWPAN 구현", - "venue": "방송공학회논문지", - "volume": "제 21권 제 3호, pp. 298 ~ 306, 2016년 5월 (KCI)", - "publishedAt": "2016-05", - "kci": true - }, - { - "category": "intl-journal-conf", - "title": "TRILL-Based Mobile Packet Core Network for 5G Mobile Communication Systems", - "venue": "Wireless Personal Communications", - "volume": "Vol. 87, No. 1, pp. 125~144, March 2016", - "publishedAt": "2016-03" - }, - { - "category": "intl-journal-conf", - "title": "Distributed Mobility Management in 6LoWPAN-Based Wireless Sensor Networks", - "venue": "International Journal of Distributed Sensor Networks", - "volume": "Vol. 11, Issue 10, 12 pages, October 2015", - "publishedAt": "2015-10" - }, - { - "category": "domestic-journal-conf", - "title": "A Comparative Analysis of Centralized and Distributed Mobility Management in IP-Based Mobile Networks", - "venue": "Telecommunications Review", - "volume": "제 25권 제 4호, pp. 656 ~ 671, 2015년 8월 (KCI)", - "publishedAt": "2015-08", - "kci": true - }, - { - "category": "intl-journal-conf", - "title": "An ID/Locator Separation Based Group Mobility Management in Wireless Body Area Network", - "venue": "Journal of Sensors", - "volume": "Vol. 2015, Open Access Article (Article ID 537205), 12 pages, July 2015", - "publishedAt": "2015-07" - }, - { - "category": "domestic-journal-conf", - "title": "IoT(사물기반 인터넷) 기반 헬스케어 서비스: 일상 생활습관 ‧ 건강관리 중심으로", - "venue": "생명공학정책연구센터(BioINpro)", - "volume": "BioINpro 제 13호, pp. 1 ~ 12, 2015년 6월", - "publishedAt": "2015-06" - }, - { - "category": "domestic-journal-conf", - "title": "Mobility Support Using Locator-Identifier Separation Protocol in 4G Mobile Communication Networks", - "venue": "Telecommunications Review", - "volume": "제 25권 제 2호, pp. 337 ~ 355, 2015년 4월 (KCI)", - "publishedAt": "2015-04", - "kci": true - }, - { - "category": "intl-journal-conf", - "title": "Fast Device Discovery for Remote Device Management in Lighting Control Networks", - "venue": "Journal of Information Processing Systems", - "volume": "Vol. 11, No. 1, pp. 125~133, March 2015 (SCOPUS)", - "publishedAt": "2015-03" - }, - { - "category": "domestic-journal-conf", - "title": "사물인터넷 기반 헬스케어 서비스 및 플랫폼 동향", - "venue": "한국통신학회지(정보와통신)", - "volume": "제 31권 제 12호, pp. 25 ~ 30, 2014년 12월", - "publishedAt": "2014-12" - }, - { - "category": "domestic-journal-conf", - "title": "모바일 중심 미래 인터넷: OpenFlow 기반 구현 및 KOREN 테스트베드 실험", - "venue": "정보과학회논문지: 정보통신", - "volume": "제 41권 제 4호, pp. 167 ~ 176, 2014년 8월 (KCI)", - "publishedAt": "2014-08", - "kci": true - }, - { - "category": "domestic-journal-conf", - "title": "Load Balancing for Proxy Mobile IPv6 in SAE-based Mobile Networks", - "venue": "Telecommunications Review", - "volume": "제 24권 제 3호, pp. 433 ~ 448, 2014년 6월 (KCI)", - "publishedAt": "2014-06", - "kci": true - }, - { - "category": "domestic-journal-conf", - "title": "LED 기반 조명 제어를 위한 PLASA 표준 프로토콜 기술", - "venue": "조명전기설비학회지", - "volume": "제 28권 제 3호, pp. 9 ~ 21, 2014년 5월", - "publishedAt": "2014-05" - }, - { - "category": "intl-journal-conf", - "title": "Performance Analysis of Distributed Mapping System in ID/Locator Separation Architectures", - "venue": "Journal of Network and Computer Applications", - "volume": "Vol. 39, pp. 223~232, March 2014", - "publishedAt": "2014-03" - }, - { - "category": "intl-journal-conf", - "title": "A Distributed Mobility Control Scheme in LISP Networks", - "venue": "Wireless Networks", - "volume": "Vol. 20, No. 2, pp. 245~259, February 2014", - "publishedAt": "2014-02" - }, - { - "category": "intl-journal-conf", - "title": "Distributed Mapping Management of Identifiers and Locators in Mobile-Oriented Internet Environment", - "venue": "International Journal of Communication Systems", - "volume": "Vol. 27, No. 1, pp. 95~115, January 2014", - "publishedAt": "2014-01" - }, - { - "category": "intl-journal-conf", - "title": "A Network-Based Handover Scheme in HIP-Based Mobile Networks", - "venue": "Journal of Information Processing Systems", - "volume": "Vol. 9, No. 4, pp. 651~659, December 2013 (SCOPUS)", - "publishedAt": "2013-12" - }, - { - "category": "intl-journal-conf", - "title": "Distributed Mapping Management of Identifiers and Locators in LISP-based Mobile Networks", - "venue": "Wireless Personal Communications", - "volume": "Vol. 72, No. 1, pp. 565~579, September 2013", - "publishedAt": "2013-09" - }, - { - "category": "domestic-journal-conf", - "title": "5세대 이동통신에서의 네트워크 이슈", - "venue": "정보과학회지", - "volume": "제 31권 제 9호, pp. 20 ~ 26, 2013년 9월", - "publishedAt": "2013-09" - }, - { - "category": "intl-journal-conf", - "title": "Mobile Oriented Future Internet (MOFI): Architectural Design and Implementations", - "venue": "ETRI Journal", - "volume": "Vol. 35, No. 4, pp. 666~676, August 2013", - "publishedAt": "2013-08" - }, - { - "category": "domestic-journal-conf", - "title": "무선 인터넷 환경에서 SCTP 프로토콜의 성능 최적화 방안", - "venue": "Telecommunications Review", - "volume": "제 23권 제 3호, pp. 381 ~ 392, 2013년 6월 (KCI)< 무선 네트워크 환경에서 안드로이드 기반 SCTP 프로토콜의 성능 분석 정보과학회논문지: 시스템 및 이론, 제 40권 제 2호, pp. 105 ~ 110, 2013년 4월 (KCI)", - "publishedAt": "2013-06", - "kci": true - }, - { - "category": "domestic-journal-conf", - "title": "조명 제어 네트워크에서 디바이스 관리를 위한 표준 프로토콜 기술 동향", - "venue": "조명전기설비학회지", - "volume": "제 27권 제 2호, pp. 56 ~ 65, 2013년 3월", - "publishedAt": "2013-03" - }, - { - "category": "domestic-journal-conf", - "title": "ID-LOC 분리 기반 인터넷 구조에서 분산형 매핑 시스템의 구현 및 평가", - "venue": "한국통신학회논문지", - "volume": "제 37B권(네트워크 및 서비스) 제 11호, pp. 984 ~ 992, 2012년 11월 (KCI)", - "publishedAt": "2012-11", - "kci": true - }, - { - "category": "domestic-journal-conf", - "title": "이동통신 로밍 환경에서 빠른 홈망 복귀를 위한 망탐색 알고리즘", - "venue": "정보처리학회논문지", - "volume": "제 19-C권 제 2호, pp. 149 ~ 152, 2012년 4월 (KCI)", - "publishedAt": "2012-04", - "kci": true - }, - { - "category": "domestic-journal-conf", - "title": "미래 인터넷의 이동 네트워크 구조 및 연구동향", - "venue": "한국통신학회지(정보와통신)", - "volume": "제 29권 제 3호, pp. 41 ~ 48, 2012년 3월", - "publishedAt": "2012-03" - }, - { - "category": "domestic-journal-conf", - "title": "모바일 단말 환경에서 웹브라우저의 로딩속도 개선 기법", - "venue": "Telecommunications Review", - "volume": "제 22권 제 1호, pp. 139 ~ 152, 2012년 2월 (KCI)", - "publishedAt": "2012-02", - "kci": true - }, - { - "category": "intl-journal-conf", - "title": "Network-Based Distributed Mobility Control in Localized Mobile LISP Networks", - "venue": "IEEE Communications Letters", - "volume": "Vol. 16, No. 1, pp. 104~107, January 2012", - "publishedAt": "2012-01" - }, - { - "category": "intl-journal-conf", - "title": "Partial Bicasting with Buffering for Proxy Mobile IPv6 Handover in Wireless Networks", - "venue": "Journal of Information Processing Systems", - "volume": "Vol. 7, No. 4, pp. 627~634, December 2011 (SCOPUS)", - "publishedAt": "2011-12" - }, - { - "category": "domestic-journal-conf", - "title": "Binding Query를 활용한 Proxy Mobile IPv6의 성능 향상 기법", - "venue": "한국통신학회논문지", - "volume": "제 36권 제 11호(네트워크 및 융합서비스), pp. 1269 ~ 1276, 2011년 11월 (KCI)", - "publishedAt": "2011-11", - "kci": true - }, - { - "category": "domestic-journal-conf", - "title": "이동 LISP망에서 네트워크 기반 이동성 제어 기법", - "venue": "정보처리학회논문지", - "volume": "제 18-C권 제 5호, pp. 339 ~ 342, 2011년 10월 (KCI)", - "publishedAt": "2011-10", - "kci": true - }, - { - "category": "intl-journal-conf", - "title": "Distributed Mobility Control in Proxy Mobile IPv6 Networks", - "venue": "IEICE Transactions on Communications", - "volume": "Vol. E94-B, No. 8, pp. 2216~2224, August 2011", - "publishedAt": "2011-08" - }, - { - "category": "intl-journal-conf", - "title": "Adaptive Congestion Control of mSCTP for Vertical Handover Based on Bandwidth Estimation in Heterogeneous Wireless Networks", - "venue": "Wireless Personal Communications", - "volume": "Vol. 57, No. 4, pp. 707~725, April 2011", - "publishedAt": "2011-04" - }, - { - "category": "domestic-journal-conf", - "title": "MOFI: Future Internet Architecture with Address-free Hosts for Mobile Environments", - "venue": "Telecommunications Review", - "volume": "제 21권 제 2호, pp. 343 ~ 358, 2011년 4월 (KCI)", - "publishedAt": "2011-04", - "kci": true - }, - { - "category": "domestic-journal-conf", - "title": "미래 인터넷을 위한 네이밍과 어드레싱을 위한 연구", - "venue": "정보과학회지", - "volume": "제 29권 제 3호, pp. 53 ~ 65, 2011년 3월", - "publishedAt": "2011-03" - }, - { - "category": "domestic-journal-conf", - "title": "Mobile Oriented Future Internet (MOFI): Design Considerations and Architecture", - "venue": "OSIA Standards & Technology Review (ISSN:1738-9887)", - "volume": "Vol. 24, No. 1, pp. 61 ~ 77, 2011년 3월", - "publishedAt": "2011-03" - }, - { - "category": "domestic-journal-conf", - "title": "Fast Tree Join for Seamless Multicast Handover in FMIPv6-based Mobile Networks", - "venue": "Telecommunications Review", - "volume": "제 20권 제 6호, pp. 993 ~ 1003, 2010년 12월 (KCI)", - "publishedAt": "2010-12", - "kci": true - }, - { - "category": "intl-journal-conf", - "title": "Multicast Handover Agents for Fast Handover in Wireless Multicast Networks", - "venue": "IEEE Communications Letters", - "volume": "Vol. 14, No. 7, pp. 676~678, July 2010", - "publishedAt": "2010-07" - }, - { - "category": "intl-journal-conf", - "title": "Fast Selective ACK Scheme for Throughput Enhancement of Multi-Homed SCTP Hosts", - "venue": "IEEE Communications Letters", - "volume": "Vol. 14, No. 6, pp. 587~589, June 2010", - "publishedAt": "2010-06" - }, - { - "category": "intl-journal-conf", - "title": "Performance Enhancement of mSCTP for Vertical Handover across Heterogeneous Wireless Networks", - "venue": "International Journal of Communication Systems", - "volume": "Vol. 22, No. 12, pp. 1573~1591, December 2009", - "publishedAt": "2009-12" - }, - { - "category": "domestic-journal-conf", - "title": "모바일 IPTV 멀티캐스트 전송 및 서비스 기술 동향", - "venue": "정보과학회지", - "volume": "제 27권 제 8호, pp. 67 ~ 73, 2009년 8월", - "publishedAt": "2009-08" - }, - { - "category": "domestic-journal-conf", - "title": "이동통신망에서의 모바일 IPTV 표준기술", - "venue": "개방형컴퓨터통신연구회(OSIA) Standards & Technology Review", - "volume": "2009년 제 2호, pp. 49 ~ 59, 2009년 6월", - "publishedAt": "2009-06" - }, - { - "category": "intl-journal-conf", - "title": "Corruption-aware Adaptive Increase and Adaptive Decrease Algorithm for TCP Error and Congestion Controls in Wireless Networks", - "venue": "International Journal of Communication Systems", - "volume": "Vol. 22, No. 5, pp. 543~564, May 2009", - "publishedAt": "2009-05" - }, - { - "category": "domestic-journal-conf", - "title": "A Technique to Enable the Corruption-aware Transport Protocols in Realistic Networks", - "venue": "Telecommunications Review", - "volume": "제 19권 제 1호, pp. 129 ~ 137, 2009년 2월 (KCI)", - "publishedAt": "2009-02", - "kci": true - }, - { - "category": "intl-journal-conf", - "title": "Partial CRC Checksum of SCTP for Error Control over Wireless Networks", - "venue": "Wireless Personal Communications", - "volume": "Vol. 48, No. 2, pp. 247~260, January 2009", - "publishedAt": "2009-01" - }, - { - "category": "domestic-journal-conf", - "title": "A Cross-layer Approach for Throughput Enhancement in Unsteady Satellite Networks", - "venue": "Telecommunications Review", - "volume": "제 18권 제 6호, pp. 1089 ~ 1098, 2008년 12월 (KCI)", - "publishedAt": "2008-12", - "kci": true - }, - { - "category": "domestic-journal-conf", - "title": "미래인터넷 이동성 제어 프레임워크", - "venue": "Telecommunications Review", - "volume": "제 18권 제 5호, pp. 799 ~ 812, 2008년 10월 (KCI)", - "publishedAt": "2008-10", - "kci": true - }, - { - "category": "intl-journal-conf", - "title": "Analysis of Handover Latency for Mobile IPv6 and mSCTP", - "venue": "Journal of Information Processing Systems", - "volume": "Vol. 4, No. 3, pp. 87~96, September 2008 (SCOPUS)", - "publishedAt": "2008-09" - }, - { - "category": "domestic-journal-conf", - "title": "리눅스 환경에서 SCTP와 TCP 프로토콜의 성능 비교", - "venue": "한국통신학회논문지:네트워크및서비스", - "volume": "제 33권 제 8호, pp. 699 ~ 706, 2008년 8월 (KCI)", - "publishedAt": "2008-08", - "kci": true - }, - { - "category": "domestic-journal-conf", - "title": "3G-WiBro 망간 수직핸드오버를 위한 mSCTP 기법", - "venue": "정보과학회논문지:정보통신", - "volume": "제 35권 제 4호, pp. 355 ~ 365, 2008년 8월 (KCI)", - "publishedAt": "2008-08", - "kci": true - }, - { - "category": "domestic-journal-conf", - "title": "ITU-T FMC 표준화 현황 및 국내 대응방안", - "venue": "Telecommunications Review", - "volume": "제 18권 제 4호, pp. 583 ~ 592, 2008년 8월 (KCI)", - "publishedAt": "2008-08", - "kci": true - }, - { - "category": "intl-journal-conf", - "title": "mSIP: Extension of SIP for Soft Handover with Bicasting", - "venue": "IEEE Communications Letters", - "volume": "Vol. 12, No. 7, pp. 532~534, July 2008", - "publishedAt": "2008-07" - }, - { - "category": "domestic-journal-conf", - "title": "Standardization on Mobility Management Architectures and Protocols for All-IP Mobile Networks", - "venue": "Telecommunications Review", - "volume": "제 18권 제 3호, pp. 508 ~ 516, 2008년 6월 (KCI)", - "publishedAt": "2008-06", - "kci": true - }, - { - "category": "domestic-journal-conf", - "title": "ITU-T NGN-GSI 이동성 관리 표준개발 동향", - "venue": "개방형컴퓨터통신연구회(OSIA) Standards & Technology Review", - "volume": "2008년 제 1호, pp. 37 ~ 44, 2008년 3월", - "publishedAt": "2008-03" - }, - { - "category": "domestic-journal-conf", - "title": "CC-SCTP: Chunk Checksum of SCTP for Enhancement of Throughput in Wireless Network Environment", - "venue": "Telecommunications Review", - "volume": "제 17권 제 4호, pp. 690 ~ 699, 2007년 8월 (KCI)", - "publishedAt": "2007-08", - "kci": true - }, - { - "category": "domestic-journal-conf", - "title": "ITU-T SG19 이동성 관리기술 표준화 동향", - "venue": "개방형컴퓨터통신연구회(OSIA) Standards & Technology Review", - "volume": "2007년 제 2호, pp. 13 ~ 26, 2007년 6월", - "publishedAt": "2007-06" - }, - { - "category": "domestic-journal-conf", - "title": "SCTP 기반 수송계층 이동성 기술", - "venue": "정보과학회 정보통신기술(정보통신연구회)", - "volume": "제 20권 제 1호, pp. 64 ~ 79, 2007년 5월", - "publishedAt": "2007-05" - }, - { - "category": "domestic-journal-conf", - "title": "IP 핸드오버: 망기반 기법 versus 종단간 기법", - "venue": "한국통신학회지(정보와통신)", - "volume": "제 24권 제 4호, pp. 106 ~ 115, 2007년 4월", - "publishedAt": "2007-04" - }, - { - "category": "intl-journal-conf", - "title": "Chunk Checksum of SCTP for Throughput Enhancement", - "venue": "IEEE Communications Letters", - "volume": "Vol. 10, No. 11, pp. 796~798, November 2006", - "publishedAt": "2006-11" - }, - { - "category": "domestic-journal-conf", - "title": "ITU-T에서의 B3G 이동성관리 표준 기술 분석", - "venue": "Telecommunications Review", - "volume": "제 16권 제 3호, pp. 460 ~ 469, 2006년 6월 (KCI)", - "publishedAt": "2006-06", - "kci": true - }, - { - "category": "domestic-journal-conf", - "title": "멀티홈잉 기반 SCTP 성능 실험 및 비교 분석", - "venue": "정보처리학회논문지", - "volume": "제 13-C권 제 2호, pp. 235 ~ 240, 2006년 4월 (KCI)", - "publishedAt": "2006-04", - "kci": true - }, - { - "category": "intl-journal-conf", - "title": "Mobility Management Requirements and Framework for Systems Beyond IMT-2000", - "venue": "Journal of Communications and Networks", - "volume": "Vol. 7, No. 2, pp. 171~177, June 2005", - "publishedAt": "2005-06" - }, - { - "category": "intl-journal-conf", - "title": "Transport Layer Mobility Support Utilizing Link Signal Strength Information", - "venue": "IEICE Transactions on Communications", - "volume": "Vol. E87-B, No. 9, pp. 2548~2556, September 2004", - "publishedAt": "2004-09" - }, - { - "category": "domestic-journal-conf", - "title": "mSCTP를 이용한 종단간 이동성 지원 방안", - "venue": "정보과학회논문지,", - "volume": "제 31권 제 4호, pp. 393 ~ 404, 2004년 8월 (KCI)", - "publishedAt": "2004-08", - "kci": true - }, - { - "category": "intl-journal-conf", - "title": "Limiting the Length of BET for Tunnel-Based IP Fast Handover", - "venue": "IEICE Transactions on Fundamentals of Electronics Communications and Computer Sciences", - "volume": "Vol. E87-A, No. 6, pp. 1527~1530, June 2004", - "publishedAt": "2004-06" - }, - { - "category": "domestic-journal-conf", - "title": "SCTP의 멀티호밍 특성에 대한 성능 평가", - "venue": "정보처리학회논문지,", - "volume": "제11-C권 제2호, pp. 245 ~ 252, 2004년 4월 (KCI)", - "publishedAt": "2004-04", - "kci": true - }, - { - "category": "intl-journal-conf", - "title": "mSCTP for Soft Handover in Transport Layer", - "venue": "IEEE Communications Letters", - "volume": "Vol. 8, No. 3, pp. 189~191, March 2004", - "publishedAt": "2004-03" - }, - { - "category": "domestic-journal-conf", - "title": "ECTP 멀티캐스트 전송 프로토콜 : 구현 및 성능분석", - "venue": "한국통신학회논문지", - "volume": "제 28권 제 10호, pp. 876 - 890, 2003년 10월 (KCI)", - "publishedAt": "2003-10", - "kci": true - }, - { - "category": "domestic-journal-conf", - "title": "3G-WLAN 연동기술 동향", - "venue": "ETRI 전자통신동향분석", - "volume": "제 18권 4호 (통권 82호), pp. 1 - 10, 2003년 8월", - "publishedAt": "2003-08" - }, - { - "category": "domestic-journal-conf", - "title": "SCTP 표준기술 분석 및 전망", - "venue": "ETRI 전자통신동향분석", - "volume": "제 18권 3호 (통권 81호), pp. 11 - 21, 2003년 6월", - "publishedAt": "2003-06" - }, - { - "category": "domestic-journal-conf", - "title": "인터넷 멀티캐스트 현황 및 전망", - "venue": "주간기술동향", - "volume": "제 1090호, pp. 1 - 15, 2003년 4월", - "publishedAt": "2003-04" - }, - { - "category": "domestic-journal-conf", - "title": "IP 멀티캐스트 시장 전망에 대한 고찰", - "venue": "한국통신학회지(정보통신)", - "volume": "제 19권 제 10호, pp. 1577 ~ 1590, 2002년 10월", - "publishedAt": "2002-10" - }, - { - "category": "domestic-journal-conf", - "title": "Subnet Multicast for Delivery of One-to-Many Multicast Applications", - "venue": "Telecommunications Review", - "volume": "제 12권 제 5호, pp. 770 - 779, 2002년 10월 (KCI)", - "publishedAt": "2002-10", - "kci": true - }, - { - "category": "domestic-journal-conf", - "title": "인터넷방송을 위한 멀티캐스트 기술 동향", - "venue": "ETRI 전자통신동향분석", - "volume": "제 17권 3호 (통권 75호), 2002년 6월", - "publishedAt": "2002-06" - }, - { - "category": "domestic-journal-conf", - "title": "종단간 서비스품질 표준기술 동향", - "venue": "주간기술동향", - "volume": "제 1049호, 2002년 6월", - "publishedAt": "2002-06" - }, - { - "category": "domestic-journal-conf", - "title": "신뢰적인 멀티캐스트 전송 프로토콜을 위한 Top-Down 기반의 제어 트리 구축 방안", - "venue": "정보과학회논문지", - "volume": "제 28권, 4호, pp. 611 - 620, 2001년 12월 (KCI)", - "publishedAt": "2001-12", - "kci": true - }, - { - "category": "domestic-journal-conf", - "title": "종단간 멀티캐스트 전송을 위한 ECTP 표준 프로토콜", - "venue": "주간기술동향", - "volume": "제 1016호, 2001년 10월", - "publishedAt": "2001-10" - }, - { - "category": "intl-journal-conf", - "title": "Configuration of ACK Trees for Multicast Transport Protocols", - "venue": "ETRI Journal", - "volume": "Vol. 23, No. 3, pp. 111~120, September 2001", - "publishedAt": "2001-09" - }, - { - "category": "domestic-journal-conf", - "title": "Enhanced Core Based Tree for Many-to-Many IP Multicasting", - "venue": "Telecommunications Review", - "volume": "제 11권 제 3호, pp. 485 - 493, 2001년 6월 (KCI)", - "publishedAt": "2001-06", - "kci": true - }, - { - "category": "domestic-journal-conf", - "title": "멀티캐스팅 프로토콜의 트리구성에 관한 성능평가 및 분석", - "venue": "한국통신학회논문지", - "volume": "제 26권 제 5호, pp. 738 - 744, 2001년 5월 (KCI)", - "publishedAt": "2001-05", - "kci": true - }, - { - "category": "intl-journal-conf", - "title": "Assignment of ADM Rings and DCS Mesh in Telecommunication Networks", - "venue": "Journal of the O.R. Society", - "volume": "Vol. 52, No. 4, pp. 440~448, April 2001", - "publishedAt": "2001-04" - }, - { - "category": "intl-journal-conf", - "title": "Multicast Delivery Based on Unicast and Subnet Multicast", - "venue": "IEEE Communications Letters", - "volume": "Vol. 5, No. 4, pp. 181~183, April 2001", - "publishedAt": "2001-04" - }, - { - "category": "domestic-journal-conf", - "title": "인터넷 멀티캐스트 신기술 동향", - "venue": "ETRI 전자통신동향분석", - "volume": "제 16권 제 2호, pp. 1-9, 2001년 4월", - "publishedAt": "2001-04" - }, - { - "category": "intl-journal-conf", - "title": "Dynamic Bandwidth Allocation Scheme for Multiple Real-time VBR Videos over ATM Networks", - "venue": "Telecommunications Systems", - "volume": "Vol. 15, pp.359~380, December 2000", - "publishedAt": "2000-12" - }, - { - "category": "domestic-journal-conf", - "title": "차세대 인터넷 멀티캐스팅 기술 동향", - "venue": "한국통신학회지(정보통신)", - "volume": "제 17권 제 9호, pp. 168-187, 2000년 9월", - "publishedAt": "2000-09" - }, - { - "category": "domestic-journal-conf", - "title": "인터넷 멀티캐스트 라우팅 기술 동향", - "venue": "ETRI 전자통신동향분석", - "volume": "제 15권 제 3호, pp. 28-41, 2000년 6월", - "publishedAt": "2000-06" - }, - { - "category": "domestic-journal-conf", - "title": "멀티캐스트 신뢰전송 기술 및 표준화 동향", - "venue": "주간기술동향", - "volume": "제 944호, pp. 16 - 33, 2000년 5월", - "publishedAt": "2000-05" - }, - { - "category": "domestic-journal-conf", - "title": "인터넷 전화 시장 및 표준화 동향", - "venue": "ETRI 전자통신동향분석", - "volume": "제15권 2호, pp. 1 - 14, 2000년 4월호", - "publishedAt": "2000-04" - }, - { - "category": "intl-journal-conf", - "title": "Minimizing Cost and Delay in Shared Multicast Trees", - "venue": "ETRI Journal", - "volume": "Vol. 22, No. 1, pp.30~37, March 2000", - "publishedAt": "2000-03" - }, - { - "category": "domestic-journal-conf", - "title": "액티브 네트워크 구조상에서 공동작업 응용을 위한 성능 향상 기법", - "venue": "한국통신학회논문지", - "volume": "Vol. 24, No. 12B, pp. 2283 - 2291, 1999년 12월 (KCI)", - "publishedAt": "1999-12", - "kci": true - }, - { - "category": "domestic-journal-conf", - "title": "다자간 멀티미디어 응용의 멀티캐스트 통신환경을 위한 통합관리 플랫폼", - "venue": "한국통신학회논문지", - "volume": "Vol. 24, No. 12B, pp. 2262 - 2274, 1999년 12월 (KCI)", - "publishedAt": "1999-12", - "kci": true - }, - { - "category": "domestic-journal-conf", - "title": "ATM 기반 MPLS 공중망에서의 IP 전송기술", - "venue": "한국통신학회지(정보통신)", - "volume": "Vol. 16, No. 12, pp. 47 - 58, 1999년 12월", - "publishedAt": "1999-12" - }, - { - "category": "domestic-journal-conf", - "title": "공중 ATM 망에서의 IP 전송기술 동향", - "venue": "주간기술동향", - "volume": "924호, pp. 15 - 29, 1999년 12월", - "publishedAt": "1999-12" - }, - { - "category": "domestic-journal-conf", - "title": "A Control of Channel Rate for Real-time VBR Video Transmission", - "venue": "한국경영과학회논문지", - "volume": "제 24권 제 3호, pp. 63 - 72, 9월, 1999. (KCI)", - "publishedAt": "1999-09", - "kci": true - }, - { - "category": "intl-journal-conf", - "title": "Non-Core Based Shared Tree Architecture for IP Multicasting", - "venue": "Electronics Letters", - "volume": "Vol. 35, No. 11, pp. 872~873, May 1999", - "publishedAt": "1999-05" - }, - { - "category": "domestic-journal-conf", - "title": "인터넷 멀티캐스트 라우팅 프로토콜 분석", - "venue": "ETRI 전자통신동향분석", - "volume": "99년 10월호, pp. 99 - 110, 1999.", - "publishedAt": "1999" - }, - { - "category": "domestic-journal-conf", - "title": "멀티캐스트 전송을 위한 오류제어 기법의 분류", - "venue": "ETRI 전자통신동향분석", - "volume": "99년 6월호, pp. 76 - 84, 1999.", - "publishedAt": "1999" - }, - { - "category": "intl-journal-conf", - "title": "A Design of the Self-Healing ATM Networks Based on the Backup Virtual Path", - "venue": "Computers and Operations Research", - "volume": "Vol. 25, No. 7/8, pp. 595~609, July 1998", - "publishedAt": "1998-07" - }, - { - "category": "intl-journal-conf", - "title": "A Design of the Minimum Cost Ring-Chain Network with Dual-Homing Survivability: Tabu Search Approach", - "venue": "Computers and Operations Research", - "volume": "Vol. 24, No. 9, pp. 883~897, September 1997", - "publishedAt": "1997-09" - }, - { - "category": "domestic-journal-conf", - "title": "Design of Survivable Communication Networks with High Connectivity Constraints", - "venue": "한국경영과학회논문지", - "volume": "Vol. 22, No. 3, pp. 59-80, September, 1997. (KCI)", - "publishedAt": "1997-09", - "kci": true - }, - { - "category": "intl-journal-conf", - "title": "A Tabu Search for the Survivable Fiber Optic Communication Network Design", - "venue": "Computers and Industrial Engineering", - "volume": "Vol. 28, Issue 4, pp. 689~700, October 1995", - "publishedAt": "1995-10" - }, - { - "category": "domestic-journal-conf", - "title": "Heuristic Aspects of the Branch and Bound Procedure For a Job Scheduling Problem", - "venue": "대한산업공학회지", - "volume": "Vol. 18, No. 2, 141-147, 1992. (KCI)", - "publishedAt": "1992", - "kci": true - } -]; - -export const patents: Patent[] = [ - { - "category": "patent", - "title": "국내 지역별 태양광 발전량 및 전력 단가 예측 웹 서비스 제공 장치 및 그 방법", - "inventors": "고석주, 김경훈, 김나현, 정수인, 홍일표", - "applicationNo": "2025-0200788", - "applicationAt": "2025-12-16", - "country": "한국", - "publishedAt": "2025-12" - }, - { - "category": "patent", - "title": "사물인터넷 네트워크 환경에서 QUIC 기반으로 CoAP 메시지를 중계하는 시스템", - "inventors": "고석주, 정중화, 남혜빈, 최동규, 김민지", - "applicationNo": "2023-0180751", - "applicationAt": "2023-12-13", - "registrationNo": "2963109", - "registrationAt": "2026-05-06", - "country": "한국", - "publishedAt": "2023-12" - }, - { - "category": "patent", - "title": "엣지 컴퓨팅을 위한 사물인터넷 서비스 시스템", - "inventors": "고석주, 정중화, 남혜빈, 최동규", - "applicationNo": "2023-0161365", - "applicationAt": "2023-11-20", - "country": "한국", - "publishedAt": "2023-11" - }, - { - "category": "patent", - "title": "무선 네트워크 환경에서 핸드오버 및 커넥션 마이그레이션을 지원하는 장치 및 방법", - "inventors": "고석주, 김소용, 모닙 고하르, 최동규", - "applicationNo": "2023-0063455", - "applicationAt": "2023-05-17", - "country": "한국", - "publishedAt": "2023-05" - }, - { - "category": "patent", - "title": "제한된 통신 환경에서 브로커 서버를 이용한 스마트 약상자 제어 시스템 및 방법", - "inventors": "고석주, 김근수, 김철민, 김경식, 나재욱, 박진호", - "applicationNo": "2020-0164156", - "applicationAt": "2020-11-30", - "registrationNo": "2384614", - "registrationAt": "2022-04-05", - "country": "한국", - "publishedAt": "2020-11" - }, - { - "category": "patent", - "title": "단방향 가시광 통신 환경에서 데이터 전송 신뢰성 개선을 위한 방법 및 이를 이용한 하이브리드", - "inventors": "고석주, 김소용, 최동규, 남혜빈, 정중화, 김창묵", - "applicationNo": "2020-0164152", - "applicationAt": "2020-11-30", - "registrationNo": "2420614", - "registrationAt": "2022-07-08", - "country": "한국", - "publishedAt": "2020-11" - }, - { - "category": "patent", - "title": "사물 인터넷 서비스를 제공하기 위한 QUIC-Proxy를 이용한 데이터 전달 방법 및 장치", - "inventors": "고석주, 김소용, 최동규, 남혜빈, 정중화", - "applicationNo": "2020-0164141", - "applicationAt": "2020-11-30", - "registrationNo": "2345473", - "registrationAt": "2021-12-27", - "country": "한국", - "publishedAt": "2020-11" - }, - { - "category": "patent", - "title": "금연구역 관리 서비스 방법 및 시스템", - "inventors": "고석주, 이정우, 이용호, 권오상, 정서영, 김경식", - "applicationNo": "2020-0101365", - "applicationAt": "2020-08-12", - "registrationNo": "2375686", - "registrationAt": "2022-03-14", - "country": "한국", - "publishedAt": "2020-08" - }, - { - "category": "patent", - "title": "사물 인터넷 환경에서 CoAP 기반의 데이터 스트리밍 방법 및 통신 시스템", - "inventors": "고석주, 정중화, 최동규, 남혜빈, 이채현", - "applicationNo": "2020-0094058", - "applicationAt": "2020-07-28", - "registrationNo": "2375703", - "registrationAt": "2022-03-14", - "country": "한국", - "publishedAt": "2020-07" - }, - { - "category": "patent", - "title": "인공지능 기반 적외선 카메라 센싱 시스템 및 방법", - "inventors": "고석주, 홍성기, 김희원, 박명훈, 권민철", - "applicationNo": "2019-0174964", - "applicationAt": "2019-12-26", - "country": "한국", - "publishedAt": "2019-12" - }, - { - "category": "patent", - "title": "폭력 행위 관리 시스템 및 방법", - "inventors": "고석주, 김동욱, 윤서원, 구영준, 성경화, 경예지", - "applicationNo": "2019-0122161", - "applicationAt": "2019-10-02", - "registrationNo": "2264275", - "registrationAt": "2021-06-07", - "country": "한국", - "publishedAt": "2019-10" - }, - { - "category": "patent", - "title": "차량 인포테인먼트 관리 시스템", - "inventors": "고석주, 최동규, 정중화, 남혜빈, 손종명", - "applicationNo": "2019-0120044", - "applicationAt": "2019-09-27", - "registrationNo": "2410024", - "registrationAt": "2022-06-13", - "country": "한국", - "publishedAt": "2019-09" - }, - { - "category": "patent", - "title": "차량 인포테인먼트 마스터 장치 및 이를 포함하는 차량 인포테인먼트 통합 관리 시스템", - "inventors": "고석주, 최동규, 정중화, 남혜빈, 신호경", - "applicationNo": "2019-0059551", - "applicationAt": "2019-05-21", - "registrationNo": "2251310", - "registrationAt": "2021-05-06", - "country": "한국", - "publishedAt": "2019-05" - }, - { - "category": "patent", - "title": "CoAP 기반의 센싱 정보 스트리밍 방법", - "inventors": "고석주, 최동규, 정중화, 남혜빈", - "applicationNo": "2018-0168580", - "applicationAt": "2018-12-24", - "country": "한국", - "publishedAt": "2018-12" - }, - { - "category": "patent", - "title": "이미지에서 기계학습 기법을 활용한 특정 부품영역 탐지 방법", - "inventors": "고석주, 김대기, 김동인, 방종원, 우진철, 정중화", - "applicationNo": "2018-0167974", - "applicationAt": "2018-12-21", - "country": "한국", - "publishedAt": "2018-12" - }, - { - "category": "patent", - "title": "블록체인 기반의 재정장부 관리 시스템", - "inventors": "고석주, 신승민, 서상민, 송동훈, 최효선, 그레고즈 리뼤시치", - "applicationNo": "2018-0167970", - "applicationAt": "2018-12-21", - "country": "한국", - "publishedAt": "2018-12" - }, - { - "category": "patent", - "title": "블록체인을 이용한 게임정보 처리 방법", - "inventors": "고석주, 정재훈, 서창호, 노경환, 원응호", - "applicationNo": "2018-0167951", - "applicationAt": "2018-12-21", - "country": "한국", - "publishedAt": "2018-12" - }, - { - "category": "patent", - "title": "가시광 통신을 이용한 서비스 제공 시스템 및 그 방법", - "inventors": "고석주, 김철민, 김소용, 모닙고하르", - "applicationNo": "2018-0155013", - "applicationAt": "2018-12-05", - "country": "한국", - "publishedAt": "2018-12" - }, - { - "category": "patent", - "title": "차량 인포테인먼트 시스템", - "inventors": "고석주, 최동규, 정중화, 정민우", - "applicationNo": "2018-0083515", - "applicationAt": "2018-07-18", - "country": "한국", - "publishedAt": "2018-07" - }, - { - "category": "patent", - "title": "CoAP 기반의 사물인터넷 기술을 이용한 센서 관리 방법 및 이를 이용한 시스템", - "inventors": "고석주, 최동규, 정중화, 정민우", - "applicationNo": "2018-0082485", - "applicationAt": "2018-07-16", - "registrationNo": "2071974", - "registrationAt": "2020-01-23", - "country": "한국", - "publishedAt": "2018-07" - }, - { - "category": "patent", - "title": "가시광 통신을 이용한 무선 인터넷 비밀번호 관리 시스템 및 방법", - "inventors": "김소용, 김철민, 고석주", - "applicationNo": "2018-0082463", - "applicationAt": "2018-07-16", - "country": "한국", - "publishedAt": "2018-07" - }, - { - "category": "patent", - "title": "시각 장애인을 위한 가시광 통신 기반의 교통 신호 전달 시스템 및 방법", - "inventors": "권경동, 금동우, 황지영, 채윤창, 김철민, 김소용, 고석주", - "applicationNo": "2018-0079319", - "applicationAt": "2018-07-09", - "country": "한국", - "publishedAt": "2018-07" - }, - { - "category": "patent", - "title": "데이터 전달 장치, 방법과 그를 이용한 사물 인터넷 시스템, 데이터 전달 방법을 실행하기 위한 프로그램이", - "inventors": "고석주, 최동규, 정중화", - "applicationNo": "2017-0153908", - "applicationAt": "2017-11-17", - "registrationNo": "1969652", - "registrationAt": "2019-04-10", - "country": "한국", - "publishedAt": "2017-11" - }, - { - "category": "patent", - "title": "분산된 게시-구독 기법을 이용한 CoAP 기반 사물 인터넷 시스템의 작동 방법", - "inventors": "고석주, 정중화, 최동규", - "applicationNo": "2017-0153357", - "applicationAt": "2017-11-16", - "registrationNo": "2031726", - "registrationAt": "2019-10-07", - "country": "한국", - "publishedAt": "2017-11" - }, - { - "category": "patent", - "title": "비콘 기반 식당 정보 서비스 시스템 및 방법", - "inventors": "고석주, 안창준, 김혜경, 송명근, 최예찬, 허동", - "applicationNo": "2017-0087265", - "applicationAt": "2017-07-10", - "country": "한국", - "publishedAt": "2017-07" - }, - { - "category": "patent", - "title": "사물 인터넷 네트워크에서의 모바일 단말 이동성 제어 장치 및 방법", - "inventors": "고석주, 최상일", - "applicationNo": "2017-0064039", - "applicationAt": "2017-05-24", - "registrationNo": "1847081", - "registrationAt": "2018-04-03", - "country": "한국", - "publishedAt": "2017-05" - }, - { - "category": "patent", - "title": "데이터 전달 장치, 방법 및 그를 이용한 사물인터넷 시스템", - "inventors": "고석주, 정중화, 강형우, 최동규", - "applicationNo": "2016-0175882", - "applicationAt": "2016-12-21", - "registrationNo": "1972470", - "registrationAt": "2019-04-19", - "country": "한국", - "publishedAt": "2016-12" - }, - { - "category": "patent", - "title": "저전력 근거리 통신을 이용한 개인 정보 교환 방법 및 시스템, 이를 수행하기 위한 기록매체", - "inventors": "고석주, 김지인, 김지희, 김송아, 박지혜, 이승일, 서대화", - "applicationNo": "2016-0157411", - "applicationAt": "2016-11-24", - "registrationNo": "1784309", - "registrationAt": "2017-09-27", - "country": "한국", - "publishedAt": "2016-11" - }, - { - "category": "patent", - "title": "가시광 통신 기기 관리 방법 및 장치 (with 유양디앤유)", - "inventors": "김상옥, 유병오, 윤상호, 노승완, 고석주, 최상일", - "applicationNo": "2016-0157606", - "applicationAt": "2016-11-24", - "country": "한국", - "publishedAt": "2016-11" - }, - { - "category": "patent", - "title": "가시광 통신 방법 및 장치 (with 유양디앤유)", - "inventors": "김상옥, 유병오, 윤상호, 노승완, 고석주, 최상일", - "applicationNo": "2016-0157576", - "applicationAt": "2016-11-24", - "country": "한국", - "publishedAt": "2016-11" - }, - { - "category": "patent", - "title": "이동 단말 및 관리 서버의 제어 방법", - "inventors": "고석주, 최상일", - "applicationNo": "2016-0051126", - "applicationAt": "2016-04-26", - "registrationNo": "1836116", - "registrationAt": "2018-03-02", - "country": "한국", - "publishedAt": "2016-04" - }, - { - "category": "patent", - "title": "무선 통신을 이용한 범용 안내 서비스 제공 방법 및 시스템", - "inventors": "고석주, 장호영, 이종훈, 박찬석, 서민영", - "applicationNo": "2016-0013614", - "applicationAt": "2016-02-03", - "registrationNo": "1716661", - "registrationAt": "2017-03-09", - "country": "한국", - "publishedAt": "2016-02" - }, - { - "category": "patent", - "title": "디지털 도어락 시스템 및 그 제어 방법", - "inventors": "고석주, 권다영, 노혜성, 이수정", - "applicationNo": "2015-0163735", - "applicationAt": "2015-11-23", - "registrationNo": "1814555", - "registrationAt": "2017-12-27", - "country": "한국", - "publishedAt": "2015-11" - }, - { - "category": "patent", - "title": "무인 지상차량을 이용한 주차차량 관리 시스템", - "inventors": "김인한, 권혜련, 이은섭, 고석주", - "applicationNo": "2015-0008735", - "applicationAt": "2015-01-19", - "country": "한국", - "publishedAt": "2015-01" - }, - { - "category": "patent", - "title": "ESL 신호를 이용하는 측위 방법, 이를 수행하기 위한 기록 매체, 단말기 및 시스템", - "inventors": "고석주, 김지인, 이민형, 김종근, 박지수, 조정근, 이승일, 서대화", - "applicationNo": "2014-0180037", - "applicationAt": "2014-12-15", - "registrationNo": "1596320", - "registrationAt": "2016-02-16", - "country": "한국", - "publishedAt": "2014-12" - }, - { - "category": "patent", - "title": "ESL 신호를 이용하여 위치 기반 서비스를 제공하는 스마트 장치", - "inventors": "고석주, 김지인, 이민형, 김종근, 박지수, 조정근, 이승일, 서대화", - "applicationNo": "2014-0180036", - "applicationAt": "2014-12-15", - "country": "한국", - "publishedAt": "2014-12" - }, - { - "category": "patent", - "title": "3차원 형상 복원을 위한 볼륨 카빙 장치 및 그 방법", - "inventors": "고석주, 하태윤, 서대화, 정귀영, 이상은, 김지인, 김한별", - "applicationNo": "2014-0167063", - "applicationAt": "2014-11-27", - "country": "한국", - "publishedAt": "2014-11" - }, - { - "category": "patent", - "title": "립모션 기기를 이용한 수화 번역 시스템 및 그 방법", - "inventors": "고석주, 조재현, 서대화, 이동훈, 이상은, 김지인, 하대규", - "applicationNo": "2014-0166166", - "applicationAt": "2014-11-26", - "country": "한국", - "publishedAt": "2014-11" - }, - { - "category": "patent", - "title": "립모션 기기의 수화 번역 정확도 향상을 위한 수화 번역 시스템 및 그 방법", - "inventors": "고석주, 조재현, 서대화, 이동훈, 이상은, 김지인, 하대규", - "applicationNo": "2014-0166165", - "applicationAt": "2014-11-26", - "country": "한국", - "publishedAt": "2014-11" - }, - { - "category": "patent", - "title": "저전력 근거리 통신을 이용한 개인 정보 교환 방법 및 시스템, 이를 수행하기 위한 기록매체", - "inventors": "고석주, 김지희, 서대화, 박지혜, 이승일, 김지인, 김송아", - "applicationNo": "2014-0164802", - "applicationAt": "2014-11-24", - "country": "한국", - "publishedAt": "2014-11" - }, - { - "category": "patent", - "title": "차량 분산 방법 및 장치, 이를 수행하기 위한 기록매체", - "inventors": "고석주, 김지인, 엄진욱, 김민규, 홍석진, 배정규, 서대화", - "applicationNo": "2014-0161975", - "applicationAt": "2014-11-19", - "registrationNo": "1612047", - "registrationAt": "2016-04-06", - "country": "한국", - "publishedAt": "2014-11" - }, - { - "category": "patent", - "title": "신규 액세스 포인트의 위치 인식 방법 및 이를 이용하는 서버", - "inventors": "고석주, 김우주, 이민형, 하태윤, 심대섭, 조정근, 강보영, 서대화", - "applicationNo": "2013-0167207", - "applicationAt": "2013-12-30", - "registrationNo": "1568365", - "registrationAt": "2015-11-05", - "country": "한국", - "publishedAt": "2013-12" - }, - { - "category": "patent", - "title": "디바이스 탐색 장치 및 디바이스 탐색 방법", - "inventors": "고석주, 이상헌, 최상일", - "applicationNo": "2013-0140737", - "applicationAt": "2013-11-19", - "registrationNo": "1405248", - "registrationAt": "2015-04-17", - "country": "한국", - "publishedAt": "2013-11" - }, - { - "category": "patent", - "title": "오픈플로우 통신 시스템 및 방법", - "inventors": "고석주, 김지인, 최낙중", - "applicationNo": "2013-0140736", - "applicationAt": "2013-11-19", - "registrationNo": "1525047", - "registrationAt": "2015-05-27", - "country": "한국", - "publishedAt": "2013-11" - }, - { - "category": "patent", - "title": "이동통신 시스템의 추적 영역 코드 구성 장치 및 방법", - "inventors": "고석주, 강형우, 백태산, 강현구", - "applicationNo": "2013-0140734", - "applicationAt": "2013-11-19", - "registrationNo": "1538453", - "registrationAt": "2015-07-15", - "country": "한국", - "publishedAt": "2013-11" - }, - { - "category": "patent", - "title": "프로세스 모니터링과 키보드 잠금을 이용한 프로세스 관리 방법 및 프로세스 관리 장치", - "inventors": "고석주, 박진호, 이재휘", - "applicationNo": "2013-0108587", - "applicationAt": "2013-09-10", - "registrationNo": "1515493", - "registrationAt": "2015-04-21", - "country": "한국", - "publishedAt": "2013-09" - }, - { - "category": "patent", - "title": "공유기 탐지 장치 및 공유기 탐지 방법", - "inventors": "고석주, 박진호, 김철민", - "applicationNo": "2013-0091483", - "applicationAt": "2013-08-01", - "country": "한국", - "publishedAt": "2013-08" - }, - { - "category": "patent", - "title": "호스트 식별 프로토콜 네트워크 환경의 통신 시스템 및 방법", - "inventors": "고석주, 최상일", - "applicationNo": "2012-0154836", - "applicationAt": "2012-12-27", - "registrationNo": "1405248", - "registrationAt": "2014-06-02", - "country": "한국", - "publishedAt": "2012-12" - }, - { - "category": "patent", - "title": "액세스 라우터 및 그를 이용한 핸드오버 제어 방법", - "inventors": "고석주, 최낙중, 김지인", - "applicationNo": "2012-0154835", - "applicationAt": "2012-12-27", - "registrationNo": "1447104", - "registrationAt": "2014-09-26", - "country": "한국", - "publishedAt": "2012-12" - }, - { - "category": "patent", - "title": "호스트 식별 프로토콜 네트워크 환경의 이동통신 시스템 및 방법", - "inventors": "고석주, 김지인, 이상헌", - "applicationNo": "2012-0146740", - "applicationAt": "2012-12-14", - "registrationNo": "1459628", - "registrationAt": "2014-11-03", - "country": "한국", - "publishedAt": "2012-12" - }, - { - "category": "patent", - "title": "라우터의 호스트 위치 관리 방법", - "inventors": "고석주, 김지인", - "applicationNo": "2012-0030058", - "applicationAt": "2012-03-23", - "registrationNo": "1356721", - "registrationAt": "2014-01-20", - "country": "한국", - "publishedAt": "2012-03" - }, - { - "category": "patent", - "title": "분산형 구조를 이용한 데이터 통신 방법", - "inventors": "고석주, 모닙고하르, 이재경", - "applicationNo": "2011-0111384", - "applicationAt": "2011-10-28", - "registrationNo": "1311864", - "registrationAt": "2013-09-17", - "country": "한국", - "publishedAt": "2011-10" - }, - { - "category": "patent", - "title": "라우터, 그것을 포함하는 통신 네트워크 시스템 및 그것의 이동성 제어 방법", - "inventors": "고석주, 최상일", - "applicationNo": "2011-0107533", - "applicationAt": "2011-10-20", - "registrationNo": "1329331", - "registrationAt": "2013-11-07", - "country": "한국", - "publishedAt": "2011-10" - }, - { - "category": "patent", - "title": "모바일 액세스 게이트웨이 및 이를 이용한 이동성 제어 방법", - "inventors": "고석주, 김지인", - "applicationNo": "2011-0057608", - "applicationAt": "2011-06-14", - "registrationNo": "1223047", - "registrationAt": "2013-01-10", - "country": "한국", - "publishedAt": "2011-06" - }, - { - "category": "patent", - "title": "멀티홈잉 환경에서 프록시 모바일 인터넷 프로토콜을 사용하는 이동통신 시스템 및 그것의 핸드오버 방법", - "inventors": "고석주, 김지인", - "applicationNo": "2011-0001905", - "applicationAt": "2011-01-07", - "registrationNo": "1189140", - "registrationAt": "2012-10-02", - "country": "한국", - "publishedAt": "2011-01" - }, - { - "category": "patent", - "title": "멀티캐스트 방법 및 억세스 게이트웨이", - "inventors": "고석주, 모닙고하르, 이재경", - "applicationNo": "2010-0137897", - "applicationAt": "2010-12-29", - "registrationNo": "1200407", - "registrationAt": "2012-11-06", - "country": "한국", - "publishedAt": "2010-12" - }, - { - "category": "patent", - "title": "프록시 모바일 인터넷 프로토콜을 사용하는 이동통신 시스템 및 그것의 핸드오버 방법", - "inventors": "고석주, 김지인", - "applicationNo": "2010-0108058", - "applicationAt": "2010-11-02", - "registrationNo": "1258238", - "registrationAt": "2013-04-19", - "country": "한국", - "publishedAt": "2010-11" - }, - { - "category": "patent", - "title": "이동 단말, 통신 네트워크 및 그것의 이동성 제어 방법", - "inventors": "고석주, 최상일", - "applicationNo": "2010-0107701", - "applicationAt": "2010-11-01", - "registrationNo": "1177354", - "registrationAt": "2012-08-21", - "country": "한국", - "publishedAt": "2010-11" - }, - { - "category": "patent", - "title": "빠른 핸드오버를 지원하기 위한 이동통신 시스템 및 방법", - "inventors": "고석주, 모닙고하르, 박재완", - "applicationNo": "2010-0039688", - "applicationAt": "2010-04-28", - "registrationNo": "1091397", - "registrationAt": "2011-12-01", - "country": "한국", - "publishedAt": "2010-04" - }, - { - "category": "patent", - "title": "이동 단말간 데이터 전송 시스템 및 그 방법", - "inventors": "고석주, 권순홍", - "applicationNo": "2009-0048797", - "applicationAt": "2009-06-02", - "registrationNo": "1078156", - "registrationAt": "2011-10-24", - "country": "한국", - "publishedAt": "2009-06" - }, - { - "category": "patent", - "title": "프록시 모바일 IPv6망내 이동단말간 통신 경로 최적화 시스템 및 그 방법", - "inventors": "고석주, 김지인", - "applicationNo": "2009-0048796", - "applicationAt": "2009-06-02", - "country": "한국", - "publishedAt": "2009-06" - }, - { - "category": "patent", - "title": "이종 무선망간 수직 핸드오버를 위한 이동 SCTP의 적응적 혼잡 제어 방법 및 장치", - "inventors": "고석주, 김동필", - "applicationNo": "2009-0013072", - "applicationAt": "2009-02-17", - "registrationNo": "1048251", - "registrationAt": "2011-07-04", - "country": "한국", - "publishedAt": "2009-02" - }, - { - "category": "patent", - "title": "서비스 품질 향상을 위한 PR-SCTP 기반 실시간 멀티미디어 데이터 전송 방법", - "inventors": "고석주, 김상태", - "applicationNo": "2008-0135342", - "applicationAt": "2008-12-29", - "registrationNo": "1040780", - "registrationAt": "2011-06-03", - "country": "한국", - "publishedAt": "2008-12" - }, - { - "category": "patent", - "title": "이종 무선망간의 수직적 핸드오버를 위한 데이터 전송 방법 및 장치", - "inventors": "고석주, 김동필", - "applicationNo": "2008-0083995", - "applicationAt": "2008-08-27", - "registrationNo": "0980592", - "registrationAt": "2010-08-31", - "country": "한국", - "publishedAt": "2008-08" - }, - { - "category": "patent", - "title": "무선통신용 멀티캐스트 핸드오버 방법", - "inventors": "고석주, 박재성", - "applicationNo": "2008-0077918", - "applicationAt": "2008-08-08", - "country": "한국", - "publishedAt": "2008-08" - }, - { - "category": "patent", - "title": "무선 인터넷 망에서의 바이캐스팅을 이용한 SIP 핸드오버 방법 및 이동 단말", - "inventors": "고석주, 이동화", - "applicationNo": "2008-0052456", - "applicationAt": "2008-06-04", - "registrationNo": "0987555", - "registrationAt": "2010-10-06", - "country": "한국", - "publishedAt": "2008-06" - }, - { - "category": "patent", - "title": "무선 인터넷 환경에서의 바이캐스팅 기반 SCTP 핸드오버 방법 및 이동 단말", - "inventors": "고석주, 권순홍, 김동필", - "applicationNo": "2008-0049203", - "applicationAt": "2008-05-27", - "registrationNo": "0980582", - "registrationAt": "2010-08-31", - "country": "한국", - "publishedAt": "2008-05" - }, - { - "category": "patent", - "title": "Proxy MIP 기반 무선 인터넷 망에서의 바이캐스팅을 이용한 핸드오버 방법 및 장치", - "inventors": "고석주, 김지인", - "applicationNo": "2008-0049153", - "applicationAt": "2008-05-27", - "country": "한국", - "publishedAt": "2008-05" - }, - { - "category": "patent", - "title": "윈도우 기반의 이동 단말에서 SCTPLIB를 이용한 mSCTP 핸드오버 방법", - "inventors": "김용진, 고석주, 이동화, 김상태", - "applicationNo": "2007-0139730", - "applicationAt": "2007-12-28", - "country": "한국", - "publishedAt": "2007-12" - }, - { - "category": "patent", - "title": "전송 처리율 향상을 위한 SCTP 우선경로 설정 방법", - "inventors": "고석주, 주수경", - "applicationNo": "2007-0102031", - "applicationAt": "2007-10-10", - "country": "한국", - "publishedAt": "2007-10" - }, - { - "category": "patent", - "title": "무선 네트워크에서 패킷의 손상정보를 사용하는 TCP 혼잡제어 방법", - "inventors": "고석주, 최린, 이동화, 김용진", - "applicationNo": "2007-0061209", - "applicationAt": "2007-06-21", - "registrationNo": "0870619", - "registrationAt": "2008-11-19", - "country": "한국", - "publishedAt": "2007-06" - }, - { - "category": "patent", - "title": "이동 단말의 SCTP 핸드오버와 모바일 아이피의 연동 장치 및 그 방법", - "inventors": "고석주, 김동필", - "applicationNo": "2007-0050648", - "applicationAt": "2007-05-25", - "registrationNo": "0880112", - "registrationAt": "2009-01-15", - "country": "한국", - "publishedAt": "2007-05" - }, - { - "category": "patent", - "title": "청크첵섬을 사용하는 무선 인터넷 에스씨티피 송수신 시스템 및 방법", - "inventors": "김용진, 정종일, 고석주", - "applicationNo": "2006-0117121", - "applicationAt": "2006-11-24", - "registrationNo": "0780921", - "registrationAt": "2007-11-23", - "country": "한국", - "publishedAt": "2006-11" - }, - { - "category": "patent", - "title": "데이터 링크계층의 링크 정보를 이용하여 핸드오버를 수행하는 단말장치", - "inventors": "고석주, 김동필", - "applicationNo": "2005-0110213", - "applicationAt": "2005-11-17", - "registrationNo": "0685740", - "registrationAt": "2007-02-15", - "country": "한국", - "publishedAt": "2005-11" - }, - { - "category": "patent", - "title": "SCTP 기반의 핸드오버 기능을 구비한 단말장치 및 핸드오버 방법", - "inventors": "고석주, 김동필", - "applicationNo": "US 11-915457 (미국, 2007.11.26)", - "applicationAt": "2005-05-27", - "registrationNo": "US 8,644,248 (미국, 2014.2.4)", - "registrationAt": "2007-01-26", - "country": "한국", - "publishedAt": "2005-05" - } -]; diff --git a/refer_landing_page/content/standards.ts b/refer_landing_page/content/standards.ts deleted file mode 100644 index 4d53dbf..0000000 --- a/refer_landing_page/content/standards.ts +++ /dev/null @@ -1,387 +0,0 @@ -// AUTO-GENERATED by backend/cmd/export-content — DO NOT EDIT BY HAND -import { StandardsBody } from "./types"; - -export const standardsBodies: StandardsBody[] = [ - { - "org": "IEC TC100", - "full": "Multimedia Systems and Equipment", - "scope": "international", - "period": "2018 ~ Present", - "role": "Convenor", - "projects": [ - { - "wg": "WG12", - "name": "Multimedia Systems and Equipment for Metaverse (IEC 63614)", - "documents": [ - { - "title": "Multimedia Systems and Equipment for Metaverse - Part 1: Genaral", - "ref": "IEC TR 63614-1 (May 2026)", - "status": "TR", - "publishedAt": "2026-05" - }, - { - "title": "Multimedia Systems and Equipment for Metaverse - Part 2: Classification", - "ref": "IEC TS 63614-2 (May 2026)", - "status": "TS", - "publishedAt": "2026-05" - }, - { - "title": "Multimedia Systems and Equipment for Metaverse - Part 3: Gap Analysis", - "ref": "IEC TR 63614-3 (March 2026)", - "status": "TR", - "publishedAt": "2026-03" - }, - { - "title": "Multimedia Systems and Equipment for Metaverse - Part 4: AI Use Cases", - "ref": "IEC WDTR 63614-4 (In Progress)", - "status": "InProgress" - } - ] - }, - { - "wg": "WG11(Convenor)", - "name": "User's QoE for Multimedia Conference Services (IEC 63478)", - "documents": [ - { - "title": "User's QoE for Multimedia Conference Services - Part 1: General", - "ref": "IEC TR 63478-1 (November 2023)", - "status": "TR", - "publishedAt": "2023-11" - }, - { - "title": "User's QoE for Multimedia Conference Services - Part 2: Requirments", - "ref": "IEC IS 63478-2 (October 2025)", - "status": "IS", - "publishedAt": "2025-10" - }, - { - "title": "User's QoE for Multimedia Conference Services - Part 3: Measurement Methods", - "ref": "IEC CDV 63478-3 (In Progress)", - "status": "InProgress" - } - ] - }, - { - "wg": "WG30(TA17)", - "name": "Infotainment Services for Public Vehicles (IEC 63479)", - "documents": [ - { - "title": "Infotainment Services for Public Vehicles (PVIS) - Part 1: General", - "ref": "IEC TR 63479-1 (November 2023)", - "status": "TR", - "publishedAt": "2023-11" - }, - { - "title": "Infotainment Services for Public Vehicles (PVIS) - Part 2: Requirements", - "ref": "IEC IS 63479-2 (February 2026)", - "status": "IS", - "publishedAt": "2026-02" - }, - { - "title": "Infotainment Services for Public Vehicles (PVIS) - Part 3: Framework", - "ref": "IEC IS 63479-3 (January 2026)", - "status": "IS", - "publishedAt": "2026-01" - } - ] - }, - { - "wg": "WG30(TA17)", - "name": "Configurable Car Infotainment Services (IEC 63246)", - "documents": [ - { - "title": "Configurable Car Infotainment Services (CCIS) - Part 1: General", - "ref": "IEC 63246-1 (August 2021)", - "status": "IS", - "publishedAt": "2021-08" - }, - { - "title": "Configurable Car Infotainment Services (CCIS) - Part 2: Requirements", - "ref": "IEC 63246-2 (January 2022)", - "status": "IS", - "publishedAt": "2022-01" - }, - { - "title": "Configurable Car Infotainment Services (CCIS) - Part 3: Framework", - "ref": "IEC 63246-3 (January 2022)", - "status": "IS", - "publishedAt": "2022-01" - }, - { - "title": "Configurable Car Infotainment Services (CCIS) - Part 4: Protocol", - "ref": "IEC TR 63246-4 (December 2022)", - "status": "TR", - "publishedAt": "2022-12" - } - ] - } - ] - }, - { - "org": "ISO/IEC JTC1/SC41", - "full": "Internet of Things and Digital Twin", - "scope": "international", - "period": "2020 ~ Present", - "projects": [ - { - "wg": "WG", - "name": "(WG5) IoT-based Management of Tangible Cultural Heritage Assets (ISO/IEC TR 30189)", - "documents": [ - { - "title": "Part 1: Framework", - "ref": "ISO/IEC TR 30189-1 (March 2025)", - "status": "TR", - "publishedAt": "2025-03" - }, - { - "title": "Part 2: Use Cases", - "ref": "ISO/IEC CDTR 30189-2 (In Progress)", - "status": "InProgress" - } - ] - } - ] - }, - { - "org": "ITU-T SG20", - "full": "IoT Services based on VLC", - "scope": "international", - "period": "2018 ~ 2020", - "projects": [ - { - "wg": "Main", - "name": "IoT Services based on VLC", - "documents": [ - { - "title": "Framework of IoT Services based on Visible Light Communications (VLC)", - "ref": "ITU-T Recommendation Y.4465 (January 2020)", - "status": "IS", - "publishedAt": "2020-01" - }, - { - "title": "Functional Architecture for IoT Services based on VLC", - "ref": "ITU-T Recommendation Y.4474 (August 2020)", - "status": "IS", - "publishedAt": "2020-08" - } - ] - } - ] - }, - { - "org": "TTA/PG425", - "full": "가시광 통신 기반 사물인터넷 서비스", - "scope": "domestic", - "period": "2018 ~ 2020", - "projects": [ - { - "wg": "Main", - "name": "가시광 통신 기반 사물인터넷 서비스", - "documents": [ - { - "title": "가시광 통신 기반 사물인터넷 서비스 - 제 1 부: 네트워크 모델 및 요구사항", - "ref": "TTAK.KO-10.1158-part1 (2019년 12월)", - "status": "IS", - "publishedAt": "2019-12" - }, - { - "title": "가시광 통신 기반 사물인터넷 서비스 - 제 2 부: 프레임워크", - "ref": "TTAK.KO-10.1158-part2 (2020년 12월)", - "status": "IS", - "publishedAt": "2020-12" - }, - { - "title": "가시광 통신 기반 사물인터넷 서비스 - 제 3 부: 프로토콜", - "ref": "TTAK.KO-10.1158-part3 (2020년 12월)", - "status": "IS", - "publishedAt": "2020-12" - } - ] - } - ] - }, - { - "org": "ITU-T SG13", - "full": "Mobility Management", - "scope": "international", - "period": "2002 ~ 2012", - "projects": [ - { - "wg": "Main", - "name": "Mobility Management", - "documents": [ - { - "title": "NNI Mobility Management Requirements for SBI2K", - "ref": "ITU-T Supplement to Recommendation Q.Sup52 (December 2004)", - "status": "IS", - "publishedAt": "2004-12" - }, - { - "title": "Mobility Management Requirements for Next-Generation Networks", - "ref": "ITU-T Recommendation Q.1706/Y.2801 (July 2006)", - "status": "IS", - "publishedAt": "2006-07" - }, - { - "title": "Framework of IPv6 Multi-homing for NGN", - "ref": "ITU-T Recommendation Y.2052 (Feb. 2008)", - "status": "IS", - "publishedAt": "2008-02" - }, - { - "title": "Generic Framework of Mobility Management for Next-Generation Networks", - "ref": "ITU-T Recommendation Q.1707/Y.2804 (Feb. 2008)", - "status": "IS", - "publishedAt": "2008-02" - }, - { - "title": "Framework of Location Management for Next-Generation Networks", - "ref": "ITU-T Recommendation Q.1708/Y.2805 (October 2008)", - "status": "IS", - "publishedAt": "2008-10" - }, - { - "title": "Framework of Handover Control for Next-Generation Networks", - "ref": "ITU-T Recommendation Q.1709/Y.2806 (October 2008)", - "status": "IS", - "publishedAt": "2008-10" - }, - { - "title": "Framework of Mobility Management in Service Stratum for NGN", - "ref": "ITU-T Recommendation Y.2809 (November 2011)", - "status": "IS", - "publishedAt": "2011-11" - } - ] - } - ] - }, - { - "org": "ISO/IEC JTC1/SC6", - "full": "WG7: Network and Transport", - "scope": "international", - "period": "2000 ~ 2014", - "projects": [ - { - "wg": "Enhanced Communication Transport Protocol (ECTP)", - "name": "ISO/IEC 14476", - "documents": [ - { - "title": "ECTP-1: Specification of Simplex Multicast Transport", - "ref": "ITU-T Recommendation X.606 (October 2001) ISO/IEC IS 14476-1 (April 2002)", - "status": "IS", - "publishedAt": "2001-10" - }, - { - "title": "ECTP-2: Specification of QoS Management for Simplex Multicast Transport", - "ref": "ITU-T Recommendation X.606.1 (February 2003) ISO/IEC IS 14476-2 (June 2003)", - "status": "IS", - "publishedAt": "2003-02" - }, - { - "title": "ECTP-3: Specification of Duplex Multicast Transport", - "ref": "ITU-T Recommendation X.607 (February 2007) ISO/IEC IS 14476-3 (August 2008)", - "status": "IS", - "publishedAt": "2007-02" - }, - { - "title": "ECTP-4: Specification of QoS Management for Duplex Multicast Transport", - "ref": "ITU-T Recommendation X.607.1 (November 2008) ISO/IEC IS 14476-4 (April 2010)", - "status": "IS", - "publishedAt": "2008-11" - }, - { - "title": "ECTP-5: Specification of N-plex Multicast Transport", - "ref": "ITU-T Recommendation X.608 (February 2007) ISO/IEC IS 14476-5 (August 2008)", - "status": "IS", - "publishedAt": "2007-02" - }, - { - "title": "ECTP-6: Specification of QoS Management for N-plex Multicast Transport", - "ref": "ITU-T Recommendation X.608.1 (November 2008) ISO/IEC IS 14476-6 (April 2010)", - "status": "IS", - "publishedAt": "2008-11" - } - ] - }, - { - "wg": "Relayed Multicast Protocol (RMCP)", - "name": "ISO/IEC 16512", - "documents": [ - { - "title": "RMCP-1: Framework", - "ref": "ITU-T Recommendation X.603 (April 2004) ISO/IEC IS 16512-1", - "status": "IS", - "publishedAt": "2004-04" - }, - { - "title": "RMCP-2: Specification of Simplex Group Applications", - "ref": "ITU-T Recommendation X.603.1 (February 2007) ISO/IEC IS 16512-2", - "status": "IS", - "publishedAt": "2007-02" - }, - { - "title": "RMCP-3: Specification of N-plex Group Applications", - "ref": "ITU-T Recommendation X.603.2 (September 2010) ISO/IEC IS 16512-3", - "status": "IS", - "publishedAt": "2010-09" - } - ] - }, - { - "wg": "Mobile Multicast Communications (MMC)", - "name": "ISO/IEC 24793", - "documents": [ - { - "title": "MMC-1: MMC Framework", - "ref": "ITU-T Recommendation X.604 (March 2010) ISO/IEC IS 24793-1", - "status": "IS", - "publishedAt": "2010-03" - }, - { - "title": "MMC-2: MMC Protocol over Native IP Multicast Networks", - "ref": "ITU-T Recommendation X.604.1 (March 2010) ISO/IEC IS 24793-2", - "status": "IS", - "publishedAt": "2010-03" - }, - { - "title": "MMC-3: MMC Protocol over Overlay Multicast Networks", - "ref": "ITU-T Recommendation X.604.2 (September 2010) ISO/IEC IS 24793-3", - "status": "IS", - "publishedAt": "2010-09" - } - ] - }, - { - "wg": "Future Network", - "name": "Problem Statement and Requirements (FN-PSR): ISO/IEC TR 29181", - "documents": [ - { - "title": "Part 1: Overall Aspects", - "ref": "ISO/IEC TR 29181-1 (September 2012)", - "status": "TR", - "publishedAt": "2012-09" - }, - { - "title": "Part 2: Naming and Addressing", - "ref": "ISO/IEC TR 29181-2 (December 2014)", - "status": "TR", - "publishedAt": "2014-12" - }, - { - "title": "Part 3: Switching and Routing", - "ref": "ISO/IEC TR 29181-3 (April 2013)", - "status": "TR", - "publishedAt": "2013-04" - }, - { - "title": "Part 4: Mobility", - "ref": "ISO/IEC TR 29181-4 (December 2013)", - "status": "TR", - "publishedAt": "2013-12" - } - ] - } - ] - } -];