示例#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')