├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── MODIS.Rproj ├── NAMESPACE ├── NEWS ├── NEWS.md ├── R ├── EarthdataLogin.R ├── MODIS-deprecated.R ├── MODIS-package.R ├── MODIS_QC.R ├── MODISoptions.R ├── MODISswath.R ├── MODISswath │ ├── AOIset_Jap.txt │ ├── AOIset_Marchfeld.txt │ ├── AOIset_Odessa.txt │ ├── AOIset_Odessa_179_27.txt │ ├── FUSION_CloudCeck_MxD02_s2g.R │ ├── FUSION_CloudCheck.R │ ├── FUSION_cloudCeck_getMOD02.R │ ├── getMxD02_fromCSV.R │ ├── getMxD02onSubsetAndCheckClouds.R │ └── getMxD35.R ├── aaa-classes.R ├── addServer.R ├── aggInterval.R ├── arcStats.R ├── blockSizeCluster.R ├── checkIntegrity.R ├── checkTools.R ├── checkUtils.R ├── delHdf.R ├── detectBitInfo.R ├── doOptions.R ├── downloadUtils.R ├── extractDate.R ├── fileSize.R ├── gdalControls.R ├── genString.R ├── genTile.R ├── getCollection.R ├── getGranule.R ├── getHdf.R ├── getPart.R ├── getProduct.R ├── getSds.R ├── getStruc.R ├── getTile.R ├── getUTMZone.R ├── lpdaacLogin.R ├── makeWeights.R ├── minorFuns.R ├── miwhitatzb1.R ├── orgStruc.R ├── orgTime.R ├── preStack.R ├── reformatDOY.R ├── repDoy.R ├── runGdal.R ├── runMrt.R ├── smoothSpline.R ├── sysdata.rda ├── temporalComposite.R ├── transDate.R ├── whittaker.R └── zzz.R ├── README.md ├── TODO ├── dev_history.R ├── exec ├── exec-modis_collection_update.R ├── exec-modis_dl.R ├── exec-modis_skip_s2.R └── exec-utils.R ├── inst ├── external │ ├── MOD13A2.A2016145.h18v04.006.2016166145124.hdf │ ├── MODIS_FTPinfo.RData │ ├── MODIS_Opts.R │ ├── MODIS_Products.RData │ ├── MODIS_TilesPolys.RData │ ├── UTM_Zone_Boundaries.rds │ ├── modis_latlonWGS84_grid_world.dbf │ ├── modis_latlonWGS84_grid_world.prj │ ├── modis_latlonWGS84_grid_world.shp │ ├── modis_latlonWGS84_grid_world.shx │ ├── modis_sinusoidal_grid_world.dbf │ ├── modis_sinusoidal_grid_world.prj │ ├── modis_sinusoidal_grid_world.shp │ ├── products.ods │ ├── tileNames.RData │ └── tiletable.txt └── tinytest │ ├── _test-genString.R │ ├── _test-getCollection.R │ ├── _test-getProduct.R │ ├── _test-runGdal.R │ ├── _test-skipDuplicateProducts.R │ ├── test-EarthdataLogin.R │ ├── test-MODIS_Products.R │ ├── test-MODIScollection.R │ ├── test-MODISoptions.R │ ├── test-extractDate.R │ ├── test-getSds.R │ ├── test-getTile.R │ ├── test-minorFuns.R │ ├── test-runGdal.R │ └── test-runMrt.R ├── man ├── EarthdataLogin.Rd ├── MODIS-deprecated.Rd ├── MODIS-package.Rd ├── MODISextent-class.Rd ├── MODISfile-class.Rd ├── MODISoptions.Rd ├── MODISproduct-class.Rd ├── aggInterval.Rd ├── arcStats.Rd ├── delHdf.Rd ├── detectBitInfo.Rd ├── extractDate.Rd ├── fileSize.Rd ├── genTile.Rd ├── getCollection.Rd ├── getHdf.Rd ├── getProduct.Rd ├── getSds.Rd ├── getTile.Rd ├── lpdaacLogin-deprecated.Rd ├── makeWeights.Rd ├── minorFuns.Rd ├── orgStruc.Rd ├── orgTime.Rd ├── preStack.Rd ├── reformatDOY.Rd ├── repDoy.Rd ├── runGdal.Rd ├── runMrt.Rd ├── smooth.spline.raster.Rd ├── temporalComposite.Rd ├── transDate.Rd └── whittaker.raster.Rd └── tests └── tinytest.R /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdetsch/MODIS/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdetsch/MODIS/HEAD/.gitignore -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdetsch/MODIS/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdetsch/MODIS/HEAD/LICENSE -------------------------------------------------------------------------------- /MODIS.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdetsch/MODIS/HEAD/MODIS.Rproj -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdetsch/MODIS/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdetsch/MODIS/HEAD/NEWS -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdetsch/MODIS/HEAD/NEWS.md -------------------------------------------------------------------------------- /R/EarthdataLogin.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdetsch/MODIS/HEAD/R/EarthdataLogin.R -------------------------------------------------------------------------------- /R/MODIS-deprecated.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdetsch/MODIS/HEAD/R/MODIS-deprecated.R -------------------------------------------------------------------------------- /R/MODIS-package.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdetsch/MODIS/HEAD/R/MODIS-package.R -------------------------------------------------------------------------------- /R/MODIS_QC.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdetsch/MODIS/HEAD/R/MODIS_QC.R -------------------------------------------------------------------------------- /R/MODISoptions.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdetsch/MODIS/HEAD/R/MODISoptions.R -------------------------------------------------------------------------------- /R/MODISswath.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdetsch/MODIS/HEAD/R/MODISswath.R -------------------------------------------------------------------------------- /R/MODISswath/AOIset_Jap.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdetsch/MODIS/HEAD/R/MODISswath/AOIset_Jap.txt -------------------------------------------------------------------------------- /R/MODISswath/AOIset_Marchfeld.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdetsch/MODIS/HEAD/R/MODISswath/AOIset_Marchfeld.txt -------------------------------------------------------------------------------- /R/MODISswath/AOIset_Odessa.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdetsch/MODIS/HEAD/R/MODISswath/AOIset_Odessa.txt -------------------------------------------------------------------------------- /R/MODISswath/AOIset_Odessa_179_27.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdetsch/MODIS/HEAD/R/MODISswath/AOIset_Odessa_179_27.txt -------------------------------------------------------------------------------- /R/MODISswath/FUSION_CloudCeck_MxD02_s2g.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdetsch/MODIS/HEAD/R/MODISswath/FUSION_CloudCeck_MxD02_s2g.R -------------------------------------------------------------------------------- /R/MODISswath/FUSION_CloudCheck.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdetsch/MODIS/HEAD/R/MODISswath/FUSION_CloudCheck.R -------------------------------------------------------------------------------- /R/MODISswath/FUSION_cloudCeck_getMOD02.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdetsch/MODIS/HEAD/R/MODISswath/FUSION_cloudCeck_getMOD02.R -------------------------------------------------------------------------------- /R/MODISswath/getMxD02_fromCSV.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdetsch/MODIS/HEAD/R/MODISswath/getMxD02_fromCSV.R -------------------------------------------------------------------------------- /R/MODISswath/getMxD02onSubsetAndCheckClouds.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdetsch/MODIS/HEAD/R/MODISswath/getMxD02onSubsetAndCheckClouds.R -------------------------------------------------------------------------------- /R/MODISswath/getMxD35.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdetsch/MODIS/HEAD/R/MODISswath/getMxD35.R -------------------------------------------------------------------------------- /R/aaa-classes.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdetsch/MODIS/HEAD/R/aaa-classes.R -------------------------------------------------------------------------------- /R/addServer.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdetsch/MODIS/HEAD/R/addServer.R -------------------------------------------------------------------------------- /R/aggInterval.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdetsch/MODIS/HEAD/R/aggInterval.R -------------------------------------------------------------------------------- /R/arcStats.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdetsch/MODIS/HEAD/R/arcStats.R -------------------------------------------------------------------------------- /R/blockSizeCluster.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdetsch/MODIS/HEAD/R/blockSizeCluster.R -------------------------------------------------------------------------------- /R/checkIntegrity.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdetsch/MODIS/HEAD/R/checkIntegrity.R -------------------------------------------------------------------------------- /R/checkTools.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdetsch/MODIS/HEAD/R/checkTools.R -------------------------------------------------------------------------------- /R/checkUtils.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdetsch/MODIS/HEAD/R/checkUtils.R -------------------------------------------------------------------------------- /R/delHdf.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdetsch/MODIS/HEAD/R/delHdf.R -------------------------------------------------------------------------------- /R/detectBitInfo.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdetsch/MODIS/HEAD/R/detectBitInfo.R -------------------------------------------------------------------------------- /R/doOptions.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdetsch/MODIS/HEAD/R/doOptions.R -------------------------------------------------------------------------------- /R/downloadUtils.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdetsch/MODIS/HEAD/R/downloadUtils.R -------------------------------------------------------------------------------- /R/extractDate.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdetsch/MODIS/HEAD/R/extractDate.R -------------------------------------------------------------------------------- /R/fileSize.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdetsch/MODIS/HEAD/R/fileSize.R -------------------------------------------------------------------------------- /R/gdalControls.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdetsch/MODIS/HEAD/R/gdalControls.R -------------------------------------------------------------------------------- /R/genString.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdetsch/MODIS/HEAD/R/genString.R -------------------------------------------------------------------------------- /R/genTile.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdetsch/MODIS/HEAD/R/genTile.R -------------------------------------------------------------------------------- /R/getCollection.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdetsch/MODIS/HEAD/R/getCollection.R -------------------------------------------------------------------------------- /R/getGranule.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdetsch/MODIS/HEAD/R/getGranule.R -------------------------------------------------------------------------------- /R/getHdf.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdetsch/MODIS/HEAD/R/getHdf.R -------------------------------------------------------------------------------- /R/getPart.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdetsch/MODIS/HEAD/R/getPart.R -------------------------------------------------------------------------------- /R/getProduct.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdetsch/MODIS/HEAD/R/getProduct.R -------------------------------------------------------------------------------- /R/getSds.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdetsch/MODIS/HEAD/R/getSds.R -------------------------------------------------------------------------------- /R/getStruc.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdetsch/MODIS/HEAD/R/getStruc.R -------------------------------------------------------------------------------- /R/getTile.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdetsch/MODIS/HEAD/R/getTile.R -------------------------------------------------------------------------------- /R/getUTMZone.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdetsch/MODIS/HEAD/R/getUTMZone.R -------------------------------------------------------------------------------- /R/lpdaacLogin.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdetsch/MODIS/HEAD/R/lpdaacLogin.R -------------------------------------------------------------------------------- /R/makeWeights.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdetsch/MODIS/HEAD/R/makeWeights.R -------------------------------------------------------------------------------- /R/minorFuns.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdetsch/MODIS/HEAD/R/minorFuns.R -------------------------------------------------------------------------------- /R/miwhitatzb1.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdetsch/MODIS/HEAD/R/miwhitatzb1.R -------------------------------------------------------------------------------- /R/orgStruc.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdetsch/MODIS/HEAD/R/orgStruc.R -------------------------------------------------------------------------------- /R/orgTime.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdetsch/MODIS/HEAD/R/orgTime.R -------------------------------------------------------------------------------- /R/preStack.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdetsch/MODIS/HEAD/R/preStack.R -------------------------------------------------------------------------------- /R/reformatDOY.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdetsch/MODIS/HEAD/R/reformatDOY.R -------------------------------------------------------------------------------- /R/repDoy.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdetsch/MODIS/HEAD/R/repDoy.R -------------------------------------------------------------------------------- /R/runGdal.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdetsch/MODIS/HEAD/R/runGdal.R -------------------------------------------------------------------------------- /R/runMrt.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdetsch/MODIS/HEAD/R/runMrt.R -------------------------------------------------------------------------------- /R/smoothSpline.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdetsch/MODIS/HEAD/R/smoothSpline.R -------------------------------------------------------------------------------- /R/sysdata.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdetsch/MODIS/HEAD/R/sysdata.rda -------------------------------------------------------------------------------- /R/temporalComposite.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdetsch/MODIS/HEAD/R/temporalComposite.R -------------------------------------------------------------------------------- /R/transDate.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdetsch/MODIS/HEAD/R/transDate.R -------------------------------------------------------------------------------- /R/whittaker.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdetsch/MODIS/HEAD/R/whittaker.R -------------------------------------------------------------------------------- /R/zzz.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdetsch/MODIS/HEAD/R/zzz.R -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdetsch/MODIS/HEAD/README.md -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdetsch/MODIS/HEAD/TODO -------------------------------------------------------------------------------- /dev_history.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdetsch/MODIS/HEAD/dev_history.R -------------------------------------------------------------------------------- /exec/exec-modis_collection_update.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdetsch/MODIS/HEAD/exec/exec-modis_collection_update.R -------------------------------------------------------------------------------- /exec/exec-modis_dl.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdetsch/MODIS/HEAD/exec/exec-modis_dl.R -------------------------------------------------------------------------------- /exec/exec-modis_skip_s2.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdetsch/MODIS/HEAD/exec/exec-modis_skip_s2.R -------------------------------------------------------------------------------- /exec/exec-utils.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdetsch/MODIS/HEAD/exec/exec-utils.R -------------------------------------------------------------------------------- /inst/external/MOD13A2.A2016145.h18v04.006.2016166145124.hdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdetsch/MODIS/HEAD/inst/external/MOD13A2.A2016145.h18v04.006.2016166145124.hdf -------------------------------------------------------------------------------- /inst/external/MODIS_FTPinfo.RData: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdetsch/MODIS/HEAD/inst/external/MODIS_FTPinfo.RData -------------------------------------------------------------------------------- /inst/external/MODIS_Opts.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdetsch/MODIS/HEAD/inst/external/MODIS_Opts.R -------------------------------------------------------------------------------- /inst/external/MODIS_Products.RData: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdetsch/MODIS/HEAD/inst/external/MODIS_Products.RData -------------------------------------------------------------------------------- /inst/external/MODIS_TilesPolys.RData: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdetsch/MODIS/HEAD/inst/external/MODIS_TilesPolys.RData -------------------------------------------------------------------------------- /inst/external/UTM_Zone_Boundaries.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdetsch/MODIS/HEAD/inst/external/UTM_Zone_Boundaries.rds -------------------------------------------------------------------------------- /inst/external/modis_latlonWGS84_grid_world.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdetsch/MODIS/HEAD/inst/external/modis_latlonWGS84_grid_world.dbf -------------------------------------------------------------------------------- /inst/external/modis_latlonWGS84_grid_world.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdetsch/MODIS/HEAD/inst/external/modis_latlonWGS84_grid_world.prj -------------------------------------------------------------------------------- /inst/external/modis_latlonWGS84_grid_world.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdetsch/MODIS/HEAD/inst/external/modis_latlonWGS84_grid_world.shp -------------------------------------------------------------------------------- /inst/external/modis_latlonWGS84_grid_world.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdetsch/MODIS/HEAD/inst/external/modis_latlonWGS84_grid_world.shx -------------------------------------------------------------------------------- /inst/external/modis_sinusoidal_grid_world.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdetsch/MODIS/HEAD/inst/external/modis_sinusoidal_grid_world.dbf -------------------------------------------------------------------------------- /inst/external/modis_sinusoidal_grid_world.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdetsch/MODIS/HEAD/inst/external/modis_sinusoidal_grid_world.prj -------------------------------------------------------------------------------- /inst/external/modis_sinusoidal_grid_world.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdetsch/MODIS/HEAD/inst/external/modis_sinusoidal_grid_world.shp -------------------------------------------------------------------------------- /inst/external/products.ods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdetsch/MODIS/HEAD/inst/external/products.ods -------------------------------------------------------------------------------- /inst/external/tileNames.RData: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdetsch/MODIS/HEAD/inst/external/tileNames.RData -------------------------------------------------------------------------------- /inst/external/tiletable.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdetsch/MODIS/HEAD/inst/external/tiletable.txt -------------------------------------------------------------------------------- /inst/tinytest/_test-genString.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdetsch/MODIS/HEAD/inst/tinytest/_test-genString.R -------------------------------------------------------------------------------- /inst/tinytest/_test-getCollection.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdetsch/MODIS/HEAD/inst/tinytest/_test-getCollection.R -------------------------------------------------------------------------------- /inst/tinytest/_test-getProduct.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdetsch/MODIS/HEAD/inst/tinytest/_test-getProduct.R -------------------------------------------------------------------------------- /inst/tinytest/_test-runGdal.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdetsch/MODIS/HEAD/inst/tinytest/_test-runGdal.R -------------------------------------------------------------------------------- /inst/tinytest/_test-skipDuplicateProducts.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdetsch/MODIS/HEAD/inst/tinytest/_test-skipDuplicateProducts.R -------------------------------------------------------------------------------- /inst/tinytest/test-EarthdataLogin.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdetsch/MODIS/HEAD/inst/tinytest/test-EarthdataLogin.R -------------------------------------------------------------------------------- /inst/tinytest/test-MODIS_Products.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdetsch/MODIS/HEAD/inst/tinytest/test-MODIS_Products.R -------------------------------------------------------------------------------- /inst/tinytest/test-MODIScollection.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdetsch/MODIS/HEAD/inst/tinytest/test-MODIScollection.R -------------------------------------------------------------------------------- /inst/tinytest/test-MODISoptions.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdetsch/MODIS/HEAD/inst/tinytest/test-MODISoptions.R -------------------------------------------------------------------------------- /inst/tinytest/test-extractDate.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdetsch/MODIS/HEAD/inst/tinytest/test-extractDate.R -------------------------------------------------------------------------------- /inst/tinytest/test-getSds.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdetsch/MODIS/HEAD/inst/tinytest/test-getSds.R -------------------------------------------------------------------------------- /inst/tinytest/test-getTile.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdetsch/MODIS/HEAD/inst/tinytest/test-getTile.R -------------------------------------------------------------------------------- /inst/tinytest/test-minorFuns.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdetsch/MODIS/HEAD/inst/tinytest/test-minorFuns.R -------------------------------------------------------------------------------- /inst/tinytest/test-runGdal.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdetsch/MODIS/HEAD/inst/tinytest/test-runGdal.R -------------------------------------------------------------------------------- /inst/tinytest/test-runMrt.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdetsch/MODIS/HEAD/inst/tinytest/test-runMrt.R -------------------------------------------------------------------------------- /man/EarthdataLogin.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdetsch/MODIS/HEAD/man/EarthdataLogin.Rd -------------------------------------------------------------------------------- /man/MODIS-deprecated.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdetsch/MODIS/HEAD/man/MODIS-deprecated.Rd -------------------------------------------------------------------------------- /man/MODIS-package.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdetsch/MODIS/HEAD/man/MODIS-package.Rd -------------------------------------------------------------------------------- /man/MODISextent-class.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdetsch/MODIS/HEAD/man/MODISextent-class.Rd -------------------------------------------------------------------------------- /man/MODISfile-class.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdetsch/MODIS/HEAD/man/MODISfile-class.Rd -------------------------------------------------------------------------------- /man/MODISoptions.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdetsch/MODIS/HEAD/man/MODISoptions.Rd -------------------------------------------------------------------------------- /man/MODISproduct-class.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdetsch/MODIS/HEAD/man/MODISproduct-class.Rd -------------------------------------------------------------------------------- /man/aggInterval.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdetsch/MODIS/HEAD/man/aggInterval.Rd -------------------------------------------------------------------------------- /man/arcStats.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdetsch/MODIS/HEAD/man/arcStats.Rd -------------------------------------------------------------------------------- /man/delHdf.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdetsch/MODIS/HEAD/man/delHdf.Rd -------------------------------------------------------------------------------- /man/detectBitInfo.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdetsch/MODIS/HEAD/man/detectBitInfo.Rd -------------------------------------------------------------------------------- /man/extractDate.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdetsch/MODIS/HEAD/man/extractDate.Rd -------------------------------------------------------------------------------- /man/fileSize.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdetsch/MODIS/HEAD/man/fileSize.Rd -------------------------------------------------------------------------------- /man/genTile.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdetsch/MODIS/HEAD/man/genTile.Rd -------------------------------------------------------------------------------- /man/getCollection.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdetsch/MODIS/HEAD/man/getCollection.Rd -------------------------------------------------------------------------------- /man/getHdf.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdetsch/MODIS/HEAD/man/getHdf.Rd -------------------------------------------------------------------------------- /man/getProduct.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdetsch/MODIS/HEAD/man/getProduct.Rd -------------------------------------------------------------------------------- /man/getSds.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdetsch/MODIS/HEAD/man/getSds.Rd -------------------------------------------------------------------------------- /man/getTile.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdetsch/MODIS/HEAD/man/getTile.Rd -------------------------------------------------------------------------------- /man/lpdaacLogin-deprecated.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdetsch/MODIS/HEAD/man/lpdaacLogin-deprecated.Rd -------------------------------------------------------------------------------- /man/makeWeights.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdetsch/MODIS/HEAD/man/makeWeights.Rd -------------------------------------------------------------------------------- /man/minorFuns.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdetsch/MODIS/HEAD/man/minorFuns.Rd -------------------------------------------------------------------------------- /man/orgStruc.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdetsch/MODIS/HEAD/man/orgStruc.Rd -------------------------------------------------------------------------------- /man/orgTime.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdetsch/MODIS/HEAD/man/orgTime.Rd -------------------------------------------------------------------------------- /man/preStack.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdetsch/MODIS/HEAD/man/preStack.Rd -------------------------------------------------------------------------------- /man/reformatDOY.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdetsch/MODIS/HEAD/man/reformatDOY.Rd -------------------------------------------------------------------------------- /man/repDoy.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdetsch/MODIS/HEAD/man/repDoy.Rd -------------------------------------------------------------------------------- /man/runGdal.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdetsch/MODIS/HEAD/man/runGdal.Rd -------------------------------------------------------------------------------- /man/runMrt.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdetsch/MODIS/HEAD/man/runMrt.Rd -------------------------------------------------------------------------------- /man/smooth.spline.raster.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdetsch/MODIS/HEAD/man/smooth.spline.raster.Rd -------------------------------------------------------------------------------- /man/temporalComposite.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdetsch/MODIS/HEAD/man/temporalComposite.Rd -------------------------------------------------------------------------------- /man/transDate.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdetsch/MODIS/HEAD/man/transDate.Rd -------------------------------------------------------------------------------- /man/whittaker.raster.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdetsch/MODIS/HEAD/man/whittaker.raster.Rd -------------------------------------------------------------------------------- /tests/tinytest.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdetsch/MODIS/HEAD/tests/tinytest.R --------------------------------------------------------------------------------