Ryan Grout
Ryan Grout
It looks like several major databases have gained support for temporal tables: https://en.wikipedia.org/wiki/SQL:2011
@zzzeek, https://github.com/arkhipov/temporal_tables (Postgres extension for temporal tables).
@zzzeek, For automatically reflecting, the create table will have `WITH SYSTEM VERSIONING` or `PERIOD` if either system versioning, application versioning or both are being used. It is a property of...
@zzzeek I see your point. I'm trying the `.with_hint()` route. Finally got it to produce the correct sql. I just have to be careful not to use an aliased table....
What is the status of this speedup module?
I'm willing to make an initial attempt at isolating and simplifying the parsing code (issue 2 from above).
Decided to use `transform.array_bounds` to compute bounding box in the simple case. `array_bounds` does not use numpy and therefore doesn't violate the intent of _base.pyx to be numpy-free. We also...
I'm getting a confusing result when using `transform.array_bounds` in a test case. ```python from affine import identity from rasterio.transform import array_bounds t = identity.translation(2, 3) width, height = 10, 10...
Here is the transform that I getting from your code: ``` Affine(0.02500000000000001, -7.105427357601002e-18, 13.000000000000002, 3.907985046680551e-17, 0.03999999999999999, -31.99999999999998) ``` This is what should be written to the raster file. I would...
Thanks for confirming that the transform is written and read back correctly. I'm more certain now the issue is just this check and the bounds computation. Other operations with the...