NSCC-COGS / Aestheta

An Industrial Think Tank Focused on Developing and Promoting AI Technology for Geospatial Applications [Please note this group was formed as an academic exercise for educational purposes and does not represent a real world organization]
MIT License
7 stars 3 forks source link

Implement a simple function to load shapefiles #52

Closed kkmcgg closed 3 years ago

kkmcgg commented 3 years ago

We will require shapefiles periodically as training data and to check our classification results. Lets investigate some methods for achieving this. A simple library that may facilitate this is pyshape: https://github.com/GeospatialPython/pyshp

An initial iteration of this function could simply load a given shapefile and display it using matplotlib. The function could be done as an experiment or included into the core.py functions.

ghost commented 3 years ago

Check this out, too: https://geopandas.org/index.html. It uses https://github.com/Toblerity/Fiona for file access, which uses GDAL. If we end up using pandas, maybe we should use geopandas.

Have you used that before, Kevin?

ynandal99 commented 3 years ago

Hi, I have added the function and pushed in coreJG branch ! Thanks for the links Jeff!

kkmcgg commented 3 years ago

Ah! Sorry I missed this today Yogesh. I'll have a look - sounds great!