[python-geopandas] branch upstream updated (c79abca -> b536ca7)
Sebastiaan Couwenberg
sebastic at moszumanska.debian.org
Fri Jun 10 22:54:35 UTC 2016
This is an automated email from the git hooks/post-receive script.
sebastic pushed a change to branch upstream
in repository python-geopandas.
from c79abca Imported Upstream version 0.1.1
new b536ca7 Imported Upstream version 0.2
The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.
Summary of changes:
.gitattributes | 1 +
.gitignore | 2 +
.requirements-2.6.txt | 2 -
.travis.yml | 96 +-
CHANGELOG | 37 +
LICENSE.txt | 2 +-
MANIFEST.in | 2 +
README.md | 40 +-
constraints.txt | 1 +
doc/environment.yml | 18 +
doc/source/_static/overlay_operations.png | Bin 0 -> 19251 bytes
doc/source/about.rst | 6 +-
doc/source/aggregation_with_dissolve.rst | 51 +
doc/source/conf.py | 22 +-
doc/source/contributing.rst | 281 ++++
doc/source/data_structures.rst | 135 ++
doc/source/geocoding.rst | 17 +
doc/source/geometric_manipulations.rst | 222 +++
doc/source/index.rst | 15 +-
doc/source/install.rst | 64 +-
doc/source/io.rst | 28 +
doc/source/mapping.rst | 120 ++
doc/source/mergingdata.rst | 77 +
doc/source/projections.rst | 71 +
doc/source/{user.rst => reference.rst} | 220 +--
doc/source/set_operations.rst | 195 +++
examples/null_geom.geojson | 9 +
examples/nyc_boros.py | 2 +-
examples/overlays.ipynb | 601 +++++++
examples/spatial_joins.ipynb | 929 ++++++++++
geopandas/__init__.py | 13 +-
geopandas/_version.py | 484 ++++++
geopandas/base.py | 183 +-
geopandas/datasets/__init__.py | 27 +
.../naturalearth_cities.README.html | 336 ++++
.../naturalearth_cities.VERSION.txt | 1 +
.../naturalearth_cities/naturalearth_cities.cpg | 1 +
.../naturalearth_cities/naturalearth_cities.dbf | Bin 0 -> 16427 bytes
.../naturalearth_cities/naturalearth_cities.prj | 1 +
.../naturalearth_cities/naturalearth_cities.shp | Bin 0 -> 5756 bytes
.../naturalearth_cities/naturalearth_cities.shx | Bin 0 -> 1716 bytes
.../naturalearth_lowres/naturalearth_lowres.cpg | 1 +
.../naturalearth_lowres/naturalearth_lowres.dbf | Bin 0 -> 51346 bytes
.../naturalearth_lowres/naturalearth_lowres.prj | 1 +
.../naturalearth_lowres/naturalearth_lowres.shp | Bin 0 -> 179828 bytes
.../naturalearth_lowres/naturalearth_lowres.shx | Bin 0 -> 1516 bytes
geopandas/geodataframe.py | 262 ++-
geopandas/geoseries.py | 65 +-
geopandas/io/file.py | 92 +-
{tests => geopandas/io/tests}/__init__.py | 0
{tests => geopandas/io/tests}/test_io.py | 27 +-
geopandas/plotting.py | 225 ++-
geopandas/sindex.py | 26 +
geopandas/{io => tests}/__init__.py | 0
.../baseline_images/test_plotting/lines_plot.png | Bin
.../baseline_images/test_plotting/points_plot.png | Bin
.../baseline_images/test_plotting/poly_plot.png | Bin
.../test_plotting/poly_plot_with_kwargs.png | Bin 0 -> 30619 bytes
geopandas/tests/test_dissolve.py | 83 +
geopandas/tests/test_geocode.py | 143 ++
{tests => geopandas/tests}/test_geodataframe.py | 127 +-
{tests => geopandas/tests}/test_geom_methods.py | 59 +-
{tests => geopandas/tests}/test_geoseries.py | 45 +-
geopandas/tests/test_merge.py | 62 +
geopandas/tests/test_overlay.py | 114 ++
geopandas/tests/test_plotting.py | 311 ++++
geopandas/tests/test_sindex.py | 117 ++
{tests => geopandas/tests}/test_types.py | 6 +-
{tests => geopandas/tests}/util.py | 41 +-
geopandas/tools/__init__.py | 14 +
geopandas/{geocode.py => tools/geocoding.py} | 78 +-
geopandas/tools/overlay.py | 183 ++
geopandas/tools/sjoin.py | 125 ++
geopandas/{io => tools/tests}/__init__.py | 0
geopandas/tools/tests/test_sjoin.py | 88 +
geopandas/tools/tests/test_tools.py | 51 +
geopandas/tools/util.py | 52 +
readthedocs.yml | 7 +
requirements.test.txt | 4 +-
requirements.txt | 3 +
setup.cfg | 10 +
setup.py | 73 +-
tests/test_geocode.py | 91 -
tests/test_plotting.py | 78 -
versioneer.py | 1774 ++++++++++++++++++++
85 files changed, 7956 insertions(+), 794 deletions(-)
create mode 100644 .gitattributes
delete mode 100644 .requirements-2.6.txt
create mode 100644 CHANGELOG
create mode 100644 MANIFEST.in
create mode 100644 constraints.txt
create mode 100644 doc/environment.yml
create mode 100644 doc/source/_static/overlay_operations.png
create mode 100644 doc/source/aggregation_with_dissolve.rst
create mode 100644 doc/source/contributing.rst
create mode 100644 doc/source/data_structures.rst
create mode 100644 doc/source/geocoding.rst
create mode 100644 doc/source/geometric_manipulations.rst
create mode 100644 doc/source/io.rst
create mode 100644 doc/source/mapping.rst
create mode 100644 doc/source/mergingdata.rst
create mode 100644 doc/source/projections.rst
rename doc/source/{user.rst => reference.rst} (62%)
create mode 100644 doc/source/set_operations.rst
create mode 100644 examples/null_geom.geojson
create mode 100644 examples/overlays.ipynb
create mode 100644 examples/spatial_joins.ipynb
create mode 100644 geopandas/_version.py
create mode 100644 geopandas/datasets/__init__.py
create mode 100644 geopandas/datasets/naturalearth_cities/naturalearth_cities.README.html
create mode 100644 geopandas/datasets/naturalearth_cities/naturalearth_cities.VERSION.txt
create mode 100644 geopandas/datasets/naturalearth_cities/naturalearth_cities.cpg
create mode 100644 geopandas/datasets/naturalearth_cities/naturalearth_cities.dbf
create mode 100644 geopandas/datasets/naturalearth_cities/naturalearth_cities.prj
create mode 100644 geopandas/datasets/naturalearth_cities/naturalearth_cities.shp
create mode 100644 geopandas/datasets/naturalearth_cities/naturalearth_cities.shx
create mode 100644 geopandas/datasets/naturalearth_lowres/naturalearth_lowres.cpg
create mode 100644 geopandas/datasets/naturalearth_lowres/naturalearth_lowres.dbf
create mode 100644 geopandas/datasets/naturalearth_lowres/naturalearth_lowres.prj
create mode 100644 geopandas/datasets/naturalearth_lowres/naturalearth_lowres.shp
create mode 100644 geopandas/datasets/naturalearth_lowres/naturalearth_lowres.shx
rename {tests => geopandas/io/tests}/__init__.py (100%)
rename {tests => geopandas/io/tests}/test_io.py (63%)
create mode 100644 geopandas/sindex.py
copy geopandas/{io => tests}/__init__.py (100%)
rename {tests => geopandas/tests}/baseline_images/test_plotting/lines_plot.png (100%)
rename {tests => geopandas/tests}/baseline_images/test_plotting/points_plot.png (100%)
rename {tests => geopandas/tests}/baseline_images/test_plotting/poly_plot.png (100%)
create mode 100644 geopandas/tests/baseline_images/test_plotting/poly_plot_with_kwargs.png
create mode 100644 geopandas/tests/test_dissolve.py
create mode 100644 geopandas/tests/test_geocode.py
rename {tests => geopandas/tests}/test_geodataframe.py (77%)
rename {tests => geopandas/tests}/test_geom_methods.py (88%)
rename {tests => geopandas/tests}/test_geoseries.py (73%)
create mode 100644 geopandas/tests/test_merge.py
create mode 100644 geopandas/tests/test_overlay.py
create mode 100644 geopandas/tests/test_plotting.py
create mode 100644 geopandas/tests/test_sindex.py
rename {tests => geopandas/tests}/test_types.py (94%)
rename {tests => geopandas/tests}/util.py (88%)
create mode 100644 geopandas/tools/__init__.py
rename geopandas/{geocode.py => tools/geocoding.py} (58%)
create mode 100644 geopandas/tools/overlay.py
create mode 100644 geopandas/tools/sjoin.py
copy geopandas/{io => tools/tests}/__init__.py (100%)
create mode 100644 geopandas/tools/tests/test_sjoin.py
create mode 100644 geopandas/tools/tests/test_tools.py
create mode 100644 geopandas/tools/util.py
create mode 100644 readthedocs.yml
create mode 100644 setup.cfg
delete mode 100644 tests/test_geocode.py
delete mode 100644 tests/test_plotting.py
create mode 100644 versioneer.py
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-grass/python-geopandas.git
More information about the Pkg-grass-devel
mailing list