Skip to content

Commit

Permalink
Trying to fix the test_merging functions
Browse files Browse the repository at this point in the history
  • Loading branch information
cjthomas730 committed Nov 3, 2023
1 parent 351e5e2 commit 6dd6f38
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions test/test_cerulean_cloud/test_cloud_run_orchestrator.py
Original file line number Diff line number Diff line change
Expand Up @@ -427,15 +427,15 @@ def test_flatten_result():

def test_func_merge_inferences():
with open("test/test_cerulean_cloud/fixtures/base.geojson") as src:
base_tile_fc = dict(geojson.load(src))
out_fc = dict(geojson.load(src))

with open("test/test_cerulean_cloud/fixtures/offset.geojson") as src:
offset_tile_fc = dict(geojson.load(src))
out_fc_offset = dict(geojson.load(src))

merged = merge_inferences(
base_tile_fc=base_tile_fc,
offset_tile_fc=offset_tile_fc,
isolated_conf_multiplier=0.1,
# base_tile_fc=base_tile_fc,
# offset_tile_fc=offset_tile_fc,
feature_collections = [out_fc, out_fc_offset],
proximity_meters=500,
closing_meters=100,
opening_meters=100,
Expand Down

0 comments on commit 6dd6f38

Please sign in to comment.