Skip to content

Commit eccfb9d

Browse files
bhawkinsGitHub Enterprise
authored andcommitted
Move point_target_info utility into isce3 namespace. (#936)
* Move point_target_info utility into isce3 namespace. * Move into isce3.signal namespace. * Update a neglected import path.
1 parent a9588b6 commit eccfb9d

File tree

6 files changed

+5
-6
lines changed

6 files changed

+5
-6
lines changed
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
11
from pybind_isce3.signal import *
2+
from . import point_target_info
File renamed without changes.

tests/python/extensions/pybind/cuda/focus/backproject.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,7 @@
88
import json
99

1010
from ...focus.backproject import load_h5
11-
from nisar.workflows.point_target_info import (analyze_point_target,
12-
tofloatvals)
11+
from isce3.signal.point_target_info import analyze_point_target, tofloatvals
1312

1413
c = isce.core.speed_of_light
1514

tests/python/extensions/pybind/focus/backproject.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,7 @@
77
from pathlib import Path
88
import json
99

10-
from nisar.workflows.point_target_info import (analyze_point_target,
11-
tofloatvals)
10+
from isce3.signal.point_target_info import analyze_point_target, tofloatvals
1211

1312
c = isce.core.speed_of_light
1413

tests/python/packages/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
set(TESTFILES
22
isce3/core/gpu_check.py
3+
isce3/signal/point_target_info.py
34
isce3/unwrap/snaphu.py
45
nisar/products/readers/attitude.py
56
nisar/products/readers/orbit.py
@@ -15,7 +16,6 @@ nisar/workflows/insar.py
1516
nisar/workflows/filter_interferogram.py
1617
nisar/workflows/bandpass_insar.py
1718
nisar/workflows/process_args.py
18-
nisar/workflows/point_target_info.py
1919
nisar/workflows/rdr2geo.py
2020
nisar/workflows/resample_slc.py
2121
nisar/workflows/unwrap.py

tests/python/packages/nisar/workflows/point_target_info.py renamed to tests/python/packages/isce3/signal/point_target_info.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import iscetest
22
import numpy as np
33
import numpy.testing as npt
4-
from nisar.workflows import point_target_info as pt
4+
from isce3.signal import point_target_info as pt
55

66
def test_islr_pslr():
77
num_pts = 2000

0 commit comments

Comments
 (0)