-
-
Notifications
You must be signed in to change notification settings - Fork 2.6k
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
Doc: Add docstrings for Python functions #11916
Comments
@dbaston, this is minor and I wanted to attempt an edit by PR rather than open an issue.
In the examples under the CoordinateTransformation topic at https://gdal.org/en/latest/api/python/spatial_ref_api.html#coordinatetransformation, I believe the order of the input coordinates should be reversed for 4326, i.e., given as lat/lon instead (or add calls to ct = osr.CoordinateTransformation(wgs84, ps) the I mention it because I was looking at those examples while troubleshooting some code and it had me confused for a bit. I started the edits for a PR but I struggled some with the edit/build/review cycle and did not complete. Will try to get there in the future. |
Feature description
Many Python functions lack API documentation, e.g. the entire multidimensional API.
Ideally, we'd have documentation and at least one example for each function (this was requested by some respondents to the 2024 user survey.)
Some of our current docstrings are are essentially a single sentence, with a reference to the corresponding C or C++ docs:
Others duplicate more content from the C/C++ documentation. This brings some future maintenance burden (we could need to make same changes in multiple places) although on the whole I don't think this content changes very often.
Additional context
The edit/build/review cycle for these docstrings is unfortunately rather complicated. It is documented at https://gdal.org/en/latest/development/dev_documentation.html#python-api-documentation
The text was updated successfully, but these errors were encountered: