We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 03087c5 commit 6ab0bfdCopy full SHA for 6ab0bfd
scripts/agritechlidar.py
@@ -0,0 +1,12 @@
1
+from shapely.geometry import Polygon
2
+from fetch_lidar import FetchLidar
3
+
4
5
6
7
+class AgriTechLidar:
8
+ def __init__(self) -> None:
9
+ pass
10
11
+ def fetch_lidar(self, polygon: Polygon):
12
+ return self.fetch_lidar(polygon)
scripts/fetch_lidar.py
@@ -0,0 +1,14 @@
+import pdal
+import json
+import pandas as pd
+import geopandas as gpd
+class FetchLidar:
13
14
0 commit comments