Daniel Hamill

Results 12 comments of Daniel Hamill

I am having a similar problem in anaconda environment using Ubuntu 18.04. Steps to recreate the envronment using conda 4.3.30: ``` conda create --name test_env python=3.5 source activate test_env pip...

I tried setting something up like: ```python remote_stat = await client.stat(path) remote_size = int(remote_stat['size']) if await aos.path.exists(dest): stat = await aos.stat(dest) size = stat.st_size else: size = 0 while not...

Thanks for your reply. I had a long debugging session yesterday and can confirm ```python if not block: break ``` is never evaluated `True`. In case somebody else has a...

All I can say is during my debugging when I got to a point where `remote_size == size`, as ` async for block in stream.iter_by_block()` proceeded to `await local_file.write(block)` with...

In my [comment](https://github.com/aio-libs/aioftp/issues/151#issuecomment-1096868071), `remote_size` is defined inside the top of the download routine. e.g., > ```python >while max_attempts try: > async with async_timeout.timeout(20): > async with aioftp.Client.context('192.12.137.7', user='anonymous', port=21) as...

Wanted to follow up on this. I see in [VIC/tests/profiling/run_gprof.bash](https://github.com/UW-Hydro/VIC/blob/master/tests/profiling/run_gprof.bash) there appear to be PBS scheduling scripts for other HPCMP resources. I am working with the ERDC DSRC help desk...

@jakevdp It looks like vega implemented a label transform in version 5.16. Is there a way to pass transform data that hasn't officially been implemented in altair yet? https://vega.github.io/vega/docs/transforms/label/ Thanks!

I will have to work out an example to show the unexpected behavior, but I am seeing zeros (not noData or -901.0) being dropped from the beginning or end of...

I have not had any success converting grids in a version 7 dss file to version 6. I would suggest using the HEC utility [vortex](https://github.com/HydrologicEngineeringCenter/Vortex) for your HMS grid processing...

Similarly, `grid_params` has the attribute `Format` as apposed to `format` ```python Exception has occurred: AttributeError module 'tonic.models.vic.grid_params' has no attribute 'format' File "C:\workspace\git_clones\tonic\tonic\models\vic\ncparam2ascii.py", line 329, in snow f = grid_params.format(snow_bands=snow_bands)...