-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
adding MODIS SOAP web service R client
- Loading branch information
Virdi
committed
Dec 12, 2017
1 parent
28b1591
commit 5ead1ca
Showing
3 changed files
with
22 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
############################## | ||
# OS and IDE generated files # | ||
############################## | ||
.DS_Store | ||
.DS_Store? | ||
._* | ||
.Spotlight-V100 | ||
.Trashes | ||
ehthumbs.db | ||
Thumbs.db | ||
.project | ||
sftp-config.json |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
# Load the library | ||
library(MODISTools) | ||
# Get a list of avilable MODIS products | ||
GetProducts() | ||
# Get a list of Bands for the specified products | ||
GetBands("MYD15A2H") | ||
# Get a list of Dates available for the specified product and location | ||
GetDates(40.1,-110.2,"MYD15A2H") | ||
# Get subset data for the specified product, band, location, date range, and size | ||
GetSubset(40,-110,"MYD15A2H", "Lai_500m","A2007065","A2007065", 1,1) |