예제 #1
0
 def test_openmapquest(self):
     g = geocode(self.locations, provider='openmapquest')
     self.assertIsInstance(g, gpd.GeoDataFrame)
예제 #2
0
 def test_nominatim(self):
     g = geocode(self.locations, provider='nominatim')
     self.assertIsInstance(g, gpd.GeoDataFrame)
예제 #3
0
 def test_bad_provider(self):
     with self.assertRaises(ValueError):
         geocode(['cambridge, ma'], 'badprovider')
예제 #4
0
 def test_googlev3(self):
     g = geocode(self.locations, provider='googlev3')
     self.assertIsInstance(g, gpd.GeoDataFrame)
예제 #5
0
 def test_nominatim(self):
     g = geocode(self.locations, provider="nominatim")
     self.assertIsInstance(g, gpd.GeoDataFrame)
예제 #6
0
 def test_openmapquest(self):
     g = geocode(self.locations, provider="openmapquest")
     self.assertIsInstance(g, gpd.GeoDataFrame)
예제 #7
0
 def test_googlev3(self):
     g = geocode(self.locations, provider="googlev3")
     self.assertIsInstance(g, gpd.GeoDataFrame)
예제 #8
0
 def test_bad_provider(self):
     with self.assertRaises(ValueError):
         geocode(["cambridge, ma"], "badprovider")
예제 #9
0
 def test_bad_provider(self):
     with self.assertRaises(ValueError):
         geocode(['cambridge, ma'], 'badprovider')