Browse Source

testing 'test_0731' for generate_signal.py. finished until 4.

master
김선중 1 year ago
parent
commit
9156211538
50 changed files with 24783 additions and 8854 deletions
  1. BIN
      Scripts/__pycache__/generate_signals.cpython-312.pyc
  2. BIN
      Scripts/__pycache__/preprocess_daily.cpython-312.pyc
  3. +20
    -20
      Scripts/generate_signals.py
  4. +5
    -5
      Scripts/preprocess_daily.py
  5. +262
    -22
      analysis/0725_main_test/1_make_tables.ipynb
  6. +20
    -7
      analysis/0725_main_test/4_use_class_pd.ipynb
  7. +2060
    -2948
      analysis/0725_main_test/6_use_class_gs.ipynb
  8. +4
    -4
      analysis/0730_fetch_tables/TC_IF_TOD_DAY_PLAN.csv
  9. +2
    -2
      analysis/0730_fetch_tables/TC_IF_TOD_HOLIDAY_PLAN.csv
  10. +4
    -4
      analysis/0730_fetch_tables/TC_IF_TOD_RED_YELLO.csv
  11. +1
    -1
      analysis/0730_fetch_tables/TC_IF_TOD_WEEK_PLAN.csv
  12. +11100
    -580
      analysis/0730_fetch_tables/TL_IF_SIGL.csv
  13. +52
    -0
      analysis/0730_fetch_tables/TL_IF_SIGL_CYCL.csv
  14. +1
    -1
      analysis/0730_fetch_tables/TM_FA_CRSRD.csv
  15. +2
    -2
      analysis/0730_fetch_tables/fetch_tables.py
  16. +0
    -13
      configs/config_test_0729.json
  17. +13
    -0
      configs/config_test_0731.json
  18. +0
    -3
      test_0729/data/tables/TC_IF_TOD_HOLIDAY_PLAN.csv
  19. +0
    -581
      test_0729/data/tables/TL_IF_SIGL.csv
  20. +0
    -4650
      test_0729/data/tables/TL_IF_SIGL_CYCL.csv
  21. +0
    -1
      test_0729/intermediates/ids.json
  22. +0
    -0
      test_0731/data/networks/new_sungnam_network_internal_target_0721.net.xml
  23. +0
    -0
      test_0731/data/networks/sn.net.xml
  24. +0
    -0
      test_0731/data/networks/sn.rou.xml
  25. +4
    -4
      test_0731/data/tables/TC_IF_TOD_DAY_PLAN.csv
  26. +3
    -0
      test_0731/data/tables/TC_IF_TOD_HOLIDAY_PLAN.csv
  27. +4
    -4
      test_0731/data/tables/TC_IF_TOD_RED_YELLO.csv
  28. +1
    -1
      test_0731/data/tables/TC_IF_TOD_WEEK_PLAN.csv
  29. +11101
    -0
      test_0731/data/tables/TL_IF_SIGL.csv
  30. +53
    -0
      test_0731/data/tables/TL_IF_SIGL_CYCL.csv
  31. +0
    -0
      test_0731/data/tables/angle.csv
  32. +0
    -0
      test_0731/data/tables/coord.csv
  33. +0
    -0
      test_0731/data/tables/inter_info.csv
  34. +6
    -0
      test_0731/data/tables/inter_node.csv
  35. +0
    -0
      test_0731/data/tables/nema.csv
  36. +0
    -0
      test_0731/data/tables/plan.csv
  37. +0
    -0
      test_0731/data/tables/turn_type.csv
  38. +0
    -0
      test_0731/data/tables/turn_type_modified.csv
  39. +0
    -0
      test_0731/data/tables/u_condition.csv
  40. +0
    -0
      test_0731/data/tables/uturn.csv
  41. +58
    -0
      test_0731/intermediates/ids.json
  42. +0
    -0
      test_0731/intermediates/isa2move.json
  43. +0
    -0
      test_0731/intermediates/isa2move.pkl
  44. +0
    -0
      test_0731/intermediates/isp2move.pkl
  45. +0
    -0
      test_0731/intermediates/match1.csv
  46. +0
    -0
      test_0731/intermediates/match6.csv
  47. +0
    -0
      test_0731/intermediates/matching.csv
  48. +0
    -0
      test_0731/intermediates/node2init.json
  49. +7
    -1
      test_0731/intermediates/node2num_cycles.json
  50. +0
    -0
      test_0731/results/issues_preprocess_daily.txt

BIN
Scripts/__pycache__/generate_signals.cpython-312.pyc View File


BIN
Scripts/__pycache__/preprocess_daily.cpython-312.pyc View File


+ 20
- 20
Scripts/generate_signals.py View File

