Peter Nguyen
Peter Nguyen
### Changelog category (leave one): - New Feature ### Changelog entry (a user-readable short description of the changes that goes to CHANGELOG.md): The window functions in SQL are traditionally in...
### Changelog category (leave one): - New Feature ### Changelog entry (a user-readable short description of the changes that goes to CHANGELOG.md): Add support for `arrayUnion()` function Closes #61553 ###...
Addresses #9457 in collaboration with @Flunzmas Changes: - Implement an optimized transforms module for LineDiGraph based off of the [implementation](https://github.com/BNN-UPC/MAGNNETO-TE/blob/2491465f8d5b279f6102c5b33614b2e09ba31b0c/environment/environment.py#L289) by Bernárdez et al. - Add a test for testing...
### Changelog category (leave one): - New Feature ### Changelog entry (a user-readable short description of the changes that goes to CHANGELOG.md): Allows users to specify regular expressions through new...
## Did you read the Contributor Guide? - Yes, I have read the [Contributor Rules](https://sedona.apache.org/latest/community/rule/) and [Contributor Development Guide](https://sedona.apache.org/latest/community/develop/) ## Is this PR related to a ticket? - Yes, and...
Currently, the GeoDatafram simply selected the first geometry column it finds. ``` first_col = self.get_first_geometry_column() ``` However Geopandas actually allows multiple geometry columns and the developer can select which one...
This will be an umbrella issue I use to track progress. I'll update it over time adding new issues as I plan and implement them The plan is to 1....
Implement GeoSeries test skeleton. The goal here is to fully flush out the common testing code we will use for testing GeoSeries methods. Once we have this merged in, I...
This `:getter:` in the docs looks unintentional. https://geopandas.org/en/stable/docs/reference/api/geopandas.GeoDataFrame.crs.html#geopandas.GeoDataFrame.crs
In the last paragraph of the [Allowing Multiple Owners of Mutable Data with Rc and RefCell](https://doc.rust-lang.org/book/ch15-05-interior-mutability.html#allowing-multiple-owners-of-mutable-data-with-rct-and-refcellt) section, we have the following. `This technique is pretty neat! By using RefCell, we...