Skip to content

Commit

Permalink
Add reuse dep and file header (#84)
Browse files Browse the repository at this point in the history
* Add reuse dep and file header

* Fix typo
  • Loading branch information
giswqs authored Jul 23, 2024
1 parent ee0691c commit 3f60a13
Show file tree
Hide file tree
Showing 10 changed files with 41 additions and 5 deletions.
4 changes: 4 additions & 0 deletions hypercoast/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# SPDX-FileCopyrightText: 2024 Qiusheng Wu <[email protected]>
#
# SPDX-License-Identifier: MIT

"""Top-level package for HyperCoast."""

__author__ = """Qiusheng Wu"""
Expand Down
6 changes: 6 additions & 0 deletions hypercoast/aviris.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
# SPDX-FileCopyrightText: 2024 Jack McNelis <[email protected]>
# SPDX-FileCopyrightText: 2024 Qiusheng Wu <[email protected]>
#
# SPDX-License-Identifier: Apache-2.0
# SPDX-License-Identifier: MIT

"""This module contains functions to read and process NASA AVIRIS hyperspectral data.
More info about the data can be found at https://aviris.jpl.nasa.gov.
A portion of the source code is adapted from the jjmcnelis/aviris-ng-notebooks repository
Expand Down
4 changes: 4 additions & 0 deletions hypercoast/common.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# SPDX-FileCopyrightText: 2024 Qiusheng Wu <[email protected]>
#
# SPDX-License-Identifier: MIT

"""The common module contains common functions and classes used by the other modules.
"""

Expand Down
4 changes: 4 additions & 0 deletions hypercoast/desis.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# SPDX-FileCopyrightText: 2024 Qiusheng Wu <[email protected]>
#
# SPDX-License-Identifier: MIT

"""
This Module has the functions related to working with a DESIS dataset.
"""
Expand Down
11 changes: 6 additions & 5 deletions hypercoast/emit.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
# SPDX-FileCopyrightText: 2024 Erik Bolch <[email protected]>
# SPDX-FileCopyrightText: 2024 Qiusheng Wu <[email protected]>
#
# SPDX-License-Identifier: Apache-2.0
# SPDX-License-Identifier: MIT

"""
This Module has the functions related to working with an EMIT dataset. This includes
doing things like opening and flattening the data to work in xarray, orthorectification,
Expand All @@ -6,11 +12,6 @@
Some source code is adapted from https://github.com/nasa/EMIT-Data-Resources,
which is licensed under the Apache License 2.0.
Credits to the original authors, including Erik Bolch, Alex Leigh, and others.
SPDX-FileCopyrightText = [
"2024 Erik Bolch <[email protected]>",
]
SPDX-License-Identifier = "Apache-2.0"
"""

import os
Expand Down
4 changes: 4 additions & 0 deletions hypercoast/hypercoast.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# SPDX-FileCopyrightText: 2024 Qiusheng Wu <[email protected]>
#
# SPDX-License-Identifier: MIT

"""Main module."""

import ipyleaflet
Expand Down
4 changes: 4 additions & 0 deletions hypercoast/neon.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# SPDX-FileCopyrightText: 2024 Qiusheng Wu <[email protected]>
#
# SPDX-License-Identifier: MIT

"""This module contains functions to read and process NEON AOP hyperspectral data.
More info about the data can be found at https://bit.ly/3Rfszdc.
The source code is adapted from https://bit.ly/3KwyZkn. Credit goes to the
Expand Down
4 changes: 4 additions & 0 deletions hypercoast/pace.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# SPDX-FileCopyrightText: 2024 Qiusheng Wu <[email protected]>
#
# SPDX-License-Identifier: MIT

"""This module contains functions to read and process PACE data.
"""

Expand Down
4 changes: 4 additions & 0 deletions hypercoast/ui.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# SPDX-FileCopyrightText: 2024 Qiusheng Wu <[email protected]>
#
# SPDX-License-Identifier: MIT

"""This module contains the user interface for the hypercoast package.
"""

Expand Down
1 change: 1 addition & 0 deletions requirements_dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ pymdown-extensions
pytest
pytest-runner
pyvista
reuse>=3.0.2
sphinx
twine
watchdog
Expand Down

0 comments on commit 3f60a13

Please sign in to comment.