Gyan Basyal
Gyan Basyal
Thank for reporting the issue. I will change the code as follows: ``` def lower_left_xy_from_transform(transform,shape,cell_zero_xcoord=0,cell_zero_ycoord=0): cdef: float xmin_easting,ymin_northing float xmin,xmax,ymin, ymax int lower_left_x,lower_left_y int rows, cols cellsize_x = transform[0] xmin...
This has been fixed.
As you are already aware, the wheels and source files for version 2.3.1 and later are now accessible on PyPI. Unfortunately, due to [this](https://peps.python.org/pep-0513/#rationale), I am unable to upload the...
@scottRMA Can you please post the dss file?
The C structure for regular time series includes an attribute that represents the interval between data points in seconds. This value is constant and does not accommodate variations in intervals,...
The HEC-DSS API defines 1MON as 43,200 minutes, assuming a 30-day month. Therefore, we can consider the interval to be 1MON if the interval value is 43,200 minutes. My concern...
Please provide your feedback regarding the outlined modifications: ``` # time_series.pyx @property def times(self): cdef: int num int interval,granularity int i,time_sum_int float time_sum_float if self.tss: interval = self.interval #seconds num...
I have implemented the logic as suggested earlier in version 2.3.2. It seems to be functioning correctly.
@LukeWebbJacobs Would revising the computation of lower_left_y in lower_left_xy_from_transform address this issue? For cell size, DSS stores a single value for Specified grid, implying square cells, so I assumed equal...
@LukeWebbJacobs Yes I have fixed it. I have made further fixes in the 3.0.0 beta version.