OpenSimulator Internals/LandService
Appearance
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.