Re: [gdal-dev] how to use docs?

2010-04-26 Thread Lucena, Ivan
Hi Randy, The GDAL docs that you created with "make docs" is basically a copy of what you have on gdal.org in html format generated by Doxygen. You can also run "make man" and "make install-man" if that helps. Regards, Ivan Randy wrote: > Hi list, > This maybe a bad question. > I "make docs"

Re: [gdal-dev] how to compare two OGRSpatialReference is same?

2010-04-26 Thread jerome
Some metadata are different, but it is the same coordinate system. The IsSame function may compare the OGRSpatialReference and not the specific coordinate system data. So the solution to this problem may be to test a conversion between the two coordinate systems AND verify that coordinates don't

[gdal-dev] how to compare two OGRSpatialReference is same?

2010-04-26 Thread atubar
Hello, I write some code below to compare OGRSpatialReference, bool CompareWktIsUniform(const char* pszWkt1, const char* pszWkt2) { OGRSpatialReference SR1(pszWkt1); OGRSpatialReference SR2(pszWkt2); int IsSame = SR1.IsSame(&SR2); if (IsSame == TRUE) return true; else return false; }

[gdal-dev] how to use docs?

2010-04-26 Thread Randy
Hi list, This maybe a bad question. I "make docs" and "make install docs" after installing GDAL, but then how should I use this docs file and query functions? I thought Devhelp could help me but nothing appeared on devhelp. Best regards, Randy ___ gdal-