File tree Expand file tree Collapse file tree 2 files changed +21
-8
lines changed
Expand file tree Collapse file tree 2 files changed +21
-8
lines changed Original file line number Diff line number Diff line change 22
33from .Magics import * # noqa
44
5- __version__ = "1.5.7 "
5+ __version__ = "1.5.8 "
Original file line number Diff line number Diff line change @@ -244,6 +244,11 @@ def set(self): # noqa C901
244244 elif isinstance (self .args [key ], list ) and len (self .args [key ]):
245245 if isinstance (self .args [key ][0 ], str ):
246246 Magics .set1c (key , self .args [key ])
247+ elif isinstance (self .args [key ][0 ], dict ):
248+ np = []
249+ for p in self .args [key ]:
250+ np .append (json .dumps (p ))
251+ Magics .set1c (key , np )
247252 else :
248253 type = self .find_type (self .args [key ])
249254 if type == "int" :
@@ -748,20 +753,28 @@ def wmscrs():
748753 "e_lon" : 20026376.39 ,
749754 "n_lat" : 20048966.10 ,
750755 },
751- {
752- "name" : "EPSG:3857" ,
753- "w_lon" : - 20026376.39 ,
754- "s_lat" : - 20048966.10 ,
755- "e_lon" : 20026376.39 ,
756- "n_lat" : 20048966.10 ,
757- },
758756 {
759757 "name" : "EPSG:32661" ,
760758 "w_lon" : 1994055.62 ,
761759 "s_lat" : 5405875.53 ,
762760 "e_lon" : 2000969.46 ,
763761 "n_lat" : 2555456.55 ,
764762 },
763+ {
764+ "name" : "EPSG:32762" ,
765+ "w_lon" : 1999030.54 ,
766+ "s_lat" : 1444543.45 ,
767+ "e_lon" : 2005944.38 ,
768+ "n_lat" : - 1405875.53 ,
769+ },
770+ { # 1896628.62,1507846.05,4662111.45,6829874.45
771+ # 1896628.62,1507846.05,4662111.45,6829874.45
772+ "name" : "EPSG:3035" ,
773+ "w_lon" : 1896628.62 ,
774+ "s_lat" : 1507846.05 ,
775+ "e_lon" : 4662111.45 ,
776+ "n_lat" : 6829874.45 ,
777+ },
765778 ],
766779 "geographic_bounding_box" : {
767780 "w_lon" : - 180.0 ,
You can’t perform that action at this time.
0 commit comments