Exemplo n.º 1
0
Arquivo: osr.go Projeto: kikht/gdal
// Set to Interrupted Goode Homolosine
func (sr SpatialReference) SetIGH() error {
	err := C.OSRSetIGH(sr.cval)
	if err != 0 {
		return error(err)
	}

	return nil
}
Exemplo n.º 2
0
Arquivo: osr.go Projeto: sn-amber/gdal
// Set to Interrupted Goode Homolosine
func (sr SpatialReference) SetIGH() error {
	return C.OSRSetIGH(sr.cval).Err()
}