Skip to content

Commit

Permalink
Changed output file type for vector layers
Browse files Browse the repository at this point in the history
  • Loading branch information
kcartier-wri committed Sep 10, 2024
1 parent 7977d11 commit 0271e19
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ def test_write_ndvi_sentinel2_gee(target_folder, bbox_info, target_spatial_resol

@pytest.mark.skipif(RUN_DUMPS == False, reason='Skipping since RUN_DUMPS set to False')
def test_write_openbuildings(target_folder, bbox_info, target_spatial_resolution_multiplier):
file_path = prep_output_path(target_folder, 'open_buildings.tif')
file_path = prep_output_path(target_folder, 'open_buildings.geojson')
OpenBuildings(bbox_info.country).write(bbox_info.bounds, file_path, tile_degrees=None)
assert verify_file_is_populated(file_path)

Expand All @@ -120,7 +120,7 @@ def test_write_openbuildings(target_folder, bbox_info, target_spatial_resolution

@pytest.mark.skipif(RUN_DUMPS == False, reason='Skipping since RUN_DUMPS set to False')
def test_write_overture_buildings(target_folder, bbox_info, target_spatial_resolution_multiplier):
file_path = prep_output_path(target_folder, 'overture_buildings.tif')
file_path = prep_output_path(target_folder, 'overture_buildings.geojson')
OvertureBuildings().write(bbox_info.bounds, file_path, tile_degrees=None)
assert verify_file_is_populated(file_path)

Expand Down

0 comments on commit 0271e19

Please sign in to comment.