Skip to content

Commit

Permalink
use gdal in gui application
Browse files Browse the repository at this point in the history
  • Loading branch information
Tim Kaiser committed Apr 6, 2023
1 parent 5d595ed commit b97c89b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
2 changes: 2 additions & 0 deletions IFCGeoRefCheckerGUI/IFCGeoRefCheckerGUI.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="GDAL" Version="3.6.3" />
<PackageReference Include="GDAL.Native" Version="3.6.3" />
<PackageReference Include="Serilog.Sinks.RichTextBox.Wpf" Version="1.1.0" />
<PackageReference Include="Xbim.Common" Version="5.1.341" />
<PackageReference Include="Xbim.Essentials" Version="5.1.341" />
Expand Down
4 changes: 4 additions & 0 deletions IFCGeoRefCheckerGUI/MainWindow.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@
using Serilog;
using Serilog.Sinks.RichTextBox.Themes;
using Xbim.Common;
using OSGeo.OGR;
using IFCGeorefShared;

namespace IFCGeoRefCheckerGUI
{
Expand All @@ -41,6 +43,8 @@ public MainWindow()

Log.Information("GeoRefChecker started");

Settings.configureOgr();

}

public void NoFileSelectedMessageBox(object? sender, EventArgs args)
Expand Down

0 comments on commit b97c89b

Please sign in to comment.