OsgEarthGround.ned

NED File src/inet/environment/ground/OsgEarthGround.ned

Name Type Description
OsgEarthGround compound module

Models a ground surface using OsgEarth's elevation data. Provides methods to compute ground projections and normals based on real-world terrain information. Requires OsgEarth integration to be enabled during compilation and depends on a SceneOsgEarthVisualizer for accessing the map and a coordinate system for geographic conversions.

Source code

//
// Copyright (C) 2014 OpenSim Ltd.
//
// SPDX-License-Identifier: LGPL-3.0-or-later
//


package inet.environment.ground;

import inet.common.Module;
import inet.environment.contract.IGround;

//
// Models a ground surface using OsgEarth's elevation data. Provides methods to
// compute ground projections and normals based on real-world terrain information.
// Requires OsgEarth integration to be enabled during compilation and depends on
// a SceneOsgEarthVisualizer for accessing the map and a coordinate system for
// geographic conversions.
//
module OsgEarthGround extends Module like IGround
{
    parameters:
        @class(OsgEarthGround);
        string osgEarthSceneVisualizerModule = default("");
        string coordinateSystemModule = default("");
}