Collection.ingest
Ingest data into a collection.
You need to have write permission on the collection to be able to delete datapoints.
Parameters
The data to ingest.
Supported IngestionData
data types are:
- A
pandas.DataFrame
, mapping the column names to dataset fields. - An
xarray.Dataset
, mapping variables and coordinates to dataset fields. Iterable
,dict
ornd-array
: Ingest any object that can be converted to apandas.DataFrame
using it’s constructor, equivalent toingest(pd.DataFrame(data))
.
Datapoint fields are used to generate a deterministic unique UUID
for each
datapoint in a collection. Duplicate datapoints result in the same ID being generated.
If allow_existing
is True
, ingest
will skip those datapoints, 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
.
Returns
List of datapoint ids that were ingested, including the IDs of already existing datapoints in case of duplicates and
allow_existing=True
.
Errors
If allow_existing
is False
and any of the datapoints attempting to ingest already exist.
Was this page helpful?