Skip to content

Commit fb0067a

Browse files
author
BriannaLind
committed
adjusted module loading to be at top of file
1 parent 0ce41b3 commit fb0067a

File tree

1 file changed

+9
-7
lines changed

1 file changed

+9
-7
lines changed

src/planet_overlap/client.py

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
# client.py
2+
import logging
3+
from typing import List, Tuple
4+
from planet_overlap.filters import build_filters
5+
from planet_overlap.geometry import load_aoi
6+
7+
logging.basicConfig(level=logging.INFO)
8+
9+
110
(
211
" client.py - Entry point for running Planet Overlap analysis. This script: 1."
312
"Reads AOI GeoJSON files. 2. Applies filters (geometry, date, cloud cover, sun"
@@ -7,13 +16,6 @@
716
"multiple AOIs and multiple date ranges."
817
)
918

10-
# client.py
11-
import logging
12-
from typing import List, Tuple
13-
from planet_overlap.filters import build_filters
14-
from planet_overlap.geometry import load_aoi
15-
16-
logging.basicConfig(level=logging.INFO)
1719

1820

1921
def prepare_filters(

0 commit comments

Comments
 (0)