Class MBRampsScalesCurves

    • Constructor Detail

      • MBRampsScalesCurves

        public MBRampsScalesCurves​(JSONArray json)
    • Method Detail

      • rscInterpolate

        public Expression rscInterpolate()
        Produces continuous, smooth results by interpolating between pairs of input and output values ("stops"). The input may be any numeric expression (e.g., ["get", "population"]). Stop inputs must be numeric literals in strictly ascending order. The output type must be number, array<number>, or color. Example: ["interpolate", interpolation: ["linear"] | ["exponential", base] | ["cubic-bezier", x1, y1, x2, y2 ], input: number, stop_input_1: number, stop_output_1: OutputType, stop_input_n: number, stop_output_n: OutputType, ... ]: OutputType (number, array<number>, or Color)"
        Returns:
        interpolate expression (not implemented)
      • rscStep

        public Expression rscStep()
        Produces discrete, stepped results by evaluating a piecewise-constant function defined by pairs of input and output values ("stops"). The input may be any numeric expression (e.g., ["get", "population"]). Stop inputs must be numeric literals in strictly ascending order. Returns the output value of the stop just less than the input, or the first input if the input is less than the first stop.
        Returns:
        expression from stop values (unimplemented)