get.diskLocation: Get the physical location on the disk for a specific block
Description
Get the side, cylinder and sector on a disk, based on disk type and
block id.
Usage
# S4 method for character,numeric
get.diskLocation(disktype, block)
Value
Returns a list with corresponding sector, side and cylinder
identifiers (numeric).
Arguments
disktype
A character string indicating the type of disk:
DD for double density disks. HD for high density disks.
block
numeric identifier of a block. Whole numbers ranging from
0 up to 1759 (for DD disks) or 3519 (for HD disks). Note that the base
index is zero (for consitency with Amiga specifications and documentation)
opposed to the base of one used in R.
Author
Pepijn de Vries
Details
Data on Amiga floppy disks are stored as 512 byte blocks. These blocks
are physically stored on a specific cylinder and side at a specific sector.
This method returns the identifiers for the physical location based on the
block identifier. The inverse of this function is achieved with the
get.blockID method.
See Also
Other block.operations:
amigaBlock-method,
get.blockID()