Skip to content

Commit 6ab0bfd

Browse files
Create the AgriTechLidar class
1 parent 03087c5 commit 6ab0bfd

File tree

2 files changed

+26
-0
lines changed

2 files changed

+26
-0
lines changed

scripts/agritechlidar.py

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
import pdal
2+
import json
3+
import pandas as pd
4+
import geopandas as gpd
5+
from shapely.geometry import Polygon
6+
7+
8+
class FetchLidar:
9+
def __init__(self) -> None:
10+
pass
11+
12+
13+
14+

0 commit comments

Comments
 (0)