_pj_gi

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

Undocumented

  • Undocumented

    Declaration

    Objective-C

    char *gridname

    Swift

    var gridname: UnsafeMutablePointer<CChar>!
  • Undocumented

    Declaration

    Objective-C

    char *filename

    Swift

    var filename: UnsafeMutablePointer<CChar>!
  • Undocumented

    Declaration

    Objective-C

    const char *format

    Swift

    var format: UnsafePointer<CChar>!
  • Undocumented

    Declaration

    Objective-C

    int   grid_offset

    Swift

    var grid_offset: Int32
  • Undocumented

    Declaration

    Objective-C

    int   must_swap

    Swift

    var must_swap: Int32
  • ct

    Undocumented

    Declaration

    Objective-C

    struct CTABLE *ct

    Swift

    var ct: UnsafeMutablePointer<CTABLE>!
  • Undocumented

    Declaration

    Objective-C

    struct _pj_gi *next

    Swift

    var next: UnsafeMutablePointer<_pj_gi>!
  • Undocumented

    Declaration

    Objective-C

    struct _pj_gi *child

    Swift

    var child: UnsafeMutablePointer<_pj_gi>!