-
Notifications
You must be signed in to change notification settings - Fork 21
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I need register more epsg code and string? #38
Comments
I will add WGS84 support first, can you add it like your code? |
WGS84 support is already available: Lines 25 to 34 in 7d903f0
|
var projStrings = map[EPSGCode]string{ in this map, there are only three codes support |
Yep, you're right. I think the conversion support is from 4326 to these codes, but not the other way around. |
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()
}
The text was updated successfully, but these errors were encountered: