For run this project is required: Docker and Homebrew installed in your mac.
| blueprint: | |
| name: Low Battery Notifications & Actions | |
| description: > | |
| # 🪫 Low Battery Notifications & Actions | |
| **Version: 3.3** | |
| 🚀 Stay Charged, Stay Smart! Let's automate and take charge of your battery maintenance!🔋⚡ | |
| # Often when reading in a ShapeFile from Basemap, you'll get: "ValueError: readshapefile can only handle 2D shape types" | |
| # A trick can be to convert your geometry in your GeoPandas Dataframe and restoring the new flattened 2D geometry | |
| # series back into a shapefile and try again. | |
| # edit from http://stackoverflow.com/questions/33417764/basemap-readshapefile-valueerror | |
| from shapely.geometry import Polygon, MultiPolygon, shape, Point | |
| import geopandas as gp | |
| def convert_3D_2D(geometry): | |
| ''' |