-
Notifications
You must be signed in to change notification settings - Fork 0
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
Set Up MVP Package For Label-Image Creation #5
base: main
Are you sure you want to change the base?
Conversation
The following comment details an issue being experienced. Presently, As an example, label1 = paleo_utils.CollectionsLabel(
save_directory="../assets/saved_images/",
id_number="2131",
collection="AMNH",
collector="Dr. Montague",
location="Europe",
coordinates=(40.7128, -74.0060),
date_found="2023-01-01",
) Should output the following:
Changing the order in the An idea is to have a class for a default label be separate from the class Further thoughts will come soon. |
The solution to the aforementioned issue is to probably work with calls like the following: label2 = paleo_utils.CollectionsLabel(
collection="AMNH",
id_number="12345",
collector="Dr. Larson",
custom_titles={
"collection": "Repository: ",
"id_number": "Catalog: ",
"collector": "Finder: "
}
) |
I asked a question on Code Review. |
This comment has been moved to the issue associated with this PR. See here: #2 (comment). |
Since it would not be nice to provide all the parameters covered in |
The workflow of Label creation needs to be better established. Does one make a |
Some of the comments in this PR seem more fitting to have been made on the associated issue. In general, the author prefers considerations for "the task at hand" being made in the issue and comments regarding the code to accomplish this task be made in the PR. As such, the author has moved the Code Review comment(s) to the associated issue. |
This PR constitutes a first-pass at adding:
Label
class.CollectionsLabel
.SystematicsLabel
.