IngestionData
data types are:pandas.DataFrame
, mapping the column names to dataset fields.xarray.Dataset
, mapping variables and coordinates to dataset fields.Iterable
, dict
or nd-array
: ingest any object that can be converted to a pandas.DataFrame
using
it’s constructor, equivalent to ingest(pd.DataFrame(data))
.UUID
for each
datapoint in a collection. Duplicate data points result in the same ID being generated.
If allow_existing
is True
, ingest
will skip those data points, since they already exist.
If allow_existing
is False
, ingest
will raise an error if any of the generated datapoint IDs already exist.
Defaults to True
.allow_existing=True
.
allow_existing
is False
and any of the datapoints attempting to ingest already exist.