The laziest way to delete all unused branches safely except master:
git checkout master
git branch | xargs git branch -d
Merge master into current feature branch:
echo [email protected] > ~/.qmail
yarn develop
Start Strapi in watch mode.
yarn start
https://boundingbox.klokantech.com/
Create geographic flow maps from your data published in Google Sheets.
| import geopandas as gpd | |
| import pandas as pd | |
| from shapely.geometry import Point | |
| plr = gpd.read_file('data/lor_planungsraeume.geojson', encoding='utf-8') | |
| df = pd.read_csv('data/DATAFILE.csv', sep=";", dtype={'PLR_CODES':str}, na_values=['OTHER_NAN_VALUES']) | |
| df.set_index('PLR_CODES', inplace=True) | |
| data = df.join(plr.set_index('spatial_name'), rsuffix='_r') |