자율차경로정보 (수집)

자율차 경로 정보를 수집합니다.

1. 자율차경로정보 (vehicleRoute)

토픽 정보

토픽 명
데이터 타입
Partiton 수
Replication factor 수

autocar_vehicleroute_collect_json

JSON

1

1

연계 주기

경로 생성 시, 변경 시

데이터 포맷

데이터 예시

{
  "dttm": "20240723143000",
  "routeId": "SC-20250410-1426-001",
  "vehicleId": "99370",
  "routeType": "1",
  "linkIdList": [
    "2090021601",
    "2090021602",
    "2090021700",
    "2090021800"
  ],
  "pointList": [
    {
      "latitude": 37.450675,
      "longitude": 126.791891
    },
    {
      "latitude": 37.451675,
      "longitude": 126.792891
    },
    {
      "latitude": 37.452675,
      "longitude": 126.793891
    }
  ],
  "start_spot": {
    "latitude": 37.450675,
    "longitude": 126.791891
  },
  "arvl_spot": {
    "latitude": 37.452675,
    "longitude": 126.793891
  }
}

2. 참고 사항

Kafka 공통 가이드의 "Producer 연결 예시" 를 참조하셔서 데이터를 해당 토픽으로 전달해주시면 됩니다.

Last updated