Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
57 commits
Select commit Hold shift + click to select a range
4be4ad3
ipc-channel based gdal process
jdroenner May 11, 2026
8bb61ee
use thread and transfer only tile grid data
jdroenner May 11, 2026
118f9df
Merge branch 'jd_0' into jd_1
jdroenner May 12, 2026
3d761a3
LazyLock
jdroenner May 12, 2026
347a67f
gdal pool
jdroenner May 26, 2026
d6e606a
working pool, tests, lints
jdroenner May 27, 2026
9847844
revert arrow serialization for gdal ipc data
jdroenner May 27, 2026
8893a9a
fix end of file
jdroenner May 27, 2026
cce8d45
Merge branch 'main' of github.com:geo-engine/geoengine into jd_1
jdroenner May 27, 2026
4728306
clarify field name
jdroenner May 27, 2026
cf39329
update gdalsource-process binary handling
jdroenner May 27, 2026
c208944
fix lazy gdalsource-process path detection
jdroenner May 27, 2026
238e76c
justfile: add run --release
jdroenner May 28, 2026
35b8d5f
remove or downgrade debug logs in hot paths
jdroenner May 28, 2026
e1b990c
gdal pool: add more complex affinity calculation
jdroenner May 28, 2026
ac1d852
gdal process pool with more caching workers
jdroenner May 29, 2026
059d64b
simplified pool again
jdroenner May 29, 2026
80d37bb
batching pool
jdroenner May 29, 2026
32e33a9
gdal pool next iteration
jdroenner May 31, 2026
b3c1bb6
more structure
jdroenner Jun 1, 2026
c052a0e
more constants, less unwrap. Add decay.
jdroenner Jun 1, 2026
af67140
make load_tile_data_process more reusable
jdroenner Jun 1, 2026
a9f0bf5
adapt multi tile source part 1
jdroenner Jun 1, 2026
9fa88d3
adapt gdal multi source. sort errors.
jdroenner Jun 2, 2026
ea747b2
Merge branch 'main' of github.com:geo-engine/geoengine into jd_1
jdroenner Jun 2, 2026
88927ae
fix typo
jdroenner Jun 2, 2026
7b1350f
adapt ci bench
jdroenner Jun 2, 2026
8222504
remove LLVM_PROFILE from worker processes.
jdroenner Jun 3, 2026
536ad7e
update backend justfile run
jdroenner Jun 3, 2026
9a9b942
rename pool, pool worker and reorder imports
jdroenner Jun 8, 2026
25354e3
move projection and crs area into traits and impl for proj as default…
jdroenner Jun 8, 2026
c8e71b3
add static area of use provider
jdroenner Jun 8, 2026
cedba61
use process-wide gdal options in gdal worker process
jdroenner Jun 10, 2026
fbd3ea2
add geodesy projector
jdroenner Jun 10, 2026
bacacbd
put "Grid" into type name + remove comments
jdroenner Jun 19, 2026
df86b9f
explain llcov related env modification
jdroenner Jun 19, 2026
bb94c96
rename gdal dataset holding struct
jdroenner Jun 19, 2026
d870103
calculate composite thereshold from others
jdroenner Jun 19, 2026
ec93b2f
remove comment
jdroenner Jun 19, 2026
584df3e
rename GdaProcess config fields and add docs
jdroenner Jun 19, 2026
4c9e013
restructure gdal handling and sources
jdroenner Jun 23, 2026
b6b5ac3
Merge branch 'main' of github.com:geo-engine/geoengine into jd_1
jdroenner Jun 23, 2026
695979e
fmt
jdroenner Jun 23, 2026
a4736b6
change env_remove logic for coverage
jdroenner Jun 24, 2026
c5e7ff7
refactor common worker spwaning
jdroenner Jun 24, 2026
30dca4a
stac back to 0.17
jdroenner Jun 24, 2026
6c8ca5d
add leader & follower feature to gdal pool
jdroenner Jun 24, 2026
92a7863
add default viscurl params to gdal dataset params
jdroenner Jun 24, 2026
8ddc2a2
lints
jdroenner Jun 24, 2026
13a654c
Merge branch 'alternative-proj' of github.com:geo-engine/geoengine in…
jdroenner Jun 25, 2026
6d10ac4
WIP
dbrandenstein Jun 25, 2026
fa6af10
Add old cache to benchmark
dbrandenstein Jun 25, 2026
3b8a0a1
Merge branch 'new-raster-cache-j' of https://github.com/dbrandenstein…
jdroenner Jun 26, 2026
9464968
sequential build bins
jdroenner Jun 26, 2026
85ea34a
complete hashing, avod stalling in group read feature, serial tests
jdroenner Jun 30, 2026
933eacd
deaktivate porp no loger valid test
jdroenner Jun 30, 2026
7460301
Merge branch 'jd_1' of https://github.com/geo-engine/geoengine into j…
jdroenner Jul 1, 2026
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
3 changes: 3 additions & 0 deletions .github/actions/test/test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@ function print_headline() {
print_headline "Install cargo-llvm-cov"
just backend install

print_headline "Run build gdalsource-process"
just backend build-gdalsource-process || exit 1

print_headline "Run Tests & Generate Code Coverage"
just backend test-coverage || exit 1

Expand Down
Loading
Loading