pds.meta_display

pds.meta_display

Per-instrument display dispatchers for plp meta / get_meta.

Most indexes use the generic two-column dump in :func:get_meta. A few indexes (notably HiRISE EDR/RDR, where one observation explodes into many channel rows) need custom behavior. Instrument packages register such a handler via :func:register_meta_handler; the function must accept (index_key, product_id, *, long: bool) and return a display-ordered pandas.Series (the CLI does no further reordering).

Functions

Name Description
get_handler Return the per-index meta-display function, or None for the generic path.
register_meta_handler Register a custom plp meta display function for an index key.

get_handler

pds.meta_display.get_handler(index_key)

Return the per-index meta-display function, or None for the generic path.

[source]

register_meta_handler

pds.meta_display.register_meta_handler(index_key, handler)

Register a custom plp meta display function for an index key.

Public extension hook for instrument packages whose indexes need custom metadata rendering.

[source]