test geometry update
This commit is contained in:
parent
6c2cd8e977
commit
6eb9c9112d
|
@ -29,6 +29,16 @@ class TestGeometryFactory(TestCase):
|
||||||
self.assertIsNotNone(self._city_gml, 'city is none')
|
self.assertIsNotNone(self._city_gml, 'city is none')
|
||||||
return self._city_gml
|
return self._city_gml
|
||||||
|
|
||||||
|
def test_subway(self):
|
||||||
|
"""
|
||||||
|
Test subway parsing
|
||||||
|
:return:
|
||||||
|
"""
|
||||||
|
city = self._get_citygml()
|
||||||
|
file_path = (self._example_path / 'subway.osm').resolve()
|
||||||
|
self._features = GeometryFactory('osm_subway', file_path).features
|
||||||
|
self.assertIsNotNone(city, 'city is none')
|
||||||
|
|
||||||
def test_citygml_city(self):
|
def test_citygml_city(self):
|
||||||
"""
|
"""
|
||||||
Test the City parsing
|
Test the City parsing
|
||||||
|
|
Loading…
Reference in New Issue
Block a user