Dan Baston

Results 99 issues of Dan Baston

## What does this PR do? Modifies CMake configuration so that Python tests are run directly from the source tree, rather than from a symlink or copy in the build...

## What does this PR do? Adds a ReadTheDocs configuration as a means of providing versioned documentation. Heavily copied from recent work in PROJ (https://github.com/OSGeo/PROJ/pull/3538). Since this was configured in...

documentation
stale

## What does this PR do? This PR adds a `gdal.vsi_open()` function that returns a file-like object, allowing virtual files to be used as "regular" Python files in some cases....

I have a static JPG that I've added to a map, following this example: https://openlayers.org/en/latest/examples/static-image.html ``` new ol.layer.Image({ source: new ol.source.ImageStatic({ url: 'test.jpg', projection : 'EPSG:4326', imageExtent: [-180, -90, 180,...

pull request accepted

Adds the following arguments that can be used for any stat: - `min_coverage_frac` (specified the minimum fraction for a pixel to be included in calculations, default 0) - `coverage_weight` if...

Many population datasets use `NODATA` pixels for areas outside the modeled domain, e.g. ocean pixels. For the purpose of `exactextract` these should be considered equivalent to zero. The following workaround...

enhancement

This PR adds curved geometry types to the GEOS `Geometry` hierarchy and adds support to the `WKTReader` for reading them. It is not ready to be merged; I'm just posting...

This PR is an alternative API to #761. Instead of registering an interrupt handler for the calling thread -- which is a bit awkward, the handler is registered with the...

Feedback Requested

I am working on a project to expose the [exactextract](https://github.com/isciences/exactextract) library to Python in a way similar to the R package [exactextractr](https://github.com/isciences/exactextractr). Instead of creating separate Python bindings for this...

Feedback Requested
Enhancement
Overlay

The current prepared geometry implementations are not thread safe. In https://github.com/dbaston/libgeos/commit/c19605529975875acab04948e0d9a4c6be27ab63 I updated the various lazy initialization methods of `PreparedPolygon` to use `std::call_once`. Running a multi-threaded test under `valgrind --tool=helgrind`...