Getting parameters from SDF
How can I get parameters from the sdf from within a plugin? Specifically, I am trying to get the initial pose from a model. Based what I've seen in other code, I've tried something like
```
class ModelMovePath : public ModelPlugin
{
public: void Load(physics::ModelPtr _parent, sdf::ElementPtr _sdf)
{
// Store the pointer to the model
this->model = _parent;
string pose = _sdf->GetElement("pose");
```
But neither "pose" or "model" seem to be elements or parameters of the sdf.I looked at the sdf website, but am still having some trouble. Is there more detailed documentation anywhere on how to read parameters from sdf?