The WLTS
client installs a command line tool named wlts-cli
that allows to retrieve trajectory data.
If you want to know the WLTS version, use the option --version
as in:
wlts-cli --version
List the available collections:
wlts-cli --url 'https://brazildatacube.dpi.inpe.br/wlts/' list-collections
To get more information about a specific collection, use the describe
command:
wlts-cli --url 'https://brazildatacube.dpi.inpe.br/wlts/' describe --collection prodes_amazonia_legal
Retrieve the trajectory given a longitude and latitude:
wlts-cli --url 'https://brazildatacube.dpi.inpe.br/wlts/' \ --access-token='change-me' \ trajectory \ --latitude -12.0 \ --longitude -54.0 \ --start-date 2001 \ --end-date 2011 \ --collections mapbiomas-v8
The above command will return a document as:
trajectory: [
{'class': 'Formação Florestal', 'collection': 'mapbiomas-v8', 'date': '2001'},
{'class': 'Formação Florestal', 'collection': 'mapbiomas-v8', 'date': '2002'},
{'class': 'Formação Florestal', 'collection': 'mapbiomas-v8', 'date': '2003'},
{'class': 'Formação Florestal', 'collection': 'mapbiomas-v8', 'date': '2004'},
{'class': 'Formação Florestal', 'collection': 'mapbiomas-v8', 'date': '2005'},
{'class': 'Formação Florestal', 'collection': 'mapbiomas-v8', 'date': '2006'},
{'class': 'Formação Florestal', 'collection': 'mapbiomas-v8', 'date': '2007'},
{'class': 'Formação Florestal', 'collection': 'mapbiomas-v8', 'date': '2008'},
{'class': 'Formação Florestal', 'collection': 'mapbiomas-v8', 'date': '2009'},
{'class': 'Formação Florestal', 'collection': 'mapbiomas-v8', 'date': '2010'},
{'class': 'Formação Florestal', 'collection': 'mapbiomas-v8', 'date': '2011'}
]
Note
You may need to pass the parameter --access-token=CHANGE_ME
to retrieve trajectory.