My temporary solution for something that only needs filters
{"filter":{"and":["term1","term2","term3]},"size":500}
Date | Value | |
---|---|---|
11:07 AM Thu Nov 13 2014 | 5.0097812 | |
11:12 AM Thu Nov 13 2014 | 5.115377 | |
11:17 AM Thu Nov 13 2014 | 4.878398 | |
11:22 AM Thu Nov 13 2014 | 4.7319595 | |
11:27 AM Thu Nov 13 2014 | 4.8122583 | |
11:32 AM Thu Nov 13 2014 | 4.8450874 | |
11:37 AM Thu Nov 13 2014 | 4.8571357 | |
11:42 AM Thu Nov 13 2014 | 4.950128 | |
11:47 AM Thu Nov 13 2014 | 5.00631 |
My temporary solution for something that only needs filters
{"filter":{"and":["term1","term2","term3]},"size":500}
MODIS downloads are stored as .hdf
files which makes them non-trivial to interact with.
I've previously mentioned using HEG but for a more streamlined approach we're going to want to use gdal.
Compiling GDAL with HDF4 support can actually be done fairly easily using brew although information on this was a bear to find. Thanks to Wood Sun we can do this via three commands
brew tap homebrew/versions
brew install hdf4
brew install https://raw.githubusercontent.com/geoalchimista/homebrew/master/formulae/gdal.rb --with-hdf4
Let's make Landsat API have better search syntax
search?search=
, let's just start adding params after search?
+AND+
, let's use &
:
, let's use =
[X+TO+Y]
, let's use [X,Y]
(and maybe sort them afterwards if they were flipped?)Welcome to Development Seed!
Here are some tips for understanding our workflow and culture. This is written to help people new to the team dive right in, and as a refresher for everyone on the strategy behind how we work. There are no official rules or policies here (all the gritty stuff is in the playbook). Please note: everything is evolving, and this is a snapshot. When we find ways to work that work better, we use them. Don't be afraid to suggest something new.
// Use Gists to store code you would like to remember later on | |
console.log(window); // log the "window" object to the console |
Allow for all raw file downloading (let's just use the tarballs from google unless we think it's important to allow for single band downloads)