Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
LST package
  • Loading branch information
bappa10085 committed Dec 7, 2023
0 parents commit 0a09a19
Show file tree
Hide file tree
Showing 20 changed files with 1,075 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .Rbuildignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
^LST\.Rproj$
^\.Rproj\.user$
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
.Rproj.user
27 changes: 27 additions & 0 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
Package: LST
Title: Land Surface Temperature Retrieval for Landsat 8
Version: 1.1.0
Authors@R:
c(person(given = "Bappa",
family = "Das",
role = c("aut", "cre"),
email = "[email protected]",
comment = c(ORCID = "0000-0003-1286-1492")),
person("Debasish", "Roy", email = "[email protected]", role = c("aut", "ctb")),
person("Debashis", "Chakraborty", email = "[email protected]", role = c("aut", "ctb")),
person("Bimal", "Bhattacharya", email = "[email protected]", role = c("aut", "ctb")),
person("Pooja", "Rathore", email = "[email protected]", role = c("aut", "ctb")))
Description: Calculates Land Surface Temperature from Landsat band 10 and 11.
Revision of the Single-Channel Algorithm for Land Surface Temperature Retrieval From Landsat Thermal-Infrared Data. Jimenez-Munoz JC, Cristobal J, Sobrino JA, et al (2009). <doi: 10.1109/TGRS.2008.2007125>.
Land surface temperature retrieval from LANDSAT TM 5. Sobrino JA, Jiménez-Muñoz JC, Paolini L (2004). <doi:10.1016/j.rse.2004.02.003>.
Surface temperature estimation in Singhbhum Shear Zone of India using Landsat-7 ETM+ thermal infrared data. Srivastava PK, Majumdar TJ, Bhattacharya AK (2009). <doi: 10.1016/j.asr.2009.01.023>.
Mapping land surface emissivity from NDVI: Application to European, African, and South American areas. Valor E (1996). <doi:10.1016/0034-4257(96)00039-9>.
On the relationship between thermal emissivity and the normalized difference vegetation index for natural surfaces. Van de Griend AA, Owe M (1993). <doi:10.1080/01431169308904400>.
Land Surface Temperature Retrieval from Landsat 8 TIRS—Comparison between Radiative Transfer Equation-Based Method, Split Window Algorithm and Single Channel Method. Yu X, Guo X, Wu Z (2014). <doi:10.3390/rs6109829>.
Calibration and Validation of land surface temperature for Landsat8-TIRS sensor. Land product validation and evolution. Skoković D, Sobrino JA, Jimenez-Munoz JC, Soria G, Julien Y, Mattar C, Cristóbal J. (2014).
Depends: R (>= 3.5.0)
Imports: raster
License: AGPL-3
Encoding: UTF-8
Roxygen: list(markdown = TRUE)
RoxygenNote: 7.2.3
22 changes: 22 additions & 0 deletions LST.Rproj
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
Version: 1.0

RestoreWorkspace: No
SaveWorkspace: No
AlwaysSaveHistory: Default

EnableCodeIndexing: Yes
UseSpacesForTab: Yes
NumSpacesForTab: 2
Encoding: UTF-8

RnwWeave: Sweave
LaTeX: XeLaTeX

AutoAppendNewline: Yes
StripTrailingWhitespace: Yes
LineEndingConversion: Posix

BuildType: Package
PackageUseDevtools: Yes
PackageInstallArgs: --no-multiarch --with-keep.source
PackageRoxygenize: rd,collate,namespace
17 changes: 17 additions & 0 deletions NAMESPACE
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# Generated by roxygen2: do not edit by hand

export(BT)
export(E_Skokovic)
export(E_Sobrino)
export(E_Valor)
export(E_VandeGriend)
export(E_Yu)
export(MWA)
export(NDVI)
export(Pv)
export(RTE)
export(SCA)
export(SWA)
export(Ta)
export(tau)
importFrom(raster,brick)
Loading

0 comments on commit 0a09a19

Please sign in to comment.