[Met_help] [rt.rap.ucar.edu #77714] History for ask about compiling MET and UPP

Julie Prestopnik via RT met_help at ucar.edu
Wed Aug 31 10:06:08 MDT 2016


----------------------------------------------------------------
  Initial Request
----------------------------------------------------------------

Hi,

My name is novvria. I am from indonesia. I am compiling MET. But I have
some problem. I have followed the instruction, but still get error
compiling MET and UPP.
I will attach you Makefile MET ,configure of UPP, and also compile log both
of them.
I hope you want to check it and give me solution.

I used gcc and gfortran for compiling MET and UPP.

Regards


-- 
Novvria Sagita/Mr

Indonesian Agency for Meteorology, Climatology and Geophysics

Sam Ratulangi Meteorological officer
Phone: (0431)811202
A.A. Maramis Street , Manado
North Sulawesi, 95374
Indonesia


----------------------------------------------------------------
  Complete Ticket History
----------------------------------------------------------------

Subject: ask about compiling MET and UPP
From: NOVVRIA SAGITA
Time: Sun Aug 28 03:37:15 2016

---------- Forwarded message ----------
From: met_help at ucar.edu via RT <met_help at ucar.edu>
Date: Sun, Aug 28, 2016 at 1:26 PM
Subject: [rt.rap.ucar.edu #77714] AutoReply: ask about compiling MET
and UPP
To: novvria.sagita.ut at gmail.com


Greetings,

This message has been automatically generated in response to the
creation of a trouble ticket regarding:
        "ask about compiling MET and UPP",
a summary of which appears below.

There is no need to reply to this message right now.  Your ticket has
been
assigned an ID of [rt.rap.ucar.edu #77714].

Please include the string:

         [rt.rap.ucar.edu #77714]

in the subject line of all future correspondence about this issue. To
do so,
you may reply to this message.

                        Thank you,
                        met_help at ucar.edu

-------------------------------------------------------------------------
Hi,

My name is novvria. I am from indonesia. I am compiling MET. But I
have
some problem. I have followed the instruction, but still get error
compiling MET and UPP.
I will attach you Makefile MET ,configure of UPP, and also compile log
both
of them.
I hope you want to check it and give me solution.

I used gcc and gfortran for compiling MET and UPP.

Regards


--
Novvria Sagita/Mr

Indonesian Agency for Meteorology, Climatology and Geophysics

Sam Ratulangi Meteorological officer
Phone: (0431)811202
A.A. Maramis Street , Manado
North Sulawesi, 95374
Indonesia




--
Novvria Sagita/Mr

Indonesian Agency for Meteorology, Climatology and Geophysics

Sam Ratulangi Meteorological officer
Phone: (0431)811202
A.A. Maramis Street , Manado
North Sulawesi, 95374
Indonesia

------------------------------------------------
Subject: Re: [rt.rap.ucar.edu #77714] ask about compiling MET and UPP
From: Julie Prestopnik
Time: Mon Aug 29 10:07:50 2016

Hi Novvria.

I see that you're having some difficulty installing the MET software.
>From your file, compile_met.log, I see:

/usr/bin/ld: cannot find -ljasper

The jasper library, along with zlib, libpng, and the grib2c library,
are required when compiling support for GRIB2.  It's often the case
that jasperlib is already installed somewhere on user's machines.

Try running the locate command to look for it:
  locate libjasper.a

If you find it on your system somewhere, we can tell the configure
command where to look for it.  You can use the LDFLAGS option to
configure (./configure --help), like this:
LDFLAGS='-L/path/to/jasperlib/directory' where that directory contains
the file "libjasper.a".

Otherwise, you could download and install it locally on your machine.

You can find it on NCEP's website included with the GRIB2 codes:
   http://www.nco.ncep.noaa.gov/pmb/codes/GRIB2/

We provide support for MET at this address, but UPP support is
provided by upp-help at ucar.edu.  I went ahead and took a look at
your UPP files, and the problem appears to be similar with regard to
jasper:

enc_jpeg2000.c:4:27: fatal error: jasper/jasper.h: No such file or
directory
 #include "jasper/jasper.h"

Hopefully that helps and solving the problem for MET will also resolve
the UPP problem.

Julie

On Sun, Aug 28, 2016 at 12:26 AM, NOVVRIA SAGITA via RT
<met_help at ucar.edu> wrote:
>
> Sun Aug 28 00:26:27 2016: Request 77714 was acted upon.
> Transaction: Ticket created by novvria.sagita.ut at gmail.com
>        Queue: met_help
>      Subject: ask about compiling MET and UPP
>        Owner: Nobody
>   Requestors: novvria.sagita.ut at gmail.com
>       Status: new
>  Ticket <URL:
https://rt.rap.ucar.edu/rt/Ticket/Display.html?id=77714 >
>
>
> Hi,
>
> My name is novvria. I am from indonesia. I am compiling MET. But I
have
> some problem. I have followed the instruction, but still get error
> compiling MET and UPP.
> I will attach you Makefile MET ,configure of UPP, and also compile
log both
> of them.
> I hope you want to check it and give me solution.
>
> I used gcc and gfortran for compiling MET and UPP.
>
> Regards
>
>
> --
> Novvria Sagita/Mr
>
> Indonesian Agency for Meteorology, Climatology and Geophysics
>
> Sam Ratulangi Meteorological officer
> Phone: (0431)811202
> A.A. Maramis Street , Manado
> North Sulawesi, 95374
> Indonesia
>



--
Julie Prestopnik
National Center for Atmospheric Research
Research Applications Laboratory
Phone: 303.497.8399
Email: jpresto at ucar.edu

------------------------------------------------
Subject: ask about compiling MET and UPP
From: NOVVRIA SAGITA
Time: Wed Aug 31 04:33:17 2016

ok thank you, solved

On Mon, Aug 29, 2016 at 11:07 PM, Julie Prestopnik via RT
<met_help at ucar.edu
> wrote:

> Hi Novvria.
>
> I see that you're having some difficulty installing the MET
software.
> From your file, compile_met.log, I see:
>
> /usr/bin/ld: cannot find -ljasper
>
> The jasper library, along with zlib, libpng, and the grib2c library,
> are required when compiling support for GRIB2.  It's often the case
> that jasperlib is already installed somewhere on user's machines.
>
> Try running the locate command to look for it:
>   locate libjasper.a
>
> If you find it on your system somewhere, we can tell the configure
> command where to look for it.  You can use the LDFLAGS option to
> configure (./configure --help), like this:
> LDFLAGS='-L/path/to/jasperlib/directory' where that directory
contains
> the file "libjasper.a".
>
> Otherwise, you could download and install it locally on your
machine.
>
> You can find it on NCEP's website included with the GRIB2 codes:
>    http://www.nco.ncep.noaa.gov/pmb/codes/GRIB2/
>
> We provide support for MET at this address, but UPP support is
> provided by upp-help at ucar.edu.  I went ahead and took a look at
> your UPP files, and the problem appears to be similar with regard to
> jasper:
>
> enc_jpeg2000.c:4:27: fatal error: jasper/jasper.h: No such file or
> directory
>  #include "jasper/jasper.h"
>
> Hopefully that helps and solving the problem for MET will also
resolve
> the UPP problem.
>
> Julie
>
> On Sun, Aug 28, 2016 at 12:26 AM, NOVVRIA SAGITA via RT
> <met_help at ucar.edu> wrote:
> >
> > Sun Aug 28 00:26:27 2016: Request 77714 was acted upon.
> > Transaction: Ticket created by novvria.sagita.ut at gmail.com
> >        Queue: met_help
> >      Subject: ask about compiling MET and UPP
> >        Owner: Nobody
> >   Requestors: novvria.sagita.ut at gmail.com
> >       Status: new
> >  Ticket <URL:
https://rt.rap.ucar.edu/rt/Ticket/Display.html?id=77714 >
> >
> >
> > Hi,
> >
> > My name is novvria. I am from indonesia. I am compiling MET. But I
have
> > some problem. I have followed the instruction, but still get error
> > compiling MET and UPP.
> > I will attach you Makefile MET ,configure of UPP, and also compile
log
> both
> > of them.
> > I hope you want to check it and give me solution.
> >
> > I used gcc and gfortran for compiling MET and UPP.
> >
> > Regards
> >
> >
> > --
> > Novvria Sagita/Mr
> >
> > Indonesian Agency for Meteorology, Climatology and Geophysics
> >
> > Sam Ratulangi Meteorological officer
> > Phone: (0431)811202
> > A.A. Maramis Street , Manado
> > North Sulawesi, 95374
> > Indonesia
> >
>
>
>
> --
> Julie Prestopnik
> National Center for Atmospheric Research
> Research Applications Laboratory
> Phone: 303.497.8399
> Email: jpresto at ucar.edu
>
>


--
Novvria Sagita/Mr

Indonesian Agency for Meteorology, Climatology and Geophysics

Sam Ratulangi Meteorological officer
Phone: (0431)811202
A.A. Maramis Street , Manado
North Sulawesi, 95374
Indonesia

------------------------------------------------


More information about the Met_help mailing list