In the source of "Convert.go", the default epsg codes just have three, including EPSG3395, EPSG3857 and EPSG4087. I need use more. so I add Register function, the source code like :
func Register(dest EPSGCode, projString string) {
cacheLock.Lock()
projStrings[dest] = projString
cacheLock.Unlock()
}
In the source of "Convert.go", the default epsg codes just have three, including EPSG3395, EPSG3857 and EPSG4087. I need use more. so I add Register function, the source code like :
func Register(dest EPSGCode, projString string) {
cacheLock.Lock()
projStrings[dest] = projString
cacheLock.Unlock()
}