add version 0.4.0 to r-isdparser (#21055)
This commit is contained in:
parent
665f297067
commit
061fa01dcb
1 changed files with 12 additions and 2 deletions
|
@ -7,13 +7,23 @@
|
||||||
|
|
||||||
|
|
||||||
class RIsdparser(RPackage):
|
class RIsdparser(RPackage):
|
||||||
"""isdparser: Parse 'NOAA' Integrated Surface Data Files"""
|
"""Parse 'NOAA' Integrated Surface Data Files
|
||||||
|
|
||||||
|
Tools for parsing 'NOAA' Integrated Surface Data ('ISD') files, described
|
||||||
|
at <https://www.ncdc.noaa.gov/isd>. Data includes for example, wind speed
|
||||||
|
and direction, temperature, cloud data, sea level pressure, and more.
|
||||||
|
Includes data from approximately 35,000 stations worldwide, though best
|
||||||
|
coverage is in North America/Europe/Australia. Data is stored as variable
|
||||||
|
length ASCII character strings, with most fields optional. Included are
|
||||||
|
tools for parsing entire files, or individual lines of data."""
|
||||||
|
|
||||||
homepage = "https://github.com/ropensci/isdparser"
|
homepage = "https://github.com/ropensci/isdparser"
|
||||||
url = "https://cloud.r-project.org/src/contrib/isdparser_0.3.0.tar.gz"
|
url = "https://cloud.r-project.org/src/contrib/isdparser_0.3.0.tar.gz"
|
||||||
list_url = "https://cloud.r-project.org/src/contrib/Archive/isdparser"
|
list_url = "https://cloud.r-project.org/src/contrib/Archive/isdparser"
|
||||||
|
|
||||||
|
version('0.4.0', sha256='6f609e8f5ae4ce2e7904401f289d60d219b8f3a2bec9f661d10afa18ab73b317')
|
||||||
version('0.3.0', sha256='6c9e1d7f3661802838010d659d7c77b964423dcc9a6623402df1fe3be627b7b9')
|
version('0.3.0', sha256='6c9e1d7f3661802838010d659d7c77b964423dcc9a6623402df1fe3be627b7b9')
|
||||||
|
|
||||||
depends_on('r-data-table@1.10.0:', type=('build', 'run'))
|
|
||||||
depends_on('r-tibble@1.2:', type=('build', 'run'))
|
depends_on('r-tibble@1.2:', type=('build', 'run'))
|
||||||
|
depends_on('r-data-table@1.10.0:', type=('build', 'run'))
|
||||||
|
depends_on('r-lubridate', when='@0.4.0:', type=('build', 'run'))
|
||||||
|
|
Loading…
Reference in a new issue