-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbusdata2.py
42 lines (34 loc) · 995 Bytes
/
busdata2.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
from pykafka import KafkaClient
import json
from datetime import datetime
import uuid
import time
# READ COORDINATES FROM GEOJSON
with open('./data/bus2.json') as file:
json_array = json.load(file)
coordinates = json_array['features'][0]['geometry']['coordinates']
# GENERATE_UUID
def generate_uuid():
return uuid.uuid4()
# KAFKA PRODUCER
client = KafkaClient(hosts="localhost:9092")
topic = client.topics['geodata_final']
producer = topic.get_sync_producer()
# CONSTRUCT MESSAGE
data = {}
data['busline'] = '00002'
def generate_checkpoint(coordinates):
i = 0
while i < len(coordinates):
data['key'] = f"{data['busline']}_{str(generate_uuid())}"
data['timestamp'] = str(datetime.utcnow())
data['latitude'] = coordinates[i][1]
data['longitude'] = coordinates[i][0]
message = json.dumps(data)
producer.produce(message.encode('ascii'))
time.sleep(1)
if i == len(coordinates)-1:
i = 0
else:
i += 1
generate_checkpoint(coordinates)