Skip to content

Commit

Permalink
Formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
GregorRyb committed Jan 24, 2024
1 parent 3ab9085 commit 1e6a3dd
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions src/main/java/org/matsim/run/prepare/ParkingCapacities.java
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,6 @@
import java.util.List;
/**
* This class writes out a network and a tsv file with the parking capacites of Leipzig according to a simplified calculation based on the RASt.
*
*
*/

public final class ParkingCapacities {
Expand All @@ -24,11 +22,8 @@ private ParkingCapacities() {
throw new UnsupportedOperationException("This is a utility class and cannot be instantiated");
}



public static void main(String[] args) throws IOException {
for (Link l: network.getLinks().values()) {

//skip motorways and non car links
if (l.getAllowedModes().contains(TransportMode.car) && l.getFreespeed() < 55/3.6) {
double usableLength = (l.getLength() - 10) * 0.9;
Expand Down

0 comments on commit 1e6a3dd

Please sign in to comment.