DeserializedMeasurement¶
-
class
lsst.validate.base.
DeserializedMeasurement
(quantity=None, id_=None, metric=None, parameters=None, extras=None, linked_blobs=None, spec_name=None, filter_name=None)[source]¶ Bases:
lsst.validate.base.MeasurementBase
Measurement deserialized from JSON.
For internal use only.
Attributes Summary
blobs
dict
of blobs attached to this measurement instance.datum
Representation of this measurement as a Datum
.extras
filter_name
identifier
Unique UUID4-based identifier for this measurement ( str
).json
A dict
that can be serialized as semantic SQUASH JSON.label
Name of the Metric
associated with this measurement (str
).latex_unit
Units as a LaTeX string, wrapped in $
.metric
parameters
quantity
Value of the datum ( astropy.units.Quantity
,str
,bool
,None
).spec_name
unit
Read-only astropy.units.Unit
of thequantity
.unit_str
Read-only astropy.units.Unit
-compatiblestr
indicating units ofquantity
.Methods Summary
check_spec
(name)Check this measurement against a Specification
level, of theMetric
.from_json
(json_data[, blobs_json])Construct a measurement from a JSON dataset. jsonify_dict
(d)Recursively build JSON-renderable objects on all values in a dict. register_extra
(extra_key[, quantity, unit, ...])Register a measurement extra—a by-product of a metric measurement. register_parameter
(param_key[, quantity, ...])Register a measurement input parameter attribute. write_json
(filepath)Write JSON to a file. Attributes Documentation
-
extras
= None¶
-
filter_name
= None¶
-
latex_unit
¶ Units as a LaTeX string, wrapped in
$
.
-
metric
= None¶
-
parameters
= None¶
-
quantity
¶ Value of the datum (
astropy.units.Quantity
,str
,bool
,None
).
-
spec_name
= None¶
-
unit
¶ Read-only
astropy.units.Unit
of thequantity
.
-
unit_str
¶ Read-only
astropy.units.Unit
-compatiblestr
indicating units ofquantity
.
Methods Documentation
-
check_spec
(name)¶ Check this measurement against a
Specification
level, of theMetric
.Parameters: name :
str
Specification
level name.Returns: passed :
bool
True
if the measurement meets theSpecification
level,False
otherwise.Notes
Internally this method retrieves the
Specification
object, filtering first by thename
, but also by this object’sfilter_name
attribute if specifications are filter-dependent.
-
from_json
(json_data, blobs_json=None)¶ Construct a measurement from a JSON dataset.
Parameters: json_data :
dict
Measurement JSON object.
blobs_json :
list
JSON serialization of blobs. This is the
blobs
object produced byJob.json
.Returns: measurement :
MeasurementBase
-typeMeasurement from JSON.
-
jsonify_dict
(d)¶ Recursively build JSON-renderable objects on all values in a dict.
Parameters: d :
dict
Dictionary ito convert into a JSON-serializable object. Values are recursively JSON-ified.
Returns: json_dict :
dict
Dictionary that can be serialized to JSON.
Examples
Subclasses can use this method to prepare output in their
json
-method implementation. For example:def json(self): return JsonSerializationMixin.jsonify_dict({ 'value': self.value, })
-
register_extra
(extra_key, quantity=None, unit=None, label=None, description=None, datum=None)¶ Register a measurement extra—a by-product of a metric measurement.
The value of the extra can either be set at registration time (see
quantity
argument), or later by setting the object’s attribute namedextra_key
.The value of an extra can always be accessed through the object’s attribute named after
extra_key
.Extras are stored as
Datum
objects, which can be accessed through theparameters
attributedict
.Parameters: extra_key :
str
Name of the extra; used as the key in the
extras
attribute of this object.quantity :
astropy.units.Quantity
,str
, orbool
Value of the extra.
label :
str
, optionalLabel suitable for plot axes (without units). By default the
extra_key
is used as thelabel
. Setting this label argument overrides both of these.description :
str
, optionalExtended description.
datum :
Datum
, optionalIf a
Datum
is provided, its value, label and description will be used unless overriden by other arguments toregister_extra
.
-
register_parameter
(param_key, quantity=None, label=None, description=None, datum=None)¶ Register a measurement input parameter attribute.
The value of the parameter can either be set at registration time (see
quantity
argument), or later by setting the object’s attribute namedparam_key
.The value of a parameter can always be accessed through the object’s attribute named after the provided
param_key
.Parameters are stored as
Datum
objects, which can be accessed through theparameters
attributedict
.Parameters: param_key :
str
Name of the parameter; used as the key in the
parameters
attribute of this object.quantity :
astropy.units.Quantity
,str
orbool
.Value of the parameter.
label :
str
, optionalLabel suitable for plot axes (without units). By default the
param_key
is used as thelabel
. Setting thislabel
argument overrides that default.description :
str
, optionalExtended description of the parameter.
datum :
Datum
, optionalIf a
Datum
is provided, its quantity, label and description are be used unless overriden by other arguments to this method.
-