-
Notifications
You must be signed in to change notification settings - Fork 84
Open
Description
I'd like an equivalent of
gentoo = d3.csv("https://portal.edirepository.org/nis/dataviewer?packageid=knb-lter-pal.220.7&entityid=e03b43c924f226486f2f0ab6709d2381", d3.autoType)
with DuckDBClient.
both
DuckDBClient.of({
gentoo: "https://portal.edirepository.org/nis/dataviewer?packageid=knb-lter-pal.220.7&entityid=e03b43c924f226486f2f0ab6709d2381"
})
and
DuckDBClient.of({
gentoo: {
file: "https://portal.edirepository.org/nis/dataviewer?packageid=knb-lter-pal.220.7&entityid=e03b43c924f226486f2f0ab6709d2381"
}
})
won't work.
But this, simulating a FileAttachment structure, will work:
db = {
const gentoo = {
url : () => "https://portal.edirepository.org/nis/dataviewer?packageid=knb-lter-pal.220.7&entityid=e03b43c924f226486f2f0ab6709d2381",
mimeType: 'text/csv',
name: 'gentoo'
}
return DuckDBClient.of({
gentoo: {file: gentoo}
})
}
although it's rather complicated to memorize.
I would dream of something simple and intuitive like:
DuckDBClient.of({
gentoo: {
url: "https://portal.edirepository.org/nis/dataviewer?packageid=knb-lter-pal.220.7&entityid=e03b43c924f226486f2f0ab6709d2381",
fileType: "csv"
}
})
with fileType that could also be 'json' for instance (or 'parquet', 'arrow'...).
Metadata
Metadata
Assignees
Labels
No labels