Though it would appear to provide everything necessary to provide mappable
data, my wms or kml output is always empty. Since I know nothing about NetCDF
files, I'm guessing wildly, but it seems to me that the coads.nc example always
shows in the bounds selection fields, the names of fields actually in the
dataset, while this file only shows a valid time field, but the y & x fields are
simply called "y" and "x", when my positions are actually "nav_lat" and
"nav_lon". Still there seems to be enough information specified in the file to
make these connections - each variable specifies:
associate
time_counter nav_lat nav_lon
and:
axis
TYX
(or TZYX for 4-dimensional data). Is this a proper NetCDF definition? If so,
is it simply something that hasn't been implemented in pydap? And if that's
so, if someone could point me to the right part of the code, I'd be happy to
make a patch handle it, since it's rather necessary to my project :-)
--
derek
Yes, I worked that out, and nav_lon and nav_lat, do.
> In your case, it looks like you have a non-rectangular grid (not sure if
> this is the right term), since you have a latitude map (nav_lat) and a
> longitude map (nav_lon) for each pair (x,y). In this case you'd need to
> regrid the data to a regular grid before generating the maps. This is a
> problem that has appeared before, and I can help you with this if you want;
> I believe it would only be necessary to change the WMS response in order
> for this to work.
Thanks. I think the first thing I want to do is get some verification from the
creators (who haven't talked to me yet, even though they want me to do this
project) that the data is really correct. I really think it's supposed to be
a strictly rectangular grid, and that nav_lat and nav_lon are supposed to _be_
y and x, not dependent on them.
What determines whether the "map" tab on the html response is enabled? It
isn't for any of these datasets.
--
derek
What determines whether the "map" tab on the html response is enabled? Itisn't for any of these datasets.
That's what I thought, but a walk(dataset, GridType) in python returned a
list, which should be the layers. I think that just proves that the datasets
aren't really valid, because the filter isn't finding any actual Lat/Lon info.
--
derek
list, which should be the layers. I think that just proves that the datasetsThat's what I thought, but a walk(dataset, GridType) in python returned a
aren't really valid, because the filter isn't finding any actual Lat/Lon info.