Skip to content

Commit 40d65ca

Browse files
authored
Merge pull request #188 from Living-with-machines/workshop_notebooks
Create notebook for workshop june 2023
2 parents eb2f0ea + 6f24b50 commit 40d65ca

File tree

6 files changed

+6273
-5
lines changed

6 files changed

+6273
-5
lines changed

docs/source/User-guide/Download.rst

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ These polygons can be created using MapReader's ``create_polygon_from_latlons()`
168168

169169
.. code-block:: python
170170
171-
from mapreader.download.downloader_utils import create_polygon_from_latlons
171+
from mapreader import create_polygon_from_latlons
172172
173173
my_polygon = create_polygon_from_latlons(min_lat, min_lon, max_lat, max_lon)
174174
@@ -221,7 +221,7 @@ Again, by default, this will result in the directory structure shown in download
221221

222222
.. note:: As with the ``download_map_sheets_by_queries()`` method, see download_guidance_ for further guidance.
223223

224-
2. Finding map sheets which contain a set of coordinates.
224+
1. Finding map sheets which contain a set of coordinates.
225225
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
226226

227227
The ``.query_map_sheets_by_coordinates()`` and ``download_map_sheets_by_coordinates()`` methods can be used find and download map sheets which contain a set of coordinates.
@@ -278,7 +278,7 @@ These lines can be created using MapReader's ``create_line_from_latlons()`` func
278278

279279
.. code-block:: python
280280
281-
from mapreader.download.downloader_utils import create_line_from_latlons
281+
from mapreader import create_line_from_latlons
282282
283283
my_line = create_line_from_latlons((lat1, lon1), (lat2, lon2))
284284
@@ -366,7 +366,7 @@ Again, by default, these will result in the directory structure shown in downloa
366366

367367
.. note:: As with the ``download_map_sheets_by_queries()`` method, see download_guidance_ for further guidance.
368368

369-
1. Finding map sheets by searching for a string in their metadata.
369+
5. Finding map sheets by searching for a string in their metadata.
370370
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
371371

372372
The ``.query_map_sheets_by_string()`` and ``download_map_sheets_by_string()`` methods can be used find and download map sheets by searching for a string in their metadata.
@@ -385,7 +385,7 @@ e.g. :
385385
.. code-block:: python
386386
387387
#EXAMPLE
388-
my_ts.query_map_sheets_by_string("*shire")
388+
my_ts.query_map_sheets_by_string("n?don")
389389
390390
.. note:: Guidance on how to view/visualise your query results can be found in query_guidance_.
391391

15.1 KB
Loading

worked_examples/geospatial/workshop_june_2023/Workshop_June2023.ipynb

Lines changed: 3745 additions & 0 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)