Skip to content

Commit

Permalink
no service roads in apalachicola testing - resolves #94 (#95)
Browse files Browse the repository at this point in the history
* #94 - no service roads in apalachicola testing

* update edge cases
  • Loading branch information
jGaboardi authored Nov 18, 2024
1 parent 86352bf commit 82cd59e
Show file tree
Hide file tree
Showing 4 changed files with 33 additions and 2 deletions.
33 changes: 32 additions & 1 deletion sgeop/tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,38 @@
"douala_809": [],
"liege_1656": [921],
"slc_4881": [1144, 1146],
"apalachicola": [746],
"apalachicola": [
468,
469,
470,
471,
472,
473,
474,
475,
476,
477,
478,
479,
480,
481,
482,
494,
495,
496,
497,
498,
499,
500,
501,
502,
503,
504,
505,
506,
507,
508,
],
}
####################################################

Expand Down
Binary file modified sgeop/tests/data/apalachicola_original.parquet
Binary file not shown.
Binary file modified sgeop/tests/data/apalachicola_simplified.parquet
Binary file not shown.
2 changes: 1 addition & 1 deletion sgeop/tests/test_simplify.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
def test_simplify_network_small():
ac = "apalachicola"
known = geopandas.read_parquet(test_data / f"{ac}_simplified.parquet")
known_length = 78089.0
known_length = 64566.0

observed = sgeop.simplify_network(
geopandas.read_parquet(test_data / f"{ac}_original.parquet")
Expand Down

0 comments on commit 82cd59e

Please sign in to comment.