Skip to content

Commit

Permalink
fix: update point type to PointXYZIRCAEDT (#175)
Browse files Browse the repository at this point in the history
Signed-off-by: M. Fatih Cırıt <[email protected]>
  • Loading branch information
xmfcx authored Nov 1, 2024
1 parent b561143 commit 64a509d
Show file tree
Hide file tree
Showing 7 changed files with 6 additions and 10 deletions.
1 change: 0 additions & 1 deletion Assets/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,3 @@
/NatureManufacture Assets.meta
/Town Constructor 3/
/Town Constructor 3.meta

1 change: 0 additions & 1 deletion Assets/AWSIM/Scenes/Environments/.gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
/Shinjuku/
/Shinjuku.meta

1 change: 0 additions & 1 deletion Assets/AWSIM/Scenes/Main/.gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
/AutowareSimulationScenarioSimulator/
/AutowareSimulationScenarioSimulator.meta

1 change: 0 additions & 1 deletion Assets/AWSIM/Scenes/Main/Parking Area/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,3 @@

/Parking Area ss2/
/Parking Area ss2.meta

8 changes: 4 additions & 4 deletions Assets/AWSIM/Scripts/Sensors/LiDAR/PointCloudFormatLibrary.cs
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ public enum PointCloudFormat : UInt32
{
Pcl24,
Pcl48,
PointXYZIRCEADT,
PointXYZIRCAEDT,
MLInstanceSegmentation,
RadarSmartMicro,
Custom,
Expand Down Expand Up @@ -61,15 +61,15 @@ public static class PointCloudFormatLibrary
RGLField.PADDING_32,
RGLField.TIME_STAMP_F64
}},
// PointXYZIRCEADT format used by Autoware
{PointCloudFormat.PointXYZIRCEADT, new[]
// PointXYZIRCAEDT format used by Autoware
{PointCloudFormat.PointXYZIRCAEDT, new[]
{
RGLField.XYZ_VEC3_F32,
RGLField.INTENSITY_U8,
RGLField.RETURN_TYPE_U8,
RGLField.RING_ID_U16,
RGLField.ELEVATION_F32,
RGLField.AZIMUTH_F32,
RGLField.ELEVATION_F32,
RGLField.DISTANCE_F32,
RGLField.TIME_STAMP_U32
}},
Expand Down
2 changes: 1 addition & 1 deletion Assets/AWSIM/Scripts/Sensors/LiDAR/RglLidarPublisher.cs
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ public class RglLidarPublisher : MonoBehaviour
{
topic = "lidar/pointcloud_ex",
publish = true,
fieldsPreset = PointCloudFormat.PointXYZIRCEADT,
fieldsPreset = PointCloudFormat.PointXYZIRCAEDT,
},
};

Expand Down
2 changes: 1 addition & 1 deletion ProjectSettings/ProjectSettings.asset
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ PlayerSettings:
loadStoreDebugModeEnabled: 0
visionOSBundleVersion: 1.0
tvOSBundleVersion: 1.0
bundleVersion: 1.5.2
bundleVersion: 1.5.3
preloadedAssets: []
metroInputSource: 0
wsaTransparentSwapchain: 0
Expand Down

0 comments on commit 64a509d

Please sign in to comment.