"/home/walch/.local/lib/python3.6/site-packages/dask/config.py:129: YAMLLoadWarning: calling yaml.load() without Loader=... is deprecated, as the default Loader is unsafe. Please read https://msg.pyyaml.org/load for full details.\n",
" data = yaml.load(f.read()) or {}\n",
"/home/walch/.local/lib/python3.6/site-packages/distributed/config.py:20: YAMLLoadWarning: calling yaml.load() without Loader=... is deprecated, as the default Loader is unsafe. Please read https://msg.pyyaml.org/load for full details.\n",
"/home/walch/miniconda3/envs/py3_geo/lib/python3.6/site-packages/geopandas/tools/sjoin.py:61: UserWarning: CRS of frames being joined does not match!({'init': 'epsg:21781'} != {})\n",
" \"(%s != %s)\" % (left_df.crs, right_df.crs)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"6.95s\n"
]
}
],
"source": [
"# spatial join pixels and roofs (keep only intersecting pixels)\n",
"tt = time.time()\n",
"pxl_per_bld = gpd.sjoin( remaining_pixels, TLM_BUF, op = 'within' )\n",