-
Notifications
You must be signed in to change notification settings - Fork 88
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #556 from ngageoint/integration/1.3.59-rc
Merge integration/1.3.59-rc into master
- Loading branch information
Showing
141 changed files
with
7,955 additions
and
904 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,5 +6,6 @@ DEM reading elements (sarpy.io.DEM) | |
:caption: Contents: | ||
|
||
geoid | ||
geotiff1deg | ||
DEM | ||
DTED |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,5 +9,6 @@ SICD data processing (sarpy.processing.sicd) | |
normalize_sicd | ||
csi | ||
fft_base | ||
spectral_taper | ||
subaperture | ||
windows |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
Spectral Taper methods (sarpy.processing.sicd.spectral_taper) | ||
============================================================= | ||
|
||
.. automodule:: sarpy.processing.sicd.spectral_taper | ||
:members: | ||
:show-inheritance: | ||
:inherited-members: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,3 +12,4 @@ Command-line Utilities (sarpy.utils) | |
nitf_utils | ||
cphd_utils | ||
nominal_sicd_noise | ||
sicd_sidelobe_control |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
Apply/Remove a spectral taper window to/from a SICD (sarpy.utils.sicd_sidelobe_control) | ||
======================================================================================= | ||
|
||
.. automodule:: sarpy.utils.sicd_sidelobe_control | ||
:members: | ||
:show-inheritance: | ||
:inherited-members: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
# | ||
# Copyright 2023 Valkyrie Systems Corporation | ||
# | ||
# Licensed under MIT License. See LICENSE. | ||
# | ||
|
||
import os | ||
|
||
import nox | ||
|
||
_PYTHON_VERSIONS = ['3.6', '3.11'] | ||
_LOCATIONS = ["tests"] | ||
|
||
|
||
# Run only test session when no arguments are specified | ||
nox.options.sessions = ["test"] | ||
|
||
|
||
@nox.session(venv_backend="conda") | ||
@nox.parametrize('version', _PYTHON_VERSIONS) | ||
def test(session, version): | ||
assert 'SARPY_TEST_PATH' in os.environ | ||
args = session.posargs or _LOCATIONS | ||
session.conda_install(f'python={version}') | ||
session.install('.[all]') | ||
session.run("pytest", *args) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.