Ryan Grout
Ryan Grout
The content for the modal dialogs is controlled by yaml files in data/projects. However, in the description field, I can't seem to figure out how to add anything other than...
This paragraph is incorrect. https://github.com/Foundations-of-Applied-Mathematics/Labs/blob/master/PythonEssentials/StandardLibrary/StandardLibrary.tex#L151 Assigning a new name to an immutable object does not create a copy. Both names simply point to the same object in memory. IIRC, assignments...
Following up on @sgillies comment here: https://github.com/rasterio/rasterio/pull/2338#discussion_r847710362 Now that 1.3.0 is out, I played around with sorting the points and it resulted in another nice speedup. The test raster is...
Supersedes #2262. Updated PR for rasterio 1.3.0. Cleans up the implementation of get_data_window and extends it to properly handle 1D arrays. The documentation implied that 1D arrays are supported, but...
An experiment to see if merge could be made more memory efficient using windowed read/write. Testing with the dataset in #2174 seems to produce good results when visually inspected (ie...
Resolves #2283
```python from rasterio import coords bound1 = (4.0, 4.0, 6.25, 6.25) bound2 = (0.0, 10.0, 10.0, 0.0) coords.disjoint_bounds(bound1, bound2) # True??? ``` The source for disjoint_bounds suggests that this should...
## Expected behavior and actual behavior. I expect transforms (`rowcol` and `xy`) operations to be fast for large numbers of points. ## Steps to reproduce the problem. Call `rowcol` or...
Addresses #2108 This is a WIP. Feedback appreciated.
MariaDB 10.3 implemented support for temporal data tables from the SQL2011 spec. https://mariadb.com/kb/en/library/temporal-data-tables/ I can't seem to find how these kinds of queries are supported in SQLAlchemy. Am I missing...