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"
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
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;
}
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-