File tree 2 files changed +21
-8
lines changed
2 files changed +21
-8
lines changed Original file line number Diff line number Diff line change 2
2
3
3
from .Magics import * # noqa
4
4
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
244
244
elif isinstance (self .args [key ], list ) and len (self .args [key ]):
245
245
if isinstance (self .args [key ][0 ], str ):
246
246
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 )
247
252
else :
248
253
type = self .find_type (self .args [key ])
249
254
if type == "int" :
@@ -748,20 +753,28 @@ def wmscrs():
748
753
"e_lon" : 20026376.39 ,
749
754
"n_lat" : 20048966.10 ,
750
755
},
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
- },
758
756
{
759
757
"name" : "EPSG:32661" ,
760
758
"w_lon" : 1994055.62 ,
761
759
"s_lat" : 5405875.53 ,
762
760
"e_lon" : 2000969.46 ,
763
761
"n_lat" : 2555456.55 ,
764
762
},
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
+ },
765
778
],
766
779
"geographic_bounding_box" : {
767
780
"w_lon" : - 180.0 ,
You can’t perform that action at this time.
0 commit comments