Skip to content

Commit

Permalink
Switch Pooch sample data to main branch; Change version to 0.2.6; Rem…
Browse files Browse the repository at this point in the history
…ove unused main block
  • Loading branch information
smknaake committed Dec 20, 2024
1 parent cecaa9d commit e294d30
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 10 deletions.
2 changes: 1 addition & 1 deletion docs/changelog.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Release notes

## v0.2.5
## v0.2.6

[**Full Changelog**](https://github.com/Deltares-research/geost/compare/0.2.4...0.2.5)

Expand Down
2 changes: 1 addition & 1 deletion geost/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,4 @@
# read_xml_soil_cores,
from geost.utils import csv_to_parquet, excel_to_parquet

__version__ = "0.2.5"
__version__ = "0.2.6"
7 changes: 0 additions & 7 deletions geost/analysis/layer_analysis.py
Original file line number Diff line number Diff line change
Expand Up @@ -122,10 +122,3 @@ def layer_top(data, column: str, value: str): # TODO
except IndexError:
layer_top = np.nan
yield (nr, layer_top)


if __name__ == "__main__":
df = pd.read_parquet(
r"c:\Users\knaake\OneDrive - Stichting Deltares\Documents\projects\ark\cpts_select.parquet"
)
top_of_sand(df, min_sand_thickness=0.5, min_sand_frac=1)
2 changes: 1 addition & 1 deletion geost/data/sample_data.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

REGISTRY = pooch.create(
path=pooch.os_cache("geost"),
base_url="https://github.com/Deltares-research/geost/raw/feature/docs/data/", # TODO: Change to 'main' branch
base_url="https://github.com/Deltares-research/geost/raw/main/data/",
version=None,
env="GEOST_DATA_DIR",
)
Expand Down

0 comments on commit e294d30

Please sign in to comment.