Skip to content

Commit

Permalink
fixing build instructions and whitespace #2
Browse files Browse the repository at this point in the history
  • Loading branch information
behrisch committed Jan 25, 2024
1 parent a84b8fd commit 866d516
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 8 deletions.
11 changes: 6 additions & 5 deletions docs/web/docs/Installing/Linux_Build.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,12 @@ To be able to run SUMO on Linux, just follow these steps:
For ubuntu this boils down to

```
 sudo apt-get install git cmake python3 g++ libxerces-c-dev libfox-1.6-dev libgdal-dev libproj-dev libgl2ps-dev python3-dev swig default-jdk maven libeigen3-dev
 git clone --recursive https://github.com/eclipse-sumo/sumo
 export SUMO_HOME="$PWD/sumo"
 cmake -B build .
 cmake --build build -j$(nproc)
sudo apt-get install git cmake python3 g++ libxerces-c-dev libfox-1.6-dev libgdal-dev libproj-dev libgl2ps-dev python3-dev swig default-jdk maven libeigen3-dev
git clone --recursive https://github.com/eclipse-sumo/sumo
cd sumo
export SUMO_HOME="$PWD"
cmake -B build .
cmake --build build -j$(nproc)
```

Each of these steps is described in more detail and with possible
Expand Down
6 changes: 3 additions & 3 deletions docs/web/docs/Networks/Import/MATsim.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,10 @@ The value of CAPACITY_NORM is controlled via the option **--capacity-norm** {{DT

## Access permissions

MATSim features a number of so-called transport modes defined in its **org.matsim.api.core.v01.TransportMode** class. The lane access
MATSim features a number of so-called transport modes defined in its **org.matsim.api.core.v01.TransportMode** class. The lane access
permissions in SUMO are derived from the MATSim transport modes.

!!! caution
Currently the access permissions depend on whether XML validation is conducted or not. When **--xml-validation auto** is used, the default
transport mode "car" from the MATSim Document Type Definition (DTD) is used when no other mode is given in the `link` element. Otherwise
Currently the access permissions depend on whether XML validation is conducted or not. When **--xml-validation auto** is used, the default
transport mode "car" from the MATSim Document Type Definition (DTD) is used when no other mode is given in the `link` element. Otherwise
in the absence of a mode value, all vehicle classes are allowed in SUMO.

0 comments on commit 866d516

Please sign in to comment.