Jump to content

OpenSimulator Internals/LandService

From Open Simulator Technical Help
Revision as of 07:09, 21 June 2026 by Jwbshaw (talk | contribs) (first)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

OpenSimulator Internals/LandService

[edit]

Overview

[edit]

LandService provides parcel data for a specific simulator. Read only.

Runs per-simulator, not on ROBUST.


Interface

[edit]
namespace OpenSim.Services.Interfaces
{
    public interface ILandService
    {
        LandData GetLandData(UUID scopeID, ulong regionHandle, uint x, uint y, out byte regionAccess);
    }
}

Single method. Returns LandData for the parcel at the given coordinates, and the region access level as an out parameter.


Database

[edit]

See Simulator Database -- land and landaccesslist tables. Not yet fully documented.


See Also

[edit]