You need to have write permission on the collection to be able to delete data points.
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. - An
Iterable,dictornd-array: ingest any object that can be converted to apandas.DataFrameusing 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 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.Returns
List of datapoint ids that were ingested, including the IDs of existing data points in case of duplicates andallow_existing=True.
Errors
If
allow_existing is False and any of the datapoints attempting to ingest already exist.