Skip to content
Snippets Groups Projects
Commit b241fa4a authored by Otmane Lahlou's avatar Otmane Lahlou
Browse files

ENH : expose the ###SRID method in the GenericRSResampler class

parent cdca6237
No related branches found
No related tags found
No related merge requests found
...@@ -191,6 +191,19 @@ public: ...@@ -191,6 +191,19 @@ public:
{ {
return m_Transform->GetInputKeywordList(); return m_Transform->GetInputKeywordList();
} }
/** Set the input SRID to get the input projection ref */
void SetInputSRID(int srid)
{
m_Transform->SetOutputSRID(srid);
this->Modified();
}
/** Set the output srid to get the output projection ref*/
void SetOutputSRID(int srid)
{
m_Transform->SetInputSRID(srid);
this->Modified();
}
/** Set/Get the DEMDirectory*/ /** Set/Get the DEMDirectory*/
void SetDEMDirectory(const std::string& dem) void SetDEMDirectory(const std::string& dem)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment