예제 #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
예제 #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
예제 #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
예제 #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
예제 #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
예제 #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