Return the name of this Spatial Reference.
(self)
| 195 | # #### Name & SRID properties #### |
| 196 | @property |
| 197 | def name(self): |
| 198 | "Return the name of this Spatial Reference." |
| 199 | if self.projected: |
| 200 | return self.attr_value("PROJCS") |
| 201 | elif self.geographic: |
| 202 | return self.attr_value("GEOGCS") |
| 203 | elif self.local: |
| 204 | return self.attr_value("LOCAL_CS") |
| 205 | else: |
| 206 | return None |
| 207 | |
| 208 | @property |
| 209 | def srid(self): |
nothing calls this directly
no test coverage detected