Git Product home page Git Product logo

Comments (3)

aloboa avatar aloboa commented on September 15, 2024

I'm trying to modify readSLI() locally on my own, but as soon as I do it with
fix(readSLI)
upon running I get:
Error in .getNumeric(hdr[grep("samples", hdr)]) :
could not find function ".getNumeric"

using a windows box (today) and the github version o RStoolbox

from rstoolbox.

aloboa avatar aloboa commented on September 15, 2024

I have circumvented the problem by including .getNumeric() and .bracketRange() in a modified local version
of readSLI() and it works.
The only diferences to the original readSLI() are:
change

        data_type  <- .getNumeric(hdr[grep("data type", hdr)])
        id <- .bracketRange(hdr, "spectra names")

to

        data_type  <- .getNumeric(hdr[grep("data type", hdr)])
        byte_order <- .getNumeric(hdr[grep("byte order", hdr)])
        byte_order <- ifelse(byte_order==0,"little","big") 
        id <- .bracketRange(hdr, "spectra names")

and
x[] <- readBin(path, "numeric", n = 1e+06, size = bytes)
to
x[] <- readBin(path, "numeric", n = 1e+06, size = bytes,endian=byte_order)

from rstoolbox.

bleutner avatar bleutner commented on September 15, 2024

Well done, thanks! Fixed now.

from rstoolbox.

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.