Hi everyone, I have some WRF model output data in NetCDF format, and I would appreciate any guidance on projecting it from anyone with experience with data from this model. (WRF = Weather Research Forecasting)
These WRF runs use a Lambert Conformal Conic projection with a center of -121, standard parallels of 30 & 60 degrees North, and a latitude of origin of 45 degrees North. I think I have that figured out, but my data will be off if I don't use the right sphere/spheroid. My understanding is that WRF uses a sphere of 6370 KM with no flattening. Does this look right?
PROJCS["WRF_LCC_PacificNW",
GEOGCS["WRF_Sphere_6370km",
DATUM["<custom>",
SPHEROID["<custom>",6370000.0,0.0]
],
PRIMEM["Greenwich",0.0],
UNIT["Degree",0.0174532925199433]
],
PROJECTION["Lambert_Conformal_Conic"],
PARAMETER["False_Easting",0.0],
PARAMETER["False_Northing",0.0],
PARAMETER["Central_Meridian",-121.0],
PARAMETER["Standard_Parallel_1",30.0],
PARAMETER["Standard_Parallel_2",60.0],
PARAMETER["Scale_Factor",1.0],
PARAMETER["Latitude_Of_Origin",45.0],
UNIT["Meter",1.0]
]
If that is right (or if I need to adjust it), then I should be all set. I would appreciate any feedback I can get from anyone with experience in this. Based on slide 20 of this presentation, it looks right, but I'd appreciate as much help as I can get!
That said, my process to bring these into ArcGIS is not for analysis is not straightforward at all, and I'd appreciate any suggestions to improve it. Here is how I do it:
I'm doing this in Python and it's automated. It doesn't take long, but YUCK! It seems like a lot of steps to get the data into the right coordinate system, especially considering that it came from a file where the coordinate system is well-defined, albeit in a different format. After this, I do some resampling, averaging, and export to polygons, so I feel like TIFs are a good intermediate format, but there is clearly room for improvement...
thanks!