PJ_GRIDINFO

Objective-C

typedef struct _pj_gi {
    char *gridname;     /* identifying name of grid, eg "conus" or ntv2_0.gsb */
    char *filename;     /* full path to filename */

    const char *format; /* format of this grid, ie "ctable", "ntv1",
                           "ntv2" or "missing". */

    int   grid_offset;  /* offset in file, for delayed loading */
    int   must_swap;    /* only for NTv2 */

    struct CTABLE *ct;

    struct _pj_gi *next;
    struct _pj_gi *child;
} PJ_GRIDINFO

Swift

typealias PJ_GRIDINFO = _pj_gi

Undocumented

  • Undocumented

    See more

    Declaration

    Objective-C

    struct _pj_gi {
        char *gridname;     /* identifying name of grid, eg "conus" or ntv2_0.gsb */
        char *filename;     /* full path to filename */
    
        const char *format; /* format of this grid, ie "ctable", "ntv1",
                               "ntv2" or "missing". */
    
        int   grid_offset;  /* offset in file, for delayed loading */
        int   must_swap;    /* only for NTv2 */
    
        struct CTABLE *ct;
    
        struct _pj_gi *next;
        struct _pj_gi *child;
    }

    Swift

    struct _pj_gi