Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adapt write_dwc() for use by OpenCPU #33

Closed
8 of 9 tasks
PietrH opened this issue Jun 12, 2023 · 2 comments · Fixed by #34
Closed
8 of 9 tasks

Adapt write_dwc() for use by OpenCPU #33

PietrH opened this issue Jun 12, 2023 · 2 comments · Fixed by #34
Assignees
Labels
dev Improvements to development workflow enhancement New feature or request

Comments

@PietrH
Copy link
Member

PietrH commented Jun 12, 2023

Like download_acoustic_dataset() see #32 write_dwc() doesn't exclusivly return an object, if directory is not NULL it'll write out a csv.

Unlike download_acoustic_dataset(), the handling is more simple for write_dwc(). A project object is created from get_animal_projects() which is used to create an object dwc_occurrence which is either returned or written out as csv.

dwc_occurrence is currently created via a locally stored sql query which is edited in place based on the project object. Later on we might switch over to darwincore mapping via dplyr similar to inbo/camtraptor#207, but as long as we stick to the sql mapping, it doesn't make much sense to split this function up into multiple requests.

Thus at least initially, I'll implement this as a single API call that returns dwc_occurrence, the client can then either return or write out based on the directory argument.

TODO

  • adapt test-write_dwc.R: expect dwc_occurrence, not csv
  • switch over to using credentials
  • remove directory argument
  • update documentation
  • can we forward messages? progress reports?
  • remove writing to csv
  • pass tests
  • pass R CMD CHECK
  • fix broken examples #35
@PietrH PietrH added enhancement New feature or request dev Improvements to development workflow labels Jun 12, 2023
@PietrH PietrH self-assigned this Jun 12, 2023
@PietrH
Copy link
Member Author

PietrH commented Jun 12, 2023

Currently the function prints a message to console:

Reading data and transforming to Darwin Core.

Right after fetching the imis dataset id and title and starting the query to fetch the darwincore occurrence data. This behaviour could be maintained if we split off this first query to the client side.

This would however completely change the input arguments to write_dwc() between the version in etnservice and in etn, creating an exception for any future generic sql helper for etnitself. Or for the option of inheriting documentation betweenetnandetnservice`.

For now we'll keep it simple, and drop the message instead.

@PietrH
Copy link
Member Author

PietrH commented Jun 12, 2023

general progress is tracked in inbo/etn#281

@PietrH PietrH linked a pull request Jun 12, 2023 that will close this issue
3 tasks
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dev Improvements to development workflow enhancement New feature or request
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant