Fellow Monk no_slogan wrote a piece of software that calculates the magnetic declination and inclination for a set of worldly coordinates.

In the mentioned thread, it was requested that a suitable naming convention be created for the resulting distribution that I very happily created, taking up the offer of readying it for the CPAN. I gave it the name Magnetic::Declination temporarily so I could build the original template with Module::Starter.

Although it's a recent post, it's in Cool Uses For Perl, so it may not be readily visible to all comers.

I will be ready by end of day today to upload it, but am waiting for consensus and am hoping to fast-track it a bit. I hope to have the name by early next week sometime. no_slogan has final say, so let's get some recommendations going if possible.

Here's the current SYNOPSIS and DESCRIPTION:

SYNOPSIS use Magnetic::Declination qw(mag_dec mag_inc); my $lat = 53.1234567; my $lon = -114.1234567; my $alt = 1098; my $declination = mag_dec($lat, $lon, $alt); my $inclination = mag_inc($lat, $lon, $alt); DESCRIPTION This module calculates and returns the magnetic declination and inclination (dip) calculations based on WMM earth magnetism model for a specified latitude and longitude pair. See L<NOAA|https://www.ngdc.noaa.gov/geomag/WMM/DoDWMM.shtml> for details.

Thoughts?


In reply to CPAN distribution naming recommendations by stevieb

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.