Josh Sixsmith

Results 12 comments of Josh Sixsmith

Sorry @MarkWieczorek not quite there yet. I've been busy of late and haven't had much of chance to do more work on it. Most of the projections are defined, with...

Hi @maxrjones Thanks for the reminder ping. I've been out of action for quite a while with project work. I'm keen to wrap this work up. I'll do a refresh...

I'm currently adding in more tests. For the output projection string, is there a preference for including the prefix "-J" or leaving it out?

Woops. Sorry @maxrjones I wasn't thinking, and just auto-piloted with a rebase off "main" as my original branch was quite old without much further thought. Please let me know how...

Take a look at the examples: https://github.com/GeoscienceAustralia/agdc/tree/develop/api-examples/notebooks The docs page has a lot more information on data discovery and command line tools: http://geoscienceaustralia.github.io/agdc/api/0.1.0/html/index.html http://geoscienceaustralia.github.io/agdc/api/0.1.0/html/api_overview.html http://geoscienceaustralia.github.io/agdc/api/0.1.0/html/api_tools.html Also you're better off using...

Your first example works for me: ``` retrieve_dataset.py --x 145 --y -36 --satellite LS5 LS7 LS8 --acq-min 2015-01 --acq-max 2016-12 --dataset-type ARG25 --list-onl y --output-directory $PWD 2016-01-29 08:54:44,470 INFO acq...

Your Python example also works for me. ``` from datetime import date from datacube.api.model import DatasetType, Satellite from datacube.api.query import list_tiles_as_list satellites = [Satellite(i) for i in ['LS7']] dataset_types =...

Also could be the version you are using. Specifying the `--output-directory` flag, will output the file with a filename with the following elements: `{Satellite}_{Product}_{masking applied}_{Lon}_{Lat}_{Start Datetime}_{End Datetime}.csv` For example: ```...

Ahh ok. Just had a look at the code and it is marked as a `TODO`. https://github.com/GeoscienceAustralia/agdc/blob/develop/api/source/main/python/datacube/api/tool/retrieve_aoi_time_series.py#L341 Unfortunately it won't be addressed at our end, so the best I can...

Sorry for the late reply. The first warnings are related to dependencies. So you basically need to have those modules loaded first. The `module load` system has become somewhat unwieldly...