Skip to content

Commit a3bd71b

Browse files
committed
Merge branch 'develop'
2 parents 3e158c4 + 17cab7b commit a3bd71b

File tree

6 files changed

+18
-18
lines changed

6 files changed

+18
-18
lines changed

DEM.Net.Extension.Osm/Implementation/DefaultProcessor/DefaultOsmProcessor.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,15 +17,15 @@ namespace DEM.Net.Extension.Osm
1717
public class DefaultOsmProcessor
1818
{
1919
private readonly DEMNetOptions _options;
20-
private readonly IElevationService _elevationService;
20+
private readonly ElevationService _elevationService;
2121
private readonly SharpGltfService _gltfService;
22-
private readonly IMeshService _meshService;
22+
private readonly MeshService _meshService;
2323
private readonly OsmService _osmService;
2424
private readonly ILogger<DefaultOsmProcessor> _logger;
2525

26-
public DefaultOsmProcessor(IElevationService elevationService
26+
public DefaultOsmProcessor(ElevationService elevationService
2727
, SharpGltfService gltfService
28-
, IMeshService meshService
28+
, MeshService meshService
2929
, OsmService osmService
3030
, IOptions<DEMNetOptions> options
3131
, ILogger<DefaultOsmProcessor> logger)

DEM.Net.Extension.Osm/Implementation/_Processor/IOsmProcessor.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@ public interface IOsmProcessor
1919
string[] RelationsFilter { get; set; }
2020
string[] NodesFilter { get; set; }
2121

22-
void Init(IElevationService elevationService
22+
void Init(ElevationService elevationService
2323
, SharpGltfService gltfService
24-
, IMeshService meshService
24+
, MeshService meshService
2525
, OsmService osmService
2626
, ILogger logger);
2727

DEM.Net.Extension.Osm/Implementation/_Processor/OsmProcessorStage.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,15 @@ namespace DEM.Net.Extension.Osm
1212
public abstract class OsmProcessorStage<T> : IOsmProcessor
1313
where T : CommonModel
1414
{
15-
protected IElevationService _elevationService;
15+
protected ElevationService _elevationService;
1616
protected SharpGltfService _gltfService;
17-
protected IMeshService _meshService;
17+
protected MeshService _meshService;
1818
protected OsmService _osmService;
1919
protected ILogger _logger;
2020

21-
public void Init(IElevationService elevationService
21+
public void Init(ElevationService elevationService
2222
, SharpGltfService gltfService
23-
, IMeshService meshService
23+
, MeshService meshService
2424
, OsmService osmService
2525
, ILogger logger)
2626
{

Samples/Helladic/HelladicSample.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,19 +26,19 @@ public class HelladicSample
2626
{
2727
private readonly DefaultOsmProcessor _sampleOsmProcessor;
2828
private readonly ImageryService _imageryService;
29-
private readonly IElevationService _elevationService;
29+
private readonly ElevationService _elevationService;
3030
private readonly SharpGltfService _gltfService;
31-
private readonly IMeshService _meshService;
31+
private readonly MeshService _meshService;
3232
private readonly SketchFab.SketchFabApi _sketchFabApi;
3333
private readonly string _sketchFabToken;
3434
private readonly ILogger _logger;
3535

3636

3737
public HelladicSample(DefaultOsmProcessor sampleOsmProcessor
3838
, ImageryService imageryService
39-
, IElevationService elevationService
39+
, ElevationService elevationService
4040
, SharpGltfService gltfService
41-
, IMeshService meshService
41+
, MeshService meshService
4242
, SketchFab.SketchFabApi sketchFabApi
4343
, IOptions<AppSecrets> secrets
4444
, ILogger<HelladicSample> logger)

Samples/Osm/OsmExtensionSample.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,15 +23,15 @@ public class OsmExtensionSample
2323
{
2424
private readonly DefaultOsmProcessor _osmProcessor;
2525
private readonly ImageryService _imageryService;
26-
private readonly IElevationService _elevationService;
26+
private readonly ElevationService _elevationService;
2727
private readonly SharpGltfService _gltfService;
2828
private readonly ILogger _logger;
2929

3030
private float ZScale = 2f;
3131

3232
public OsmExtensionSample(DefaultOsmProcessor osmProcessor
3333
, ImageryService imageryService
34-
, IElevationService elevationService
34+
, ElevationService elevationService
3535
, SharpGltfService gltfService
3636
, ILogger<OsmExtensionSample> logger)
3737
{

Samples/SampleApplication.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,12 +43,12 @@ namespace SampleApp
4343
public class SampleApplication
4444
{
4545
private readonly ILogger<SampleApplication> _logger;
46-
private readonly IRasterService rasterService;
46+
private readonly RasterService rasterService;
4747
private readonly IServiceProvider services;
4848
private const string DATA_FILES_PATH = null; //@"C:\Users\ElevationAPI\AppData\Local"; // Leave to null for default location (Environment.SpecialFolder.LocalApplicationData)
4949

5050
public SampleApplication(ILogger<SampleApplication> logger, IServiceProvider services,
51-
IRasterService rasterService)
51+
RasterService rasterService)
5252
{
5353
_logger = logger;
5454
this.rasterService = rasterService;

0 commit comments

Comments
 (0)