-
Notifications
You must be signed in to change notification settings - Fork 50
Home
#MODIStsp - Frequently Asked Questions
Here you can find possible solutions for common MODIStsp problems. We will add to this page as soon as additional problems are reported. If these solutions doesn't work for you, or you have a different problem, signal it at: https://github.com/lbusett/MODIStsp/issues
-
[Installation Problems](#Installation Problems)
Please Install the following required dependencies:
* Cairo >= 1.0.0, ATK >= 1.10.0, Pango >= 1.10.0, GTK+ >= 2.8.0, GLib >= 2.8.0 (required by package RGtk2
)
* Curl (required by package curl
)
* GDAL >= 1.6.3, PROJ.4 >= 4.4.9 (required by package rgdal
)
On Debian and Ubuntu-based systems, to install packages open a terminal and type:
sudo apt-get install r-cran-cairodevice r-cran-rgtk2 libcairo2-dev libatk1.0-dev libpango1.0-dev
libgtk2.0-dev libglib2.0-dev libcurl4-openssl-dev libgdal-dev libproj-dev
On rpm-based systems, to install packages open a terminal and type;
sudo yum install libcairo2-devel libatk1.0-devel libpango1.0-devel gtk2 gtk2-devel
glib2-devel libcurl4-devel gdal-devel proj-devel
On others distros: we didn't test installation on other distros yet - if you experience problems please contact us.
- On Windows, the program hangs at first interactive execution, while attemping to install gWisgets2RGtk2
At first interactive execution (i.e., with "gui = TRUE) of MODIStsp
, an error window will probably appear. Don't worry! This is just signaling that libatk-1.0-0.dll is missing from your system. This is due to the fact that library "GTK+"" is not yet installed on your system and needs to be installed. To do so, press "OK". A new window dialog window will appear, asking if you want to install "GTK+". Select "Install GTK+" and then "OK". Windows will download and install the GTK+ library. When it finishes, the RSession should be restarted and next MODISts
should go well ! In case
RStudio doesn't automatically restart after installimg GTK+, simply kill it form "Task Manager" ad reload RStudio.
At the first execution MODIStsp
searches for a valid GDAL installation. If nothing happens for a long time (e.g., several minutes), MODIStsp
(and in particular the gdalUtils package on which it relies) is not finding a valid GDAL installation in the more common locations. To solve the problem:
- Ensure that GDAL is properly installed in your system. See the main MODIStsp gitHub page for simple instructions
- (On Windows) If it is installed, verify that GDAL is in your system PATH, and that the GDAL_DATA environment variable is correctly set (You can find simple instructions HERE) (If gdal is not correctly installed or the path not set, then opening a windows shell ("cmd") and issuing the "gdalinfo" command will result in an error !)
If nothing works, please report the issue here: https://github.com/lbusett/MODIStsp/issues
There are currently some problems in installing MODIStsp via install_github on R >= 3.3.1 due to not correct installation of dependencies (related to a bug in CRAN version of install_github
). Installing the development version of devtools
should solve the issue. To do so, on a clean R/RStudio session do:
install.packages(c("devtools"))
devtools::install_github("hadley/devtools")
library(devtools)
, then continue with standard MODIStsp
installation.
If you have problems in installing the "devel" version of detools, manually installing all the dependencies should also solve the issue. To do so, please try doing:
install.packages(c("bitops", "data.table", "gdalUtils", "gWidgets", "hash", "plyr", "raster", "RCurl",
"rgdal", "rgeos", "xts", "XML", "xml2", "sp", "stringr", "httr", "RJSONIO","chron","iterators", "digest"))
, then continue with standard MODIStsp
installation.
If you still don't succedd, please contact us !
- Is it wednesday ??? If so, NASA http server may be down for maintainence. Try switching to "ftp" download;
- Verify that the username and password you provided are correct (Those can be obtained by registering an account at: https://urs.earthdata.nasa.gov/profile.);
- In some cases, access to the http server seems to be not allowed (we don't know why - maybe firewalling). Try switching to ftp download.
If nothing works, please report the issue here: https://github.com/lbusett/MODIStsp/issues
Although we tried to test functionality for all products, some bugs may be still present for specific products, due to the complexity and variability of MODIS hdfs structure. In that case, please report the issue here: https://github.com/lbusett/MODIStsp/issues
Output raster files are saved in a subfolder of the main output folder named after the selected product. Within that, a separate subfolder is created for each processed original MODIS layer, Quality Indicator or Spectral Index. Each subfolder contains one image for each processed date, created according to the following naming conventions:
"ProdCode"_"Layer"_"YYYY"_"DOY"."ext" (e.g.,MOD13Q1_NDVI_2000_065.dat)
ProdCode is the code name of the MODIS product from which the image was derived (e.g., MOD13Q1), Layer is a short name describing the dataset (e.g., b1_Red, NDII, UI), YYYY and DOY corresponds to the year and DOY (Day of the Year) of acquisition of the original MODIS image, and ext is the file extension (.tif for GTiff outputs, or .dat for ENVI outputs).
ENVI and/or GDAL virtual time series files and RasterStack RData objects are instead stored in the "Time_Series" subfolder.
Naming convention for these files is as follow:
"ProdCode"_"Layer"_"StartDOY"_"StartYear_"EndDOY"_"EndYear2_"suffix".ext"
(MOD13Q1_NDVI_49_2000_17_2015_RData.dat)
where suffix indicates the type of virtual file (ENVI, GDAL or RData), while StartDOY, StartYear, EndDOY and EndYear indicate the temporal extent of the time serie created.
Please report any other issues at https://github.com/lbusett/MODIStsp/issues