-
Notifications
You must be signed in to change notification settings - Fork 3
Support for loose search
#16
base: master
Are you sure you want to change the base?
Conversation
I haven't looked at the content here, but you might find it interesting to compare with intake-bluesky and the PR to implement passing searches off to an Intake server. Of course, if you only want to do this alternate form of searching in the client (I think this is the case), then things might be simpler for you. |
@martindurant, thank you for chiming in! I've been looking at source = intake.open_cmip5_search(database='glade', model="CanESM2") This query returns a list of files that cannot be concatenated by
I am having a hard time conceptualizing how to return a dynamically-built catalog when some user's searches might return results that cannot be concatenated into an xarray dataset. This is due to the fact that for Regarding the use of an |
The result here would be another intake catalog, listing the various things (models?) that the user can choose between. I am also ignorant of what you expect to get back from you query, but something like this
where every catalogue entry/dataset refers to a CMIP source will all required parameters given. i.e., CMIP data and CMIP catalogue should be two separate classes. In the final case of a query sufficiently well-specified to identify only one dataset, there could be a shortcut to return the data class instance instead of the catalogue with one entry. By the way, there already is a search method on catalogues, which looks at the names and descriptions of contained data sources and catalogues. In your case, the extra knowledge of what the server can do is important, but the simple version may be illuminating too. |
def _read_database(self, database): | ||
if database == "glade": | ||
database = glade_cmip5_db | ||
if os.path.exists(database): |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Does this have to be a local file, or can we accept remote things like elsewhere in intake?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It doesn't need to be a local file. I just opted for a local file for prototyping purposes for the time being. As this matures, it makes sense to support remote databases/files.
Just in case it's useful, the MongoDB-backed catalog mentioned in my comment above is now documented. Our documentation on search might be slightly helpful. |
Thank you, @danielballan. I've been making some progress on dynamic search and the documentation will definitely be useful. |
loose search
#15.