NAME
Box::Calc - Packing Algorithm
VERSION
version 0.0400
SYNOPSIS
use Box::Calc;
my $box_calc = Box::Calc->new(api_key => 'xxx');
# define the possible box types
$box_calc->add_box_type( x => 12, y => 12, z => 18, weight => 16, name => 'big box' );
$box_calc->add_box_type( x => 4, y => 6, z => 8, weight => 6, name => 'small box' );
# define the items you want to put into boxes
$box_calc->add_item( 3, { x => 6, y => 3, z => 3, weight => 12, name => 'soda' });
$box_calc->add_item( 1, { x => 3.3, y => 3, z => 4, weight => 4.5, name => 'apple' });
$box_calc->add_item( 2, { x => 8, y => 2.5, z => 2.5, weight => 14, name => 'water bottle' });
# get a packing list
my $packing_list = $box_calc->packing_list;
DESCRIPTION
Box::Calc helps you determine what can fit into a box for shipping or storage purposes. It will try to use the smallest box possible of the box types. If every item won't fit into your largest box, then it will span the boxes letting you know how many boxes you'll need.
Once it's done packing the boxes, you can get a packing list for each box, as well as the weight of each box.
Tips
When adding items, be sure to use the outer most dimensions of oddly shaped items, otherwise they may not fit the box.
When adding box types, be sure to use the inside dimensions of the box. If you plan to line the box with padding, then subtract the padding from the dimensions, and also add the padding to the weight of the box.
What units you use (inches, centimeters, ounces, pounds, grams, kilograms, etc) don't matter as long as you use them consistently.
METHODS
new(api_key)
Constructor.
- api_key
-
An API Key from http://www.boxcalc.net.
add_box_type(params)
Adds a new Box::Calc::BoxType to the list of box_types
. Returns the newly created Box::Calc::BoxType instance.
- params
-
The list of constructor parameters for Box::Calc::BoxType.
add_item(quantity, params)
Registers a new item. Returns the new item registered.
- params
-
The constructor parameters for the Box::Calc::Item.
packing_list()
Returns a data structure with all the item names and quantities packed into boxes. This can be used to generate manifests.
[
{ # box one
name => "big box",
weight => 30.1,
packing_list => {
"soda" => 3,
"apple" => 1,
"water bottle" => 2,
}
}
]
PREREQS
Moose Ouch LWP::UserAgent JSON
SUPPORT
SEE ALSO
Although these modules don't solve the same problem as this module, they may help you build something that does if Box::Calc doesn't quite help you do what you want.
AUTHOR
LEGAL
Box::Calc is Copyright 2012 Plain Black Corporation (http://www.plainblack.com) and is licensed under the same terms as Perl itself.