-
Notifications
You must be signed in to change notification settings - Fork 244
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adding suburban_junctions.py and a command process suburban-junctions…
… to load db table from added file in prev commit. Removed updating suburban_junctions table from accidents.
- Loading branch information
Showing
4 changed files
with
110 additions
and
69 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,101 @@ | ||
# -*- coding: utf-8 -*- | ||
import sys | ||
from typing import Dict, List | ||
import logging | ||
from openpyxl import load_workbook | ||
from anyway.app_and_db import db | ||
from anyway.models import SuburbanJunction | ||
|
||
|
||
SUBURBAN_JUNCTION = "suburban_junction" | ||
ACCIDENTS = "accidents" | ||
CITIES = "cities" | ||
STREETS = "streets" | ||
ROADS = "roads" | ||
URBAN_INTERSECTION = "urban_intersection" | ||
NON_URBAN_INTERSECTION = "non_urban_intersection" | ||
NON_URBAN_INTERSECTION_HEBREW = "non_urban_intersection_hebrew" | ||
DICTIONARY = "dictionary" | ||
INVOLVED = "involved" | ||
VEHICLES = "vehicles" | ||
suburban_junctions_dict: Dict[int, dict] = {} | ||
|
||
|
||
def parse(filename): | ||
read_from_file(filename) | ||
import_suburban_junctions_into_db() | ||
|
||
|
||
def read_from_file(filename: str) -> dict: | ||
for j in _iter_rows(filename): | ||
add_suburban_junction(j) | ||
|
||
|
||
def _iter_rows(filename): | ||
workbook = load_workbook(filename, read_only=True) | ||
sheet = workbook["מילון צמתים לא עירוניים"] | ||
rows = sheet.rows | ||
first_row = next(rows) | ||
headers = ["ZOMET", "SUG_DEREH", "REHOV1_KVISH1", "REHOV2_KVISH2", "KM", "IKS", "IGREK", "IDF", | ||
"SHEM_ZOMET", "SUG_ZOMET", "KVISH_RASHI", "KM_RASHI", "SHNAT_ZOMET_SGIRA", "MAHOZ", | ||
"NAFA", "EZOR_TIVI", "METROPOLIN", "MAAMAD_MINIZIPALI", "EZOR_STAT" | ||
] | ||
assert [cell.value for cell in first_row] == headers, "File does not have expected headers" | ||
for row in rows: | ||
# In order to ignore empty lines | ||
if not row[0].value: | ||
continue | ||
roads = set() | ||
roads.add(row[2].value) | ||
if row[3].value: | ||
roads.add(row[3].value) | ||
j = SuburbanJunction() | ||
j.non_urban_intersection = row[0].value | ||
j.non_urban_intersection_hebrew = row[8].value | ||
j.roads = roads | ||
yield j | ||
|
||
|
||
def import_suburban_junctions_into_db(): | ||
items = [{"non_urban_intersection": k, | ||
NON_URBAN_INTERSECTION_HEBREW: fix_name_len(v[NON_URBAN_INTERSECTION_HEBREW]), | ||
ROADS: v[ROADS]} for | ||
k, v in suburban_junctions_dict.items()] | ||
logging.debug( | ||
f"Writing to db: {len(items)} suburban junctions" | ||
) | ||
db.session.query(SuburbanJunction).delete() | ||
db.session.bulk_insert_mappings(SuburbanJunction, items) | ||
db.session.commit() | ||
logging.debug(f"Done.") | ||
|
||
|
||
def fix_name_len(name: str) -> str: | ||
if not isinstance(name, str): | ||
return name | ||
if len(name) > SuburbanJunction.MAX_NAME_LEN: | ||
logging.error(f"Suburban_junction name too long ({len(name)}>" | ||
f"{SuburbanJunction.MAX_NAME_LEN}):{name}.") | ||
return name[: SuburbanJunction.MAX_NAME_LEN] | ||
|
||
|
||
def add_suburban_junction(added: SuburbanJunction): | ||
if added.non_urban_intersection in suburban_junctions_dict: | ||
existing_junction = suburban_junctions_dict[added.non_urban_intersection] | ||
added_heb = added.non_urban_intersection_hebrew | ||
if existing_junction[NON_URBAN_INTERSECTION_HEBREW] != added_heb and added_heb is not None: | ||
logging.error( | ||
f"Duplicate non-urban intersection name: {added.non_urban_intersection}: existing:" | ||
f"{existing_junction[NON_URBAN_INTERSECTION_HEBREW]}, added: {added_heb}" | ||
) | ||
existing_junction[NON_URBAN_INTERSECTION_HEBREW] = added_heb | ||
existing_junction[ROADS].update(set(added.roads)) | ||
else: | ||
suburban_junctions_dict[added.non_urban_intersection] = { | ||
NON_URBAN_INTERSECTION_HEBREW: added.non_urban_intersection_hebrew, | ||
ROADS: set(added.roads), | ||
} | ||
|
||
|
||
if __name__ == '__main__': | ||
parse(sys.argv[1]) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters