Skip to content

Commit

Permalink
unifying links #2
Browse files Browse the repository at this point in the history
  • Loading branch information
behrisch committed Jan 6, 2024
1 parent 32383a6 commit 91de989
Show file tree
Hide file tree
Showing 10 changed files with 50 additions and 50 deletions.
2 changes: 1 addition & 1 deletion docs/web/docs/Networks/Elevation.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ each edge

To calibrate the color range to the elevations found in the network, the *Recalibrate Rainbow* within the gui settings dialog button may be used.

Furthermore, [sumo-gui](../sumo-gui.md) is [available with support for 3D-Visualization](https://sumo.dlr.de/daily/sumo-msvc12extrax64-git.zip) which can be used to visualize elevation profiles as well.
Furthermore, there is an "extra" version of [sumo-gui](../sumo-gui.md) [available with support for 3D-Visualization](../Downloads.md) which can be used to visualize elevation profiles as well.

## Models that use Elevation Data

Expand Down
2 changes: 1 addition & 1 deletion docs/web/docs/Simulation/Traffic_Lights.md
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,7 @@ the input file.
TLS Link indices can be access using either

- [sumolib](../Tools/Sumolib.md) using
[tls.getConnections()](https://sumo.dlr.de/daily/pydoc/sumolib.net.html#TLS)
[tls.getConnections()](https://sumo.dlr.de/pydoc/sumolib.net.html#TLS)
- or [TraCI](../TraCI.md) using
[traci.trafficlight.getControlledLinks()](../TraCI/Traffic_Lights_Value_Retrieval.md#structure_of_compound_object_controlled_links)

Expand Down
2 changes: 1 addition & 1 deletion docs/web/docs/TraCI/Change_Inductionloop_State.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ Changes the state of a induction loop. The values that can be changed and the pa

| Variable | ValueType | Description | [Python Method](../TraCI/Interfacing_TraCI_from_Python.md) |
|---------------------------|----------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------|
| time (0x22) | double | Persistently overrides the measured time since detection with the given value. Setting a negative value resets the override. | [overrideTimeSinceDetection](https://sumo.dlr.de/daily/pydoc/traci._inductionloop.html#InductionLoopDomain-overrideTimeSinceDetection) |
| time (0x22) | double | Persistently overrides the measured time since detection with the given value. Setting a negative value resets the override. | [overrideTimeSinceDetection](https://sumo.dlr.de/pydoc/traci._inductionloop.html#InductionLoopDomain-overrideTimeSinceDetection) |

# compound message details

Expand Down
2 changes: 1 addition & 1 deletion docs/web/docs/TraCI/Change_Lane_Area_Detector_State.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,4 @@ Changes the state of a lane area detector. The values that can be changed and th

| Variable | ValueType | Description | [Python Method](../TraCI/Interfacing_TraCI_from_Python.md) |
|---------------------------|----------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------|
| vehicle number (0x22) | integer | Persistently overrides the number of vehicles on the detector. Setting a negative value resets the override. | [overrideVehicleNumber](https://sumo.dlr.de/daily/pydoc/traci._lanearea.html#LaneAreaDomain-overrideVehicleNumber) |
| vehicle number (0x22) | integer | Persistently overrides the number of vehicles on the detector. Setting a negative value resets the override. | [overrideVehicleNumber](https://sumo.dlr.de/pydoc/traci._lanearea.html#LaneAreaDomain-overrideVehicleNumber) |
2 changes: 1 addition & 1 deletion docs/web/docs/TraCI/Interfacing_TraCI_from_Python.md
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ The following filter types are available:
- VClass: Only return vehicles of the specified vClasses

See the [pydoc
documentation](https://sumo.dlr.de/daily/pydoc/traci._vehicle.html#VehicleDomain-addSubscriptionFilterCFManeuver)
documentation](https://sumo.dlr.de/pydoc/traci._vehicle.html#VehicleDomain-addSubscriptionFilterCFManeuver)
for detailed specifications.

!!! caution
Expand Down
24 changes: 12 additions & 12 deletions docs/web/docs/TraCI/Object_Context_Subscription.md
Original file line number Diff line number Diff line change
Expand Up @@ -117,16 +117,16 @@ Currently, the following context subscription filter types are implemented:

| filter name | filter type | parameter value | description | uses context range |
| --------- | :---------: | :-----------------: | ----------------- | :----------------------------: |
| [lanes](https://sumo.dlr.de/daily/pydoc/traci._vehicle.html#VehicleDomain-addSubscriptionFilterLanes) | 0x01 | list(byte) | only return vehicles on list of lanes relative to ego vehicle | no |
| [no-opposite](https://sumo.dlr.de/daily/pydoc/traci._vehicle.html#VehicleDomain-addSubscriptionFilterNoOpposite) | 0x02 | - | exclude vehicles on opposite (and other) lanes | yes |
| [downstream distance](https://sumo.dlr.de/daily/pydoc/traci._vehicle.html#VehicleDomain-addSubscriptionFilterDownstreamDistance) | 0x03| double | only return vehicles within the given downstream distance | no |
| [upstream distance](https://sumo.dlr.de/daily/pydoc/traci._vehicle.html#VehicleDomain-addSubscriptionFilterUpstreamDistance) | 0x04 | double | only return vehicles within the given maximal upstream distance | no |
| [leader/follower](https://sumo.dlr.de/daily/pydoc/traci._vehicle.html#VehicleDomain-addSubscriptionFilterLeadFollow) | 0x05 | - | only return leader and follower on the specified lanes (requires 'lanes' filter) | no |
| [turn](https://sumo.dlr.de/daily/pydoc/traci._vehicle.html#VehicleDomain-addSubscriptionFilterTurn) | 0x07 | - | only return foes on upcoming junctions | no |
| [vClass](https://sumo.dlr.de/daily/pydoc/traci._vehicle.html#VehicleDomain-addSubscriptionFilterVClass) | 0x08 | list(string) | only return vehicles of the given vClass(es) | yes |
| [vType](https://sumo.dlr.de/daily/pydoc/traci._vehicle.html#VehicleDomain-addSubscriptionFilterVType) | 0x09 | list(string) | only return vehicles of the given vType(s) | yes |
| [field of vision](https://sumo.dlr.de/daily/pydoc/traci._vehicle.html#VehicleDomain-addSubscriptionFilterFieldOfVision) | 0x0A | double | only return vehicles within field of vision (angle in degrees) | yes |
| [lateral distance](https://sumo.dlr.de/daily/pydoc/traci._vehicle.html#VehicleDomain-addSubscriptionFilterLateralDistance) | 0x0B | double | only return vehicles within the given lateral distance | no |
| [lanes](https://sumo.dlr.de/pydoc/traci._vehicle.html#VehicleDomain-addSubscriptionFilterLanes) | 0x01 | list(byte) | only return vehicles on list of lanes relative to ego vehicle | no |
| [no-opposite](https://sumo.dlr.de/pydoc/traci._vehicle.html#VehicleDomain-addSubscriptionFilterNoOpposite) | 0x02 | - | exclude vehicles on opposite (and other) lanes | yes |
| [downstream distance](https://sumo.dlr.de/pydoc/traci._vehicle.html#VehicleDomain-addSubscriptionFilterDownstreamDistance) | 0x03| double | only return vehicles within the given downstream distance | no |
| [upstream distance](https://sumo.dlr.de/pydoc/traci._vehicle.html#VehicleDomain-addSubscriptionFilterUpstreamDistance) | 0x04 | double | only return vehicles within the given maximal upstream distance | no |
| [leader/follower](https://sumo.dlr.de/pydoc/traci._vehicle.html#VehicleDomain-addSubscriptionFilterLeadFollow) | 0x05 | - | only return leader and follower on the specified lanes (requires 'lanes' filter) | no |
| [turn](https://sumo.dlr.de/pydoc/traci._vehicle.html#VehicleDomain-addSubscriptionFilterTurn) | 0x07 | - | only return foes on upcoming junctions | no |
| [vClass](https://sumo.dlr.de/pydoc/traci._vehicle.html#VehicleDomain-addSubscriptionFilterVClass) | 0x08 | list(string) | only return vehicles of the given vClass(es) | yes |
| [vType](https://sumo.dlr.de/pydoc/traci._vehicle.html#VehicleDomain-addSubscriptionFilterVType) | 0x09 | list(string) | only return vehicles of the given vType(s) | yes |
| [field of vision](https://sumo.dlr.de/pydoc/traci._vehicle.html#VehicleDomain-addSubscriptionFilterFieldOfVision) | 0x0A | double | only return vehicles within field of vision (angle in degrees) | yes |
| [lateral distance](https://sumo.dlr.de/pydoc/traci._vehicle.html#VehicleDomain-addSubscriptionFilterLateralDistance) | 0x0B | double | only return vehicles within the given lateral distance | no |

### Intercompatibility

Expand All @@ -139,10 +139,10 @@ Consequently, a combination of, e.g., the field-of-vision and lateral distance f
- In the [python
library](../TraCI/Interfacing_TraCI_from_Python.md#context_subscriptions),
all domains support the methods [*subscribeContext* and
*unsubscribeContext*](https://sumo.dlr.de/daily/pydoc/traci.domain.html#Domain)
*unsubscribeContext*](https://sumo.dlr.de/pydoc/traci.domain.html#Domain)
- For the python client several [methods for adding context filters
for vehicle-to-vehicle context
subscriptions](https://sumo.dlr.de/daily/pydoc/traci._vehicle.html#VehicleDomain-addSubscriptionFilterCFManeuver)
subscriptions](https://sumo.dlr.de/pydoc/traci._vehicle.html#VehicleDomain-addSubscriptionFilterCFManeuver)
are included.
- In the [C++ library](../TraCI/C++TraCIAPI.md), the method
*simulation.subscribeContext* takes an additional argument that
Expand Down

0 comments on commit 91de989

Please sign in to comment.