@ -4,7 +4,7 @@ import numpy as np
import os, sys, json, argparse, pickle
import sumolib, traci
from tqdm import tqdm
from datetime import datetime, timezone
from datetime import datetime, timedelta
class SignalGenerator():
def __init__(self, config_name='test_0721', file_net = 'sn.net.xml', month=7, day=22, hour=9, minute=25):
@ -30,7 +30,8 @@ class SignalGenerator():
self.issues = []
self.midnight = int(datetime(2024, self.month, self.day, 0, 0, 0).timestamp())
self.next_day = int(datetime(2024, self.month, self.day+1, 0, 0, 0).timestamp())
self.next_day = int((datetime(2024, self.month, self.day, 0, 0, 0) + timedelta(days=1)).timestamp())
# self.next_day = int(datetime(2024, self.month, self.day+1, 0, 0, 0).timestamp())
self.fsecs = range(self.midnight, self.next_day, 5) # fsecs : unix time by Five SECondS
self.fmins = range(self.midnight, self.next_day, 300) # fmins : unix time by Five MINuteS
@ -41,6 +42,16 @@ class SignalGenerator():
self.adder = 600 # 10분 : '현재시점 + 10분'에 가상신호를 생성하기 위함.
self.subtractor = 1800 # 30분 : '현재시점 - 30분'의 신호이력을 가져온다.
# id 목록
with open(os.path.join(self.path_intermediates, 'ids.json'), 'r') as file:
ids = json.load(file)
self.inter_nos = ids['inter_nos']
self.node_ids = ids['node_ids']
self.parent_ids = ids['parent_ids']
self.child_ids = ids['child_ids']
self.uturn_ids = ids['uturn_ids']
self.coord_ids = ids['coord_ids']
# 1. 데이터 준비
def prepare_data(self):
print("1. 데이터를 준비합니다.")
@ -131,7 +142,7 @@ class SignalGenerator():
self.match1 = self.match1.rename(columns=rename_cname)
self.match6 = self.match6.rename(columns=rename_cname)
elif self.config_name == 'test_0729':
elif self.config_name == 'test_0731':
# 모든 컬럼에 대하여 데이터타입 지정
loading_dtype_1 = {
'CRSRD_ID':int, 'FRST_REG_DT':str, 'LAST_MDFCN_DT':str,
@ -167,8 +178,8 @@ class SignalGenerator():
self.history = self.history.rename(columns={'OCRN_DT':'end_unix', 'CRSRD_ID':'inter_no'})
self.history = self.history.rename(columns={f'RING{alph}_PHASE{i}':f'dura_{alph}{i}' for alph in ['A', 'B'] for i in range(1,9)})
self.history = self.history.drop(columns='FRST_REG_DT')
self.history['end_unix'] = pd.to_datetime(self.history['end_unix'])
self.history['end_unix'] = self.history['end_unix'].astype(int) // 10**9
self.history['end_unix'] = self.history['end_unix'].apply(lambda x:int(datetime.strptime(x, '%Y-%m-%d %H:%M:%S').timestamp()))
self.history = self.history[self.history.inter_no.isin(self.inter_nos)]
# 신호계획 전처리
self.plan = self.plan.rename(columns={'hh':'start_hour', 'mm':'start_minute'})
@ -243,16 +254,6 @@ class SignalGenerator():
# 1-5. 보조 딕셔너리, 데이터프레임, 리스트 등 만들기
def prepare_auxiliaries(self):
# id 목록
with open(os.path.join(self.path_intermediates, 'ids.json'), 'r') as file:
ids = json.load(file)
self.inter_nos = ids['inter_nos']
self.node_ids = ids['node_ids']
self.parent_ids = ids['parent_ids']
self.child_ids = ids['child_ids']
self.uturn_ids = ids['uturn_ids']
self.coord_ids = ids['coord_ids']
# inter2node : a dictionary that maps inter_no to the node_id
inter_node_p = self.inter_node[self.inter_node.inter_type=='parent']
self.inter2node = dict(zip(inter_node_p['inter_no'], inter_node_p['node_id']))
@ -560,7 +561,8 @@ class SignalGenerator():
new_rows = pd.DataFrame({'inter_no':[inter_no] * len(durations), 'start_unix':[start_unix] * len(durations),
'phas_A':phas_As, 'phas_B':phas_Bs, 'duration':durations})
self.hrhists.append(new_rows)
self.hrhists = pd.concat(self.hrhists)
self.hrhists = pd.concat(self.hrhists).reset_index(drop=True)
self.hrhists['start_unix'] = self.hrhists['start_unix'].astype(int)
# self.hrhists = self.hrhists.sort_values(by = ['start_unix', 'inter_no', 'phas_A', 'phas_B']).reset_index(drop=True)
# 3. 이동류정보 전처리
@ -612,7 +614,7 @@ class SignalGenerator():
except FileNotFoundError:
self.movement = movement
elif self.config_name == 'test_0729':
elif self.config_name == 'test_0731':
self.movement = pd.read_csv(os.path.join(self.path_tables, 'TL_IF_SIGL.csv'))
self.movement = self.movement.drop(columns=['FRST_REG_DT', 'RINGA_FLOW', 'RINGB_FLOW'])
self.movement = self.movement.rename(columns={
@ -726,9 +728,7 @@ class SignalGenerator():
new_histid.at[i, 'node_id'] = child_id
new_histids.append(new_histid)
new_histids = pd.concat(new_histids)
self.histids = pd.concat([self.histid.copy(), new_histids])
self.histids = pd.concat([self.histid.copy(), *new_histids])
self.histids = self.histids.sort_values(by=['start_unix', 'node_id', 'phas_A', 'phas_B']).reset_index(drop=True)
self.histids = self.histids[['inter_no', 'node_id', 'start_unix', 'phas_A', 'phas_B', 'move_A', 'move_B', 'duration', 'state_A', 'state_B']]

+ 5
- 5
Scripts/preprocess_daily.py View File

@ -113,7 +113,7 @@ class DailyPreprocessor():
self.angle = pd.read_csv(os.path.join(self.path_tables, 'TN_IF_SIGL_FLOW.csv'), dtype=loading_dtype)
elif self.config_name == 'test_0729':
elif self.config_name == 'test_0731':
self.alphs = ['A', 'B']
loading_dtype_1 = {'CRSRD_ID':int, 'CYCL':int, 'DAY':int,
'FRI_PLAN_NO':int, 'HOUR':int, 'LAST_MDFCN_DT':str,
@ -156,9 +156,8 @@ class DailyPreprocessor():
self.inter_nos = [int(x) for x in sorted(self.inter_info.inter_no.unique())]
elif self.config_name == 'test_0721':
self.inter_nos = [int(x) for x in sorted(self.inter_info.CRSRD_ID.unique())]
elif self.config_name == 'test_0729':
elif self.config_name == 'test_0731':
self.inter_nos = [int(x) for x in sorted(self.inter_info.inter_no.unique())]
self.node_ids = sorted(self.inter_node.node_id.unique())
print("1-2. 테이블들이 로드되었습니다.")
@ -348,7 +347,7 @@ class DailyPreprocessor():
self.plan[f'yellow_A{j}'] = yel_A
self.plan[f'yellow_B{j}'] = yel_B
elif self.config_name == 'test_0729':
elif self.config_name == 'test_0731':
# 컬럼명 변경
rename_cname_1 = {'CRSRD_ID':'inter_no', 'CYCL':'cycle', 'DAY':'DD',
'HOUR':'hh', 'MIN':'mm', 'MNTH':'MM',
@ -405,6 +404,7 @@ class DailyPreprocessor():
self.child_ids = sorted(self.inter_node[self.inter_node.inter_type=='child'].node_id.unique())
self.uturn_ids = sorted(self.uturn.child_id.unique())
self.coord_ids = sorted(self.coord.child_id.unique())
self.node_ids = self.parent_ids + self.child_ids
# node2inter : node_id to inter_no
self.node2inter = dict(zip(self.inter_node['node_id'], self.inter_node['inter_no']))
@ -433,7 +433,7 @@ class DailyPreprocessor():
'coord_ids' : self.coord_ids,
'inter_nos' : self.inter_nos}
with open(os.path.join(self.path_intermediates, 'ids.json'), 'w') as file:
json.dump(self.ids, file)
json.dump(self.ids, file, indent=4)
angle_A = self.angle[self.angle.ring_type=='A']
angle_B = self.angle[self.angle.ring_type=='B']

+ 262
- 22
analysis/0725_main_test/1_make_tables.ipynb View File

@ -21,9 +21,9 @@
"source": [
"path_root = os.path.dirname(os.path.dirname(os.path.abspath('.')))\n",
"path_raw = os.path.join(path_root, 'data', 'tables', '20240729') # 원본 테이블 위치\n",
"path_table = os.path.join(path_root, 'test_0729', 'data', 'tables') # 만들 테이블 위치\n",
"path_intermediates = os.path.join(path_root, 'test_0729', 'intermediates') # match1을 저장할 위치\n",
"path_net = os.path.join(path_root, 'test_0729', 'data', 'networks', 'new_sungnam_network_internal_target_0721.net.xml') # 네트워크 위치\n",
"path_table = os.path.join(path_root, 'test_0731', 'data', 'tables') # 만들 테이블 위치\n",
"path_intermediates = os.path.join(path_root, 'test_0731', 'intermediates') # match1을 저장할 위치\n",
"path_net = os.path.join(path_root, 'test_0731', 'data', 'networks', 'new_sungnam_network_internal_target_0721.net.xml') # 네트워크 위치\n",
"net = sumolib.net.readNet(path_net)"
]
},
@ -1175,19 +1175,6 @@
"cell_type": "code",
"execution_count": 13,
"metadata": {},
"outputs": [],
"source": [
"# angle = angle[['inter_no', 'move_no', 'STOS_NO', 'angle_code']]\n",
"\n",
"inter_info.to_csv(os.path.join(path_table, 'inter_info.csv'), index=False)\n",
"inter_node.to_csv(os.path.join(path_table, 'inter_node.csv'), index=False)\n",
"angle.to_csv(os.path.join(path_table, 'angle.csv'), index=False)"
]
},
{
"cell_type": "code",
"execution_count": 14,
"metadata": {},
"outputs": [
{
"data": {
@ -1277,7 +1264,7 @@
},
{
"cell_type": "code",
"execution_count": 15,
"execution_count": 14,
"metadata": {},
"outputs": [
{
@ -1356,7 +1343,7 @@
"4 106238 513193 513190 left"
]
},
"execution_count": 15,
"execution_count": 14,
"metadata": {},
"output_type": "execute_result"
}
@ -1409,7 +1396,7 @@
},
{
"cell_type": "code",
"execution_count": 16,
"execution_count": 15,
"metadata": {},
"outputs": [],
"source": [
@ -1419,7 +1406,7 @@
},
{
"cell_type": "code",
"execution_count": 17,
"execution_count": 16,
"metadata": {},
"outputs": [],
"source": [
@ -1434,7 +1421,7 @@
},
{
"cell_type": "code",
"execution_count": 18,
"execution_count": 17,
"metadata": {},
"outputs": [],
"source": [
@ -1443,10 +1430,263 @@
"u_condition.to_csv(os.path.join(path_table, 'u_condition.csv'), index=False)"
]
},
{
"cell_type": "code",
"execution_count": 18,
"metadata": {},
"outputs": [
{
"data": {
"text/html": [
"<div>\n",
"<style scoped>\n",
" .dataframe tbody tr th:only-of-type {\n",
" vertical-align: middle;\n",
" }\n",
"\n",
" .dataframe tbody tr th {\n",
" vertical-align: top;\n",
" }\n",
"\n",
" .dataframe thead th {\n",
" text-align: right;\n",
" }\n",
"</style>\n",
"<table border=\"1\" class=\"dataframe\">\n",
" <thead>\n",
" <tr style=\"text-align: right;\">\n",
" <th></th>\n",
" <th>parent_id</th>\n",
" <th>child_id</th>\n",
" <th>adj_inc_edge_id</th>\n",
" <th>adj_out_edge_id</th>\n",
" <th>inc_edge_id</th>\n",
" <th>out_edge_id</th>\n",
" </tr>\n",
" </thead>\n",
" <tbody>\n",
" <tr>\n",
" <th>0</th>\n",
" <td>106231</td>\n",
" <td>109295</td>\n",
" <td>513136</td>\n",
" <td>513135</td>\n",
" <td>519797</td>\n",
" <td>519796</td>\n",
" </tr>\n",
" <tr>\n",
" <th>1</th>\n",
" <td>106234</td>\n",
" <td>109296</td>\n",
" <td>513152</td>\n",
" <td>513151</td>\n",
" <td>519799</td>\n",
" <td>519798</td>\n",
" </tr>\n",
" <tr>\n",
" <th>2</th>\n",
" <td>106234</td>\n",
" <td>109297</td>\n",
" <td>513156</td>\n",
" <td>513155</td>\n",
" <td>519801</td>\n",
" <td>519800</td>\n",
" </tr>\n",
" <tr>\n",
" <th>6</th>\n",
" <td>108769</td>\n",
" <td>109333</td>\n",
" <td>513862</td>\n",
" <td>513863</td>\n",
" <td>519873</td>\n",
" <td>519874</td>\n",
" </tr>\n",
" <tr>\n",
" <th>14</th>\n",
" <td>109986</td>\n",
" <td>107587</td>\n",
" <td>517054</td>\n",
" <td>512766</td>\n",
" <td>516929</td>\n",
" <td>517055</td>\n",
" </tr>\n",
" <tr>\n",
" <th>15</th>\n",
" <td>109986</td>\n",
" <td>109313</td>\n",
" <td>513841</td>\n",
" <td>513840</td>\n",
" <td>519834</td>\n",
" <td>519833</td>\n",
" </tr>\n",
" </tbody>\n",
"</table>\n",
"</div>"
],
"text/plain": [
" parent_id child_id adj_inc_edge_id adj_out_edge_id inc_edge_id out_edge_id\n",
"0 106231 109295 513136 513135 519797 519796\n",
"1 106234 109296 513152 513151 519799 519798\n",
"2 106234 109297 513156 513155 519801 519800\n",
"6 108769 109333 513862 513863 519873 519874\n",
"14 109986 107587 517054 512766 516929 517055\n",
"15 109986 109313 513841 513840 519834 519833"
]
},
"execution_count": 18,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"uturn"
]
},
{
"cell_type": "code",
"execution_count": 19,
"metadata": {},
"outputs": [
{
"data": {
"text/html": [
"<div>\n",
"<style scoped>\n",
" .dataframe tbody tr th:only-of-type {\n",
" vertical-align: middle;\n",
" }\n",
"\n",
" .dataframe tbody tr th {\n",
" vertical-align: top;\n",
" }\n",
"\n",
" .dataframe thead th {\n",
" text-align: right;\n",
" }\n",
"</style>\n",
"<table border=\"1\" class=\"dataframe\">\n",
" <thead>\n",
" <tr style=\"text-align: right;\">\n",
" <th></th>\n",
" <th>inter_no</th>\n",
" <th>node_id</th>\n",
" <th>inter_type</th>\n",
" </tr>\n",
" </thead>\n",
" <tbody>\n",
" <tr>\n",
" <th>0</th>\n",
" <td>436</td>\n",
" <td>109836</td>\n",
" <td>parent</td>\n",
" </tr>\n",
" <tr>\n",
" <th>1</th>\n",
" <td>437</td>\n",
" <td>109986</td>\n",
" <td>parent</td>\n",
" </tr>\n",
" <tr>\n",
" <th>2</th>\n",
" <td>438</td>\n",
" <td>106350</td>\n",
" <td>parent</td>\n",
" </tr>\n",
" <tr>\n",
" <th>3</th>\n",
" <td>442</td>\n",
" <td>106332</td>\n",
" <td>parent</td>\n",
" </tr>\n",
" <tr>\n",
" <th>4</th>\n",
" <td>443</td>\n",
" <td>108769</td>\n",
" <td>parent</td>\n",
" </tr>\n",
" <tr>\n",
" <th>5</th>\n",
" <td>455</td>\n",
" <td>109901</td>\n",
" <td>parent</td>\n",
" </tr>\n",
" <tr>\n",
" <th>6</th>\n",
" <td>456</td>\n",
" <td>106231</td>\n",
" <td>parent</td>\n",
" </tr>\n",
" <tr>\n",
" <th>7</th>\n",
" <td>457</td>\n",
" <td>106234</td>\n",
" <td>parent</td>\n",
" </tr>\n",
" <tr>\n",
" <th>8</th>\n",
" <td>458</td>\n",
" <td>106238</td>\n",
" <td>parent</td>\n",
" </tr>\n",
" </tbody>\n",
"</table>\n",
"</div>"
],
"text/plain": [
" inter_no node_id inter_type\n",
"0 436 109836 parent\n",
"1 437 109986 parent\n",
"2 438 106350 parent\n",
"3 442 106332 parent\n",
"4 443 108769 parent\n",
"5 455 109901 parent\n",
"6 456 106231 parent\n",
"7 457 106234 parent\n",
"8 458 106238 parent"
]
},
"execution_count": 19,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"inter_node"
]
},
{
"cell_type": "code",
"execution_count": 20,
"metadata": {},
"outputs": [],
"source": [
"new_rows = []\n",
"for row in uturn.itertuples():\n",
" parent_id = row.parent_id\n",
" child_id = row.child_id\n",
" inter_no = node2inter[parent_id]\n",
" new_row = pd.DataFrame({'inter_no':[inter_no], 'node_id':[child_id], 'inter_type':['child']})\n",
" new_rows.append(new_row)\n",
"inter_node = pd.concat([inter_node, *new_rows]).reset_index(drop=True)"
]
},
{
"cell_type": "code",
"execution_count": 21,
"metadata": {},
"outputs": [],
"source": [
"# angle = angle[['inter_no', 'move_no', 'STOS_NO', 'angle_code']]\n",
"\n",
"inter_info.to_csv(os.path.join(path_table, 'inter_info.csv'), index=False)\n",
"inter_node.to_csv(os.path.join(path_table, 'inter_node.csv'), index=False)\n",
"angle.to_csv(os.path.join(path_table, 'angle.csv'), index=False)"
]
},
{
"cell_type": "code",
"execution_count": 22,
"metadata": {},
"outputs": [
{
"name": "stdout",
@ -1582,7 +1822,7 @@
},
{
"cell_type": "code",
"execution_count": 20,
"execution_count": 23,
"metadata": {},
"outputs": [],
"source": [

+ 20
- 7
analysis/0725_main_test/4_use_class_pd.ipynb View File

@ -25,7 +25,7 @@
"metadata": {},
"outputs": [],
"source": [
"self = DailyPreprocessor(config_name='test_0729',\n",
"self = DailyPreprocessor(config_name='test_0731',\n",
" file_net = 'new_sungnam_network_internal_target_0721.net.xml')"
]
},
@ -67,7 +67,7 @@
},
{
"cell_type": "code",
"execution_count": null,
"execution_count": 5,
"metadata": {},
"outputs": [],
"source": [
@ -76,7 +76,7 @@
},
{
"cell_type": "code",
"execution_count": null,
"execution_count": 6,
"metadata": {},
"outputs": [],
"source": [
@ -90,7 +90,7 @@
},
{
"cell_type": "code",
"execution_count": 5,
"execution_count": 7,
"metadata": {},
"outputs": [
{
@ -108,7 +108,20 @@
},
{
"cell_type": "code",
"execution_count": 6,
"execution_count": 9,
"metadata": {},
"outputs": [],
"source": [
"self.parent_ids = sorted(self.inter_node[self.inter_node.inter_type=='parent'].node_id.unique())\n",
"self.child_ids = sorted(self.inter_node[self.inter_node.inter_type=='child'].node_id.unique())\n",
"self.uturn_ids = sorted(self.uturn.child_id.unique())\n",
"self.coord_ids = sorted(self.coord.child_id.unique())\n",
"self.node_ids = self.parent_ids + self.child_id"
]
},
{
"cell_type": "code",
"execution_count": 10,
"metadata": {},
"outputs": [
{
@ -126,7 +139,7 @@
},
{
"cell_type": "code",
"execution_count": 7,
"execution_count": 11,
"metadata": {},
"outputs": [
{
@ -187,7 +200,7 @@
},
{
"cell_type": "code",
"execution_count": 8,
"execution_count": 12,
"metadata": {},
"outputs": [
{

+ 2060
- 2948
analysis/0725_main_test/6_use_class_gs.ipynb
File diff suppressed because it is too large
View File


+ 4
- 4
analysis/0730_fetch_tables/TC_IF_TOD_DAY_PLAN.csv View File

@ -163,7 +163,7 @@
639,1,23,0,180,175,55,60,20,45,0,0,0,0,55,60,20,45,0,0,0,0,2024-07-25 15:54:37.318000
640,1,6,30,120,5,75,45,0,0,0,0,0,0,75,45,0,0,0,0,0,0,2024-07-25 15:54:37.318000
640,1,23,0,120,0,75,45,0,0,0,0,0,0,75,45,0,0,0,0,0,0,2024-07-25 15:54:37.318000
2,1,0,0,160,110,30,27,36,27,40,0,0,0,30,27,36,27,40,0,0,0,2024-07-29 09:37:21.788000
2,1,6,0,180,35,32,27,51,30,40,0,0,0,32,27,51,30,40,0,0,0,2024-07-29 09:37:21.803000
2,2,0,0,160,110,30,27,36,27,40,0,0,0,30,27,36,27,40,0,0,0,2024-07-29 09:37:21.821000
2,2,6,0,180,35,32,27,51,30,40,0,0,0,32,27,51,30,40,0,0,0,2024-07-29 09:37:21.837000
2,1,0,0,160,110,30,27,36,27,40,0,0,0,30,27,36,27,40,0,0,0,2024-07-31 09:17:18.022000
2,1,6,0,180,35,32,27,51,30,40,0,0,0,32,27,51,30,40,0,0,0,2024-07-31 09:17:18.022000
2,2,0,0,160,110,30,27,36,27,40,0,0,0,30,27,36,27,40,0,0,0,2024-07-31 09:17:18.038000
2,2,6,0,180,35,32,27,51,30,40,0,0,0,32,27,51,30,40,0,0,0,2024-07-31 09:17:18.038000

+ 2
- 2
analysis/0730_fetch_tables/TC_IF_TOD_HOLIDAY_PLAN.csv View File

@ -1,3 +1,3 @@
CRSRD_ID,MNTH,DAY,PLAN_NO,LAST_MDFCN_DT
3,1,1,3,2024-07-29 09:37:19.781000
3,1,2,3,2024-07-29 09:37:19.797000
3,1,1,3,2024-07-31 09:17:16.004000
3,1,2,3,2024-07-31 09:17:16.004000

+ 4
- 4
analysis/0730_fetch_tables/TC_IF_TOD_RED_YELLO.csv View File

@ -207,7 +207,7 @@
639,1,4,6,0,3,42,1,0,3,42,
640,1,1,8,0,3,2,17,0,3,2,
640,1,2,4,0,3,45,0,0,3,45,
2,1,1,0,1,6,3,4,5,6,7,2024-07-29 09:37:21.803000
2,1,2,1,2,7,4,5,6,7,8,2024-07-29 09:37:21.803000
2,2,1,0,1,6,3,4,5,6,7,2024-07-29 09:37:21.821000
2,2,2,1,2,7,4,5,6,7,8,2024-07-29 09:37:21.837000
2,1,1,0,1,6,3,4,5,6,7,2024-07-31 09:17:18.022000
2,1,2,1,2,7,4,5,6,7,8,2024-07-31 09:17:18.022000
2,2,1,0,1,6,3,4,5,6,7,2024-07-31 09:17:18.038000
2,2,2,1,2,7,4,5,6,7,8,2024-07-31 09:17:18.054000

+ 1
- 1
analysis/0730_fetch_tables/TC_IF_TOD_WEEK_PLAN.csv View File

@ -1,5 +1,5 @@
CRSRD_ID,SUN_PLAN_NO,MON_PLAN_NO,TUE_PLAN_NO,WED_PLAN_NO,THU_PLAN_NO,FRI_PLAN_NO,SAT_PLAN_NO,LAST_MDFCN_DT
1,2,1,1,1,1,1,2,2024-07-29 09:37:17.782000
1,2,1,1,1,1,1,2,2024-07-31 09:17:13.981000
436,1,1,1,1,1,1,1,2024-07-25 16:01:06
437,1,1,1,1,1,1,1,2024-07-25 16:01:06
438,1,1,1,1,1,1,1,2024-07-25 16:01:06

+ 11100
- 580
analysis/0730_fetch_tables/TL_IF_SIGL.csv
File diff suppressed because it is too large
View File


+ 52
- 0
analysis/0730_fetch_tables/TL_IF_SIGL_CYCL.csv View File

@ -1 +1,53 @@
OCRN_DT,CRSRD_ID,RINGA_PHASE1,RINGA_PHASE2,RINGA_PHASE3,RINGA_PHASE4,RINGA_PHASE5,RINGA_PHASE6,RINGA_PHASE7,RINGA_PHASE8,RINGB_PHASE1,RINGB_PHASE2,RINGB_PHASE3,RINGB_PHASE4,RINGB_PHASE5,RINGB_PHASE6,RINGB_PHASE7,RINGB_PHASE8,FRST_REG_DT
2024-07-31 09:00:07,437,71,28,58,43,0,0,0,0,71,28,58,43,0,0,0,0,2024-07-31 09:00:06.310000
2024-07-31 09:00:58,456,15,28,12,35,0,0,0,0,15,28,12,35,0,0,0,0,2024-07-31 09:00:57.652000
2024-07-31 09:01:38,442,31,27,32,49,45,16,0,0,31,27,32,49,45,16,0,0,2024-07-31 09:01:37.876000
2024-07-31 09:01:42,443,125,25,50,0,0,0,0,0,125,25,50,0,0,0,0,0,2024-07-31 09:01:41.896000
2024-07-31 09:05:36,455,63,27,0,0,0,0,0,0,63,27,0,0,0,0,0,0,2024-07-31 09:05:35.438000
2024-07-31 09:06:51,457,45,20,40,40,35,0,0,0,45,20,40,40,35,0,0,0,2024-07-31 09:06:51.140000
2024-07-31 09:07:05,455,63,27,0,0,0,0,0,0,63,27,0,0,0,0,0,0,2024-07-31 09:07:05.180000
2024-07-31 09:08:22,443,125,25,50,0,0,0,0,0,125,25,50,0,0,0,0,0,2024-07-31 09:08:21.478000
2024-07-31 09:08:36,455,63,27,0,0,0,0,0,0,63,27,0,0,0,0,0,0,2024-07-31 09:08:35.646000
2024-07-31 09:11:28,456,15,28,12,35,0,0,0,0,15,28,12,35,0,0,0,0,2024-07-31 09:11:27.753000
2024-07-31 09:11:47,444,30,51,30,44,45,0,0,0,30,51,30,44,45,0,0,0,2024-07-31 09:11:46.878000
2024-07-31 09:12:53,457,45,20,40,40,35,0,0,0,45,20,40,40,35,0,0,0,2024-07-31 09:12:52.296000
2024-07-31 09:12:58,456,15,28,12,35,0,0,0,0,15,28,12,35,0,0,0,0,2024-07-31 09:12:57.315000
2024-07-31 09:14:35,455,63,27,0,0,0,0,0,0,63,27,0,0,0,0,0,0,2024-07-31 09:14:34.969000
2024-07-31 09:14:58,442,35,27,30,47,45,16,0,0,35,27,30,47,45,16,0,0,2024-07-31 09:14:58.111000
2024-07-31 09:15:02,443,125,25,50,0,0,0,0,0,125,25,50,0,0,0,0,0,2024-07-31 09:15:02.136000
2024-07-31 09:01:48,444,30,51,30,44,45,0,0,0,30,51,30,44,45,0,0,0,2024-07-31 09:01:47.953000
2024-07-31 09:02:28,456,15,28,12,35,0,0,0,0,15,28,12,35,0,0,0,0,2024-07-31 09:02:28.229000
2024-07-31 09:02:37,455,63,27,0,0,0,0,0,0,63,27,0,0,0,0,0,0,2024-07-31 09:02:36.242000
2024-07-31 09:03:56,436,50,85,35,30,0,0,0,0,50,85,35,30,0,0,0,0,2024-07-31 09:03:55.968000
2024-07-31 09:03:57,456,15,28,12,35,0,0,0,0,15,28,12,35,0,0,0,0,2024-07-31 09:03:56.970000
2024-07-31 09:04:05,455,63,27,0,0,0,0,0,0,63,27,0,0,0,0,0,0,2024-07-31 09:04:04.975000
2024-07-31 09:04:57,442,35,27,30,47,45,16,0,0,35,27,30,47,45,16,0,0,2024-07-31 09:04:57.193000
2024-07-31 09:05:02,443,125,25,50,0,0,0,0,0,125,25,50,0,0,0,0,0,2024-07-31 09:05:02.207000
2024-07-31 09:06:57,456,15,28,12,35,0,0,0,0,15,28,12,35,0,0,0,0,2024-07-31 09:06:57.143000
2024-07-31 09:08:28,444,30,51,30,44,45,0,0,0,30,51,30,44,45,0,0,0,2024-07-31 09:08:27.520000
2024-07-31 09:09:51,457,45,20,40,40,35,0,0,0,45,20,40,40,35,0,0,0,2024-07-31 09:09:51.139000
2024-07-31 09:10:06,455,63,27,0,0,0,0,0,0,63,27,0,0,0,0,0,0,2024-07-31 09:10:05.210000
2024-07-31 09:11:37,442,35,27,30,47,45,16,0,0,35,27,30,47,45,16,0,0,2024-07-31 09:11:36.808000
2024-07-31 09:13:28,437,77,28,46,49,0,0,0,0,77,28,46,49,0,0,0,0,2024-07-31 09:13:27.524000
2024-07-31 09:15:07,444,30,51,30,44,45,0,0,0,30,51,30,44,45,0,0,0,2024-07-31 09:15:07.167000
2024-07-31 09:16:06,455,63,27,0,0,0,0,0,0,63,27,0,0,0,0,0,0,2024-07-31 09:16:05.538000
2024-07-31 08:59:27,456,15,28,12,35,0,0,0,0,15,28,12,35,0,0,0,0,2024-07-31 08:59:26.908000
2024-07-31 09:00:53,457,45,20,40,35,40,0,0,0,45,20,40,35,40,0,0,0,2024-07-31 09:00:52.602000
2024-07-31 09:01:05,455,63,27,0,0,0,0,0,0,63,27,0,0,0,0,0,0,2024-07-31 09:01:04.673000
2024-07-31 09:03:27,437,77,28,46,49,0,0,0,0,77,28,46,49,0,0,0,0,2024-07-31 09:03:26.630000
2024-07-31 09:03:52,457,45,20,40,40,35,0,0,0,45,20,40,40,35,0,0,0,2024-07-31 09:03:51.955000
2024-07-31 09:08:17,442,35,27,30,47,45,16,0,0,35,27,30,47,45,16,0,0,2024-07-31 09:08:16.448000
2024-07-31 09:10:38,436,50,85,35,30,0,0,0,0,50,85,35,30,0,0,0,0,2024-07-31 09:10:37.417000
2024-07-31 09:11:36,455,63,27,0,0,0,0,0,0,63,27,0,0,0,0,0,0,2024-07-31 09:11:35.794000
2024-07-31 09:11:42,443,125,25,50,0,0,0,0,0,125,25,50,0,0,0,0,0,2024-07-31 09:11:41.898000
2024-07-31 09:13:06,455,63,27,0,0,0,0,0,0,63,27,0,0,0,0,0,0,2024-07-31 09:13:05.361000
2024-07-31 09:14:26,456,15,28,12,35,0,0,0,0,15,28,12,35,0,0,0,0,2024-07-31 09:14:25.900000
2024-07-31 09:15:53,457,45,20,40,40,35,0,0,0,45,20,40,40,35,0,0,0,2024-07-31 09:15:52.467000
2024-07-31 09:15:57,456,15,28,12,35,0,0,0,0,15,28,12,35,0,0,0,0,2024-07-31 09:15:56.488000
2024-07-31 09:16:47,437,77,28,46,49,0,0,0,0,77,28,46,49,0,0,0,0,2024-07-31 09:16:46.802000
2024-07-31 08:59:36,455,63,27,0,0,0,0,0,0,63,27,0,0,0,0,0,0,2024-07-31 08:59:35.992000
2024-07-31 09:05:27,456,15,28,12,35,0,0,0,0,15,28,12,35,0,0,0,0,2024-07-31 09:05:26.371000
2024-07-31 09:06:47,437,77,28,46,49,0,0,0,0,77,28,46,49,0,0,0,0,2024-07-31 09:06:47.122000
2024-07-31 09:09:56,456,15,28,12,35,0,0,0,0,15,28,12,35,0,0,0,0,2024-07-31 09:09:56.159000
2024-07-31 09:10:08,437,77,28,46,49,0,0,0,0,77,28,46,49,0,0,0,0,2024-07-31 09:10:07.233000
2024-07-31 09:17:18,436,50,85,35,30,0,0,0,0,50,85,35,30,0,0,0,0,2024-07-31 09:17:18.007000

+ 1
- 1
analysis/0730_fetch_tables/TM_FA_CRSRD.csv View File

@ -220,4 +220,4 @@
2005,위례터널진입부삼거리,0,1,1,2005,37.46951,127.1502,1,1,Y,Y,2024-07-16 17:11:22.680000,,,
2010,수정구청앞,0,1,1,2010,37.44992,127.14648,1,1,Y,Y,2024-07-16 17:11:22.680000,,,
420,정신문화연구원,0,1,1,420,37.39141,127.0573,1,1,Y,Y,2024-07-16 17:11:22.680000,,,
1,도촌4거리,0,3,1,0,36.1235,127.1235,0,1,Y,Y,2024-07-29 09:36:45.725000,2024-07-29 09:37:25.801000,100,1
1,도촌4거리,0,3,1,0,36.1235,127.1235,0,1,Y,Y,2024-07-29 09:36:45.725000,2024-07-31 09:17:22.018000,100,1

+ 2
- 2
analysis/0730_fetch_tables/fetch_tables.py View File

@ -42,7 +42,7 @@ for table in tables:
fetch_table(table)
# 초단위 신호이력 불러오기
fetch_table('TL_IF_SIGL', condition="WHERE TRUNC(PHASE_DT) = TO_DATE('2024-07-29', 'YYYY-MM-DD') AND CRSRD_ID IN (436, 437, 438, 442, 443, 444, 455, 456, 457, 458)")
fetch_table('TL_IF_SIGL', condition="WHERE TRUNC(PHASE_DT) = TO_DATE('2024-07-31', 'YYYY-MM-DD') AND CRSRD_ID IN (436, 437, 438, 442, 443, 444, 455, 456, 457, 458)")
# 주기단위 신호이력 불러오기
fetch_table('TL_IF_SIGL_CYCL', condition="WHERE CRSRD_ID IN (436, 437, 438, 442, 443, 444, 455, 456, 457, 458)")
fetch_table('TL_IF_SIGL_CYCL', condition="WHERE TRUNC(OCRN_DT) = TO_DATE('2024-07-31', 'YYYY-MM-DD') AND CRSRD_ID IN (436, 437, 438, 442, 443, 444, 455, 456, 457, 458)")

+ 0
- 13
configs/config_test_0729.json View File

@ -1,13 +0,0 @@
{"connection_info":
{"DSNNAME": "Tibero6",
"DBUSER": "snits",
"DBPWD": "snitsUIspxmworks#PW" }
,
"paths":
{"data":["test_0729", "data"],
"intermediates":["test_0729", "intermediates"],
"results":["test_0729", "results"],
"tables":["test_0729", "data","tables"],
"networks":["test_0729", "data","networks"],
"scripts": ["scripts"]}
}

+ 13
- 0
configs/config_test_0731.json View File

@ -0,0 +1,13 @@
{"connection_info":
{"DSNNAME": "Tibero6",
"DBUSER": "snits",
"DBPWD": "snitsUIspxmworks#PW" }
,
"paths":
{"data":["test_0731", "data"],
"intermediates":["test_0731", "intermediates"],
"results":["test_0731", "results"],
"tables":["test_0731", "data","tables"],
"networks":["test_0731", "data", "networks"],
"scripts": ["scripts"]}
}

+ 0
- 3
test_0729/data/tables/TC_IF_TOD_HOLIDAY_PLAN.csv View File

@ -1,3 +0,0 @@
CRSRD_ID,MNTH,DAY,PLAN_NO,LAST_MDFCN_DT
3,1,1,3,2024-07-29 09:37:19.781000
3,1,2,3,2024-07-29 09:37:19.797000

+ 0
- 581
test_0729/data/tables/TL_IF_SIGL.csv View File

@ -1,581 +0,0 @@
PHASE_DT,CRSRD_ID,RINGA_PHASE,RINGA_FLOW,RINGB_PHASE,RINGB_FLOW,MAP_MODE,FRST_REG_DT
2024-07-29 9:36:32,436,3,7,3,4,0,36:32.8
2024-07-29 9:36:32,437,4,7,4,4,0,36:32.8
2024-07-29 9:36:32,438,3,8,3,3,0,36:32.8
2024-07-29 9:36:32,442,4,7,4,4,0,36:32.8
2024-07-29 9:36:32,443,1,6,1,2,0,36:32.8
2024-07-29 9:36:32,444,3,6,3,1,0,36:32.8
2024-07-29 9:36:32,455,1,6,1,2,0,36:32.8
2024-07-29 9:36:32,456,4,17,4,1,0,36:32.8
2024-07-29 9:36:32,457,5,7,5,4,0,36:32.8
2024-07-29 9:36:32,458,1,8,1,4,0,36:32.8
2024-07-29 9:36:33,436,3,7,3,4,0,36:32.8
2024-07-29 9:36:33,437,4,7,4,4,0,36:32.8
2024-07-29 9:36:33,438,3,8,3,3,0,36:32.8
2024-07-29 9:36:33,442,4,7,4,4,0,36:32.8
2024-07-29 9:36:33,443,1,6,1,2,0,36:32.8
2024-07-29 9:36:33,444,3,6,3,1,0,36:32.8
2024-07-29 9:36:33,455,1,6,1,2,0,36:32.8
2024-07-29 9:36:33,456,4,17,4,1,0,36:32.8
2024-07-29 9:36:33,457,5,7,5,4,0,36:32.8
2024-07-29 9:36:33,458,1,8,1,4,0,36:32.8
2024-07-29 9:36:34,436,3,7,3,4,0,36:33.7
2024-07-29 9:36:34,437,4,7,4,4,0,36:33.7
2024-07-29 9:36:34,438,3,8,3,3,0,36:33.7
2024-07-29 9:36:34,442,4,7,4,4,0,36:33.7
2024-07-29 9:36:34,443,1,6,1,2,0,36:33.7
2024-07-29 9:36:34,444,3,6,3,1,0,36:33.7
2024-07-29 9:36:34,455,1,6,1,2,0,36:33.7
2024-07-29 9:36:34,456,4,17,4,1,0,36:33.7
2024-07-29 9:36:34,457,5,7,5,4,0,36:33.7
2024-07-29 9:36:34,458,1,8,1,4,0,36:33.7
2024-07-29 9:36:36,436,3,7,3,4,0,36:35.7
2024-07-29 9:36:36,437,4,7,4,4,0,36:35.7
2024-07-29 9:36:36,438,3,8,3,3,0,36:35.7
2024-07-29 9:36:36,442,4,7,4,4,0,36:35.7
2024-07-29 9:36:36,443,1,6,1,2,0,36:35.7
2024-07-29 9:36:36,444,3,6,3,1,0,36:35.7
2024-07-29 9:36:36,455,1,6,1,2,0,36:35.7
2024-07-29 9:36:36,456,4,17,4,1,0,36:35.7
2024-07-29 9:36:36,457,5,7,5,4,0,36:35.7
2024-07-29 9:36:36,458,1,8,1,4,0,36:35.7
2024-07-29 9:36:37,436,3,7,3,4,0,36:36.7
2024-07-29 9:36:37,437,4,7,4,4,0,36:36.7
2024-07-29 9:36:37,438,3,8,3,3,0,36:36.7
2024-07-29 9:36:37,442,4,7,4,4,0,36:36.7
2024-07-29 9:36:37,443,1,6,1,2,0,36:36.7
2024-07-29 9:36:37,444,3,6,3,1,0,36:36.7
2024-07-29 9:36:37,455,2,1,2,1,0,36:36.7
2024-07-29 9:36:37,456,4,17,4,1,0,36:36.7
2024-07-29 9:36:37,457,5,7,5,4,0,36:36.7
2024-07-29 9:36:37,458,1,8,1,4,0,36:36.7
2024-07-29 9:36:35,436,3,7,3,4,0,36:34.7
2024-07-29 9:36:35,437,4,7,4,4,0,36:34.7
2024-07-29 9:36:35,438,3,8,3,3,0,36:34.7
2024-07-29 9:36:35,442,4,7,4,4,0,36:34.7
2024-07-29 9:36:35,443,1,6,1,2,0,36:34.7
2024-07-29 9:36:35,444,3,6,3,1,0,36:34.7
2024-07-29 9:36:35,455,1,6,1,2,0,36:34.7
2024-07-29 9:36:35,456,4,17,4,1,0,36:34.7
2024-07-29 9:36:35,457,5,7,5,4,0,36:34.7
2024-07-29 9:36:35,458,1,8,1,4,0,36:34.7
2024-07-29 9:36:38,436,3,7,3,4,0,36:37.7
2024-07-29 9:36:38,437,4,7,4,4,0,36:37.7
2024-07-29 9:36:38,438,3,8,3,3,0,36:37.7
2024-07-29 9:36:38,442,4,7,4,4,0,36:37.7
2024-07-29 9:36:38,443,1,6,1,2,0,36:37.7
2024-07-29 9:36:38,444,3,6,3,1,0,36:37.7
2024-07-29 9:36:38,455,2,1,2,1,0,36:37.7
2024-07-29 9:36:38,456,4,17,4,1,0,36:37.7
2024-07-29 9:36:38,457,5,7,5,4,0,36:37.7
2024-07-29 9:36:38,458,1,8,1,4,0,36:37.7
2024-07-29 9:36:39,436,3,7,3,4,0,36:38.7
2024-07-29 9:36:39,437,4,7,4,4,0,36:38.7
2024-07-29 9:36:39,438,3,8,3,3,0,36:38.7
2024-07-29 9:36:39,442,4,7,4,4,0,36:38.7
2024-07-29 9:36:39,443,1,6,1,2,0,36:38.7
2024-07-29 9:36:39,444,3,6,3,1,0,36:38.7
2024-07-29 9:36:39,455,2,1,2,1,0,36:38.7
2024-07-29 9:36:39,456,4,17,4,1,0,36:38.7
2024-07-29 9:36:39,457,5,7,5,4,0,36:38.7
2024-07-29 9:36:39,458,1,8,1,4,0,36:38.7
2024-07-29 9:36:42,436,3,7,3,4,0,36:41.7
2024-07-29 9:36:42,437,4,7,4,4,0,36:41.7
2024-07-29 9:36:42,438,3,8,3,3,0,36:41.7
2024-07-29 9:36:42,442,4,7,4,4,0,36:41.7
2024-07-29 9:36:42,443,1,6,1,2,0,36:41.7
2024-07-29 9:36:42,444,3,6,3,1,0,36:41.7
2024-07-29 9:36:42,455,2,1,2,1,0,36:41.7
2024-07-29 9:36:42,456,4,17,4,1,0,36:41.7
2024-07-29 9:36:42,457,5,7,5,4,0,36:41.7
2024-07-29 9:36:42,458,1,8,1,4,0,36:41.7
2024-07-29 9:36:40,436,3,7,3,4,0,36:39.8
2024-07-29 9:36:40,437,4,7,4,4,0,36:39.8
2024-07-29 9:36:40,438,3,8,3,3,0,36:39.8
2024-07-29 9:36:40,442,4,7,4,4,0,36:39.8
2024-07-29 9:36:40,443,1,6,1,2,0,36:39.8
2024-07-29 9:36:40,444,3,6,3,1,0,36:39.8
2024-07-29 9:36:40,455,2,1,2,1,0,36:39.8
2024-07-29 9:36:40,456,4,17,4,1,0,36:39.8
2024-07-29 9:36:40,457,5,7,5,4,0,36:39.8
2024-07-29 9:36:40,458,1,8,1,4,0,36:39.8
2024-07-29 9:36:41,436,3,7,3,4,0,36:40.7
2024-07-29 9:36:41,437,4,7,4,4,0,36:40.7
2024-07-29 9:36:41,438,3,8,3,3,0,36:40.7
2024-07-29 9:36:41,442,4,7,4,4,0,36:40.7
2024-07-29 9:36:41,443,1,6,1,2,0,36:40.7
2024-07-29 9:36:41,444,3,6,3,1,0,36:40.7
2024-07-29 9:36:41,455,2,1,2,1,0,36:40.7
2024-07-29 9:36:41,456,4,17,4,1,0,36:40.7
2024-07-29 9:36:41,457,5,7,5,4,0,36:40.7
2024-07-29 9:36:41,458,1,8,1,4,0,36:40.7
2024-07-29 9:36:43,436,3,7,3,4,0,36:42.8
2024-07-29 9:36:43,437,4,7,4,4,0,36:42.8
2024-07-29 9:36:43,438,1,6,1,2,0,36:42.8
2024-07-29 9:36:43,442,4,7,4,4,0,36:42.8
2024-07-29 9:36:43,443,1,6,1,2,0,36:42.8
2024-07-29 9:36:43,444,3,6,3,1,0,36:42.8
2024-07-29 9:36:43,455,2,1,2,1,0,36:42.8
2024-07-29 9:36:43,456,4,17,4,1,0,36:42.8
2024-07-29 9:36:43,457,5,7,5,4,0,36:42.8
2024-07-29 9:36:43,458,1,8,1,4,0,36:42.8
2024-07-29 9:36:45,436,3,7,3,4,0,36:44.8
2024-07-29 9:36:45,437,4,7,4,4,0,36:44.8
2024-07-29 9:36:45,438,1,6,1,2,0,36:44.8
2024-07-29 9:36:45,442,4,7,4,4,0,36:44.8
2024-07-29 9:36:45,443,1,6,1,2,0,36:44.8
2024-07-29 9:36:45,444,3,6,3,1,0,36:44.8
2024-07-29 9:36:45,455,2,1,2,1,0,36:44.8
2024-07-29 9:36:45,456,4,17,4,1,0,36:44.8
2024-07-29 9:36:45,457,5,7,5,4,0,36:44.8
2024-07-29 9:36:45,458,1,8,1,4,0,36:44.8
2024-07-29 9:36:44,436,3,7,3,4,0,36:43.8
2024-07-29 9:36:44,437,4,7,4,4,0,36:43.8
2024-07-29 9:36:44,438,1,6,1,2,0,36:43.8
2024-07-29 9:36:44,442,4,7,4,4,0,36:43.8
2024-07-29 9:36:44,443,1,6,1,2,0,36:43.8
2024-07-29 9:36:44,444,3,6,3,1,0,36:43.8
2024-07-29 9:36:44,455,2,1,2,1,0,36:43.8
2024-07-29 9:36:44,456,4,17,4,1,0,36:43.8
2024-07-29 9:36:44,457,5,7,5,4,0,36:43.8
2024-07-29 9:36:44,458,1,8,1,4,0,36:43.8
2024-07-29 9:36:47,436,4,6,4,1,0,36:46.8
2024-07-29 9:36:47,437,1,6,1,2,0,36:46.8
2024-07-29 9:36:47,438,1,6,1,2,0,36:46.8
2024-07-29 9:36:47,442,4,7,4,4,0,36:46.8
2024-07-29 9:36:47,443,1,6,1,2,0,36:46.8
2024-07-29 9:36:47,444,3,6,3,1,0,36:46.8
2024-07-29 9:36:47,455,2,1,2,1,0,36:46.8
2024-07-29 9:36:47,456,4,17,4,1,0,36:46.8
2024-07-29 9:36:47,457,5,7,5,4,0,36:46.8
2024-07-29 9:36:47,458,1,8,1,4,0,36:46.8
2024-07-29 9:36:48,436,4,6,4,1,0,36:47.8
2024-07-29 9:36:48,437,1,6,1,2,0,36:47.8
2024-07-29 9:36:48,438,1,6,1,2,0,36:47.8
2024-07-29 9:36:48,442,4,7,4,4,0,36:47.8
2024-07-29 9:36:48,443,1,6,1,2,0,36:47.8
2024-07-29 9:36:48,444,3,6,3,1,0,36:47.8
2024-07-29 9:36:48,455,2,1,2,1,0,36:47.8
2024-07-29 9:36:48,456,4,17,4,1,0,36:47.8
2024-07-29 9:36:48,457,5,7,5,4,0,36:47.8
2024-07-29 9:36:48,458,1,8,1,4,0,36:47.8
2024-07-29 9:36:46,436,4,6,4,1,0,36:45.8
2024-07-29 9:36:46,437,4,7,4,4,0,36:45.8
2024-07-29 9:36:46,438,1,6,1,2,0,36:45.8
2024-07-29 9:36:46,442,4,7,4,4,0,36:45.8
2024-07-29 9:36:46,443,1,6,1,2,0,36:45.8
2024-07-29 9:36:46,444,3,6,3,1,0,36:45.8
2024-07-29 9:36:46,455,2,1,2,1,0,36:45.8
2024-07-29 9:36:46,456,4,17,4,1,0,36:45.8
2024-07-29 9:36:46,457,5,7,5,4,0,36:45.8
2024-07-29 9:36:46,458,1,8,1,4,0,36:45.8
2024-07-29 9:36:49,436,4,6,4,1,0,36:48.8
2024-07-29 9:36:49,437,1,6,1,2,0,36:48.8
2024-07-29 9:36:49,438,1,6,1,2,0,36:48.8
2024-07-29 9:36:49,442,4,7,4,4,0,36:48.8
2024-07-29 9:36:49,443,1,6,1,2,0,36:48.8
2024-07-29 9:36:49,444,3,6,3,1,0,36:48.8
2024-07-29 9:36:49,455,2,1,2,1,0,36:48.8
2024-07-29 9:36:49,456,4,17,4,1,0,36:48.8
2024-07-29 9:36:49,457,5,7,5,4,0,36:48.8
2024-07-29 9:36:49,458,1,8,1,4,0,36:48.8
2024-07-29 9:36:50,436,4,6,4,1,0,36:49.8
2024-07-29 9:36:50,437,1,6,1,2,0,36:49.8
2024-07-29 9:36:50,438,1,6,1,2,0,36:49.8
2024-07-29 9:36:50,442,4,7,4,4,0,36:49.8
2024-07-29 9:36:50,443,1,6,1,2,0,36:49.8
2024-07-29 9:36:50,444,3,6,3,1,0,36:49.8
2024-07-29 9:36:50,455,2,1,2,1,0,36:49.8
2024-07-29 9:36:50,456,4,17,4,1,0,36:49.8
2024-07-29 9:36:50,457,1,6,1,2,0,36:49.8
2024-07-29 9:36:50,458,1,8,1,4,0,36:49.8
2024-07-29 9:36:51,436,4,6,4,1,0,36:50.8
2024-07-29 9:36:51,437,1,6,1,2,0,36:50.8
2024-07-29 9:36:51,438,1,6,1,2,0,36:50.8
2024-07-29 9:36:51,442,4,7,4,4,0,36:50.8
2024-07-29 9:36:51,443,1,6,1,2,0,36:50.8
2024-07-29 9:36:51,444,3,6,3,1,0,36:50.8
2024-07-29 9:36:51,455,2,1,2,1,0,36:50.8
2024-07-29 9:36:51,456,4,17,4,1,0,36:50.8
2024-07-29 9:36:51,457,1,6,1,2,0,36:50.8
2024-07-29 9:36:51,458,1,8,1,4,0,36:50.8
2024-07-29 9:36:52,436,4,6,4,1,0,36:51.8
2024-07-29 9:36:52,437,1,6,1,2,0,36:51.8
2024-07-29 9:36:52,438,1,6,1,2,0,36:51.8
2024-07-29 9:36:52,442,4,7,4,4,0,36:51.8
2024-07-29 9:36:52,443,1,6,1,2,0,36:51.8
2024-07-29 9:36:52,444,3,6,3,1,0,36:51.8
2024-07-29 9:36:52,455,2,1,2,1,0,36:51.8
2024-07-29 9:36:52,456,4,17,4,1,0,36:51.8
2024-07-29 9:36:52,457,1,6,1,2,0,36:51.8
2024-07-29 9:36:52,458,1,8,1,4,0,36:51.8
2024-07-29 9:36:53,436,4,6,4,1,0,36:52.8
2024-07-29 9:36:53,437,1,6,1,2,0,36:52.8
2024-07-29 9:36:53,438,1,6,1,2,0,36:52.8
2024-07-29 9:36:53,442,4,7,4,4,0,36:52.8
2024-07-29 9:36:53,443,1,6,1,2,0,36:52.8
2024-07-29 9:36:53,444,3,6,3,1,0,36:52.8
2024-07-29 9:36:53,455,2,1,2,1,0,36:52.8
2024-07-29 9:36:53,456,4,17,4,1,0,36:52.8
2024-07-29 9:36:53,457,1,6,1,2,0,36:52.8
2024-07-29 9:36:53,458,1,8,1,4,0,36:52.8
2024-07-29 9:36:54,436,4,6,4,1,0,36:53.8
2024-07-29 9:36:54,437,1,6,1,2,0,36:53.8
2024-07-29 9:36:54,438,1,6,1,2,0,36:53.8
2024-07-29 9:36:54,442,4,7,4,4,0,36:53.8
2024-07-29 9:36:54,443,1,6,1,2,0,36:53.8
2024-07-29 9:36:54,444,3,6,3,1,0,36:53.8
2024-07-29 9:36:54,455,2,1,2,1,0,36:53.8
2024-07-29 9:36:54,456,4,17,4,1,0,36:53.8
2024-07-29 9:36:54,457,1,6,1,2,0,36:53.8
2024-07-29 9:36:54,458,1,8,1,4,0,36:53.8
2024-07-29 9:36:56,436,4,6,4,1,0,36:55.8
2024-07-29 9:36:56,437,1,6,1,2,0,36:55.8
2024-07-29 9:36:56,438,1,6,1,2,0,36:55.8
2024-07-29 9:36:56,442,4,7,4,4,0,36:55.8
2024-07-29 9:36:56,443,1,6,1,2,0,36:55.8
2024-07-29 9:36:56,444,3,6,3,1,0,36:55.8
2024-07-29 9:36:56,455,2,1,2,1,0,36:55.8
2024-07-29 9:36:56,456,1,5,1,2,0,36:55.8
2024-07-29 9:36:56,457,1,6,1,2,0,36:55.8
2024-07-29 9:36:56,458,1,8,1,4,0,36:55.8
2024-07-29 9:36:57,436,4,6,4,1,0,36:56.8
2024-07-29 9:36:57,437,1,6,1,2,0,36:56.8
2024-07-29 9:36:57,438,1,6,1,2,0,36:56.8
2024-07-29 9:36:57,442,4,7,4,4,0,36:56.8
2024-07-29 9:36:57,443,1,6,1,2,0,36:56.8
2024-07-29 9:36:57,444,4,7,4,4,0,36:56.8
2024-07-29 9:36:57,455,2,1,2,1,0,36:56.8
2024-07-29 9:36:57,456,1,5,1,2,0,36:56.8
2024-07-29 9:36:57,457,1,6,1,2,0,36:56.8
2024-07-29 9:36:57,458,1,8,1,4,0,36:56.8
2024-07-29 9:36:58,436,4,6,4,1,0,36:57.8
2024-07-29 9:36:58,437,1,6,1,2,0,36:57.8
2024-07-29 9:36:58,438,1,6,1,2,0,36:57.8
2024-07-29 9:36:58,442,4,7,4,4,0,36:57.8
2024-07-29 9:36:58,443,1,6,1,2,0,36:57.8
2024-07-29 9:36:58,444,4,7,4,4,0,36:57.8
2024-07-29 9:36:58,455,2,1,2,1,0,36:57.8
2024-07-29 9:36:58,456,1,5,1,2,0,36:57.8
2024-07-29 9:36:58,457,1,6,1,2,0,36:57.8
2024-07-29 9:36:58,458,1,8,1,4,0,36:57.8
2024-07-29 9:36:59,436,4,6,4,1,0,36:58.8
2024-07-29 9:36:59,437,1,6,1,2,0,36:58.8
2024-07-29 9:36:59,438,1,6,1,2,0,36:58.8
2024-07-29 9:36:59,442,4,7,4,4,0,36:58.8
2024-07-29 9:36:59,443,1,6,1,2,0,36:58.8
2024-07-29 9:36:59,444,4,7,4,4,0,36:58.8
2024-07-29 9:36:59,455,2,1,2,1,0,36:58.8
2024-07-29 9:36:59,456,1,5,1,2,0,36:58.8
2024-07-29 9:36:59,457,1,6,1,2,0,36:58.8
2024-07-29 9:36:59,458,1,8,1,4,0,36:58.8
2024-07-29 9:37:00,436,4,6,4,1,0,36:59.8
2024-07-29 9:37:00,437,1,6,1,2,0,36:59.8
2024-07-29 9:37:00,438,1,6,1,2,0,36:59.8
2024-07-29 9:37:00,442,4,7,4,4,0,36:59.8
2024-07-29 9:37:00,443,1,6,1,2,0,36:59.8
2024-07-29 9:37:00,444,4,7,4,4,0,36:59.8
2024-07-29 9:37:00,455,2,1,2,1,0,36:59.8
2024-07-29 9:37:00,456,1,5,1,2,0,36:59.8
2024-07-29 9:37:00,457,1,6,1,2,0,36:59.8
2024-07-29 9:37:00,458,1,8,1,4,0,36:59.8
2024-07-29 9:37:01,436,4,6,4,1,0,37:00.8
2024-07-29 9:37:01,437,1,6,1,2,0,37:00.8
2024-07-29 9:37:01,438,1,6,1,2,0,37:00.8
2024-07-29 9:37:01,442,4,7,4,4,0,37:00.8
2024-07-29 9:37:01,443,1,6,1,2,0,37:00.8
2024-07-29 9:37:01,444,4,7,4,4,0,37:00.8
2024-07-29 9:37:01,455,2,1,2,1,0,37:00.8
2024-07-29 9:37:01,456,1,5,1,2,0,37:00.8
2024-07-29 9:37:01,457,1,6,1,2,0,37:00.8
2024-07-29 9:37:01,458,1,8,1,4,0,37:00.8
2024-07-29 9:37:02,436,4,6,4,1,0,37:01.8
2024-07-29 9:37:02,437,1,6,1,2,0,37:01.8
2024-07-29 9:37:02,438,1,6,1,2,0,37:01.8
2024-07-29 9:37:02,442,4,7,4,4,0,37:01.8
2024-07-29 9:37:02,443,1,6,1,2,0,37:01.8
2024-07-29 9:37:02,444,4,7,4,4,0,37:01.8
2024-07-29 9:37:02,455,2,1,2,1,0,37:01.8
2024-07-29 9:37:02,456,1,5,1,2,0,37:01.8
2024-07-29 9:37:02,457,1,6,1,2,0,37:01.8
2024-07-29 9:37:02,458,1,8,1,4,0,37:01.8
2024-07-29 9:37:03,436,4,6,4,1,0,37:02.8
2024-07-29 9:37:03,437,1,6,1,2,0,37:02.8
2024-07-29 9:37:03,438,1,6,1,2,0,37:02.8
2024-07-29 9:37:03,442,4,7,4,4,0,37:02.8
2024-07-29 9:37:03,443,1,6,1,2,0,37:02.8
2024-07-29 9:37:03,444,4,7,4,4,0,37:02.8
2024-07-29 9:37:03,455,2,1,2,1,0,37:02.8
2024-07-29 9:37:03,456,1,5,1,2,0,37:02.8
2024-07-29 9:37:03,457,1,6,1,2,0,37:02.8
2024-07-29 9:37:03,458,1,8,1,4,0,37:02.8
2024-07-29 9:37:04,436,4,6,4,1,0,37:03.8
2024-07-29 9:37:04,437,1,6,1,2,0,37:03.8
2024-07-29 9:37:04,438,1,6,1,2,0,37:03.8
2024-07-29 9:37:04,442,4,7,4,4,0,37:03.8
2024-07-29 9:37:04,443,1,6,1,2,0,37:03.8
2024-07-29 9:37:04,444,4,7,4,4,0,37:03.8
2024-07-29 9:37:04,455,2,1,2,1,0,37:03.8
2024-07-29 9:37:04,456,1,5,1,2,0,37:03.8
2024-07-29 9:37:04,457,1,6,1,2,0,37:03.8
2024-07-29 9:37:04,458,1,8,1,4,0,37:03.8
2024-07-29 9:37:05,436,4,6,4,1,0,37:04.8
2024-07-29 9:37:05,437,1,6,1,2,0,37:04.8
2024-07-29 9:37:05,438,1,6,1,2,0,37:04.8
2024-07-29 9:37:05,442,4,7,4,4,0,37:04.8
2024-07-29 9:37:05,443,1,6,1,2,0,37:04.8
2024-07-29 9:37:05,444,4,7,4,4,0,37:04.8
2024-07-29 9:37:05,455,1,6,1,2,0,37:04.8
2024-07-29 9:37:05,456,1,5,1,2,0,37:04.8
2024-07-29 9:37:05,457,1,6,1,2,0,37:04.8
2024-07-29 9:37:05,458,1,8,1,4,0,37:04.8
2024-07-29 9:37:06,436,4,6,4,1,0,37:05.9
2024-07-29 9:37:06,437,1,6,1,2,0,37:05.9
2024-07-29 9:37:06,438,1,6,1,2,0,37:05.9
2024-07-29 9:37:06,442,4,7,4,4,0,37:05.9
2024-07-29 9:37:06,443,2,5,2,2,0,37:05.9
2024-07-29 9:37:06,444,4,7,4,4,0,37:05.9
2024-07-29 9:37:06,455,1,6,1,2,0,37:05.9
2024-07-29 9:37:06,456,1,5,1,2,0,37:05.9
2024-07-29 9:37:06,457,1,6,1,2,0,37:05.9
2024-07-29 9:37:06,458,1,8,1,4,0,37:05.9
2024-07-29 9:36:55,436,4,6,4,1,0,36:54.8
2024-07-29 9:36:55,437,1,6,1,2,0,36:54.8
2024-07-29 9:36:55,438,1,6,1,2,0,36:54.8
2024-07-29 9:36:55,442,4,7,4,4,0,36:54.8
2024-07-29 9:36:55,443,1,6,1,2,0,36:54.8
2024-07-29 9:36:55,444,3,6,3,1,0,36:54.8
2024-07-29 9:36:55,455,2,1,2,1,0,36:54.8
2024-07-29 9:36:55,456,4,17,4,1,0,36:54.8
2024-07-29 9:36:55,457,1,6,1,2,0,36:54.8
2024-07-29 9:36:55,458,1,8,1,4,0,36:54.8
2024-07-29 9:37:07,436,4,6,4,1,0,37:06.8
2024-07-29 9:37:07,437,1,6,1,2,0,37:06.8
2024-07-29 9:37:07,438,1,6,1,2,0,37:06.8
2024-07-29 9:37:07,442,4,7,4,4,0,37:06.8
2024-07-29 9:37:07,443,2,5,2,2,0,37:06.8
2024-07-29 9:37:07,444,4,7,4,4,0,37:06.8
2024-07-29 9:37:07,455,1,6,1,2,0,37:06.8
2024-07-29 9:37:07,456,1,5,1,2,0,37:06.8
2024-07-29 9:37:07,457,1,6,1,2,0,37:06.8
2024-07-29 9:37:07,458,1,8,1,4,0,37:06.8
2024-07-29 9:37:08,436,4,6,4,1,0,37:07.8
2024-07-29 9:37:08,437,1,6,1,2,0,37:07.8
2024-07-29 9:37:08,438,1,6,1,2,0,37:07.8
2024-07-29 9:37:08,442,4,7,4,4,0,37:07.8
2024-07-29 9:37:08,443,2,5,2,2,0,37:07.8
2024-07-29 9:37:08,444,4,7,4,4,0,37:07.8
2024-07-29 9:37:08,455,1,6,1,2,0,37:07.8
2024-07-29 9:37:08,456,1,5,1,2,0,37:07.8
2024-07-29 9:37:08,457,1,6,1,2,0,37:07.8
2024-07-29 9:37:08,458,1,8,1,4,0,37:07.8
2024-07-29 9:37:09,436,4,6,4,1,0,37:08.8
2024-07-29 9:37:09,437,1,6,1,2,0,37:08.8
2024-07-29 9:37:09,438,1,6,1,2,0,37:08.8
2024-07-29 9:37:09,442,4,7,4,4,0,37:08.8
2024-07-29 9:37:09,443,2,5,2,2,0,37:08.8
2024-07-29 9:37:09,444,4,7,4,4,0,37:08.8
2024-07-29 9:37:09,455,1,6,1,2,0,37:08.8
2024-07-29 9:37:09,456,1,5,1,2,0,37:08.8
2024-07-29 9:37:09,457,1,6,1,2,0,37:08.8
2024-07-29 9:37:09,458,1,8,1,4,0,37:08.8
2024-07-29 9:37:10,436,4,6,4,1,0,37:09.8
2024-07-29 9:37:10,437,1,6,1,2,0,37:09.8
2024-07-29 9:37:10,438,1,6,1,2,0,37:09.8
2024-07-29 9:37:10,442,4,7,4,4,0,37:09.8
2024-07-29 9:37:10,443,2,5,2,2,0,37:09.8
2024-07-29 9:37:10,444,4,7,4,4,0,37:09.8
2024-07-29 9:37:10,455,1,6,1,2,0,37:09.8
2024-07-29 9:37:10,456,1,5,1,2,0,37:09.8
2024-07-29 9:37:10,457,1,6,1,2,0,37:09.8
2024-07-29 9:37:10,458,1,8,1,4,0,37:09.8
2024-07-29 9:37:11,436,4,6,4,1,0,37:10.8
2024-07-29 9:37:11,437,1,6,1,2,0,37:10.8
2024-07-29 9:37:11,438,1,6,1,2,0,37:10.8
2024-07-29 9:37:11,442,4,7,4,4,0,37:10.8
2024-07-29 9:37:11,443,2,5,2,2,0,37:10.8
2024-07-29 9:37:11,444,4,7,4,4,0,37:10.8
2024-07-29 9:37:11,455,1,6,1,2,0,37:10.8
2024-07-29 9:37:11,456,2,6,2,2,0,37:10.8
2024-07-29 9:37:11,457,1,6,1,2,0,37:10.8
2024-07-29 9:37:11,458,1,8,1,4,0,37:10.8
2024-07-29 9:37:12,436,4,6,4,1,0,37:11.8
2024-07-29 9:37:12,437,1,6,1,2,0,37:11.8
2024-07-29 9:37:12,438,1,6,1,2,0,37:11.8
2024-07-29 9:37:12,442,4,7,4,4,0,37:11.8
2024-07-29 9:37:12,443,2,5,2,2,0,37:11.8
2024-07-29 9:37:12,444,4,7,4,4,0,37:11.8
2024-07-29 9:37:12,455,1,6,1,2,0,37:11.8
2024-07-29 9:37:12,456,2,6,2,2,0,37:11.8
2024-07-29 9:37:12,457,1,6,1,2,0,37:11.8
2024-07-29 9:37:12,458,1,8,1,4,0,37:11.8
2024-07-29 9:37:13,436,4,6,4,1,0,37:12.8
2024-07-29 9:37:13,437,1,6,1,2,0,37:12.8
2024-07-29 9:37:13,438,1,6,1,2,0,37:12.8
2024-07-29 9:37:13,442,4,7,4,4,0,37:12.8
2024-07-29 9:37:13,443,2,5,2,2,0,37:12.8
2024-07-29 9:37:13,444,4,7,4,4,0,37:12.8
2024-07-29 9:37:13,455,1,6,1,2,0,37:12.8
2024-07-29 9:37:13,456,2,6,2,2,0,37:12.8
2024-07-29 9:37:13,457,1,6,1,2,0,37:12.8
2024-07-29 9:37:13,458,1,8,1,4,0,37:12.8
2024-07-29 9:37:14,436,4,6,4,1,0,37:13.9
2024-07-29 9:37:14,437,1,6,1,2,0,37:13.9
2024-07-29 9:37:14,438,1,6,1,2,0,37:13.9
2024-07-29 9:37:14,442,5,8,5,3,0,37:13.9
2024-07-29 9:37:14,443,2,5,2,2,0,37:13.9
2024-07-29 9:37:14,444,4,7,4,4,0,37:13.9
2024-07-29 9:37:14,455,1,6,1,2,0,37:13.9
2024-07-29 9:37:14,456,2,6,2,2,0,37:13.9
2024-07-29 9:37:14,457,1,6,1,2,0,37:13.9
2024-07-29 9:37:14,458,1,8,1,4,0,37:13.9
2024-07-29 9:37:15,436,4,6,4,1,0,37:14.8
2024-07-29 9:37:15,437,1,6,1,2,0,37:14.8
2024-07-29 9:37:15,438,1,6,1,2,0,37:14.8
2024-07-29 9:37:15,442,5,8,5,3,0,37:14.8
2024-07-29 9:37:15,443,2,5,2,2,0,37:14.8
2024-07-29 9:37:15,444,4,7,4,4,0,37:14.8
2024-07-29 9:37:15,455,1,6,1,2,0,37:14.8
2024-07-29 9:37:15,456,2,6,2,2,0,37:14.8
2024-07-29 9:37:15,457,1,6,1,2,0,37:14.8
2024-07-29 9:37:15,458,1,8,1,4,0,37:14.8
2024-07-29 9:37:16,436,4,6,4,1,0,37:15.8
2024-07-29 9:37:16,437,1,6,1,2,0,37:15.8
2024-07-29 9:37:16,438,1,6,1,2,0,37:15.8
2024-07-29 9:37:16,442,5,8,5,3,0,37:15.8
2024-07-29 9:37:16,443,2,5,2,2,0,37:15.8
2024-07-29 9:37:16,444,4,7,4,4,0,37:15.8
2024-07-29 9:37:16,455,1,6,1,2,0,37:15.8
2024-07-29 9:37:16,456,2,6,2,2,0,37:15.8
2024-07-29 9:37:16,457,1,6,1,2,0,37:15.8
2024-07-29 9:37:16,458,1,8,1,4,0,37:15.8
2024-07-29 9:37:17,436,1,5,1,2,0,37:16.8
2024-07-29 9:37:17,437,1,6,1,2,0,37:16.8
2024-07-29 9:37:17,438,1,6,1,2,0,37:16.8
2024-07-29 9:37:17,442,5,8,5,3,0,37:16.8
2024-07-29 9:37:17,443,2,5,2,2,0,37:16.8
2024-07-29 9:37:17,444,4,7,4,4,0,37:16.8
2024-07-29 9:37:17,455,1,6,1,2,0,37:16.8
2024-07-29 9:37:17,456,2,6,2,2,0,37:16.8
2024-07-29 9:37:17,457,1,6,1,2,0,37:16.8
2024-07-29 9:37:17,458,1,8,1,4,0,37:16.8
2024-07-29 9:37:21,436,1,5,1,2,0,37:19.8
2024-07-29 9:37:21,437,1,6,1,2,0,37:19.8
2024-07-29 9:37:21,438,1,6,1,2,0,37:19.8
2024-07-29 9:37:21,442,5,8,5,3,0,37:19.8
2024-07-29 9:37:21,443,2,5,2,2,0,37:19.8
2024-07-29 9:37:21,444,4,7,4,4,0,37:19.8
2024-07-29 9:37:21,455,1,6,1,2,0,37:19.8
2024-07-29 9:37:21,456,2,6,2,2,0,37:19.8
2024-07-29 9:37:21,457,1,6,1,2,0,37:19.8
2024-07-29 9:37:21,458,1,8,1,4,0,37:19.8
2024-07-29 9:37:22,436,1,5,1,2,0,37:20.8
2024-07-29 9:37:22,437,1,6,1,2,0,37:20.8
2024-07-29 9:37:22,438,1,6,1,2,0,37:20.8
2024-07-29 9:37:22,442,5,8,5,3,0,37:20.8
2024-07-29 9:37:22,443,2,5,2,2,0,37:20.8
2024-07-29 9:37:22,444,4,7,4,4,0,37:20.8
2024-07-29 9:37:22,455,1,6,1,2,0,37:20.8
2024-07-29 9:37:22,456,2,6,2,2,0,37:20.8
2024-07-29 9:37:22,457,1,6,1,2,0,37:20.8
2024-07-29 9:37:22,458,1,8,1,4,0,37:20.8
2024-07-29 9:37:23,436,1,5,1,2,0,37:21.8
2024-07-29 9:37:23,437,1,6,1,2,0,37:21.8
2024-07-29 9:37:23,438,1,6,1,2,0,37:21.8
2024-07-29 9:37:23,442,5,8,5,3,0,37:21.8
2024-07-29 9:37:23,443,2,5,2,2,0,37:21.8
2024-07-29 9:37:23,444,4,7,4,4,0,37:21.8
2024-07-29 9:37:23,455,1,6,1,2,0,37:21.8
2024-07-29 9:37:23,456,2,6,2,2,0,37:21.8
2024-07-29 9:37:23,457,1,6,1,2,0,37:21.8
2024-07-29 9:37:23,458,1,8,1,4,0,37:21.8
2024-07-29 9:37:24,436,1,5,1,2,0,37:22.9
2024-07-29 9:37:24,437,1,6,1,2,0,37:22.9
2024-07-29 9:37:24,438,1,6,1,2,0,37:22.9
2024-07-29 9:37:24,442,5,8,5,3,0,37:22.9
2024-07-29 9:37:24,443,2,5,2,2,0,37:22.9
2024-07-29 9:37:24,444,4,7,4,4,0,37:22.9
2024-07-29 9:37:24,455,1,6,1,2,0,37:22.9
2024-07-29 9:37:24,456,2,6,2,2,0,37:22.9
2024-07-29 9:37:24,457,1,6,1,2,0,37:22.9
2024-07-29 9:37:24,458,1,8,1,4,0,37:22.9
2024-07-29 9:37:25,436,1,5,1,2,0,37:23.9
2024-07-29 9:37:25,437,1,6,1,2,0,37:23.9
2024-07-29 9:37:25,438,1,6,1,2,0,37:23.9
2024-07-29 9:37:25,442,5,8,5,3,0,37:23.9
2024-07-29 9:37:25,443,2,5,2,2,0,37:23.9
2024-07-29 9:37:25,444,4,7,4,4,0,37:23.9
2024-07-29 9:37:25,455,1,6,1,2,0,37:23.9
2024-07-29 9:37:25,456,2,6,2,2,0,37:23.9
2024-07-29 9:37:25,457,1,6,1,2,0,37:23.9
2024-07-29 9:37:25,458,1,8,1,4,0,37:23.9
2024-07-29 9:37:26,436,1,5,1,2,0,37:24.8
2024-07-29 9:37:26,437,1,6,1,2,0,37:24.8
2024-07-29 9:37:26,438,1,6,1,2,0,37:24.8
2024-07-29 9:37:26,442,5,8,5,3,0,37:24.8
2024-07-29 9:37:26,443,2,5,2,2,0,37:24.8
2024-07-29 9:37:26,444,4,7,4,4,0,37:24.8
2024-07-29 9:37:26,455,1,6,1,2,0,37:24.8
2024-07-29 9:37:26,456,2,6,2,2,0,37:24.8
2024-07-29 9:37:26,457,1,6,1,2,0,37:24.8
2024-07-29 9:37:26,458,1,8,1,4,0,37:24.8
2024-07-29 9:37:27,436,1,5,1,2,0,37:25.8
2024-07-29 9:37:27,437,1,6,1,2,0,37:25.8
2024-07-29 9:37:27,438,1,6,1,2,0,37:25.8
2024-07-29 9:37:27,442,5,8,5,3,0,37:25.8
2024-07-29 9:37:27,443,2,5,2,2,0,37:25.8
2024-07-29 9:37:27,444,4,7,4,4,0,37:25.8
2024-07-29 9:37:27,455,1,6,1,2,0,37:25.8
2024-07-29 9:37:27,456,2,6,2,2,0,37:25.8
2024-07-29 9:37:27,457,1,6,1,2,0,37:25.8
2024-07-29 9:37:27,458,1,8,1,4,0,37:25.8
2024-07-29 9:37:28,436,1,5,1,2,0,37:26.9
2024-07-29 9:37:28,437,1,6,1,2,0,37:26.9
2024-07-29 9:37:28,438,1,6,1,2,0,37:26.9
2024-07-29 9:37:28,442,5,8,5,3,0,37:26.9
2024-07-29 9:37:28,443,2,5,2,2,0,37:26.9
2024-07-29 9:37:28,444,4,7,4,4,0,37:26.9
2024-07-29 9:37:28,455,1,6,1,2,0,37:26.9
2024-07-29 9:37:28,456,2,6,2,2,0,37:26.9
2024-07-29 9:37:28,457,1,6,1,2,0,37:26.9
2024-07-29 9:37:28,458,1,8,1,4,0,37:26.9
2024-07-29 9:37:29,436,1,5,1,2,0,37:27.9
2024-07-29 9:37:29,437,1,6,1,2,0,37:27.9
2024-07-29 9:37:29,438,1,6,1,2,0,37:27.9
2024-07-29 9:37:29,442,5,8,5,3,0,37:27.9
2024-07-29 9:37:29,443,2,5,2,2,0,37:27.9
2024-07-29 9:37:29,444,4,7,4,4,0,37:27.9
2024-07-29 9:37:29,455,1,6,1,2,0,37:27.9
2024-07-29 9:37:29,456,2,6,2,2,0,37:27.9
2024-07-29 9:37:29,457,1,6,1,2,0,37:27.9
2024-07-29 9:37:29,458,1,8,1,4,0,37:27.9
2024-07-29 9:37:18,436,1,5,1,2,0,37:17.8
2024-07-29 9:37:18,437,1,6,1,2,0,37:17.8
2024-07-29 9:37:18,438,1,6,1,2,0,37:17.8
2024-07-29 9:37:18,442,5,8,5,3,0,37:17.8
2024-07-29 9:37:18,443,2,5,2,2,0,37:17.8
2024-07-29 9:37:18,444,4,7,4,4,0,37:17.8
2024-07-29 9:37:18,455,1,6,1,2,0,37:17.8
2024-07-29 9:37:18,456,2,6,2,2,0,37:17.8
2024-07-29 9:37:18,457,1,6,1,2,0,37:17.8
2024-07-29 9:37:18,458,1,8,1,4,0,37:17.8
2024-07-29 9:37:19,436,1,5,1,2,0,37:18.9
2024-07-29 9:37:19,437,1,6,1,2,0,37:18.9
2024-07-29 9:37:19,438,1,6,1,2,0,37:18.9
2024-07-29 9:37:19,442,5,8,5,3,0,37:18.9
2024-07-29 9:37:19,443,2,5,2,2,0,37:18.9
2024-07-29 9:37:19,444,4,7,4,4,0,37:18.9
2024-07-29 9:37:19,455,1,6,1,2,0,37:18.9
2024-07-29 9:37:19,456,2,6,2,2,0,37:18.9
2024-07-29 9:37:19,457,1,6,1,2,0,37:18.9
2024-07-29 9:37:19,458,1,8,1,4,0,37:18.9
2024-07-29 9:37:30,436,1,5,1,2,0,37:28.9
2024-07-29 9:37:30,437,1,6,1,2,0,37:28.9
2024-07-29 9:37:30,438,1,6,1,2,0,37:28.9
2024-07-29 9:37:30,442,5,8,5,3,0,37:28.9
2024-07-29 9:37:30,443,2,5,2,2,0,37:28.9
2024-07-29 9:37:30,444,4,7,4,4,0,37:28.9
2024-07-29 9:37:30,455,1,6,1,2,0,37:28.9
2024-07-29 9:37:30,456,2,6,2,2,0,37:28.9
2024-07-29 9:37:30,457,1,6,1,2,0,37:28.9
2024-07-29 9:37:30,458,1,8,1,4,0,37:28.9

+ 0
- 4650
test_0729/data/tables/TL_IF_SIGL_CYCL.csv
File diff suppressed because it is too large
View File


+ 0
- 1
test_0729/intermediates/ids.json View File

@ -1 +0,0 @@
{"node_ids": ["106231", "106234", "106238", "106332", "106350", "108769", "109836", "109901", "109986"], "parent_ids": ["106231", "106234", "106238", "106332", "106350", "108769", "109836", "109901", "109986"], "child_ids": [], "uturn_ids": ["107587", "109295", "109296", "109297", "109313", "109333"], "coord_ids": [], "inter_nos": [436, 437, 438, 442, 443, 455, 456, 457, 458]}

test_0729/data/networks/new_sungnam_network_internal_target_0721.net.xml → test_0731/data/networks/new_sungnam_network_internal_target_0721.net.xml View File


test_0729/data/networks/sn.net.xml → test_0731/data/networks/sn.net.xml View File


test_0729/data/networks/sn.rou.xml → test_0731/data/networks/sn.rou.xml View File


test_0729/data/tables/TC_IF_TOD_DAY_PLAN.csv → test_0731/data/tables/TC_IF_TOD_DAY_PLAN.csv View File

@ -163,7 +163,7 @@
639,1,23,0,180,175,55,60,20,45,0,0,0,0,55,60,20,45,0,0,0,0,2024-07-25 15:54:37.318000
640,1,6,30,120,5,75,45,0,0,0,0,0,0,75,45,0,0,0,0,0,0,2024-07-25 15:54:37.318000
640,1,23,0,120,0,75,45,0,0,0,0,0,0,75,45,0,0,0,0,0,0,2024-07-25 15:54:37.318000
2,1,0,0,160,110,30,27,36,27,40,0,0,0,30,27,36,27,40,0,0,0,2024-07-29 09:37:21.788000
2,1,6,0,180,35,32,27,51,30,40,0,0,0,32,27,51,30,40,0,0,0,2024-07-29 09:37:21.803000
2,2,0,0,160,110,30,27,36,27,40,0,0,0,30,27,36,27,40,0,0,0,2024-07-29 09:37:21.821000
2,2,6,0,180,35,32,27,51,30,40,0,0,0,32,27,51,30,40,0,0,0,2024-07-29 09:37:21.837000
2,1,0,0,160,110,30,27,36,27,40,0,0,0,30,27,36,27,40,0,0,0,2024-07-31 09:17:18.022000
2,1,6,0,180,35,32,27,51,30,40,0,0,0,32,27,51,30,40,0,0,0,2024-07-31 09:17:18.022000
2,2,0,0,160,110,30,27,36,27,40,0,0,0,30,27,36,27,40,0,0,0,2024-07-31 09:17:18.038000
2,2,6,0,180,35,32,27,51,30,40,0,0,0,32,27,51,30,40,0,0,0,2024-07-31 09:17:18.038000

+ 3
- 0
test_0731/data/tables/TC_IF_TOD_HOLIDAY_PLAN.csv View File

@ -0,0 +1,3 @@
CRSRD_ID,MNTH,DAY,PLAN_NO,LAST_MDFCN_DT
3,1,1,3,2024-07-31 09:17:16.004000
3,1,2,3,2024-07-31 09:17:16.004000

test_0729/data/tables/TC_IF_TOD_RED_YELLO.csv → test_0731/data/tables/TC_IF_TOD_RED_YELLO.csv View File

@ -207,7 +207,7 @@
639,1,4,6,0,3,42,1,0,3,42,
640,1,1,8,0,3,2,17,0,3,2,
640,1,2,4,0,3,45,0,0,3,45,
2,1,1,0,1,6,3,4,5,6,7,2024-07-29 09:37:21.803000
2,1,2,1,2,7,4,5,6,7,8,2024-07-29 09:37:21.803000
2,2,1,0,1,6,3,4,5,6,7,2024-07-29 09:37:21.821000
2,2,2,1,2,7,4,5,6,7,8,2024-07-29 09:37:21.837000
2,1,1,0,1,6,3,4,5,6,7,2024-07-31 09:17:18.022000
2,1,2,1,2,7,4,5,6,7,8,2024-07-31 09:17:18.022000
2,2,1,0,1,6,3,4,5,6,7,2024-07-31 09:17:18.038000
2,2,2,1,2,7,4,5,6,7,8,2024-07-31 09:17:18.054000

test_0729/data/tables/TC_IF_TOD_WEEK_PLAN.csv → test_0731/data/tables/TC_IF_TOD_WEEK_PLAN.csv View File

@ -1,5 +1,5 @@
CRSRD_ID,SUN_PLAN_NO,MON_PLAN_NO,TUE_PLAN_NO,WED_PLAN_NO,THU_PLAN_NO,FRI_PLAN_NO,SAT_PLAN_NO,LAST_MDFCN_DT
1,2,1,1,1,1,1,2,2024-07-29 09:37:17.782000
1,2,1,1,1,1,1,2,2024-07-31 09:17:13.981000
436,1,1,1,1,1,1,1,2024-07-25 16:01:06
437,1,1,1,1,1,1,1,2024-07-25 16:01:06
438,1,1,1,1,1,1,1,2024-07-25 16:01:06

+ 11101
- 0
test_0731/data/tables/TL_IF_SIGL.csv
File diff suppressed because it is too large
View File


+ 53
- 0
test_0731/data/tables/TL_IF_SIGL_CYCL.csv View File

@ -0,0 +1,53 @@
OCRN_DT,CRSRD_ID,RINGA_PHASE1,RINGA_PHASE2,RINGA_PHASE3,RINGA_PHASE4,RINGA_PHASE5,RINGA_PHASE6,RINGA_PHASE7,RINGA_PHASE8,RINGB_PHASE1,RINGB_PHASE2,RINGB_PHASE3,RINGB_PHASE4,RINGB_PHASE5,RINGB_PHASE6,RINGB_PHASE7,RINGB_PHASE8,FRST_REG_DT
2024-07-31 09:00:07,437,71,28,58,43,0,0,0,0,71,28,58,43,0,0,0,0,2024-07-31 09:00:06.310000
2024-07-31 09:00:58,456,15,28,12,35,0,0,0,0,15,28,12,35,0,0,0,0,2024-07-31 09:00:57.652000
2024-07-31 09:01:38,442,31,27,32,49,45,16,0,0,31,27,32,49,45,16,0,0,2024-07-31 09:01:37.876000
2024-07-31 09:01:42,443,125,25,50,0,0,0,0,0,125,25,50,0,0,0,0,0,2024-07-31 09:01:41.896000
2024-07-31 09:05:36,455,63,27,0,0,0,0,0,0,63,27,0,0,0,0,0,0,2024-07-31 09:05:35.438000
2024-07-31 09:06:51,457,45,20,40,40,35,0,0,0,45,20,40,40,35,0,0,0,2024-07-31 09:06:51.140000
2024-07-31 09:07:05,455,63,27,0,0,0,0,0,0,63,27,0,0,0,0,0,0,2024-07-31 09:07:05.180000
2024-07-31 09:08:22,443,125,25,50,0,0,0,0,0,125,25,50,0,0,0,0,0,2024-07-31 09:08:21.478000
2024-07-31 09:08:36,455,63,27,0,0,0,0,0,0,63,27,0,0,0,0,0,0,2024-07-31 09:08:35.646000
2024-07-31 09:11:28,456,15,28,12,35,0,0,0,0,15,28,12,35,0,0,0,0,2024-07-31 09:11:27.753000
2024-07-31 09:11:47,444,30,51,30,44,45,0,0,0,30,51,30,44,45,0,0,0,2024-07-31 09:11:46.878000
2024-07-31 09:12:53,457,45,20,40,40,35,0,0,0,45,20,40,40,35,0,0,0,2024-07-31 09:12:52.296000
2024-07-31 09:12:58,456,15,28,12,35,0,0,0,0,15,28,12,35,0,0,0,0,2024-07-31 09:12:57.315000
2024-07-31 09:14:35,455,63,27,0,0,0,0,0,0,63,27,0,0,0,0,0,0,2024-07-31 09:14:34.969000
2024-07-31 09:14:58,442,35,27,30,47,45,16,0,0,35,27,30,47,45,16,0,0,2024-07-31 09:14:58.111000
2024-07-31 09:15:02,443,125,25,50,0,0,0,0,0,125,25,50,0,0,0,0,0,2024-07-31 09:15:02.136000
2024-07-31 09:01:48,444,30,51,30,44,45,0,0,0,30,51,30,44,45,0,0,0,2024-07-31 09:01:47.953000
2024-07-31 09:02:28,456,15,28,12,35,0,0,0,0,15,28,12,35,0,0,0,0,2024-07-31 09:02:28.229000
2024-07-31 09:02:37,455,63,27,0,0,0,0,0,0,63,27,0,0,0,0,0,0,2024-07-31 09:02:36.242000
2024-07-31 09:03:56,436,50,85,35,30,0,0,0,0,50,85,35,30,0,0,0,0,2024-07-31 09:03:55.968000
2024-07-31 09:03:57,456,15,28,12,35,0,0,0,0,15,28,12,35,0,0,0,0,2024-07-31 09:03:56.970000
2024-07-31 09:04:05,455,63,27,0,0,0,0,0,0,63,27,0,0,0,0,0,0,2024-07-31 09:04:04.975000
2024-07-31 09:04:57,442,35,27,30,47,45,16,0,0,35,27,30,47,45,16,0,0,2024-07-31 09:04:57.193000
2024-07-31 09:05:02,443,125,25,50,0,0,0,0,0,125,25,50,0,0,0,0,0,2024-07-31 09:05:02.207000
2024-07-31 09:06:57,456,15,28,12,35,0,0,0,0,15,28,12,35,0,0,0,0,2024-07-31 09:06:57.143000
2024-07-31 09:08:28,444,30,51,30,44,45,0,0,0,30,51,30,44,45,0,0,0,2024-07-31 09:08:27.520000
2024-07-31 09:09:51,457,45,20,40,40,35,0,0,0,45,20,40,40,35,0,0,0,2024-07-31 09:09:51.139000
2024-07-31 09:10:06,455,63,27,0,0,0,0,0,0,63,27,0,0,0,0,0,0,2024-07-31 09:10:05.210000
2024-07-31 09:11:37,442,35,27,30,47,45,16,0,0,35,27,30,47,45,16,0,0,2024-07-31 09:11:36.808000
2024-07-31 09:13:28,437,77,28,46,49,0,0,0,0,77,28,46,49,0,0,0,0,2024-07-31 09:13:27.524000
2024-07-31 09:15:07,444,30,51,30,44,45,0,0,0,30,51,30,44,45,0,0,0,2024-07-31 09:15:07.167000
2024-07-31 09:16:06,455,63,27,0,0,0,0,0,0,63,27,0,0,0,0,0,0,2024-07-31 09:16:05.538000
2024-07-31 08:59:27,456,15,28,12,35,0,0,0,0,15,28,12,35,0,0,0,0,2024-07-31 08:59:26.908000
2024-07-31 09:00:53,457,45,20,40,35,40,0,0,0,45,20,40,35,40,0,0,0,2024-07-31 09:00:52.602000
2024-07-31 09:01:05,455,63,27,0,0,0,0,0,0,63,27,0,0,0,0,0,0,2024-07-31 09:01:04.673000
2024-07-31 09:03:27,437,77,28,46,49,0,0,0,0,77,28,46,49,0,0,0,0,2024-07-31 09:03:26.630000
2024-07-31 09:03:52,457,45,20,40,40,35,0,0,0,45,20,40,40,35,0,0,0,2024-07-31 09:03:51.955000
2024-07-31 09:08:17,442,35,27,30,47,45,16,0,0,35,27,30,47,45,16,0,0,2024-07-31 09:08:16.448000
2024-07-31 09:10:38,436,50,85,35,30,0,0,0,0,50,85,35,30,0,0,0,0,2024-07-31 09:10:37.417000
2024-07-31 09:11:36,455,63,27,0,0,0,0,0,0,63,27,0,0,0,0,0,0,2024-07-31 09:11:35.794000
2024-07-31 09:11:42,443,125,25,50,0,0,0,0,0,125,25,50,0,0,0,0,0,2024-07-31 09:11:41.898000
2024-07-31 09:13:06,455,63,27,0,0,0,0,0,0,63,27,0,0,0,0,0,0,2024-07-31 09:13:05.361000
2024-07-31 09:14:26,456,15,28,12,35,0,0,0,0,15,28,12,35,0,0,0,0,2024-07-31 09:14:25.900000
2024-07-31 09:15:53,457,45,20,40,40,35,0,0,0,45,20,40,40,35,0,0,0,2024-07-31 09:15:52.467000
2024-07-31 09:15:57,456,15,28,12,35,0,0,0,0,15,28,12,35,0,0,0,0,2024-07-31 09:15:56.488000
2024-07-31 09:16:47,437,77,28,46,49,0,0,0,0,77,28,46,49,0,0,0,0,2024-07-31 09:16:46.802000
2024-07-31 08:59:36,455,63,27,0,0,0,0,0,0,63,27,0,0,0,0,0,0,2024-07-31 08:59:35.992000
2024-07-31 09:05:27,456,15,28,12,35,0,0,0,0,15,28,12,35,0,0,0,0,2024-07-31 09:05:26.371000
2024-07-31 09:06:47,437,77,28,46,49,0,0,0,0,77,28,46,49,0,0,0,0,2024-07-31 09:06:47.122000
2024-07-31 09:09:56,456,15,28,12,35,0,0,0,0,15,28,12,35,0,0,0,0,2024-07-31 09:09:56.159000
2024-07-31 09:10:08,437,77,28,46,49,0,0,0,0,77,28,46,49,0,0,0,0,2024-07-31 09:10:07.233000
2024-07-31 09:17:18,436,50,85,35,30,0,0,0,0,50,85,35,30,0,0,0,0,2024-07-31 09:17:18.007000

test_0729/data/tables/angle.csv → test_0731/data/tables/angle.csv View File


test_0729/data/tables/coord.csv → test_0731/data/tables/coord.csv View File


test_0729/data/tables/inter_info.csv → test_0731/data/tables/inter_info.csv View File


test_0729/data/tables/inter_node.csv → test_0731/data/tables/inter_node.csv View File

@ -8,3 +8,9 @@ inter_no,node_id,inter_type
456,106231,parent
457,106234,parent
458,106238,parent
456,109295,child
457,109296,child
457,109297,child
443,109333,child
437,107587,child
437,109313,child

test_0729/data/tables/nema.csv → test_0731/data/tables/nema.csv View File


test_0729/data/tables/plan.csv → test_0731/data/tables/plan.csv View File


test_0729/data/tables/turn_type.csv → test_0731/data/tables/turn_type.csv View File


test_0729/data/tables/turn_type_modified.csv → test_0731/data/tables/turn_type_modified.csv View File


test_0729/data/tables/u_condition.csv → test_0731/data/tables/u_condition.csv View File


test_0729/data/tables/uturn.csv → test_0731/data/tables/uturn.csv View File


+ 58
- 0
test_0731/intermediates/ids.json View File

@ -0,0 +1,58 @@
{
"node_ids": [
"106231",
"106234",
"106238",
"106332",
"106350",
"108769",
"109836",
"109901",
"109986",
"107587",
"109295",
"109296",
"109297",
"109313",
"109333"
],
"parent_ids": [
"106231",
"106234",
"106238",
"106332",
"106350",
"108769",
"109836",
"109901",
"109986"
],
"child_ids": [
"107587",
"109295",
"109296",
"109297",
"109313",
"109333"
],
"uturn_ids": [
"107587",
"109295",
"109296",
"109297",
"109313",
"109333"
],
"coord_ids": [],
"inter_nos": [
436,
437,
438,
442,
443,
455,
456,
457,
458
]
}

test_0729/intermediates/isa2move.json → test_0731/intermediates/isa2move.json View File


test_0729/intermediates/isa2move.pkl → test_0731/intermediates/isa2move.pkl View File


test_0729/intermediates/isp2move.pkl → test_0731/intermediates/isp2move.pkl View File


test_0729/intermediates/match1.csv → test_0731/intermediates/match1.csv View File


test_0729/intermediates/match6.csv → test_0731/intermediates/match6.csv View File


test_0729/intermediates/matching.csv → test_0731/intermediates/matching.csv View File


test_0729/intermediates/node2init.json → test_0731/intermediates/node2init.json View File


test_0729/intermediates/node2num_cycles.json → test_0731/intermediates/node2num_cycles.json View File

@ -7,5 +7,11 @@
"108769": 3,
"109836": 3,
"109901": 5,
"109986": 3
"109986": 3,
"107587": 3,
"109295": 5,
"109296": 3,
"109297": 3,
"109313": 3,
"109333": 3
}

test_0729/results/issues_preprocess_daily.txt → test_0731/results/issues_preprocess_daily.txt View File


Loading…
Cancel
Save