diff --git a/measprocess/geospatial.py b/measprocess/geospatial.py index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..2216ef267facddf1a0a40fb58f60ccc87c90299b 100644 --- a/measprocess/geospatial.py +++ b/measprocess/geospatial.py @@ -0,0 +1,7 @@ +import pandas as pd +import geopandas as gpd +import overpy + +class OSM_API(): + #Collect all the possible queries here + pass diff --git a/requirements.txt b/requirements.txt index 4350e3fca1b2d9ca01ecb7554662afe0876924c5..777dd38ad300f7de5979d6ac8c52c5df41dc3227 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,4 +1,4 @@ -#Needs to be adapted - -pandas >= 1.2.1 -pytest >= 6.2.2 \ No newline at end of file +pandas==1.2.1 +pytest==6.2.2 +overpy==0.4 +geopandas==0.8.1 \ No newline at end of file diff --git a/tests/geospatial_test.py b/tests/geospatial_test.py new file mode 100644 index 0000000000000000000000000000000000000000..fb1b6f20cb6ee8198f801a50fcff349ecc96553b --- /dev/null +++ b/tests/geospatial_test.py @@ -0,0 +1,7 @@ +from context import measprocess as mpc + +class TestOSMAPI(unittest.TestCase): + pass + +class TestProjections(unittest.TestCase): + pass