Re: [gdal-dev] Getting warning when opening NetCDF file using gdal?

2015-08-03 Thread ysagarminaga
Hi! I have a problem warping the new MODIS L2 files from oceancolour with gdalwarp I came across this list and made changes in my gdal-bin (1.11.2 from ubuntuGis repository) and now I am able to read the files and subdatasets with gdalinfo but when trying to apply gdalwarp I get this error ERROR

Re: [gdal-dev] Getting warning when opening NetCDF file using gdal?

2015-07-15 Thread Joaquim Luis
de Anton Korosov Envoyé : mardi 30 juin 2015 09:41 À : gdal-dev@lists.osgeo.org Objet : Re: [gdal-dev] Getting warning when opening NetCDF file using gdal? Hi! The format of the new OBPG OceanColor files is HDF5 (aka NetCDF4), so you should have your GDAL compiled with HDF5 support: http

Re: [gdal-dev] Getting warning when opening NetCDF file using gdal?

2015-07-14 Thread Andre Joost
Have you tried simply gdalinfo A201504506.L2_LAC_OC.nc ? It works for me with GDAL 1.11.2 from gisinternals. HTH, Andre Joost Am 14.07.2015 um 05:58 schrieb oz: Do you have any idea on how will I batch process gdalwarp these HDF5 files? -- View this message in context:

Re: [gdal-dev] Getting warning when opening NetCDF file using gdal?

2015-07-13 Thread oz
Do you have any idea on how will I batch process gdalwarp these HDF5 files? -- View this message in context: http://osgeo-org.1560.x6.nabble.com/Getting-warning-when-opening-NetCDF-file-using-gdal-tp5213484p5215504.html Sent from the GDAL - Dev mailing list archive at Nabble.com.

Re: [gdal-dev] Getting warning when opening NetCDF file using gdal?

2015-06-30 Thread Anton Korosov
Hi! The format of the new OBPG OceanColor files is HDF5 (aka NetCDF4), so you should have your GDAL compiled with HDF5 support: http://www.gdal.org/frmt_hdf5.html Then you can access the content of the file using groups and variables syntax: gdalinfo

Re: [gdal-dev] Getting warning when opening NetCDF file using gdal?

2015-06-30 Thread Julien Demaria
de Anton Korosov Envoyé : mardi 30 juin 2015 09:41 À : gdal-dev@lists.osgeo.org Objet : Re: [gdal-dev] Getting warning when opening NetCDF file using gdal? Hi! The format of the new OBPG OceanColor files is HDF5 (aka NetCDF4), so you should have your GDAL compiled with HDF5 support: http

Re: [gdal-dev] Getting warning when opening NetCDF file using gdal?

2015-06-30 Thread oz
By specifying the chlor_a, it will just display all the info on chlor_a. But how will I able to display the info or all the subdatasets of that file? -- View this message in context: http://osgeo-org.1560.x6.nabble.com/Getting-warning-when-opening-NetCDF-file-using-gdal-tp5213484p5213534.html

Re: [gdal-dev] Getting warning when opening NetCDF file using gdal?

2015-06-30 Thread oz
Is there any possibility where I could retrieve all the files from my subscriptions in samoa.gsfc.nasa.gov ftp site? After a month all the files were removed. How can I get all those files back so that I could download it -- View this message in context:

Re: [gdal-dev] Getting warning when opening NetCDF file using gdal?

2015-06-30 Thread Michael Sumner
Or rename to .h5 which triggers the right driver in GDAL. It would be good if the format auto-detect could determine that the file was HDF5 instead ? On Tue, 30 Jun 2015 at 19:47 Anton Korosov anton.koro...@nersc.no wrote: You can use 'ncdump -h A2015069035500.L2_LAC_OC.nc' ncdump is not

Re: [gdal-dev] Getting warning when opening NetCDF file using gdal?

2015-06-30 Thread Michael Sumner
Also, the fully expanded path for SDS does work already: gdalinfo HDF5:A2015069000500.L2_LAC_OC.nc://geophysical_data/Kd_490 Cheers, Mike. On Tue, 30 Jun 2015 at 19:50 Michael Sumner mdsum...@gmail.com wrote: Or rename to .h5 which triggers the right driver in GDAL. It would be good if

Re: [gdal-dev] Getting warning when opening NetCDF file using gdal?

2015-06-30 Thread Joaquim Luis
Hi, I've not yet found time to upgrade to new flavor of Ocean Color nc files but if you are using the old nc format you may find Mirone extremely useful for this kind of manipulations. Have a look at this 2 short tutorials

Re: [gdal-dev] Getting warning when opening NetCDF file using gdal?

2015-06-30 Thread Anton Korosov
You can use 'ncdump -h A2015069035500.L2_LAC_OC.nc' ncdump is not part of gdal, but it will show you the contents of the dataset. In Python you can use netcdf4.Dataset to open HDF5 files. On 30/06/15 11:08, oz wrote: By specifying the chlor_a, it will just display all the info on chlor_a.