In addition to what has already been suggested, you may want to create your array references as copies like so:
%station_data = (1, [@station1], 2, [@station2], 3, [@station3], ...
This is useful if you'd rather not store a reference to the original @stationX array (note that are not these deep copies, however). Also, there is quite a bit of repetition in your code. If you're feeling adventurous, consider reducing it to:
{ no strict 'refs'; $station_data{$_} = \@{"station$_"} for 0..9; }
Although, the fact that you would want to consider disabling strict (ie. the fact that you have sequentially numbered variables @station(1..9)) is often indicative of a poor design choice in your code. Ask yourself how these sequential list variables got there in the first place, and how you could employ a reference-based data structure like a hash of arrays (or preferably array of arrays) from the beginning.

Additionally, read up on perlreftut, perllol, perldsc, and perlref. Teach a man to fish, ya know...


In reply to Re: %Hashing Arrays by MeowChow
in thread %Hashing Arrays by Pearte

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.