@@ -43,4 +43,5 @@ Alternatively you can directly call individual test modules. For instance:
**Good Practices**
* Common pittfalls --- for instance wrong EPSG --- should be handled via [warnings](https://docs.python.org/3/library/warnings.html) or exceptions so that errors are not introduced silently
* Whenever we are dealing with coordinates, we try to use [geopandas.GeoSeries](https://geopandas.org/reference/geopandas.GeoSeries.html) so that the projection is handled explicitly
\ No newline at end of file
* Whenever we are dealing with coordinates, we try to use [geopandas.GeoSeries](https://geopandas.org/reference/geopandas.GeoSeries.html) so that the projection is handled explicitly
* Use progress bars such as [tqdm](https://tqdm.github.io/) for jobs which take a considerable amount of time