We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 687b2c7 commit 72b6667Copy full SHA for 72b6667
src/mapnik_projection.cpp
@@ -106,8 +106,10 @@ void export_projection ()
106
.def ("params", make_function(&projection::params,
107
return_value_policy<copy_const_reference>()),
108
"Returns the PROJ string for this projection.\n")
109
- .def ("expanded",&projection::expanded,
110
- "normalize PROJ definition by expanding epsg:XXXX syntax\n")
+ .def ("definition",&projection::definition,
+ "Return projection definition\n")
111
+ .def ("description", &projection::description,
112
+ "Returns projection description")
113
.add_property ("geographic", &projection::is_geographic,
114
"This property is True if the projection is a geographic projection\n"
115
"(i.e. it uses lon/lat coordinates)\n")
0 commit comments