From e8d69dbc9c1ac3821a51945f5e45a11240901808 Mon Sep 17 00:00:00 2001
From: Mathilde Leuridan <90444327+mathleur@users.noreply.github.com>
Date: Fri, 20 Dec 2024 16:22:40 +0100
Subject: [PATCH 1/4] Update readme.md
---
readme.md | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/readme.md b/readme.md
index 4a6eed368..91dd13faa 100644
--- a/readme.md
+++ b/readme.md
@@ -180,6 +180,10 @@ If this software is useful in your work, please consider citing our [paper](http
> Leuridan, M., Hawkes, J., Smart, S., Danovaro, E., and Quintino, T., “Polytope: An Algorithm for Efficient Feature Extraction on Hypercubes”, arXiv e-prints, 2023. doi:10.48550/arXiv.2306.11553.
+Other papers in preparation include:
+
+> Performance Analysis of an Efficient Algorithm for Feature Extraction from Large Scale Meteorological Data Stores
+
## Acknowledgements
Past and current funding and support for **Polytope** is listed in the adjoining [Acknowledgements](./ACKNOWLEDGEMENTS.rst).
From 4fa6a99c8208851352224c055de122ac4c109dc4 Mon Sep 17 00:00:00 2001
From: Mathilde Leuridan <90444327+mathleur@users.noreply.github.com>
Date: Fri, 20 Dec 2024 16:24:54 +0100
Subject: [PATCH 2/4] Update version.py
---
polytope_feature/version.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/polytope_feature/version.py b/polytope_feature/version.py
index 6e3c058cf..c916e6809 100644
--- a/polytope_feature/version.py
+++ b/polytope_feature/version.py
@@ -1 +1 @@
-__version__ = "1.0.20"
+__version__ = "1.0.21"
From c0bfc0ee80b60ca68d68f07d345f670f85db72a7 Mon Sep 17 00:00:00 2001
From: Mathilde Leuridan <90444327+mathleur@users.noreply.github.com>
Date: Fri, 20 Dec 2024 16:35:09 +0100
Subject: [PATCH 3/4] Update readme.md
---
readme.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/readme.md b/readme.md
index 91dd13faa..3db6544dc 100644
--- a/readme.md
+++ b/readme.md
@@ -182,7 +182,7 @@ If this software is useful in your work, please consider citing our [paper](http
Other papers in preparation include:
-> Performance Analysis of an Efficient Algorithm for Feature Extraction from Large Scale Meteorological Data Stores
+> Leuridan, M., Bradley, C., Hawkes, J., Quintino, T., and Schultz, M., "Performance Analysis of an Efficient Algorithm for Feature Extraction from Large Scale Meteorological Data Stores".
## Acknowledgements
From 6f8a0d711be10eef40e736c5cc1ba7615282784d Mon Sep 17 00:00:00 2001
From: mathleur
Date: Thu, 2 Jan 2025 15:39:36 +0100
Subject: [PATCH 4/4] fix flake8
---
performance/fdb_slice_many_numbers_timeseries.py | 3 ---
1 file changed, 3 deletions(-)
diff --git a/performance/fdb_slice_many_numbers_timeseries.py b/performance/fdb_slice_many_numbers_timeseries.py
index ca0b9173e..662b5cc38 100644
--- a/performance/fdb_slice_many_numbers_timeseries.py
+++ b/performance/fdb_slice_many_numbers_timeseries.py
@@ -3,14 +3,12 @@
import pandas as pd
import pygribjump as gj
-from polytope_feature.datacube.backends.fdb import FDBDatacube
from polytope_feature.polytope import Polytope, Request
from polytope_feature.shapes import All, Point, Select
time1 = time.time()
# Create a dataarray with 3 labelled axes using different index types
-# config = {"class": "od", "expver": "0001", "levtype": "sfc", "type": "pf"}
options = {
"axis_config": [
{"axis_name": "step", "transformations": [{"name": "type_change", "type": "int"}]},
@@ -63,7 +61,6 @@
Select("class", ["od"]),
Select("stream", ["enfo"]),
Select("type", ["pf"]),
- # Select("latitude", [0.035149384216], method="surrounding"),
Point(["latitude", "longitude"], [[0.04, 0]], method="surrounding"),
All("number"),
)