Thomas Stanley
Thomas Stanley
I suggest that the header at https://github.com/microsoft/PlanetaryComputerExamples/blob/main/datasets/gpm-imerg-hhr/gpm-imerg-hhr-example.ipynb make it clear which version of IMERG is being used (presumably final run).
I tried emailing [email protected] (for general info, not a bug report), but got a delivery failure.
`training = intake.open_csv('../data/landsat*_training.csv')` worked fine, but ```python training = intake.open_csv('../data/landsat{version:d}_training.csv') training_df = training.read() training_df.head() ``` produced a value error: ``` --------------------------------------------------------------------------- ValueError Traceback (most recent call last) in 1 training...
`crs = gv.util.proj_to_cartopy(landsat_8_da.crs)` generated ``` --------------------------------------------------------------------------- AttributeError Traceback (most recent call last) in ----> 1 crs = gv.util.proj_to_cartopy(landsat_8_da.crs) C:\ProgramData\Anaconda3\envs\earthml\lib\site-packages\geoviews\util.py in proj_to_cartopy(proj) 453 proj = check_crs(proj) 454 --> 455 if proj.is_latlong():...