-
Notifications
You must be signed in to change notification settings - Fork 25
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
Deal with askew coordinates #31
Comments
Yuuuuup, this is a projection problem. The
This may complicate things beyond what is plausible for me to deal with via a simple iteration over a grid. :-/ But I'll try! |
OK, so the basic problem here is that PHZ grid data is stored as NAD 1983, and it should perhaps instead be stored as WGS 84 (EPSG:4326). (This is surely a projection problem, whatever the proper projection is.) gdal is the tool for this. My efforts so far have failed, e.g.:
(Removed: a big list of drivers.) Maybe ogr2ogr can read ESRI ASCII Raster, but not write it? Anyway, there are two necessary tasks here:
|
Solution: Redo the whole damn thing as Shapefile -> GeoJSON -> JSON pipeline, and see how that goes. |
I am not a proud man. |
Obviated by #32. |
We're getting coordinates over the border in Canada, and our coordinates within the U.S. appear to be wrong. e.g., 35.55, -76.65 is in ZIP 27810, but this has those coordinates in zone 8b, but that ZIP is in zone 8a. So something isn't right here.
The text was updated successfully, but these errors were encountered: