From f0b453339dc34b8faf5c96a93f7edbddbd0e4cef Mon Sep 17 00:00:00 2001 From: Simon Liu Date: Tue, 19 Nov 2024 14:52:34 -0800 Subject: [PATCH] update folders structure --- podaac/forge_py/forge.py | 2 +- podaac/forge_py/{ => strategy}/alpha_shape_footprint.py | 0 podaac/forge_py/{ => strategy}/open_cv_footprint.py | 0 3 files changed, 1 insertion(+), 1 deletion(-) rename podaac/forge_py/{ => strategy}/alpha_shape_footprint.py (100%) rename podaac/forge_py/{ => strategy}/open_cv_footprint.py (100%) diff --git a/podaac/forge_py/forge.py b/podaac/forge_py/forge.py index d1c8552..ee13f4a 100644 --- a/podaac/forge_py/forge.py +++ b/podaac/forge_py/forge.py @@ -4,7 +4,7 @@ import json from shapely.geometry import Polygon, MultiPolygon from shapely.wkt import dumps -from podaac.forge_py import open_cv_footprint, alpha_shape_footprint +from podaac.forge_py.strategy import open_cv_footprint, alpha_shape_footprint class GroupMismatchError(Exception): diff --git a/podaac/forge_py/alpha_shape_footprint.py b/podaac/forge_py/strategy/alpha_shape_footprint.py similarity index 100% rename from podaac/forge_py/alpha_shape_footprint.py rename to podaac/forge_py/strategy/alpha_shape_footprint.py diff --git a/podaac/forge_py/open_cv_footprint.py b/podaac/forge_py/strategy/open_cv_footprint.py similarity index 100% rename from podaac/forge_py/open_cv_footprint.py rename to podaac/forge_py/strategy/open_cv_footprint.py