示例#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