[gdal-dev] Implementing write support for GDAL driver

2016-03-30 Thread jramm
Hi I am implementing a write driver for the Vertical Mapper/Northwood Grid format (NWT_GRD), which already has read support. I have attached a diff of what I have got so far. Needless to say, it is not complete or working :D. I'm looking for information on development, specifically: - Precisely

Re: [gdal-dev] Implementing write support for GDAL driver

2016-03-30 Thread Even Rouault
Le mercredi 30 mars 2016 17:17:11, jramm a écrit : > Hi > I am implementing a write driver for the Vertical Mapper/Northwood Grid > format (NWT_GRD), which already has read support. > I have attached a diff of what I have got so far. Needless to say, it is > not complete or working :D. > > I'm loo

Re: [gdal-dev] Implementing write support for GDAL driver

2016-03-30 Thread jramm
Thanks a lot Thats useful and encouraging! I have not implemented CreateCopy -. Ive not looked to closely at gdal_translate, but if CreateCopy is not available will it fall back on Create and the write methods or is this a likely cause of errors? From first impressions it looks like CreateCopy is n

Re: [gdal-dev] Implementing write support for GDAL driver

2016-03-30 Thread Even Rouault
Le mercredi 30 mars 2016 22:09:35, jramm a écrit : > Thanks a lot > Thats useful and encouraging! > I have not implemented CreateCopy -. Ive not looked to closely at > gdal_translate, but if CreateCopy is not available will it fall back on > Create and the write methods or is this a likely cause of