Rob Fitzgerald
Rob Fitzgerald
i was attempting to read an `InputStream` of a file on s3 which turns out to have been corrupted. when i call `readCsv` on the input with my custom header...
hi there! thanks for your work. i want to use uom in code that reads CSVs of velocity data from a user and builds lookup functions from it. i would...
[RouteE Compass](https://github.com/NREL/routee-compass) can be an optional dependency for HIVE and used in-the-loop as the road network during simulation.
i recently made a custom dispatcher and replaced all of the default dispatchers with that custom dispatcher. because the DispatcherConfig requires it's fields, including ideal_fastcharge_soc_limit, i decided to include them...
noted today that h3 is now at 4.0. the 4.0 API changes the name of methods. straight off the top of the [documentation](https://h3geo.org/docs/api/indexing/), the [3.x geo_to_h3 and h3_to_geo functions](https://h3geo.org/docs/3.x/api/indexing) have...
a `Passenger` is a kind of thing of which `Resource` more broadly defines. in the case of `Passenger`, it is a resource with a pickup and dropoff location which takes...
in order to more realistically estimate travel times, HIVE should support reading tables describing speeds by time of day, of the form: time_seconds | link_id | speed_kph --- | ---...
we use networkx under the hood for shortest path, but we also keep a Map[LinkId, Link]. when we want to update speeds, we will need to update them in both...
i'm looking at our [example](https://github.com/NREL/hive/blob/main/examples/download_road_network.py) and there's no documentation on what the schema of the geojson is supposed to be. i'm assuming it's reading the output of an OSMNx network...
throughout hive, especially in the VehicleState FSM, there are methods with the following signature: ```python Tuple[Tuple[Exception], Tuple[T]] ``` where _T_ may be `SimulationState`, or, some kind of vehicle state, or...