Exemple #1
0
// Set to Interrupted Goode Homolosine
func (sr SpatialReference) SetIGH() error {
	err := C.OSRSetIGH(sr.cval)
	if err != 0 {
		return error(err)
	}

	return nil
}
Exemple #2
0
// Set to Interrupted Goode Homolosine
func (sr SpatialReference) SetIGH() error {
	return C.OSRSetIGH(sr.cval).Err()
}