org.das2.datum.DatumUtil


asOrderOneUnits

asOrderOneUnits( Datum d ) → Datum

This method takes the input datum and gets it as close to order one as possible by trying all possible conversions.

Parameters

d - A datum that needs to have its units changed to order one units.

Returns:

The order-one-ified Datum.

search for examples view on GitHub view source


bestTimeFormatter

bestTimeFormatter( Datum minimum, Datum maximum, int nsteps ) → DatumFormatter

Returns:

org.das2.datum.format.DatumFormatter

search for examples view on GitHub view source


createValid

createValid( String s ) → Datum

create a dimensionless datum by parsing the string. See TimeUtil.createValid( String stime ).

Parameters

s -

Returns:

org.das2.datum.Datum

search for examples view on GitHub view source


datumStringSplit

datumStringSplit( String s ) → String

splits the datum into a magnitude part and a unit part. When times are detected, "UTC" will be the units part. Here is a list to test against, and the motivation:

Note: units cannot start with E or e then a number or plus or minus. Datums cannot contain commas, semicolons, or quotes. NaN is Double.NaN. TODO: only $ is supported as a prefix. Others should be considered for completeness.

Parameters

s - the string-formatted datum

Returns:

the magnitude and the units, or [null,s] when it is not parseable.

search for examples view on GitHub view source


doubleValues

doubleValues( org.das2.datum.Datum[] datums, Units units ) → double

Returns:

double[]

search for examples view on GitHub view source


fractionalDigits

fractionalDigits( Datum resolution ) → int

Returns:

int

search for examples view on GitHub view source


limitLogResolutionFormatter

limitLogResolutionFormatter( Datum minimum, Datum maximum, int nsteps ) → DatumFormatter

Returns:

org.das2.datum.format.DatumFormatter

search for examples view on GitHub view source


limitResolutionFormatter

limitResolutionFormatter( Datum minimum, Datum maximum, int nsteps ) → DatumFormatter

Returns:

org.das2.datum.format.DatumFormatter

search for examples view on GitHub view source


lookupDatum

lookupDatum( String s ) → Datum

Attempts to resolve strings commonly encountered. This was introduced to create a standard method for resolving Strings in ASCII files to a Datum. This follows the rules that:

Here is a list to test against, and the motivation:

Parameters

s -

Returns:

a Datum containing the value.

See Also:

Units#parse(java.lang.String)


search for examples view on GitHub view source


numericalResolutionLimit

numericalResolutionLimit( Datum datum ) → Datum

return the numeric resolution of the Datum. Note some Datum implementations have additional information which allows the measurement resolution to be reflected as well, and this should be much smaller.

Parameters

datum - a datum

Returns:

a datum in the offset units.

search for examples view on GitHub view source


parseValid

parseValid( String s ) → Datum

parse the string which contains a valid representation of a a Datum. A runtime exception is thrown when the string cannot be parsed.

Parameters

s - the string representing the Datum, e.g. "5 Hz"

Returns:

the Datum

search for examples view on GitHub view source


splitDatumString

splitDatumString( String s ) → String

Split the string to separate magnitude component from units component. "5" → [ "5", "" ] "5 m" → [ "5", "m" ] "5m" → [ "5", "m" ] "4.5m^2" → [ "4.5", "m^2" ] "4.5e6m^2" → [ "4.5e6", "m^2" ] "-1" → [ "-1", "" ] "-1s" → [ "-1", "s" ] "-1.0e-6s" → [ "-1e-6", "s" ] "5 Deg N" → [ "5", "Deg N" ] " 10 days" → [ "10", "days" ] See http://jfaden.net:8080/hudson/job/autoplot-test037/ws/splitDatumString.jy

Parameters

s - the string to break up

Returns:

two element array

search for examples view on GitHub view source