├── .gitattributes ├── .gitignore ├── 3D.cs ├── Bgra.cs ├── BitmapCompressionMode.cs ├── BitmapFileHeader.cs ├── BitmapHelper.cs ├── BitmapInfoHeader.cs ├── DataValidity.cs ├── Frame.cs ├── FrameType.cs ├── FrameVersion.cs ├── Frequency.cs ├── GeoPoint.cs ├── GeoReferenceHelper.cs ├── InterferometricMeasurement.cs ├── InvalidFrameTypeException.cs ├── LICENSE ├── LogFileFormats.cs ├── Lowrance.prj ├── Program.cs ├── Properties └── launchSettings.json ├── README.md ├── SL3Reader.cs ├── SL3Reader.csproj ├── SL3Reader.sln ├── SLFileHeader.cs └── SurveyType.cs /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halmaia/SL3Reader/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halmaia/SL3Reader/HEAD/.gitignore -------------------------------------------------------------------------------- /3D.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halmaia/SL3Reader/HEAD/3D.cs -------------------------------------------------------------------------------- /Bgra.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halmaia/SL3Reader/HEAD/Bgra.cs -------------------------------------------------------------------------------- /BitmapCompressionMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halmaia/SL3Reader/HEAD/BitmapCompressionMode.cs -------------------------------------------------------------------------------- /BitmapFileHeader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halmaia/SL3Reader/HEAD/BitmapFileHeader.cs -------------------------------------------------------------------------------- /BitmapHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halmaia/SL3Reader/HEAD/BitmapHelper.cs -------------------------------------------------------------------------------- /BitmapInfoHeader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halmaia/SL3Reader/HEAD/BitmapInfoHeader.cs -------------------------------------------------------------------------------- /DataValidity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halmaia/SL3Reader/HEAD/DataValidity.cs -------------------------------------------------------------------------------- /Frame.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halmaia/SL3Reader/HEAD/Frame.cs -------------------------------------------------------------------------------- /FrameType.cs: -------------------------------------------------------------------------------- 1 | namespace SL3Reader; 2 | public enum FrameType : byte 3 | { Basic, Extended } -------------------------------------------------------------------------------- /FrameVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halmaia/SL3Reader/HEAD/FrameVersion.cs -------------------------------------------------------------------------------- /Frequency.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halmaia/SL3Reader/HEAD/Frequency.cs -------------------------------------------------------------------------------- /GeoPoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halmaia/SL3Reader/HEAD/GeoPoint.cs -------------------------------------------------------------------------------- /GeoReferenceHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halmaia/SL3Reader/HEAD/GeoReferenceHelper.cs -------------------------------------------------------------------------------- /InterferometricMeasurement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halmaia/SL3Reader/HEAD/InterferometricMeasurement.cs -------------------------------------------------------------------------------- /InvalidFrameTypeException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halmaia/SL3Reader/HEAD/InvalidFrameTypeException.cs -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halmaia/SL3Reader/HEAD/LICENSE -------------------------------------------------------------------------------- /LogFileFormats.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halmaia/SL3Reader/HEAD/LogFileFormats.cs -------------------------------------------------------------------------------- /Lowrance.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halmaia/SL3Reader/HEAD/Lowrance.prj -------------------------------------------------------------------------------- /Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halmaia/SL3Reader/HEAD/Program.cs -------------------------------------------------------------------------------- /Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halmaia/SL3Reader/HEAD/Properties/launchSettings.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halmaia/SL3Reader/HEAD/README.md -------------------------------------------------------------------------------- /SL3Reader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halmaia/SL3Reader/HEAD/SL3Reader.cs -------------------------------------------------------------------------------- /SL3Reader.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halmaia/SL3Reader/HEAD/SL3Reader.csproj -------------------------------------------------------------------------------- /SL3Reader.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halmaia/SL3Reader/HEAD/SL3Reader.sln -------------------------------------------------------------------------------- /SLFileHeader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halmaia/SL3Reader/HEAD/SLFileHeader.cs -------------------------------------------------------------------------------- /SurveyType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halmaia/SL3Reader/HEAD/SurveyType.cs --------------------------------------------------------------------------------