// Set to Miller Cylindrical func (sr SpatialReference) SetMC( centerLat, centerLong, falseEasting, falseNorthing float64, ) error { return C.OSRSetMC( sr.cval, C.double(centerLat), C.double(centerLong), C.double(falseEasting), C.double(falseNorthing), ).Err() }
// Set to Miller Cylindrical func (sr SpatialReference) SetMC( centerLat, centerLong, falseEasting, falseNorthing float64, ) error { err := C.OSRSetMC( sr.cval, C.double(centerLat), C.double(centerLong), C.double(falseEasting), C.double(falseNorthing), ) if err != 0 { return error(err) } return nil }