Skip to content

Commit 2a489b3

Browse files
authored
Fix: dead link URL in doc (AtsushiSakai#1087)
* fix dead url links * change link to MPC course * remove dead link
1 parent 95eedba commit 2a489b3

File tree

35 files changed

+55
-62
lines changed

35 files changed

+55
-62
lines changed

.github/FUNDING.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# These are supported funding model platforms
22
github: AtsushiSakai
33
patreon: myenigma
4-
custom: https://www.paypal.me/myenigmapay/
4+
custom: https://www.paypal.com/paypalme/myenigmapay/

ArmNavigation/arm_obstacle_navigation/arm_obstacle_navigation.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ def detect_collision(line_seg, circle):
3434
"""
3535
Determines whether a line segment (arm link) is in contact
3636
with a circle (obstacle).
37-
Credit to: http://doswa.com/2009/07/13/circle-segment-intersectioncollision.html
37+
Credit to: https://web.archive.org/web/20200130224918/http://doswa.com/2009/07/13/circle-segment-intersectioncollision.html
3838
Args:
3939
line_seg: List of coordinates of line segment endpoints e.g. [[1, 1], [2, 2]]
4040
circle: List of circle coordinates and radius e.g. [0, 0, 0.5] is a circle centered

ArmNavigation/arm_obstacle_navigation/arm_obstacle_navigation_2.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ def detect_collision(line_seg, circle):
6666
"""
6767
Determines whether a line segment (arm link) is in contact
6868
with a circle (obstacle).
69-
Credit to: http://doswa.com/2009/07/13/circle-segment-intersectioncollision.html
69+
Credit to: https://web.archive.org/web/20200130224918/http://doswa.com/2009/07/13/circle-segment-intersectioncollision.html
7070
Args:
7171
line_seg: List of coordinates of line segment endpoints e.g. [[1, 1], [2, 2]]
7272
circle: List of circle coordinates and radius e.g. [0, 0, 0.5] is a circle centered

PathPlanning/BugPlanning/bug.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
"""
22
Bug Planning
33
author: Sarim Mehdi([email protected])
4-
Source: https://sites.google.com/site/ece452bugalgorithms/
4+
Source: https://web.archive.org/web/20201103052224/https://sites.google.com/site/ece452bugalgorithms/
55
"""
66

77
import numpy as np

PathPlanning/DynamicMovementPrimitives/dynamic_movement_primitives.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
1010
More information on Dynamic Movement Primitives available at:
1111
https://arxiv.org/abs/2102.03861
12-
https://www.frontiersin.org/articles/10.3389/fncom.2013.00138/full
12+
https://www.frontiersin.org/journals/computational-neuroscience/articles/10.3389/fncom.2013.00138/full
1313
1414
"""
1515

PathPlanning/Eta3SplineTrajectory/eta3_spline_trajectory.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
Atsushi Sakai (@Atsushi_twi)
77
88
Refs:
9-
- https://jwdinius.github.io/blog/2018/eta3traj
9+
- https://jwdinius.github.io/blog/2018/eta3traj/
1010
- [eta^3-Splines for the Smooth Path Generation of Wheeled Mobile Robots]
1111
(https://ieeexplore.ieee.org/document/4339545/)
1212

PathPlanning/InformedRRTStar/informed_rrt_star.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
77
Reference: Informed RRT*: Optimal Sampling-based Path planning Focused via
88
Direct Sampling of an Admissible Ellipsoidal Heuristic
9-
https://arxiv.org/pdf/1404.2334.pdf
9+
https://arxiv.org/pdf/1404.2334
1010
1111
"""
1212
import sys

PathPlanning/QuinticPolynomialsPlanner/quintic_polynomials_planner.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
77
Ref:
88
9-
- [Local Path planning And Motion Control For Agv In Positioning](http://ieeexplore.ieee.org/document/637936/)
9+
- [Local Path planning And Motion Control For Agv In Positioning](https://ieeexplore.ieee.org/document/637936/)
1010
1111
"""
1212

PathPlanning/RRT/sobol/sobol.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
PYTHON versions by Corrado Chisari
1414
1515
Original code is available at
16-
http://people.sc.fsu.edu/~jburkardt/py_src/sobol/sobol.html
16+
https://people.sc.fsu.edu/~jburkardt/py_src/sobol/sobol.html
1717
1818
Note: the i4 prefix means that the function takes a numeric argument or
1919
returns a number which is interpreted inside the function as a 4

PathPlanning/StateLatticePlanner/state_lattice_planner.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@
1212
1313
- State Space Sampling of Feasible Motions for High-Performance Mobile Robot
1414
Navigation in Complex Environments
15-
http://citeseerx.ist.psu.edu/viewdoc/download?doi=10.1.1.187.8210&rep=rep1
16-
&type=pdf
15+
https://citeseerx.ist.psu.edu/document?repid=rep1&type=pdf
16+
&doi=e2256b5b24137f89e473f01df288cb3aa72e56a0
1717
1818
"""
1919
import sys

0 commit comments

Comments
 (0)