ropensci / rnoaa

R interface to many NOAA data APIs
https://docs.ropensci.org/rnoaa
Other
330 stars 84 forks source link

Add stop if windows until ncdf4 and grib2 issues in bug #127 are resolved. #133

Closed potterzot closed 8 years ago

sckott commented 8 years ago

Sorry - is_windows() is not a fxn in base R - you can tell from the snake case :)

here's the little function I made

is_windows <- function() {
    .Platform$OS.type == "windows"
}

can you add that

potterzot commented 8 years ago

Sure, though maybe it makes more sense for is_windows() to be in zzz.R?


Nicholas Potter http://potterzot.com

On Mon, Jan 25, 2016 at 10:23 AM, Scott Chamberlain < notifications@github.com> wrote:

Sorry - is_windows() is not a fxn in base R - you can tell from the snake case :)

here's the little function I made

is_windows <- function() { .Platform$OS.type == "windows" }

can you add that

— Reply to this email directly or view it on GitHub https://github.com/ropensci/rnoaa/pull/133#issuecomment-174610351.

sckott commented 8 years ago

yeah

sckott commented 8 years ago

thanks!