Get Remote Parcel Info Data

1 January 2019

  • C10 - the command now takes global instead of position to describe any simulator and parcel on the grid.

25 February 2017

  • Release 9.157 - the command now assumes that the region to act upon is the current region unless otherwise specified.

13 September 2016

  • Release 9.123 - added.
getremoteparcelinfodata (Commands)
TypeCorrade progressive command
Commandgetremoteparcelinfodata
DescriptionThe getremoteparcelinfodata command can be used to query a parcel on a remote simulator given a global (grid) position by following the ParcelInfo structure.
Permissionsland
Parametersgroup, password, data, global
Last ChangesC10 - the command now takes global instead of position to describe any simulator and parcel on the grid.

The getremoteparcelinfodata command can be used to query a parcel on a remote simulator given a global (grid) position by following the ParcelInfo structure.

Command Required Parameters Required Corrade Permissions Example
getremoteparcelinfodata group, password, data, global land
llInstantMessage(CORRADE,
    wasKeyValueEncode(
        [
            // gets the UUID of the texture
            // of the parcel snapshot and
            // the traffic score from a parcel
            // on a region at grid position:
            // X = 255360.35 and Y = 255360.35
            "command", "getremoteparcelinfodata",
            "group", wasURLEscape(GROUP),
            "password", wasURLEscape(PASSWORD),
            "global", wasURLEscape(<255360.35, 255360.35, 0>),
            "data", wasListToCSV(
                [
                    "SnapshotID", 
                    "Dwell"
                ]
            ),
            "callback", wasURLEscape(URL)
        ]
    )
);
Optional Parameters Possible Value Description
global A vector. A global position, or, if not specified, the requested parcel is the one that Corrade is currently on.

Notes