Skip to content

Commit

Permalink
补充了激光雷达读取库的注释
Browse files Browse the repository at this point in the history
  • Loading branch information
longtsing committed Nov 21, 2024
1 parent 2991233 commit 5e396bf
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions metgrs/Lidar.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,14 @@
L0Datas=types.new_class('L0Datas',(originData,))

def readSingleL0File(l0file:str)->L0Data:
'''
读取单个L0激光雷达文件
Args:
l0file: L0激光雷达文件路径
Returns:
L0Data: 激光雷达L0产品对象
'''
l0da=L0Data()
dts=dateutil.parser.parse(l0file[-34:-20])
# dt=dts-timedelta(hours=8)
Expand Down

0 comments on commit 5e396bf

Please sign in to comment.