How to project an HRAP_Sphere geographic coordinate system into any other PCS?

2409
3
Jump to solution
09-26-2014 02:38 AM
WhereMatters
Occasional Contributor

What is the correct way to project an existing shapefile that has a .prj file associated with it containing the following information into any other coordinate system for e.g. web mercator?

 

GEOGCS["HRAP_Sphere",DATUM["<custom>",SPHEROID["<custom>",6371200.0,0.0]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]]

 

A sample shapefile is attached.

0 Kudos
1 Solution

Accepted Solutions
V_StuartFoote
MVP Frequent Contributor

One of my favorite topics...

If you open the Shape File and look at the data, you'll see that the precipitation reports include the HRAP grid cell, meaning that the Point feature in the shape file is only an estimate of the center point of each HRAP grid cell.

The HRAP grid is drawn from the NWS LFM (Limited Fine Mesh) projection--at 1/40th.  This image (Reed & Maidment, 1999) shows the full LFM for CONUS used by NEXRAD reporting in a finer HRAP grid in units 1/40th of LFM.

HRAP_LFM_1-40.PNG

Some discussion in this old Forums thread HRAP (Hydrologic Rainfall Analysis Projection) Transformation

I've uploaded a copy of R. Fulton WSR-88D Polar-toHRAP Mapping paper here -- Fulton1998_WSR88D-to-HRAP_mapping.pdf

What you really should track down is the Reed & Maidment article "Coordinate Transformations for using NEXRAD Data in GIS-Based Hydrologic Modeling" in the Journal of Hydrologic Engineering. 1999.4:174-182

View solution in original post

0 Kudos
3 Replies
MelitaKennedy
Esri Notable Contributor

It depends on how the data owners produced the data.

1. Try redefining the coordinate system as WGS84 (Define Projection tool)

2. Create a custom geographic transformation between the HRAP_sphere geographic coordinate system and WGS84 using Create Custom Geographic Transformation tool. When defining the transformation, import the HRAP coordinate system as the 'from' GCS and pick Geocentric_Translations for the method. Leave the parameter values set to zeroes.

The difference between methods (1) and (2) is that the 2nd method will convert between the two ellipsoids, but you'll only see values move north-south (in latitude).

Melita

0 Kudos
V_StuartFoote
MVP Frequent Contributor

One of my favorite topics...

If you open the Shape File and look at the data, you'll see that the precipitation reports include the HRAP grid cell, meaning that the Point feature in the shape file is only an estimate of the center point of each HRAP grid cell.

The HRAP grid is drawn from the NWS LFM (Limited Fine Mesh) projection--at 1/40th.  This image (Reed & Maidment, 1999) shows the full LFM for CONUS used by NEXRAD reporting in a finer HRAP grid in units 1/40th of LFM.

HRAP_LFM_1-40.PNG

Some discussion in this old Forums thread HRAP (Hydrologic Rainfall Analysis Projection) Transformation

I've uploaded a copy of R. Fulton WSR-88D Polar-toHRAP Mapping paper here -- Fulton1998_WSR88D-to-HRAP_mapping.pdf

What you really should track down is the Reed & Maidment article "Coordinate Transformations for using NEXRAD Data in GIS-Based Hydrologic Modeling" in the Journal of Hydrologic Engineering. 1999.4:174-182

0 Kudos
WhereMatters
Occasional Contributor

Thanks Stuart Foote. This really helps, though yet to get my hands on the Reed and Maidment article.

An HRAP grid cell is 4 x 4 km and the points in the shapefile are the center of each cell right? So, I was wondering if I just redefine the coordinate system to WGS84 and use it further, what would be the magnitude of error?

My objective is mainly to visualize the precipitation (interpolate, smooth and vectorize into polygons) and not use it further in any hydrological models or analysis. Well, it may be used sometimes to estimate what's the affected population in case of a storm though. Do you think assuming it to WGS84 will introduce too much error?

0 Kudos