Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ENH: add benchmark results for geofileops 0.10.0 #49

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
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
2 changes: 1 addition & 1 deletion benchmarks_vector_ops/benchmarks_geopandas.py
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ def intersection(tmp_dir: Path) -> RunResult:
return result


def symdif_complexpolys_agri(tmp_dir: Path) -> RunResult:
def _symdif_complexpolys_agri(tmp_dir: Path) -> RunResult:
"""Symmetric difference between very complex polygons and standard polygons.

The complex polygons are created as such:
Expand Down
Binary file modified results_vector_ops/GeoBenchmark.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 6 additions & 0 deletions results_vector_ops/benchmark_results.csv
Original file line number Diff line number Diff line change
Expand Up @@ -71,3 +71,9 @@ run_datetime,package,package_version,operation,operation_descr,secs_taken,run_de
2024-07-22 17:20:30.557312,geopandas,1.0.1,union,union of 2 agri parcel layers BEFL (2*~500k polygons),1222.984603,
2024-12-25 23:13:48.688617,geopandas,1.0.1,symdif_complexpolys_agri,symdif_complexpolys_agri between agri parcels (515k polys) and 3 multipolys of 4 * 30k coords,123082.498898,
2024-12-26 07:36:50.564389,geofileops,0.9.1,symdif_complexpolys_agri,symdif_complexpolys_agri between agri parcels (515k polys) and 3 multipolys of 4 * 30k coords,1422.775628,{'nb_cpu': 12}
2025-01-23 08:47:41.479777,geofileops,0.10.0,buffer,buffer on agri parcel layer BEFL (~500k polygons),16.084916,{'nb_cpu': 12}
2025-01-23 08:48:12.042467,geofileops,0.10.0,dissolve_groupby,"dissolve on agri parcels BEFL (~500k polygons), groupby=[GWSGRPH_LB]",30.480062,{'nb_cpu': 12}
2025-01-23 08:48:42.855086,geofileops,0.10.0,dissolve,dissolve on agri parcels BEFL (~500k polygons),30.781416,{'nb_cpu': 12}
2025-01-23 08:49:32.761272,geofileops,0.10.0,intersection,intersection of 2 agri parcel layers BEFL (2*~500k polygons),25.804572,{'nb_cpu': 12}
2025-01-23 08:50:54.245147,geofileops,0.10.0,symdif_complexpolys_agri,symdif_complexpolys_agri between agri parcels (515k polys) and 3 multipolys of 4 * 30k coords,81.201345,{'nb_cpu': 12}
2025-01-23 08:52:44.807921,geofileops,0.10.0,union,union of 2 agri parcel layers BEFL (2*~500k polygons),110.492955,{'nb_cpu': 12}
Binary file modified results_vector_ops/geofileops/geofileops_buffer.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified results_vector_ops/geofileops/geofileops_dissolve.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified results_vector_ops/geofileops/geofileops_dissolve_groupby.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified results_vector_ops/geofileops/geofileops_intersection.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified results_vector_ops/geofileops/geofileops_union.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion run_benchmarks_vector_ops.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ def main():
# modules=["benchmarks_geopandas"],
# modules=["benchmarks_dask_geopandas"],
# functions=["buffer"],
functions=["symdif_complexpolys_agri"],
# functions=["symdif_complexpolys_agri"],
)
return

Expand Down
Loading