petern48 opened a new issue, #2230: URL: https://github.com/apache/sedona/issues/2230
Setup: - Read the [geopandas developer guide](https://github.com/apache/sedona/pull/2229/files). - Setup build environment by following these [compile docs](https://sedona.apache.org/latest/setup/compile/) Implement 1. Pick a `GeoSeries` function to implement 2. Look for a similar function that has been implemented in Sedona Geopandas already - Chances are, you'll just need to use one of the helper functions `_query_geometry_column` or `_row_wise_operations` 3. Implement function in `geoseries.py` and `base.py` (so geodataframe can also execute it). 4. Add tests to `test_geoseries.py` and `test_match_geopandas_series.py` following similar conventions 5. Add documentation under the `base.py` implementation 6. Create a new sub-issue for on GitHub and submit a PR linked to that issue (not this issue). Feel free to CC @petern48. 7. Repeat! Example PRs: - `area(self) -> ps.Series`: <TODO> - `buffer(self) -> GeoSeries`: <TODO> - `intersection(self, other, align) -> GeoSeries`: <TODO> List of unimplemented functions: <TODO> -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
