| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
Sorry, something went wrong.
| bounds = Bounds.from_api_repr(response['boundingPoly']) | ||
| bounds = [] | ||
| if 'boundingPoly' in response: | ||
| bounds = Bounds.from_api_repr(response['boundingPoly']) |
| bounds = [] | ||
| if 'boundingPoly' in response: | ||
| bounds = Bounds.from_api_repr(response['boundingPoly']) | ||
| bounds = Bounds.from_api_repr(response.get('boundingPoly', {})) |
| vertices.append(Vertex(vertex.get('x', None), | ||
| vertex.get('y', None))) | ||
| vertices = [Vertex(vertex.get('x', None), vertex.get('y', None)) for | ||
| vertex in response_vertices.get('vertices', [])] |
|
LGTM pending Travis. |
Sorry, something went wrong.
|
Squashed...going to wait for travis one more time. |
Sorry, something went wrong.
Co-authored-by: Chalmer Lowe <chalmerlowe@google.com>
* docs: switch API reference docs to pydata theme * 🦉 Updates from OwlBot post-processor See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md * use python 3.13 to render the docs * deploy to github pages * Revert "🦉 Updates from OwlBot post-processor" This reverts commit 5b5276b81fb3998e7241401b6cbfc56e172e4831. * exclude conf.py from owlbot * remove unneeded replacement --------- Co-authored-by: Owl Bot <gcf-owl-bot[bot]@users.noreply.github.com>
🤖 I have created a release *beep* *boop* --- ## [2.29.0](google/bigframes@v2.28.0...v2.29.0) (2025-11-10) ### Features * Add bigframes.bigquery.st_regionstats to join raster data from Earth Engine ([#2228](google/bigframes#2228)) ([10ec52f](google/bigframes@10ec52f)) * Add DataFrame.resample and Series.resample ([#2213](google/bigframes#2213)) ([c9ca02c](google/bigframes@c9ca02c)) * SQL Cell no longer escapes formatted string values ([#2245](google/bigframes#2245)) ([d2d38f9](google/bigframes@d2d38f9)) * Support left_index and right_index for merge ([#2220](google/bigframes#2220)) ([da9ba26](google/bigframes@da9ba26)) ### Bug Fixes * Correctly iterate over null struct values in ManagedArrowTable ([#2209](google/bigframes#2209)) ([12e04d5](google/bigframes@12e04d5)) * Simplify UnsupportedTypeError message ([#2212](google/bigframes#2212)) ([6c9a18d](google/bigframes@6c9a18d)) * Support results with STRUCT and ARRAY columns containing JSON subfields in `to_pandas_batches()` ([#2216](google/bigframes#2216)) ([3d8b17f](google/bigframes@3d8b17f)) ### Documentation * Switch API reference docs to pydata theme ([#2237](google/bigframes#2237)) ([9b86dcf](google/bigframes@9b86dcf)) * Update notebook for JSON subfields support in to_pandas_batches() ([#2138](google/bigframes#2138)) ([5663d2a](google/bigframes@5663d2a)) --- This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please). Co-authored-by: release-please[bot] <55107282+release-please[bot]@users.noreply.github.com>
| Back | FazBrowse Home | New Git URL |
Based off of #2236.
I was able to DRY up the requests code for the EntityAnnotation based detection types.
✅ Waiting for #2236 before rebasing.