(self, directory)
| 28 | |
| 29 | class DynamicMapData: |
| 30 | def __init__(self, directory): |
| 31 | self.scene_id = directory.split("/")[-1] |
| 32 | self.directory = Path(directory) / "pcd" |
| 33 | self.pcd_files = [os.path.join(self.directory, f) for f in sorted(os.listdir(self.directory)) if f.endswith('.pcd')] |
| 34 | |
| 35 | def __len__(self): |
| 36 | return len(self.pcd_files) |
nothing calls this directly
no outgoing calls
no test coverage detected