Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
47 commits
Select commit Hold shift + click to select a range
0e3dba2
Removed unused method
Aug 2, 2021
ff6c4ff
Implemented geography_as_object argument to to_dataframe and implemen…
Aug 3, 2021
ecff6f9
blacken
Aug 3, 2021
15648af
Merge remote-tracking branch 'upstream/master' into to_geodataframe
Aug 3, 2021
766be77
Need to use different table names in tests.
Aug 3, 2021
a904504
check messages in error assertions (for geo)
Aug 3, 2021
bc985f9
added missing comma
Aug 3, 2021
fb6eafd
Added missing tests.
Aug 3, 2021
0547801
blacken
Aug 3, 2021
e0dde7c
Added tests showing delegation in some to_geodataframe implementations
Aug 3, 2021
177b099
Added a missing skip
Aug 3, 2021
86820e2
blacken
Aug 3, 2021
c298fbd
doc tweaks
Aug 4, 2021
e9cc38f
Updated dataframe_to_bq_schema to recognize geography data
Aug 4, 2021
5f866ff
Make load_from_pandas work with GeoSeries, shapely data, and binary w…
Aug 4, 2021
e23b830
Small (14% for small polygons) optimization for reading wkt data
Aug 4, 2021
950d957
blacken/lint
Aug 4, 2021
0493acf
wait for it ...
Aug 4, 2021
5d986be
geopandas needs a slightly newer (but still old) version of pandas.
Aug 5, 2021
f5e2f62
skip coverage on section of code that isn't reachable by tests
Aug 5, 2021
1084c4e
assuage pytype
Aug 5, 2021
cdb821d
blacken
Aug 5, 2021
054a857
Added geopandas doc snippit
Aug 5, 2021
0924a03
make sure coordinate system is set correctly
Aug 5, 2021
c9f8ab6
We need at least geopandas 0.9.0, which happens to be the current ver…
Aug 5, 2021
b61bebc
Set version bounds for shapely
Aug 5, 2021
edbea72
blacken
Aug 5, 2021
36e9ee3
Merge branch 'master' into to_geodataframe
Aug 5, 2021
2eed7c0
Merge branch 'master' into to_geodataframe
Aug 11, 2021
b163b4d
Merge branch 'master' into to_geodataframe
Aug 11, 2021
b6f19c9
rename CRS to _COORDINATE_REFERENCE_SYSTEM
Aug 16, 2021
459484f
Merge branch 'to_geodataframe' of github.com:jimfulton/python-bigquer…
Aug 16, 2021
3043585
Fixed intersphinx links
Aug 16, 2021
fe8ea8a
capitalize shapely
Aug 16, 2021
a81015a
merge upstream/master
Aug 17, 2021
2d3c372
blacken ...whimper
Aug 17, 2021
1a977fb
🦉 Updates from OwlBot
gcf-owl-bot[bot] Aug 17, 2021
7dd9f5e
tell owlbot about pandas and geopandas intersphinx
Aug 17, 2021
3c257d9
Explain the _to_wkb hijinks
Aug 17, 2021
c73b856
moar comments
Aug 17, 2021
5988052
Don't rely on string representations in assertions
Aug 17, 2021
3207e57
move to_geodataframe snippet to samples
Aug 17, 2021
27071a0
Removed pointless importskips
Aug 17, 2021
abf473e
blacken
Aug 18, 2021
88b0653
use older dataclasses to try to deal with pip error in CI
Aug 18, 2021
1a4005c
git merge upstream/master
Aug 23, 2021
1b6b1d7
Don't need dataclasses after Python 3.6
Aug 23, 2021
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
capitalize shapely
  • Loading branch information
Jim Fulton committed Aug 16, 2021
commit fe8ea8a2a0ca8a1ab47157e3ee5d1497de4d005b
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@
"pyarrow >= 1.0.0, < 6.0dev",
],
"pandas": ["pandas>=0.24.2", "pyarrow >= 1.0.0, < 6.0dev"],
"geopandas": ["geopandas>=0.9.0, <1.0dev", "shapely>=1.6.0, <2.0dev"],
"geopandas": ["geopandas>=0.9.0, <1.0dev", "Shapely>=1.6.0, <2.0dev"],
"bignumeric_type": ["pyarrow >= 3.0.0, < 6.0dev"],
"tqdm": ["tqdm >= 4.7.4, <5.0.0dev"],
"opentelemetry": [
Expand Down