Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 21 additions & 0 deletions .devcontainer/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
FROM continuumio/miniconda3

# Set the working directory

# WORKDIR /workspace

# Install Python
RUN conda install python -y

# Copy the project files
# COPY . .

# Install the necessary packages

# RUN pip install .

# Clean up
RUN conda clean -afy

# Set the default command
CMD ["bash"]
7 changes: 7 additions & 0 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"name": "AEOLIS Development Container",
"build": {
"dockerfile": "Dockerfile",
"context": ".."
}
}
4 changes: 2 additions & 2 deletions CITATION.cff
Original file line number Diff line number Diff line change
Expand Up @@ -69,5 +69,5 @@ keywords:
- sediment
license: GPL-3.0
commit: 0adaedfc8015f18b3b551bed1dda38d630cd8c95
version: 3.0.0.rc3
date-released: '2023-10-18'
version: 3.0.1
date-released: '2025-07-11'
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ Read our [Contribution Guidelines](CONTRIBUTING.md) to know how you can help to

Please, cite this software as follows:

*de Vries, S., Hallin, C., van IJzendoorn, C., van Westen, B., Cohn, N., Strypsteen, G., Skaden, J., Agrawal, N., & Garcia Alvarez, M. (2023). AeoLiS (Version 3.0.0.rc2) [Computer software]. https://github.com/openearth/aeolis-python*
*de Vries, S., Hallin, C., van IJzendoorn, C., van Westen, B., Cohn, N., Strypsteen, G., Skaden, J., Agrawal, N., & Garcia Alvarez, M. (2023). AeoLiS (Version 3.0.1) [Computer software]. https://github.com/openearth/aeolis-python*

## Acknowlegdements

Expand Down
10 changes: 0 additions & 10 deletions aeolis/vegetation.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,23 +28,13 @@
import logging
from scipy import ndimage, misc
import numpy as np
import math
#import matplotlib.pyplot as plt
from aeolis.wind import *
import aeolis.rotation

# package modules
import aeolis.wind
#from aeolis.utils import *

import numpy as np
from scipy.integrate import quad
from scipy.integrate import romberg
from scipy.optimize import root_scalar
from scipy.signal import convolve
from scipy.special import sici
from scipy.special import erfi
import matplotlib.pyplot as plt

# initialize logger
logger = logging.getLogger(__name__)
Expand Down
13 changes: 2 additions & 11 deletions aeolis/wind.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,18 +28,9 @@

import numpy as np
import logging
import operator
#import scipy.special
#import scipy.interpolate
from scipy import ndimage, misc
import matplotlib.pyplot as plt
from scipy.integrate import quad
from scipy.integrate import romberg

from scipy import ndimage
from scipy.optimize import root_scalar
from scipy.signal import convolve
from scipy.special import sici
from scipy.special import erfi
from scipy.interpolate import griddata


# package modules
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ exclude = [

[project]
name = "aeolis"
version = "3.0.0.rc3"
version = "3.0.1"
authors = [
{ name="Sierd de Vries", email="[email protected]" },
]
Expand All @@ -31,7 +31,7 @@ dependencies = [
"bmi-python",
"netCDF4",
"scipy",
"numpy<1.24,>=1.18",
"numpy",
"matplotlib",
"numba",
]
Expand Down