Purpose it to create a script that can be referenced to generate an "inner-joined" layer that is the match between the two datasets of paving plan and bike path plan from OakDOT.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
import random | |
class Passenger: | |
"""Passenger with seating ticket.""" | |
def __init__(self, seat: int): | |
self.seat_assigned = seat | |
self.seat_taken = None | |
self.is_rogue = False # if rogue, pax will sit in wrong seat | |
def make_rogue(self): |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
We can make this file beautiful and searchable if this error is corrected: It looks like row 3 should actually have 13 columns, instead of 7 in line 2.
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
,PROJECT,CONTRACT NO.,CHANGE ORDER NO.,APPROVED DATE,CONTRACTOR,CATEGORY,TITLE,AMOUNT ($),DESCRIPTION,AUTHORITY APPROVER,CONTRACTOR COUNTERPARTY,CONSULTANT SUPPORT | |
0,CP 1,HSR 13-06,00386,6/25/2021,Tutor Perini/Zachry/Parsons,Differing Site Conditions,"AT&T Task 4, Phase II MH-769 Caltrans Water Service Relocation - Construction","$36,061.19",This is a change to a contract for construction services in the Central Valley. The reason for the change is to fully compensate the Contractor for the work performed to relocate the existing Caltrans 2-inch irrigation water service line located at Ashlan Avenue across SR-99 on-ramp. This service line was in physical conflict with the proposed location of the AT&T intercept vault requiring the waterline relocation outside of the proposed AT&T intercept vault footprint location.,Scott Kennedy - Senior Contract Manager,Ghassan Ariqat - Project Manager/Director,Eric Stassevitch - DB Oversight Manager | |
1,CP 1,HSR 13-06,00119.1 R1,4/2/2021,Tutor Perini/Zachry/Parsons,Third Part |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<meta http-equiv="X-UA-Compatible" content="ie=edge"> | |
<title>Traffic Simulation</title> | |
</head> | |
<body> | |
<h3>Controls</h3> |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
NewerOlder