For conic projection types only. Sets the parallels (tangent, secant) where the cone intersects the sphere. The 'parallels' property is an info array that may be specified as: * a list or tuple of 2 elements where: (0) The 'parallels[0]' pro
(self)
| 32 | |
| 33 | @property |
| 34 | def parallels(self): |
| 35 | """ |
| 36 | For conic projection types only. Sets the parallels (tangent, |
| 37 | secant) where the cone intersects the sphere. |
| 38 | |
| 39 | The 'parallels' property is an info array that may be specified as: |
| 40 | |
| 41 | * a list or tuple of 2 elements where: |
| 42 | (0) The 'parallels[0]' property is a number and may be specified as: |
| 43 | - An int or float |
| 44 | (1) The 'parallels[1]' property is a number and may be specified as: |
| 45 | - An int or float |
| 46 | |
| 47 | Returns |
| 48 | ------- |
| 49 | list |
| 50 | """ |
| 51 | return self["parallels"] |
| 52 | |
| 53 | @parallels.setter |
| 54 | def parallels(self, val): |
no outgoing calls
no test coverage detected