Skip to content

Instantly share code, notes, and snippets.

@ryantm
Created May 2, 2019 05:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ryantm/ba50bb05f0ddbe2437795d30bd1afe24 to your computer and use it in GitHub Desktop.
Save ryantm/ba50bb05f0ddbe2437795d30bd1afe24 to your computer and use it in GitHub Desktop.
/nix/store/g0r91dzd2myd8m043nw7fk08xcbha6b5-python3.7-geopandas-0.5.0
├── lib
│   └── python3.7
│   └── site-packages
│   ├── geopandas
│   │   ├── base.py
│   │   ├── datasets
│   │   │   ├── __init__.py
│   │   │   ├── naturalearth_cities
│   │   │   │   ├── naturalearth_cities.cpg
│   │   │   │   ├── naturalearth_cities.dbf
│   │   │   │   ├── naturalearth_cities.prj
│   │   │   │   ├── naturalearth_cities.README.html
│   │   │   │   ├── naturalearth_cities.shp
│   │   │   │   ├── naturalearth_cities.shx
│   │   │   │   └── naturalearth_cities.VERSION.txt
│   │   │   ├── naturalearth_creation.py
│   │   │   ├── naturalearth_lowres
│   │   │   │   ├── naturalearth_lowres.cpg
│   │   │   │   ├── naturalearth_lowres.dbf
│   │   │   │   ├── naturalearth_lowres.prj
│   │   │   │   ├── naturalearth_lowres.shp
│   │   │   │   └── naturalearth_lowres.shx
│   │   │   ├── nybb_16a.zip
│   │   │   └── __pycache__
│   │   │   ├── __init__.cpython-37.pyc
│   │   │   └── naturalearth_creation.cpython-37.pyc
│   │   ├── geodataframe.py
│   │   ├── geoseries.py
│   │   ├── __init__.py
│   │   ├── io
│   │   │   ├── file.py
│   │   │   ├── __init__.py
│   │   │   ├── __pycache__
│   │   │   │   ├── file.cpython-37.pyc
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   └── sql.cpython-37.pyc
│   │   │   └── sql.py
│   │   ├── plotting.py
│   │   ├── __pycache__
│   │   │   ├── base.cpython-37.pyc
│   │   │   ├── geodataframe.cpython-37.pyc
│   │   │   ├── geoseries.cpython-37.pyc
│   │   │   ├── __init__.cpython-37.pyc
│   │   │   ├── plotting.cpython-37.pyc
│   │   │   ├── sindex.cpython-37.pyc
│   │   │   ├── testing.cpython-37.pyc
│   │   │   └── _version.cpython-37.pyc
│   │   ├── sindex.py
│   │   ├── testing.py
│   │   ├── tests
│   │   │   ├── __init__.py
│   │   │   ├── __pycache__
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── test_crs.cpython-37.pyc
│   │   │   │   ├── test_datasets.cpython-37.pyc
│   │   │   │   ├── test_dissolve.cpython-37.pyc
│   │   │   │   ├── test_geocode.cpython-37.pyc
│   │   │   │   ├── test_geodataframe.cpython-37.pyc
│   │   │   │   ├── test_geom_methods.cpython-37.pyc
│   │   │   │   ├── test_geoseries.cpython-37.pyc
│   │   │   │   ├── test_merge.cpython-37.pyc
│   │   │   │   ├── test_overlay.cpython-37.pyc
│   │   │   │   ├── test_pandas_methods.cpython-37.pyc
│   │   │   │   ├── test_plotting.cpython-37.pyc
│   │   │   │   ├── test_sindex.cpython-37.pyc
│   │   │   │   ├── test_testing.cpython-37.pyc
│   │   │   │   ├── test_types.cpython-37.pyc
│   │   │   │   └── util.cpython-37.pyc
│   │   │   ├── test_crs.py
│   │   │   ├── test_datasets.py
│   │   │   ├── test_dissolve.py
│   │   │   ├── test_geocode.py
│   │   │   ├── test_geodataframe.py
│   │   │   ├── test_geom_methods.py
│   │   │   ├── test_geoseries.py
│   │   │   ├── test_merge.py
│   │   │   ├── test_overlay.py
│   │   │   ├── test_pandas_methods.py
│   │   │   ├── test_plotting.py
│   │   │   ├── test_sindex.py
│   │   │   ├── test_testing.py
│   │   │   ├── test_types.py
│   │   │   └── util.py
│   │   ├── tools
│   │   │   ├── crs.py
│   │   │   ├── geocoding.py
│   │   │   ├── __init__.py
│   │   │   ├── overlay.py
│   │   │   ├── __pycache__
│   │   │   │   ├── crs.cpython-37.pyc
│   │   │   │   ├── geocoding.cpython-37.pyc
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── overlay.cpython-37.pyc
│   │   │   │   ├── sjoin.cpython-37.pyc
│   │   │   │   └── util.cpython-37.pyc
│   │   │   ├── sjoin.py
│   │   │   ├── tests
│   │   │   │   ├── __init__.py
│   │   │   │   ├── __pycache__
│   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   ├── test_sjoin.cpython-37.pyc
│   │   │   │   │   └── test_tools.cpython-37.pyc
│   │   │   │   ├── test_sjoin.py
│   │   │   │   └── test_tools.py
│   │   │   └── util.py
│   │   └── _version.py
│   └── geopandas-0.5.0.dist-info
│   ├── INSTALLER
│   ├── LICENSE.txt
│   ├── METADATA
│   ├── RECORD
│   ├── top_level.txt
│   └── WHEEL
└── nix-support
└── propagated-build-inputs
19 directories, 96 files
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment