When we want to load a STAREDataFrame into a geopackage, we have to serialize the stare covers, for now, we can do:
sdf['sids_serialized'] = sdf.apply(lambda row : str(list(row['sids'])), axis = 1)
Then load this DF into SQLite, and then call encode_stareblob(). Would be much nicer if we could get the data in through another serialization.