Skip to content

Commit 6864139

Browse files
committed
Revert "fix/remove broken links"
This reverts commit b8c0e1b.
1 parent b8c0e1b commit 6864139

3 files changed

Lines changed: 18 additions & 4 deletions

File tree

docs/advanced_guide/geodedetic_image_overlay.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,6 +102,6 @@ TODO: Try [rasterio](https://github.com/mapbox/rasterio/blob/ca75cf0a842943c1b3d
102102

103103
## Compare to original
104104

105-
From https://scitools.org.uk/cartopy/docs/latest/gallery/scalar_data/waves.html
105+
From https://scitools.org.uk/cartopy/docs/latest/gallery/waves.html
106106

107107
![](https://scitools.org.uk/cartopy/docs/latest/_images/sphx_glr_waves_001.png)

docs/advanced_guide/polygons_from_list_of_points.md

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,7 @@ my_envelope_map
193193
```
194194

195195
## Concave hull (alpha shape)
196-
In some cases the convex hull does not yield good results - this is when the shape of the polygon should be concave instead of convex. The solution is a concave hull that is also called alpha shape. Yet, there is no ready to go, off-the-shelve solution for this but there are great resources.
196+
In some cases the convex hull does not yield good results - this is when the shape of the polygon should be concave instead of convex. The solution is a concave hull that is also called alpha shape. Yet, there is no ready to go, off the shelve solution for this but there are great resources (see: http://blog.thehumangeo.com/2014/05/12/drawing-boundaries-in-python/, accessed 04.01.2019 or https://towardsdatascience.com/the-concave-hull-c649795c0f0f, accessed 29.12.2018).
197197

198198

199199
## Putting it together
@@ -256,3 +256,17 @@ draw_points(
256256
folium.LayerControl(collapsed=False).add_to(my_map_global)
257257
my_map_global
258258
```
259+
260+
## Sources:
261+
262+
* http://blog.yhat.com/posts/interactive-geospatial-analysis.html, accessed 28.12.2018
263+
264+
* https://docs.scipy.org/doc/scipy-0.19.0/reference/generated/scipy.spatial.ConvexHull.html, accessed 29.12.2018
265+
266+
* https://www.oreilly.com/ideas/an-elegant-solution-to-the-convex-hull-problem, accessed 29.12.2018
267+
268+
* https://medium.com/@vworri/simple-geospacial-mapping-with-geopandas-and-the-usual-suspects-77f46d40e807, accessed 29.12.2018
269+
270+
* https://towardsdatascience.com/the-concave-hull-c649795c0f0f, accessed 29.12.2018
271+
272+
* http://blog.thehumangeo.com/2014/05/12/drawing-boundaries-in-python/, accessed 04.01.2019

docs/user_guide/geojson/geojson.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -102,8 +102,8 @@ You can provide a function of the form `lambda feature: {}` that sets the style
102102

103103
For possible options, see:
104104

105-
* For `Point` and `MultiPoint`, see https://leafletjs.com/reference.html#marker
106-
* For other features, see https://leafletjs.com/reference.html#path and https://leafletjs.com/reference.html#polyline
105+
* For `Point` and `MultiPoint`, see http://leafletjs.com/reference.html#marker
106+
* For other features, see http://leafletjs.com/reference.html#path-options and http://leafletjs.com/reference.html#polyline-options
107107

108108
```{code-cell} ipython3
109109
m = folium.Map([43, -100], zoom_start=4)

0 commit comments

Comments
 (0)