This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/python | |
#fixes Samsung's broken Panorama jpgs by adding EOI markers at the end of the file | |
#positional arguments: | |
# path file or folderpath | |
#optional arguments: | |
# -h, --help show this help message and exit | |
# -d, --dump dumps Samsung specific data that is added to the image |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#this script will convert the wulca aware factors kmz file from http://www.wulca-waterlca.org/aware.html to more GIS-ish vector (shp, geojson)files | |
#MIT License | |
#Copyright 2018 Matthias Czechowski https://github.com/bavyeti | |
file = 'AWARE_v1_2April_7th.kmz' | |
import geopandas as gpd | |
import pandas as pd | |
import fiona | |
fiona.drvsupport.supported_drivers['kml'] = 'rw' |