// Set to Lambert Conformal Conic func (sr SpatialReference) SetLCC( stdp1, stdp2, centerLat, centerLong, falseEasting, falseNorthing float64, ) error { return C.OSRSetLCC( sr.cval, C.double(stdp1), C.double(stdp2), C.double(centerLat), C.double(centerLong), C.double(falseEasting), C.double(falseNorthing), ).Err() }
// Set to Lambert Conformal Conic func (sr SpatialReference) SetLCC( stdp1, stdp2, centerLat, centerLong, falseEasting, falseNorthing float64, ) error { err := C.OSRSetLCC( sr.cval, C.double(stdp1), C.double(stdp2), C.double(centerLat), C.double(centerLong), C.double(falseEasting), C.double(falseNorthing), ) if err != 0 { return error(err) } return nil }