Skip to content

Commit 13e1cc8

Browse files
committed
Merge branch 'main' into 12_documentation_page
2 parents a902977 + ffba29b commit 13e1cc8

File tree

6 files changed

+6
-326
lines changed

6 files changed

+6
-326
lines changed
File renamed without changes.

examples/notebooks/demo_network.ipynb

+2-2
Original file line numberDiff line numberDiff line change
@@ -1027,7 +1027,7 @@
10271027
"source": [
10281028
"import numpy as np\n",
10291029
"\n",
1030-
"from pydepsi.network import generate_arcs"
1030+
"from depsi.network import generate_arcs"
10311031
]
10321032
},
10331033
{
@@ -1133,7 +1133,7 @@
11331133
],
11341134
"metadata": {
11351135
"kernelspec": {
1136-
"display_name": "pydepsi-dev",
1136+
"display_name": "depsi-dev",
11371137
"language": "python",
11381138
"name": "python3"
11391139
},

examples/scripts/script_depsi_processing.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@
1717
import sarxarray
1818
import stmtools
1919

20-
from pydepsi.io import read_metadata
21-
from pydepsi.classification import ps_selection, network_stm_selection
20+
from depsi.io import read_metadata
21+
from depsi.classification import ps_selection, network_stm_selection
2222

2323
# Make a logger to log the stages of processing
2424
logger = logging.getLogger(__name__)

pydepsi/classification.py

-320
This file was deleted.

tests/test_classification.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
import pytest
66
import xarray as xr
77

8-
from pydepsi.classification import _idx_within_distance, _nad_block, _nmad_block, network_stm_selection, ps_selection
8+
from depsi.classification import _idx_within_distance, _nad_block, _nmad_block, network_stm_selection, ps_selection
99

1010
# Create a random number generator
1111
rng = np.random.default_rng(42)

tests/test_network.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
import pytest
44
import xarray as xr
55

6-
from pydepsi.network import generate_arcs
6+
from depsi.network import generate_arcs
77

88

99
@pytest.fixture

0 commit comments

Comments
 (0)