类的使用
org.meteoinfo.ndarray.InvalidRangeException
-
使用InvalidRangeException的程序包 程序包 说明 org.meteoinfo.bak org.meteoinfo.data org.meteoinfo.data.dataframe org.meteoinfo.data.meteodata org.meteoinfo.image org.meteoinfo.math org.meteoinfo.math.stats org.meteoinfo.ndarray Multidimensional arrays of primitives and objects with data stored in memory.org.meteoinfo.projection -
-
org.meteoinfo.bak中InvalidRangeException的使用
抛出InvalidRangeException的org.meteoinfo.bak中的方法 修饰符和类型 方法 说明 static ArrayArrayMath. all(Array a, int axis)Test whether all array element along a given axis evaluates to True.static ArrayArrayMath. any(Array a, int axis)Test whether any array element along a given axis evaluates to True.static intArrayMath. argMax(Array a)Get the index of the maximum value into the flattened array.static ArrayArrayMath. argMax(Array a, int axis)Get the indices of the maximum values along an axis.static intArrayMath. argMin(Array a)Get the index of the minimum value into the flattened array.static ArrayArrayMath. argMin(Array a, int axis)Get the indices of the minimum values along an axis.static ArrayArrayUtil. argSort(Array a, java.lang.Integer axis)Get sorted array index along an axisstatic ArrayArrayUtil. concatenate(java.util.List<Array> arrays, java.lang.Integer axis)Concatenate arrays to one array along a axisstatic ArrayArrayUtil. concatenate(Array a, Array b, java.lang.Integer axis)Concatenate two arrays to one array along a axisstatic ArrayArrayMath. cumsum(Array a, int axis)Return the cumulative sum of the elements along a given axis.static java.util.List<java.lang.Double>ArrayMath. cumsum(Array a, java.util.List<Range> ranges)Compute cumulative sum value of an arraystatic java.lang.ObjectArrayUtil. interpn(java.util.List<Array> points, Array values, Array xi)Multidimensional interpolation on regular grids.static ArrayArrayUtil. interpolate_1d(double x, Array xp, Array a, int axis)Interpolates data with any shape over a specified axis.static ArrayArrayUtil. interpolate_1d(Array xa, Array xp, Array a, int axis)Interpolates data with any shape over a specified axis.static ArrayArrayMath. max(Array a, int axis)Compute maximum value of an array along an axis (dimension)static doubleArrayMath. max(Array a, java.util.List<Range> ranges)Compute maximum value of an arraystatic ArrayArrayMath. mean(Array a, int axis)Compute mean value of an array along an axis (dimension)static doubleArrayMath. mean(Array a, java.util.List<Range> ranges)Compute mean value of an arraystatic ArrayArrayMath. median(Array a, int axis)Compute median value of an array along an axis (dimension)static doubleArrayMath. median(Array a, java.util.List<Range> ranges)Compute median value of an arraystatic ArrayArrayMath. min(Array a, int axis)Compute minimum value of an array along an axis (dimension)static doubleArrayMath. min(Array a, java.util.List<Range> ranges)Compute minimum value of an arraystatic ArrayArrayUtil. reproject(Array data, java.util.List<java.lang.Number> x, java.util.List<java.lang.Number> y, Array rx, Array ry, ProjectionInfo fromProj, ProjectionInfo toProj, double fill_value, ResampleMethods resampleMethod)Reprojectstatic ArrayArrayUtil. reproject(Array data, java.util.List<java.lang.Number> x, java.util.List<java.lang.Number> y, Array rx, Array ry, ProjectionInfo fromProj, ProjectionInfo toProj, ResampleMethods resampleMethod)Reprojectstatic java.lang.Object[]ArrayUtil. reproject(Array data, java.util.List<java.lang.Number> xx, java.util.List<java.lang.Number> yy, ProjectionInfo fromProj, ProjectionInfo toProj)Project grid datastatic java.lang.Object[]ArrayUtil. reproject(Array data, java.util.List<java.lang.Number> xx, java.util.List<java.lang.Number> yy, ProjectionInfo fromProj, ProjectionInfo toProj, ResampleMethods method)Project grid datastatic java.lang.Object[]ArrayUtil. reproject_back(Array data, java.util.List<java.lang.Number> xx, java.util.List<java.lang.Number> yy, ProjectionInfo fromProj, ProjectionInfo toProj)Project grid datastatic ArrayArrayMath. section(Array a, int[] origin, int[] size, int[] stride)Section arraystatic ArrayArrayMath. section(Array a, java.util.List<Range> ranges)Section arraystatic ArrayArrayMath. setSection(Array a, java.util.List<Range> ranges, java.lang.Number v)Set sectionstatic ArrayArrayMath. setSection(Array a, java.util.List<Range> ranges, Array v)Set sectionstatic ArrayArrayUtil. sort(Array a, java.lang.Integer axis)Sort array along an axisstatic doubleArrayMath. std(Array a)Compute standard deviation value of an arraystatic ArrayArrayMath. std(Array a, int axis)Compute standard deviation value of an array along an axis (dimension)static doubleArrayMath. std(Array a, java.util.List<Range> ranges)Compute standard deviation value of an arraystatic ArrayArrayMath. sum(Array a, int axis)Compute sum value of an array along an axis (dimension)static doubleArrayMath. sum(Array a, java.util.List<Range> ranges)Compute sum value of an arraystatic ArrayArrayMath. trapz(Array a, double dx, int axis)Integrate vector array using the composite trapezoidal rule.static doubleArrayMath. trapz(Array y, double dx, java.util.List<Range> ranges)Integrate vector array using the composite trapezoidal rule.static ArrayArrayMath. trapz(Array a, Array x, int axis)Integrate vector array using the composite trapezoidal rule.static doubleArrayMath. trapz(Array y, Array x, java.util.List<Range> ranges)Integrate vector array using the composite trapezoidal rule.static ArrayArrayMath. var(Array a, int axis)Compute variance value of an array along an axis (dimension)static doubleArrayMath. var(Array a, java.util.List<Range> ranges)Compute variance value of an array -
org.meteoinfo.data中InvalidRangeException的使用
抛出InvalidRangeException的org.meteoinfo.data中的方法 修饰符和类型 方法 说明 GridArrayGridArray. project(ProjectionInfo toProj)Project grid dataGridArrayGridArray. project(ProjectionInfo fromProj, ProjectionInfo toProj)Project grid dataGridArrayGridArray. project(ProjectionInfo fromProj, ProjectionInfo toProj, ResampleMethods resampleMethod)Project grid data -
org.meteoinfo.data.dataframe中InvalidRangeException的使用
抛出InvalidRangeException的org.meteoinfo.data.dataframe中的方法 修饰符和类型 方法 说明 voidDataFrame. addColumn(int loc, java.lang.String colName, java.lang.Object o)Add column datavoidDataFrame. addColumn(int loc, java.lang.String colName, Array a)Add column datavoidDataFrame. addColumn(int loc, Column column, Array a)Add column datavoidDataFrame. addColumn(java.lang.String colName, Array a)Add column datavoidDataFrame. addColumn(Column column, Series s)Add column datavoidDataFrame. addColumn(Column column, Array a)Add column datavoidDataFrame. dataReshape(int nrow, int ncol)Data reshapeArrayDataFrame. getColumnData(int col)Get column data arrayArrayDataFrame. getColumnData(java.lang.String colName)Get column data arrayjava.lang.ObjectDataFrame. select(int row, Range colRange)Select by row and column rangesjava.lang.ObjectDataFrame. select(java.util.List<java.lang.Integer> rowRange, Range colRange)Select by row and column rangesjava.lang.ObjectDataFrame. select(java.util.List rowKeys, java.util.List<java.lang.Integer> rowRange, java.util.List<java.lang.Integer> colRange)Select by row and column rangesjava.lang.ObjectDataFrame. select(java.util.List rowKeys, java.util.List<java.lang.Integer> rowRange, Range colRange)Select by row and column rangesjava.lang.ObjectDataFrame. select(Range rowRange, java.util.List<java.lang.Integer> colRange)Select by row and column rangesjava.lang.ObjectDataFrame. select(Range rowRange, Range colRange)Select by row and column rangesvoidDataFrame. setColumn(java.lang.String colName, java.lang.Object a)Set column datavoidDataFrame. setColumn(java.lang.String colName, Array a)Set column datavoidDataFrame. setValues(int row, Range colRange, java.lang.Number value)Set values by row and column rangesvoidDataFrame. setValues(int row, Range colRange, Array value)Set values by row and column rangesjava.lang.ObjectSeries. stdDev()Compute the standard deviation of the numeric columns for each group or the entire series if the data is not grouped. -
org.meteoinfo.data.meteodata中InvalidRangeException的使用
抛出InvalidRangeException的org.meteoinfo.data.meteodata中的方法 修饰符和类型 方法 说明 ArrayMeteoDataInfo. take(java.lang.String varName, java.util.List<java.lang.Object> ranges)Take array data from the variable -
org.meteoinfo.image中InvalidRangeException的使用
抛出InvalidRangeException的org.meteoinfo.image中的方法 修饰符和类型 方法 说明 static ArrayImageUtil. gaussianFilter(Array data, int size, double sigma)Calculate a multi-dimensional gaussian filter.static ArrayImageUtil. maximumFilter(Array data, int size)Calculate a multi-dimensional maximum filter.static ArrayImageUtil. minimumFilter(Array data, int size)Calculate a multi-dimensional minimum filter. -
org.meteoinfo.math中InvalidRangeException的使用
抛出InvalidRangeException的org.meteoinfo.math中的方法 修饰符和类型 方法 说明 static ArrayArrayMath. all(Array a, int axis)Test whether all array element along a given axis evaluates to True.static ArrayArrayMath. any(Array a, int axis)Test whether any array element along a given axis evaluates to True.static intArrayMath. argMax(Array a)Get the index of the maximum value into the flattened array.static ArrayArrayMath. argMax(Array a, int axis)Get the indices of the maximum values along an axis.static intArrayMath. argMin(Array a)Get the index of the minimum value into the flattened array.static ArrayArrayMath. argMin(Array a, int axis)Get the indices of the minimum values along an axis.static ArrayArrayUtil. argSort(Array a, java.lang.Integer axis)Get sorted array index along an axisstatic ArrayArrayUtil. concatenate(java.util.List<Array> arrays, java.lang.Integer axis)Concatenate arrays to one array along a axisstatic ArrayArrayUtil. concatenate(Array a, Array b, java.lang.Integer axis)Concatenate two arrays to one array along a axisstatic ArrayArrayMath. cumsum(Array a, int axis)Return the cumulative sum of the elements along a given axis.static java.util.List<java.lang.Double>ArrayMath. cumsum(Array a, java.util.List<Range> ranges)Compute cumulative sum value of an arraystatic java.lang.ObjectArrayUtil. interpn(java.util.List<Array> points, Array values, Array xi)Multidimensional interpolation on regular grids.static ArrayArrayUtil. interpolate_1d(double x, Array xp, Array a, int axis)Interpolates data with any shape over a specified axis.static ArrayArrayUtil. interpolate_1d(Array xa, Array xp, Array a, int axis)Interpolates data with any shape over a specified axis.static ArrayArrayMath. max(Array a, int axis)Compute maximum value of an array along an axis (dimension)static doubleArrayMath. max(Array a, java.util.List<Range> ranges)Compute maximum value of an arraystatic ArrayArrayMath. mean(Array a, int axis)Compute mean value of an array along an axis (dimension)static doubleArrayMath. mean(Array a, java.util.List<Range> ranges)Compute mean value of an arraystatic ArrayArrayMath. median(Array a, int axis)Compute median value of an array along an axis (dimension)static doubleArrayMath. median(Array a, java.util.List<Range> ranges)Compute median value of an arraystatic ArrayArrayMath. min(Array a, int axis)Compute minimum value of an array along an axis (dimension)static doubleArrayMath. min(Array a, java.util.List<Range> ranges)Compute minimum value of an arraystatic ArrayArrayMath. section(Array a, int[] origin, int[] size, int[] stride)Section arraystatic ArrayArrayMath. section(Array a, java.util.List<Range> ranges)Section arraystatic ArrayArrayMath. setSection(Array a, java.util.List<Range> ranges, java.lang.Number v)Set sectionstatic ArrayArrayMath. setSection(Array a, java.util.List<Range> ranges, java.lang.Object v)Set sectionstatic ArrayArrayMath. setSection(Array a, java.util.List<Range> ranges, Array v)Set sectionstatic ArrayArrayUtil. sort(Array a, java.lang.Integer axis)Sort array along an axisstatic doubleArrayMath. std(Array a)Compute standard deviation value of an arraystatic ArrayArrayMath. std(Array a, int axis)Compute standard deviation value of an array along an axis (dimension)static doubleArrayMath. std(Array a, java.util.List<Range> ranges)Compute standard deviation value of an arraystatic ArrayArrayMath. sum(Array a, int axis)Compute sum value of an array along an axis (dimension)static doubleArrayMath. sum(Array a, java.util.List<Range> ranges)Compute sum value of an arraystatic ArrayArrayMath. take(Array a, Array indices, java.lang.Integer axis)Take elements from an array along an axis.static ArrayArrayMath. trapz(Array a, double dx, int axis)Integrate vector array using the composite trapezoidal rule.static doubleArrayMath. trapz(Array y, double dx, java.util.List<Range> ranges)Integrate vector array using the composite trapezoidal rule.static ArrayArrayMath. trapz(Array a, Array x, int axis)Integrate vector array using the composite trapezoidal rule.static doubleArrayMath. trapz(Array y, Array x, java.util.List<Range> ranges)Integrate vector array using the composite trapezoidal rule.static ArrayArrayUtil. unique(Array a, java.lang.Integer axis)Find the unique elements of an array.static ArrayArrayMath. var(Array a, int axis)Compute variance value of an array along an axis (dimension)static doubleArrayMath. var(Array a, java.util.List<Range> ranges)Compute variance value of an array -
org.meteoinfo.math.stats中InvalidRangeException的使用
抛出InvalidRangeException的org.meteoinfo.math.stats中的方法 修饰符和类型 方法 说明 static Array[]StatsUtil. pearsonr(Array x, Array y, int axis)Calculates a Pearson correlation coefficient.static ArrayStatsUtil. percentile(Array a, double p, int axis)Returns an estimate of the pth percentile of the values in the array along an axis. -
org.meteoinfo.ndarray中InvalidRangeException的使用
抛出InvalidRangeException的org.meteoinfo.ndarray中的方法 修饰符和类型 方法 说明 SectionSection. addRangeNames(java.util.List<java.lang.String> rangeNames)SectionSection. appendRange(int size)Append a new Range(0,size-1) to the SectionSectionSection. appendRange(int first, int last)Append a new Range(first, last) to the SectionSectionSection. appendRange(int first, int last, int stride)Append a new Range(first,last,stride) to the SectionSectionSection. appendRange(java.lang.String name, int first, int last, int stride)Append a new Range(name,first,last,stride) to the Sectionstatic java.util.ListRange. appendShape(java.util.List ranges, int size)已过时。use Section.appendRange(int size)RangeRange. compact()Create a new Range by compacting this Range by removing the stride.SectionSection. compact()Create a new Section by compacting each Range.RangeRange. compose(Range r)Create a new Range by composing a Range that is reletive to this Range.SectionSection. compose(Section want)Create a new Section by composing with a Section that is reletive to this Section.intRange. element(int i)Get ith elementbooleanSection. equivalent(int[] shape)Is this section equivilent to the given shape.static java.util.ListRange. factory(int[] origin, int[] shape)已过时。use Section(int[] origin, int[] shape)static SectionSection. fill(Section s, int[] shape)Return a Section guaranteed to be non null, with no null Ranges, and within the bounds set by shape.IndexIteratorArray. getRangeIterator(java.util.List<Range> ranges)Get an index iterator for traversing a section of the array in canonical order.intRange. index(int elem)Get the index for this element: inverse of elementRangeRange. intersect(Range r)Create a new Range by intersecting with a Range using same interval as this Range.SectionSection. intersect(Section other)Create a new Section by intersection with another SectionbooleanSection. intersects(Section other)See if this Section intersects with another Section. ignores stridesintSection. offset(Section intersect)static java.util.ListRange. parseSpec(java.lang.String sectionSpec)已过时。use new Section(String sectionSpec)SectionSection. removeVlen()Create a new Section by compacting each Range.ArrayArray. section(int[] origin, int[] shape)Create a new Array as a subsection of this Array, with rank reduction.ArrayArray. section(int[] origin, int[] shape, int[] stride)Create a new Array as a subsection of this Array, with rank reduction.ArrayArray. section(java.util.List<Range> ranges)Create a new Array as a subsection of this Array, with rank reduction.DimArrayDimArray. section(int[] origin, int[] size, int[] stride)SectionArrayArray. sectionNoReduce(int[] origin, int[] shape, int[] stride)Create a new Array as a subsection of this Array, without rank reduction.ArrayArray. sectionNoReduce(java.util.List<Range> ranges)Create a new Array as a subsection of this Array, without rank reduction.ArrayArrayStructureBak. sectionNoReduce(java.util.List<Range> ranges)voidSection. setDefaults(int[] shape)If any of the ranges are null, which means "all", set the Range from the corresponding length in shape[].RangeRange. shiftOrigin(int origin)Create a new Range shifting this range by a constant factor.SectionSection. shiftOrigin(Section newOrigin)Create a new Section by shifting each range by newOrigin.first() The result is then a reletive offset from the newOrigin.RangeRange. union(Range r)Create a new Range by making the union with a Range using same interval as this Range.SectionSection. union(Section other)Create a new Section by union with another Section抛出InvalidRangeException的org.meteoinfo.ndarray中的构造器 构造器 说明 Range(int first, int last)Create a range with unit stride.Range(int first, int last, int stride)Create a range with a specified stride.Range(java.lang.String name, int first, int last)Create a named range with unit stride.Range(java.lang.String name, int first, int last, int stride)Create a named range with a specified stride.Section(int[] origin, int[] shape)Create Section from a shape and origin arrays.Section(int[] origin, int[] size, int[] stride)Create Section from a shape, origin, and stride arrays.Section(java.lang.String sectionSpec)Parse an index section String specification, return equivilent Section.Section(java.util.List<Range> from, int[] shape)Create Section from a List. -
org.meteoinfo.projection中InvalidRangeException的使用
抛出InvalidRangeException的org.meteoinfo.projection中的方法 修饰符和类型 方法 说明 static java.lang.Object[]Reproject. reproject(Array data, java.util.List<java.lang.Number> xx, java.util.List<java.lang.Number> yy, org.locationtech.proj4j.CoordinateReferenceSystem fromProj, org.locationtech.proj4j.CoordinateReferenceSystem toProj, ResampleMethods method)Project grid datastatic ArrayReproject. reproject(Array data, java.util.List<java.lang.Number> x, java.util.List<java.lang.Number> y, Array rx, Array ry, ProjectionInfo fromProj, ProjectionInfo toProj, double fill_value, ResampleMethods resampleMethod)Reprojectstatic ArrayReproject. reproject(Array data, java.util.List<java.lang.Number> x, java.util.List<java.lang.Number> y, Array rx, Array ry, ProjectionInfo fromProj, ProjectionInfo toProj, ResampleMethods resampleMethod)Reprojectstatic java.lang.Object[]Reproject. reproject(Array data, java.util.List<java.lang.Number> xx, java.util.List<java.lang.Number> yy, ProjectionInfo fromProj, ProjectionInfo toProj)Project grid datastatic java.lang.Object[]Reproject. reproject(Array data, java.util.List<java.lang.Number> xx, java.util.List<java.lang.Number> yy, ProjectionInfo fromProj, ProjectionInfo toProj, ResampleMethods method)Project grid data
-