-
Notifications
You must be signed in to change notification settings - Fork 471
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
New package: Ipf v0.1.0 #105181
New package: Ipf v0.1.0 #105181
Conversation
JuliaRegistrator
commented
Apr 18, 2024
- Registering package: Ipf
- Repository: https://github.com/andreapasquale94/Ipf.jl
- Created by: @andreapasquale94
- Version: v0.1.0
- Commit: dbd86c1a16f645ab46de29ea5c0392e8d2274593
- Reviewed by: @andreapasquale94
- Reference: andreapasquale94/ESAInterpolationFiles.jl@dbd86c1#commitcomment-141123640
- Description: ESA Intepolation Files made easy.
- Release notes:
UUID: dfb2dbec-0384-47ba-b614-66be42e3cf9e Repo: https://github.com/andreapasquale94/Ipf.jl.git Tree: 9dfa57550106babf1187318f2ccb71cee658fff2 Registrator tree SHA: 17aec322677d9b81cdd6b9b9236b09a3f1374c6a
Your
Note that the guidelines are only required for the pull request to be merged automatically. However, it is strongly recommended to follow them, since otherwise the pull request needs to be manually reviewed and merged by a human. After you have fixed the AutoMerge issues, simply retrigger Registrator, which will automatically update this pull request. You do not need to change the version number in your If you do not want to fix the AutoMerge issues, please post a comment explaining why you would like this pull request to be manually merged. Then, send a message to the Since you are registering a new package, please make sure that you have also read the package naming guidelines: https://pkgdocs.julialang.org/v1/creating-packages/#Package-naming-guidelines If you want to prevent this pull request from being auto-merged, simply leave a comment. If you want to post a comment without blocking auto-merging, you must include the text |
I'd actually recommend just naming this package using ESAInterpolationFiles
# or (I think unqualified imports are a bad idea in general):
# using ESAInterpolationFiles: IDF, compute, compute_derivative
# Load an IPF file
file = IPF("example.ipf")
# Compute interpolated value for a given key
value = compute(file, 10.5)
# Compute derivative for a given key
derivative = compute_derivative(file, 10.5) which seems perfectly nice and readable. |
Thank you for the suggestions, I would rather not use |
I don't think there would be any issue with that. The package deals with "ESA Interpolation Files", so the file format is associated with ESA, but that does not imply that your package is, or that you can't use the name of the format as part of your package.
Yeah, |
Another PR has been opened with the required changes, therefore this can be closed. |