Commit Graph
124 Commits
Author SHA1 Message Date
raphacosta27 43523217a3 DOC: Adding geopandas.Series overlaps method in documentation (#1423) 2020-05-14 13:40:27 +01:00
Joris Van den Bossche 5a2bafbe0a DOC: add read_postgis/to_postgis to reference docs (#1406) 2020-05-05 12:51:39 +02:00
433c39bab7 ENH: Add method to write GeoDataFrame to PostGIS (#1248)
Co-authored-by: Martin Fleischmann <martin@martinfleischmann.net>
Co-authored-by: Joris Van den Bossche <jorisvandenbossche@gmail.com>
2020-05-05 12:06:14 +02:00
Mike Taves 9b179753d1 DOC: corrections / updates (#1402)
* Binary wheels for shapely have been available since version 1.7.0
* Correction to sjoin default for op
2020-04-29 11:11:11 +02:00
Alan D. Snow 8d78e771d3 ENH: Support ignore_geometry option with read_file, test ignore_fields (#1383)
* ENH: Add option to read subset of columns in read_file

* Add support for ignore_geometry & for geometries with __geo_interface__

* ensure duplicate columns are duplicated

* update code to only fix ignore_geometry load

* added test_read_file__ignore_all_fields

* ignore column order in test_from_features_geom_interface_feature

* add skip for FIona < 1.8 for ignore_fields/geometry

* Add ignore_geometry example

* not isinstance GeoDataFrame

* limit changes for ignore geometry

* modify from_features to require geometry; update docstring in read_file about optionally returning pandas.Dataframe & make docstring numpydoc compliant

* Add note in example about returning pandas dataframe

* revert from_features changes
2020-04-25 17:51:01 +01:00
sangarshananandMartin Fleischmann 4e82afe538 ENH: Read filelike objects (#1329)
* Read TextIOBase objects with geopandas

* Split test for different file objects

* Skip pytest if fiona<1.8

* revert argname, add test for tempfile and update docstring

* Add docs for reading file like objects

* style

* minor doc styling

Co-authored-by: Martin Fleischmann <martin@martinfleischmann.net>
2020-04-20 18:53:39 +01:00
TimothyLucasandMartin Fleischmann 978f1b35a5 DOC: add example of appending GeoSeries (#1215)
* changing doc/source/mergingdata.rst to propose fix for issue 1186

* append docs

Co-authored-by: Martin Fleischmann <martin@martinfleischmann.net>
2020-04-19 21:59:23 +01:00
Mateusz KoniecznyandMartin Fleischmann 1f1cde7eff DOC: fix typo in spatial join (#1188)
* fix typo

* fix typo 'to' - 'two'

Co-authored-by: Martin Fleischmann <martin@martinfleischmann.net>
2020-04-19 21:55:33 +01:00
Martin Fleischmann edf6e96430 ENH: move CRS to GeometryArray level (#1339) 2020-04-12 15:42:14 +02:00
Martin Fleischmann 078062d303 DOC: remove six as a depenency (#1348) 2020-04-01 11:20:20 +02:00
Joris Van den Bossche 5d1181af6b ENH: (optionally) use pygeos for vectorized GeometryArray operations (#1154) 2020-03-24 09:08:27 +01:00
Martin Fleischmann 1c13cb957b DOC: add missing methods to reference (#1328) 2020-03-18 20:51:57 +00:00
Martin Fleischmann 3cbc7fb997 Add a Code of Conduct (#1288) 2020-03-03 12:48:21 +01:00
Alan D. SnowandMartin Fleischmann 7350b49688 DOC: Fix intersphinx mapping with pyproj docs (#1297)
* DOC: Fix intersphinx mapping with pyproj docs

* pyproj.crs.CRS -> pyproj.CRS; add back space around ' : '

* minor fix

Co-authored-by: Martin Fleischmann <martin@martinfleischmann.net>
2020-02-24 22:27:06 +00:00
sangarshanan 74b1d95955 DOC: Add changelog to docs (#1306)
* Add changelog to docs

* Remove extra newline

* Move Changelog to Reference Guide in docs
2020-02-24 20:24:15 +00:00
Martin Fleischmann 0a1799d986 DOC: Add note on field types to io (#1289) 2020-02-19 10:45:40 +01:00
Joris Van den Bossche 3e5fe71c34 DOC: add upgrade guide for GeoPandas 0.7 / pyproj 2 / PROJ 6 (#1292) 2020-02-16 22:39:20 +01:00
Joris Van den Bossche 952e5f4e7d DOC: fix docstring styling with sphinx > 2 (#1299) 2020-02-16 22:36:27 +01:00
Alan D. Snow 9e45a12bcf ENH: add support for filtered loading with open_file using mask and rows (#1160) 2020-02-14 21:22:30 +01:00
Martin Fleischmann 6be674d841 ENH: allow overlay for all geometry types (#1110) 2020-02-08 09:05:58 +01:00
0dde1c7253 ENH: Add clip function (#1128)
Co-authored-by: Martin Fleischmann <martin@martinfleischmann.net>
Co-authored-by: Nathan Korinek <nako1890@colorado.edu>
Co-authored-by: Joris Van den Bossche <jorisvandenbossche@gmail.com>
2020-02-07 15:39:26 +01:00
Joris Van den Bossche 47ca52439f DOC: update environment.yml file + clean build (#1284) 2020-02-07 13:05:36 +01:00
Alan D. Snow 1d212b2a0c ENH: updated to use pyproj.CRS & pin pyproj >= 2.2.0 (#1101) 2020-01-25 09:49:27 +01:00
sangarshananandMartin Fleischmann 1a0376cfbe DOC: Add zorder example to docs (#1228)
* Add zorder examples to docs

* Remove matplotlib and make suggested changes

* Remove empty line

* Made the suggested minor changes

* Change line format

Co-Authored-By: Martin Fleischmann <36797143+martinfleis@users.noreply.github.com>

* Save the plots with savefig
2019-12-09 13:49:12 +00:00
Martin Fleischmann 6ac19052c8 ENH: support for missing data plotting (#1156)
* ENH: support for missing data plotting

* Tests

* Docs

* Changes based on review

* clean tests

* better docstring
2019-11-24 17:16:44 +00:00
Ardie OrdenandMartin Fleischmann 1c39098ab0 DOC: Add example docs for plotting transparent polygons (#1170)
* Add example docs for plotting transparent polygons

* Add explanation for plotting transparent polygons

* Update doc/source/mapping.rst

Co-Authored-By: Martin Fleischmann <36797143+martinfleis@users.noreply.github.com>
2019-11-21 22:20:11 +00:00
Ardie Orden 030febcab2 DOC: Add docs for using read_file on a ZIP file (#1181)
* Add docs for using read_file on a ZIP file

* Add docs for opening ZIP files with folders and multiple datasets

* Fix wording of docs
2019-11-21 22:16:40 +00:00
Martin Fleischmann 65c2d55ae2 CLN: Remove Python 2 support (#1183) 2019-10-28 11:11:03 +01:00
Alan D. Snow 2c5bfc5b98 DOC: update data structure docs with links to classes/methods (#1168) 2019-10-22 08:46:17 +02:00
Joris Van den Bossche a7bb54a163 ENH: Show less coordinate decimals in Series repr of geometries (#1057) 2019-09-27 08:32:42 +02:00
Joris Van den Bossche 1b95bc462a DOC: add docs on missing and empty geometries (#1137) 2019-09-24 21:34:53 +02:00
Alan D. Snow 4d18c29f33 DOC: update installation information about pyproj (#1135) 2019-09-23 08:28:44 +02:00
Leah Wasser b71ab0bf3a DOC: Update Contributing Guidelines (#1127) 2019-09-18 09:09:48 +02:00
Joshua Wilson d52326523b PERF: Repeated sjoins using the same dataframes re-use spatial indexes (#789) 2019-09-14 10:35:59 +02:00
René Buffat 80d5d0de81 ENH: pass legend_kwds to colorbar when relevant (#1102)
* expose colorbar kwargs

* add linebreak

* merge legend_kwds and cbar_kwd

* move legend_kwds init

* extend docstring

* fix typo

* modify docstring

* add test for colorbar kwargs

* fix argument name

* add documentation

* docs minor edit
2019-08-18 23:57:36 +01:00
Martin FleischmannandJoris Van den Bossche a20ac9c816 REF: remove unnecessary fixes for older pandas, use pandas is_list_like (#1104)
* REF: remove unnecessary fixes for older pandas

* Update doc/source/reference.rst

Co-Authored-By: Joris Van den Bossche <jorisvandenbossche@gmail.com>
2019-08-16 19:22:00 +01:00
Sergio Rey a441237ae1 DOC: update mapclassify url and tooling for dash/zeal docs (#1090) 2019-08-14 09:37:49 +02:00
Archana AlvaandMartin Fleischmann 1837a4a053 ENH: add rename_geometry() method (#1058)
* adding rename_geometry method and test

* adding inplace and updating the example doc and tests accordingly'

* fixing inplace in rename_geometry

* Update geopandas/geodataframe.py

minor styling change

Co-Authored-By: Martin Fleischmann <36797143+martinfleis@users.noreply.github.com>

* Update geopandas/geodataframe.py

styling change

Co-Authored-By: Martin Fleischmann <36797143+martinfleis@users.noreply.github.com>

* Update geopandas/geodataframe.py

styling change

Co-Authored-By: Martin Fleischmann <36797143+martinfleis@users.noreply.github.com>

* Update geopandas/geodataframe.py

styling change

Co-Authored-By: Martin Fleischmann <36797143+martinfleis@users.noreply.github.com>

* Update geopandas/tests/test_geodataframe.py

styling change

Co-Authored-By: Martin Fleischmann <36797143+martinfleis@users.noreply.github.com>

* Update geopandas/geodataframe.py

Co-Authored-By: Martin Fleischmann <36797143+martinfleis@users.noreply.github.com>

* adding reference document

* Update geopandas/geodataframe.py

Co-Authored-By: Martin Fleischmann <36797143+martinfleis@users.noreply.github.com>
2019-07-22 10:15:14 +01:00
Mike Taves 8b0548b7ef DOC: refresh with Python 3 syntax, and modern outputs (#1065) 2019-07-21 15:29:52 +01:00
Martin Fleischmann 3593d26e32 DOC: Expand contributing/documentation (#1061) 2019-07-17 16:35:36 +01:00
donlo 08ffc4e932 ENH: Add affine_transform method to GeoSeries (#1008) 2019-06-13 11:58:05 +02:00
Joris Van den Bossche 69757afe6b Update minimal dependencies for pandas (>=0.23.4) and matplotlib (>=2.0.1) (#1002) 2019-05-24 13:05:38 +02:00
Martin Fleischmann 53536e8a2e DOC: updated year in copyright 2019-04-27 20:29:06 +01:00
James McBride 0d05a12140 Switch geocoding default to geocodefarm (#975)
I started off this way in #907, then switched to nominatim, but our
current usage appears to be a violation of the nominatim terms of
service. Geocodefarm doesn't seem perfect, but given my reading of their
terms of service, I think using it in our examples in docs is okay.
2019-04-25 10:00:19 +02:00
Joris Van den Bossche 8595c85c3a DOC: add different communication channels to README/docs (#977) 2019-04-19 15:49:01 +02:00
Joris Van den Bossche c16922f87d DOC: set pandas display options to ensure non-truncated output (#976) 2019-04-19 09:46:01 +02:00
Brian Lewis 08ad2bfea1 Fix broken links to Shapely and Fiona docs (#954) 2019-03-31 20:55:33 -07:00
Joris Van den Bossche 6e49375606 DOC: rework installation docs (#926) 2019-03-05 21:53:06 +01:00
Philipp Kats ca3216ece5 DOC: update fiona / shapely links (#919) 2019-02-14 20:24:18 +00:00
Justin Shenk 6e6843e195 Fix readme doc formatting (#917) 2019-02-11 13:18:15 +00:00