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 code is only required to generate some dummy data | |
import numpy as np | |
import geopandas as gpd | |
from shapely.geometry import Point, Polygon | |
import matplotlib.pyplot as plt | |
# Make coords for corners of a square | |
square = np.array([[0, 0], [1, 0], [1, 1], [0, 1]]) |