Wei Ji
Wei Ji
Refresh to poetry 1.2.0rc2 and taking the opportunity to bump up lots of other dependencies like GMT and RAPIDS AI libraries. Supersedes #326. TODO: - [x] Update environment.yml file: -...
Reprocess delta_height (dh), height range (hrange) and rate of elevation change over time (dhdt) for the the whole of Antarctica over the 2019-03-29 to 2021-07-15 time period! Also calculate the...
Just found out about the [“CryoTEMPO-EOLIS: Elevation Over Land Ice from Swath”](https://cryotempo-eolis.org/) project, Looks like a more accessible way of getting Cryosat-2 radar altimetry data, though it's still pretty limited...
Scattered across `deepicedrain`'s various scripts is a 'regions' variable (also 'ice_boundaries', 'drainage_basins', etc) that holds a geographical bounding box and/or polygon which is needed for spatial subseting and plotting operations....
Find new active subglacial lakes in Antarctica automatically when new ICESat-2 datasets are available! Processing Pipeline: - [ ] Step 1. Setup a [scheduled Continuous Integration service](https://docs.github.com/en/actions/reference/workflow-syntax-for-github-actions#onschedule) to detect when...
Allow 'cog3pio' to be used as an engine in `xarray.open_dataarray` and `xarray.open_dataset`! Usage (Python): ```python import xarray as xr with xr.open_dataarray( filename_or_obj="https://github.com/cogeotiff/rio-tiler/raw/6.4.1/tests/fixtures/cog_nodata_nan.tif", engine="cog3pio", ) as da: assert da.sizes == {'band':...
An iterable-style [DataPipe](https://github.com/pytorch/data/tree/v0.7.0#what-are-datapipes) for point cloud data! I/O handled using [laspy](https://laspy.readthedocs.io/en/latest/api/laspy.lasdata.html#laspy.lasdata.LasData). **Preview** at https://zen3geo--137.org.readthedocs.build/en/137/api.html#module-zen3geo.datapipes.laspy Usage: ```python from torchdata.datapipes.iter import IterableWrapper from zen3geo.datapipes import LaspyReader # Read in LAZ data using...
Check two figures (generated using slightly different methods) returned by a test function directly, similar to [matplotlib's check_figures_equal](https://matplotlib.org/3.3.1/api/testing_api.html#matplotlib.testing.decorators.check_figures_equal) function. Open to suggestions on names and implementation details. ## Option 1...
Hi there, First off, thanks for the great plugin! Just a long time user over at [PyGMT](https://github.com/GenericMappingTools/pygmt) and we've being using `pytest-mpl` quite extensively to catch lots of bugs :smile:...
Hi there :wave: I've been tinkering around with reading GeoTIFFs in Rust using the the `tiff` crate at https://github.com/image-rs/image-tiff, and see that this is possibly the recommended way going forward...