From 7d9473809f2b645553b7b3ff26b7b65b91bf9e14 Mon Sep 17 00:00:00 2001 From: Chris Amico Date: Thu, 13 Jan 2022 22:57:07 -0500 Subject: [PATCH] remove unused geojson fixture --- tests/test_gis.py | 83 ----------------------------------------------- 1 file changed, 83 deletions(-) diff --git a/tests/test_gis.py b/tests/test_gis.py index 57ef6ba..f9211cc 100644 --- a/tests/test_gis.py +++ b/tests/test_gis.py @@ -82,86 +82,3 @@ def test_create_spatial_index(): gis.create_spatial_index(db["locations"], "geometry") assert "idx_locations_geometry" in db.table_names() - - -# extract of In-N-Out locations via alltheplaces.xyz -locations = { - "type": "FeatureCollection", - "features": [ - { - "type": "Feature", - "id": "APyEi_bhUMkAPx6J_I1JrqB5eBo=", - "properties": { - "ref": "322", - "@spider": "innout", - "addr:full": "2835 W. University Dr.", - "addr:city": "Denton", - "addr:state": "TX", - "addr:postcode": "76201", - "name": "Denton", - "website": "http://locations.in-n-out.com/322", - }, - "geometry": {"type": "Point", "coordinates": [-97.17114, 33.2294]}, - }, - { - "type": "Feature", - "id": "_fK8gYjGcdlGA09B3a4a8RyUZD4=", - "properties": { - "ref": "255", - "@spider": "innout", - "addr:full": "190 E. Stacy Rd.", - "addr:city": "Allen", - "addr:state": "TX", - "addr:postcode": "75002", - "name": "Allen", - "website": "http://locations.in-n-out.com/255", - }, - "geometry": {"type": "Point", "coordinates": [-96.65328, 33.12914]}, - }, - { - "type": "Feature", - "id": "aO9MWd_7HNlDTGdFH-Vl7vscZdk=", - "properties": { - "ref": "256", - "@spider": "innout", - "addr:full": "2800 Preston Rd.", - "addr:city": "Frisco", - "addr:state": "TX", - "addr:postcode": "75034", - "name": "Frisco", - "website": "http://locations.in-n-out.com/256", - }, - "geometry": {"type": "Point", "coordinates": [-96.80456, 33.1018]}, - }, - { - "type": "Feature", - "id": "yHaQ--D7A6FXdx-vrLKdVxctV5g=", - "properties": { - "ref": "299", - "@spider": "innout", - "addr:full": "5298 State Highway 121", - "addr:city": "The Colony", - "addr:state": "TX", - "addr:postcode": "75056", - "name": "The Colony", - "website": "http://locations.in-n-out.com/299", - }, - "geometry": {"type": "Point", "coordinates": [-96.87604, 33.07076]}, - }, - { - "type": "Feature", - "id": "sGpWMAPrvimcDCBoE9xO7-tkLmw=", - "properties": { - "ref": "329", - "@spider": "innout", - "addr:full": "3500 Highway 114", - "addr:city": "Fort Worth", - "addr:state": "TX", - "addr:postcode": "76177", - "name": "Fort Worth", - "website": "http://locations.in-n-out.com/329", - }, - "geometry": {"type": "Point", "coordinates": [-97.28667, 33.02593]}, - }, - ], -}