// Set to International Map of the World Polyconic func (sr SpatialReference) SetIWMPolyconic( lat1, lat2, centerLong, falseEasting, falseNorthing float64, ) error { return C.OSRSetIWMPolyconic( sr.cval, C.double(lat1), C.double(lat2), C.double(centerLong), C.double(falseEasting), C.double(falseNorthing), ).Err() }
// Set to International Map of the World Polyconic func (sr SpatialReference) SetIWMPolyconic( lat1, lat2, centerLong, falseEasting, falseNorthing float64, ) error { err := C.OSRSetIWMPolyconic( sr.cval, C.double(lat1), C.double(lat2), C.double(centerLong), C.double(falseEasting), C.double(falseNorthing), ) if err != 0 { return error(err) } return nil }