The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Rinchi::CIGIPP::TerrestrialSurfaceConditionsResponse - Perl extension for the Common Image Generator Interface - Terrestrial Surface Conditions Response data packet. data packet. =head1 SYNOPSIS

  use Rinchi::CIGIPP::TerrestrialSurfaceConditionsResponse;
  my $tsc_resp = Rinchi::CIGIPP::TerrestrialSurfaceConditionsResponse->new();

  $packet_type = $tsc_resp->packet_type();
  $packet_size = $tsc_resp->packet_size();
  $request_ident = $tsc_resp->request_ident(208);
  $surface_condition_ident = $tsc_resp->surface_condition_ident(53038);

DESCRIPTION

The Terrestrial Surface Conditions Response packet is sent in response to an Environmental Conditions Request packet whose Request Type attribute specifies Terrestrial Surface Conditions. The packet describes the terrain surface conditions at the requested geodetic latitude and longitude.

EXPORT

None by default.

#==============================================================================

new $tsc_resp = Rinchi::CIGIPP::TerrestrialSurfaceConditionsResponse->new()

Constructor for Rinchi::TerrestrialSurfaceConditionsResponse.

sub packet_type()
 $value = $tsc_resp->packet_type();

Data Packet Identifier.

This attribute identifies this data packet as the Terrestrial Surface Conditions Response packet. The value of this attribute must be 112.

sub packet_size()
 $value = $tsc_resp->packet_size();

Data Packet Size.

This attribute indicates the number of bytes in this data packet. The value of this attribute must be 8.

sub request_ident([$newValue])
 $value = $tsc_resp->request_ident($newValue);

Request ID.

This attribute identifies the environmental conditions request to which this response packet corresponds.

sub surface_condition_ident([$newValue])
 $value = $tsc_resp->surface_condition_ident($newValue);

Surface Condition ID.

This attribute indicates the presence of a specific surface condition or contaminant at the test point. Surface condition codes are IG-dependent.

sub pack()
 $value = $tsc_resp->pack();

Returns the packed data packet.

sub unpack()
 $value = $tsc_resp->unpack();

Unpacks the packed data packet.

sub byte_swap()
 $obj_name->byte_swap();

Byte swaps the packed data packet.

SEE ALSO

Refer the the Common Image Generator Interface ICD which may be had at this URL: http://cigi.sourceforge.net/specification.php

AUTHOR

Brian M. Ames, <bmames@apk.net>

COPYRIGHT AND LICENSE

Copyright (C) 2009 by Brian M. Ames

This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.6 or, at your option, any later version of Perl 5 you may have available.

2 POD Errors

The following errors were encountered while parsing the POD:

Around line 67:

'=item' outside of any '=over'

Around line 261:

You forgot a '=back' before '=head1'