Commit 1e481e40 authored by  Lukas Eller's avatar Lukas Eller

Update README.md

parent 21f09047
......@@ -33,3 +33,10 @@ to also output stdout use:
Alternatively you can directly call individual test modules. For instance:
`python -m pytest -s tests/overpy_series_test.py`
# Coding Guidelines
* Use [type hints](https://mypy.readthedocs.io/en/stable/cheat_sheet_py3.html) for parameters and return values for each function you implement
* Each module should have basic [unit tests](https://realpython.com/python-testing/) so that we can catch coding errors before we push changes
* 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
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment