/usr/include/interpolation/ouspace.h is in libemos-dev 000392+dfsg.1-3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 | C
C Copyright 1981-2012 ECMWF.
C
C This software is licensed under the terms of the Apache Licence
C Version 2.0 which can be obtained at http://www.apache.org/licenses/LICENSE-2.0.
C
C In applying this licence, ECMWF does not waive the privileges and immunities
C granted to it by virtue of its status as an intergovernmental organisation
C nor does it submit to any jurisdiction.
C
C**** "ouspace.h"
C
C PURPOSE
C _______
C
C This file contains the work space array definitions for the
C arrays to hold the unpacked real data from GRIB fields.
C
C INTERFACE
C _________
C
C #include "ouspace.h"
C
C Common block usage
C __________________
C
C GRIB_SPACE
C
C NIFELD - POINTER to array RIFELD.
C NOFELD - POINTER to array ROFELD.
C
C RIFELD - Dynamic array of length (NIWE * NINS)
C (see nifld.common) which holds the expanded
C input field.
C ROFELD - Dynamic array of length (NOWE * NONS)
C (see nofld.common) which holds the expanded
C output field.
C
C METHOD
C ______
C
C NONE
C
C REFERENCE
C _________
C
C NONE
C
C COMMENTS
C ________
C
C Contains sections 1
C
C AUTHOR
C ______
C
C K. Fielding *ECMWF* Apr 1994
C
C MODIFICATIONS
C _____________
C
C NONE
C
C
C _______________________________________________________
C
C
C* Section 1. Pointer and array combination
C Array dimensions are in nifld.common and
C nofld.common
C _______________________________________________________
C
COMMON /GRIB_SPACE/
1 NIFELD, NOFELD
C
SAVE /GRIB_SPACE/
C
REAL RIFELD, ROFELD
C
C RIFELD is actually only the accumulated field length for a
C quasi regular input field
C
POINTER (NIFELD, RIFELD (NIWE * NINS) )
POINTER (NOFELD, ROFELD (NOWE * NONS) )
|