in reply to Re: Should my project be uploaded to CPAN as a module or an Application?
in thread Should my project be uploaded to CPAN as a module or an Application?

Thanks for all your suggestions. I've been working (silently)

and incorporating everyone's suggestions

Your overview is excellent and I will try to carve out additional Tk subtools

Currently, I agree that SeismicUnixGui is rather monolithic, single-purposed and needs a lot

of work to break it down into sets of libraries .

There are however about 10 Tk "tools" that can be run independently of the main GUI

Currently, PDL is very useful for handling image data that feeds into one of these detachable Tk "tools"

This Tk tool messages interactively with fortran code which pipes data out to pgplot

I must say that the Monks have been very encouraging and enlightening

Thanks

  • Comment on Re^2: Should my project be uploaded to CPAN as a module or an Application?

Replies are listed 'Best First'.
Re^3: Should my project be uploaded to CPAN as a module or an Application?
by etj (Priest) on Oct 25, 2022 at 16:23 UTC
    Thank you for the kind words!

    I wonder if the Fortran code might be easier to work with if it were brought more under Perl control by making it a library callable from XS, and/or making it a PDL library? Then you'd be able to just call pgplot commands from Perl and maybe even avoid having to do that by throwing PDL data structures to Fortran to be worked on, then to PDL::Graphics::PGPLOT?

    Anyway, good luck with your ongoing work. It sounds very interesting!