You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
377 B
13 lines
377 B
# Description: Check named pairs form of Region. |
|
# Status: ok |
|
# Output hash: cf4acbeb2da3156fe52f1f374d4dc83a1aa0ee129a8aa2b1975ec828dd23cabe |
|
@use "gmt" |
|
|
|
r=Region("10:30",-10.5,20.5,100); |
|
r1=Region(r,type="bbox"); |
|
r2=Region(r,type="global180"); |
|
r3=Region(r,ye=80.5); |
|
l=(xb=r.xb.n-0.5,(xe=20+r.xb.n-10,yb=-10),(ye="11:30:28")); |
|
rr=Region(l, type="bbox"); |
|
|
|
print(r,r1,r2,r3,rr);
|
|
|