// Set to Equidistant Conic func (sr SpatialReference) SetEC( stdp1, stdp2, centerLat, centerLong, falseEasting, falseNorthing float64, ) error { return C.OSRSetEC( sr.cval, C.double(stdp1), C.double(stdp2), C.double(centerLat), C.double(centerLong), C.double(falseEasting), C.double(falseNorthing), ).Err() }
// Set to Equidistant Conic func (sr SpatialReference) SetEC( stdp1, stdp2, centerLat, centerLong, falseEasting, falseNorthing float64, ) error { err := C.OSRSetEC( 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 }