Ejemplo n.º 1
0
 def get_next(self):
     """
     Iterate the parameters and return them as a dictionary
     """
     O = AbstractContinuousParticle.get_next(self)
     O["particle_model"] = "sphere"
     return O
Ejemplo n.º 2
0
 def get_next(self):
     """
     Iterate the parameters and return them as a dictionary
     """
     O = AbstractContinuousParticle.get_next(self)
     O["particle_model"] = "sphere"
     return O
Ejemplo n.º 3
0
 def get_next(self):
     """
     Iterate the parameters and return them as a dictionary
     """
     O = AbstractContinuousParticle.get_next(self)
     O["particle_model"] = "spheroid"
     O["flattening"] = self._get_next_flattening()
     return O
Ejemplo n.º 4
0
 def get_next(self):
     """
     Iterate the parameters and return them as a dictionary
     """
     O = AbstractContinuousParticle.get_next(self)
     O["particle_model"] = "spheroid"
     O["flattening"] = self._get_next_flattening()
     return O
Ejemplo n.º 5
0
 def get_next(self):
     """
     Iterate the parameters and return them as a dictionary
     """
     O = AbstractContinuousParticle.get_next(self)
     O["particle_model"] = "map"
     O["geometry"] = self.geometry
     if self.geometry == "spheroid":
         O["flattening"] = self.flattening
     return O
Ejemplo n.º 6
0
 def get_next(self):
     """
     Iterate the parameters and return them as a dictionary
     """
     O = AbstractContinuousParticle.get_next(self)
     O["particle_model"] = "map"
     O["geometry"] = self.geometry
     if self.geometry == "spheroid":
         O["flattening"] = self.flattening
     return O