Giter Site home page Giter Site logo

[SOLVED] MODIStsp package is showing Username and password invalid even when the same credentials are working for NASA earth data search website about modistsp HOT 21 CLOSED

AlkaRani29 avatar AlkaRani29 commented on June 25, 2024
[SOLVED] MODIStsp package is showing Username and password invalid even when the same credentials are working for NASA earth data search website

from modistsp.

Comments (21)

github-actions avatar github-actions commented on June 25, 2024

@AlkaRani29 unfortunately the owner can no longer provide assistance for this package. If you need to ask for help or make a question about {MODIStsp} functionalities, refer to the package documentation first, and check if the topic was already addressed within closed issues. Then, address remaining doubts to public forums like StackOverflow, where other users could eventually provide useful ticks. If you are able to correct a bug, please address your changes in a pull request.

from modistsp.

ranghetti avatar ranghetti commented on June 25, 2024

This was fixed with #256, you need to update the package from Github using the command remotes::install_github("ropensci/MODIStsp")

from modistsp.

ranghetti avatar ranghetti commented on June 25, 2024

I leave this issue opened until CRAN version will be updated.

from modistsp.

rsmiller74 avatar rsmiller74 commented on June 25, 2024

Issue remains after installing from github ropensci/MODIStsp.

from modistsp.

EvertonTLima avatar EvertonTLima commented on June 25, 2024

O problema permanece após a instalação do github ropensci/MODIStsp.

Eu havia instalado pelo CRAN (v.2.0.8), deu usuário/senha inválida, então desinstalei, instalei novamente pelo #remotes::install_github("ropensci/MODIStsp"), aí funcionou bem (v.2.0.7)

from modistsp.

rsmiller74 avatar rsmiller74 commented on June 25, 2024

I have updated R to version R version 4.2.1 (2022-06-23 ucrt) and installed remotes::install_github("ropensci/MODIStsp") (v.2.0.7) and get the same result User name and password not valid. I have double checked my login on the earth data website. I have included a reproducible example below.

#--Load Libraries
remotes::install_github("mikejohnson51/AOI")
remotes::install_github("ropensci/MODIStsp", force=TRUE)
packageVersion("MODIStsp")

library(sf)
library(AOI)
library(MODIStsp)

#--Make and set working dir
working.dir.path<-file.path(tempdir(), "temp")
dir.create(working.dir.path)
setwd(working.dir.path)

#--Set Area of Interest
AOI = aoi_get(state = "IL")

st_write(AOI, dsn=file.path(working.dir.path), layer="tmp.poly.shp", driver='ESRI Shapefile', delete_layer=TRUE)

spatial.file.path <- paste0(file.path(working.dir.path,"tmp.poly.shp"))

#--Get MODIS Landcover data
MODIStsp(gui = FALSE,
out_folder = working.dir.path,
out_folder_mod = working.dir.path,
selprod = "LandCover_Type_Yearly_500m (MCD12Q1)",
bandsel = "LC1",
sensor = "Terra",
user = "login" ,
password = "password",
start_date = "2020.01.01",
end_date = "2020.12.31",
verbose = TRUE,
spatmeth = "file",
spafile = dirname(spatial.file.path),
delete_hdf = TRUE,
out_format = "GTiff",
ts_format = "R RasterStack",
reprocess = TRUE,
parallel = 8
)

GDAL version in use: 3.4.3
[Thu Aug 25 15:34:36 2022] MODIStsp --> Starting processing
[Thu Aug 25 15:34:36 2022] Accessing http server at: https://e4ftl01.cr.usgs.gov/MOTA/MCD12Q1.006/
[Thu Aug 25 15:34:37 2022] Retrieving list of available Terra Files for Year 2020
Error in MODIStsp_download(modislist, proc_opts$out_folder_mod, download_server, :
Username and/or password are not valid. Please provide
valid ones!

from modistsp.

ranghetti avatar ranghetti commented on June 25, 2024

@rsmiller74 it is an issue related to your credentials, as you can see below.

#--Get MODIS Landcover data
MODIStsp(gui = FALSE,
         ...,
         user = "rsmiller" ,
         password = "Dall2020hunt",
         ...
)
GDAL version in use: 3.5.1
[Fri Aug 26 08:28:27 2022] MODIStsp --> Starting processing
[Fri Aug 26 08:28:27 2022] Accessing http server at:  https://e4ftl01.cr.usgs.gov/MOTA/MCD12Q1.006/
[Fri Aug 26 08:28:28 2022] Retrieving list of available ` Terra ` Files for Year 2020
 Errore in MODIStsp_download(modislist, proc_opts$out_folder_mod, download_server, : 
Username and/or password are not valid. Please provide
valid ones! 
#--Get MODIS Landcover data
MODIStsp(gui = FALSE,
         ...,
         user = "*** my username ***" ,
         password = "*** my password ***",
         ...
)
GDAL version in use: 3.5.1
[Fri Aug 26 08:29:14 2022] MODIStsp --> Starting processing
[Fri Aug 26 08:29:14 2022] Accessing http server at:  https://e4ftl01.cr.usgs.gov/MOTA/MCD12Q1.006/
[Fri Aug 26 08:29:14 2022] Retrieving list of available ` Terra ` Files for Year 2020
[Fri Aug 26 08:29:19 2022] Downloading Terra Files for date: 2020_01_01 : 1 of:  4
[Fri Aug 26 08:29:35 2022] Downloading Terra Files for date: 2020_01_01 : 2 of:  4
[Fri Aug 26 08:29:50 2022] Downloading Terra Files for date: 2020_01_01 : 3 of:  4
[Fri Aug 26 08:30:12 2022] Downloading Terra Files for date: 2020_01_01 : 4 of:  4
[Fri Aug 26 08:30:26 2022] [Fri Aug 26 08:30:26 2022] 4 files for date: 2020.01.01 were successfully downloaded!
...

from modistsp.

rsmiller74 avatar rsmiller74 commented on June 25, 2024

from modistsp.

ranghetti avatar ranghetti commented on June 25, 2024

Version 2.0.9, which includes the fix for this issue, was released on CRAN; I'm closing this.

from modistsp.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.