Simple Module SimpleGeographicCoordinateSystem

Package: inet.common.geometry.common
File: src/inet/common/geometry/common/CoordinateSystem.ned

C++ definition

This module provides a very simple and less accurate geographic coordinate system without using OSG. It doesn't support orientation

SimpleGeographicCoordinateSystem

Usage diagram:

The following diagram shows usage relationships between types. Unresolved types are missing from the diagram.

Inheritance diagram:

The following diagram shows inheritance relationships for this type. Unresolved types are missing from the diagram.

Parameters:

Name Type Default value Description
playgroundLatitude double

latitude coordinate of the playground origin

playgroundLongitude double

longitude coordinate of the playground origin

playgroundAltitude double 0m

altitude coordinate of the playground origin

Properties:

Name Value Description
display i=block/table2_s

Source code:

//
// This module provides a very simple and less accurate geographic coordinate
// system without using OSG. It doesn't support orientation
//
simple SimpleGeographicCoordinateSystem like IGeographicCoordinateSystem
{
    parameters:
        @display("i=block/table2_s");
        double playgroundLatitude @unit(deg); // latitude coordinate of the playground origin
        double playgroundLongitude @unit(deg); // longitude coordinate of the playground origin
        double playgroundAltitude @unit(m) = default(0m); // altitude coordinate of the playground origin
}