Search found 4 matches

by jldechow
Thu Mar 07, 2024 3:00 pm America/New_York
Forum: Questions/Comments
Question: Download script for MODIS/Terra LST Daily 1km has different download URLS from collection granules shown
Replies: 4

Re: Download script for MODIS/Terra LST Daily 1km has different download URLS from collection granules shown

Script up til first line of fetch_urls (hitting character limit on post) #!/bin/bash GREP_OPTIONS='' cookiejar=$(mktemp cookies.XXXXXXXXXX) netrc=$(mktemp netrc.XXXXXXXXXX) chmod 0600 "$cookiejar" "$netrc" function finish { rm -rf "$cookiejar" "$netrc" } trap ...
by jldechow
Thu Mar 07, 2024 2:59 pm America/New_York
Forum: Questions/Comments
Question: Download script for MODIS/Terra LST Daily 1km has different download URLS from collection granules shown
Replies: 4

Re: Download script for MODIS/Terra LST Daily 1km has different download URLS from collection granules shown

Hi Brett, For my spatial subset I am using a rectangle in WA state east of the cascades. Coords are SW: 46.7048,-121.86914 NE: 48.77902,-117.68555 Temporal subset Start: 2022-09-01 00:00:00 End: 2023-05-31 23:59:59 Data Product: MODIS/Terra Land Surface Temperature/Emissivity Daily L3 Global 1km SIN...
by jldechow
Thu Mar 07, 2024 2:27 pm America/New_York
Forum: Questions/Comments
Question: Download script for MODIS/Terra LST Daily 1km has different download URLS from collection granules shown
Replies: 4

Download script for MODIS/Terra LST Daily 1km has different download URLS from collection granules shown

I have been working with the MODIS/Terra Land Surface Temperature/Emissivity Daily L3 Global 1km SIN Grid V061 data product and was trying to download another year worth of data yesterday. While in EarthData search I am spatially subsetting and then setting my start and end dates to the correct date...
by jldechow
Tue Jun 15, 2021 8:21 pm America/New_York
Forum: Questions/Comments
Question: Getting the error ‘/usr/bin/python: No module named pip’
Replies: 4

Re: Getting the error ‘/usr/bin/python: No module named pip’

Hi. I have had similar issues (however with request module not being loaded). Assuming you are on macOS, there is issues with the seaDAS GUI installer defaulting to your OS preferred python install (even if you change the calls in the script itself). Here is a link to installing pip through the term...