-
Notifications
You must be signed in to change notification settings - Fork 36
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
CovPlan #170
Comments
Welcome to pyOpenSci--we are so glad you are here! Thank you for this submission, just letting you know we have seen this issue and will get back to you with pre-review checks shortly. 🌻 |
Hi @sanjeevrs2000, the CovPlan seems a cool repo. I've found the mention to the Fields2Cover project and I would add some info to your claim:
Fields2Cover provides is implemented in C++, and provides a Python interface using swig
This has been included in fields2cover v2 (released this week).
Same as Fields2Cover. The focus is agriculture, but it is not limited. Other Python package that implement coverage path planners: https://github.com/RuslanAgishev/motion_planning Btw, congrats for the @pyOpenSci project to their authors! |
Hi @Gonzalo-Mier, thanks a lot for the info. We were not aware of these recent developments with Fields2Cover. Keep up the great work with your repo! |
Hello @sanjeevrs2000, |
Hi @Gonzalo-Mier, welcome to pyOpenSci! Thanks for the info. As @NickleDave reminded me, Fields2Cover was mentioned in the presubmission inquiry a few months ago. Now for the shameless part 😁 |
Editor in Chief checksHi there! Thank you for submitting your package for pyOpenSci review. Below are the basic checks that your package needs to pass to begin our review. If some of these are missing, we will ask you to work on them before the review process begins. Please check our Python packaging guide for more information on the elements
Editor commentsAs of now, there are too many missing things to get started with the review. Some are really trivial (like adding a I encourage you to go through our Python Package Guide to get familiar with:
README.md suggested structureExpand# CovPlan
A Python package for coverage path planning.
[![MIT License](https://img.shields.io/badge/License-MIT-green.svg)](https://choosealicense.com/licenses/mit/)
A brief description of what this project does and who it's for.
Link to paper + full citation
> Hameed IA, Bochtis D, Sørensen CA. An Optimized Field Coverage Planning Approach for Navigation of Agricultural Robots in Fields Involving Obstacle Areas. International Journal of Advanced Robotic Systems. 2013;10(5). doi:10.5772/56248
## Installation
Install `covplan` with pip
```shell
pip install covplan
```
## Getting started
The 30 seconds tutorial.
```py
import antigravity
```
## Documentation
[Documentation](https://linktodocumentation)
## Contributing
Contributions are always welcome!
See `contributing.md` for ways to get started.
Please adhere to this project's `code of conduct`.
|
Hi @Batalex, My comment was more related with correct info related to the project than giving reasons to dismiss the
Nor my intention either. More, better!
Of course, it is certainly a nice addition to the open-source ecosystem and @sanjeevrs2000 is doing an awesome job.
I don't have too much free time, but I can help if needed. Please, contact me for any collaboration :) |
Hi @Gonzalo-Mier, thanks again for your support. I am not a software developer myself so I have limited time as well. Will be happy to collaborate if required.
@Batalex, if it is decided that it is under scope for a review, we shall try to meet these requirements as soon as possible.
|
Hi @Batalex, |
Hi @sanjeevrs2000, DocumentationSince you are using mkdocs, I advise you to take a look at https://mkdocstrings.github.io/. It is a plugin that automatically picks up the docstrings to embed them in your documentation. The reason why I ask you to do that is because it will help you keep your code base and your documentation in sync. I also noticed a lack of consistency in the docstrings formats: some use Numpy/Google convention, others use the classic Python one I linked in my previous post. The function linked above uses neither. You might want to explicitly list the development dependencies one needs to work on the project. It happens that I am quite familiar with mkdocs so I already know how to build the documentations, but that most likely not the case for everyone.
Tests and automationI am glad to see that you added tests, but we need to go one step further. Because tests are only as useful as their consistent runs, we need to integrate them into GitHub. Back to GitHub, the aim of the continuous integration (CI), is to make sure that you do not introduce any regression to the code base, using the tests you wrote. By making GitHub run your tests on every pull request (and I advise you to use this workflow from now on even if you are the sole contributor), you can merge new additions to the code base more confidently. We wrote a guide for that, this is a great starting point. They are a few more things we could work on, but I don't want to move the goal posts further with every interaction, so I'll leave it there for now. |
Submitting Author: Name (@sanjeevrs2000)
All current maintainers: (@sanjeevrs2000)
Package Name: CovPlan
One-Line Description of Package: A Python package that generates guidance trajectories for field coverage using a single robot.
Repository Link: https://github.com/sanjeevrs2000/covplan
Version submitted: 0.1.0
Editor: TBD
Reviewer 1: TBD
Reviewer 2: TBD
Archive: TBD
JOSS DOI: TBD
Version accepted: TBD
Date accepted (month/day/year): TBD
Code of Conduct & Commitment to Maintain Package
Description
This Python package generates a guidance trajectory for complete coverage in 2 dimensions. It can be used for operations where complete coverage of an Area of Interest (AoI) is required for applications in field robotics. If the area of interest is large or if it has any forbidden regions or obstacles, it could be divided into smaller sections and covered sequentially where the sequence is optimized using a travelling salesman problem (TSP) solver to minimize the overall distance. It also uses Dubins curves to generate continuous and feasible trajectories.
Scope
Please indicate which category or categories.
Check out our package scope page to learn more about our
scope. (If you are unsure of which category you fit, we suggest you make a pre-submission inquiry):
Domain Specific
Community Partnerships
If your package is associated with an
existing community please check below:
It can be classified under applications in AI and robotics. Unsure which of the above categories it comes under but were encouraged to make a submission in the presubmission enquiry. Researchers in coverage path planning might find it useful for developing new algorithms or comparing it against their own methods. It has potential applications in field robotics where coverage of an area is required for monitoring, information gathering tasks.
Are there other Python packages that accomplish the same thing? If so, how does yours differ?
Fields2Cover is a similar implementation although it is in C++. Our work also considers more complex areas for coverage such as ones with forbidden regions and solves it by using a divide and conquer approach. It is also not limited to agriculture related applications and can be adapted for other uses by modifying the parameters
If you made a pre-submission enquiry, please paste the link to the corresponding issue, forum post, or other discussion, or
@tag
the editor you contacted:The presubmission enquiry can be found here.
Technical checks
For details about the pyOpenSci packaging requirements, see our packaging guide. Confirm each of the following by checking the box. This package:
Publication Options
JOSS Checks
paper.md
matching JOSS's requirements with a high-level description in the package root or ininst/
.Note: JOSS accepts our review as theirs. You will NOT need to go through another full review. JOSS will only review your paper.md file. Be sure to link to this pyOpenSci issue when a JOSS issue is opened for your package. Also be sure to tell the JOSS editor that this is a pyOpenSci reviewed package once you reach this step.
Are you OK with Reviewers Submitting Issues and/or pull requests to your Repo Directly?
This option will allow reviewers to open smaller issues that can then be linked to PR's rather than submitting a more dense text based review. It will also allow you to demonstrate addressing the issue via PR links.
Confirm each of the following by checking the box.
Please fill out our survey
submission and improve our peer review process. We will also ask our reviewers
and editors to fill this out.
P.S. Have feedback/comments about our review process? Leave a comment here
Editor and Review Templates
The editor template can be found here.
The review template can be found here.
Footnotes
Please fill out a pre-submission inquiry before submitting a data visualization package. ↩
The text was updated successfully, but these errors were encountered: