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