Init2
This commit is contained in:
parent
a0f0371126
commit
7f3ae182e1
76 changed files with 76901 additions and 0 deletions
4
bench/performance_healpix_mask.txt
Normal file
4
bench/performance_healpix_mask.txt
Normal file
|
@ -0,0 +1,4 @@
|
|||
s5 16 22.583
|
||||
s5 32 92.59
|
||||
s5 64 644.
|
||||
s9 256 9334.
|
21
bench/time_estimate.py
Normal file
21
bench/time_estimate.py
Normal file
|
@ -0,0 +1,21 @@
|
|||
import numpy as np
|
||||
|
||||
def compute_time(Nside_query):
|
||||
a = np.genfromtxt("./performance_healpix_mask.txt", dtype=[("type","S3"),("Nside", "i"),("cpu","f")])
|
||||
|
||||
la = np.log10(a['Nside'])
|
||||
lb = np.log10(a['cpu'])
|
||||
|
||||
da = (la - np.average(la))
|
||||
db = (lb - np.average(lb))
|
||||
|
||||
Slope = (da*db).sum()/(da**2).sum()
|
||||
Ofs = np.average(lb) - Slope*np.average(la)
|
||||
|
||||
TimeGot = 10**(np.log10(Nside_query)*Slope+Ofs)
|
||||
|
||||
print "Nside=%d -> Time= %lg hours" % (Nside_query, TimeGot/3600.)
|
||||
|
||||
|
||||
compute_time(512)
|
||||
compute_time(1024)
|
224
masks/2df100k/2df100k.sh
Executable file
224
masks/2df100k/2df100k.sh
Executable file
|
@ -0,0 +1,224 @@
|
|||
#! /bin/sh
|
||||
|
||||
#script to create the angular mask for the 100k release of the 2dF Redshift Survey
|
||||
#see http://www.mso.anu.edu.au/2dFGRS/ for more about the survey.
|
||||
#USAGE: 2df100k.sh
|
||||
|
||||
if [ "$MANGLEBINDIR" = "" ] ; then
|
||||
MANGLEBINDIR="../../bin"
|
||||
fi
|
||||
if [ "$MANGLESCRIPTSDIR" = "" ] ; then
|
||||
MANGLESCRIPTSDIR="../../scripts"
|
||||
fi
|
||||
if [ "$MANGLEDATADIR" = "" ] ; then
|
||||
MANGLEDATADIR="../../masks"
|
||||
fi
|
||||
|
||||
user=`whoami`
|
||||
names=`finger $user | fgrep "ame:" | sed 's/.*: *\([^ ]*\)[^:]*/\1/'`
|
||||
for name in ${names}; do break; done
|
||||
echo "Hello $name, watch me make the angular mask for the 2dF 100k survey."
|
||||
|
||||
#to pixelize dynamically
|
||||
#pix=
|
||||
#restag=
|
||||
#to pixelize everything to fixed resolution
|
||||
scheme="s"
|
||||
res=4
|
||||
pix="-P${scheme}0,${res}"
|
||||
restag="_res${res}${scheme}"
|
||||
|
||||
# to make verbose
|
||||
quiet=
|
||||
# to make quiet
|
||||
#quiet=-q
|
||||
|
||||
# snap tolerances
|
||||
snaptols="-a2 -b2 -t2"
|
||||
|
||||
#multiple intersection tolerance
|
||||
mtol="-m1e-5"
|
||||
|
||||
# maximum harmonic number
|
||||
lmax=20
|
||||
|
||||
# North
|
||||
|
||||
if [ -z "$quiet" ]; then
|
||||
echo "===========================================";
|
||||
echo " NORTH ";
|
||||
fi
|
||||
|
||||
# name of output file to contain 2dF 100k North polygons
|
||||
npol="2df100k_north${restag}.pol"
|
||||
|
||||
# -vo says to use old polygon ids, which are field numbers
|
||||
echo "$MANGLEBINDIR/pixelize $quiet $mtol $pix -vo ngp_fields.dat jnfp"
|
||||
$MANGLEBINDIR/pixelize $quiet $mtol $pix -vo ngp_fields.dat jnfp || exit
|
||||
echo "$MANGLEBINDIR/pixelize $quiet $mtol $pix -vo ngpholes.dat jnhp"
|
||||
$MANGLEBINDIR/pixelize $quiet $mtol $pix -vo ngpholes.dat jnhp || exit
|
||||
echo "$MANGLEBINDIR/pixelize $quiet $mtol $pix -vo centres.ngp jncp"
|
||||
$MANGLEBINDIR/pixelize $quiet $mtol $pix -vo centres.ngp jncp || exit
|
||||
echo "$MANGLEBINDIR/snap $quiet $snaptols $mtol -vo jnfp jnf"
|
||||
$MANGLEBINDIR/snap $quiet $snaptols $mtol -vo jnfp jnf || exit
|
||||
echo "$MANGLEBINDIR/snap $quiet $snaptols $mtol -vo jnhp jnh"
|
||||
$MANGLEBINDIR/snap $quiet $snaptols $mtol -vo jnhp jnh || exit
|
||||
echo "$MANGLEBINDIR/snap $quiet $snaptols $mtol -vo jncp jnc"
|
||||
$MANGLEBINDIR/snap $quiet $snaptols $mtol -vo jncp jnc || exit
|
||||
# -n intersects holes with their parent fields
|
||||
echo "$MANGLEBINDIR/poly2poly $quiet $mtol -n jnh jnf jnhf"
|
||||
$MANGLEBINDIR/poly2poly $quiet $mtol -n jnh jnf jnhf || exit
|
||||
echo "$MANGLEBINDIR/balkanize $quiet $mtol jnc jnhf jnb"
|
||||
$MANGLEBINDIR/balkanize $quiet $mtol jnc jnhf jnb || exit
|
||||
echo "$MANGLEBINDIR/weight $quiet $mtol -z2dF100k jnb jnw"
|
||||
$MANGLEBINDIR/weight $quiet $mtol -z2dF100k jnb jnw || exit
|
||||
echo "$MANGLEBINDIR/unify $quiet $mtol jnw $npol"
|
||||
$MANGLEBINDIR/unify $quiet $mtol jnw $npol || exit
|
||||
echo "Polygons for 2dF 100k North are in $npol"
|
||||
|
||||
# South
|
||||
|
||||
if [ -z "$quiet" ]; then
|
||||
echo "===========================================";
|
||||
echo " SOUTH ";
|
||||
fi
|
||||
|
||||
# name of output file to contain 2dF 100k South polygons
|
||||
spol="2df100k_south${restag}.pol"
|
||||
|
||||
# -vo says to use old polygon ids, which are field numbers
|
||||
echo "$MANGLEBINDIR/pixelize $quiet $mtol $pix -vo sgp_fields.dat jsfp"
|
||||
$MANGLEBINDIR/pixelize $quiet $mtol $pix -vo sgp_fields.dat jsfp || exit
|
||||
echo "$MANGLEBINDIR/pixelize $quiet $mtol $pix -vo sgpholes.dat jshp"
|
||||
$MANGLEBINDIR/pixelize $quiet $mtol $pix -vo sgpholes.dat jshp || exit
|
||||
echo "$MANGLEBINDIR/pixelize $quiet $mtol $pix -vo centres.sgp jscp"
|
||||
$MANGLEBINDIR/pixelize $quiet $mtol $pix -vo centres.sgp jscp || exit
|
||||
echo "$MANGLEBINDIR/pixelize $quiet $mtol $pix -vo centres.ran jrcp"
|
||||
$MANGLEBINDIR/pixelize $quiet $mtol $pix -vo centres.ran jrcp || exit
|
||||
echo "$MANGLEBINDIR/snap $quiet $snaptols $mtol -vo jsfp jsf"
|
||||
$MANGLEBINDIR/snap $quiet $snaptols $mtol -vo jsfp jsf || exit
|
||||
echo "$MANGLEBINDIR/snap $quiet $snaptols $mtol -vo jshp jsh"
|
||||
$MANGLEBINDIR/snap $quiet $snaptols $mtol -vo jshp jsh || exit
|
||||
echo "$MANGLEBINDIR/snap $quiet $snaptols $mtol -vo jscp jsc"
|
||||
$MANGLEBINDIR/snap $quiet $snaptols $mtol -vo jscp jsc || exit
|
||||
echo "$MANGLEBINDIR/snap $quiet $snaptols $mtol -vo jrcp jrc"
|
||||
$MANGLEBINDIR/snap $quiet $snaptols $mtol -vo jrcp jrc || exit
|
||||
# -n intersects holes with their parent fields
|
||||
echo "$MANGLEBINDIR/poly2poly $quiet $mtol -n jsh jsf jshf"
|
||||
$MANGLEBINDIR/poly2poly $quiet $mtol -n jsh jsf jshf || exit
|
||||
echo "$MANGLEBINDIR/balkanize $quiet $mtol centres.sgp centres.ran jshf jsb"
|
||||
$MANGLEBINDIR/balkanize $quiet $mtol jsc jrc jshf jsb || exit
|
||||
echo "$MANGLEBINDIR/weight $quiet $mtol -z2dF100k jsb jsw"
|
||||
$MANGLEBINDIR/weight $quiet $mtol -z2dF100k jsb jsw || exit
|
||||
echo "$MANGLEBINDIR/unify $quiet $mtol jsw $spol"
|
||||
$MANGLEBINDIR/unify $quiet $mtol jsw $spol || exit
|
||||
echo "Polygons for 2dF 100k South are in $spol"
|
||||
|
||||
# Harmonics
|
||||
|
||||
if [ -z "$quiet" ]; then
|
||||
echo "===========================================";
|
||||
echo " THE WORLD ";
|
||||
fi
|
||||
|
||||
# name of output file to contain harmonics
|
||||
wlm="2df100k${restag}.wlm"
|
||||
|
||||
echo "$MANGLEBINDIR/harmonize $quiet $mtol -l$lmax $npol $spol $wlm"
|
||||
$MANGLEBINDIR/harmonize $quiet $mtol -l$lmax $npol $spol $wlm || exit
|
||||
echo "Harmonics for 2dF 100k mask up to l = $lmax are in $wlm"
|
||||
|
||||
# Map
|
||||
|
||||
# name of output file to contain map
|
||||
map="2df100k${restag}.map"
|
||||
|
||||
echo "$MANGLEBINDIR/map $quiet -w$wlm azel.dat $map"
|
||||
$MANGLEBINDIR/map $quiet -w$wlm azel.dat $map || exit
|
||||
echo "Map of 2dF 100k mask up to l = $lmax is in $map"
|
||||
|
||||
# Vertices
|
||||
|
||||
# name of output file to contain vertices
|
||||
vert="2df100k${restag}.vrt"
|
||||
|
||||
echo "$MANGLEBINDIR/poly2poly -ov $mtol $quiet $npol $spol $vert"
|
||||
$MANGLEBINDIR/poly2poly -ov $quiet $mtol $npol $spol $vert || exit
|
||||
echo "Vertices of 2dF 100k mask are in $vert"
|
||||
|
||||
# Graphics
|
||||
|
||||
# name of output file to contain graphics
|
||||
grph="2df100k${restag}.grph"
|
||||
|
||||
# number of points per (2 pi) along each edge of a polygon
|
||||
pts_per_twopi=30
|
||||
|
||||
echo "$MANGLEBINDIR/poly2poly -og$pts_per_twopi $quiet $mtol $npol $spol $grph"
|
||||
$MANGLEBINDIR/poly2poly -og$pts_per_twopi $quiet $mtol $npol $spol $grph || exit
|
||||
echo "Data suitable for plotting polygons of the 2dF 100k mask are in $grph:"
|
||||
echo "each line is a sequence of az, el points delineating the perimeter of a polygon."
|
||||
|
||||
# for plotting with the matlab script
|
||||
|
||||
eps="2df100k${restag}.eps"
|
||||
neps="2df100k_north${restag}.eps"
|
||||
seps="2df100k_south${restag}.eps"
|
||||
|
||||
if which matlab >/dev/null 2>&1 ; then
|
||||
# name of output file to contain matlab graphics
|
||||
list="2df100k${restag}.list"
|
||||
|
||||
echo "$MANGLEBINDIR/poly2poly -ol$pts_per_twopi $quiet $npol $spol $list"
|
||||
$MANGLEBINDIR/poly2poly -ol$pts_per_twopi $quiet $mtol $npol $spol $list || exit
|
||||
echo "Data for plotting polygons of the 2dF 100k mask in Matlab are in $list."
|
||||
echo "Using Matlab to plot the 2dF 100k mask ..."
|
||||
$MANGLESCRIPTSDIR/graphmask.sh $list $eps 0 0 0 0 "Completeness mask for 2dF 100k"
|
||||
if [ $? -eq 0 ]; then
|
||||
$MANGLESCRIPTSDIR/graphmask.sh $list $neps 145 223 -7 6 "Completeness mask for 2dF 100k north"
|
||||
$MANGLESCRIPTSDIR/graphmask.sh $list $seps -50 81 -52 -7 "Completeness mask for 2dF 100k south"
|
||||
echo "Made figures illustrating the 2dF 100k mask:"
|
||||
echo "$eps, $neps, $seps"
|
||||
echo "Type \"ggv $eps\" or \"gv $eps\" to view the figures."
|
||||
elif which sm >/dev/null 2>&1 ; then
|
||||
echo "Using Supermongo to plot the 2dF 100k mask:"
|
||||
$MANGLESCRIPTSDIR/graphmasksm.sh $grph $eps 0 0 0 0 "Completeness mask for 2dF 100k"
|
||||
if [ $? -eq 0 ]; then
|
||||
echo "Made a figure illustrating the 2dF 100k mask: $eps"
|
||||
echo "Type \"ggv $eps\" or \"gv $eps\" to view the figure."
|
||||
echo "A script is also available to plot mangle files Matlab (with the mapping toolbox),"
|
||||
echo "or you can plot $grph using your own favorite plotting tool."
|
||||
fi
|
||||
else
|
||||
echo "Scripts are available for plotting mangle polygons in Matlab"
|
||||
echo "(with the mapping toolbox) or Supermongo, or you can plot $grph"
|
||||
echo "using your own favorite plotting tool."
|
||||
fi
|
||||
elif which sm >/dev/null 2>&1 ; then
|
||||
echo "Using Supermongo to plot the 2dF 100k mask:"
|
||||
$MANGLESCRIPTSDIR/graphmasksm.sh $grph $eps 0 0 0 0 "Completeness mask for 2dF 100k"
|
||||
if [ $? -eq 0 ]; then
|
||||
echo "Made a figure illustrating the 2dF 100k mask: $eps"
|
||||
echo "Type \"ggv $eps\" or \"gv $eps\" to view the figure."
|
||||
echo "A script is also available to plot mangle files Matlab (with the mapping toolbox),"
|
||||
echo "or you can plot $grph using your own favorite plotting tool."
|
||||
fi
|
||||
else
|
||||
echo "Scripts are available for plotting mangle polygons in Matlab"
|
||||
echo "(with the mapping toolbox) or Supermongo, or you can plot $grph"
|
||||
echo "using your own favorite plotting tool."
|
||||
fi
|
||||
|
||||
# remove temporary files
|
||||
rm j[nsr]*
|
||||
|
||||
if [ -z "$quiet" ]; then
|
||||
echo "===========================================";
|
||||
echo "the universe?"
|
||||
fi
|
||||
|
||||
if [ "$quiet" ]; then
|
||||
echo ""
|
||||
echo "If you'd like to repeat that with the sound on,"
|
||||
echo "please turn off the quiet button in 2df100k.sh and try again."
|
||||
fi
|
24
masks/2df100k/README
Normal file
24
masks/2df100k/README
Normal file
|
@ -0,0 +1,24 @@
|
|||
At the command line, type
|
||||
2df100k.sh
|
||||
and find out what happens.
|
||||
|
||||
You should be aware that Intel and Sun chips have different endianness.
|
||||
If your system is having a problem reading unformatted fortran files
|
||||
maglim.ngp.dat
|
||||
maglim.ran.dat
|
||||
maglim.sgp.dat
|
||||
mask.ngp.dat
|
||||
mask.ran.dat
|
||||
mask.sgp.dat
|
||||
it's probably an endianness problem.
|
||||
Read HELP.unformatted in the mangle directory.
|
||||
|
||||
Alternatively, you can use the formatted versions of these files
|
||||
maglim.ngp.dat.fmt
|
||||
maglim.ran.dat.fmt
|
||||
maglim.sgp.dat.fmt
|
||||
mask.ngp.dat.fmt
|
||||
mask.ran.dat.fmt
|
||||
mask.sgp.dat.fmt
|
||||
which are available online at
|
||||
http://space.mit.edu/home/tegmark/mangle/download/data.html
|
1
masks/2df100k/azel.dat
Symbolic link
1
masks/2df100k/azel.dat
Symbolic link
|
@ -0,0 +1 @@
|
|||
../2qz10k/azel.dat
|
903
masks/2df100k/centres.ngp
Normal file
903
masks/2df100k/centres.ngp
Normal file
|
@ -0,0 +1,903 @@
|
|||
unit h
|
||||
skip 39
|
||||
RA & Dec (B1950) hh mm ss.ss -dd mm ss.s d
|
||||
circle 001 1
|
||||
180.0663 -6.7998 ngp.config.001.fld 12 0 15.91 -06 47 59.2 1
|
||||
circle 002 1
|
||||
180.8093 -6.7998 ngp.config.002.fld 12 3 14.23 -06 47 59.2 1
|
||||
circle 003 1
|
||||
182.4329 -6.7998 ngp.config.003.fld 12 9 43.90 -06 47 59.2 1
|
||||
circle 004 1
|
||||
182.7433 -6.7998 ngp.config.004.fld 12 10 58.40 -06 47 59.2 1
|
||||
circle 005 1
|
||||
183.8314 -6.7998 ngp.config.005.fld 12 15 19.54 -06 47 59.2 1
|
||||
circle 006 1
|
||||
185.0752 -6.7998 ngp.config.006.fld 12 20 18.04 -06 47 59.2 1
|
||||
circle 007 1
|
||||
186.8036 -6.7998 ngp.config.007.fld 12 27 12.86 -06 47 59.2 1
|
||||
circle 008 1
|
||||
187.7907 -6.7998 ngp.config.008.fld 12 31 9.77 -06 47 59.2 1
|
||||
circle 009 1
|
||||
189.0231 -6.7998 ngp.config.009.fld 12 36 5.55 -06 47 59.2 1
|
||||
circle 010 1
|
||||
189.8960 -6.7998 ngp.config.010.fld 12 39 35.03 -06 47 59.2 1
|
||||
circle 011 1
|
||||
191.4805 -6.7998 ngp.config.011.fld 12 45 55.33 -06 47 59.2 1
|
||||
circle 012 1
|
||||
192.4258 -6.7998 ngp.config.012.fld 12 49 42.20 -06 47 59.2 1
|
||||
circle 013 1
|
||||
193.2832 -6.7998 ngp.config.013.fld 12 53 7.97 -06 47 59.2 1
|
||||
circle 014 1
|
||||
194.1439 -6.7998 ngp.config.014.fld 12 56 34.54 -06 47 59.2 1
|
||||
circle 015 1
|
||||
195.1045 -6.7998 ngp.config.015.fld 13 0 25.09 -06 47 59.2 1
|
||||
circle 016 1
|
||||
196.8206 -6.7998 ngp.config.016.fld 13 7 16.94 -06 47 59.2 1
|
||||
circle 017 1
|
||||
197.2255 -6.7998 ngp.config.017.fld 13 8 54.13 -06 47 59.2 1
|
||||
circle 018 1
|
||||
198.8893 -6.7998 ngp.config.018.fld 13 15 33.43 -06 47 59.2 1
|
||||
circle 019 1
|
||||
200.6166 -6.7998 ngp.config.019.fld 13 22 27.98 -06 47 59.2 1
|
||||
circle 020 1
|
||||
202.3413 -6.7998 ngp.config.020.fld 13 29 21.92 -06 47 59.2 1
|
||||
circle 021 1
|
||||
203.9454 -6.7998 ngp.config.021.fld 13 35 46.89 -06 47 59.2 1
|
||||
circle 022 1
|
||||
205.4266 -6.7998 ngp.config.022.fld 13 41 42.39 -06 47 59.2 1
|
||||
circle 023 1
|
||||
206.8027 -6.7998 ngp.config.023.fld 13 47 12.64 -06 47 59.2 1
|
||||
circle 024 1
|
||||
208.1004 -6.7998 ngp.config.024.fld 13 52 24.10 -06 47 59.2 1
|
||||
circle 025 1
|
||||
209.4481 -6.7998 ngp.config.025.fld 13 57 47.55 -06 47 59.2 1
|
||||
circle 026 1
|
||||
211.1550 -6.7998 ngp.config.026.fld 14 4 37.21 -06 47 59.2 1
|
||||
circle 027 1
|
||||
212.4390 -6.7998 ngp.config.027.fld 14 9 45.37 -06 47 59.2 1
|
||||
circle 028 1
|
||||
213.8208 -6.7998 ngp.config.028.fld 14 15 17.00 -06 47 59.2 1
|
||||
circle 029 1
|
||||
215.3407 -6.7998 ngp.config.029.fld 14 21 21.77 -06 47 59.2 1
|
||||
circle 030 1
|
||||
217.0685 -6.7998 ngp.config.030.fld 14 28 16.43 -06 47 59.2 1
|
||||
circle 031 1
|
||||
218.6557 -6.7998 ngp.config.031.fld 14 34 37.37 -06 47 59.2 1
|
||||
circle 032 1
|
||||
220.3090 -6.7998 ngp.config.032.fld 14 41 14.16 -06 47 59.2 1
|
||||
circle 033 1
|
||||
222.0418 -6.7998 ngp.config.033.fld 14 48 10.04 -06 47 59.2 1
|
||||
circle 034 1
|
||||
147.6922 -6.7998 ngp.config.034.fld 9 50 46.13 -06 47 59.2 1
|
||||
circle 035 1
|
||||
148.7244 -6.7998 ngp.config.035.fld 9 54 53.86 -06 47 59.2 1
|
||||
circle 036 1
|
||||
149.9539 -6.7998 ngp.config.036.fld 9 59 48.94 -06 47 59.2 1
|
||||
circle 037 1
|
||||
151.3021 -6.7998 ngp.config.037.fld 10 5 12.50 -06 47 59.2 1
|
||||
circle 038 1
|
||||
152.6805 -6.7998 ngp.config.038.fld 10 10 43.31 -06 47 59.2 1
|
||||
circle 039 1
|
||||
153.6468 -6.7998 ngp.config.039.fld 10 14 35.23 -06 47 59.2 1
|
||||
circle 040 1
|
||||
154.9466 -6.7998 ngp.config.040.fld 10 19 47.19 -06 47 59.2 1
|
||||
circle 041 1
|
||||
156.6475 -6.7998 ngp.config.041.fld 10 26 35.41 -06 47 59.2 1
|
||||
circle 042 1
|
||||
157.6584 -6.7998 ngp.config.042.fld 10 30 38.02 -06 47 59.2 1
|
||||
circle 043 1
|
||||
159.0954 -6.7998 ngp.config.043.fld 10 36 22.89 -06 47 59.2 1
|
||||
circle 044 1
|
||||
160.6192 -6.7998 ngp.config.044.fld 10 42 28.62 -06 47 59.2 1
|
||||
circle 045 1
|
||||
162.0950 -6.7998 ngp.config.045.fld 10 48 22.80 -06 47 59.2 1
|
||||
circle 046 1
|
||||
162.8355 -6.7998 ngp.config.046.fld 10 51 20.53 -06 47 59.2 1
|
||||
circle 047 1
|
||||
163.8803 -6.7998 ngp.config.047.fld 10 55 31.27 -06 47 59.2 1
|
||||
circle 048 1
|
||||
165.3735 -6.7998 ngp.config.048.fld 11 1 29.65 -06 47 59.2 1
|
||||
circle 049 1
|
||||
166.7316 -6.7998 ngp.config.049.fld 11 6 55.58 -06 47 59.2 1
|
||||
circle 050 1
|
||||
168.2049 -6.7998 ngp.config.050.fld 11 12 49.18 -06 47 59.2 1
|
||||
circle 051 1
|
||||
169.9333 -6.7998 ngp.config.051.fld 11 19 44.00 -06 47 59.2 1
|
||||
circle 052 1
|
||||
171.6620 -6.7998 ngp.config.052.fld 11 26 38.87 -06 47 59.2 1
|
||||
circle 053 1
|
||||
172.7138 -6.7998 ngp.config.053.fld 11 30 51.32 -06 47 59.2 1
|
||||
circle 054 1
|
||||
174.2111 -6.7998 ngp.config.054.fld 11 36 50.67 -06 47 59.2 1
|
||||
circle 055 1
|
||||
175.5603 -6.7998 ngp.config.055.fld 11 42 14.48 -06 47 59.2 1
|
||||
circle 056 1
|
||||
176.8865 -6.7998 ngp.config.056.fld 11 47 32.76 -06 47 59.2 1
|
||||
circle 057 1
|
||||
177.9039 -6.7998 ngp.config.057.fld 11 51 36.93 -06 47 59.2 1
|
||||
circle 058 1
|
||||
178.8657 -6.7998 ngp.config.058.fld 11 55 27.77 -06 47 59.2 1
|
||||
circle 059 1
|
||||
180.5950 -6.7998 ngp.config.059.fld 12 2 22.79 -06 47 59.2 1
|
||||
circle 060 1
|
||||
179.9636 -5.2998 ngp.config.060.fld 11 59 51.27 -05 17 59.2 1
|
||||
circle 061 1
|
||||
181.6087 -5.2998 ngp.config.061.fld 12 6 26.08 -05 17 59.2 1
|
||||
circle 062 1
|
||||
182.3277 -5.2998 ngp.config.062.fld 12 9 18.65 -05 17 59.2 1
|
||||
circle 063 1
|
||||
183.1091 -5.2998 ngp.config.063.fld 12 12 26.18 -05 17 59.2 1
|
||||
circle 064 1
|
||||
184.2138 -5.2998 ngp.config.064.fld 12 16 51.31 -05 17 59.2 1
|
||||
circle 065 1
|
||||
185.9385 -5.2998 ngp.config.065.fld 12 23 45.24 -05 17 59.2 1
|
||||
circle 066 1
|
||||
187.2620 -5.2998 ngp.config.066.fld 12 29 2.89 -05 17 59.2 1
|
||||
circle 067 1
|
||||
188.5128 -5.2998 ngp.config.067.fld 12 34 3.07 -05 17 59.2 1
|
||||
circle 068 1
|
||||
189.5006 -5.2998 ngp.config.068.fld 12 38 0.15 -05 17 59.2 1
|
||||
circle 069 1
|
||||
190.0262 -5.2998 ngp.config.069.fld 12 40 6.30 -05 17 59.2 1
|
||||
circle 070 1
|
||||
191.0596 -5.2998 ngp.config.070.fld 12 44 14.30 -05 17 59.2 1
|
||||
circle 071 1
|
||||
192.3448 -5.2998 ngp.config.071.fld 12 49 22.75 -05 17 59.2 1
|
||||
circle 072 1
|
||||
193.6451 -5.2998 ngp.config.072.fld 12 54 34.82 -05 17 59.2 1
|
||||
circle 073 1
|
||||
194.7404 -5.2998 ngp.config.073.fld 12 58 57.69 -05 17 59.2 1
|
||||
circle 074 1
|
||||
195.9978 -5.2998 ngp.config.074.fld 13 3 59.46 -05 17 59.2 1
|
||||
circle 075 1
|
||||
196.8018 -5.2998 ngp.config.075.fld 13 7 12.43 -05 17 59.2 1
|
||||
circle 076 1
|
||||
198.5240 -5.2998 ngp.config.076.fld 13 14 5.75 -05 17 59.2 1
|
||||
circle 077 1
|
||||
200.2474 -5.2998 ngp.config.077.fld 13 20 59.38 -05 17 59.2 1
|
||||
circle 078 1
|
||||
201.9706 -5.2998 ngp.config.078.fld 13 27 52.95 -05 17 59.2 1
|
||||
circle 079 1
|
||||
203.4628 -5.2998 ngp.config.079.fld 13 33 51.08 -05 17 59.2 1
|
||||
circle 080 1
|
||||
205.1860 -5.2998 ngp.config.080.fld 13 40 44.63 -05 17 59.2 1
|
||||
circle 081 1
|
||||
206.9092 -5.2998 ngp.config.081.fld 13 47 38.21 -05 17 59.2 1
|
||||
circle 082 1
|
||||
208.6316 -5.2998 ngp.config.082.fld 13 54 31.59 -05 17 59.2 1
|
||||
circle 083 1
|
||||
210.0102 -5.2998 ngp.config.083.fld 14 0 2.44 -05 17 59.2 1
|
||||
circle 084 1
|
||||
211.4305 -5.2998 ngp.config.084.fld 14 5 43.32 -05 17 59.2 1
|
||||
circle 085 1
|
||||
212.9673 -5.2998 ngp.config.085.fld 14 11 52.15 -05 17 59.2 1
|
||||
circle 086 1
|
||||
214.1917 -5.2998 ngp.config.086.fld 14 16 46.00 -05 17 59.2 1
|
||||
circle 087 1
|
||||
215.9165 -5.2998 ngp.config.087.fld 14 23 39.97 -05 17 59.2 1
|
||||
circle 088 1
|
||||
217.6404 -5.2998 ngp.config.088.fld 14 30 33.70 -05 17 59.2 1
|
||||
circle 089 1
|
||||
219.3378 -5.2998 ngp.config.089.fld 14 37 21.06 -05 17 59.2 1
|
||||
circle 090 1
|
||||
220.8795 -5.2998 ngp.config.090.fld 14 43 31.09 -05 17 59.2 1
|
||||
circle 091 1
|
||||
222.6191 -5.2998 ngp.config.091.fld 14 50 28.59 -05 17 59.2 1
|
||||
circle 092 1
|
||||
147.8548 -5.2998 ngp.config.092.fld 9 51 25.16 -05 17 59.2 1
|
||||
circle 093 1
|
||||
149.1789 -5.2998 ngp.config.093.fld 9 56 42.93 -05 17 59.2 1
|
||||
circle 094 1
|
||||
150.2877 -5.2998 ngp.config.094.fld 10 1 9.05 -05 17 59.2 1
|
||||
circle 095 1
|
||||
151.1795 -5.2998 ngp.config.095.fld 10 4 43.09 -05 17 59.2 1
|
||||
circle 096 1
|
||||
152.1447 -5.2998 ngp.config.096.fld 10 8 34.72 -05 17 59.2 1
|
||||
circle 097 1
|
||||
153.5722 -5.2998 ngp.config.097.fld 10 14 17.32 -05 17 59.2 1
|
||||
circle 098 1
|
||||
154.4400 -5.2998 ngp.config.098.fld 10 17 45.60 -05 17 59.2 1
|
||||
circle 099 1
|
||||
155.9258 -5.2998 ngp.config.099.fld 10 23 42.18 -05 17 59.2 1
|
||||
circle 100 1
|
||||
157.3697 -5.2998 ngp.config.100.fld 10 29 28.73 -05 17 59.2 1
|
||||
circle 101 1
|
||||
158.7467 -5.2998 ngp.config.101.fld 10 34 59.21 -05 17 59.2 1
|
||||
circle 102 1
|
||||
160.1842 -5.2998 ngp.config.102.fld 10 40 44.20 -05 17 59.2 1
|
||||
circle 103 1
|
||||
161.8380 -5.2998 ngp.config.103.fld 10 47 21.11 -05 17 59.2 1
|
||||
circle 104 1
|
||||
162.6962 -5.2998 ngp.config.104.fld 10 50 47.10 -05 17 59.2 1
|
||||
circle 105 1
|
||||
164.0607 -5.2998 ngp.config.105.fld 10 56 14.58 -05 17 59.2 1
|
||||
circle 106 1
|
||||
165.4967 -5.2998 ngp.config.106.fld 11 1 59.21 -05 17 59.2 1
|
||||
circle 107 1
|
||||
166.8589 -5.2998 ngp.config.107.fld 11 7 26.13 -05 17 59.2 1
|
||||
circle 108 1
|
||||
168.0560 -5.2998 ngp.config.108.fld 11 12 13.45 -05 17 59.2 1
|
||||
circle 109 1
|
||||
169.1722 -5.2998 ngp.config.109.fld 11 16 41.32 -05 17 59.2 1
|
||||
circle 110 1
|
||||
170.5853 -5.2998 ngp.config.110.fld 11 22 20.48 -05 17 59.2 1
|
||||
circle 111 1
|
||||
171.6585 -5.2998 ngp.config.111.fld 11 26 38.04 -05 17 59.2 1
|
||||
circle 112 1
|
||||
172.8686 -5.2998 ngp.config.112.fld 11 31 28.46 -05 17 59.2 1
|
||||
circle 113 1
|
||||
174.3092 -5.2998 ngp.config.113.fld 11 37 14.20 -05 17 59.2 1
|
||||
circle 114 1
|
||||
175.4768 -5.2998 ngp.config.114.fld 11 41 54.44 -05 17 59.2 1
|
||||
circle 115 1
|
||||
176.6625 -5.2998 ngp.config.115.fld 11 46 39.00 -05 17 59.2 1
|
||||
circle 116 1
|
||||
177.4124 -5.2998 ngp.config.116.fld 11 49 38.98 -05 17 59.2 1
|
||||
circle 117 1
|
||||
179.1391 -5.2998 ngp.config.117.fld 11 56 33.38 -05 17 59.2 1
|
||||
circle 118 1
|
||||
180.8785 -5.2998 ngp.config.118.fld 12 3 30.85 -05 17 59.2 1
|
||||
circle 119 1
|
||||
179.4724 -3.7998 ngp.config.119.fld 11 57 53.38 -03 47 59.2 1
|
||||
circle 120 1
|
||||
180.6245 -3.7998 ngp.config.120.fld 12 2 29.89 -03 47 59.2 1
|
||||
circle 121 1
|
||||
182.3250 -3.7998 ngp.config.121.fld 12 9 18.01 -03 47 59.2 1
|
||||
circle 122 1
|
||||
183.1826 -3.7998 ngp.config.122.fld 12 12 43.83 -03 47 59.2 1
|
||||
circle 123 1
|
||||
184.4721 -3.7998 ngp.config.123.fld 12 17 53.30 -03 47 59.2 1
|
||||
circle 124 1
|
||||
185.9561 -3.7998 ngp.config.124.fld 12 23 49.47 -03 47 59.2 1
|
||||
circle 125 1
|
||||
187.4064 -3.7998 ngp.config.125.fld 12 29 37.54 -03 47 59.2 1
|
||||
circle 126 1
|
||||
188.3788 -3.7998 ngp.config.126.fld 12 33 30.91 -03 47 59.2 1
|
||||
circle 127 1
|
||||
189.3117 -3.7998 ngp.config.127.fld 12 37 14.80 -03 47 59.2 1
|
||||
circle 128 1
|
||||
190.5262 -3.7998 ngp.config.128.fld 12 42 6.28 -03 47 59.2 1
|
||||
circle 129 1
|
||||
192.0498 -3.7998 ngp.config.129.fld 12 48 11.96 -03 47 59.2 1
|
||||
circle 130 1
|
||||
192.8354 -3.7998 ngp.config.130.fld 12 51 20.50 -03 47 59.2 1
|
||||
circle 131 1
|
||||
193.9661 -3.7998 ngp.config.131.fld 12 55 51.86 -03 47 59.2 1
|
||||
circle 132 1
|
||||
194.3959 -3.7998 ngp.config.132.fld 12 57 35.01 -03 47 59.2 1
|
||||
circle 133 1
|
||||
195.7092 -3.7998 ngp.config.133.fld 13 2 50.20 -03 47 59.2 1
|
||||
circle 134 1
|
||||
196.8394 -3.7998 ngp.config.134.fld 13 7 21.45 -03 47 59.2 1
|
||||
circle 135 1
|
||||
198.4674 -3.7998 ngp.config.135.fld 13 13 52.17 -03 47 59.2 1
|
||||
circle 136 1
|
||||
199.8712 -3.7998 ngp.config.136.fld 13 19 29.09 -03 47 59.2 1
|
||||
circle 137 1
|
||||
201.1199 -3.7998 ngp.config.137.fld 13 24 28.78 -03 47 59.2 1
|
||||
circle 138 1
|
||||
202.4256 -3.7998 ngp.config.138.fld 13 29 42.14 -03 47 59.2 1
|
||||
circle 139 1
|
||||
204.0013 -3.7998 ngp.config.139.fld 13 36 0.30 -03 47 59.2 1
|
||||
circle 140 1
|
||||
205.7209 -3.7998 ngp.config.140.fld 13 42 53.02 -03 47 59.2 1
|
||||
circle 141 1
|
||||
207.4425 -3.7998 ngp.config.141.fld 13 49 46.21 -03 47 59.2 1
|
||||
circle 142 1
|
||||
209.1616 -3.7998 ngp.config.142.fld 13 56 38.78 -03 47 59.2 1
|
||||
circle 143 1
|
||||
210.5016 -3.7998 ngp.config.143.fld 14 2 0.39 -03 47 59.2 1
|
||||
circle 144 1
|
||||
212.0739 -3.7998 ngp.config.144.fld 14 8 17.74 -03 47 59.2 1
|
||||
circle 145 1
|
||||
213.3459 -3.7998 ngp.config.145.fld 14 13 23.02 -03 47 59.2 1
|
||||
circle 146 1
|
||||
215.0089 -3.7998 ngp.config.146.fld 14 20 2.13 -03 47 59.2 1
|
||||
circle 147 1
|
||||
216.7447 -3.7998 ngp.config.147.fld 14 26 58.73 -03 47 59.2 1
|
||||
circle 148 1
|
||||
218.4642 -3.7998 ngp.config.148.fld 14 33 51.41 -03 47 59.2 1
|
||||
circle 149 1
|
||||
220.1837 -3.7998 ngp.config.149.fld 14 40 44.09 -03 47 59.2 1
|
||||
circle 150 1
|
||||
221.6512 -3.7998 ngp.config.150.fld 14 46 36.30 -03 47 59.2 1
|
||||
circle 151 1
|
||||
223.3872 -3.7998 ngp.config.151.fld 14 53 32.93 -03 47 59.2 1
|
||||
circle 152 1
|
||||
148.0394 -3.7998 ngp.config.152.fld 9 52 9.45 -03 47 59.2 1
|
||||
circle 153 1
|
||||
149.1712 -3.7998 ngp.config.153.fld 9 56 41.09 -03 47 59.2 1
|
||||
circle 154 1
|
||||
150.4720 -3.7998 ngp.config.154.fld 10 1 53.28 -03 47 59.2 1
|
||||
circle 155 1
|
||||
151.9610 -3.7998 ngp.config.155.fld 10 7 50.64 -03 47 59.2 1
|
||||
circle 156 1
|
||||
153.4498 -3.7998 ngp.config.156.fld 10 13 47.94 -03 47 59.2 1
|
||||
circle 157 1
|
||||
154.5330 -3.7998 ngp.config.157.fld 10 18 7.93 -03 47 59.2 1
|
||||
circle 158 1
|
||||
156.2379 -3.7998 ngp.config.158.fld 10 24 57.09 -03 47 59.2 1
|
||||
circle 159 1
|
||||
157.9569 -3.7998 ngp.config.159.fld 10 31 49.65 -03 47 59.2 1
|
||||
circle 160 1
|
||||
159.2338 -3.7998 ngp.config.160.fld 10 36 56.11 -03 47 59.2 1
|
||||
circle 161 1
|
||||
160.4282 -3.7998 ngp.config.161.fld 10 41 42.77 -03 47 59.2 1
|
||||
circle 162 1
|
||||
161.8942 -3.7998 ngp.config.162.fld 10 47 34.60 -03 47 59.2 1
|
||||
circle 163 1
|
||||
162.7431 -3.7998 ngp.config.163.fld 10 50 58.34 -03 47 59.2 1
|
||||
circle 164 1
|
||||
164.3869 -3.7998 ngp.config.164.fld 10 57 32.86 -03 47 59.2 1
|
||||
circle 165 1
|
||||
165.6858 -3.7998 ngp.config.165.fld 11 2 44.60 -03 47 59.2 1
|
||||
circle 166 1
|
||||
167.0790 -3.7998 ngp.config.166.fld 11 8 18.96 -03 47 59.2 1
|
||||
circle 167 1
|
||||
167.7439 -3.7998 ngp.config.167.fld 11 10 58.54 -03 47 59.2 1
|
||||
circle 168 1
|
||||
168.6947 -3.7998 ngp.config.168.fld 11 14 46.73 -03 47 59.2 1
|
||||
circle 169 1
|
||||
169.9366 -3.7998 ngp.config.169.fld 11 19 44.78 -03 47 59.2 1
|
||||
circle 170 1
|
||||
171.4387 -3.7998 ngp.config.170.fld 11 25 45.29 -03 47 59.2 1
|
||||
circle 171 1
|
||||
172.5892 -3.7998 ngp.config.171.fld 11 30 21.41 -03 47 59.2 1
|
||||
circle 172 1
|
||||
173.2705 -3.7998 ngp.config.172.fld 11 33 4.93 -03 47 59.2 1
|
||||
circle 173 1
|
||||
174.5289 -3.7998 ngp.config.173.fld 11 38 6.93 -03 47 59.2 1
|
||||
circle 174 1
|
||||
175.6478 -3.7998 ngp.config.174.fld 11 42 35.46 -03 47 59.2 1
|
||||
circle 175 1
|
||||
177.2273 -3.7998 ngp.config.175.fld 11 48 54.55 -03 47 59.2 1
|
||||
circle 176 1
|
||||
178.0311 -3.7998 ngp.config.176.fld 11 52 7.46 -03 47 59.2 1
|
||||
circle 177 1
|
||||
179.7448 -3.7998 ngp.config.177.fld 11 58 58.74 -03 47 59.2 1
|
||||
circle 178 1
|
||||
179.6763 -2.2998 ngp.config.178.fld 11 58 42.31 -02 17 59.2 1
|
||||
circle 179 1
|
||||
181.1478 -2.2998 ngp.config.179.fld 12 4 35.46 -02 17 59.2 1
|
||||
circle 180 1
|
||||
182.6107 -2.2998 ngp.config.180.fld 12 10 26.56 -02 17 59.2 1
|
||||
circle 181 1
|
||||
183.9147 -2.2998 ngp.config.181.fld 12 15 39.52 -02 17 59.2 1
|
||||
circle 182 1
|
||||
184.9857 -2.2998 ngp.config.182.fld 12 19 56.56 -02 17 59.2 1
|
||||
circle 183 1
|
||||
186.2807 -2.2998 ngp.config.183.fld 12 25 7.38 -02 17 59.2 1
|
||||
circle 184 1
|
||||
187.4638 -2.2998 ngp.config.184.fld 12 29 51.32 -02 17 59.2 1
|
||||
circle 185 1
|
||||
188.6960 -2.2998 ngp.config.185.fld 12 34 47.03 -02 17 59.2 1
|
||||
circle 186 1
|
||||
189.7308 -2.2998 ngp.config.186.fld 12 38 55.39 -02 17 59.2 1
|
||||
circle 187 1
|
||||
190.8215 -2.2998 ngp.config.187.fld 12 43 17.17 -02 17 59.2 1
|
||||
circle 188 1
|
||||
191.8479 -2.2998 ngp.config.188.fld 12 47 23.50 -02 17 59.2 1
|
||||
circle 189 1
|
||||
192.9612 -2.2998 ngp.config.189.fld 12 51 50.69 -02 17 59.2 1
|
||||
circle 190 1
|
||||
193.9113 -2.2998 ngp.config.190.fld 12 55 38.72 -02 17 59.2 1
|
||||
circle 191 1
|
||||
194.9045 -2.2998 ngp.config.191.fld 12 59 37.08 -02 17 59.2 1
|
||||
circle 192 1
|
||||
195.2431 -2.2998 ngp.config.192.fld 13 0 58.34 -02 17 59.2 1
|
||||
circle 193 1
|
||||
196.6639 -2.2998 ngp.config.193.fld 13 6 39.34 -02 17 59.2 1
|
||||
circle 194 1
|
||||
197.7561 -2.2998 ngp.config.194.fld 13 11 1.47 -02 17 59.2 1
|
||||
circle 195 1
|
||||
199.1691 -2.2998 ngp.config.195.fld 13 16 40.58 -02 17 59.2 1
|
||||
circle 196 1
|
||||
200.1002 -2.2998 ngp.config.196.fld 13 20 24.05 -02 17 59.2 1
|
||||
circle 197 1
|
||||
201.4427 -2.2998 ngp.config.197.fld 13 25 46.25 -02 17 59.2 1
|
||||
circle 198 1
|
||||
202.0821 -2.2998 ngp.config.198.fld 13 28 19.71 -02 17 59.2 1
|
||||
circle 199 1
|
||||
202.8443 -2.2998 ngp.config.199.fld 13 31 22.63 -02 17 59.2 1
|
||||
circle 200 1
|
||||
204.0372 -2.2998 ngp.config.200.fld 13 36 8.94 -02 17 59.2 1
|
||||
circle 201 1
|
||||
205.5367 -2.2998 ngp.config.201.fld 13 42 8.80 -02 17 59.2 1
|
||||
circle 202 1
|
||||
207.1414 -2.2998 ngp.config.202.fld 13 48 33.94 -02 17 59.2 1
|
||||
circle 203 1
|
||||
208.5105 -2.2998 ngp.config.203.fld 13 54 2.53 -02 17 59.2 1
|
||||
circle 204 1
|
||||
210.1411 -2.2998 ngp.config.204.fld 14 0 33.87 -02 17 59.2 1
|
||||
circle 205 1
|
||||
211.7667 -2.2998 ngp.config.205.fld 14 7 4.00 -02 17 59.2 1
|
||||
circle 206 1
|
||||
212.9672 -2.2998 ngp.config.206.fld 14 11 52.13 -02 17 59.2 1
|
||||
circle 207 1
|
||||
214.2800 -2.2998 ngp.config.207.fld 14 17 7.20 -02 17 59.2 1
|
||||
circle 208 1
|
||||
215.4874 -2.2998 ngp.config.208.fld 14 21 56.98 -02 17 59.2 1
|
||||
circle 209 1
|
||||
217.0072 -2.2998 ngp.config.209.fld 14 28 1.74 -02 17 59.2 1
|
||||
circle 210 1
|
||||
218.1086 -2.2998 ngp.config.210.fld 14 32 26.06 -02 17 59.2 1
|
||||
circle 211 1
|
||||
219.4865 -2.2998 ngp.config.211.fld 14 37 56.77 -02 17 59.2 1
|
||||
circle 212 1
|
||||
220.6003 -2.2998 ngp.config.212.fld 14 42 24.06 -02 17 59.2 1
|
||||
circle 213 1
|
||||
222.0713 -2.2998 ngp.config.213.fld 14 48 17.11 -02 17 59.2 1
|
||||
circle 214 1
|
||||
146.9471 -2.2998 ngp.config.214.fld 9 47 47.31 -02 17 59.2 1
|
||||
circle 215 1
|
||||
148.2169 -2.2998 ngp.config.215.fld 9 52 52.05 -02 17 59.2 1
|
||||
circle 216 1
|
||||
149.4573 -2.2998 ngp.config.216.fld 9 57 49.75 -02 17 59.2 1
|
||||
circle 217 1
|
||||
150.3967 -2.2998 ngp.config.217.fld 10 1 35.20 -02 17 59.2 1
|
||||
circle 218 1
|
||||
151.8080 -2.2998 ngp.config.218.fld 10 7 13.93 -02 17 59.2 1
|
||||
circle 219 1
|
||||
152.8348 -2.2998 ngp.config.219.fld 10 11 20.36 -02 17 59.2 1
|
||||
circle 220 1
|
||||
153.9601 -2.2998 ngp.config.220.fld 10 15 50.43 -02 17 59.2 1
|
||||
circle 221 1
|
||||
154.8085 -2.2998 ngp.config.221.fld 10 19 14.04 -02 17 59.2 1
|
||||
circle 222 1
|
||||
156.0095 -2.2998 ngp.config.222.fld 10 24 2.27 -02 17 59.2 1
|
||||
circle 223 1
|
||||
157.1250 -2.2998 ngp.config.223.fld 10 28 30.00 -02 17 59.2 1
|
||||
circle 224 1
|
||||
158.0330 -2.2998 ngp.config.224.fld 10 32 7.91 -02 17 59.2 1
|
||||
circle 225 1
|
||||
159.1759 -2.2998 ngp.config.225.fld 10 36 42.22 -02 17 59.2 1
|
||||
circle 226 1
|
||||
160.0797 -2.2998 ngp.config.226.fld 10 40 19.14 -02 17 59.2 1
|
||||
circle 227 1
|
||||
160.8898 -2.2998 ngp.config.227.fld 10 43 33.56 -02 17 59.2 1
|
||||
circle 228 1
|
||||
162.3204 -2.2998 ngp.config.228.fld 10 49 16.89 -02 17 59.2 1
|
||||
circle 229 1
|
||||
163.4020 -2.2998 ngp.config.229.fld 10 53 36.48 -02 17 59.2 1
|
||||
circle 230 1
|
||||
164.8698 -2.2998 ngp.config.230.fld 10 59 28.75 -02 17 59.2 1
|
||||
circle 231 1
|
||||
165.8989 -2.2998 ngp.config.231.fld 11 3 35.73 -02 17 59.2 1
|
||||
circle 232 1
|
||||
167.0272 -2.2998 ngp.config.232.fld 11 8 6.52 -02 17 59.2 1
|
||||
circle 233 1
|
||||
167.8949 -2.2998 ngp.config.233.fld 11 11 34.77 -02 17 59.2 1
|
||||
circle 234 1
|
||||
169.0705 -2.2998 ngp.config.234.fld 11 16 16.91 -02 17 59.2 1
|
||||
circle 235 1
|
||||
170.2965 -2.2998 ngp.config.235.fld 11 21 11.16 -02 17 59.2 1
|
||||
circle 236 1
|
||||
171.9273 -2.2998 ngp.config.236.fld 11 27 42.56 -02 17 59.2 1
|
||||
circle 237 1
|
||||
173.0782 -2.2998 ngp.config.237.fld 11 32 18.77 -02 17 59.2 1
|
||||
circle 238 1
|
||||
174.0817 -2.2998 ngp.config.238.fld 11 36 19.60 -02 17 59.2 1
|
||||
circle 239 1
|
||||
174.9498 -2.2998 ngp.config.239.fld 11 39 47.94 -02 17 59.2 1
|
||||
circle 240 1
|
||||
175.5971 -2.2998 ngp.config.240.fld 11 42 23.30 -02 17 59.2 1
|
||||
circle 241 1
|
||||
176.6381 -2.2998 ngp.config.241.fld 11 46 33.15 -02 17 59.2 1
|
||||
circle 242 1
|
||||
177.5819 -2.2998 ngp.config.242.fld 11 50 19.65 -02 17 59.2 1
|
||||
circle 243 1
|
||||
178.2972 -2.2998 ngp.config.243.fld 11 53 11.32 -02 17 59.2 1
|
||||
circle 244 1
|
||||
179.9269 -2.2998 ngp.config.244.fld 11 59 42.45 -02 17 59.2 1
|
||||
circle 245 1
|
||||
180.5227 -0.9498 ngp.config.245.fld 12 2 5.45 -00 56 59.2 1
|
||||
circle 246 1
|
||||
182.1412 -0.9498 ngp.config.246.fld 12 8 33.88 -00 56 59.2 1
|
||||
circle 247 1
|
||||
182.9996 -0.9498 ngp.config.247.fld 12 11 59.91 -00 56 59.2 1
|
||||
circle 248 1
|
||||
184.2655 -0.9498 ngp.config.248.fld 12 17 3.71 -00 56 59.2 1
|
||||
circle 249 1
|
||||
185.8950 -0.9498 ngp.config.249.fld 12 23 34.79 -00 56 59.2 1
|
||||
circle 250 1
|
||||
187.4289 -0.9498 ngp.config.250.fld 12 29 42.93 -00 56 59.2 1
|
||||
circle 251 1
|
||||
188.2016 -0.9498 ngp.config.251.fld 12 32 48.39 -00 56 59.2 1
|
||||
circle 252 1
|
||||
189.5967 -0.9498 ngp.config.252.fld 12 38 23.20 -00 56 59.2 1
|
||||
circle 253 1
|
||||
190.5202 -0.9498 ngp.config.253.fld 12 42 4.85 -00 56 59.2 1
|
||||
circle 254 1
|
||||
191.7677 -0.9498 ngp.config.254.fld 12 47 4.26 -00 56 59.2 1
|
||||
circle 255 1
|
||||
192.4791 -0.9498 ngp.config.255.fld 12 49 54.98 -00 56 59.2 1
|
||||
circle 256 1
|
||||
193.3254 -0.9498 ngp.config.256.fld 12 53 18.10 -00 56 59.2 1
|
||||
circle 257 1
|
||||
194.4813 -0.9498 ngp.config.257.fld 12 57 55.51 -00 56 59.2 1
|
||||
circle 258 1
|
||||
195.5383 -0.9498 ngp.config.258.fld 13 2 9.20 -00 56 59.2 1
|
||||
circle 259 1
|
||||
196.8787 -0.9498 ngp.config.259.fld 13 7 30.88 -00 56 59.2 1
|
||||
circle 260 1
|
||||
197.4977 -0.9498 ngp.config.260.fld 13 9 59.44 -00 56 59.2 1
|
||||
circle 261 1
|
||||
198.3311 -0.9498 ngp.config.261.fld 13 13 19.46 -00 56 59.2 1
|
||||
circle 262 1
|
||||
198.9742 -0.9498 ngp.config.262.fld 13 15 53.82 -00 56 59.2 1
|
||||
circle 263 1
|
||||
199.6974 -0.9498 ngp.config.263.fld 13 18 47.38 -00 56 59.2 1
|
||||
circle 264 1
|
||||
200.4520 -0.9498 ngp.config.264.fld 13 21 48.48 -00 56 59.2 1
|
||||
circle 265 1
|
||||
201.4713 -0.9498 ngp.config.265.fld 13 25 53.11 -00 56 59.2 1
|
||||
circle 266 1
|
||||
202.6190 -0.9498 ngp.config.266.fld 13 30 28.55 -00 56 59.2 1
|
||||
circle 267 1
|
||||
203.8501 -0.9498 ngp.config.267.fld 13 35 24.02 -00 56 59.2 1
|
||||
circle 268 1
|
||||
205.1810 -0.9498 ngp.config.268.fld 13 40 43.44 -00 56 59.2 1
|
||||
circle 269 1
|
||||
206.4944 -0.9498 ngp.config.269.fld 13 45 58.66 -00 56 59.2 1
|
||||
circle 270 1
|
||||
207.9688 -0.9498 ngp.config.270.fld 13 51 52.51 -00 56 59.2 1
|
||||
circle 271 1
|
||||
208.9493 -0.9498 ngp.config.271.fld 13 55 47.83 -00 56 59.2 1
|
||||
circle 272 1
|
||||
210.3054 -0.9498 ngp.config.272.fld 14 1 13.30 -00 56 59.2 1
|
||||
circle 273 1
|
||||
211.0930 -0.9498 ngp.config.273.fld 14 4 22.31 -00 56 59.2 1
|
||||
circle 274 1
|
||||
212.5057 -0.9498 ngp.config.274.fld 14 10 1.36 -00 56 59.2 1
|
||||
circle 275 1
|
||||
213.2024 -0.9498 ngp.config.275.fld 14 12 48.58 -00 56 59.2 1
|
||||
circle 276 1
|
||||
214.6438 -0.9498 ngp.config.276.fld 14 18 34.50 -00 56 59.2 1
|
||||
circle 277 1
|
||||
215.6964 -0.9498 ngp.config.277.fld 14 22 47.13 -00 56 59.2 1
|
||||
circle 278 1
|
||||
217.2198 -0.9498 ngp.config.278.fld 14 28 52.74 -00 56 59.2 1
|
||||
circle 279 1
|
||||
218.2473 -0.9498 ngp.config.279.fld 14 32 59.35 -00 56 59.2 1
|
||||
circle 280 1
|
||||
219.0034 -0.9498 ngp.config.280.fld 14 36 0.82 -00 56 59.2 1
|
||||
circle 281 1
|
||||
220.2348 -0.9498 ngp.config.281.fld 14 40 56.34 -00 56 59.2 1
|
||||
circle 282 1
|
||||
221.0170 -0.9498 ngp.config.282.fld 14 44 4.07 -00 56 59.2 1
|
||||
circle 283 1
|
||||
222.6477 -0.9498 ngp.config.283.fld 14 50 35.44 -00 56 59.2 1
|
||||
circle 284 1
|
||||
147.3264 -0.9498 ngp.config.284.fld 9 49 18.33 -00 56 59.2 1
|
||||
circle 285 1
|
||||
148.4995 -0.9498 ngp.config.285.fld 9 53 59.87 -00 56 59.2 1
|
||||
circle 286 1
|
||||
149.8137 -0.9498 ngp.config.286.fld 9 59 15.28 -00 56 59.2 1
|
||||
circle 287 1
|
||||
151.2994 -0.9498 ngp.config.287.fld 10 5 11.86 -00 56 59.2 1
|
||||
circle 288 1
|
||||
152.5398 -0.9498 ngp.config.288.fld 10 10 9.55 -00 56 59.2 1
|
||||
circle 289 1
|
||||
152.9362 -0.9498 ngp.config.289.fld 10 11 44.68 -00 56 59.2 1
|
||||
circle 290 1
|
||||
153.9099 -0.9498 ngp.config.290.fld 10 15 38.38 -00 56 59.2 1
|
||||
circle 291 1
|
||||
154.9506 -0.9498 ngp.config.291.fld 10 19 48.14 -00 56 59.2 1
|
||||
circle 292 1
|
||||
156.5653 -0.9498 ngp.config.292.fld 10 26 15.68 -00 56 59.2 1
|
||||
circle 293 1
|
||||
157.7466 -0.9498 ngp.config.293.fld 10 30 59.18 -00 56 59.2 1
|
||||
circle 294 1
|
||||
158.7677 -0.9498 ngp.config.294.fld 10 35 4.26 -00 56 59.2 1
|
||||
circle 295 1
|
||||
159.8903 -0.9498 ngp.config.295.fld 10 39 33.68 -00 56 59.2 1
|
||||
circle 296 1
|
||||
160.8619 -0.9498 ngp.config.296.fld 10 43 26.86 -00 56 59.2 1
|
||||
circle 297 1
|
||||
162.1366 -0.9498 ngp.config.297.fld 10 48 32.78 -00 56 59.2 1
|
||||
circle 298 1
|
||||
163.0806 -0.9498 ngp.config.298.fld 10 52 19.35 -00 56 59.2 1
|
||||
circle 299 1
|
||||
164.3354 -0.9498 ngp.config.299.fld 10 57 20.49 -00 56 59.2 1
|
||||
circle 300 1
|
||||
165.5952 -0.9498 ngp.config.300.fld 11 2 22.84 -00 56 59.2 1
|
||||
circle 301 1
|
||||
166.6419 -0.9498 ngp.config.301.fld 11 6 34.05 -00 56 59.2 1
|
||||
circle 302 1
|
||||
167.7047 -0.9498 ngp.config.302.fld 11 10 49.14 -00 56 59.2 1
|
||||
circle 303 1
|
||||
168.4527 -0.9498 ngp.config.303.fld 11 13 48.65 -00 56 59.2 1
|
||||
circle 304 1
|
||||
169.4679 -0.9498 ngp.config.304.fld 11 17 52.30 -00 56 59.2 1
|
||||
circle 305 1
|
||||
170.6477 -0.9498 ngp.config.305.fld 11 22 35.44 -00 56 59.2 1
|
||||
circle 306 1
|
||||
172.0336 -0.9498 ngp.config.306.fld 11 28 8.07 -00 56 59.2 1
|
||||
circle 307 1
|
||||
173.3060 -0.9498 ngp.config.307.fld 11 33 13.45 -00 56 59.2 1
|
||||
circle 308 1
|
||||
174.4226 -0.9498 ngp.config.308.fld 11 37 41.43 -00 56 59.2 1
|
||||
circle 309 1
|
||||
175.6569 -0.9498 ngp.config.309.fld 11 42 37.65 -00 56 59.2 1
|
||||
circle 310 1
|
||||
176.1164 -0.9498 ngp.config.310.fld 11 44 27.93 -00 56 59.2 1
|
||||
circle 311 1
|
||||
177.3153 -0.9498 ngp.config.311.fld 11 49 15.67 -00 56 59.2 1
|
||||
circle 312 1
|
||||
178.3546 -0.9498 ngp.config.312.fld 11 53 25.11 -00 56 59.2 1
|
||||
circle 313 1
|
||||
178.9883 -0.9498 ngp.config.313.fld 11 55 57.18 -00 56 59.2 1
|
||||
circle 314 1
|
||||
180.6339 -0.9498 ngp.config.314.fld 12 2 32.13 -00 56 59.2 1
|
||||
circle 315 1
|
||||
179.8098 0.4002 ngp.config.315.fld 11 59 14.36 0 24 0.8 1
|
||||
circle 316 1
|
||||
181.0577 0.4002 ngp.config.316.fld 12 4 13.85 0 24 0.8 1
|
||||
circle 317 1
|
||||
182.4036 0.4002 ngp.config.317.fld 12 9 36.86 0 24 0.8 1
|
||||
circle 318 1
|
||||
183.6655 0.4002 ngp.config.318.fld 12 14 39.71 0 24 0.8 1
|
||||
circle 319 1
|
||||
184.6581 0.4002 ngp.config.319.fld 12 18 37.94 0 24 0.8 1
|
||||
circle 320 1
|
||||
186.2659 0.4002 ngp.config.320.fld 12 25 3.82 0 24 0.8 1
|
||||
circle 321 1
|
||||
187.7527 0.4002 ngp.config.321.fld 12 31 0.64 0 24 0.8 1
|
||||
circle 322 1
|
||||
188.7631 0.4002 ngp.config.322.fld 12 35 3.14 0 24 0.8 1
|
||||
circle 323 1
|
||||
190.1167 0.4002 ngp.config.323.fld 12 40 28.02 0 24 0.8 1
|
||||
circle 324 1
|
||||
191.1909 0.4002 ngp.config.324.fld 12 44 45.82 0 24 0.8 1
|
||||
circle 325 1
|
||||
192.0565 0.4002 ngp.config.325.fld 12 48 13.55 0 24 0.8 1
|
||||
circle 326 1
|
||||
193.5558 0.4002 ngp.config.326.fld 12 54 13.38 0 24 0.8 1
|
||||
circle 327 1
|
||||
194.7514 0.4002 ngp.config.327.fld 12 59 0.33 0 24 0.8 1
|
||||
circle 328 1
|
||||
195.8282 0.4002 ngp.config.328.fld 13 3 18.78 0 24 0.8 1
|
||||
circle 329 1
|
||||
197.2218 0.4002 ngp.config.329.fld 13 8 53.23 0 24 0.8 1
|
||||
circle 330 1
|
||||
198.1539 0.4002 ngp.config.330.fld 13 12 36.93 0 24 0.8 1
|
||||
circle 331 1
|
||||
199.5275 0.4002 ngp.config.331.fld 13 18 6.60 0 24 0.8 1
|
||||
circle 332 1
|
||||
200.4245 0.4002 ngp.config.332.fld 13 21 41.88 0 24 0.8 1
|
||||
circle 333 1
|
||||
201.8170 0.4002 ngp.config.333.fld 13 27 16.07 0 24 0.8 1
|
||||
circle 334 1
|
||||
202.7272 0.4002 ngp.config.334.fld 13 30 54.53 0 24 0.8 1
|
||||
circle 335 1
|
||||
204.3183 0.4002 ngp.config.335.fld 13 37 16.38 0 24 0.8 1
|
||||
circle 336 1
|
||||
205.2626 0.4002 ngp.config.336.fld 13 41 3.02 0 24 0.8 1
|
||||
circle 337 1
|
||||
206.8295 0.4002 ngp.config.337.fld 13 47 19.09 0 24 0.8 1
|
||||
circle 338 1
|
||||
208.1328 0.4002 ngp.config.338.fld 13 52 31.88 0 24 0.8 1
|
||||
circle 339 1
|
||||
209.3506 0.4002 ngp.config.339.fld 13 57 24.14 0 24 0.8 1
|
||||
circle 340 1
|
||||
210.5935 0.4002 ngp.config.340.fld 14 2 22.44 0 24 0.8 1
|
||||
circle 341 1
|
||||
211.9789 0.4002 ngp.config.341.fld 14 7 54.94 0 24 0.8 1
|
||||
circle 342 1
|
||||
212.8844 0.4002 ngp.config.342.fld 14 11 32.25 0 24 0.8 1
|
||||
circle 343 1
|
||||
213.9944 0.4002 ngp.config.343.fld 14 15 58.66 0 24 0.8 1
|
||||
circle 344 1
|
||||
215.4602 0.4002 ngp.config.344.fld 14 21 50.45 0 24 0.8 1
|
||||
circle 345 1
|
||||
217.0251 0.4002 ngp.config.345.fld 14 28 6.02 0 24 0.8 1
|
||||
circle 346 1
|
||||
218.1837 0.4002 ngp.config.346.fld 14 32 44.10 0 24 0.8 1
|
||||
circle 347 1
|
||||
218.9033 0.4002 ngp.config.347.fld 14 35 36.79 0 24 0.8 1
|
||||
circle 348 1
|
||||
220.3839 0.4002 ngp.config.348.fld 14 41 32.14 0 24 0.8 1
|
||||
circle 349 1
|
||||
221.4292 0.4002 ngp.config.349.fld 14 45 43.02 0 24 0.8 1
|
||||
circle 350 1
|
||||
223.0748 0.4002 ngp.config.350.fld 14 52 17.96 0 24 0.8 1
|
||||
circle 351 1
|
||||
147.7346 0.4002 ngp.config.351.fld 9 50 56.30 0 24 0.8 1
|
||||
circle 352 1
|
||||
148.7077 0.4002 ngp.config.352.fld 9 54 49.85 0 24 0.8 1
|
||||
circle 353 1
|
||||
149.7633 0.4002 ngp.config.353.fld 9 59 3.20 0 24 0.8 1
|
||||
circle 354 1
|
||||
150.6625 0.4002 ngp.config.354.fld 10 2 39.01 0 24 0.8 1
|
||||
circle 355 1
|
||||
152.1306 0.4002 ngp.config.355.fld 10 8 31.34 0 24 0.8 1
|
||||
circle 356 1
|
||||
153.0185 0.4002 ngp.config.356.fld 10 12 4.44 0 24 0.8 1
|
||||
circle 357 1
|
||||
153.5947 0.4002 ngp.config.357.fld 10 14 22.72 0 24 0.8 1
|
||||
circle 358 1
|
||||
154.8470 0.4002 ngp.config.358.fld 10 19 23.28 0 24 0.8 1
|
||||
circle 359 1
|
||||
155.6580 0.4002 ngp.config.359.fld 10 22 37.93 0 24 0.8 1
|
||||
circle 360 1
|
||||
157.1920 0.4002 ngp.config.360.fld 10 28 46.07 0 24 0.8 1
|
||||
circle 361 1
|
||||
158.1848 0.4002 ngp.config.361.fld 10 32 44.34 0 24 0.8 1
|
||||
circle 362 1
|
||||
159.4019 0.4002 ngp.config.362.fld 10 37 36.46 0 24 0.8 1
|
||||
circle 363 1
|
||||
160.2883 0.4002 ngp.config.363.fld 10 41 9.20 0 24 0.8 1
|
||||
circle 364 1
|
||||
161.1195 0.4002 ngp.config.364.fld 10 44 28.68 0 24 0.8 1
|
||||
circle 365 1
|
||||
162.2785 0.4002 ngp.config.365.fld 10 49 6.85 0 24 0.8 1
|
||||
circle 366 1
|
||||
163.2020 0.4002 ngp.config.366.fld 10 52 48.48 0 24 0.8 1
|
||||
circle 367 1
|
||||
164.5009 0.4002 ngp.config.367.fld 10 58 0.21 0 24 0.8 1
|
||||
circle 368 1
|
||||
165.8323 0.4002 ngp.config.368.fld 11 3 19.75 0 24 0.8 1
|
||||
circle 369 1
|
||||
167.1175 0.4002 ngp.config.369.fld 11 8 28.21 0 24 0.8 1
|
||||
circle 370 1
|
||||
167.9519 0.4002 ngp.config.370.fld 11 11 48.46 0 24 0.8 1
|
||||
circle 371 1
|
||||
169.0672 0.4002 ngp.config.371.fld 11 16 16.14 0 24 0.8 1
|
||||
circle 372 1
|
||||
169.9509 0.4002 ngp.config.372.fld 11 19 48.21 0 24 0.8 1
|
||||
circle 373 1
|
||||
170.5807 0.4002 ngp.config.373.fld 11 22 19.36 0 24 0.8 1
|
||||
circle 374 1
|
||||
171.8437 0.4002 ngp.config.374.fld 11 27 22.48 0 24 0.8 1
|
||||
circle 375 1
|
||||
172.8980 0.4002 ngp.config.375.fld 11 31 35.52 0 24 0.8 1
|
||||
circle 376 1
|
||||
174.2117 0.4002 ngp.config.376.fld 11 36 50.80 0 24 0.8 1
|
||||
circle 377 1
|
||||
175.8348 0.4002 ngp.config.377.fld 11 43 20.36 0 24 0.8 1
|
||||
circle 378 1
|
||||
177.3120 0.4002 ngp.config.378.fld 11 49 14.88 0 24 0.8 1
|
||||
circle 379 1
|
||||
178.6949 0.4002 ngp.config.379.fld 11 54 46.77 0 24 0.8 1
|
||||
circle 380 1
|
||||
179.0892 0.4002 ngp.config.380.fld 11 56 21.40 0 24 0.8 1
|
||||
circle 381 1
|
||||
180.7282 0.4002 ngp.config.381.fld 12 2 54.77 0 24 0.8 1
|
||||
circle 382 1
|
||||
180.2850 1.7502 ngp.config.382.fld 12 1 8.40 1 45 0.8 1
|
||||
circle 383 1
|
||||
181.2880 1.7502 ngp.config.383.fld 12 5 9.11 1 45 0.8 1
|
||||
circle 384 1
|
||||
182.4305 1.7502 ngp.config.384.fld 12 9 43.32 1 45 0.8 1
|
||||
circle 385 1
|
||||
183.6629 1.7502 ngp.config.385.fld 12 14 39.10 1 45 0.8 1
|
||||
circle 386 1
|
||||
184.7119 1.7502 ngp.config.386.fld 12 18 50.85 1 45 0.8 1
|
||||
circle 387 1
|
||||
186.0408 1.7502 ngp.config.387.fld 12 24 9.79 1 45 0.8 1
|
||||
circle 388 1
|
||||
187.4223 1.7502 ngp.config.388.fld 12 29 41.36 1 45 0.8 1
|
||||
circle 389 1
|
||||
188.5101 1.7502 ngp.config.389.fld 12 34 2.42 1 45 0.8 1
|
||||
circle 390 1
|
||||
189.7501 1.7502 ngp.config.390.fld 12 39 0.03 1 45 0.8 1
|
||||
circle 391 1
|
||||
190.5101 1.7502 ngp.config.391.fld 12 42 2.43 1 45 0.8 1
|
||||
circle 392 1
|
||||
191.8625 1.7502 ngp.config.392.fld 12 47 27.01 1 45 0.8 1
|
||||
circle 393 1
|
||||
193.3597 1.7502 ngp.config.393.fld 12 53 26.33 1 45 0.8 1
|
||||
circle 394 1
|
||||
194.5715 1.7502 ngp.config.394.fld 12 58 17.15 1 45 0.8 1
|
||||
circle 395 1
|
||||
196.0387 1.7502 ngp.config.395.fld 13 4 9.29 1 45 0.8 1
|
||||
circle 396 1
|
||||
197.2849 1.7502 ngp.config.396.fld 13 9 8.38 1 45 0.8 1
|
||||
circle 397 1
|
||||
198.2370 1.7502 ngp.config.397.fld 13 12 56.88 1 45 0.8 1
|
||||
circle 398 1
|
||||
199.5114 1.7502 ngp.config.398.fld 13 18 2.73 1 45 0.8 1
|
||||
circle 399 1
|
||||
200.3263 1.7502 ngp.config.399.fld 13 21 18.31 1 45 0.8 1
|
||||
circle 400 1
|
||||
201.6929 1.7502 ngp.config.400.fld 13 26 46.30 1 45 0.8 1
|
||||
circle 401 1
|
||||
202.2220 1.7502 ngp.config.401.fld 13 28 53.28 1 45 0.8 1
|
||||
circle 402 1
|
||||
203.7630 1.7502 ngp.config.402.fld 13 35 3.13 1 45 0.8 1
|
||||
circle 403 1
|
||||
204.6010 1.7502 ngp.config.403.fld 13 38 24.25 1 45 0.8 1
|
||||
circle 404 1
|
||||
206.1645 1.7502 ngp.config.404.fld 13 44 39.49 1 45 0.8 1
|
||||
circle 405 1
|
||||
207.4227 1.7502 ngp.config.405.fld 13 49 41.44 1 45 0.8 1
|
||||
circle 406 1
|
||||
208.6020 1.7502 ngp.config.406.fld 13 54 24.49 1 45 0.8 1
|
||||
circle 407 1
|
||||
209.7953 1.7502 ngp.config.407.fld 13 59 10.86 1 45 0.8 1
|
||||
circle 408 1
|
||||
210.9191 1.7502 ngp.config.408.fld 14 3 40.58 1 45 0.8 1
|
||||
circle 409 1
|
||||
212.1663 1.7502 ngp.config.409.fld 14 8 39.92 1 45 0.8 1
|
||||
circle 410 1
|
||||
213.0245 1.7502 ngp.config.410.fld 14 12 5.88 1 45 0.8 1
|
||||
circle 411 1
|
||||
213.9135 1.7502 ngp.config.411.fld 14 15 39.25 1 45 0.8 1
|
||||
circle 412 1
|
||||
215.2612 1.7502 ngp.config.412.fld 14 21 2.68 1 45 0.8 1
|
||||
circle 413 1
|
||||
216.8367 1.7502 ngp.config.413.fld 14 27 20.80 1 45 0.8 1
|
||||
circle 414 1
|
||||
217.7737 1.7502 ngp.config.414.fld 14 31 5.70 1 45 0.8 1
|
||||
circle 415 1
|
||||
218.8728 1.7502 ngp.config.415.fld 14 35 29.46 1 45 0.8 1
|
||||
circle 416 1
|
||||
220.2865 1.7502 ngp.config.416.fld 14 41 8.77 1 45 0.8 1
|
||||
circle 417 1
|
||||
221.5088 1.7502 ngp.config.417.fld 14 46 2.11 1 45 0.8 1
|
||||
circle 418 1
|
||||
223.1555 1.7502 ngp.config.418.fld 14 52 37.31 1 45 0.8 1
|
||||
circle 419 1
|
||||
147.8940 1.7502 ngp.config.419.fld 9 51 34.56 1 45 0.8 1
|
||||
circle 420 1
|
||||
149.2106 1.7502 ngp.config.420.fld 9 56 50.55 1 45 0.8 1
|
||||
circle 421 1
|
||||
150.6290 1.7502 ngp.config.421.fld 10 2 30.97 1 45 0.8 1
|
||||
circle 422 1
|
||||
152.0544 1.7502 ngp.config.422.fld 10 8 13.05 1 45 0.8 1
|
||||
circle 423 1
|
||||
153.4224 1.7502 ngp.config.423.fld 10 13 41.38 1 45 0.8 1
|
||||
circle 424 1
|
||||
154.6315 1.7502 ngp.config.424.fld 10 18 31.56 1 45 0.8 1
|
||||
circle 425 1
|
||||
155.3413 1.7502 ngp.config.425.fld 10 21 21.92 1 45 0.8 1
|
||||
circle 426 1
|
||||
156.6064 1.7502 ngp.config.426.fld 10 26 25.53 1 45 0.8 1
|
||||
circle 427 1
|
||||
157.7595 1.7502 ngp.config.427.fld 10 31 2.28 1 45 0.8 1
|
||||
circle 428 1
|
||||
158.5264 1.7502 ngp.config.428.fld 10 34 6.34 1 45 0.8 1
|
||||
circle 429 1
|
||||
159.3526 1.7502 ngp.config.429.fld 10 37 24.63 1 45 0.8 1
|
||||
circle 430 1
|
||||
159.9795 1.7502 ngp.config.430.fld 10 39 55.07 1 45 0.8 1
|
||||
circle 431 1
|
||||
160.7321 1.7502 ngp.config.431.fld 10 42 55.70 1 45 0.8 1
|
||||
circle 432 1
|
||||
161.8781 1.7502 ngp.config.432.fld 10 47 30.75 1 45 0.8 1
|
||||
circle 433 1
|
||||
163.0850 1.7502 ngp.config.433.fld 10 52 20.41 1 45 0.8 1
|
||||
circle 434 1
|
||||
164.0670 1.7502 ngp.config.434.fld 10 56 16.09 1 45 0.8 1
|
||||
circle 435 1
|
||||
165.3810 1.7502 ngp.config.435.fld 11 1 31.45 1 45 0.8 1
|
||||
circle 436 1
|
||||
166.1627 1.7502 ngp.config.436.fld 11 4 39.05 1 45 0.8 1
|
||||
circle 437 1
|
||||
167.2005 1.7502 ngp.config.437.fld 11 8 48.13 1 45 0.8 1
|
||||
circle 438 1
|
||||
167.8381 1.7502 ngp.config.438.fld 11 11 21.14 1 45 0.8 1
|
||||
circle 439 1
|
||||
168.6096 1.7502 ngp.config.439.fld 11 14 26.30 1 45 0.8 1
|
||||
circle 440 1
|
||||
169.6399 1.7502 ngp.config.440.fld 11 18 33.58 1 45 0.8 1
|
||||
circle 441 1
|
||||
170.1170 1.7502 ngp.config.441.fld 11 20 28.09 1 45 0.8 1
|
||||
circle 442 1
|
||||
171.1102 1.7502 ngp.config.442.fld 11 24 26.46 1 45 0.8 1
|
||||
circle 443 1
|
||||
171.9803 1.7502 ngp.config.443.fld 11 27 55.27 1 45 0.8 1
|
||||
circle 444 1
|
||||
172.8782 1.7502 ngp.config.444.fld 11 31 30.76 1 45 0.8 1
|
||||
circle 445 1
|
||||
173.9067 1.7502 ngp.config.445.fld 11 35 37.61 1 45 0.8 1
|
||||
circle 446 1
|
||||
175.1110 1.7502 ngp.config.446.fld 11 40 26.64 1 45 0.8 1
|
||||
circle 447 1
|
||||
176.7422 1.7502 ngp.config.447.fld 11 46 58.14 1 45 0.8 1
|
||||
circle 448 1
|
||||
178.1393 1.7502 ngp.config.448.fld 11 52 33.43 1 45 0.8 1
|
||||
circle 449 1
|
||||
178.8188 1.7502 ngp.config.449.fld 11 55 16.51 1 45 0.8 1
|
||||
circle 450 1
|
||||
180.4513 1.7502 ngp.config.450.fld 12 1 48.31 1 45 0.8 1
|
201
masks/2df100k/centres.ran
Normal file
201
masks/2df100k/centres.ran
Normal file
|
@ -0,0 +1,201 @@
|
|||
unit h
|
||||
skip 39
|
||||
RA & Dec (B1950) hh mm ss.ss -dd mm ss.s d
|
||||
circle 802 1
|
||||
33.2351 -64.1862 sgp.config.802.fld 2 12 56.42 -64 11 10.3 1
|
||||
circle 805 1
|
||||
359.9878 -56.7658 sgp.config.805.fld 23 59 57.07 -56 45 56.9 1
|
||||
circle 806 1
|
||||
11.5284 -41.3732 sgp.config.806.fld 0 46 6.82 -41 22 23.5 1
|
||||
circle 807 1
|
||||
0.8817 -8.2826 sgp.config.807.fld 0 3 31.61 -08 16 57.4 1
|
||||
circle 808 1
|
||||
54.9289 -39.7294 sgp.config.808.fld 3 39 42.94 -39 43 45.8 1
|
||||
circle 809 1
|
||||
335.7275 -54.1330 sgp.config.809.fld 22 22 54.60 -54 7 58.8 1
|
||||
circle 811 1
|
||||
352.9767 -41.4196 sgp.config.811.fld 23 31 54.41 -41 25 10.6 1
|
||||
circle 812 1
|
||||
331.1585 -56.9417 sgp.config.812.fld 22 4 38.04 -56 56 30.1 1
|
||||
circle 813 1
|
||||
329.7138 -18.8682 sgp.config.813.fld 21 58 51.30 -18 52 5.5 1
|
||||
circle 814 1
|
||||
34.9652 -45.9285 sgp.config.814.fld 2 19 51.65 -45 55 42.6 1
|
||||
circle 816 1
|
||||
26.8279 -5.8767 sgp.config.816.fld 1 47 18.70 -05 52 36.1 1
|
||||
circle 817 1
|
||||
58.6033 -49.6970 sgp.config.817.fld 3 54 24.79 -49 41 49.2 1
|
||||
circle 818 1
|
||||
68.1223 -25.5094 sgp.config.818.fld 4 32 29.35 -25 30 33.8 1
|
||||
circle 819 1
|
||||
6.6322 -2.3038 sgp.config.819.fld 0 26 31.73 -02 18 13.7 1
|
||||
circle 820 1
|
||||
310.3185 -58.7761 sgp.config.820.fld 20 41 16.45 -58 46 33.9 1
|
||||
circle 822 1
|
||||
19.1427 -17.2171 sgp.config.822.fld 1 16 34.25 -17 13 1.6 1
|
||||
circle 823 1
|
||||
327.6089 -51.7219 sgp.config.823.fld 21 50 26.13 -51 43 18.8 1
|
||||
circle 824 1
|
||||
58.4612 -58.7196 sgp.config.824.fld 3 53 50.69 -58 43 10.6 1
|
||||
circle 826 1
|
||||
3.9694 -63.0145 sgp.config.826.fld 0 15 52.66 -63 0 52.2 1
|
||||
circle 827 1
|
||||
19.5246 -56.4880 sgp.config.827.fld 1 18 5.90 -56 29 16.8 1
|
||||
circle 828 1
|
||||
324.0165 -40.2396 sgp.config.828.fld 21 36 3.96 -40 14 22.6 1
|
||||
circle 829 1
|
||||
20.9593 -47.7717 sgp.config.829.fld 1 23 50.23 -47 46 18.1 1
|
||||
circle 830 1
|
||||
323.3897 -16.2229 sgp.config.830.fld 21 33 33.53 -16 13 22.4 1
|
||||
circle 833 1
|
||||
62.6418 -23.0771 sgp.config.833.fld 4 10 34.03 -23 4 37.6 1
|
||||
circle 834 1
|
||||
15.8180 -48.1088 sgp.config.834.fld 1 3 16.32 -48 6 31.7 1
|
||||
circle 835 1
|
||||
36.2543 -13.5915 sgp.config.835.fld 2 25 1.03 -13 35 29.4 1
|
||||
circle 836 1
|
||||
18.9458 -40.3299 sgp.config.836.fld 1 15 46.99 -40 19 47.6 1
|
||||
circle 837 1
|
||||
64.8657 -61.4518 sgp.config.837.fld 4 19 27.77 -61 27 6.5 1
|
||||
circle 838 1
|
||||
30.5857 -51.3187 sgp.config.838.fld 2 2 20.57 -51 19 7.3 1
|
||||
circle 839 1
|
||||
2.8627 -49.4216 sgp.config.839.fld 0 11 27.05 -49 25 17.8 1
|
||||
circle 840 1
|
||||
33.2059 -11.3571 sgp.config.840.fld 2 12 49.42 -11 21 25.6 1
|
||||
circle 841 1
|
||||
21.0863 -20.1440 sgp.config.841.fld 1 24 20.71 -20 8 38.4 1
|
||||
circle 842 1
|
||||
16.1990 -7.9172 sgp.config.842.fld 1 4 47.76 -07 55 1.9 1
|
||||
circle 844 1
|
||||
26.0970 -18.6598 sgp.config.844.fld 1 44 23.28 -18 39 35.3 1
|
||||
circle 845 1
|
||||
42.0417 -56.6082 sgp.config.845.fld 2 48 10.01 -56 36 29.5 1
|
||||
circle 846 1
|
||||
22.7285 -5.4733 sgp.config.846.fld 1 30 54.84 -05 28 23.9 1
|
||||
circle 848 1
|
||||
59.5060 -36.7369 sgp.config.848.fld 3 58 1.44 -36 44 12.8 1
|
||||
circle 849 1
|
||||
42.0604 -40.7353 sgp.config.849.fld 2 48 14.50 -40 44 7.1 1
|
||||
circle 850 1
|
||||
23.8540 -42.8123 sgp.config.850.fld 1 35 24.96 -42 48 44.3 1
|
||||
circle 851 1
|
||||
323.1814 -50.2335 sgp.config.851.fld 21 32 43.54 -50 14 0.6 1
|
||||
circle 852 1
|
||||
41.9463 -16.8963 sgp.config.852.fld 2 47 47.11 -16 53 46.7 1
|
||||
circle 854 1
|
||||
29.5867 -16.1533 sgp.config.854.fld 1 58 20.81 -16 9 11.9 1
|
||||
circle 855 1
|
||||
339.6088 -15.2569 sgp.config.855.fld 22 38 26.12 -15 15 24.8 1
|
||||
circle 856 1
|
||||
16.2678 -19.7305 sgp.config.856.fld 1 5 4.27 -19 43 49.8 1
|
||||
circle 857 1
|
||||
38.0181 -54.2021 sgp.config.857.fld 2 32 4.34 -54 12 7.6 1
|
||||
circle 858 1
|
||||
4.6715 -12.3426 sgp.config.858.fld 0 18 41.16 -12 20 33.4 1
|
||||
circle 859 1
|
||||
50.3527 -53.4031 sgp.config.859.fld 3 21 24.65 -53 24 11.2 1
|
||||
circle 860 1
|
||||
44.9413 -51.3790 sgp.config.860.fld 2 59 45.91 -51 22 44.4 1
|
||||
circle 861 1
|
||||
316.8645 -34.5010 sgp.config.861.fld 21 7 27.48 -34 30 3.6 1
|
||||
circle 863 1
|
||||
39.1184 -65.9401 sgp.config.863.fld 2 36 28.42 -65 56 24.4 1
|
||||
circle 864 1
|
||||
63.0810 -45.3689 sgp.config.864.fld 4 12 19.44 -45 22 8.0 1
|
||||
circle 865 1
|
||||
24.6245 -1.8392 sgp.config.865.fld 1 38 29.88 -01 50 21.1 1
|
||||
circle 867 1
|
||||
6.0737 -17.0621 sgp.config.867.fld 0 24 17.69 -17 3 43.6 1
|
||||
circle 868 1
|
||||
67.6760 -56.6652 sgp.config.868.fld 4 30 42.24 -56 39 54.7 1
|
||||
circle 869 1
|
||||
0.8024 -5.1448 sgp.config.869.fld 0 3 12.58 -05 8 41.3 1
|
||||
circle 871 1
|
||||
346.2206 -12.9280 sgp.config.871.fld 23 4 52.95 -12 55 40.8 1
|
||||
circle 873 1
|
||||
340.4737 -71.6716 sgp.config.873.fld 22 41 53.70 -71 40 17.8 1
|
||||
circle 875 1
|
||||
39.1334 -47.1348 sgp.config.875.fld 2 36 32.02 -47 8 5.3 1
|
||||
circle 876 1
|
||||
316.5638 -46.1378 sgp.config.876.fld 21 6 15.31 -46 8 16.1 1
|
||||
circle 877 1
|
||||
62.2014 -54.6269 sgp.config.877.fld 4 8 48.33 -54 37 36.8 1
|
||||
circle 878 1
|
||||
11.8986 -65.8913 sgp.config.878.fld 0 47 35.66 -65 53 28.6 1
|
||||
circle 880 1
|
||||
72.9177 -48.1343 sgp.config.880.fld 4 51 40.25 -48 8 3.5 1
|
||||
circle 881 1
|
||||
352.2521 -19.2049 sgp.config.881.fld 23 29 0.51 -19 12 17.6 1
|
||||
circle 882 1
|
||||
353.4478 -65.9403 sgp.config.882.fld 23 33 47.48 -65 56 25.1 1
|
||||
circle 883 1
|
||||
358.3302 -40.5562 sgp.config.883.fld 23 53 19.25 -40 33 22.3 1
|
||||
circle 886 1
|
||||
347.1119 -9.4770 sgp.config.886.fld 23 8 26.86 -09 28 37.2 1
|
||||
circle 888 1
|
||||
356.9998 -10.3357 sgp.config.888.fld 23 47 59.95 -10 20 8.5 1
|
||||
circle 889 1
|
||||
55.6778 -46.8564 sgp.config.889.fld 3 42 42.67 -46 51 23.0 1
|
||||
circle 890 1
|
||||
8.1848 -45.4782 sgp.config.890.fld 0 32 44.35 -45 28 41.5 1
|
||||
circle 892 1
|
||||
80.5307 -28.3148 sgp.config.892.fld 5 22 7.37 -28 18 53.3 1
|
||||
circle 893 1
|
||||
5.8694 -40.8718 sgp.config.893.fld 0 23 28.66 -40 52 18.5 1
|
||||
circle 894 1
|
||||
62.7780 -38.5103 sgp.config.894.fld 4 11 6.72 -38 30 37.1 1
|
||||
circle 896 1
|
||||
336.2522 -39.9065 sgp.config.896.fld 22 25 0.52 -39 54 23.4 1
|
||||
circle 897 1
|
||||
346.1459 -0.9470 sgp.config.897.fld 23 4 35.02 -00 56 49.2 1
|
||||
circle 898 1
|
||||
16.8568 -14.5923 sgp.config.898.fld 1 7 25.63 -14 35 32.3 1
|
||||
circle 899 1
|
||||
322.0648 -69.1936 sgp.config.899.fld 21 28 15.55 -69 11 37.0 1
|
||||
circle 900 1
|
||||
318.7238 -19.8677 sgp.config.900.fld 21 14 53.71 -19 52 3.7 1
|
||||
circle 901 1
|
||||
19.0499 -8.9685 sgp.config.901.fld 1 16 11.98 -08 58 6.6 1
|
||||
circle 902 1
|
||||
18.0577 -61.6178 sgp.config.902.fld 1 12 13.85 -61 37 4.1 1
|
||||
circle 904 1
|
||||
1.3485 -15.5943 sgp.config.904.fld 0 5 23.64 -15 35 39.5 1
|
||||
circle 905 1
|
||||
317.0651 -49.3795 sgp.config.905.fld 21 8 15.62 -49 22 46.2 1
|
||||
circle 906 1
|
||||
350.1232 -13.1108 sgp.config.906.fld 23 20 29.57 -13 6 38.9 1
|
||||
circle 907 1
|
||||
61.9460 -42.2721 sgp.config.907.fld 4 7 47.04 -42 16 19.6 1
|
||||
circle 908 1
|
||||
345.4777 -61.8456 sgp.config.908.fld 23 1 54.65 -61 50 44.2 1
|
||||
circle 909 1
|
||||
79.0042 -31.6770 sgp.config.909.fld 5 16 1.01 -31 40 37.2 1
|
||||
circle 910 1
|
||||
337.7028 -46.6367 sgp.config.910.fld 22 30 48.67 -46 38 12.1 1
|
||||
circle 911 1
|
||||
332.1555 -43.1800 sgp.config.911.fld 22 8 37.32 -43 10 48.0 1
|
||||
circle 912 1
|
||||
69.6342 -30.3763 sgp.config.912.fld 4 38 32.21 -30 22 34.7 1
|
||||
circle 913 1
|
||||
40.3955 -61.6712 sgp.config.913.fld 2 41 34.92 -61 40 16.3 1
|
||||
circle 915 1
|
||||
343.2654 -54.6044 sgp.config.915.fld 22 53 3.70 -54 36 15.8 1
|
||||
circle 916 1
|
||||
355.3967 -54.7355 sgp.config.916.fld 23 41 35.21 -54 44 7.8 1
|
||||
circle 917 1
|
||||
316.8544 -41.3988 sgp.config.917.fld 21 7 25.05 -41 23 55.7 1
|
||||
circle 918 1
|
||||
323.7054 -61.1313 sgp.config.918.fld 21 34 49.30 -61 7 52.7 1
|
||||
circle 920 1
|
||||
33.1725 -42.2960 sgp.config.920.fld 2 12 41.40 -42 17 45.6 1
|
||||
circle 921 1
|
||||
52.3893 -13.0315 sgp.config.921.fld 3 29 33.43 -13 1 53.4 1
|
||||
circle 922 1
|
||||
62.7540 -33.0507 sgp.config.922.fld 4 11 0.96 -33 3 2.5 1
|
||||
circle 924 1
|
||||
342.9448 -17.8139 sgp.config.924.fld 22 51 46.75 -17 48 50.0 1
|
||||
circle 925 1
|
||||
329.1087 -47.1123 sgp.config.925.fld 21 56 26.09 -47 6 44.3 1
|
||||
circle 926 1
|
||||
326.5018 -17.1737 sgp.config.926.fld 21 46 0.43 -17 10 25.3 1
|
1289
masks/2df100k/centres.sgp
Normal file
1289
masks/2df100k/centres.sgp
Normal file
File diff suppressed because it is too large
Load diff
73
masks/2df100k/ngp_fields.dat
Normal file
73
masks/2df100k/ngp_fields.dat
Normal file
|
@ -0,0 +1,73 @@
|
|||
unit d
|
||||
skip 0
|
||||
RA & Dec (B1950) limits of NGP fields
|
||||
rectangle id number is the UKST field number
|
||||
RAmin RAmax Decmin Decmax
|
||||
rectangle 780
|
||||
142.5 147.5 -7.5 -2.5
|
||||
rectangle 781
|
||||
147.5 152.5 -7.5 -2.5
|
||||
rectangle 782
|
||||
152.5 157.5 -7.5 -2.5
|
||||
rectangle 783
|
||||
157.5 162.5 -7.5 -2.5
|
||||
rectangle 784
|
||||
162.5 167.5 -7.5 -2.5
|
||||
rectangle 785
|
||||
167.5 172.5 -7.5 -2.5
|
||||
rectangle 786
|
||||
172.5 177.5 -7.5 -2.5
|
||||
rectangle 787
|
||||
177.5 182.5 -7.5 -2.5
|
||||
rectangle 788
|
||||
182.5 187.5 -7.5 -2.5
|
||||
rectangle 789
|
||||
187.5 192.5 -7.5 -2.5
|
||||
rectangle 790
|
||||
192.5 197.5 -7.5 -2.5
|
||||
rectangle 791
|
||||
197.5 202.5 -7.5 -2.5
|
||||
rectangle 792
|
||||
202.5 207.5 -7.5 -2.5
|
||||
rectangle 793
|
||||
207.5 212.5 -7.5 -2.5
|
||||
rectangle 794
|
||||
212.5 217.5 -7.5 -2.5
|
||||
rectangle 795
|
||||
217.5 222.5 -7.5 -2.5
|
||||
rectangle 796
|
||||
222.5 227.5 -7.5 -2.5
|
||||
rectangle 852
|
||||
142.5 147.5 -2.5 2.5
|
||||
rectangle 853
|
||||
147.5 152.5 -2.5 2.5
|
||||
rectangle 854
|
||||
152.5 157.5 -2.5 2.5
|
||||
rectangle 855
|
||||
157.5 162.5 -2.5 2.5
|
||||
rectangle 856
|
||||
162.5 167.5 -2.5 2.5
|
||||
rectangle 857
|
||||
167.5 172.5 -2.5 2.5
|
||||
rectangle 858
|
||||
172.5 177.5 -2.5 2.5
|
||||
rectangle 859
|
||||
177.5 182.5 -2.5 2.5
|
||||
rectangle 860
|
||||
182.5 187.5 -2.5 2.5
|
||||
rectangle 861
|
||||
187.5 192.5 -2.5 2.5
|
||||
rectangle 862
|
||||
192.5 197.5 -2.5 2.5
|
||||
rectangle 863
|
||||
197.5 202.5 -2.5 2.5
|
||||
rectangle 864
|
||||
202.5 207.5 -2.5 2.5
|
||||
rectangle 865
|
||||
207.5 212.5 -2.5 2.5
|
||||
rectangle 866
|
||||
212.5 217.5 -2.5 2.5
|
||||
rectangle 867
|
||||
217.5 222.5 -2.5 2.5
|
||||
rectangle 868
|
||||
222.5 227.5 -2.5 2.5
|
423
masks/2df100k/ngpholes.dat
Normal file
423
masks/2df100k/ngpholes.dat
Normal file
|
@ -0,0 +1,423 @@
|
|||
unit r
|
||||
skip 0
|
||||
vertices id number is the UKST field number containing the hole
|
||||
vertices 781 4
|
||||
r 2.66821790 -0.12406345 2.66832256 -0.14228499 2.65537595 -0.14233855 2.65527129 -0.12411701
|
||||
vertices 781 4
|
||||
r 2.63132644 -0.12931894 2.63133001 -0.13210687 2.62852311 -0.13210959 2.62851954 -0.12932166
|
||||
vertices 781 4
|
||||
r 2.57623649 -0.13565867 2.57621360 -0.13994665 2.57254052 -0.13992918 2.57256341 -0.13564120
|
||||
vertices 781 4
|
||||
r 2.65618539 -0.07651415 2.65619278 -0.07908707 2.65361524 -0.07909450 2.65360785 -0.07652158
|
||||
vertices 781 4
|
||||
r 2.57030177 -0.06874154 2.57029176 -0.07131410 2.56728673 -0.07130125 2.56729674 -0.06872869
|
||||
vertices 782 4
|
||||
r 2.75887585 -0.12411039 2.75900769 -0.14509496 2.74349570 -0.14516138 2.74336386 -0.12417681
|
||||
vertices 782 4
|
||||
r 2.65350962 -0.07534657 2.65349674 -0.07827998 2.65031790 -0.07826469 2.65033078 -0.07533128
|
||||
vertices 782 4
|
||||
r 2.73880291 -0.03932499 2.73880887 -0.04271062 2.73518491 -0.04271786 2.73517895 -0.03933223
|
||||
vertices 782 4
|
||||
r 2.71094942 -0.06351130 2.71095014 -0.06712329 2.70732046 -0.06712331 2.70731974 -0.06351132
|
||||
vertices 782 4
|
||||
r 2.68470502 -0.13639978 2.68469214 -0.14114018 2.68012332 -0.14112790 2.68013620 -0.13638750
|
||||
vertices 783 4
|
||||
r 2.84502649 -0.12440749 2.84515309 -0.14629315 2.83260703 -0.14634373 2.83248043 -0.12445807
|
||||
vertices 783 4
|
||||
r 2.82503104 -0.06286646 2.82503533 -0.06534908 2.82163310 -0.06535542 2.82162881 -0.06287280
|
||||
vertices 783 4
|
||||
r 2.75812602 -0.06078864 2.75811911 -0.06304552 2.75539780 -0.06303605 2.75540471 -0.06077917
|
||||
vertices 784 4
|
||||
r 2.93216801 -0.12559885 2.93236899 -0.14500438 2.91890764 -0.14511830 2.91870666 -0.12571277
|
||||
vertices 785 4
|
||||
r 3.02011371 -0.12482832 3.02025795 -0.14513403 3.00725031 -0.14520272 3.00710607 -0.12489701
|
||||
vertices 785 4
|
||||
r 2.94217420 -0.05501755 2.94216990 -0.05930594 2.93695401 -0.05929803 2.93695831 -0.05500964
|
||||
vertices 785 4
|
||||
r 3.00382423 -0.04389262 3.00383282 -0.04682642 3.00088692 -0.04683594 3.00087833 -0.04390214
|
||||
vertices 785 4
|
||||
r 2.94276118 -0.11979602 2.94275570 -0.12250452 2.93933463 -0.12249786 2.93934011 -0.11978936
|
||||
vertices 785 4
|
||||
r 2.94148731 -0.06133633 2.94148397 -0.06427047 2.93808079 -0.06426517 2.93808413 -0.06133103
|
||||
vertices 786 4
|
||||
r 3.10685420 -0.12469053 3.10699248 -0.14544784 3.09330558 -0.14551330 3.09316730 -0.12475599
|
||||
vertices 786 4
|
||||
r 3.09482408 -0.08638495 3.09483814 -0.08999563 3.09142947 -0.09000796 3.09141541 -0.08639728
|
||||
vertices 786 4
|
||||
r 3.06212759 -0.11129116 3.06213117 -0.11445137 3.05871439 -0.11445408 3.05871081 -0.11129387
|
||||
vertices 787 4
|
||||
r 3.19101572 -0.12326056 3.19112420 -0.14169440 3.17861223 -0.14174815 3.17850375 -0.12331431
|
||||
vertices 788 4
|
||||
r 3.27852798 -0.12345428 3.27860594 -0.14253445 3.26609134 -0.14256493 3.26601338 -0.12348476
|
||||
vertices 789 4
|
||||
r 3.36607981 -0.12416673 3.36615920 -0.14260125 3.35386085 -0.14263460 3.35378146 -0.12420008
|
||||
vertices 789 4
|
||||
r 3.34382176 -0.09548403 3.34382391 -0.09784263 3.34081221 -0.09784473 3.34081006 -0.09548613
|
||||
vertices 789 4
|
||||
r 3.29240704 -0.09562166 3.29239368 -0.09905244 3.28873657 -0.09903784 3.28874993 -0.09560706
|
||||
vertices 789 4
|
||||
3.30303764 -0.13661525 3.30304670 -0.13382755 3.30045390 -0.13381934 3.30044484 -0.13660704
|
||||
vertices 790 4
|
||||
r 3.45339465 -0.12410772 3.45351815 -0.14254193 3.44035697 -0.14260737 3.44023347 -0.12417316
|
||||
vertices 790 4
|
||||
r 3.43728733 -0.09030936 3.43730307 -0.09438301 3.43300271 -0.09439790 3.43298697 -0.09032425
|
||||
vertices 790 4
|
||||
r 3.39192486 -0.06057602 3.39192438 -0.06293487 3.38935017 -0.06293388 3.38935065 -0.06057503
|
||||
vertices 791 4
|
||||
r 3.54043293 -0.12432241 3.54055548 -0.14189968 3.52847290 -0.14196425 3.52835035 -0.12438698
|
||||
vertices 792 4
|
||||
r 3.62993860 -0.12559499 3.63006353 -0.14454730 3.61682701 -0.14461033 3.61670208 -0.12565802
|
||||
vertices 792 4
|
||||
r 3.53008294 -0.10374759 3.53006768 -0.10713226 3.52642488 -0.10711604 3.52644014 -0.10373137
|
||||
vertices 792 4
|
||||
r 3.58494329 -0.09029810 3.58494544 -0.09278111 3.58244396 -0.09278288 3.58244181 -0.09029987
|
||||
vertices 792 4
|
||||
r 3.54629064 -0.08823181 3.54628444 -0.09071443 3.54355621 -0.09070699 3.54356241 -0.08822437
|
||||
vertices 793 4
|
||||
r 3.71790528 -0.12648694 3.71802306 -0.14569148 3.70540476 -0.14574687 3.70528698 -0.12654233
|
||||
vertices 794 4
|
||||
r 3.80519867 -0.12385401 3.80530787 -0.14551306 3.79161692 -0.14555706 3.79150772 -0.12389801
|
||||
vertices 794 4
|
||||
r 3.78666067 -0.09953583 3.78666759 -0.10292099 3.78257084 -0.10292748 3.78256392 -0.09954232
|
||||
vertices 794 4
|
||||
r 3.72384667 -0.09856247 3.72382712 -0.10330195 3.71927547 -0.10328274 3.71929502 -0.09854326
|
||||
vertices 794 4
|
||||
r 3.80474210 -0.05707217 3.80406475 -0.05842773 3.75622821 -0.03928146 3.75690556 -0.03792590
|
||||
vertices 795 4
|
||||
r 3.89277601 -0.12472387 3.89290142 -0.14525901 3.87898398 -0.14531868 3.87885857 -0.12478354
|
||||
vertices 795 4
|
||||
r 3.84440112 -0.09256307 3.84440184 -0.09752996 3.83826209 -0.09752882 3.83826137 -0.09256193
|
||||
vertices 853 4
|
||||
r 2.64784551 0.02756137 2.64784169 0.02424641 2.64452552 0.02424927 2.64452934 0.02756423
|
||||
vertices 853 4
|
||||
r 2.65047479 0.04921357 2.65047121 0.04711107 2.64836669 0.04711340 2.64837027 0.04921590
|
||||
vertices 853 4
|
||||
r 2.63952613 -0.05460752 2.63952637 -0.05680236 2.63732910 -0.05680182 2.63732886 -0.05460698
|
||||
vertices 853 4
|
||||
r 2.64203715 0.02253745 2.64203501 0.02041623 2.63991333 0.02041789 2.63991547 0.02253911
|
||||
vertices 853 4
|
||||
r 2.62088943 -0.01342876 2.62088728 -0.01667147 2.61764431 -0.01666940 2.61764646 -0.01342669
|
||||
vertices 853 4
|
||||
r 2.64329195 0.00009188 2.64329052 -0.00210501 2.64109325 -0.00210366 2.64109468 0.00009323
|
||||
vertices 853 4
|
||||
r 2.64333391 -0.00222753 2.64333248 -0.00452715 2.64103270 -0.00452579 2.64103413 -0.00222617
|
||||
vertices 853 4
|
||||
r 2.61457205 -0.01309664 2.61457038 -0.01534584 2.61232090 -0.01534433 2.61232257 -0.01309513
|
||||
vertices 853 4
|
||||
r 2.57848334 0.03504629 2.57848406 0.03188842 2.57532406 0.03188909 2.57532334 0.03504696
|
||||
vertices 853 4
|
||||
r 2.57128835 0.00695299 2.57128716 0.00472108 2.56905437 0.00472242 2.56905556 0.00695433
|
||||
vertices 853 4
|
||||
r 2.56770062 -0.02812330 2.56769538 -0.03118760 2.56462884 -0.03118391 2.56463408 -0.02811961
|
||||
vertices 853 4
|
||||
r 2.60464025 -0.05048667 2.60463643 -0.05364583 2.60147428 -0.05364291 2.60147810 -0.05048375
|
||||
vertices 853 4
|
||||
r 2.60292768 -0.04984500 2.60292482 -0.05205278 2.60071492 -0.05205070 2.60071778 -0.04984292
|
||||
vertices 853 4
|
||||
r 2.59767246 -0.02932164 2.59766841 -0.03302781 2.59396077 -0.03302450 2.59396482 -0.02931833
|
||||
vertices 853 4
|
||||
r 2.65945268 0.01407794 2.65945125 0.01250736 2.65809918 0.01250841 2.65810061 0.01407899
|
||||
vertices 853 4
|
||||
r 2.64772558 0.00264242 2.64771938 -0.00745565 2.63757968 -0.00744924 2.63758588 0.00264883
|
||||
vertices 853 4
|
||||
2.67055988 -0.03685420 2.65695882 -0.04358517 2.65695501 -0.06534540 2.67055607 -0.05861443
|
||||
vertices 853 4
|
||||
2.64320803 -0.05951645 2.55936861 -0.02264640 2.55598449 -0.02331899 2.63982391 -0.06018904
|
||||
vertices 854 4
|
||||
r 2.73940635 0.03344542 2.73940110 0.03094996 2.73690438 0.03095441 2.73690963 0.03344987
|
||||
vertices 854 4
|
||||
r 2.74010205 -0.04254072 2.74010038 -0.04813975 2.73449731 -0.04813434 2.73449898 -0.04253531
|
||||
xvertices 854 4
|
||||
xr 2.74174929 -0.00670275 2.74174643 -0.00912757 2.73932123 -0.00912433 2.73932409 -0.00669951
|
||||
xvertices 854 4
|
||||
xr 2.74227333 -0.00429984 2.74226832 -0.00831136 2.73825621 -0.00830588 2.73826122 -0.00429436
|
||||
vertices 854 4
|
||||
r 2.74347067 0.04589057 2.74346256 0.04269571 2.74026513 0.04270202 2.74027324 0.04589688
|
||||
vertices 854 4
|
||||
r 2.74841142 -0.04629787 2.74841142 -0.04936826 2.74533796 -0.04936592 2.74533796 -0.04629553
|
||||
vertices 854 4
|
||||
r 2.71134472 -0.00997658 2.71133995 -0.01367315 2.70764375 -0.01366783 2.70764852 -0.00997126
|
||||
vertices 854 4
|
||||
r 2.71273088 -0.03544703 2.71272707 -0.03865546 2.70951748 -0.03865102 2.70952129 -0.03544259
|
||||
vertices 854 4
|
||||
r 2.71656919 -0.00865078 2.71656632 -0.01084831 2.71436905 -0.01084520 2.71437192 -0.00864767
|
||||
vertices 854 4
|
||||
r 2.71688676 -0.00156215 2.71688390 -0.00367050 2.71477580 -0.00366746 2.71477866 -0.00155911
|
||||
vertices 854 4
|
||||
r 2.72581339 -0.01155726 2.72580910 -0.01520245 2.72216392 -0.01519749 2.72216821 -0.01155230
|
||||
vertices 854 4
|
||||
r 2.70093822 0.00176205 2.70093513 -0.00045505 2.69871808 -0.00045181 2.69872117 0.00176529
|
||||
vertices 854 4
|
||||
r 2.70007443 0.04872310 2.70006967 0.04483622 2.69618035 0.04484146 2.69618511 0.04872834
|
||||
vertices 854 4
|
||||
r 2.70410180 -0.00794300 2.70409870 -0.01019508 2.70184660 -0.01019178 2.70184970 -0.00793970
|
||||
vertices 854 4
|
||||
r 2.69295979 0.00199369 2.69295669 -0.00025389 2.69070911 -0.00025060 2.69071221 0.00199698
|
||||
vertices 854 4
|
||||
r 2.70999146 0.03681353 2.70998931 0.03546710 2.70841169 0.03546947 2.70841384 0.03681590
|
||||
vertices 854 4
|
||||
r 2.74372530 -0.00407581 2.74371839 -0.00990893 2.73808647 -0.00990123 2.73809338 -0.00406811
|
||||
vertices 854 4
|
||||
r 2.71497226 0.05027003 2.71496701 0.04712840 2.71135950 0.04713410 2.71136475 0.05027573
|
||||
vertices 854 4
|
||||
2.67544031 -0.01856136 2.65133452 -0.01717305 2.65088105 -0.01874289 2.67498684 -0.02013120
|
||||
vertices 854 4
|
||||
2.75924969 -0.03527396 2.74414611 -0.04378630 2.74392795 -0.06666446 2.75903153 -0.05815212
|
||||
vertices 855 4
|
||||
r 2.82200050 -0.02987207 2.82200217 -0.03219722 2.81967616 -0.03219790 2.81967449 -0.02987275
|
||||
vertices 855 4
|
||||
r 2.83306456 -0.05079566 2.83306789 -0.05291061 2.83095073 -0.05291209 2.83094740 -0.05079714
|
||||
vertices 855 4
|
||||
r 2.83883762 0.02550945 2.83883548 0.02207223 2.83539677 0.02207348 2.83539891 0.02551070
|
||||
vertices 855 4
|
||||
r 2.83995342 0.00235168 2.83995366 0.00015759 2.83775902 0.00015762 2.83775878 0.00235171
|
||||
vertices 855 4
|
||||
r 2.84444284 -0.03467913 2.84444761 -0.03814450 2.84097934 -0.03814664 2.84097457 -0.03468127
|
||||
vertices 855 4
|
||||
r 2.75917244 0.04640453 2.75917482 0.04425215 2.75702071 0.04425117 2.75701833 0.04640355
|
||||
vertices 855 4
|
||||
r 2.78841925 -0.02596832 2.78841925 -0.02817264 2.78621459 -0.02817249 2.78621459 -0.02596817
|
||||
vertices 855 4
|
||||
r 2.78953815 0.00101910 2.78953815 -0.00144908 2.78480768 -0.00144893 2.78480768 0.00101925
|
||||
vertices 855 4
|
||||
r 2.83188725 -0.00144900 2.83188748 -0.00279492 2.83053564 -0.00279497 2.83053541 -0.00144905
|
||||
vertices 855 4
|
||||
2.84543061 -0.03665921 2.83169127 -0.04362146 2.83150554 -0.06560067 2.84524488 -0.05863842
|
||||
vertices 855 4
|
||||
r 2.84358215 0.00272389 2.79925942 -0.05744972 2.79925966 -0.05661664 2.84358239 0.00355697
|
||||
vertices 856 4
|
||||
2.89606452 0.00474555 2.89373064 0.00709233 2.89357185 0.00415802 2.89590573 0.00181124
|
||||
vertices 856 4
|
||||
r 2.93251276 0.00609753 2.93251228 0.00135943 2.92888999 0.00135973 2.92889047 0.00609783
|
||||
vertices 856 4
|
||||
r 2.88542461 -0.00654037 2.88542485 -0.01105489 2.88067079 -0.01105473 2.88067055 -0.00654021
|
||||
vertices 856 4
|
||||
r 2.87840605 -0.03881934 2.87840581 -0.04310802 2.87410211 -0.04310759 2.87410235 -0.03881891
|
||||
vertices 856 4
|
||||
r 2.84965158 0.02032030 2.84965324 0.01693487 2.84625744 0.01693439 2.84625578 0.02031982
|
||||
vertices 856 4
|
||||
r 2.84103870 -0.03248810 2.84103513 -0.03677594 2.83673263 -0.03677359 2.83673620 -0.03248575
|
||||
vertices 856 4
|
||||
r 2.83899784 -0.03542077 2.83899498 -0.03835450 2.83559799 -0.03835243 2.83560085 -0.03541870
|
||||
vertices 856 4
|
||||
r 2.88950062 -0.01714949 2.88950086 -0.02030963 2.88610459 -0.02030968 2.88610435 -0.01714954
|
||||
vertices 856 4
|
||||
r 2.89765739 0.03882886 2.89765930 0.04311731 2.90173602 0.04311620 2.90173411 0.03882775
|
||||
vertices 856 4
|
||||
r 2.83379960 0.02573311 2.83380222 0.02189715 2.83017921 0.02189601 2.83017659 0.02573197
|
||||
vertices 856 4
|
||||
r 2.88293433 0.00339179 2.88293433 0.00655197 2.88610363 0.00655182 2.88610363 0.00339164
|
||||
vertices 856 4
|
||||
r 2.90874720 -0.02121026 2.90874553 -0.01805045 2.91191506 -0.01804974 2.91191673 -0.02120955
|
||||
vertices 856 4
|
||||
r 2.87410522 0.00722953 2.87410522 0.00429504 2.87116218 0.00429511 2.87116218 0.00722960
|
||||
vertices 856 4
|
||||
r 2.85622096 0.00045872 2.85622096 -0.00224977 2.85327816 -0.00224957 2.85327816 0.00045892
|
||||
vertices 856 4
|
||||
r 2.90761900 -0.02910957 2.90762019 -0.03159272 2.90467596 -0.03159372 2.90467477 -0.02911057
|
||||
vertices 856 4
|
||||
2.93366861 -0.03564240 2.91895700 -0.04490332 2.91763545 -0.06724101 2.93234706 -0.05798009
|
||||
vertices 857 4
|
||||
r 2.99323797 -0.02452346 2.99323511 -0.02764150 2.99011636 -0.02763775 2.99011922 -0.02451971
|
||||
vertices 857 4
|
||||
r 2.99399757 -0.00977041 2.99399376 -0.01291589 2.99084807 -0.01291174 2.99085188 -0.00976626
|
||||
vertices 857 4
|
||||
r 3.00464010 -0.04829350 3.00463939 -0.05179959 3.00112987 -0.05179673 3.00113058 -0.04829064
|
||||
vertices 857 4
|
||||
r 3.01166701 -0.02651267 3.01166582 -0.02867279 3.00950456 -0.02867064 3.00950575 -0.02651052
|
||||
vertices 857 4
|
||||
r 2.97201896 0.00909177 2.97201443 0.00595575 2.96887875 0.00596026 2.96888328 0.00909628
|
||||
vertices 857 4
|
||||
r 2.97551847 0.03266943 2.97551322 0.02930868 2.97215175 0.02931370 2.97215700 0.03267445
|
||||
vertices 857 4
|
||||
r 2.97978663 -0.03391482 2.97978306 -0.03705825 2.97663856 -0.03705420 2.97664213 -0.03391077
|
||||
vertices 857 4
|
||||
r 2.93160129 -0.01713118 2.93159723 -0.01932165 2.92940640 -0.01931798 2.92941046 -0.01712751
|
||||
vertices 857 4
|
||||
r 2.92842770 0.00578536 2.92842245 0.00187162 2.92450809 0.00187708 2.92451334 0.00579082
|
||||
vertices 857 4
|
||||
r 2.92806768 0.04784638 2.92806721 0.04567375 2.92589260 0.04567555 2.92589307 0.04784818
|
||||
vertices 857 4
|
||||
r 2.92508888 -0.01936164 2.92508316 -0.02221885 2.92222500 -0.02221384 2.92223072 -0.01935663
|
||||
vertices 857 4
|
||||
r 2.91665530 -0.01914201 2.91664934 -0.02194231 2.91384769 -0.02193722 2.91385365 -0.01913692
|
||||
vertices 857 4
|
||||
r 2.95357060 -0.02411436 2.95356679 -0.02645032 2.95123053 -0.02644667 2.95123434 -0.02411071
|
||||
vertices 857 4
|
||||
r 2.95146823 0.03664562 2.95146561 0.03418398 2.94900298 0.03418704 2.94900560 0.03664868
|
||||
vertices 857 4
|
||||
r 2.94450092 0.04382383 2.94449782 0.04023932 2.94091105 0.04024325 2.94091415 0.04382776
|
||||
vertices 857 4
|
||||
3.02086139 -0.02302798 3.00846529 -0.02705376 3.00868630 -0.04208237 3.02108240 -0.03805659
|
||||
vertices 857 4
|
||||
r 3.02086067 -0.05286095 3.00800657 -0.04836694 3.00800276 -0.03513270 3.02085686 -0.03962671
|
||||
vertices 857 4
|
||||
r 3.02423763 -0.03334893 3.02423882 -0.04344197 3.01590013 -0.04343520 3.01589894 -0.03334216
|
||||
vertices 858 4
|
||||
r 3.08539510 0.00054410 3.08539343 -0.00183898 3.08301020 -0.00183716 3.08301187 0.00054592
|
||||
vertices 858 4
|
||||
r 3.09301567 0.03889141 3.09300923 0.03505953 3.08917498 0.03506429 3.08918142 0.03889617
|
||||
vertices 858 4
|
||||
r 3.05481768 0.04963206 3.05481601 0.04751977 3.05270219 0.04752146 3.05270386 0.04963375
|
||||
vertices 858 4
|
||||
r 3.00675583 -0.02650647 3.00675249 -0.02866894 3.00458908 -0.02866622 3.00459242 -0.02650375
|
||||
vertices 858 4
|
||||
r 2.99946904 -0.04504572 2.99946380 -0.04729204 2.99721528 -0.04728829 2.99722052 -0.04504197
|
||||
vertices 858 4
|
||||
r 3.04602551 0.02430114 3.04602361 0.02104623 3.04276849 0.02104860 3.04277039 0.02430351
|
||||
vertices 858 4
|
||||
r 3.03695941 -0.03782450 3.03695560 -0.04125735 3.03352142 -0.04125381 3.03352523 -0.03782096
|
||||
vertices 858 4
|
||||
r 3.03050995 -0.00794710 3.03050637 -0.01192996 3.02652359 -0.01192645 3.02652717 -0.00794359
|
||||
vertices 858 4
|
||||
r 3.01596189 0.04595496 3.01596260 0.04371170 3.01325774 0.04371234 3.01325703 0.04595560
|
||||
vertices 858 4
|
||||
r 3.09550524 0.04166069 3.09549046 0.03331166 3.08733654 0.03332211 3.08735132 0.04167114
|
||||
vertices 858 4
|
||||
3.10676813 -0.03506339 3.09159732 -0.04386129 3.09161687 -0.06484308 3.10678768 -0.05604518
|
||||
vertices 859 4
|
||||
r 3.08961225 0.04035256 3.08961964 0.03493680 3.08599543 0.03493433 3.08598804 0.04035009
|
||||
vertices 859 4
|
||||
r 3.10322142 0.01711304 3.10322309 0.01350180 3.09960055 0.01350105 3.09959888 0.01711229
|
||||
vertices 859 4
|
||||
r 3.13288498 -0.01403721 3.13288474 -0.01652049 3.13016748 -0.01652040 3.13016772 -0.01403712
|
||||
vertices 859 4
|
||||
r 3.17546391 0.04104119 3.17546225 0.03878396 3.17319704 0.03878483 3.17319870 0.04104206
|
||||
vertices 859 4
|
||||
r 3.12631679 0.01598761 3.12631726 0.01395588 3.12427949 0.01395569 3.12427902 0.01598742
|
||||
vertices 859 4
|
||||
r 3.16752553 0.01756782 3.16752529 0.01576197 3.16548753 0.01576216 3.16548777 0.01756801
|
||||
vertices 859 4
|
||||
r 3.13967633 0.00763542 3.13967633 0.00605510 3.13786507 0.00605505 3.13786507 0.00763537
|
||||
vertices 859 4
|
||||
r 3.13537526 -0.02645378 3.13537502 -0.02871142 3.13333678 -0.02871133 3.13333702 -0.02645369
|
||||
vertices 859 4
|
||||
3.19539881 -0.03636635 3.18068814 -0.04675816 3.17891192 -0.06751974 3.19362259 -0.05712793
|
||||
vertices 860 4
|
||||
r 3.22092915 -0.00302056 3.22092938 -0.01128596 3.21140932 -0.01128630 3.21140909 -0.00302090
|
||||
vertices 860 4
|
||||
r 3.21251893 -0.00678878 3.21251869 -0.01147698 3.20882821 -0.01147699 3.20882845 -0.00678879
|
||||
vertices 860 4
|
||||
r 3.27763796 0.00797284 3.27763772 0.00616763 3.27428794 0.00616763 3.27428818 0.00797284
|
||||
vertices 860 4
|
||||
3.28269005 -0.03579921 3.26843047 -0.04370754 3.26710844 -0.06514381 3.28136802 -0.05723548
|
||||
vertices 861 4
|
||||
r 3.36291051 -0.01614496 3.36291170 -0.01817575 3.35974240 -0.01817681 3.35974121 -0.01614602
|
||||
vertices 861 4
|
||||
r 3.32193470 -0.02292546 3.32193494 -0.02518273 3.31967092 -0.02518292 3.31967068 -0.02292565
|
||||
vertices 861 4
|
||||
r 3.31757617 -0.01575456 3.31757712 -0.02683263 3.30669856 -0.02683282 3.30669761 -0.01575475
|
||||
vertices 861 4
|
||||
r 3.28568316 0.05381309 3.28568625 0.05087895 3.26416086 0.05086324 3.26415777 0.05379738
|
||||
vertices 861 4
|
||||
3.28070903 0.04478271 3.27798867 0.04658681 3.27708363 0.04545801 3.27980399 0.04365391
|
||||
vertices 861 4
|
||||
r 3.27258301 0.00777005 3.27258348 0.00641609 3.26918792 0.00641572 3.26918745 0.00776968
|
||||
vertices 861 4
|
||||
r 3.29770017 0.04004961 3.29770088 0.03824395 3.29588890 0.03824345 3.29588819 0.04004911
|
||||
vertices 861 4
|
||||
r 3.32849741 -0.00260962 3.32849765 -0.00441541 3.32691312 -0.00441551 3.32691288 -0.00260972
|
||||
vertices 861 4
|
||||
r 3.36834025 -0.00914862 3.36834383 -0.01614300 3.36608005 -0.01614357 3.36607647 -0.00914919
|
||||
vertices 861 4
|
||||
r 3.30223846 -0.00396500 3.30223846 -0.00577076 3.29997492 -0.00577077 3.29997492 -0.00396501
|
||||
vertices 861 4
|
||||
r 3.32080173 0.04253559 3.32080150 0.04027822 3.31876303 0.04027824 3.31876326 0.04253561
|
||||
vertices 862 4
|
||||
r 3.42654324 0.01687799 3.42654252 0.01463619 3.42430067 0.01463664 3.42430139 0.01687844
|
||||
vertices 862 4
|
||||
r 3.37672591 -0.01090994 3.37672496 -0.01401159 3.37362314 -0.01401084 3.37362409 -0.01090919
|
||||
vertices 862 4
|
||||
r 3.37298942 0.00764148 3.37298942 0.00462792 3.36997581 0.00462811 3.36997581 0.00764167
|
||||
vertices 862 4
|
||||
r 3.39324307 -0.01565892 3.39324260 -0.01781342 3.39108802 -0.01781304 3.39108849 -0.01565854
|
||||
vertices 862 4
|
||||
r 3.38428378 0.03579316 3.38428497 0.03222282 3.38071322 0.03222242 3.38071203 0.03579276
|
||||
vertices 862 4
|
||||
r 3.38134241 0.03280169 3.38134336 0.02976008 3.37830066 0.02975971 3.37829971 0.03280132
|
||||
vertices 862 4
|
||||
r 3.44420171 0.01388868 3.44420123 0.01254248 3.44262385 0.01254286 3.44262433 0.01388906
|
||||
vertices 862 4
|
||||
r 3.36283970 0.04598242 3.36284208 0.04396322 3.36036229 0.04396204 3.36035991 0.04598124
|
||||
vertices 862 4
|
||||
r 3.35857701 -0.01549361 3.35857558 -0.01796153 3.35406900 -0.01795971 3.35407043 -0.01549179
|
||||
vertices 862 4
|
||||
r 3.41445923 0.01142581 3.41445899 0.00940595 3.41243124 0.00940622 3.41243148 0.01142608
|
||||
vertices 862 4
|
||||
3.45683789 -0.03681149 3.44264412 -0.04422335 3.44268060 -0.06620713 3.45687437 -0.05879527
|
||||
vertices 863 4
|
||||
r 3.50929570 -0.01512715 3.50929737 -0.01903337 3.50544882 -0.01903455 3.50544715 -0.01512833
|
||||
vertices 863 4
|
||||
r 3.54302263 -0.00909099 3.54302812 -0.01698707 3.54053808 -0.01698811 3.54053259 -0.00909203
|
||||
vertices 863 4
|
||||
r 3.48868084 0.04506173 3.48868179 0.04122479 3.48483109 0.04122381 3.48483014 0.04506075
|
||||
vertices 863 4
|
||||
r 3.50023246 0.03197278 3.50023246 0.02926433 3.49751520 0.02926400 3.49751520 0.03197245
|
||||
vertices 863 4
|
||||
r 3.46854663 -0.00640266 3.46854687 -0.00888524 3.46605683 -0.00888556 3.46605659 -0.00640298
|
||||
vertices 863 4
|
||||
r 3.52513790 0.02610520 3.52513695 0.02339735 3.52264643 0.02339747 3.52264738 0.02610532
|
||||
vertices 863 4
|
||||
r 3.46311331 -0.01994403 3.46311283 -0.02174946 3.46130156 -0.02174942 3.46130204 -0.01994399
|
||||
vertices 864 4
|
||||
r 3.62661576 -0.01490809 3.62661672 -0.01693923 3.62435222 -0.01693954 3.62435126 -0.01490840
|
||||
vertices 864 4
|
||||
r 3.54666257 -0.00136312 3.54666042 -0.01127034 3.53680992 -0.01126813 3.53681207 -0.00136091
|
||||
vertices 864 4
|
||||
3.63139009 -0.03634519 3.61712909 -0.04605751 3.61648346 -0.06681905 3.63074446 -0.05710673
|
||||
vertices 864 4
|
||||
3.62968016 -0.01675257 3.62967992 -0.01608597 3.52264380 -0.01606739 3.52264404 -0.01673399
|
||||
vertices 865 4
|
||||
r 3.70476961 0.02063870 3.70476818 0.01754562 3.70167422 0.01754626 3.70167565 0.02063934
|
||||
vertices 865 4
|
||||
r 3.70817995 0.03097952 3.70817733 0.02781504 3.70501113 0.02781621 3.70501375 0.03098069
|
||||
vertices 865 4
|
||||
r 3.71808958 -0.00945368 3.71809101 -0.01280757 3.71473551 -0.01280834 3.71473408 -0.00945445
|
||||
vertices 865 4
|
||||
r 3.67638922 0.04825773 3.67638826 0.04507980 3.67320823 0.04508020 3.67320919 0.04825813
|
||||
vertices 865 4
|
||||
r 3.63885117 0.02561780 3.63885260 0.02214225 3.63537621 0.02214148 3.63537478 0.02561703
|
||||
vertices 865 4
|
||||
r 3.63082504 -0.02122913 3.63082290 -0.02488435 3.62716652 -0.02488331 3.62716866 -0.02122809
|
||||
vertices 865 4
|
||||
r 3.66445732 0.03669674 3.66445756 0.02960028 3.65735865 0.02959985 3.65735841 0.03669631
|
||||
vertices 865 4
|
||||
r 3.71896791 -0.02491817 3.71899724 -0.04712830 3.70772791 -0.04713352 3.70769858 -0.02492339
|
||||
vertices 866 4
|
||||
r 3.70717359 0.05085722 3.70718050 0.04634443 3.70310258 0.04634066 3.70309567 0.05085345
|
||||
vertices 866 4
|
||||
r 3.75656128 0.02785864 3.75656152 0.02582716 3.75452376 0.02582687 3.75452352 0.02785835
|
||||
vertices 866 4
|
||||
r 3.74026370 0.01228107 3.74026418 0.01002394 3.73800040 0.01002347 3.73799992 0.01228060
|
||||
vertices 866 4
|
||||
r 3.78012061 -0.03488244 3.78012395 -0.03894490 3.77604771 -0.03894691 3.77604437 -0.03488445
|
||||
vertices 866 4
|
||||
r 3.74003768 -0.03624738 3.74003720 -0.03918176 3.73709321 -0.03918173 3.73709369 -0.03624735
|
||||
vertices 866 4
|
||||
r 3.78757691 0.02086302 3.78757620 0.01815493 3.78463340 0.01815503 3.78463411 0.02086312
|
||||
vertices 866 4
|
||||
r 3.80545998 -0.00937088 3.80547285 -0.02629190 3.80185103 -0.02629328 3.80183816 -0.00937226
|
||||
vertices 866 4
|
||||
r 3.72507834 -0.05407554 3.72507668 -0.05588100 3.72349049 -0.05588042 3.72349215 -0.05407496
|
||||
vertices 866 4
|
||||
r 3.75452709 -0.00645097 3.75452733 -0.00870815 3.75226379 -0.00870854 3.75226355 -0.00645136
|
||||
vertices 866 4
|
||||
r 3.71264935 -0.01006613 3.71264887 -0.01277404 3.70993256 -0.01277402 3.70993304 -0.01006611
|
||||
vertices 867 4
|
||||
r 3.85977530 0.04244722 3.85977721 0.03565665 3.85352350 0.03565331 3.85352159 0.04244388
|
||||
vertices 867 4
|
||||
r 3.86992812 -0.01077348 3.86993051 -0.01303098 3.86766601 -0.01303298 3.86766362 -0.01077548
|
||||
vertices 867 4
|
||||
r 3.85473418 0.01879019 3.85473609 0.01540356 3.85156560 0.01540140 3.85156369 0.01878803
|
||||
vertices 867 4
|
||||
r 3.86175251 0.02285860 3.86175323 0.02105246 3.85948849 0.02105106 3.85948777 0.02285720
|
||||
vertices 867 4
|
||||
r 3.88015580 -0.03694814 3.88016200 -0.04033402 3.87653732 -0.04033860 3.87653112 -0.03695272
|
||||
vertices 867 4
|
||||
3.89372373 -0.02384023 3.88692999 -0.02429979 3.88060665 -0.03491542 3.88740039 -0.03445586
|
||||
vertices 867 4
|
||||
3.89423728 -0.05182334 3.88719153 -0.04325828 3.88039159 -0.04304391 3.88743734 -0.05160897
|
||||
vertices 867 4
|
||||
r 3.89463520 -0.02699853 3.89468527 -0.04979151 3.88726711 -0.04980086 3.88721704 -0.02700788
|
||||
vertices 867 4
|
||||
r 3.88966489 -0.03400123 3.88968515 -0.04370611 3.88085055 -0.04371767 3.88083029 -0.03401279
|
565
masks/2df100k/sgp_fields.dat
Normal file
565
masks/2df100k/sgp_fields.dat
Normal file
|
@ -0,0 +1,565 @@
|
|||
unit d
|
||||
skip 0
|
||||
RA & Dec (B1950) limits of fields
|
||||
rectangle id number is the UKST field number
|
||||
RAmin RAmax Decmin Decmax
|
||||
rectangle 48
|
||||
321.75 338.25 -77.5 -72.5
|
||||
rectangle 49
|
||||
338.25 351.75 -77.5 -72.5
|
||||
rectangle 50
|
||||
-6.5 6.5 -72.5 -67.5
|
||||
rectangle 51
|
||||
6.5 19.5 -72.5 -67.5
|
||||
rectangle 52
|
||||
19.5 32.5 -72.5 -67.5
|
||||
rectangle 53
|
||||
32.5 45.5 -72.5 -67.5
|
||||
rectangle 54
|
||||
45.5 58.5 -72.5 -67.5
|
||||
rectangle 75
|
||||
318.5 331.5 -72.5 -67.5
|
||||
rectangle 76
|
||||
331.5 344.5 -72.5 -67.5
|
||||
rectangle 77
|
||||
344.5 353.5 -72.5 -67.5
|
||||
rectangle 78
|
||||
-5.5 5.5 -67.5 -62.5
|
||||
rectangle 79
|
||||
5.5 16.5 -67.5 -62.5
|
||||
rectangle 80
|
||||
16.5 27.5 -67.5 -62.5
|
||||
rectangle 81
|
||||
27.5 38.5 -67.5 -62.5
|
||||
rectangle 82
|
||||
38.5 49.5 -67.5 -62.5
|
||||
rectangle 83
|
||||
49.5 60.5 -67.5 -62.5
|
||||
rectangle 84
|
||||
60.5 71.5 -67.5 -62.5
|
||||
rectangle 107
|
||||
313.5 324.5 -67.5 -62.5
|
||||
rectangle 108
|
||||
324.5 335.5 -67.5 -62.5
|
||||
rectangle 109
|
||||
335.5 346.5 -67.5 -62.5
|
||||
rectangle 110
|
||||
346.5 354.5 -67.5 -62.5
|
||||
rectangle 111
|
||||
-4.75 4.75 -62.5 -57.5
|
||||
rectangle 112
|
||||
4.75 14.25 -62.5 -57.5
|
||||
rectangle 113
|
||||
14.25 23.75 -62.5 -57.5
|
||||
rectangle 114
|
||||
23.75 33.25 -62.5 -57.5
|
||||
rectangle 115
|
||||
33.25 42.75 -62.5 -57.5
|
||||
rectangle 116
|
||||
42.75 52.25 -62.5 -57.5
|
||||
rectangle 117
|
||||
52.25 61.75 -62.5 -57.5
|
||||
rectangle 118
|
||||
61.75 71.25 -62.5 -57.5
|
||||
rectangle 143
|
||||
299.25 308.75 -62.5 -57.5
|
||||
rectangle 144
|
||||
308.75 318.25 -62.5 -57.5
|
||||
rectangle 145
|
||||
318.25 327.75 -62.5 -57.5
|
||||
rectangle 146
|
||||
327.75 337.25 -62.5 -57.5
|
||||
rectangle 147
|
||||
337.25 346.75 -62.5 -57.5
|
||||
rectangle 148
|
||||
346.75 355.25 -62.5 -57.5
|
||||
rectangle 149
|
||||
-4.125 4.125 -57.5 -52.5
|
||||
rectangle 150
|
||||
4.125 12.375 -57.5 -52.5
|
||||
rectangle 151
|
||||
12.375 20.625 -57.5 -52.5
|
||||
rectangle 152
|
||||
20.625 28.875 -57.5 -52.5
|
||||
rectangle 153
|
||||
28.875 37.125 -57.5 -52.5
|
||||
rectangle 154
|
||||
37.125 45.375 -57.5 -52.5
|
||||
rectangle 155
|
||||
45.375 53.625 -57.5 -52.5
|
||||
rectangle 156
|
||||
53.625 61.875 -57.5 -52.5
|
||||
rectangle 157
|
||||
61.875 70.125 -57.5 -52.5
|
||||
rectangle 158
|
||||
70.125 78.375 -57.5 -52.5
|
||||
rectangle 187
|
||||
309.375 317.625 -57.5 -52.5
|
||||
rectangle 188
|
||||
317.625 325.875 -57.5 -52.5
|
||||
rectangle 189
|
||||
325.875 334.125 -57.5 -52.5
|
||||
rectangle 190
|
||||
334.125 342.375 -57.5 -52.5
|
||||
rectangle 191
|
||||
342.375 350.625 -57.5 -52.5
|
||||
rectangle 192
|
||||
350.625 355.875 -57.5 -52.5
|
||||
rectangle 193
|
||||
-3.75 3.75 -52.5 -47.5
|
||||
rectangle 194
|
||||
3.75 11.25 -52.5 -47.5
|
||||
rectangle 195
|
||||
11.25 18.75 -52.5 -47.5
|
||||
rectangle 196
|
||||
18.75 26.25 -52.5 -47.5
|
||||
rectangle 197
|
||||
26.25 33.75 -52.5 -47.5
|
||||
rectangle 198
|
||||
33.75 41.25 -52.5 -47.5
|
||||
rectangle 199
|
||||
41.25 48.75 -52.5 -47.5
|
||||
rectangle 200
|
||||
48.75 56.25 -52.5 -47.5
|
||||
rectangle 201
|
||||
56.25 63.75 -52.5 -47.5
|
||||
rectangle 202
|
||||
63.75 71.25 -52.5 -47.5
|
||||
rectangle 203
|
||||
71.25 78.75 -52.5 -47.5
|
||||
rectangle 235
|
||||
311.25 318.75 -52.5 -47.5
|
||||
rectangle 236
|
||||
318.75 326.25 -52.5 -47.5
|
||||
rectangle 237
|
||||
326.25 333.75 -52.5 -47.5
|
||||
rectangle 238
|
||||
333.75 341.25 -52.5 -47.5
|
||||
rectangle 239
|
||||
341.25 348.75 -52.5 -47.5
|
||||
rectangle 240
|
||||
348.75 356.25 -52.5 -47.5
|
||||
rectangle 241
|
||||
-3.5 3.5 -47.5 -42.5
|
||||
rectangle 242
|
||||
3.5 10.5 -47.5 -42.5
|
||||
rectangle 243
|
||||
10.5 17.5 -47.5 -42.5
|
||||
rectangle 244
|
||||
17.5 24.5 -47.5 -42.5
|
||||
rectangle 245
|
||||
24.5 31.5 -47.5 -42.5
|
||||
rectangle 246
|
||||
31.5 38.5 -47.5 -42.5
|
||||
rectangle 247
|
||||
38.5 45.5 -47.5 -42.5
|
||||
rectangle 248
|
||||
45.5 52.5 -47.5 -42.5
|
||||
rectangle 249
|
||||
52.5 59.5 -47.5 -42.5
|
||||
rectangle 250
|
||||
59.5 66.5 -47.5 -42.5
|
||||
rectangle 251
|
||||
66.5 73.5 -47.5 -42.5
|
||||
rectangle 252
|
||||
73.5 80.5 -47.5 -42.5
|
||||
rectangle 286
|
||||
311.5 318.5 -47.5 -42.5
|
||||
rectangle 287
|
||||
318.5 325.5 -47.5 -42.5
|
||||
rectangle 288
|
||||
325.5 332.5 -47.5 -42.5
|
||||
rectangle 289
|
||||
332.5 339.5 -47.5 -42.5
|
||||
rectangle 290
|
||||
339.5 346.5 -47.5 -42.5
|
||||
rectangle 291
|
||||
346.5 353.5 -47.5 -42.5
|
||||
rectangle 292
|
||||
353.5 356.5 -47.5 -42.5
|
||||
rectangle 293
|
||||
-3.25 3.25 -42.5 -37.5
|
||||
rectangle 294
|
||||
3.25 9.75 -42.5 -37.5
|
||||
rectangle 295
|
||||
9.75 16.25 -42.5 -37.5
|
||||
rectangle 296
|
||||
16.25 22.75 -42.5 -37.5
|
||||
rectangle 297
|
||||
22.75 29.25 -42.5 -37.5
|
||||
rectangle 298
|
||||
29.25 35.75 -42.5 -37.5
|
||||
rectangle 299
|
||||
35.75 42.25 -42.5 -37.5
|
||||
rectangle 300
|
||||
42.25 48.75 -42.5 -37.5
|
||||
rectangle 301
|
||||
48.75 55.25 -42.5 -37.5
|
||||
rectangle 302
|
||||
55.25 61.75 -42.5 -37.5
|
||||
rectangle 303
|
||||
61.75 68.25 -42.5 -37.5
|
||||
rectangle 304
|
||||
68.25 74.75 -42.5 -37.5
|
||||
rectangle 305
|
||||
74.75 81.25 -42.5 -37.5
|
||||
rectangle 341
|
||||
308.75 315.25 -42.5 -37.5
|
||||
rectangle 342
|
||||
315.25 321.75 -42.5 -37.5
|
||||
rectangle 343
|
||||
321.75 328.25 -42.5 -37.5
|
||||
rectangle 344
|
||||
328.25 334.75 -42.5 -37.5
|
||||
rectangle 345
|
||||
334.75 341.25 -42.5 -37.5
|
||||
rectangle 346
|
||||
341.25 347.75 -42.5 -37.5
|
||||
rectangle 347
|
||||
347.75 354.25 -42.5 -37.5
|
||||
rectangle 348
|
||||
354.25 356.75 -42.5 -37.5
|
||||
rectangle 349
|
||||
-3. 3. -37.5 -32.5
|
||||
rectangle 350
|
||||
3. 9. -37.5 -32.5
|
||||
rectangle 351
|
||||
9. 15. -37.5 -32.5
|
||||
rectangle 352
|
||||
15. 21. -37.5 -32.5
|
||||
rectangle 353
|
||||
21. 27. -37.5 -32.5
|
||||
rectangle 354
|
||||
27. 33. -37.5 -32.5
|
||||
rectangle 355
|
||||
33. 39. -37.5 -32.5
|
||||
rectangle 356
|
||||
39. 45. -37.5 -32.5
|
||||
rectangle 357
|
||||
45. 51. -37.5 -32.5
|
||||
rectangle 358
|
||||
51. 57. -37.5 -32.5
|
||||
rectangle 359
|
||||
57. 63. -37.5 -32.5
|
||||
rectangle 360
|
||||
63. 69. -37.5 -32.5
|
||||
rectangle 361
|
||||
69. 75. -37.5 -32.5
|
||||
rectangle 362
|
||||
75. 81. -37.5 -32.5
|
||||
rectangle 401
|
||||
309. 315. -37.5 -32.5
|
||||
rectangle 402
|
||||
315. 321. -37.5 -32.5
|
||||
rectangle 403
|
||||
321. 327. -37.5 -32.5
|
||||
rectangle 404
|
||||
327. 333. -37.5 -32.5
|
||||
rectangle 405
|
||||
333. 339. -37.5 -32.5
|
||||
rectangle 406
|
||||
339. 345. -37.5 -32.5
|
||||
rectangle 407
|
||||
345. 351. -37.5 -32.5
|
||||
rectangle 408
|
||||
351. 357. -37.5 -32.5
|
||||
rectangle 409
|
||||
-2.875 2.875 -32.5 -27.5
|
||||
rectangle 410
|
||||
2.875 8.625 -32.5 -27.5
|
||||
rectangle 411
|
||||
8.625 14.375 -32.5 -27.5
|
||||
rectangle 412
|
||||
14.375 20.125 -32.5 -27.5
|
||||
rectangle 413
|
||||
20.125 25.875 -32.5 -27.5
|
||||
rectangle 414
|
||||
25.875 31.625 -32.5 -27.5
|
||||
rectangle 415
|
||||
31.625 37.375 -32.5 -27.5
|
||||
rectangle 416
|
||||
37.375 43.125 -32.5 -27.5
|
||||
rectangle 417
|
||||
43.125 48.875 -32.5 -27.5
|
||||
rectangle 418
|
||||
48.875 54.625 -32.5 -27.5
|
||||
rectangle 419
|
||||
54.625 60.375 -32.5 -27.5
|
||||
rectangle 420
|
||||
60.375 66.125 -32.5 -27.5
|
||||
rectangle 421
|
||||
66.125 71.875 -32.5 -27.5
|
||||
rectangle 422
|
||||
71.875 77.625 -32.5 -27.5
|
||||
rectangle 423
|
||||
77.625 83.375 -32.5 -27.5
|
||||
rectangle 464
|
||||
313.375 319.125 -32.5 -27.5
|
||||
rectangle 465
|
||||
319.125 324.875 -32.5 -27.5
|
||||
rectangle 466
|
||||
324.875 330.625 -32.5 -27.5
|
||||
rectangle 467
|
||||
330.625 336.375 -32.5 -27.5
|
||||
rectangle 468
|
||||
336.375 342.125 -32.5 -27.5
|
||||
rectangle 469
|
||||
342.125 347.875 -32.5 -27.5
|
||||
rectangle 470
|
||||
347.875 353.625 -32.5 -27.5
|
||||
rectangle 471
|
||||
353.625 357.125 -32.5 -27.5
|
||||
rectangle 472
|
||||
-2.75 2.75 -27.5 -22.5
|
||||
rectangle 473
|
||||
2.75 8.25 -27.5 -22.5
|
||||
rectangle 474
|
||||
8.25 13.75 -27.5 -22.5
|
||||
rectangle 475
|
||||
13.75 19.25 -27.5 -22.5
|
||||
rectangle 476
|
||||
19.25 24.75 -27.5 -22.5
|
||||
rectangle 477
|
||||
24.75 30.25 -27.5 -22.5
|
||||
rectangle 478
|
||||
30.25 35.75 -27.5 -22.5
|
||||
rectangle 479
|
||||
35.75 41.25 -27.5 -22.5
|
||||
rectangle 480
|
||||
41.25 46.75 -27.5 -22.5
|
||||
rectangle 481
|
||||
46.75 52.25 -27.5 -22.5
|
||||
rectangle 482
|
||||
52.25 57.75 -27.5 -22.5
|
||||
rectangle 483
|
||||
57.75 63.25 -27.5 -22.5
|
||||
rectangle 484
|
||||
63.25 68.75 -27.5 -22.5
|
||||
rectangle 485
|
||||
68.75 74.25 -27.5 -22.5
|
||||
rectangle 530
|
||||
316.25 321.75 -27.5 -22.5
|
||||
rectangle 531
|
||||
321.75 327.25 -27.5 -22.5
|
||||
rectangle 532
|
||||
327.25 332.75 -27.5 -22.5
|
||||
rectangle 533
|
||||
332.75 338.25 -27.5 -22.5
|
||||
rectangle 534
|
||||
338.25 343.75 -27.5 -22.5
|
||||
rectangle 535
|
||||
343.75 349.25 -27.5 -22.5
|
||||
rectangle 536
|
||||
349.25 354.75 -27.5 -22.5
|
||||
rectangle 537
|
||||
354.75 357.25 -27.5 -22.5
|
||||
rectangle 538
|
||||
-2.625 2.625 -22.5 -17.5
|
||||
rectangle 539
|
||||
2.625 7.875 -22.5 -17.5
|
||||
rectangle 540
|
||||
7.875 13.125 -22.5 -17.5
|
||||
rectangle 541
|
||||
13.125 18.375 -22.5 -17.5
|
||||
rectangle 542
|
||||
18.375 23.625 -22.5 -17.5
|
||||
rectangle 543
|
||||
23.625 28.875 -22.5 -17.5
|
||||
rectangle 544
|
||||
28.875 34.125 -22.5 -17.5
|
||||
rectangle 545
|
||||
34.125 39.375 -22.5 -17.5
|
||||
rectangle 546
|
||||
39.375 44.625 -22.5 -17.5
|
||||
rectangle 547
|
||||
44.625 49.875 -22.5 -17.5
|
||||
rectangle 548
|
||||
49.875 55.125 -22.5 -17.5
|
||||
rectangle 549
|
||||
55.125 60.375 -22.5 -17.5
|
||||
rectangle 550
|
||||
60.375 65.625 -22.5 -17.5
|
||||
rectangle 551
|
||||
65.625 70.875 -22.5 -17.5
|
||||
rectangle 599
|
||||
317.625 322.875 -22.5 -17.5
|
||||
rectangle 600
|
||||
322.875 328.125 -22.5 -17.5
|
||||
rectangle 601
|
||||
328.125 333.375 -22.5 -17.5
|
||||
rectangle 602
|
||||
333.375 338.625 -22.5 -17.5
|
||||
rectangle 603
|
||||
338.625 343.875 -22.5 -17.5
|
||||
rectangle 604
|
||||
343.875 349.125 -22.5 -17.5
|
||||
rectangle 605
|
||||
349.125 354.375 -22.5 -17.5
|
||||
rectangle 606
|
||||
354.375 357.375 -22.5 -17.5
|
||||
rectangle 607
|
||||
-2.5 2.5 -17.5 -12.5
|
||||
rectangle 608
|
||||
2.5 7.5 -17.5 -12.5
|
||||
rectangle 609
|
||||
7.5 12.5 -17.5 -12.5
|
||||
rectangle 610
|
||||
12.5 17.5 -17.5 -12.5
|
||||
rectangle 611
|
||||
17.5 22.5 -17.5 -12.5
|
||||
rectangle 612
|
||||
22.5 27.5 -17.5 -12.5
|
||||
rectangle 613
|
||||
27.5 32.5 -17.5 -12.5
|
||||
rectangle 614
|
||||
32.5 37.5 -17.5 -12.5
|
||||
rectangle 615
|
||||
37.5 42.5 -17.5 -12.5
|
||||
rectangle 616
|
||||
42.5 47.5 -17.5 -12.5
|
||||
rectangle 617
|
||||
47.5 52.5 -17.5 -12.5
|
||||
rectangle 618
|
||||
52.5 57.5 -17.5 -12.5
|
||||
rectangle 619
|
||||
57.5 62.5 -17.5 -12.5
|
||||
rectangle 620
|
||||
62.5 67.5 -17.5 -12.5
|
||||
rectangle 621
|
||||
67.5 72.5 -17.5 -12.5
|
||||
rectangle 671
|
||||
317.5 322.5 -17.5 -12.5
|
||||
rectangle 672
|
||||
322.5 327.5 -17.5 -12.5
|
||||
rectangle 673
|
||||
327.5 332.5 -17.5 -12.5
|
||||
rectangle 674
|
||||
332.5 337.5 -17.5 -12.5
|
||||
rectangle 675
|
||||
337.5 342.5 -17.5 -12.5
|
||||
rectangle 676
|
||||
342.5 347.5 -17.5 -12.5
|
||||
rectangle 677
|
||||
347.5 352.5 -17.5 -12.5
|
||||
rectangle 678
|
||||
352.5 357.5 -17.5 -12.5
|
||||
rectangle 679
|
||||
-2.5 2.5 -12.5 -7.5
|
||||
rectangle 680
|
||||
2.5 7.5 -12.5 -7.5
|
||||
rectangle 681
|
||||
7.5 12.5 -12.5 -7.5
|
||||
rectangle 682
|
||||
12.5 17.5 -12.5 -7.5
|
||||
rectangle 683
|
||||
17.5 22.5 -12.5 -7.5
|
||||
rectangle 684
|
||||
22.5 27.5 -12.5 -7.5
|
||||
rectangle 685
|
||||
27.5 32.5 -12.5 -7.5
|
||||
rectangle 686
|
||||
32.5 37.5 -12.5 -7.5
|
||||
rectangle 687
|
||||
37.5 42.5 -12.5 -7.5
|
||||
rectangle 688
|
||||
42.5 47.5 -12.5 -7.5
|
||||
rectangle 689
|
||||
47.5 52.5 -12.5 -7.5
|
||||
rectangle 690
|
||||
52.5 57.5 -12.5 -7.5
|
||||
rectangle 691
|
||||
57.5 62.5 -12.5 -7.5
|
||||
rectangle 692
|
||||
62.5 67.5 -12.5 -7.5
|
||||
rectangle 743
|
||||
317.5 322.5 -12.5 -7.5
|
||||
rectangle 744
|
||||
322.5 327.5 -12.5 -7.5
|
||||
rectangle 745
|
||||
327.5 332.5 -12.5 -7.5
|
||||
rectangle 746
|
||||
332.5 337.5 -12.5 -7.5
|
||||
rectangle 747
|
||||
337.5 342.5 -12.5 -7.5
|
||||
rectangle 748
|
||||
342.5 347.5 -12.5 -7.5
|
||||
rectangle 749
|
||||
347.5 352.5 -12.5 -7.5
|
||||
rectangle 750
|
||||
352.5 357.5 -12.5 -7.5
|
||||
rectangle 751
|
||||
-2.5 2.5 -7.5 -2.5
|
||||
rectangle 752
|
||||
2.5 7.5 -7.5 -2.5
|
||||
rectangle 753
|
||||
7.5 12.5 -7.5 -2.5
|
||||
rectangle 754
|
||||
12.5 17.5 -7.5 -2.5
|
||||
rectangle 755
|
||||
17.5 22.5 -7.5 -2.5
|
||||
rectangle 756
|
||||
22.5 27.5 -7.5 -2.5
|
||||
rectangle 757
|
||||
27.5 32.5 -7.5 -2.5
|
||||
rectangle 758
|
||||
32.5 37.5 -7.5 -2.5
|
||||
rectangle 759
|
||||
37.5 42.5 -7.5 -2.5
|
||||
rectangle 760
|
||||
42.5 47.5 -7.5 -2.5
|
||||
rectangle 761
|
||||
47.5 52.5 -7.5 -2.5
|
||||
rectangle 762
|
||||
52.5 57.5 -7.5 -2.5
|
||||
rectangle 763
|
||||
57.5 62.5 -7.5 -2.5
|
||||
rectangle 816
|
||||
322.5 327.5 -7.5 -2.5
|
||||
rectangle 817
|
||||
327.5 332.5 -7.5 -2.5
|
||||
rectangle 818
|
||||
332.5 337.5 -7.5 -2.5
|
||||
rectangle 819
|
||||
337.5 342.5 -7.5 -2.5
|
||||
rectangle 820
|
||||
342.5 347.5 -7.5 -2.5
|
||||
rectangle 821
|
||||
347.5 352.5 -7.5 -2.5
|
||||
rectangle 822
|
||||
352.5 357.5 -7.5 -2.5
|
||||
rectangle 823
|
||||
-2.5 2.5 -2.5 2.5
|
||||
rectangle 824
|
||||
2.5 7.5 -2.5 2.5
|
||||
rectangle 825
|
||||
7.5 12.5 -2.5 2.5
|
||||
rectangle 826
|
||||
12.5 17.5 -2.5 2.5
|
||||
rectangle 827
|
||||
17.5 22.5 -2.5 2.5
|
||||
rectangle 828
|
||||
22.5 27.5 -2.5 2.5
|
||||
rectangle 829
|
||||
27.5 32.5 -2.5 2.5
|
||||
rectangle 830
|
||||
32.5 37.5 -2.5 2.5
|
||||
rectangle 831
|
||||
37.5 42.5 -2.5 2.5
|
||||
rectangle 832
|
||||
42.5 47.5 -2.5 2.5
|
||||
rectangle 833
|
||||
47.5 52.5 -2.5 2.5
|
||||
rectangle 834
|
||||
52.5 57.5 -2.5 2.5
|
||||
rectangle 889
|
||||
327.5 332.5 -2.5 2.5
|
||||
rectangle 890
|
||||
332.5 337.5 -2.5 2.5
|
||||
rectangle 891
|
||||
337.5 342.5 -2.5 2.5
|
||||
rectangle 892
|
||||
342.5 347.5 -2.5 2.5
|
||||
rectangle 893
|
||||
347.5 352.5 -2.5 2.5
|
||||
rectangle 894
|
||||
352.5 357.5 -2.5 2.5
|
3631
masks/2df100k/sgpholes.dat
Normal file
3631
masks/2df100k/sgpholes.dat
Normal file
File diff suppressed because it is too large
Load diff
1814
masks/2df100k/sgpholes.lis
Normal file
1814
masks/2df100k/sgpholes.lis
Normal file
File diff suppressed because it is too large
Load diff
225
masks/2df230k/2df230k.sh
Executable file
225
masks/2df230k/2df230k.sh
Executable file
|
@ -0,0 +1,225 @@
|
|||
#! /bin/sh
|
||||
|
||||
#script to create the angular mask for the 230k release of the 2dF Redshift Survey
|
||||
#see http://www.mso.anu.edu.au/2dFGRS/ for more about the survey.
|
||||
#USAGE: 2df230k.sh
|
||||
|
||||
if [ "$MANGLEBINDIR" = "" ] ; then
|
||||
MANGLEBINDIR="../../bin"
|
||||
fi
|
||||
if [ "$MANGLESCRIPTSDIR" = "" ] ; then
|
||||
MANGLESCRIPTSDIR="../../scripts"
|
||||
fi
|
||||
if [ "$MANGLEDATADIR" = "" ] ; then
|
||||
MANGLEDATADIR="../../masks"
|
||||
fi
|
||||
|
||||
user=`whoami`
|
||||
names=`finger $user | fgrep "ame:" | sed 's/.*: *\([^ ]*\)[^:]*/\1/'`
|
||||
for name in ${names}; do break; done
|
||||
echo "Hello $name, watch me make the angular mask for the 2dF 230k survey."
|
||||
|
||||
#to pixelize dynamically
|
||||
#pix=
|
||||
#restag=
|
||||
#to pixelize everything to fixed resolution
|
||||
scheme="s"
|
||||
res=4
|
||||
pix="-P${scheme}0,${res}"
|
||||
restag="_res${res}${scheme}"
|
||||
|
||||
# to make verbose
|
||||
quiet=
|
||||
# to make quiet
|
||||
#quiet=-q
|
||||
|
||||
# snap tolerances
|
||||
snaptols="-a2 -b2 -t2"
|
||||
|
||||
#multiple intersection tolerance
|
||||
mtol="-m1e-5"
|
||||
|
||||
# maximum harmonic number
|
||||
lmax=20
|
||||
|
||||
# North
|
||||
|
||||
if [ -z "$quiet" ]; then
|
||||
echo "===========================================";
|
||||
echo " NORTH ";
|
||||
fi
|
||||
|
||||
# name of output file to contain 2dF 230k North polygons
|
||||
npol="2df230k_north${restag}.pol"
|
||||
|
||||
# -vo says to use old polygon ids, which are field numbers
|
||||
echo "$MANGLEBINDIR/pixelize $quiet $mtol $pix -vo ngp_fields.dat jnfp"
|
||||
$MANGLEBINDIR/pixelize $quiet $mtol $pix -vo ngp_fields.dat jnfp || exit
|
||||
echo "$MANGLEBINDIR/pixelize $quiet $mtol $pix -vo ngpholes.dat jnhp"
|
||||
$MANGLEBINDIR/pixelize $quiet $mtol $pix -vo ngpholes.dat jnhp || exit
|
||||
echo "$MANGLEBINDIR/pixelize $quiet $mtol $pix -vo centres.ngp jncp"
|
||||
$MANGLEBINDIR/pixelize $quiet $mtol $pix -vo centres.ngp jncp || exit
|
||||
echo "$MANGLEBINDIR/snap $quiet $snaptols $mtol -vo jnfp jnf"
|
||||
$MANGLEBINDIR/snap $quiet $snaptols $mtol -vo jnfp jnf || exit
|
||||
echo "$MANGLEBINDIR/snap $quiet $snaptols $mtol -vo jnhp jnh"
|
||||
$MANGLEBINDIR/snap $quiet $snaptols $mtol -vo jnhp jnh || exit
|
||||
echo "$MANGLEBINDIR/snap $quiet $snaptols $mtol -vo jncp jnc"
|
||||
$MANGLEBINDIR/snap $quiet $snaptols $mtol -vo jncp jnc || exit
|
||||
# -n intersects holes with their parent fields
|
||||
echo "$MANGLEBINDIR/poly2poly $quiet $mtol -n jnh jnf jnhf"
|
||||
$MANGLEBINDIR/poly2poly $quiet $mtol -n jnh jnf jnhf || exit
|
||||
echo "$MANGLEBINDIR/balkanize $quiet $mtol jncp jnhf jnb"
|
||||
$MANGLEBINDIR/balkanize $quiet $mtol jnc jnhf jnb || exit
|
||||
echo "$MANGLEBINDIR/weight $quiet $mtol -z2dF230k jnb jnw"
|
||||
$MANGLEBINDIR/weight $quiet $mtol -z2dF230k jnb jnw || exit
|
||||
echo "$MANGLEBINDIR/unify $quiet $mtol jnw $npol"
|
||||
$MANGLEBINDIR/unify $quiet $mtol jnw $npol || exit
|
||||
echo "Polygons for 2dF 230k North are in $npol"
|
||||
|
||||
# South
|
||||
|
||||
if [ -z "$quiet" ]; then
|
||||
echo "===========================================";
|
||||
echo " SOUTH ";
|
||||
fi
|
||||
|
||||
# name of output file to contain 2dF 230k South polygons
|
||||
spol="2df230k_south${restag}.pol"
|
||||
|
||||
# -vo says to use old polygon ids, which are field numbers
|
||||
echo "$MANGLEBINDIR/pixelize $quiet $mtol $pix -vo sgp_fields.dat jsfp"
|
||||
$MANGLEBINDIR/pixelize $quiet $mtol $pix -vo sgp_fields.dat jsfp || exit
|
||||
echo "$MANGLEBINDIR/pixelize $quiet $mtol $pix -vo sgpholes.dat jshp"
|
||||
$MANGLEBINDIR/pixelize $quiet $mtol $pix -vo sgpholes.dat jshp || exit
|
||||
echo "$MANGLEBINDIR/pixelize $quiet $mtol $pix -vo centres.sgp jscp"
|
||||
$MANGLEBINDIR/pixelize $quiet $mtol $pix -vo centres.sgp jscp || exit
|
||||
echo "$MANGLEBINDIR/pixelize $quiet $mtol $pix -vo centres.ran jrcp"
|
||||
$MANGLEBINDIR/pixelize $quiet $mtol $pix -vo centres.ran jrcp || exit
|
||||
echo "$MANGLEBINDIR/snap $quiet $snaptols $mtol -vo jsfp jsf"
|
||||
$MANGLEBINDIR/snap $quiet $snaptols $mtol -vo jsfp jsf || exit
|
||||
echo "$MANGLEBINDIR/snap $quiet $snaptols $mtol -vo jshp jsh"
|
||||
$MANGLEBINDIR/snap $quiet $snaptols $mtol -vo jshp jsh || exit
|
||||
echo "$MANGLEBINDIR/snap $quiet $snaptols $mtol -vo jscp jsc"
|
||||
$MANGLEBINDIR/snap $quiet $snaptols $mtol -vo jscp jsc || exit
|
||||
echo "$MANGLEBINDIR/snap $quiet $snaptols $mtol -vo jrcp jrc"
|
||||
$MANGLEBINDIR/snap $quiet $snaptols $mtol -vo jrcp jrc || exit
|
||||
# -n intersects holes with their parent fields
|
||||
echo "$MANGLEBINDIR/poly2poly $quiet $mtol -n jsh jsf jshf"
|
||||
$MANGLEBINDIR/poly2poly $quiet $mtol -n jsh jsf jshf || exit
|
||||
echo "$MANGLEBINDIR/balkanize $quiet $mtol centres.sgp centres.ran jshf jsb"
|
||||
$MANGLEBINDIR/balkanize $quiet $mtol jsc jrc jshf jsb || exit
|
||||
echo "$MANGLEBINDIR/weight $quiet $mtol -z2dF230k jsb jsw"
|
||||
$MANGLEBINDIR/weight $quiet $mtol -z2dF230k jsb jsw || exit
|
||||
echo "$MANGLEBINDIR/unify $quiet $mtol jsw $spol"
|
||||
$MANGLEBINDIR/unify $quiet $mtol jsw $spol || exit
|
||||
echo "Polygons for 2dF 230k South are in $spol"
|
||||
|
||||
# Harmonics
|
||||
|
||||
if [ -z "$quiet" ]; then
|
||||
echo "===========================================";
|
||||
echo " THE WORLD ";
|
||||
fi
|
||||
|
||||
# name of output file to contain harmonics
|
||||
wlm="2df230k${restag}.wlm"
|
||||
|
||||
echo "$MANGLEBINDIR/harmonize $quiet $mtol -l$lmax $npol $spol $wlm"
|
||||
$MANGLEBINDIR/harmonize $quiet $mtol -l$lmax $npol $spol $wlm || exit
|
||||
echo "Harmonics for 2dF 230k mask up to l = $lmax are in $wlm"
|
||||
|
||||
# Map
|
||||
|
||||
# name of output file to contain map
|
||||
map="2df230k${restag}.map"
|
||||
|
||||
echo "$MANGLEBINDIR/map $quiet -w$wlm azel.dat $map"
|
||||
$MANGLEBINDIR/map $quiet -w$wlm azel.dat $map || exit
|
||||
echo "Map of 2dF 230k mask up to l = $lmax is in $map"
|
||||
|
||||
# Vertices
|
||||
|
||||
# name of output file to contain vertices
|
||||
vert="2df230k${restag}.vrt"
|
||||
|
||||
echo "$MANGLEBINDIR/poly2poly -ov $mtol $quiet $npol $spol $vert"
|
||||
$MANGLEBINDIR/poly2poly -ov $quiet $mtol $npol $spol $vert || exit
|
||||
echo "Vertices of 2dF 230k mask are in $vert"
|
||||
|
||||
# Graphics
|
||||
|
||||
# name of output file to contain graphics
|
||||
grph="2df230k${restag}.grph"
|
||||
|
||||
# number of points per (2 pi) along each edge of a polygon
|
||||
pts_per_twopi=30
|
||||
|
||||
echo "$MANGLEBINDIR/poly2poly -og$pts_per_twopi $quiet $mtol $npol $spol $grph"
|
||||
$MANGLEBINDIR/poly2poly -og$pts_per_twopi $quiet $mtol $npol $spol $grph || exit
|
||||
echo "Data suitable for plotting polygons of the 2dF 230k mask are in $grph:"
|
||||
echo "each line is a sequence of az, el points delineating the perimeter of a polygon."
|
||||
|
||||
# for plotting with the matlab script
|
||||
|
||||
eps="2df230k${restag}.eps"
|
||||
neps="2df230k_north${restag}.eps"
|
||||
seps="2df230k_south${restag}.eps"
|
||||
|
||||
if which matlab >/dev/null 2>&1 ; then
|
||||
# name of output file to contain matlab graphics
|
||||
list="2df230k${restag}.list"
|
||||
|
||||
echo "$MANGLEBINDIR/poly2poly -ol$pts_per_twopi $quiet $npol $spol $list"
|
||||
$MANGLEBINDIR/poly2poly -ol$pts_per_twopi $quiet $mtol $npol $spol $list || exit
|
||||
echo "Data for plotting polygons of the 2dF 230k mask in Matlab are in $list."
|
||||
echo "Using Matlab to plot the 2dF 230k mask ..."
|
||||
echo "$MANGLESCRIPTSDIR/graphmask.sh $list $eps"
|
||||
$MANGLESCRIPTSDIR/graphmask.sh $list $eps 0 0 0 0 "Completeness mask for 2dF 230k"
|
||||
if [ $? -eq 0 ]; then
|
||||
$MANGLESCRIPTSDIR/graphmask.sh $list $neps 145 223 -9 6 "Completeness mask for 2dF 230k north"
|
||||
$MANGLESCRIPTSDIR/graphmask.sh $list $seps -55 85 -73 1 "Completeness mask for 2dF 230k south"
|
||||
echo "Made a figure illustrating the 2dF 230k mask:"
|
||||
echo "$eps, $neps, $seps"
|
||||
echo "Type \"ggv $eps\" or \"gv $eps\" to view the figures."
|
||||
elif which sm >/dev/null 2>&1 ; then
|
||||
echo "Using Supermongo to plot the 2dF 230k mask:"
|
||||
$MANGLESCRIPTSDIR/graphmasksm.sh $grph $eps 0 0 0 0 "Completeness mask for 2dF 230k"
|
||||
if [ $? -eq 0 ]; then
|
||||
echo "Made a figure illustrating the 2dF 230k mask: $eps"
|
||||
echo "Type \"ggv $eps\" or \"gv $eps\" to view the figure."
|
||||
echo "A script is also available to plot mangle files Matlab (with the mapping toolbox),"
|
||||
echo "or you can plot $grph using your own favorite plotting tool."
|
||||
fi
|
||||
else
|
||||
echo "Scripts are available for plotting mangle polygons in Matlab"
|
||||
echo "(with the mapping toolbox) or Supermongo, or you can plot $grph"
|
||||
echo "using your own favorite plotting tool."
|
||||
fi
|
||||
elif which sm >/dev/null 2>&1 ; then
|
||||
echo "Using Supermongo to plot the 2dF 100k mask:"
|
||||
$MANGLESCRIPTSDIR/graphmasksm.sh $grph $eps 0 0 0 0 "Completeness mask for 2dF 230k"
|
||||
if [ $? -eq 0 ]; then
|
||||
echo "Made a figure illustrating the 2dF 230k mask: $eps"
|
||||
echo "Type \"ggv $eps\" or \"gv $eps\" to view the figure."
|
||||
echo "A script is also available to plot mangle files Matlab (with the mapping toolbox),"
|
||||
echo "or you can plot $grph using your own favorite plotting tool."
|
||||
fi
|
||||
else
|
||||
echo "Scripts are available for plotting mangle polygons in Matlab"
|
||||
echo "(with the mapping toolbox) or Supermongo, or you can plot $grph"
|
||||
echo "using your own favorite plotting tool."
|
||||
fi
|
||||
|
||||
# remove temporary files
|
||||
rm j[nsr]*
|
||||
|
||||
if [ -z "$quiet" ]; then
|
||||
echo "===========================================";
|
||||
echo "the universe?"
|
||||
fi
|
||||
|
||||
if [ "$quiet" ]; then
|
||||
echo ""
|
||||
echo "If you'd like to repeat that with the sound on,"
|
||||
echo "please turn off the quiet button in 2df230k.sh and try again."
|
||||
fi
|
28
masks/2df230k/README
Normal file
28
masks/2df230k/README
Normal file
|
@ -0,0 +1,28 @@
|
|||
At the command line, type
|
||||
2df230k.sh
|
||||
and find out what happens.
|
||||
|
||||
N.B. An improved version of the final 2dFGRS mask and the corresponding
|
||||
list of galaxies produced by Andrew Hamilton is available online:
|
||||
http://space.mit.edu/home/tegmark/mangle/download/data.html
|
||||
|
||||
You should be aware that Intel and Sun chips have different endianness.
|
||||
If your system is having a problem reading unformatted fortran files
|
||||
maglim.ngp.dat
|
||||
maglim.ran.dat
|
||||
maglim.sgp.dat
|
||||
mask.ngp.dat
|
||||
mask.ran.dat
|
||||
mask.sgp.dat
|
||||
it's probably an endianness problem.
|
||||
Read HELP.unformatted in the mangle directory.
|
||||
|
||||
Alternatively, you can use the formatted versions of these files
|
||||
maglim.ngp.dat.fmt
|
||||
maglim.ran.dat.fmt
|
||||
maglim.sgp.dat.fmt
|
||||
mask.ngp.dat.fmt
|
||||
mask.ran.dat.fmt
|
||||
mask.sgp.dat.fmt
|
||||
which are available online at
|
||||
http://space.mit.edu/home/tegmark/mangle/download/data.html
|
1
masks/2df230k/azel.dat
Symbolic link
1
masks/2df230k/azel.dat
Symbolic link
|
@ -0,0 +1 @@
|
|||
../2qz10k/azel.dat
|
903
masks/2df230k/centres.ngp
Normal file
903
masks/2df230k/centres.ngp
Normal file
|
@ -0,0 +1,903 @@
|
|||
unit h
|
||||
skip 43
|
||||
RA & Dec (B1950) hh mm ss.ss -dd mm ss.s d
|
||||
circle 001 1
|
||||
180.0663 -6.7998 001 ngp.config.001.fld 12 0 15.91 -06 47 59.2 1
|
||||
circle 002 1
|
||||
180.8093 -6.7998 002 ngp.config.002.fld 12 3 14.23 -06 47 59.2 1
|
||||
circle 003 1
|
||||
182.4329 -6.7998 003 ngp.config.003.fld 12 9 43.90 -06 47 59.2 1
|
||||
circle 004 1
|
||||
182.7433 -6.7998 004 ngp.config.004.fld 12 10 58.40 -06 47 59.2 1
|
||||
circle 005 1
|
||||
183.8314 -6.7998 005 ngp.config.005.fld 12 15 19.54 -06 47 59.2 1
|
||||
circle 006 1
|
||||
185.0752 -6.7998 006 ngp.config.006.fld 12 20 18.04 -06 47 59.2 1
|
||||
circle 007 1
|
||||
186.8036 -6.7998 007 ngp.config.007.fld 12 27 12.86 -06 47 59.2 1
|
||||
circle 008 1
|
||||
187.7907 -6.7998 008 ngp.config.008.fld 12 31 9.77 -06 47 59.2 1
|
||||
circle 009 1
|
||||
189.0231 -6.7998 009 ngp.config.009.fld 12 36 5.55 -06 47 59.2 1
|
||||
circle 010 1
|
||||
189.8960 -6.7998 010 ngp.config.010.fld 12 39 35.03 -06 47 59.2 1
|
||||
circle 011 1
|
||||
191.4805 -6.7998 011 ngp.config.011.fld 12 45 55.33 -06 47 59.2 1
|
||||
circle 012 1
|
||||
192.4258 -6.7998 012 ngp.config.012.fld 12 49 42.20 -06 47 59.2 1
|
||||
circle 013 1
|
||||
193.2832 -6.7998 013 ngp.config.013.fld 12 53 7.97 -06 47 59.2 1
|
||||
circle 014 1
|
||||
194.1439 -6.7998 014 ngp.config.014.fld 12 56 34.54 -06 47 59.2 1
|
||||
circle 015 1
|
||||
195.1045 -6.7998 015 ngp.config.015.fld 13 0 25.09 -06 47 59.2 1
|
||||
circle 016 1
|
||||
196.8206 -6.7998 016 ngp.config.016.fld 13 7 16.94 -06 47 59.2 1
|
||||
circle 017 1
|
||||
197.2255 -6.7998 017 ngp.config.017.fld 13 8 54.13 -06 47 59.2 1
|
||||
circle 018 1
|
||||
198.8893 -6.7998 018 ngp.config.018.fld 13 15 33.43 -06 47 59.2 1
|
||||
circle 019 1
|
||||
200.6166 -6.7998 019 ngp.config.019.fld 13 22 27.98 -06 47 59.2 1
|
||||
circle 020 1
|
||||
202.3413 -6.7998 020 ngp.config.020.fld 13 29 21.92 -06 47 59.2 1
|
||||
circle 021 1
|
||||
203.9454 -6.7998 021 ngp.config.021.fld 13 35 46.89 -06 47 59.2 1
|
||||
circle 022 1
|
||||
205.4266 -6.7998 022 ngp.config.022.fld 13 41 42.39 -06 47 59.2 1
|
||||
circle 023 1
|
||||
206.8027 -6.7998 023 ngp.config.023.fld 13 47 12.64 -06 47 59.2 1
|
||||
circle 024 1
|
||||
208.1004 -6.7998 024 ngp.config.024.fld 13 52 24.10 -06 47 59.2 1
|
||||
circle 025 1
|
||||
209.4481 -6.7998 025 ngp.config.025.fld 13 57 47.55 -06 47 59.2 1
|
||||
circle 026 1
|
||||
211.1550 -6.7998 026 ngp.config.026.fld 14 4 37.21 -06 47 59.2 1
|
||||
circle 027 1
|
||||
212.4390 -6.7998 027 ngp.config.027.fld 14 9 45.37 -06 47 59.2 1
|
||||
circle 028 1
|
||||
213.8208 -6.7998 028 ngp.config.028.fld 14 15 17.00 -06 47 59.2 1
|
||||
circle 029 1
|
||||
215.3407 -6.7998 029 ngp.config.029.fld 14 21 21.77 -06 47 59.2 1
|
||||
circle 030 1
|
||||
217.0685 -6.7998 030 ngp.config.030.fld 14 28 16.43 -06 47 59.2 1
|
||||
circle 031 1
|
||||
218.6557 -6.7998 031 ngp.config.031.fld 14 34 37.37 -06 47 59.2 1
|
||||
circle 032 1
|
||||
220.3090 -6.7998 032 ngp.config.032.fld 14 41 14.16 -06 47 59.2 1
|
||||
circle 033 1
|
||||
222.0418 -6.7998 033 ngp.config.033.fld 14 48 10.04 -06 47 59.2 1
|
||||
circle 034 1
|
||||
147.6922 -6.7998 034 ngp.config.034.fld 9 50 46.13 -06 47 59.2 1
|
||||
circle 035 1
|
||||
148.7244 -6.7998 035 ngp.config.035.fld 9 54 53.86 -06 47 59.2 1
|
||||
circle 036 1
|
||||
149.9539 -6.7998 036 ngp.config.036.fld 9 59 48.94 -06 47 59.2 1
|
||||
circle 037 1
|
||||
151.3021 -6.7998 037 ngp.config.037.fld 10 5 12.50 -06 47 59.2 1
|
||||
circle 038 1
|
||||
152.6805 -6.7998 038 ngp.config.038.fld 10 10 43.31 -06 47 59.2 1
|
||||
circle 039 1
|
||||
153.6468 -6.7998 039 ngp.config.039.fld 10 14 35.23 -06 47 59.2 1
|
||||
circle 040 1
|
||||
154.9466 -6.7998 040 ngp.config.040.fld 10 19 47.19 -06 47 59.2 1
|
||||
circle 041 1
|
||||
156.6475 -6.7998 041 ngp.config.041.fld 10 26 35.41 -06 47 59.2 1
|
||||
circle 042 1
|
||||
157.6584 -6.7998 042 ngp.config.042.fld 10 30 38.02 -06 47 59.2 1
|
||||
circle 043 1
|
||||
159.0954 -6.7998 043 ngp.config.043.fld 10 36 22.89 -06 47 59.2 1
|
||||
circle 044 1
|
||||
160.6192 -6.7998 044 ngp.config.044.fld 10 42 28.62 -06 47 59.2 1
|
||||
circle 045 1
|
||||
162.0950 -6.7998 045 ngp.config.045.fld 10 48 22.80 -06 47 59.2 1
|
||||
circle 046 1
|
||||
162.8355 -6.7998 046 ngp.config.046.fld 10 51 20.53 -06 47 59.2 1
|
||||
circle 047 1
|
||||
163.8803 -6.7998 047 ngp.config.047.fld 10 55 31.27 -06 47 59.2 1
|
||||
circle 048 1
|
||||
165.3735 -6.7998 048 ngp.config.048.fld 11 1 29.65 -06 47 59.2 1
|
||||
circle 049 1
|
||||
166.7316 -6.7998 049 ngp.config.049.fld 11 6 55.58 -06 47 59.2 1
|
||||
circle 050 1
|
||||
168.2049 -6.7998 050 ngp.config.050.fld 11 12 49.18 -06 47 59.2 1
|
||||
circle 051 1
|
||||
169.9333 -6.7998 051 ngp.config.051.fld 11 19 44.00 -06 47 59.2 1
|
||||
circle 052 1
|
||||
171.6620 -6.7998 052 ngp.config.052.fld 11 26 38.87 -06 47 59.2 1
|
||||
circle 053 1
|
||||
172.7138 -6.7998 053 ngp.config.053.fld 11 30 51.32 -06 47 59.2 1
|
||||
circle 054 1
|
||||
174.2111 -6.7998 054 ngp.config.054.fld 11 36 50.67 -06 47 59.2 1
|
||||
circle 055 1
|
||||
175.5603 -6.7998 055 ngp.config.055.fld 11 42 14.48 -06 47 59.2 1
|
||||
circle 056 1
|
||||
176.8865 -6.7998 056 ngp.config.056.fld 11 47 32.76 -06 47 59.2 1
|
||||
circle 057 1
|
||||
177.9039 -6.7998 057 ngp.config.057.fld 11 51 36.93 -06 47 59.2 1
|
||||
circle 058 1
|
||||
178.8657 -6.7998 058 ngp.config.058.fld 11 55 27.77 -06 47 59.2 1
|
||||
circle 059 1
|
||||
180.5950 -6.7998 059 ngp.config.059.fld 12 2 22.79 -06 47 59.2 1
|
||||
circle 060 1
|
||||
179.9636 -5.2998 060 ngp.config.060.fld 11 59 51.27 -05 17 59.2 1
|
||||
circle 061 1
|
||||
181.6087 -5.2998 061 ngp.config.061.fld 12 6 26.08 -05 17 59.2 1
|
||||
circle 062 1
|
||||
182.3277 -5.2998 062 ngp.config.062.fld 12 9 18.65 -05 17 59.2 1
|
||||
circle 063 1
|
||||
183.1091 -5.2998 063 ngp.config.063.fld 12 12 26.18 -05 17 59.2 1
|
||||
circle 064 1
|
||||
184.2138 -5.2998 064 ngp.config.064.fld 12 16 51.31 -05 17 59.2 1
|
||||
circle 065 1
|
||||
185.9385 -5.2998 065 ngp.config.065.fld 12 23 45.24 -05 17 59.2 1
|
||||
circle 066 1
|
||||
187.2620 -5.2998 066 ngp.config.066.fld 12 29 2.89 -05 17 59.2 1
|
||||
circle 067 1
|
||||
188.5128 -5.2998 067 ngp.config.067.fld 12 34 3.07 -05 17 59.2 1
|
||||
circle 068 1
|
||||
189.5006 -5.2998 068 ngp.config.068.fld 12 38 0.15 -05 17 59.2 1
|
||||
circle 069 1
|
||||
190.0262 -5.2998 069 ngp.config.069.fld 12 40 6.30 -05 17 59.2 1
|
||||
circle 070 1
|
||||
191.0596 -5.2998 070 ngp.config.070.fld 12 44 14.30 -05 17 59.2 1
|
||||
circle 071 1
|
||||
192.3448 -5.2998 071 ngp.config.071.fld 12 49 22.75 -05 17 59.2 1
|
||||
circle 072 1
|
||||
193.6451 -5.2998 072 ngp.config.072.fld 12 54 34.82 -05 17 59.2 1
|
||||
circle 073 1
|
||||
194.7404 -5.2998 073 ngp.config.073.fld 12 58 57.69 -05 17 59.2 1
|
||||
circle 074 1
|
||||
195.9978 -5.2998 074 ngp.config.074.fld 13 3 59.46 -05 17 59.2 1
|
||||
circle 075 1
|
||||
196.8018 -5.2998 075 ngp.config.075.fld 13 7 12.43 -05 17 59.2 1
|
||||
circle 076 1
|
||||
198.5240 -5.2998 076 ngp.config.076.fld 13 14 5.75 -05 17 59.2 1
|
||||
circle 077 1
|
||||
200.2474 -5.2998 077 ngp.config.077.fld 13 20 59.38 -05 17 59.2 1
|
||||
circle 078 1
|
||||
201.9706 -5.2998 078 ngp.config.078.fld 13 27 52.95 -05 17 59.2 1
|
||||
circle 079 1
|
||||
203.4628 -5.2998 079 ngp.config.079.fld 13 33 51.08 -05 17 59.2 1
|
||||
circle 080 1
|
||||
205.1860 -5.2998 080 ngp.config.080.fld 13 40 44.63 -05 17 59.2 1
|
||||
circle 081 1
|
||||
206.9092 -5.2998 081 ngp.config.081.fld 13 47 38.21 -05 17 59.2 1
|
||||
circle 082 1
|
||||
208.6316 -5.2998 082 ngp.config.082.fld 13 54 31.59 -05 17 59.2 1
|
||||
circle 083 1
|
||||
210.0102 -5.2998 083 ngp.config.083.fld 14 0 2.44 -05 17 59.2 1
|
||||
circle 084 1
|
||||
211.4305 -5.2998 084 ngp.config.084.fld 14 5 43.32 -05 17 59.2 1
|
||||
circle 085 1
|
||||
212.9673 -5.2998 085 ngp.config.085.fld 14 11 52.15 -05 17 59.2 1
|
||||
circle 086 1
|
||||
214.1917 -5.2998 086 ngp.config.086.fld 14 16 46.00 -05 17 59.2 1
|
||||
circle 087 1
|
||||
215.9165 -5.2998 087 ngp.config.087.fld 14 23 39.97 -05 17 59.2 1
|
||||
circle 088 1
|
||||
217.6404 -5.2998 088 ngp.config.088.fld 14 30 33.70 -05 17 59.2 1
|
||||
circle 089 1
|
||||
219.3378 -5.2998 089 ngp.config.089.fld 14 37 21.06 -05 17 59.2 1
|
||||
circle 090 1
|
||||
220.8795 -5.2998 090 ngp.config.090.fld 14 43 31.09 -05 17 59.2 1
|
||||
circle 091 1
|
||||
222.6191 -5.2998 091 ngp.config.091.fld 14 50 28.59 -05 17 59.2 1
|
||||
circle 092 1
|
||||
147.8548 -5.2998 092 ngp.config.092.fld 9 51 25.16 -05 17 59.2 1
|
||||
circle 093 1
|
||||
149.1789 -5.2998 093 ngp.config.093.fld 9 56 42.93 -05 17 59.2 1
|
||||
circle 094 1
|
||||
150.2877 -5.2998 094 ngp.config.094.fld 10 1 9.05 -05 17 59.2 1
|
||||
circle 095 1
|
||||
151.1795 -5.2998 095 ngp.config.095.fld 10 4 43.09 -05 17 59.2 1
|
||||
circle 096 1
|
||||
152.1447 -5.2998 096 ngp.config.096.fld 10 8 34.72 -05 17 59.2 1
|
||||
circle 097 1
|
||||
153.5722 -5.2998 097 ngp.config.097.fld 10 14 17.32 -05 17 59.2 1
|
||||
circle 098 1
|
||||
154.4400 -5.2998 098 ngp.config.098.fld 10 17 45.60 -05 17 59.2 1
|
||||
circle 099 1
|
||||
155.9258 -5.2998 099 ngp.config.099.fld 10 23 42.18 -05 17 59.2 1
|
||||
circle 100 1
|
||||
157.3697 -5.2998 100 ngp.config.100.fld 10 29 28.73 -05 17 59.2 1
|
||||
circle 101 1
|
||||
158.7467 -5.2998 101 ngp.config.101.fld 10 34 59.21 -05 17 59.2 1
|
||||
circle 102 1
|
||||
160.1842 -5.2998 102 ngp.config.102.fld 10 40 44.20 -05 17 59.2 1
|
||||
circle 103 1
|
||||
161.8380 -5.2998 103 ngp.config.103.fld 10 47 21.11 -05 17 59.2 1
|
||||
circle 104 1
|
||||
162.6962 -5.2998 104 ngp.config.104.fld 10 50 47.10 -05 17 59.2 1
|
||||
circle 105 1
|
||||
164.0607 -5.2998 105 ngp.config.105.fld 10 56 14.58 -05 17 59.2 1
|
||||
circle 106 1
|
||||
165.4967 -5.2998 106 ngp.config.106.fld 11 1 59.21 -05 17 59.2 1
|
||||
circle 107 1
|
||||
166.8589 -5.2998 107 ngp.config.107.fld 11 7 26.13 -05 17 59.2 1
|
||||
circle 108 1
|
||||
168.0560 -5.2998 108 ngp.config.108.fld 11 12 13.45 -05 17 59.2 1
|
||||
circle 109 1
|
||||
169.1722 -5.2998 109 ngp.config.109.fld 11 16 41.32 -05 17 59.2 1
|
||||
circle 110 1
|
||||
170.5853 -5.2998 110 ngp.config.110.fld 11 22 20.48 -05 17 59.2 1
|
||||
circle 111 1
|
||||
171.6585 -5.2998 111 ngp.config.111.fld 11 26 38.04 -05 17 59.2 1
|
||||
circle 112 1
|
||||
172.8686 -5.2998 112 ngp.config.112.fld 11 31 28.46 -05 17 59.2 1
|
||||
circle 113 1
|
||||
174.3092 -5.2998 113 ngp.config.113.fld 11 37 14.20 -05 17 59.2 1
|
||||
circle 114 1
|
||||
175.4768 -5.2998 114 ngp.config.114.fld 11 41 54.44 -05 17 59.2 1
|
||||
circle 115 1
|
||||
176.6625 -5.2998 115 ngp.config.115.fld 11 46 39.00 -05 17 59.2 1
|
||||
circle 116 1
|
||||
177.4124 -5.2998 116 ngp.config.116.fld 11 49 38.98 -05 17 59.2 1
|
||||
circle 117 1
|
||||
179.1391 -5.2998 117 ngp.config.117.fld 11 56 33.38 -05 17 59.2 1
|
||||
circle 118 1
|
||||
180.8785 -5.2998 118 ngp.config.118.fld 12 3 30.85 -05 17 59.2 1
|
||||
circle 119 1
|
||||
179.4724 -3.7998 119 ngp.config.119.fld 11 57 53.38 -03 47 59.2 1
|
||||
circle 120 1
|
||||
180.6245 -3.7998 120 ngp.config.120.fld 12 2 29.89 -03 47 59.2 1
|
||||
circle 121 1
|
||||
182.3250 -3.7998 121 ngp.config.121.fld 12 9 18.01 -03 47 59.2 1
|
||||
circle 122 1
|
||||
183.1826 -3.7998 122 ngp.config.122.fld 12 12 43.83 -03 47 59.2 1
|
||||
circle 123 1
|
||||
184.4721 -3.7998 123 ngp.config.123.fld 12 17 53.30 -03 47 59.2 1
|
||||
circle 124 1
|
||||
185.9561 -3.7998 124 ngp.config.124.fld 12 23 49.47 -03 47 59.2 1
|
||||
circle 125 1
|
||||
187.4064 -3.7998 125 ngp.config.125.fld 12 29 37.54 -03 47 59.2 1
|
||||
circle 126 1
|
||||
188.3788 -3.7998 126 ngp.config.126.fld 12 33 30.91 -03 47 59.2 1
|
||||
circle 127 1
|
||||
189.3117 -3.7998 127 ngp.config.127.fld 12 37 14.80 -03 47 59.2 1
|
||||
circle 128 1
|
||||
190.5262 -3.7998 128 ngp.config.128.fld 12 42 6.28 -03 47 59.2 1
|
||||
circle 129 1
|
||||
192.0498 -3.7998 129 ngp.config.129.fld 12 48 11.96 -03 47 59.2 1
|
||||
circle 130 1
|
||||
192.8354 -3.7998 130 ngp.config.130.fld 12 51 20.50 -03 47 59.2 1
|
||||
circle 131 1
|
||||
193.9661 -3.7998 131 ngp.config.131.fld 12 55 51.86 -03 47 59.2 1
|
||||
circle 132 1
|
||||
194.3959 -3.7998 132 ngp.config.132.fld 12 57 35.01 -03 47 59.2 1
|
||||
circle 133 1
|
||||
195.7092 -3.7998 133 ngp.config.133.fld 13 2 50.20 -03 47 59.2 1
|
||||
circle 134 1
|
||||
196.8394 -3.7998 134 ngp.config.134.fld 13 7 21.45 -03 47 59.2 1
|
||||
circle 135 1
|
||||
198.4674 -3.7998 135 ngp.config.135.fld 13 13 52.17 -03 47 59.2 1
|
||||
circle 136 1
|
||||
199.8712 -3.7998 136 ngp.config.136.fld 13 19 29.09 -03 47 59.2 1
|
||||
circle 137 1
|
||||
201.1199 -3.7998 137 ngp.config.137.fld 13 24 28.78 -03 47 59.2 1
|
||||
circle 138 1
|
||||
202.4256 -3.7998 138 ngp.config.138.fld 13 29 42.14 -03 47 59.2 1
|
||||
circle 139 1
|
||||
204.0013 -3.7998 139 ngp.config.139.fld 13 36 0.30 -03 47 59.2 1
|
||||
circle 140 1
|
||||
205.7209 -3.7998 140 ngp.config.140.fld 13 42 53.02 -03 47 59.2 1
|
||||
circle 141 1
|
||||
207.4425 -3.7998 141 ngp.config.141.fld 13 49 46.21 -03 47 59.2 1
|
||||
circle 142 1
|
||||
209.1616 -3.7998 142 ngp.config.142.fld 13 56 38.78 -03 47 59.2 1
|
||||
circle 143 1
|
||||
210.5016 -3.7998 143 ngp.config.143.fld 14 2 0.39 -03 47 59.2 1
|
||||
circle 144 1
|
||||
212.0739 -3.7998 144 ngp.config.144.fld 14 8 17.74 -03 47 59.2 1
|
||||
circle 145 1
|
||||
213.3459 -3.7998 145 ngp.config.145.fld 14 13 23.02 -03 47 59.2 1
|
||||
circle 146 1
|
||||
215.0089 -3.7998 146 ngp.config.146.fld 14 20 2.13 -03 47 59.2 1
|
||||
circle 147 1
|
||||
216.7447 -3.7998 147 ngp.config.147.fld 14 26 58.73 -03 47 59.2 1
|
||||
circle 148 1
|
||||
218.4642 -3.7998 148 ngp.config.148.fld 14 33 51.41 -03 47 59.2 1
|
||||
circle 149 1
|
||||
220.1837 -3.7998 149 ngp.config.149.fld 14 40 44.09 -03 47 59.2 1
|
||||
circle 150 1
|
||||
221.6512 -3.7998 150 ngp.config.150.fld 14 46 36.30 -03 47 59.2 1
|
||||
circle 151 1
|
||||
223.3872 -3.7998 151 ngp.config.151.fld 14 53 32.93 -03 47 59.2 1
|
||||
circle 152 1
|
||||
148.0394 -3.7998 152 ngp.config.152.fld 9 52 9.45 -03 47 59.2 1
|
||||
circle 153 1
|
||||
149.1712 -3.7998 153 ngp.config.153.fld 9 56 41.09 -03 47 59.2 1
|
||||
circle 154 1
|
||||
150.4720 -3.7998 154 ngp.config.154.fld 10 1 53.28 -03 47 59.2 1
|
||||
circle 155 1
|
||||
151.9610 -3.7998 155 ngp.config.155.fld 10 7 50.64 -03 47 59.2 1
|
||||
circle 156 1
|
||||
153.4498 -3.7998 156 ngp.config.156.fld 10 13 47.94 -03 47 59.2 1
|
||||
circle 157 1
|
||||
154.5330 -3.7998 157 ngp.config.157.fld 10 18 7.93 -03 47 59.2 1
|
||||
circle 158 1
|
||||
156.2379 -3.7998 158 ngp.config.158.fld 10 24 57.09 -03 47 59.2 1
|
||||
circle 159 1
|
||||
157.9569 -3.7998 159 ngp.config.159.fld 10 31 49.65 -03 47 59.2 1
|
||||
circle 160 1
|
||||
159.2338 -3.7998 160 ngp.config.160.fld 10 36 56.11 -03 47 59.2 1
|
||||
circle 161 1
|
||||
160.4282 -3.7998 161 ngp.config.161.fld 10 41 42.77 -03 47 59.2 1
|
||||
circle 162 1
|
||||
161.8942 -3.7998 162 ngp.config.162.fld 10 47 34.60 -03 47 59.2 1
|
||||
circle 163 1
|
||||
162.7431 -3.7998 163 ngp.config.163.fld 10 50 58.34 -03 47 59.2 1
|
||||
circle 164 1
|
||||
164.3869 -3.7998 164 ngp.config.164.fld 10 57 32.86 -03 47 59.2 1
|
||||
circle 165 1
|
||||
165.6858 -3.7998 165 ngp.config.165.fld 11 2 44.60 -03 47 59.2 1
|
||||
circle 166 1
|
||||
167.0790 -3.7998 166 ngp.config.166.fld 11 8 18.96 -03 47 59.2 1
|
||||
circle 167 1
|
||||
167.7439 -3.7998 167 ngp.config.167.fld 11 10 58.54 -03 47 59.2 1
|
||||
circle 168 1
|
||||
168.6947 -3.7998 168 ngp.config.168.fld 11 14 46.73 -03 47 59.2 1
|
||||
circle 169 1
|
||||
169.9366 -3.7998 169 ngp.config.169.fld 11 19 44.78 -03 47 59.2 1
|
||||
circle 170 1
|
||||
171.4387 -3.7998 170 ngp.config.170.fld 11 25 45.29 -03 47 59.2 1
|
||||
circle 171 1
|
||||
172.5892 -3.7998 171 ngp.config.171.fld 11 30 21.41 -03 47 59.2 1
|
||||
circle 172 1
|
||||
173.2705 -3.7998 172 ngp.config.172.fld 11 33 4.93 -03 47 59.2 1
|
||||
circle 173 1
|
||||
174.5289 -3.7998 173 ngp.config.173.fld 11 38 6.93 -03 47 59.2 1
|
||||
circle 174 1
|
||||
175.6478 -3.7998 174 ngp.config.174.fld 11 42 35.46 -03 47 59.2 1
|
||||
circle 175 1
|
||||
177.2273 -3.7998 175 ngp.config.175.fld 11 48 54.55 -03 47 59.2 1
|
||||
circle 176 1
|
||||
178.0311 -3.7998 176 ngp.config.176.fld 11 52 7.46 -03 47 59.2 1
|
||||
circle 177 1
|
||||
179.7448 -3.7998 177 ngp.config.177.fld 11 58 58.74 -03 47 59.2 1
|
||||
circle 178 1
|
||||
179.6763 -2.2998 178 ngp.config.178.fld 11 58 42.31 -02 17 59.2 1
|
||||
circle 179 1
|
||||
181.1478 -2.2998 179 ngp.config.179.fld 12 4 35.46 -02 17 59.2 1
|
||||
circle 180 1
|
||||
182.6107 -2.2998 180 ngp.config.180.fld 12 10 26.56 -02 17 59.2 1
|
||||
circle 181 1
|
||||
183.9147 -2.2998 181 ngp.config.181.fld 12 15 39.52 -02 17 59.2 1
|
||||
circle 182 1
|
||||
184.9857 -2.2998 182 ngp.config.182.fld 12 19 56.56 -02 17 59.2 1
|
||||
circle 183 1
|
||||
186.2807 -2.2998 183 ngp.config.183.fld 12 25 7.38 -02 17 59.2 1
|
||||
circle 184 1
|
||||
187.4638 -2.2998 184 ngp.config.184.fld 12 29 51.32 -02 17 59.2 1
|
||||
circle 185 1
|
||||
188.6960 -2.2998 185 ngp.config.185.fld 12 34 47.03 -02 17 59.2 1
|
||||
circle 186 1
|
||||
189.7308 -2.2998 186 ngp.config.186.fld 12 38 55.39 -02 17 59.2 1
|
||||
circle 187 1
|
||||
190.8215 -2.2998 187 ngp.config.187.fld 12 43 17.17 -02 17 59.2 1
|
||||
circle 188 1
|
||||
191.8479 -2.2998 188 ngp.config.188.fld 12 47 23.50 -02 17 59.2 1
|
||||
circle 189 1
|
||||
192.9612 -2.2998 189 ngp.config.189.fld 12 51 50.69 -02 17 59.2 1
|
||||
circle 190 1
|
||||
193.9113 -2.2998 190 ngp.config.190.fld 12 55 38.72 -02 17 59.2 1
|
||||
circle 191 1
|
||||
194.9045 -2.2998 191 ngp.config.191.fld 12 59 37.08 -02 17 59.2 1
|
||||
circle 192 1
|
||||
195.2431 -2.2998 192 ngp.config.192.fld 13 0 58.34 -02 17 59.2 1
|
||||
circle 193 1
|
||||
196.6639 -2.2998 193 ngp.config.193.fld 13 6 39.34 -02 17 59.2 1
|
||||
circle 194 1
|
||||
197.7561 -2.2998 194 ngp.config.194.fld 13 11 1.47 -02 17 59.2 1
|
||||
circle 195 1
|
||||
199.1691 -2.2998 195 ngp.config.195.fld 13 16 40.58 -02 17 59.2 1
|
||||
circle 196 1
|
||||
200.1002 -2.2998 196 ngp.config.196.fld 13 20 24.05 -02 17 59.2 1
|
||||
circle 197 1
|
||||
201.4427 -2.2998 197 ngp.config.197.fld 13 25 46.25 -02 17 59.2 1
|
||||
circle 198 1
|
||||
202.0821 -2.2998 198 ngp.config.198.fld 13 28 19.71 -02 17 59.2 1
|
||||
circle 199 1
|
||||
202.8443 -2.2998 199 ngp.config.199.fld 13 31 22.63 -02 17 59.2 1
|
||||
circle 200 1
|
||||
204.0372 -2.2998 200 ngp.config.200.fld 13 36 8.94 -02 17 59.2 1
|
||||
circle 201 1
|
||||
205.5367 -2.2998 201 ngp.config.201.fld 13 42 8.80 -02 17 59.2 1
|
||||
circle 202 1
|
||||
207.1414 -2.2998 202 ngp.config.202.fld 13 48 33.94 -02 17 59.2 1
|
||||
circle 203 1
|
||||
208.5105 -2.2998 203 ngp.config.203.fld 13 54 2.53 -02 17 59.2 1
|
||||
circle 204 1
|
||||
210.1411 -2.2998 204 ngp.config.204.fld 14 0 33.87 -02 17 59.2 1
|
||||
circle 205 1
|
||||
211.7667 -2.2998 205 ngp.config.205.fld 14 7 4.00 -02 17 59.2 1
|
||||
circle 206 1
|
||||
212.9672 -2.2998 206 ngp.config.206.fld 14 11 52.13 -02 17 59.2 1
|
||||
circle 207 1
|
||||
214.2800 -2.2998 207 ngp.config.207.fld 14 17 7.20 -02 17 59.2 1
|
||||
circle 208 1
|
||||
215.4874 -2.2998 208 ngp.config.208.fld 14 21 56.98 -02 17 59.2 1
|
||||
circle 209 1
|
||||
217.0072 -2.2998 209 ngp.config.209.fld 14 28 1.74 -02 17 59.2 1
|
||||
circle 210 1
|
||||
218.1086 -2.2998 210 ngp.config.210.fld 14 32 26.06 -02 17 59.2 1
|
||||
circle 211 1
|
||||
219.4865 -2.2998 211 ngp.config.211.fld 14 37 56.77 -02 17 59.2 1
|
||||
circle 212 1
|
||||
220.6003 -2.2998 212 ngp.config.212.fld 14 42 24.06 -02 17 59.2 1
|
||||
circle 213 1
|
||||
222.0713 -2.2998 213 ngp.config.213.fld 14 48 17.11 -02 17 59.2 1
|
||||
circle 214 1
|
||||
146.9471 -2.2998 214 ngp.config.214.fld 9 47 47.31 -02 17 59.2 1
|
||||
circle 215 1
|
||||
148.2169 -2.2998 215 ngp.config.215.fld 9 52 52.05 -02 17 59.2 1
|
||||
circle 216 1
|
||||
149.4573 -2.2998 216 ngp.config.216.fld 9 57 49.75 -02 17 59.2 1
|
||||
circle 217 1
|
||||
150.3967 -2.2998 217 ngp.config.217.fld 10 1 35.20 -02 17 59.2 1
|
||||
circle 218 1
|
||||
151.8080 -2.2998 218 ngp.config.218.fld 10 7 13.93 -02 17 59.2 1
|
||||
circle 219 1
|
||||
152.8348 -2.2998 219 ngp.config.219.fld 10 11 20.36 -02 17 59.2 1
|
||||
circle 220 1
|
||||
153.9601 -2.2998 220 ngp.config.220.fld 10 15 50.43 -02 17 59.2 1
|
||||
circle 221 1
|
||||
154.8085 -2.2998 221 ngp.config.221.fld 10 19 14.04 -02 17 59.2 1
|
||||
circle 222 1
|
||||
156.0095 -2.2998 222 ngp.config.222.fld 10 24 2.27 -02 17 59.2 1
|
||||
circle 223 1
|
||||
157.1250 -2.2998 223 ngp.config.223.fld 10 28 30.00 -02 17 59.2 1
|
||||
circle 224 1
|
||||
158.0330 -2.2998 224 ngp.config.224.fld 10 32 7.91 -02 17 59.2 1
|
||||
circle 225 1
|
||||
159.1759 -2.2998 225 ngp.config.225.fld 10 36 42.22 -02 17 59.2 1
|
||||
circle 226 1
|
||||
160.0797 -2.2998 226 ngp.config.226.fld 10 40 19.14 -02 17 59.2 1
|
||||
circle 227 1
|
||||
160.8898 -2.2998 227 ngp.config.227.fld 10 43 33.56 -02 17 59.2 1
|
||||
circle 228 1
|
||||
162.3204 -2.2998 228 ngp.config.228.fld 10 49 16.89 -02 17 59.2 1
|
||||
circle 229 1
|
||||
163.4020 -2.2998 229 ngp.config.229.fld 10 53 36.48 -02 17 59.2 1
|
||||
circle 230 1
|
||||
164.8698 -2.2998 230 ngp.config.230.fld 10 59 28.75 -02 17 59.2 1
|
||||
circle 231 1
|
||||
165.8989 -2.2998 231 ngp.config.231.fld 11 3 35.73 -02 17 59.2 1
|
||||
circle 232 1
|
||||
167.0272 -2.2998 232 ngp.config.232.fld 11 8 6.52 -02 17 59.2 1
|
||||
circle 233 1
|
||||
167.8949 -2.2998 233 ngp.config.233.fld 11 11 34.77 -02 17 59.2 1
|
||||
circle 234 1
|
||||
169.0705 -2.2998 234 ngp.config.234.fld 11 16 16.91 -02 17 59.2 1
|
||||
circle 235 1
|
||||
170.2965 -2.2998 235 ngp.config.235.fld 11 21 11.16 -02 17 59.2 1
|
||||
circle 236 1
|
||||
171.9273 -2.2998 236 ngp.config.236.fld 11 27 42.56 -02 17 59.2 1
|
||||
circle 237 1
|
||||
173.0782 -2.2998 237 ngp.config.237.fld 11 32 18.77 -02 17 59.2 1
|
||||
circle 238 1
|
||||
174.0817 -2.2998 238 ngp.config.238.fld 11 36 19.60 -02 17 59.2 1
|
||||
circle 239 1
|
||||
174.9498 -2.2998 239 ngp.config.239.fld 11 39 47.94 -02 17 59.2 1
|
||||
circle 240 1
|
||||
175.5971 -2.2998 240 ngp.config.240.fld 11 42 23.30 -02 17 59.2 1
|
||||
circle 241 1
|
||||
176.6381 -2.2998 241 ngp.config.241.fld 11 46 33.15 -02 17 59.2 1
|
||||
circle 242 1
|
||||
177.5819 -2.2998 242 ngp.config.242.fld 11 50 19.65 -02 17 59.2 1
|
||||
circle 243 1
|
||||
178.2972 -2.2998 243 ngp.config.243.fld 11 53 11.32 -02 17 59.2 1
|
||||
circle 244 1
|
||||
179.9269 -2.2998 244 ngp.config.244.fld 11 59 42.45 -02 17 59.2 1
|
||||
circle 245 1
|
||||
180.5227 -0.9498 245 ngp.config.245.fld 12 2 5.45 -00 56 59.2 1
|
||||
circle 246 1
|
||||
182.1412 -0.9498 246 ngp.config.246.fld 12 8 33.88 -00 56 59.2 1
|
||||
circle 247 1
|
||||
182.9996 -0.9498 247 ngp.config.247.fld 12 11 59.91 -00 56 59.2 1
|
||||
circle 248 1
|
||||
184.2655 -0.9498 248 ngp.config.248.fld 12 17 3.71 -00 56 59.2 1
|
||||
circle 249 1
|
||||
185.8950 -0.9498 249 ngp.config.249.fld 12 23 34.79 -00 56 59.2 1
|
||||
circle 250 1
|
||||
187.4289 -0.9498 250 ngp.config.250.fld 12 29 42.93 -00 56 59.2 1
|
||||
circle 251 1
|
||||
188.2016 -0.9498 251 ngp.config.251.fld 12 32 48.39 -00 56 59.2 1
|
||||
circle 252 1
|
||||
189.5967 -0.9498 252 ngp.config.252.fld 12 38 23.20 -00 56 59.2 1
|
||||
circle 253 1
|
||||
190.5202 -0.9498 253 ngp.config.253.fld 12 42 4.85 -00 56 59.2 1
|
||||
circle 254 1
|
||||
191.7677 -0.9498 254 ngp.config.254.fld 12 47 4.26 -00 56 59.2 1
|
||||
circle 255 1
|
||||
192.4791 -0.9498 255 ngp.config.255.fld 12 49 54.98 -00 56 59.2 1
|
||||
circle 256 1
|
||||
193.3254 -0.9498 256 ngp.config.256.fld 12 53 18.10 -00 56 59.2 1
|
||||
circle 257 1
|
||||
194.4813 -0.9498 257 ngp.config.257.fld 12 57 55.51 -00 56 59.2 1
|
||||
circle 258 1
|
||||
195.5383 -0.9498 258 ngp.config.258.fld 13 2 9.20 -00 56 59.2 1
|
||||
circle 259 1
|
||||
196.8787 -0.9498 259 ngp.config.259.fld 13 7 30.88 -00 56 59.2 1
|
||||
circle 260 1
|
||||
197.4977 -0.9498 260 ngp.config.260.fld 13 9 59.44 -00 56 59.2 1
|
||||
circle 261 1
|
||||
198.3311 -0.9498 261 ngp.config.261.fld 13 13 19.46 -00 56 59.2 1
|
||||
circle 262 1
|
||||
198.9742 -0.9498 262 ngp.config.262.fld 13 15 53.82 -00 56 59.2 1
|
||||
circle 263 1
|
||||
199.6974 -0.9498 263 ngp.config.263.fld 13 18 47.38 -00 56 59.2 1
|
||||
circle 264 1
|
||||
200.4520 -0.9498 264 ngp.config.264.fld 13 21 48.48 -00 56 59.2 1
|
||||
circle 265 1
|
||||
201.4713 -0.9498 265 ngp.config.265.fld 13 25 53.11 -00 56 59.2 1
|
||||
circle 266 1
|
||||
202.6190 -0.9498 266 ngp.config.266.fld 13 30 28.55 -00 56 59.2 1
|
||||
circle 267 1
|
||||
203.8501 -0.9498 267 ngp.config.267.fld 13 35 24.02 -00 56 59.2 1
|
||||
circle 268 1
|
||||
205.1810 -0.9498 268 ngp.config.268.fld 13 40 43.44 -00 56 59.2 1
|
||||
circle 269 1
|
||||
206.4944 -0.9498 269 ngp.config.269.fld 13 45 58.66 -00 56 59.2 1
|
||||
circle 270 1
|
||||
207.9688 -0.9498 270 ngp.config.270.fld 13 51 52.51 -00 56 59.2 1
|
||||
circle 271 1
|
||||
208.9493 -0.9498 271 ngp.config.271.fld 13 55 47.83 -00 56 59.2 1
|
||||
circle 272 1
|
||||
210.3054 -0.9498 272 ngp.config.272.fld 14 1 13.30 -00 56 59.2 1
|
||||
circle 273 1
|
||||
211.0930 -0.9498 273 ngp.config.273.fld 14 4 22.31 -00 56 59.2 1
|
||||
circle 274 1
|
||||
212.5057 -0.9498 274 ngp.config.274.fld 14 10 1.36 -00 56 59.2 1
|
||||
circle 275 1
|
||||
213.2024 -0.9498 275 ngp.config.275.fld 14 12 48.58 -00 56 59.2 1
|
||||
circle 276 1
|
||||
214.6438 -0.9498 276 ngp.config.276.fld 14 18 34.50 -00 56 59.2 1
|
||||
circle 277 1
|
||||
215.6964 -0.9498 277 ngp.config.277.fld 14 22 47.13 -00 56 59.2 1
|
||||
circle 278 1
|
||||
217.2198 -0.9498 278 ngp.config.278.fld 14 28 52.74 -00 56 59.2 1
|
||||
circle 279 1
|
||||
218.2473 -0.9498 279 ngp.config.279.fld 14 32 59.35 -00 56 59.2 1
|
||||
circle 280 1
|
||||
219.0034 -0.9498 280 ngp.config.280.fld 14 36 0.82 -00 56 59.2 1
|
||||
circle 281 1
|
||||
220.2348 -0.9498 281 ngp.config.281.fld 14 40 56.34 -00 56 59.2 1
|
||||
circle 282 1
|
||||
221.0170 -0.9498 282 ngp.config.282.fld 14 44 4.07 -00 56 59.2 1
|
||||
circle 283 1
|
||||
222.6477 -0.9498 283 ngp.config.283.fld 14 50 35.44 -00 56 59.2 1
|
||||
circle 284 1
|
||||
147.3264 -0.9498 284 ngp.config.284.fld 9 49 18.33 -00 56 59.2 1
|
||||
circle 285 1
|
||||
148.4995 -0.9498 285 ngp.config.285.fld 9 53 59.87 -00 56 59.2 1
|
||||
circle 286 1
|
||||
149.8137 -0.9498 286 ngp.config.286.fld 9 59 15.28 -00 56 59.2 1
|
||||
circle 287 1
|
||||
151.2994 -0.9498 287 ngp.config.287.fld 10 5 11.86 -00 56 59.2 1
|
||||
circle 288 1
|
||||
152.5398 -0.9498 288 ngp.config.288.fld 10 10 9.55 -00 56 59.2 1
|
||||
circle 289 1
|
||||
152.9362 -0.9498 289 ngp.config.289.fld 10 11 44.68 -00 56 59.2 1
|
||||
circle 290 1
|
||||
153.9099 -0.9498 290 ngp.config.290.fld 10 15 38.38 -00 56 59.2 1
|
||||
circle 291 1
|
||||
154.9506 -0.9498 291 ngp.config.291.fld 10 19 48.14 -00 56 59.2 1
|
||||
circle 292 1
|
||||
156.5653 -0.9498 292 ngp.config.292.fld 10 26 15.68 -00 56 59.2 1
|
||||
circle 293 1
|
||||
157.7466 -0.9498 293 ngp.config.293.fld 10 30 59.18 -00 56 59.2 1
|
||||
circle 294 1
|
||||
158.7677 -0.9498 294 ngp.config.294.fld 10 35 4.26 -00 56 59.2 1
|
||||
circle 295 1
|
||||
159.8903 -0.9498 295 ngp.config.295.fld 10 39 33.68 -00 56 59.2 1
|
||||
circle 296 1
|
||||
160.8619 -0.9498 296 ngp.config.296.fld 10 43 26.86 -00 56 59.2 1
|
||||
circle 297 1
|
||||
162.1366 -0.9498 297 ngp.config.297.fld 10 48 32.78 -00 56 59.2 1
|
||||
circle 298 1
|
||||
163.0806 -0.9498 298 ngp.config.298.fld 10 52 19.35 -00 56 59.2 1
|
||||
circle 299 1
|
||||
164.3354 -0.9498 299 ngp.config.299.fld 10 57 20.49 -00 56 59.2 1
|
||||
circle 300 1
|
||||
165.5952 -0.9498 300 ngp.config.300.fld 11 2 22.84 -00 56 59.2 1
|
||||
circle 301 1
|
||||
166.6419 -0.9498 301 ngp.config.301.fld 11 6 34.05 -00 56 59.2 1
|
||||
circle 302 1
|
||||
167.7047 -0.9498 302 ngp.config.302.fld 11 10 49.14 -00 56 59.2 1
|
||||
circle 303 1
|
||||
168.4527 -0.9498 303 ngp.config.303.fld 11 13 48.65 -00 56 59.2 1
|
||||
circle 304 1
|
||||
169.4679 -0.9498 304 ngp.config.304.fld 11 17 52.30 -00 56 59.2 1
|
||||
circle 305 1
|
||||
170.6477 -0.9498 305 ngp.config.305.fld 11 22 35.44 -00 56 59.2 1
|
||||
circle 306 1
|
||||
172.0336 -0.9498 306 ngp.config.306.fld 11 28 8.07 -00 56 59.2 1
|
||||
circle 307 1
|
||||
173.3060 -0.9498 307 ngp.config.307.fld 11 33 13.45 -00 56 59.2 1
|
||||
circle 308 1
|
||||
174.4226 -0.9498 308 ngp.config.308.fld 11 37 41.43 -00 56 59.2 1
|
||||
circle 309 1
|
||||
175.6569 -0.9498 309 ngp.config.309.fld 11 42 37.65 -00 56 59.2 1
|
||||
circle 310 1
|
||||
176.1164 -0.9498 310 ngp.config.310.fld 11 44 27.93 -00 56 59.2 1
|
||||
circle 311 1
|
||||
177.3153 -0.9498 311 ngp.config.311.fld 11 49 15.67 -00 56 59.2 1
|
||||
circle 312 1
|
||||
178.3546 -0.9498 312 ngp.config.312.fld 11 53 25.11 -00 56 59.2 1
|
||||
circle 313 1
|
||||
178.9883 -0.9498 313 ngp.config.313.fld 11 55 57.18 -00 56 59.2 1
|
||||
circle 314 1
|
||||
180.6339 -0.9498 314 ngp.config.314.fld 12 2 32.13 -00 56 59.2 1
|
||||
circle 315 1
|
||||
179.8098 0.4002 315 ngp.config.315.fld 11 59 14.36 0 24 0.8 1
|
||||
circle 316 1
|
||||
181.0577 0.4002 316 ngp.config.316.fld 12 4 13.85 0 24 0.8 1
|
||||
circle 317 1
|
||||
182.4036 0.4002 317 ngp.config.317.fld 12 9 36.86 0 24 0.8 1
|
||||
circle 318 1
|
||||
183.6655 0.4002 318 ngp.config.318.fld 12 14 39.71 0 24 0.8 1
|
||||
circle 319 1
|
||||
184.6581 0.4002 319 ngp.config.319.fld 12 18 37.94 0 24 0.8 1
|
||||
circle 320 1
|
||||
186.2659 0.4002 320 ngp.config.320.fld 12 25 3.82 0 24 0.8 1
|
||||
circle 321 1
|
||||
187.7527 0.4002 321 ngp.config.321.fld 12 31 0.64 0 24 0.8 1
|
||||
circle 322 1
|
||||
188.7631 0.4002 322 ngp.config.322.fld 12 35 3.14 0 24 0.8 1
|
||||
circle 323 1
|
||||
190.1167 0.4002 323 ngp.config.323.fld 12 40 28.02 0 24 0.8 1
|
||||
circle 324 1
|
||||
191.1909 0.4002 324 ngp.config.324.fld 12 44 45.82 0 24 0.8 1
|
||||
circle 325 1
|
||||
192.0565 0.4002 325 ngp.config.325.fld 12 48 13.55 0 24 0.8 1
|
||||
circle 326 1
|
||||
193.5558 0.4002 326 ngp.config.326.fld 12 54 13.38 0 24 0.8 1
|
||||
circle 327 1
|
||||
194.7514 0.4002 327 ngp.config.327.fld 12 59 0.33 0 24 0.8 1
|
||||
circle 328 1
|
||||
195.8282 0.4002 328 ngp.config.328.fld 13 3 18.78 0 24 0.8 1
|
||||
circle 329 1
|
||||
197.2218 0.4002 329 ngp.config.329.fld 13 8 53.23 0 24 0.8 1
|
||||
circle 330 1
|
||||
198.1539 0.4002 330 ngp.config.330.fld 13 12 36.93 0 24 0.8 1
|
||||
circle 331 1
|
||||
199.5275 0.4002 331 ngp.config.331.fld 13 18 6.60 0 24 0.8 1
|
||||
circle 332 1
|
||||
200.4245 0.4002 332 ngp.config.332.fld 13 21 41.88 0 24 0.8 1
|
||||
circle 333 1
|
||||
201.8170 0.4002 333 ngp.config.333.fld 13 27 16.07 0 24 0.8 1
|
||||
circle 334 1
|
||||
202.7272 0.4002 334 ngp.config.334.fld 13 30 54.53 0 24 0.8 1
|
||||
circle 335 1
|
||||
204.3183 0.4002 335 ngp.config.335.fld 13 37 16.38 0 24 0.8 1
|
||||
circle 336 1
|
||||
205.2626 0.4002 336 ngp.config.336.fld 13 41 3.02 0 24 0.8 1
|
||||
circle 337 1
|
||||
206.8295 0.4002 337 ngp.config.337.fld 13 47 19.09 0 24 0.8 1
|
||||
circle 338 1
|
||||
208.1328 0.4002 338 ngp.config.338.fld 13 52 31.88 0 24 0.8 1
|
||||
circle 339 1
|
||||
209.3506 0.4002 339 ngp.config.339.fld 13 57 24.14 0 24 0.8 1
|
||||
circle 340 1
|
||||
210.5935 0.4002 340 ngp.config.340.fld 14 2 22.44 0 24 0.8 1
|
||||
circle 341 1
|
||||
211.9789 0.4002 341 ngp.config.341.fld 14 7 54.94 0 24 0.8 1
|
||||
circle 342 1
|
||||
212.8844 0.4002 342 ngp.config.342.fld 14 11 32.25 0 24 0.8 1
|
||||
circle 343 1
|
||||
213.9944 0.4002 343 ngp.config.343.fld 14 15 58.66 0 24 0.8 1
|
||||
circle 344 1
|
||||
215.4602 0.4002 344 ngp.config.344.fld 14 21 50.45 0 24 0.8 1
|
||||
circle 345 1
|
||||
217.0251 0.4002 345 ngp.config.345.fld 14 28 6.02 0 24 0.8 1
|
||||
circle 346 1
|
||||
218.1837 0.4002 346 ngp.config.346.fld 14 32 44.10 0 24 0.8 1
|
||||
circle 347 1
|
||||
218.9033 0.4002 347 ngp.config.347.fld 14 35 36.79 0 24 0.8 1
|
||||
circle 348 1
|
||||
220.3839 0.4002 348 ngp.config.348.fld 14 41 32.14 0 24 0.8 1
|
||||
circle 349 1
|
||||
221.4292 0.4002 349 ngp.config.349.fld 14 45 43.02 0 24 0.8 1
|
||||
circle 350 1
|
||||
223.0748 0.4002 350 ngp.config.350.fld 14 52 17.96 0 24 0.8 1
|
||||
circle 351 1
|
||||
147.7346 0.4002 351 ngp.config.351.fld 9 50 56.30 0 24 0.8 1
|
||||
circle 352 1
|
||||
148.7077 0.4002 352 ngp.config.352.fld 9 54 49.85 0 24 0.8 1
|
||||
circle 353 1
|
||||
149.7633 0.4002 353 ngp.config.353.fld 9 59 3.20 0 24 0.8 1
|
||||
circle 354 1
|
||||
150.6625 0.4002 354 ngp.config.354.fld 10 2 39.01 0 24 0.8 1
|
||||
circle 355 1
|
||||
152.1306 0.4002 355 ngp.config.355.fld 10 8 31.34 0 24 0.8 1
|
||||
circle 356 1
|
||||
153.0185 0.4002 356 ngp.config.356.fld 10 12 4.44 0 24 0.8 1
|
||||
circle 357 1
|
||||
153.5947 0.4002 357 ngp.config.357.fld 10 14 22.72 0 24 0.8 1
|
||||
circle 358 1
|
||||
154.8470 0.4002 358 ngp.config.358.fld 10 19 23.28 0 24 0.8 1
|
||||
circle 359 1
|
||||
155.6580 0.4002 359 ngp.config.359.fld 10 22 37.93 0 24 0.8 1
|
||||
circle 360 1
|
||||
157.1920 0.4002 360 ngp.config.360.fld 10 28 46.07 0 24 0.8 1
|
||||
circle 361 1
|
||||
158.1848 0.4002 361 ngp.config.361.fld 10 32 44.34 0 24 0.8 1
|
||||
circle 362 1
|
||||
159.4019 0.4002 362 ngp.config.362.fld 10 37 36.46 0 24 0.8 1
|
||||
circle 363 1
|
||||
160.2883 0.4002 363 ngp.config.363.fld 10 41 9.20 0 24 0.8 1
|
||||
circle 364 1
|
||||
161.1195 0.4002 364 ngp.config.364.fld 10 44 28.68 0 24 0.8 1
|
||||
circle 365 1
|
||||
162.2785 0.4002 365 ngp.config.365.fld 10 49 6.85 0 24 0.8 1
|
||||
circle 366 1
|
||||
163.2020 0.4002 366 ngp.config.366.fld 10 52 48.48 0 24 0.8 1
|
||||
circle 367 1
|
||||
164.5009 0.4002 367 ngp.config.367.fld 10 58 0.21 0 24 0.8 1
|
||||
circle 368 1
|
||||
165.8323 0.4002 368 ngp.config.368.fld 11 3 19.75 0 24 0.8 1
|
||||
circle 369 1
|
||||
167.1175 0.4002 369 ngp.config.369.fld 11 8 28.21 0 24 0.8 1
|
||||
circle 370 1
|
||||
167.9519 0.4002 370 ngp.config.370.fld 11 11 48.46 0 24 0.8 1
|
||||
circle 371 1
|
||||
169.0672 0.4002 371 ngp.config.371.fld 11 16 16.14 0 24 0.8 1
|
||||
circle 372 1
|
||||
169.9509 0.4002 372 ngp.config.372.fld 11 19 48.21 0 24 0.8 1
|
||||
circle 373 1
|
||||
170.5807 0.4002 373 ngp.config.373.fld 11 22 19.36 0 24 0.8 1
|
||||
circle 374 1
|
||||
171.8437 0.4002 374 ngp.config.374.fld 11 27 22.48 0 24 0.8 1
|
||||
circle 375 1
|
||||
172.8980 0.4002 375 ngp.config.375.fld 11 31 35.52 0 24 0.8 1
|
||||
circle 376 1
|
||||
174.2117 0.4002 376 ngp.config.376.fld 11 36 50.80 0 24 0.8 1
|
||||
circle 377 1
|
||||
175.8348 0.4002 377 ngp.config.377.fld 11 43 20.36 0 24 0.8 1
|
||||
circle 378 1
|
||||
177.3120 0.4002 378 ngp.config.378.fld 11 49 14.88 0 24 0.8 1
|
||||
circle 379 1
|
||||
178.6949 0.4002 379 ngp.config.379.fld 11 54 46.77 0 24 0.8 1
|
||||
circle 380 1
|
||||
179.0892 0.4002 380 ngp.config.380.fld 11 56 21.40 0 24 0.8 1
|
||||
circle 381 1
|
||||
180.7282 0.4002 381 ngp.config.381.fld 12 2 54.77 0 24 0.8 1
|
||||
circle 382 1
|
||||
180.2850 1.7502 382 ngp.config.382.fld 12 1 8.40 1 45 0.8 1
|
||||
circle 383 1
|
||||
181.2880 1.7502 383 ngp.config.383.fld 12 5 9.11 1 45 0.8 1
|
||||
circle 384 1
|
||||
182.4305 1.7502 384 ngp.config.384.fld 12 9 43.32 1 45 0.8 1
|
||||
circle 385 1
|
||||
183.6629 1.7502 385 ngp.config.385.fld 12 14 39.10 1 45 0.8 1
|
||||
circle 386 1
|
||||
184.7119 1.7502 386 ngp.config.386.fld 12 18 50.85 1 45 0.8 1
|
||||
circle 387 1
|
||||
186.0408 1.7502 387 ngp.config.387.fld 12 24 9.79 1 45 0.8 1
|
||||
circle 388 1
|
||||
187.4223 1.7502 388 ngp.config.388.fld 12 29 41.36 1 45 0.8 1
|
||||
circle 389 1
|
||||
188.5101 1.7502 389 ngp.config.389.fld 12 34 2.42 1 45 0.8 1
|
||||
circle 390 1
|
||||
189.7501 1.7502 390 ngp.config.390.fld 12 39 0.03 1 45 0.8 1
|
||||
circle 391 1
|
||||
190.5101 1.7502 391 ngp.config.391.fld 12 42 2.43 1 45 0.8 1
|
||||
circle 392 1
|
||||
191.8625 1.7502 392 ngp.config.392.fld 12 47 27.01 1 45 0.8 1
|
||||
circle 393 1
|
||||
193.3597 1.7502 393 ngp.config.393.fld 12 53 26.33 1 45 0.8 1
|
||||
circle 394 1
|
||||
194.5715 1.7502 394 ngp.config.394.fld 12 58 17.15 1 45 0.8 1
|
||||
circle 395 1
|
||||
196.0387 1.7502 395 ngp.config.395.fld 13 4 9.29 1 45 0.8 1
|
||||
circle 396 1
|
||||
197.2849 1.7502 396 ngp.config.396.fld 13 9 8.38 1 45 0.8 1
|
||||
circle 397 1
|
||||
198.2370 1.7502 397 ngp.config.397.fld 13 12 56.88 1 45 0.8 1
|
||||
circle 398 1
|
||||
199.5114 1.7502 398 ngp.config.398.fld 13 18 2.73 1 45 0.8 1
|
||||
circle 399 1
|
||||
200.3263 1.7502 399 ngp.config.399.fld 13 21 18.31 1 45 0.8 1
|
||||
circle 400 1
|
||||
201.6929 1.7502 400 ngp.config.400.fld 13 26 46.30 1 45 0.8 1
|
||||
circle 401 1
|
||||
202.2220 1.7502 401 ngp.config.401.fld 13 28 53.28 1 45 0.8 1
|
||||
circle 402 1
|
||||
203.7630 1.7502 402 ngp.config.402.fld 13 35 3.13 1 45 0.8 1
|
||||
circle 403 1
|
||||
204.6010 1.7502 403 ngp.config.403.fld 13 38 24.25 1 45 0.8 1
|
||||
circle 404 1
|
||||
206.1645 1.7502 404 ngp.config.404.fld 13 44 39.49 1 45 0.8 1
|
||||
circle 405 1
|
||||
207.4227 1.7502 405 ngp.config.405.fld 13 49 41.44 1 45 0.8 1
|
||||
circle 406 1
|
||||
208.6020 1.7502 406 ngp.config.406.fld 13 54 24.49 1 45 0.8 1
|
||||
circle 407 1
|
||||
209.7953 1.7502 407 ngp.config.407.fld 13 59 10.86 1 45 0.8 1
|
||||
circle 408 1
|
||||
210.9191 1.7502 408 ngp.config.408.fld 14 3 40.58 1 45 0.8 1
|
||||
circle 409 1
|
||||
212.1663 1.7502 409 ngp.config.409.fld 14 8 39.92 1 45 0.8 1
|
||||
circle 410 1
|
||||
213.0245 1.7502 410 ngp.config.410.fld 14 12 5.88 1 45 0.8 1
|
||||
circle 411 1
|
||||
213.9135 1.7502 411 ngp.config.411.fld 14 15 39.25 1 45 0.8 1
|
||||
circle 412 1
|
||||
215.2612 1.7502 412 ngp.config.412.fld 14 21 2.68 1 45 0.8 1
|
||||
circle 413 1
|
||||
216.8367 1.7502 413 ngp.config.413.fld 14 27 20.80 1 45 0.8 1
|
||||
circle 414 1
|
||||
217.7737 1.7502 414 ngp.config.414.fld 14 31 5.70 1 45 0.8 1
|
||||
circle 415 1
|
||||
218.8728 1.7502 415 ngp.config.415.fld 14 35 29.46 1 45 0.8 1
|
||||
circle 416 1
|
||||
220.2865 1.7502 416 ngp.config.416.fld 14 41 8.77 1 45 0.8 1
|
||||
circle 417 1
|
||||
221.5088 1.7502 417 ngp.config.417.fld 14 46 2.11 1 45 0.8 1
|
||||
circle 418 1
|
||||
223.1555 1.7502 418 ngp.config.418.fld 14 52 37.31 1 45 0.8 1
|
||||
circle 419 1
|
||||
147.8940 1.7502 419 ngp.config.419.fld 9 51 34.56 1 45 0.8 1
|
||||
circle 420 1
|
||||
149.2106 1.7502 420 ngp.config.420.fld 9 56 50.55 1 45 0.8 1
|
||||
circle 421 1
|
||||
150.6290 1.7502 421 ngp.config.421.fld 10 2 30.97 1 45 0.8 1
|
||||
circle 422 1
|
||||
152.0544 1.7502 422 ngp.config.422.fld 10 8 13.05 1 45 0.8 1
|
||||
circle 423 1
|
||||
153.4224 1.7502 423 ngp.config.423.fld 10 13 41.38 1 45 0.8 1
|
||||
circle 424 1
|
||||
154.6315 1.7502 424 ngp.config.424.fld 10 18 31.56 1 45 0.8 1
|
||||
circle 425 1
|
||||
155.3413 1.7502 425 ngp.config.425.fld 10 21 21.92 1 45 0.8 1
|
||||
circle 426 1
|
||||
156.6064 1.7502 426 ngp.config.426.fld 10 26 25.53 1 45 0.8 1
|
||||
circle 427 1
|
||||
157.7595 1.7502 427 ngp.config.427.fld 10 31 2.28 1 45 0.8 1
|
||||
circle 428 1
|
||||
158.5264 1.7502 428 ngp.config.428.fld 10 34 6.34 1 45 0.8 1
|
||||
circle 429 1
|
||||
159.3526 1.7502 429 ngp.config.429.fld 10 37 24.63 1 45 0.8 1
|
||||
circle 430 1
|
||||
159.9795 1.7502 430 ngp.config.430.fld 10 39 55.07 1 45 0.8 1
|
||||
circle 431 1
|
||||
160.7321 1.7502 431 ngp.config.431.fld 10 42 55.70 1 45 0.8 1
|
||||
circle 432 1
|
||||
161.8781 1.7502 432 ngp.config.432.fld 10 47 30.75 1 45 0.8 1
|
||||
circle 433 1
|
||||
163.0850 1.7502 433 ngp.config.433.fld 10 52 20.41 1 45 0.8 1
|
||||
circle 434 1
|
||||
164.0670 1.7502 434 ngp.config.434.fld 10 56 16.09 1 45 0.8 1
|
||||
circle 435 1
|
||||
165.3810 1.7502 435 ngp.config.435.fld 11 1 31.45 1 45 0.8 1
|
||||
circle 436 1
|
||||
166.1627 1.7502 436 ngp.config.436.fld 11 4 39.05 1 45 0.8 1
|
||||
circle 437 1
|
||||
167.2005 1.7502 437 ngp.config.437.fld 11 8 48.13 1 45 0.8 1
|
||||
circle 438 1
|
||||
167.8381 1.7502 438 ngp.config.438.fld 11 11 21.14 1 45 0.8 1
|
||||
circle 439 1
|
||||
168.6096 1.7502 439 ngp.config.439.fld 11 14 26.30 1 45 0.8 1
|
||||
circle 440 1
|
||||
169.6399 1.7502 440 ngp.config.440.fld 11 18 33.58 1 45 0.8 1
|
||||
circle 441 1
|
||||
170.1170 1.7502 441 ngp.config.441.fld 11 20 28.09 1 45 0.8 1
|
||||
circle 442 1
|
||||
171.1102 1.7502 442 ngp.config.442.fld 11 24 26.46 1 45 0.8 1
|
||||
circle 443 1
|
||||
171.9803 1.7502 443 ngp.config.443.fld 11 27 55.27 1 45 0.8 1
|
||||
circle 444 1
|
||||
172.8782 1.7502 444 ngp.config.444.fld 11 31 30.76 1 45 0.8 1
|
||||
circle 445 1
|
||||
173.9067 1.7502 445 ngp.config.445.fld 11 35 37.61 1 45 0.8 1
|
||||
circle 446 1
|
||||
175.1110 1.7502 446 ngp.config.446.fld 11 40 26.64 1 45 0.8 1
|
||||
circle 447 1
|
||||
176.7422 1.7502 447 ngp.config.447.fld 11 46 58.14 1 45 0.8 1
|
||||
circle 448 1
|
||||
178.1393 1.7502 448 ngp.config.448.fld 11 52 33.43 1 45 0.8 1
|
||||
circle 449 1
|
||||
178.8188 1.7502 449 ngp.config.449.fld 11 55 16.51 1 45 0.8 1
|
||||
circle 450 1
|
||||
180.4513 1.7502 450 ngp.config.450.fld 12 1 48.31 1 45 0.8 1
|
201
masks/2df230k/centres.ran
Normal file
201
masks/2df230k/centres.ran
Normal file
|
@ -0,0 +1,201 @@
|
|||
unit h
|
||||
skip 43
|
||||
RA & Dec (B1950) hh mm ss.ss -dd mm ss.s d
|
||||
circle 802 1
|
||||
33.2351 -64.1862 802 sgp.config.802.fld 2 12 56.42 -64 11 10.3 1
|
||||
circle 805 1
|
||||
359.9878 -56.7658 805 sgp.config.805.fld 23 59 57.07 -56 45 56.9 1
|
||||
circle 806 1
|
||||
11.5284 -41.3732 806 sgp.config.806.fld 0 46 6.82 -41 22 23.5 1
|
||||
circle 807 1
|
||||
0.8817 -8.2826 807 sgp.config.807.fld 0 3 31.61 -08 16 57.4 1
|
||||
circle 808 1
|
||||
54.9289 -39.7294 808 sgp.config.808.fld 3 39 42.94 -39 43 45.8 1
|
||||
circle 809 1
|
||||
335.7275 -54.1330 809 sgp.config.809.fld 22 22 54.60 -54 7 58.8 1
|
||||
circle 811 1
|
||||
352.9767 -41.4196 811 sgp.config.811.fld 23 31 54.41 -41 25 10.6 1
|
||||
circle 812 1
|
||||
331.1585 -56.9417 812 sgp.config.812.fld 22 4 38.04 -56 56 30.1 1
|
||||
circle 813 1
|
||||
329.7138 -18.8682 813 sgp.config.813.fld 21 58 51.30 -18 52 5.5 1
|
||||
circle 814 1
|
||||
34.9652 -45.9285 814 sgp.config.814.fld 2 19 51.65 -45 55 42.6 1
|
||||
circle 816 1
|
||||
26.8279 -5.8767 816 sgp.config.816.fld 1 47 18.70 -05 52 36.1 1
|
||||
circle 817 1
|
||||
58.6033 -49.6970 817 sgp.config.817.fld 3 54 24.79 -49 41 49.2 1
|
||||
circle 818 1
|
||||
68.1223 -25.5094 818 sgp.config.818.fld 4 32 29.35 -25 30 33.8 1
|
||||
circle 819 1
|
||||
6.6322 -2.3038 819 sgp.config.819.fld 0 26 31.73 -02 18 13.7 1
|
||||
circle 820 1
|
||||
310.3185 -58.7761 820 sgp.config.820.fld 20 41 16.45 -58 46 33.9 1
|
||||
circle 822 1
|
||||
19.1427 -17.2171 822 sgp.config.822.fld 1 16 34.25 -17 13 1.6 1
|
||||
circle 823 1
|
||||
327.6089 -51.7219 823 sgp.config.823.fld 21 50 26.13 -51 43 18.8 1
|
||||
circle 824 1
|
||||
58.4612 -58.7196 824 sgp.config.824.fld 3 53 50.69 -58 43 10.6 1
|
||||
circle 826 1
|
||||
3.9694 -63.0145 826 sgp.config.826.fld 0 15 52.66 -63 0 52.2 1
|
||||
circle 827 1
|
||||
19.5246 -56.4880 827 sgp.config.827.fld 1 18 5.90 -56 29 16.8 1
|
||||
circle 828 1
|
||||
324.0165 -40.2396 828 sgp.config.828.fld 21 36 3.96 -40 14 22.6 1
|
||||
circle 829 1
|
||||
20.9593 -47.7717 829 sgp.config.829.fld 1 23 50.23 -47 46 18.1 1
|
||||
circle 830 1
|
||||
323.3897 -16.2229 830 sgp.config.830.fld 21 33 33.53 -16 13 22.4 1
|
||||
circle 833 1
|
||||
62.6418 -23.0771 833 sgp.config.833.fld 4 10 34.03 -23 4 37.6 1
|
||||
circle 834 1
|
||||
15.8180 -48.1088 834 sgp.config.834.fld 1 3 16.32 -48 6 31.7 1
|
||||
circle 835 1
|
||||
36.2543 -13.5915 835 sgp.config.835.fld 2 25 1.03 -13 35 29.4 1
|
||||
circle 836 1
|
||||
18.9458 -40.3299 836 sgp.config.836.fld 1 15 46.99 -40 19 47.6 1
|
||||
circle 837 1
|
||||
64.8657 -61.4518 837 sgp.config.837.fld 4 19 27.77 -61 27 6.5 1
|
||||
circle 838 1
|
||||
30.5857 -51.3187 838 sgp.config.838.fld 2 2 20.57 -51 19 7.3 1
|
||||
circle 839 1
|
||||
2.8627 -49.4216 839 sgp.config.839.fld 0 11 27.05 -49 25 17.8 1
|
||||
circle 840 1
|
||||
33.2059 -11.3571 840 sgp.config.840.fld 2 12 49.42 -11 21 25.6 1
|
||||
circle 841 1
|
||||
21.0863 -20.1440 841 sgp.config.841.fld 1 24 20.71 -20 8 38.4 1
|
||||
circle 842 1
|
||||
16.1990 -7.9172 842 sgp.config.842.fld 1 4 47.76 -07 55 1.9 1
|
||||
circle 844 1
|
||||
26.0970 -18.6598 844 sgp.config.844.fld 1 44 23.28 -18 39 35.3 1
|
||||
circle 845 1
|
||||
42.0417 -56.6082 845 sgp.config.845.fld 2 48 10.01 -56 36 29.5 1
|
||||
circle 846 1
|
||||
22.7285 -5.4733 846 sgp.config.846.fld 1 30 54.84 -05 28 23.9 1
|
||||
circle 848 1
|
||||
59.5060 -36.7369 848 sgp.config.848.fld 3 58 1.44 -36 44 12.8 1
|
||||
circle 849 1
|
||||
42.0604 -40.7353 849 sgp.config.849.fld 2 48 14.50 -40 44 7.1 1
|
||||
circle 850 1
|
||||
23.8540 -42.8123 850 sgp.config.850.fld 1 35 24.96 -42 48 44.3 1
|
||||
circle 851 1
|
||||
323.1814 -50.2335 851 sgp.config.851.fld 21 32 43.54 -50 14 0.6 1
|
||||
circle 852 1
|
||||
41.9463 -16.8963 852 sgp.config.852.fld 2 47 47.11 -16 53 46.7 1
|
||||
circle 854 1
|
||||
29.5867 -16.1533 854 sgp.config.854.fld 1 58 20.81 -16 9 11.9 1
|
||||
circle 855 1
|
||||
339.6088 -15.2569 855 sgp.config.855.fld 22 38 26.12 -15 15 24.8 1
|
||||
circle 856 1
|
||||
16.2678 -19.7305 856 sgp.config.856.fld 1 5 4.27 -19 43 49.8 1
|
||||
circle 857 1
|
||||
38.0181 -54.2021 857 sgp.config.857.fld 2 32 4.34 -54 12 7.6 1
|
||||
circle 858 1
|
||||
4.6715 -12.3426 858 sgp.config.858.fld 0 18 41.16 -12 20 33.4 1
|
||||
circle 859 1
|
||||
50.3527 -53.4031 859 sgp.config.859.fld 3 21 24.65 -53 24 11.2 1
|
||||
circle 860 1
|
||||
44.9413 -51.3790 860 sgp.config.860.fld 2 59 45.91 -51 22 44.4 1
|
||||
circle 861 1
|
||||
316.8645 -34.5010 861 sgp.config.861.fld 21 7 27.48 -34 30 3.6 1
|
||||
circle 863 1
|
||||
39.1184 -65.9401 863 sgp.config.863.fld 2 36 28.42 -65 56 24.4 1
|
||||
circle 864 1
|
||||
63.0810 -45.3689 864 sgp.config.864.fld 4 12 19.44 -45 22 8.0 1
|
||||
circle 865 1
|
||||
24.6245 -1.8392 865 sgp.config.865.fld 1 38 29.88 -01 50 21.1 1
|
||||
circle 867 1
|
||||
6.0737 -17.0621 867 sgp.config.867.fld 0 24 17.69 -17 3 43.6 1
|
||||
circle 868 1
|
||||
67.6760 -56.6652 868 sgp.config.868.fld 4 30 42.24 -56 39 54.7 1
|
||||
circle 869 1
|
||||
0.8024 -5.1448 869 sgp.config.869.fld 0 3 12.58 -05 8 41.3 1
|
||||
circle 871 1
|
||||
346.2206 -12.9280 871 sgp.config.871.fld 23 4 52.95 -12 55 40.8 1
|
||||
circle 873 1
|
||||
340.4737 -71.6716 873 sgp.config.873.fld 22 41 53.70 -71 40 17.8 1
|
||||
circle 875 1
|
||||
39.1334 -47.1348 875 sgp.config.875.fld 2 36 32.02 -47 8 5.3 1
|
||||
circle 876 1
|
||||
316.5638 -46.1378 876 sgp.config.876.fld 21 6 15.31 -46 8 16.1 1
|
||||
circle 877 1
|
||||
62.2014 -54.6269 877 sgp.config.877.fld 4 8 48.33 -54 37 36.8 1
|
||||
circle 878 1
|
||||
11.8986 -65.8913 878 sgp.config.878.fld 0 47 35.66 -65 53 28.6 1
|
||||
circle 880 1
|
||||
72.9177 -48.1343 880 sgp.config.880.fld 4 51 40.25 -48 8 3.5 1
|
||||
circle 881 1
|
||||
352.2521 -19.2049 881 sgp.config.881.fld 23 29 0.51 -19 12 17.6 1
|
||||
circle 882 1
|
||||
353.4478 -65.9403 882 sgp.config.882.fld 23 33 47.48 -65 56 25.1 1
|
||||
circle 883 1
|
||||
358.3302 -40.5562 883 sgp.config.883.fld 23 53 19.25 -40 33 22.3 1
|
||||
circle 886 1
|
||||
347.1119 -9.4770 886 sgp.config.886.fld 23 8 26.86 -09 28 37.2 1
|
||||
circle 888 1
|
||||
356.9998 -10.3357 888 sgp.config.888.fld 23 47 59.95 -10 20 8.5 1
|
||||
circle 889 1
|
||||
55.6778 -46.8564 889 sgp.config.889.fld 3 42 42.67 -46 51 23.0 1
|
||||
circle 890 1
|
||||
8.1848 -45.4782 890 sgp.config.890.fld 0 32 44.35 -45 28 41.5 1
|
||||
circle 892 1
|
||||
80.5307 -28.3148 892 sgp.config.892.fld 5 22 7.37 -28 18 53.3 1
|
||||
circle 893 1
|
||||
5.8694 -40.8718 893 sgp.config.893.fld 0 23 28.66 -40 52 18.5 1
|
||||
circle 894 1
|
||||
62.7780 -38.5103 894 sgp.config.894.fld 4 11 6.72 -38 30 37.1 1
|
||||
circle 896 1
|
||||
336.2522 -39.9065 896 sgp.config.896.fld 22 25 0.52 -39 54 23.4 1
|
||||
circle 897 1
|
||||
346.1459 -0.9470 897 sgp.config.897.fld 23 4 35.02 -00 56 49.2 1
|
||||
circle 898 1
|
||||
16.8568 -14.5923 898 sgp.config.898.fld 1 7 25.63 -14 35 32.3 1
|
||||
circle 899 1
|
||||
322.0648 -69.1936 899 sgp.config.899.fld 21 28 15.55 -69 11 37.0 1
|
||||
circle 900 1
|
||||
318.7238 -19.8677 900 sgp.config.900.fld 21 14 53.71 -19 52 3.7 1
|
||||
circle 901 1
|
||||
19.0499 -8.9685 901 sgp.config.901.fld 1 16 11.98 -08 58 6.6 1
|
||||
circle 902 1
|
||||
18.0577 -61.6178 902 sgp.config.902.fld 1 12 13.85 -61 37 4.1 1
|
||||
circle 904 1
|
||||
1.3485 -15.5943 904 sgp.config.904.fld 0 5 23.64 -15 35 39.5 1
|
||||
circle 905 1
|
||||
317.0651 -49.3795 905 sgp.config.905.fld 21 8 15.62 -49 22 46.2 1
|
||||
circle 906 1
|
||||
350.1232 -13.1108 906 sgp.config.906.fld 23 20 29.57 -13 6 38.9 1
|
||||
circle 907 1
|
||||
61.9460 -42.2721 907 sgp.config.907.fld 4 7 47.04 -42 16 19.6 1
|
||||
circle 908 1
|
||||
345.4777 -61.8456 908 sgp.config.908.fld 23 1 54.65 -61 50 44.2 1
|
||||
circle 909 1
|
||||
79.0042 -31.6770 909 sgp.config.909.fld 5 16 1.01 -31 40 37.2 1
|
||||
circle 910 1
|
||||
337.7028 -46.6367 910 sgp.config.910.fld 22 30 48.67 -46 38 12.1 1
|
||||
circle 911 1
|
||||
332.1555 -43.1800 911 sgp.config.911.fld 22 8 37.32 -43 10 48.0 1
|
||||
circle 912 1
|
||||
69.6342 -30.3763 912 sgp.config.912.fld 4 38 32.21 -30 22 34.7 1
|
||||
circle 913 1
|
||||
40.3955 -61.6712 913 sgp.config.913.fld 2 41 34.92 -61 40 16.3 1
|
||||
circle 915 1
|
||||
343.2654 -54.6044 915 sgp.config.915.fld 22 53 3.70 -54 36 15.8 1
|
||||
circle 916 1
|
||||
355.3967 -54.7355 916 sgp.config.916.fld 23 41 35.21 -54 44 7.8 1
|
||||
circle 917 1
|
||||
316.8544 -41.3988 917 sgp.config.917.fld 21 7 25.05 -41 23 55.7 1
|
||||
circle 918 1
|
||||
323.7054 -61.1313 918 sgp.config.918.fld 21 34 49.30 -61 7 52.7 1
|
||||
circle 920 1
|
||||
33.1725 -42.2960 920 sgp.config.920.fld 2 12 41.40 -42 17 45.6 1
|
||||
circle 921 1
|
||||
52.3893 -13.0315 921 sgp.config.921.fld 3 29 33.43 -13 1 53.4 1
|
||||
circle 922 1
|
||||
62.7540 -33.0507 922 sgp.config.922.fld 4 11 0.96 -33 3 2.5 1
|
||||
circle 924 1
|
||||
342.9448 -17.8139 924 sgp.config.924.fld 22 51 46.75 -17 48 50.0 1
|
||||
circle 925 1
|
||||
329.1087 -47.1123 925 sgp.config.925.fld 21 56 26.09 -47 6 44.3 1
|
||||
circle 926 1
|
||||
326.5018 -17.1737 926 sgp.config.926.fld 21 46 0.43 -17 10 25.3 1
|
1289
masks/2df230k/centres.sgp
Normal file
1289
masks/2df230k/centres.sgp
Normal file
File diff suppressed because it is too large
Load diff
73
masks/2df230k/ngp_fields.dat
Normal file
73
masks/2df230k/ngp_fields.dat
Normal file
|
@ -0,0 +1,73 @@
|
|||
unit d
|
||||
skip 0
|
||||
RA & Dec (B1950) limits of NGP fields
|
||||
rectangle id number is the UKST field number
|
||||
RAmin RAmax Decmin Decmax
|
||||
rectangle 780
|
||||
142.5 147.5 -7.5 -2.5
|
||||
rectangle 781
|
||||
147.5 152.5 -7.5 -2.5
|
||||
rectangle 782
|
||||
152.5 157.5 -7.5 -2.5
|
||||
rectangle 783
|
||||
157.5 162.5 -7.5 -2.5
|
||||
rectangle 784
|
||||
162.5 167.5 -7.5 -2.5
|
||||
rectangle 785
|
||||
167.5 172.5 -7.5 -2.5
|
||||
rectangle 786
|
||||
172.5 177.5 -7.5 -2.5
|
||||
rectangle 787
|
||||
177.5 182.5 -7.5 -2.5
|
||||
rectangle 788
|
||||
182.5 187.5 -7.5 -2.5
|
||||
rectangle 789
|
||||
187.5 192.5 -7.5 -2.5
|
||||
rectangle 790
|
||||
192.5 197.5 -7.5 -2.5
|
||||
rectangle 791
|
||||
197.5 202.5 -7.5 -2.5
|
||||
rectangle 792
|
||||
202.5 207.5 -7.5 -2.5
|
||||
rectangle 793
|
||||
207.5 212.5 -7.5 -2.5
|
||||
rectangle 794
|
||||
212.5 217.5 -7.5 -2.5
|
||||
rectangle 795
|
||||
217.5 222.5 -7.5 -2.5
|
||||
rectangle 796
|
||||
222.5 227.5 -7.5 -2.5
|
||||
rectangle 852
|
||||
142.5 147.5 -2.5 2.5
|
||||
rectangle 853
|
||||
147.5 152.5 -2.5 2.5
|
||||
rectangle 854
|
||||
152.5 157.5 -2.5 2.5
|
||||
rectangle 855
|
||||
157.5 162.5 -2.5 2.5
|
||||
rectangle 856
|
||||
162.5 167.5 -2.5 2.5
|
||||
rectangle 857
|
||||
167.5 172.5 -2.5 2.5
|
||||
rectangle 858
|
||||
172.5 177.5 -2.5 2.5
|
||||
rectangle 859
|
||||
177.5 182.5 -2.5 2.5
|
||||
rectangle 860
|
||||
182.5 187.5 -2.5 2.5
|
||||
rectangle 861
|
||||
187.5 192.5 -2.5 2.5
|
||||
rectangle 862
|
||||
192.5 197.5 -2.5 2.5
|
||||
rectangle 863
|
||||
197.5 202.5 -2.5 2.5
|
||||
rectangle 864
|
||||
202.5 207.5 -2.5 2.5
|
||||
rectangle 865
|
||||
207.5 212.5 -2.5 2.5
|
||||
rectangle 866
|
||||
212.5 217.5 -2.5 2.5
|
||||
rectangle 867
|
||||
217.5 222.5 -2.5 2.5
|
||||
rectangle 868
|
||||
222.5 227.5 -2.5 2.5
|
423
masks/2df230k/ngpholes.dat
Normal file
423
masks/2df230k/ngpholes.dat
Normal file
|
@ -0,0 +1,423 @@
|
|||
unit r
|
||||
skip 0
|
||||
vertices id number is the UKST field number containing the hole
|
||||
vertices 781 4
|
||||
r 2.66821790 -0.12406345 2.66832256 -0.14228499 2.65537595 -0.14233855 2.65527129 -0.12411701
|
||||
vertices 781 4
|
||||
r 2.63132644 -0.12931894 2.63133001 -0.13210687 2.62852311 -0.13210959 2.62851954 -0.12932166
|
||||
vertices 781 4
|
||||
r 2.57623649 -0.13565867 2.57621360 -0.13994665 2.57254052 -0.13992918 2.57256341 -0.13564120
|
||||
vertices 781 4
|
||||
r 2.65618539 -0.07651415 2.65619278 -0.07908707 2.65361524 -0.07909450 2.65360785 -0.07652158
|
||||
vertices 781 4
|
||||
r 2.57030177 -0.06874154 2.57029176 -0.07131410 2.56728673 -0.07130125 2.56729674 -0.06872869
|
||||
vertices 782 4
|
||||
r 2.75887585 -0.12411039 2.75900769 -0.14509496 2.74349570 -0.14516138 2.74336386 -0.12417681
|
||||
vertices 782 4
|
||||
r 2.65350962 -0.07534657 2.65349674 -0.07827998 2.65031790 -0.07826469 2.65033078 -0.07533128
|
||||
vertices 782 4
|
||||
r 2.73880291 -0.03932499 2.73880887 -0.04271062 2.73518491 -0.04271786 2.73517895 -0.03933223
|
||||
vertices 782 4
|
||||
r 2.71094942 -0.06351130 2.71095014 -0.06712329 2.70732046 -0.06712331 2.70731974 -0.06351132
|
||||
vertices 782 4
|
||||
r 2.68470502 -0.13639978 2.68469214 -0.14114018 2.68012332 -0.14112790 2.68013620 -0.13638750
|
||||
vertices 783 4
|
||||
r 2.84502649 -0.12440749 2.84515309 -0.14629315 2.83260703 -0.14634373 2.83248043 -0.12445807
|
||||
vertices 783 4
|
||||
r 2.82503104 -0.06286646 2.82503533 -0.06534908 2.82163310 -0.06535542 2.82162881 -0.06287280
|
||||
vertices 783 4
|
||||
r 2.75812602 -0.06078864 2.75811911 -0.06304552 2.75539780 -0.06303605 2.75540471 -0.06077917
|
||||
vertices 784 4
|
||||
r 2.93216801 -0.12559885 2.93236899 -0.14500438 2.91890764 -0.14511830 2.91870666 -0.12571277
|
||||
vertices 785 4
|
||||
r 3.02011371 -0.12482832 3.02025795 -0.14513403 3.00725031 -0.14520272 3.00710607 -0.12489701
|
||||
vertices 785 4
|
||||
r 2.94217420 -0.05501755 2.94216990 -0.05930594 2.93695401 -0.05929803 2.93695831 -0.05500964
|
||||
vertices 785 4
|
||||
r 3.00382423 -0.04389262 3.00383282 -0.04682642 3.00088692 -0.04683594 3.00087833 -0.04390214
|
||||
vertices 785 4
|
||||
r 2.94276118 -0.11979602 2.94275570 -0.12250452 2.93933463 -0.12249786 2.93934011 -0.11978936
|
||||
vertices 785 4
|
||||
r 2.94148731 -0.06133633 2.94148397 -0.06427047 2.93808079 -0.06426517 2.93808413 -0.06133103
|
||||
vertices 786 4
|
||||
r 3.10685420 -0.12469053 3.10699248 -0.14544784 3.09330558 -0.14551330 3.09316730 -0.12475599
|
||||
vertices 786 4
|
||||
r 3.09482408 -0.08638495 3.09483814 -0.08999563 3.09142947 -0.09000796 3.09141541 -0.08639728
|
||||
vertices 786 4
|
||||
r 3.06212759 -0.11129116 3.06213117 -0.11445137 3.05871439 -0.11445408 3.05871081 -0.11129387
|
||||
vertices 787 4
|
||||
r 3.19101572 -0.12326056 3.19112420 -0.14169440 3.17861223 -0.14174815 3.17850375 -0.12331431
|
||||
vertices 788 4
|
||||
r 3.27852798 -0.12345428 3.27860594 -0.14253445 3.26609134 -0.14256493 3.26601338 -0.12348476
|
||||
vertices 789 4
|
||||
r 3.36607981 -0.12416673 3.36615920 -0.14260125 3.35386085 -0.14263460 3.35378146 -0.12420008
|
||||
vertices 789 4
|
||||
r 3.34382176 -0.09548403 3.34382391 -0.09784263 3.34081221 -0.09784473 3.34081006 -0.09548613
|
||||
vertices 789 4
|
||||
r 3.29240704 -0.09562166 3.29239368 -0.09905244 3.28873657 -0.09903784 3.28874993 -0.09560706
|
||||
vertices 789 4
|
||||
3.30303764 -0.13661525 3.30304670 -0.13382755 3.30045390 -0.13381934 3.30044484 -0.13660704
|
||||
vertices 790 4
|
||||
r 3.45339465 -0.12410772 3.45351815 -0.14254193 3.44035697 -0.14260737 3.44023347 -0.12417316
|
||||
vertices 790 4
|
||||
r 3.43728733 -0.09030936 3.43730307 -0.09438301 3.43300271 -0.09439790 3.43298697 -0.09032425
|
||||
vertices 790 4
|
||||
r 3.39192486 -0.06057602 3.39192438 -0.06293487 3.38935017 -0.06293388 3.38935065 -0.06057503
|
||||
vertices 791 4
|
||||
r 3.54043293 -0.12432241 3.54055548 -0.14189968 3.52847290 -0.14196425 3.52835035 -0.12438698
|
||||
vertices 792 4
|
||||
r 3.62993860 -0.12559499 3.63006353 -0.14454730 3.61682701 -0.14461033 3.61670208 -0.12565802
|
||||
vertices 792 4
|
||||
r 3.53008294 -0.10374759 3.53006768 -0.10713226 3.52642488 -0.10711604 3.52644014 -0.10373137
|
||||
vertices 792 4
|
||||
r 3.58494329 -0.09029810 3.58494544 -0.09278111 3.58244396 -0.09278288 3.58244181 -0.09029987
|
||||
vertices 792 4
|
||||
r 3.54629064 -0.08823181 3.54628444 -0.09071443 3.54355621 -0.09070699 3.54356241 -0.08822437
|
||||
vertices 793 4
|
||||
r 3.71790528 -0.12648694 3.71802306 -0.14569148 3.70540476 -0.14574687 3.70528698 -0.12654233
|
||||
vertices 794 4
|
||||
r 3.80519867 -0.12385401 3.80530787 -0.14551306 3.79161692 -0.14555706 3.79150772 -0.12389801
|
||||
vertices 794 4
|
||||
r 3.78666067 -0.09953583 3.78666759 -0.10292099 3.78257084 -0.10292748 3.78256392 -0.09954232
|
||||
vertices 794 4
|
||||
r 3.72384667 -0.09856247 3.72382712 -0.10330195 3.71927547 -0.10328274 3.71929502 -0.09854326
|
||||
vertices 794 4
|
||||
r 3.80474210 -0.05707217 3.80406475 -0.05842773 3.75622821 -0.03928146 3.75690556 -0.03792590
|
||||
vertices 795 4
|
||||
r 3.89277601 -0.12472387 3.89290142 -0.14525901 3.87898398 -0.14531868 3.87885857 -0.12478354
|
||||
vertices 795 4
|
||||
r 3.84440112 -0.09256307 3.84440184 -0.09752996 3.83826209 -0.09752882 3.83826137 -0.09256193
|
||||
vertices 853 4
|
||||
r 2.64784551 0.02756137 2.64784169 0.02424641 2.64452552 0.02424927 2.64452934 0.02756423
|
||||
vertices 853 4
|
||||
r 2.65047479 0.04921357 2.65047121 0.04711107 2.64836669 0.04711340 2.64837027 0.04921590
|
||||
vertices 853 4
|
||||
r 2.63952613 -0.05460752 2.63952637 -0.05680236 2.63732910 -0.05680182 2.63732886 -0.05460698
|
||||
vertices 853 4
|
||||
r 2.64203715 0.02253745 2.64203501 0.02041623 2.63991333 0.02041789 2.63991547 0.02253911
|
||||
vertices 853 4
|
||||
r 2.62088943 -0.01342876 2.62088728 -0.01667147 2.61764431 -0.01666940 2.61764646 -0.01342669
|
||||
vertices 853 4
|
||||
r 2.64329195 0.00009188 2.64329052 -0.00210501 2.64109325 -0.00210366 2.64109468 0.00009323
|
||||
vertices 853 4
|
||||
r 2.64333391 -0.00222753 2.64333248 -0.00452715 2.64103270 -0.00452579 2.64103413 -0.00222617
|
||||
vertices 853 4
|
||||
r 2.61457205 -0.01309664 2.61457038 -0.01534584 2.61232090 -0.01534433 2.61232257 -0.01309513
|
||||
vertices 853 4
|
||||
r 2.57848334 0.03504629 2.57848406 0.03188842 2.57532406 0.03188909 2.57532334 0.03504696
|
||||
vertices 853 4
|
||||
r 2.57128835 0.00695299 2.57128716 0.00472108 2.56905437 0.00472242 2.56905556 0.00695433
|
||||
vertices 853 4
|
||||
r 2.56770062 -0.02812330 2.56769538 -0.03118760 2.56462884 -0.03118391 2.56463408 -0.02811961
|
||||
vertices 853 4
|
||||
r 2.60464025 -0.05048667 2.60463643 -0.05364583 2.60147428 -0.05364291 2.60147810 -0.05048375
|
||||
vertices 853 4
|
||||
r 2.60292768 -0.04984500 2.60292482 -0.05205278 2.60071492 -0.05205070 2.60071778 -0.04984292
|
||||
vertices 853 4
|
||||
r 2.59767246 -0.02932164 2.59766841 -0.03302781 2.59396077 -0.03302450 2.59396482 -0.02931833
|
||||
vertices 853 4
|
||||
r 2.65945268 0.01407794 2.65945125 0.01250736 2.65809918 0.01250841 2.65810061 0.01407899
|
||||
vertices 853 4
|
||||
r 2.64772558 0.00264242 2.64771938 -0.00745565 2.63757968 -0.00744924 2.63758588 0.00264883
|
||||
vertices 853 4
|
||||
2.67055988 -0.03685420 2.65695882 -0.04358517 2.65695501 -0.06534540 2.67055607 -0.05861443
|
||||
vertices 853 4
|
||||
2.64320803 -0.05951645 2.55936861 -0.02264640 2.55598449 -0.02331899 2.63982391 -0.06018904
|
||||
vertices 854 4
|
||||
r 2.73940635 0.03344542 2.73940110 0.03094996 2.73690438 0.03095441 2.73690963 0.03344987
|
||||
vertices 854 4
|
||||
r 2.74010205 -0.04254072 2.74010038 -0.04813975 2.73449731 -0.04813434 2.73449898 -0.04253531
|
||||
xvertices 854 4
|
||||
xr 2.74174929 -0.00670275 2.74174643 -0.00912757 2.73932123 -0.00912433 2.73932409 -0.00669951
|
||||
xvertices 854 4
|
||||
xr 2.74227333 -0.00429984 2.74226832 -0.00831136 2.73825621 -0.00830588 2.73826122 -0.00429436
|
||||
vertices 854 4
|
||||
r 2.74347067 0.04589057 2.74346256 0.04269571 2.74026513 0.04270202 2.74027324 0.04589688
|
||||
vertices 854 4
|
||||
r 2.74841142 -0.04629787 2.74841142 -0.04936826 2.74533796 -0.04936592 2.74533796 -0.04629553
|
||||
vertices 854 4
|
||||
r 2.71134472 -0.00997658 2.71133995 -0.01367315 2.70764375 -0.01366783 2.70764852 -0.00997126
|
||||
vertices 854 4
|
||||
r 2.71273088 -0.03544703 2.71272707 -0.03865546 2.70951748 -0.03865102 2.70952129 -0.03544259
|
||||
vertices 854 4
|
||||
r 2.71656919 -0.00865078 2.71656632 -0.01084831 2.71436905 -0.01084520 2.71437192 -0.00864767
|
||||
vertices 854 4
|
||||
r 2.71688676 -0.00156215 2.71688390 -0.00367050 2.71477580 -0.00366746 2.71477866 -0.00155911
|
||||
vertices 854 4
|
||||
r 2.72581339 -0.01155726 2.72580910 -0.01520245 2.72216392 -0.01519749 2.72216821 -0.01155230
|
||||
vertices 854 4
|
||||
r 2.70093822 0.00176205 2.70093513 -0.00045505 2.69871808 -0.00045181 2.69872117 0.00176529
|
||||
vertices 854 4
|
||||
r 2.70007443 0.04872310 2.70006967 0.04483622 2.69618035 0.04484146 2.69618511 0.04872834
|
||||
vertices 854 4
|
||||
r 2.70410180 -0.00794300 2.70409870 -0.01019508 2.70184660 -0.01019178 2.70184970 -0.00793970
|
||||
vertices 854 4
|
||||
r 2.69295979 0.00199369 2.69295669 -0.00025389 2.69070911 -0.00025060 2.69071221 0.00199698
|
||||
vertices 854 4
|
||||
r 2.70999146 0.03681353 2.70998931 0.03546710 2.70841169 0.03546947 2.70841384 0.03681590
|
||||
vertices 854 4
|
||||
r 2.74372530 -0.00407581 2.74371839 -0.00990893 2.73808647 -0.00990123 2.73809338 -0.00406811
|
||||
vertices 854 4
|
||||
r 2.71497226 0.05027003 2.71496701 0.04712840 2.71135950 0.04713410 2.71136475 0.05027573
|
||||
vertices 854 4
|
||||
2.67544031 -0.01856136 2.65133452 -0.01717305 2.65088105 -0.01874289 2.67498684 -0.02013120
|
||||
vertices 854 4
|
||||
2.75924969 -0.03527396 2.74414611 -0.04378630 2.74392795 -0.06666446 2.75903153 -0.05815212
|
||||
vertices 855 4
|
||||
r 2.82200050 -0.02987207 2.82200217 -0.03219722 2.81967616 -0.03219790 2.81967449 -0.02987275
|
||||
vertices 855 4
|
||||
r 2.83306456 -0.05079566 2.83306789 -0.05291061 2.83095073 -0.05291209 2.83094740 -0.05079714
|
||||
vertices 855 4
|
||||
r 2.83883762 0.02550945 2.83883548 0.02207223 2.83539677 0.02207348 2.83539891 0.02551070
|
||||
vertices 855 4
|
||||
r 2.83995342 0.00235168 2.83995366 0.00015759 2.83775902 0.00015762 2.83775878 0.00235171
|
||||
vertices 855 4
|
||||
r 2.84444284 -0.03467913 2.84444761 -0.03814450 2.84097934 -0.03814664 2.84097457 -0.03468127
|
||||
vertices 855 4
|
||||
r 2.75917244 0.04640453 2.75917482 0.04425215 2.75702071 0.04425117 2.75701833 0.04640355
|
||||
vertices 855 4
|
||||
r 2.78841925 -0.02596832 2.78841925 -0.02817264 2.78621459 -0.02817249 2.78621459 -0.02596817
|
||||
vertices 855 4
|
||||
r 2.78953815 0.00101910 2.78953815 -0.00144908 2.78480768 -0.00144893 2.78480768 0.00101925
|
||||
vertices 855 4
|
||||
r 2.83188725 -0.00144900 2.83188748 -0.00279492 2.83053564 -0.00279497 2.83053541 -0.00144905
|
||||
vertices 855 4
|
||||
2.84543061 -0.03665921 2.83169127 -0.04362146 2.83150554 -0.06560067 2.84524488 -0.05863842
|
||||
vertices 855 4
|
||||
r 2.84358215 0.00272389 2.79925942 -0.05744972 2.79925966 -0.05661664 2.84358239 0.00355697
|
||||
vertices 856 4
|
||||
2.89606452 0.00474555 2.89373064 0.00709233 2.89357185 0.00415802 2.89590573 0.00181124
|
||||
vertices 856 4
|
||||
r 2.93251276 0.00609753 2.93251228 0.00135943 2.92888999 0.00135973 2.92889047 0.00609783
|
||||
vertices 856 4
|
||||
r 2.88542461 -0.00654037 2.88542485 -0.01105489 2.88067079 -0.01105473 2.88067055 -0.00654021
|
||||
vertices 856 4
|
||||
r 2.87840605 -0.03881934 2.87840581 -0.04310802 2.87410211 -0.04310759 2.87410235 -0.03881891
|
||||
vertices 856 4
|
||||
r 2.84965158 0.02032030 2.84965324 0.01693487 2.84625744 0.01693439 2.84625578 0.02031982
|
||||
vertices 856 4
|
||||
r 2.84103870 -0.03248810 2.84103513 -0.03677594 2.83673263 -0.03677359 2.83673620 -0.03248575
|
||||
vertices 856 4
|
||||
r 2.83899784 -0.03542077 2.83899498 -0.03835450 2.83559799 -0.03835243 2.83560085 -0.03541870
|
||||
vertices 856 4
|
||||
r 2.88950062 -0.01714949 2.88950086 -0.02030963 2.88610459 -0.02030968 2.88610435 -0.01714954
|
||||
vertices 856 4
|
||||
r 2.89765739 0.03882886 2.89765930 0.04311731 2.90173602 0.04311620 2.90173411 0.03882775
|
||||
vertices 856 4
|
||||
r 2.83379960 0.02573311 2.83380222 0.02189715 2.83017921 0.02189601 2.83017659 0.02573197
|
||||
vertices 856 4
|
||||
r 2.88293433 0.00339179 2.88293433 0.00655197 2.88610363 0.00655182 2.88610363 0.00339164
|
||||
vertices 856 4
|
||||
r 2.90874720 -0.02121026 2.90874553 -0.01805045 2.91191506 -0.01804974 2.91191673 -0.02120955
|
||||
vertices 856 4
|
||||
r 2.87410522 0.00722953 2.87410522 0.00429504 2.87116218 0.00429511 2.87116218 0.00722960
|
||||
vertices 856 4
|
||||
r 2.85622096 0.00045872 2.85622096 -0.00224977 2.85327816 -0.00224957 2.85327816 0.00045892
|
||||
vertices 856 4
|
||||
r 2.90761900 -0.02910957 2.90762019 -0.03159272 2.90467596 -0.03159372 2.90467477 -0.02911057
|
||||
vertices 856 4
|
||||
2.93366861 -0.03564240 2.91895700 -0.04490332 2.91763545 -0.06724101 2.93234706 -0.05798009
|
||||
vertices 857 4
|
||||
r 2.99323797 -0.02452346 2.99323511 -0.02764150 2.99011636 -0.02763775 2.99011922 -0.02451971
|
||||
vertices 857 4
|
||||
r 2.99399757 -0.00977041 2.99399376 -0.01291589 2.99084807 -0.01291174 2.99085188 -0.00976626
|
||||
vertices 857 4
|
||||
r 3.00464010 -0.04829350 3.00463939 -0.05179959 3.00112987 -0.05179673 3.00113058 -0.04829064
|
||||
vertices 857 4
|
||||
r 3.01166701 -0.02651267 3.01166582 -0.02867279 3.00950456 -0.02867064 3.00950575 -0.02651052
|
||||
vertices 857 4
|
||||
r 2.97201896 0.00909177 2.97201443 0.00595575 2.96887875 0.00596026 2.96888328 0.00909628
|
||||
vertices 857 4
|
||||
r 2.97551847 0.03266943 2.97551322 0.02930868 2.97215175 0.02931370 2.97215700 0.03267445
|
||||
vertices 857 4
|
||||
r 2.97978663 -0.03391482 2.97978306 -0.03705825 2.97663856 -0.03705420 2.97664213 -0.03391077
|
||||
vertices 857 4
|
||||
r 2.93160129 -0.01713118 2.93159723 -0.01932165 2.92940640 -0.01931798 2.92941046 -0.01712751
|
||||
vertices 857 4
|
||||
r 2.92842770 0.00578536 2.92842245 0.00187162 2.92450809 0.00187708 2.92451334 0.00579082
|
||||
vertices 857 4
|
||||
r 2.92806768 0.04784638 2.92806721 0.04567375 2.92589260 0.04567555 2.92589307 0.04784818
|
||||
vertices 857 4
|
||||
r 2.92508888 -0.01936164 2.92508316 -0.02221885 2.92222500 -0.02221384 2.92223072 -0.01935663
|
||||
vertices 857 4
|
||||
r 2.91665530 -0.01914201 2.91664934 -0.02194231 2.91384769 -0.02193722 2.91385365 -0.01913692
|
||||
vertices 857 4
|
||||
r 2.95357060 -0.02411436 2.95356679 -0.02645032 2.95123053 -0.02644667 2.95123434 -0.02411071
|
||||
vertices 857 4
|
||||
r 2.95146823 0.03664562 2.95146561 0.03418398 2.94900298 0.03418704 2.94900560 0.03664868
|
||||
vertices 857 4
|
||||
r 2.94450092 0.04382383 2.94449782 0.04023932 2.94091105 0.04024325 2.94091415 0.04382776
|
||||
vertices 857 4
|
||||
3.02086139 -0.02302798 3.00846529 -0.02705376 3.00868630 -0.04208237 3.02108240 -0.03805659
|
||||
vertices 857 4
|
||||
r 3.02086067 -0.05286095 3.00800657 -0.04836694 3.00800276 -0.03513270 3.02085686 -0.03962671
|
||||
vertices 857 4
|
||||
r 3.02423763 -0.03334893 3.02423882 -0.04344197 3.01590013 -0.04343520 3.01589894 -0.03334216
|
||||
vertices 858 4
|
||||
r 3.08539510 0.00054410 3.08539343 -0.00183898 3.08301020 -0.00183716 3.08301187 0.00054592
|
||||
vertices 858 4
|
||||
r 3.09301567 0.03889141 3.09300923 0.03505953 3.08917498 0.03506429 3.08918142 0.03889617
|
||||
vertices 858 4
|
||||
r 3.05481768 0.04963206 3.05481601 0.04751977 3.05270219 0.04752146 3.05270386 0.04963375
|
||||
vertices 858 4
|
||||
r 3.00675583 -0.02650647 3.00675249 -0.02866894 3.00458908 -0.02866622 3.00459242 -0.02650375
|
||||
vertices 858 4
|
||||
r 2.99946904 -0.04504572 2.99946380 -0.04729204 2.99721528 -0.04728829 2.99722052 -0.04504197
|
||||
vertices 858 4
|
||||
r 3.04602551 0.02430114 3.04602361 0.02104623 3.04276849 0.02104860 3.04277039 0.02430351
|
||||
vertices 858 4
|
||||
r 3.03695941 -0.03782450 3.03695560 -0.04125735 3.03352142 -0.04125381 3.03352523 -0.03782096
|
||||
vertices 858 4
|
||||
r 3.03050995 -0.00794710 3.03050637 -0.01192996 3.02652359 -0.01192645 3.02652717 -0.00794359
|
||||
vertices 858 4
|
||||
r 3.01596189 0.04595496 3.01596260 0.04371170 3.01325774 0.04371234 3.01325703 0.04595560
|
||||
vertices 858 4
|
||||
r 3.09550524 0.04166069 3.09549046 0.03331166 3.08733654 0.03332211 3.08735132 0.04167114
|
||||
vertices 858 4
|
||||
3.10676813 -0.03506339 3.09159732 -0.04386129 3.09161687 -0.06484308 3.10678768 -0.05604518
|
||||
vertices 859 4
|
||||
r 3.08961225 0.04035256 3.08961964 0.03493680 3.08599543 0.03493433 3.08598804 0.04035009
|
||||
vertices 859 4
|
||||
r 3.10322142 0.01711304 3.10322309 0.01350180 3.09960055 0.01350105 3.09959888 0.01711229
|
||||
vertices 859 4
|
||||
r 3.13288498 -0.01403721 3.13288474 -0.01652049 3.13016748 -0.01652040 3.13016772 -0.01403712
|
||||
vertices 859 4
|
||||
r 3.17546391 0.04104119 3.17546225 0.03878396 3.17319704 0.03878483 3.17319870 0.04104206
|
||||
vertices 859 4
|
||||
r 3.12631679 0.01598761 3.12631726 0.01395588 3.12427949 0.01395569 3.12427902 0.01598742
|
||||
vertices 859 4
|
||||
r 3.16752553 0.01756782 3.16752529 0.01576197 3.16548753 0.01576216 3.16548777 0.01756801
|
||||
vertices 859 4
|
||||
r 3.13967633 0.00763542 3.13967633 0.00605510 3.13786507 0.00605505 3.13786507 0.00763537
|
||||
vertices 859 4
|
||||
r 3.13537526 -0.02645378 3.13537502 -0.02871142 3.13333678 -0.02871133 3.13333702 -0.02645369
|
||||
vertices 859 4
|
||||
3.19539881 -0.03636635 3.18068814 -0.04675816 3.17891192 -0.06751974 3.19362259 -0.05712793
|
||||
vertices 860 4
|
||||
r 3.22092915 -0.00302056 3.22092938 -0.01128596 3.21140932 -0.01128630 3.21140909 -0.00302090
|
||||
vertices 860 4
|
||||
r 3.21251893 -0.00678878 3.21251869 -0.01147698 3.20882821 -0.01147699 3.20882845 -0.00678879
|
||||
vertices 860 4
|
||||
r 3.27763796 0.00797284 3.27763772 0.00616763 3.27428794 0.00616763 3.27428818 0.00797284
|
||||
vertices 860 4
|
||||
3.28269005 -0.03579921 3.26843047 -0.04370754 3.26710844 -0.06514381 3.28136802 -0.05723548
|
||||
vertices 861 4
|
||||
r 3.36291051 -0.01614496 3.36291170 -0.01817575 3.35974240 -0.01817681 3.35974121 -0.01614602
|
||||
vertices 861 4
|
||||
r 3.32193470 -0.02292546 3.32193494 -0.02518273 3.31967092 -0.02518292 3.31967068 -0.02292565
|
||||
vertices 861 4
|
||||
r 3.31757617 -0.01575456 3.31757712 -0.02683263 3.30669856 -0.02683282 3.30669761 -0.01575475
|
||||
vertices 861 4
|
||||
r 3.28568316 0.05381309 3.28568625 0.05087895 3.26416086 0.05086324 3.26415777 0.05379738
|
||||
vertices 861 4
|
||||
3.28070903 0.04478271 3.27798867 0.04658681 3.27708363 0.04545801 3.27980399 0.04365391
|
||||
vertices 861 4
|
||||
r 3.27258301 0.00777005 3.27258348 0.00641609 3.26918792 0.00641572 3.26918745 0.00776968
|
||||
vertices 861 4
|
||||
r 3.29770017 0.04004961 3.29770088 0.03824395 3.29588890 0.03824345 3.29588819 0.04004911
|
||||
vertices 861 4
|
||||
r 3.32849741 -0.00260962 3.32849765 -0.00441541 3.32691312 -0.00441551 3.32691288 -0.00260972
|
||||
vertices 861 4
|
||||
r 3.36834025 -0.00914862 3.36834383 -0.01614300 3.36608005 -0.01614357 3.36607647 -0.00914919
|
||||
vertices 861 4
|
||||
r 3.30223846 -0.00396500 3.30223846 -0.00577076 3.29997492 -0.00577077 3.29997492 -0.00396501
|
||||
vertices 861 4
|
||||
r 3.32080173 0.04253559 3.32080150 0.04027822 3.31876303 0.04027824 3.31876326 0.04253561
|
||||
vertices 862 4
|
||||
r 3.42654324 0.01687799 3.42654252 0.01463619 3.42430067 0.01463664 3.42430139 0.01687844
|
||||
vertices 862 4
|
||||
r 3.37672591 -0.01090994 3.37672496 -0.01401159 3.37362314 -0.01401084 3.37362409 -0.01090919
|
||||
vertices 862 4
|
||||
r 3.37298942 0.00764148 3.37298942 0.00462792 3.36997581 0.00462811 3.36997581 0.00764167
|
||||
vertices 862 4
|
||||
r 3.39324307 -0.01565892 3.39324260 -0.01781342 3.39108802 -0.01781304 3.39108849 -0.01565854
|
||||
vertices 862 4
|
||||
r 3.38428378 0.03579316 3.38428497 0.03222282 3.38071322 0.03222242 3.38071203 0.03579276
|
||||
vertices 862 4
|
||||
r 3.38134241 0.03280169 3.38134336 0.02976008 3.37830066 0.02975971 3.37829971 0.03280132
|
||||
vertices 862 4
|
||||
r 3.44420171 0.01388868 3.44420123 0.01254248 3.44262385 0.01254286 3.44262433 0.01388906
|
||||
vertices 862 4
|
||||
r 3.36283970 0.04598242 3.36284208 0.04396322 3.36036229 0.04396204 3.36035991 0.04598124
|
||||
vertices 862 4
|
||||
r 3.35857701 -0.01549361 3.35857558 -0.01796153 3.35406900 -0.01795971 3.35407043 -0.01549179
|
||||
vertices 862 4
|
||||
r 3.41445923 0.01142581 3.41445899 0.00940595 3.41243124 0.00940622 3.41243148 0.01142608
|
||||
vertices 862 4
|
||||
3.45683789 -0.03681149 3.44264412 -0.04422335 3.44268060 -0.06620713 3.45687437 -0.05879527
|
||||
vertices 863 4
|
||||
r 3.50929570 -0.01512715 3.50929737 -0.01903337 3.50544882 -0.01903455 3.50544715 -0.01512833
|
||||
vertices 863 4
|
||||
r 3.54302263 -0.00909099 3.54302812 -0.01698707 3.54053808 -0.01698811 3.54053259 -0.00909203
|
||||
vertices 863 4
|
||||
r 3.48868084 0.04506173 3.48868179 0.04122479 3.48483109 0.04122381 3.48483014 0.04506075
|
||||
vertices 863 4
|
||||
r 3.50023246 0.03197278 3.50023246 0.02926433 3.49751520 0.02926400 3.49751520 0.03197245
|
||||
vertices 863 4
|
||||
r 3.46854663 -0.00640266 3.46854687 -0.00888524 3.46605683 -0.00888556 3.46605659 -0.00640298
|
||||
vertices 863 4
|
||||
r 3.52513790 0.02610520 3.52513695 0.02339735 3.52264643 0.02339747 3.52264738 0.02610532
|
||||
vertices 863 4
|
||||
r 3.46311331 -0.01994403 3.46311283 -0.02174946 3.46130156 -0.02174942 3.46130204 -0.01994399
|
||||
vertices 864 4
|
||||
r 3.62661576 -0.01490809 3.62661672 -0.01693923 3.62435222 -0.01693954 3.62435126 -0.01490840
|
||||
vertices 864 4
|
||||
r 3.54666257 -0.00136312 3.54666042 -0.01127034 3.53680992 -0.01126813 3.53681207 -0.00136091
|
||||
vertices 864 4
|
||||
3.63139009 -0.03634519 3.61712909 -0.04605751 3.61648346 -0.06681905 3.63074446 -0.05710673
|
||||
vertices 864 4
|
||||
3.62968016 -0.01675257 3.62967992 -0.01608597 3.52264380 -0.01606739 3.52264404 -0.01673399
|
||||
vertices 865 4
|
||||
r 3.70476961 0.02063870 3.70476818 0.01754562 3.70167422 0.01754626 3.70167565 0.02063934
|
||||
vertices 865 4
|
||||
r 3.70817995 0.03097952 3.70817733 0.02781504 3.70501113 0.02781621 3.70501375 0.03098069
|
||||
vertices 865 4
|
||||
r 3.71808958 -0.00945368 3.71809101 -0.01280757 3.71473551 -0.01280834 3.71473408 -0.00945445
|
||||
vertices 865 4
|
||||
r 3.67638922 0.04825773 3.67638826 0.04507980 3.67320823 0.04508020 3.67320919 0.04825813
|
||||
vertices 865 4
|
||||
r 3.63885117 0.02561780 3.63885260 0.02214225 3.63537621 0.02214148 3.63537478 0.02561703
|
||||
vertices 865 4
|
||||
r 3.63082504 -0.02122913 3.63082290 -0.02488435 3.62716652 -0.02488331 3.62716866 -0.02122809
|
||||
vertices 865 4
|
||||
r 3.66445732 0.03669674 3.66445756 0.02960028 3.65735865 0.02959985 3.65735841 0.03669631
|
||||
vertices 865 4
|
||||
r 3.71896791 -0.02491817 3.71899724 -0.04712830 3.70772791 -0.04713352 3.70769858 -0.02492339
|
||||
vertices 866 4
|
||||
r 3.70717359 0.05085722 3.70718050 0.04634443 3.70310258 0.04634066 3.70309567 0.05085345
|
||||
vertices 866 4
|
||||
r 3.75656128 0.02785864 3.75656152 0.02582716 3.75452376 0.02582687 3.75452352 0.02785835
|
||||
vertices 866 4
|
||||
r 3.74026370 0.01228107 3.74026418 0.01002394 3.73800040 0.01002347 3.73799992 0.01228060
|
||||
vertices 866 4
|
||||
r 3.78012061 -0.03488244 3.78012395 -0.03894490 3.77604771 -0.03894691 3.77604437 -0.03488445
|
||||
vertices 866 4
|
||||
r 3.74003768 -0.03624738 3.74003720 -0.03918176 3.73709321 -0.03918173 3.73709369 -0.03624735
|
||||
vertices 866 4
|
||||
r 3.78757691 0.02086302 3.78757620 0.01815493 3.78463340 0.01815503 3.78463411 0.02086312
|
||||
vertices 866 4
|
||||
r 3.80545998 -0.00937088 3.80547285 -0.02629190 3.80185103 -0.02629328 3.80183816 -0.00937226
|
||||
vertices 866 4
|
||||
r 3.72507834 -0.05407554 3.72507668 -0.05588100 3.72349049 -0.05588042 3.72349215 -0.05407496
|
||||
vertices 866 4
|
||||
r 3.75452709 -0.00645097 3.75452733 -0.00870815 3.75226379 -0.00870854 3.75226355 -0.00645136
|
||||
vertices 866 4
|
||||
r 3.71264935 -0.01006613 3.71264887 -0.01277404 3.70993256 -0.01277402 3.70993304 -0.01006611
|
||||
vertices 867 4
|
||||
r 3.85977530 0.04244722 3.85977721 0.03565665 3.85352350 0.03565331 3.85352159 0.04244388
|
||||
vertices 867 4
|
||||
r 3.86992812 -0.01077348 3.86993051 -0.01303098 3.86766601 -0.01303298 3.86766362 -0.01077548
|
||||
vertices 867 4
|
||||
r 3.85473418 0.01879019 3.85473609 0.01540356 3.85156560 0.01540140 3.85156369 0.01878803
|
||||
vertices 867 4
|
||||
r 3.86175251 0.02285860 3.86175323 0.02105246 3.85948849 0.02105106 3.85948777 0.02285720
|
||||
vertices 867 4
|
||||
r 3.88015580 -0.03694814 3.88016200 -0.04033402 3.87653732 -0.04033860 3.87653112 -0.03695272
|
||||
vertices 867 4
|
||||
3.89372373 -0.02384023 3.88692999 -0.02429979 3.88060665 -0.03491542 3.88740039 -0.03445586
|
||||
vertices 867 4
|
||||
3.89423728 -0.05182334 3.88719153 -0.04325828 3.88039159 -0.04304391 3.88743734 -0.05160897
|
||||
vertices 867 4
|
||||
r 3.89463520 -0.02699853 3.89468527 -0.04979151 3.88726711 -0.04980086 3.88721704 -0.02700788
|
||||
vertices 867 4
|
||||
r 3.88966489 -0.03400123 3.88968515 -0.04370611 3.88085055 -0.04371767 3.88083029 -0.03401279
|
565
masks/2df230k/sgp_fields.dat
Normal file
565
masks/2df230k/sgp_fields.dat
Normal file
|
@ -0,0 +1,565 @@
|
|||
unit d
|
||||
skip 0
|
||||
RA & Dec (B1950) limits of fields
|
||||
rectangle id number is the UKST field number
|
||||
RAmin RAmax Decmin Decmax
|
||||
rectangle 48
|
||||
321.75 338.25 -77.5 -72.5
|
||||
rectangle 49
|
||||
338.25 351.75 -77.5 -72.5
|
||||
rectangle 50
|
||||
-6.5 6.5 -72.5 -67.5
|
||||
rectangle 51
|
||||
6.5 19.5 -72.5 -67.5
|
||||
rectangle 52
|
||||
19.5 32.5 -72.5 -67.5
|
||||
rectangle 53
|
||||
32.5 45.5 -72.5 -67.5
|
||||
rectangle 54
|
||||
45.5 58.5 -72.5 -67.5
|
||||
rectangle 75
|
||||
318.5 331.5 -72.5 -67.5
|
||||
rectangle 76
|
||||
331.5 344.5 -72.5 -67.5
|
||||
rectangle 77
|
||||
344.5 353.5 -72.5 -67.5
|
||||
rectangle 78
|
||||
-5.5 5.5 -67.5 -62.5
|
||||
rectangle 79
|
||||
5.5 16.5 -67.5 -62.5
|
||||
rectangle 80
|
||||
16.5 27.5 -67.5 -62.5
|
||||
rectangle 81
|
||||
27.5 38.5 -67.5 -62.5
|
||||
rectangle 82
|
||||
38.5 49.5 -67.5 -62.5
|
||||
rectangle 83
|
||||
49.5 60.5 -67.5 -62.5
|
||||
rectangle 84
|
||||
60.5 71.5 -67.5 -62.5
|
||||
rectangle 107
|
||||
313.5 324.5 -67.5 -62.5
|
||||
rectangle 108
|
||||
324.5 335.5 -67.5 -62.5
|
||||
rectangle 109
|
||||
335.5 346.5 -67.5 -62.5
|
||||
rectangle 110
|
||||
346.5 354.5 -67.5 -62.5
|
||||
rectangle 111
|
||||
-4.75 4.75 -62.5 -57.5
|
||||
rectangle 112
|
||||
4.75 14.25 -62.5 -57.5
|
||||
rectangle 113
|
||||
14.25 23.75 -62.5 -57.5
|
||||
rectangle 114
|
||||
23.75 33.25 -62.5 -57.5
|
||||
rectangle 115
|
||||
33.25 42.75 -62.5 -57.5
|
||||
rectangle 116
|
||||
42.75 52.25 -62.5 -57.5
|
||||
rectangle 117
|
||||
52.25 61.75 -62.5 -57.5
|
||||
rectangle 118
|
||||
61.75 71.25 -62.5 -57.5
|
||||
rectangle 143
|
||||
299.25 308.75 -62.5 -57.5
|
||||
rectangle 144
|
||||
308.75 318.25 -62.5 -57.5
|
||||
rectangle 145
|
||||
318.25 327.75 -62.5 -57.5
|
||||
rectangle 146
|
||||
327.75 337.25 -62.5 -57.5
|
||||
rectangle 147
|
||||
337.25 346.75 -62.5 -57.5
|
||||
rectangle 148
|
||||
346.75 355.25 -62.5 -57.5
|
||||
rectangle 149
|
||||
-4.125 4.125 -57.5 -52.5
|
||||
rectangle 150
|
||||
4.125 12.375 -57.5 -52.5
|
||||
rectangle 151
|
||||
12.375 20.625 -57.5 -52.5
|
||||
rectangle 152
|
||||
20.625 28.875 -57.5 -52.5
|
||||
rectangle 153
|
||||
28.875 37.125 -57.5 -52.5
|
||||
rectangle 154
|
||||
37.125 45.375 -57.5 -52.5
|
||||
rectangle 155
|
||||
45.375 53.625 -57.5 -52.5
|
||||
rectangle 156
|
||||
53.625 61.875 -57.5 -52.5
|
||||
rectangle 157
|
||||
61.875 70.125 -57.5 -52.5
|
||||
rectangle 158
|
||||
70.125 78.375 -57.5 -52.5
|
||||
rectangle 187
|
||||
309.375 317.625 -57.5 -52.5
|
||||
rectangle 188
|
||||
317.625 325.875 -57.5 -52.5
|
||||
rectangle 189
|
||||
325.875 334.125 -57.5 -52.5
|
||||
rectangle 190
|
||||
334.125 342.375 -57.5 -52.5
|
||||
rectangle 191
|
||||
342.375 350.625 -57.5 -52.5
|
||||
rectangle 192
|
||||
350.625 355.875 -57.5 -52.5
|
||||
rectangle 193
|
||||
-3.75 3.75 -52.5 -47.5
|
||||
rectangle 194
|
||||
3.75 11.25 -52.5 -47.5
|
||||
rectangle 195
|
||||
11.25 18.75 -52.5 -47.5
|
||||
rectangle 196
|
||||
18.75 26.25 -52.5 -47.5
|
||||
rectangle 197
|
||||
26.25 33.75 -52.5 -47.5
|
||||
rectangle 198
|
||||
33.75 41.25 -52.5 -47.5
|
||||
rectangle 199
|
||||
41.25 48.75 -52.5 -47.5
|
||||
rectangle 200
|
||||
48.75 56.25 -52.5 -47.5
|
||||
rectangle 201
|
||||
56.25 63.75 -52.5 -47.5
|
||||
rectangle 202
|
||||
63.75 71.25 -52.5 -47.5
|
||||
rectangle 203
|
||||
71.25 78.75 -52.5 -47.5
|
||||
rectangle 235
|
||||
311.25 318.75 -52.5 -47.5
|
||||
rectangle 236
|
||||
318.75 326.25 -52.5 -47.5
|
||||
rectangle 237
|
||||
326.25 333.75 -52.5 -47.5
|
||||
rectangle 238
|
||||
333.75 341.25 -52.5 -47.5
|
||||
rectangle 239
|
||||
341.25 348.75 -52.5 -47.5
|
||||
rectangle 240
|
||||
348.75 356.25 -52.5 -47.5
|
||||
rectangle 241
|
||||
-3.5 3.5 -47.5 -42.5
|
||||
rectangle 242
|
||||
3.5 10.5 -47.5 -42.5
|
||||
rectangle 243
|
||||
10.5 17.5 -47.5 -42.5
|
||||
rectangle 244
|
||||
17.5 24.5 -47.5 -42.5
|
||||
rectangle 245
|
||||
24.5 31.5 -47.5 -42.5
|
||||
rectangle 246
|
||||
31.5 38.5 -47.5 -42.5
|
||||
rectangle 247
|
||||
38.5 45.5 -47.5 -42.5
|
||||
rectangle 248
|
||||
45.5 52.5 -47.5 -42.5
|
||||
rectangle 249
|
||||
52.5 59.5 -47.5 -42.5
|
||||
rectangle 250
|
||||
59.5 66.5 -47.5 -42.5
|
||||
rectangle 251
|
||||
66.5 73.5 -47.5 -42.5
|
||||
rectangle 252
|
||||
73.5 80.5 -47.5 -42.5
|
||||
rectangle 286
|
||||
311.5 318.5 -47.5 -42.5
|
||||
rectangle 287
|
||||
318.5 325.5 -47.5 -42.5
|
||||
rectangle 288
|
||||
325.5 332.5 -47.5 -42.5
|
||||
rectangle 289
|
||||
332.5 339.5 -47.5 -42.5
|
||||
rectangle 290
|
||||
339.5 346.5 -47.5 -42.5
|
||||
rectangle 291
|
||||
346.5 353.5 -47.5 -42.5
|
||||
rectangle 292
|
||||
353.5 356.5 -47.5 -42.5
|
||||
rectangle 293
|
||||
-3.25 3.25 -42.5 -37.5
|
||||
rectangle 294
|
||||
3.25 9.75 -42.5 -37.5
|
||||
rectangle 295
|
||||
9.75 16.25 -42.5 -37.5
|
||||
rectangle 296
|
||||
16.25 22.75 -42.5 -37.5
|
||||
rectangle 297
|
||||
22.75 29.25 -42.5 -37.5
|
||||
rectangle 298
|
||||
29.25 35.75 -42.5 -37.5
|
||||
rectangle 299
|
||||
35.75 42.25 -42.5 -37.5
|
||||
rectangle 300
|
||||
42.25 48.75 -42.5 -37.5
|
||||
rectangle 301
|
||||
48.75 55.25 -42.5 -37.5
|
||||
rectangle 302
|
||||
55.25 61.75 -42.5 -37.5
|
||||
rectangle 303
|
||||
61.75 68.25 -42.5 -37.5
|
||||
rectangle 304
|
||||
68.25 74.75 -42.5 -37.5
|
||||
rectangle 305
|
||||
74.75 81.25 -42.5 -37.5
|
||||
rectangle 341
|
||||
308.75 315.25 -42.5 -37.5
|
||||
rectangle 342
|
||||
315.25 321.75 -42.5 -37.5
|
||||
rectangle 343
|
||||
321.75 328.25 -42.5 -37.5
|
||||
rectangle 344
|
||||
328.25 334.75 -42.5 -37.5
|
||||
rectangle 345
|
||||
334.75 341.25 -42.5 -37.5
|
||||
rectangle 346
|
||||
341.25 347.75 -42.5 -37.5
|
||||
rectangle 347
|
||||
347.75 354.25 -42.5 -37.5
|
||||
rectangle 348
|
||||
354.25 356.75 -42.5 -37.5
|
||||
rectangle 349
|
||||
-3. 3. -37.5 -32.5
|
||||
rectangle 350
|
||||
3. 9. -37.5 -32.5
|
||||
rectangle 351
|
||||
9. 15. -37.5 -32.5
|
||||
rectangle 352
|
||||
15. 21. -37.5 -32.5
|
||||
rectangle 353
|
||||
21. 27. -37.5 -32.5
|
||||
rectangle 354
|
||||
27. 33. -37.5 -32.5
|
||||
rectangle 355
|
||||
33. 39. -37.5 -32.5
|
||||
rectangle 356
|
||||
39. 45. -37.5 -32.5
|
||||
rectangle 357
|
||||
45. 51. -37.5 -32.5
|
||||
rectangle 358
|
||||
51. 57. -37.5 -32.5
|
||||
rectangle 359
|
||||
57. 63. -37.5 -32.5
|
||||
rectangle 360
|
||||
63. 69. -37.5 -32.5
|
||||
rectangle 361
|
||||
69. 75. -37.5 -32.5
|
||||
rectangle 362
|
||||
75. 81. -37.5 -32.5
|
||||
rectangle 401
|
||||
309. 315. -37.5 -32.5
|
||||
rectangle 402
|
||||
315. 321. -37.5 -32.5
|
||||
rectangle 403
|
||||
321. 327. -37.5 -32.5
|
||||
rectangle 404
|
||||
327. 333. -37.5 -32.5
|
||||
rectangle 405
|
||||
333. 339. -37.5 -32.5
|
||||
rectangle 406
|
||||
339. 345. -37.5 -32.5
|
||||
rectangle 407
|
||||
345. 351. -37.5 -32.5
|
||||
rectangle 408
|
||||
351. 357. -37.5 -32.5
|
||||
rectangle 409
|
||||
-2.875 2.875 -32.5 -27.5
|
||||
rectangle 410
|
||||
2.875 8.625 -32.5 -27.5
|
||||
rectangle 411
|
||||
8.625 14.375 -32.5 -27.5
|
||||
rectangle 412
|
||||
14.375 20.125 -32.5 -27.5
|
||||
rectangle 413
|
||||
20.125 25.875 -32.5 -27.5
|
||||
rectangle 414
|
||||
25.875 31.625 -32.5 -27.5
|
||||
rectangle 415
|
||||
31.625 37.375 -32.5 -27.5
|
||||
rectangle 416
|
||||
37.375 43.125 -32.5 -27.5
|
||||
rectangle 417
|
||||
43.125 48.875 -32.5 -27.5
|
||||
rectangle 418
|
||||
48.875 54.625 -32.5 -27.5
|
||||
rectangle 419
|
||||
54.625 60.375 -32.5 -27.5
|
||||
rectangle 420
|
||||
60.375 66.125 -32.5 -27.5
|
||||
rectangle 421
|
||||
66.125 71.875 -32.5 -27.5
|
||||
rectangle 422
|
||||
71.875 77.625 -32.5 -27.5
|
||||
rectangle 423
|
||||
77.625 83.375 -32.5 -27.5
|
||||
rectangle 464
|
||||
313.375 319.125 -32.5 -27.5
|
||||
rectangle 465
|
||||
319.125 324.875 -32.5 -27.5
|
||||
rectangle 466
|
||||
324.875 330.625 -32.5 -27.5
|
||||
rectangle 467
|
||||
330.625 336.375 -32.5 -27.5
|
||||
rectangle 468
|
||||
336.375 342.125 -32.5 -27.5
|
||||
rectangle 469
|
||||
342.125 347.875 -32.5 -27.5
|
||||
rectangle 470
|
||||
347.875 353.625 -32.5 -27.5
|
||||
rectangle 471
|
||||
353.625 357.125 -32.5 -27.5
|
||||
rectangle 472
|
||||
-2.75 2.75 -27.5 -22.5
|
||||
rectangle 473
|
||||
2.75 8.25 -27.5 -22.5
|
||||
rectangle 474
|
||||
8.25 13.75 -27.5 -22.5
|
||||
rectangle 475
|
||||
13.75 19.25 -27.5 -22.5
|
||||
rectangle 476
|
||||
19.25 24.75 -27.5 -22.5
|
||||
rectangle 477
|
||||
24.75 30.25 -27.5 -22.5
|
||||
rectangle 478
|
||||
30.25 35.75 -27.5 -22.5
|
||||
rectangle 479
|
||||
35.75 41.25 -27.5 -22.5
|
||||
rectangle 480
|
||||
41.25 46.75 -27.5 -22.5
|
||||
rectangle 481
|
||||
46.75 52.25 -27.5 -22.5
|
||||
rectangle 482
|
||||
52.25 57.75 -27.5 -22.5
|
||||
rectangle 483
|
||||
57.75 63.25 -27.5 -22.5
|
||||
rectangle 484
|
||||
63.25 68.75 -27.5 -22.5
|
||||
rectangle 485
|
||||
68.75 74.25 -27.5 -22.5
|
||||
rectangle 530
|
||||
316.25 321.75 -27.5 -22.5
|
||||
rectangle 531
|
||||
321.75 327.25 -27.5 -22.5
|
||||
rectangle 532
|
||||
327.25 332.75 -27.5 -22.5
|
||||
rectangle 533
|
||||
332.75 338.25 -27.5 -22.5
|
||||
rectangle 534
|
||||
338.25 343.75 -27.5 -22.5
|
||||
rectangle 535
|
||||
343.75 349.25 -27.5 -22.5
|
||||
rectangle 536
|
||||
349.25 354.75 -27.5 -22.5
|
||||
rectangle 537
|
||||
354.75 357.25 -27.5 -22.5
|
||||
rectangle 538
|
||||
-2.625 2.625 -22.5 -17.5
|
||||
rectangle 539
|
||||
2.625 7.875 -22.5 -17.5
|
||||
rectangle 540
|
||||
7.875 13.125 -22.5 -17.5
|
||||
rectangle 541
|
||||
13.125 18.375 -22.5 -17.5
|
||||
rectangle 542
|
||||
18.375 23.625 -22.5 -17.5
|
||||
rectangle 543
|
||||
23.625 28.875 -22.5 -17.5
|
||||
rectangle 544
|
||||
28.875 34.125 -22.5 -17.5
|
||||
rectangle 545
|
||||
34.125 39.375 -22.5 -17.5
|
||||
rectangle 546
|
||||
39.375 44.625 -22.5 -17.5
|
||||
rectangle 547
|
||||
44.625 49.875 -22.5 -17.5
|
||||
rectangle 548
|
||||
49.875 55.125 -22.5 -17.5
|
||||
rectangle 549
|
||||
55.125 60.375 -22.5 -17.5
|
||||
rectangle 550
|
||||
60.375 65.625 -22.5 -17.5
|
||||
rectangle 551
|
||||
65.625 70.875 -22.5 -17.5
|
||||
rectangle 599
|
||||
317.625 322.875 -22.5 -17.5
|
||||
rectangle 600
|
||||
322.875 328.125 -22.5 -17.5
|
||||
rectangle 601
|
||||
328.125 333.375 -22.5 -17.5
|
||||
rectangle 602
|
||||
333.375 338.625 -22.5 -17.5
|
||||
rectangle 603
|
||||
338.625 343.875 -22.5 -17.5
|
||||
rectangle 604
|
||||
343.875 349.125 -22.5 -17.5
|
||||
rectangle 605
|
||||
349.125 354.375 -22.5 -17.5
|
||||
rectangle 606
|
||||
354.375 357.375 -22.5 -17.5
|
||||
rectangle 607
|
||||
-2.5 2.5 -17.5 -12.5
|
||||
rectangle 608
|
||||
2.5 7.5 -17.5 -12.5
|
||||
rectangle 609
|
||||
7.5 12.5 -17.5 -12.5
|
||||
rectangle 610
|
||||
12.5 17.5 -17.5 -12.5
|
||||
rectangle 611
|
||||
17.5 22.5 -17.5 -12.5
|
||||
rectangle 612
|
||||
22.5 27.5 -17.5 -12.5
|
||||
rectangle 613
|
||||
27.5 32.5 -17.5 -12.5
|
||||
rectangle 614
|
||||
32.5 37.5 -17.5 -12.5
|
||||
rectangle 615
|
||||
37.5 42.5 -17.5 -12.5
|
||||
rectangle 616
|
||||
42.5 47.5 -17.5 -12.5
|
||||
rectangle 617
|
||||
47.5 52.5 -17.5 -12.5
|
||||
rectangle 618
|
||||
52.5 57.5 -17.5 -12.5
|
||||
rectangle 619
|
||||
57.5 62.5 -17.5 -12.5
|
||||
rectangle 620
|
||||
62.5 67.5 -17.5 -12.5
|
||||
rectangle 621
|
||||
67.5 72.5 -17.5 -12.5
|
||||
rectangle 671
|
||||
317.5 322.5 -17.5 -12.5
|
||||
rectangle 672
|
||||
322.5 327.5 -17.5 -12.5
|
||||
rectangle 673
|
||||
327.5 332.5 -17.5 -12.5
|
||||
rectangle 674
|
||||
332.5 337.5 -17.5 -12.5
|
||||
rectangle 675
|
||||
337.5 342.5 -17.5 -12.5
|
||||
rectangle 676
|
||||
342.5 347.5 -17.5 -12.5
|
||||
rectangle 677
|
||||
347.5 352.5 -17.5 -12.5
|
||||
rectangle 678
|
||||
352.5 357.5 -17.5 -12.5
|
||||
rectangle 679
|
||||
-2.5 2.5 -12.5 -7.5
|
||||
rectangle 680
|
||||
2.5 7.5 -12.5 -7.5
|
||||
rectangle 681
|
||||
7.5 12.5 -12.5 -7.5
|
||||
rectangle 682
|
||||
12.5 17.5 -12.5 -7.5
|
||||
rectangle 683
|
||||
17.5 22.5 -12.5 -7.5
|
||||
rectangle 684
|
||||
22.5 27.5 -12.5 -7.5
|
||||
rectangle 685
|
||||
27.5 32.5 -12.5 -7.5
|
||||
rectangle 686
|
||||
32.5 37.5 -12.5 -7.5
|
||||
rectangle 687
|
||||
37.5 42.5 -12.5 -7.5
|
||||
rectangle 688
|
||||
42.5 47.5 -12.5 -7.5
|
||||
rectangle 689
|
||||
47.5 52.5 -12.5 -7.5
|
||||
rectangle 690
|
||||
52.5 57.5 -12.5 -7.5
|
||||
rectangle 691
|
||||
57.5 62.5 -12.5 -7.5
|
||||
rectangle 692
|
||||
62.5 67.5 -12.5 -7.5
|
||||
rectangle 743
|
||||
317.5 322.5 -12.5 -7.5
|
||||
rectangle 744
|
||||
322.5 327.5 -12.5 -7.5
|
||||
rectangle 745
|
||||
327.5 332.5 -12.5 -7.5
|
||||
rectangle 746
|
||||
332.5 337.5 -12.5 -7.5
|
||||
rectangle 747
|
||||
337.5 342.5 -12.5 -7.5
|
||||
rectangle 748
|
||||
342.5 347.5 -12.5 -7.5
|
||||
rectangle 749
|
||||
347.5 352.5 -12.5 -7.5
|
||||
rectangle 750
|
||||
352.5 357.5 -12.5 -7.5
|
||||
rectangle 751
|
||||
-2.5 2.5 -7.5 -2.5
|
||||
rectangle 752
|
||||
2.5 7.5 -7.5 -2.5
|
||||
rectangle 753
|
||||
7.5 12.5 -7.5 -2.5
|
||||
rectangle 754
|
||||
12.5 17.5 -7.5 -2.5
|
||||
rectangle 755
|
||||
17.5 22.5 -7.5 -2.5
|
||||
rectangle 756
|
||||
22.5 27.5 -7.5 -2.5
|
||||
rectangle 757
|
||||
27.5 32.5 -7.5 -2.5
|
||||
rectangle 758
|
||||
32.5 37.5 -7.5 -2.5
|
||||
rectangle 759
|
||||
37.5 42.5 -7.5 -2.5
|
||||
rectangle 760
|
||||
42.5 47.5 -7.5 -2.5
|
||||
rectangle 761
|
||||
47.5 52.5 -7.5 -2.5
|
||||
rectangle 762
|
||||
52.5 57.5 -7.5 -2.5
|
||||
rectangle 763
|
||||
57.5 62.5 -7.5 -2.5
|
||||
rectangle 816
|
||||
322.5 327.5 -7.5 -2.5
|
||||
rectangle 817
|
||||
327.5 332.5 -7.5 -2.5
|
||||
rectangle 818
|
||||
332.5 337.5 -7.5 -2.5
|
||||
rectangle 819
|
||||
337.5 342.5 -7.5 -2.5
|
||||
rectangle 820
|
||||
342.5 347.5 -7.5 -2.5
|
||||
rectangle 821
|
||||
347.5 352.5 -7.5 -2.5
|
||||
rectangle 822
|
||||
352.5 357.5 -7.5 -2.5
|
||||
rectangle 823
|
||||
-2.5 2.5 -2.5 2.5
|
||||
rectangle 824
|
||||
2.5 7.5 -2.5 2.5
|
||||
rectangle 825
|
||||
7.5 12.5 -2.5 2.5
|
||||
rectangle 826
|
||||
12.5 17.5 -2.5 2.5
|
||||
rectangle 827
|
||||
17.5 22.5 -2.5 2.5
|
||||
rectangle 828
|
||||
22.5 27.5 -2.5 2.5
|
||||
rectangle 829
|
||||
27.5 32.5 -2.5 2.5
|
||||
rectangle 830
|
||||
32.5 37.5 -2.5 2.5
|
||||
rectangle 831
|
||||
37.5 42.5 -2.5 2.5
|
||||
rectangle 832
|
||||
42.5 47.5 -2.5 2.5
|
||||
rectangle 833
|
||||
47.5 52.5 -2.5 2.5
|
||||
rectangle 834
|
||||
52.5 57.5 -2.5 2.5
|
||||
rectangle 889
|
||||
327.5 332.5 -2.5 2.5
|
||||
rectangle 890
|
||||
332.5 337.5 -2.5 2.5
|
||||
rectangle 891
|
||||
337.5 342.5 -2.5 2.5
|
||||
rectangle 892
|
||||
342.5 347.5 -2.5 2.5
|
||||
rectangle 893
|
||||
347.5 352.5 -2.5 2.5
|
||||
rectangle 894
|
||||
352.5 357.5 -2.5 2.5
|
3631
masks/2df230k/sgpholes.dat
Normal file
3631
masks/2df230k/sgpholes.dat
Normal file
File diff suppressed because it is too large
Load diff
1814
masks/2df230k/sgpholes.lis
Normal file
1814
masks/2df230k/sgpholes.lis
Normal file
File diff suppressed because it is too large
Load diff
215
masks/2qz10k/2qz.sh
Executable file
215
masks/2qz10k/2qz.sh
Executable file
|
@ -0,0 +1,215 @@
|
|||
#! /bin/sh
|
||||
|
||||
#script to create the angular mask for the 10k release of the 2dF QSO Redshift Survey
|
||||
#see http://www.2dfquasar.org/ for more about the survey.
|
||||
#USAGE: 2qz.sh
|
||||
|
||||
if [ "$MANGLEBINDIR" = "" ] ; then
|
||||
MANGLEBINDIR="../../bin"
|
||||
fi
|
||||
if [ "$MANGLESCRIPTSDIR" = "" ] ; then
|
||||
MANGLESCRIPTSDIR="../../scripts"
|
||||
fi
|
||||
if [ "$MANGLEDATADIR" = "" ] ; then
|
||||
MANGLEDATADIR="../../masks"
|
||||
fi
|
||||
|
||||
user=`whoami`
|
||||
names=`finger $user | fgrep "ame:" | sed 's/.*: *\([^ ]*\)[^:]*/\1/'`
|
||||
for name in ${names}; do break; done
|
||||
echo "Hello $name, watch me make the angular mask and harmonics for the 2QZ 10k survey."
|
||||
|
||||
#to pixelize dynamically
|
||||
#pix=
|
||||
#restag=
|
||||
#to pixelize everything to fixed resolution
|
||||
scheme="s"
|
||||
res=4
|
||||
pix="-P${scheme}0,${res}"
|
||||
restag="_res${res}${scheme}"
|
||||
|
||||
# to make verbose
|
||||
quiet=
|
||||
# to make quiet
|
||||
#quiet=-q
|
||||
|
||||
# snap tolerances
|
||||
snaptols="-a2 -b2 -t2"
|
||||
|
||||
#multiple intersection tolerance
|
||||
mtol="-m1e-5"
|
||||
|
||||
# maximum harmonic number
|
||||
lmax=20
|
||||
|
||||
# North
|
||||
|
||||
if [ -z "$quiet" ]; then
|
||||
echo "===========================================";
|
||||
echo " THE NORTH ";
|
||||
fi
|
||||
|
||||
# name of output file to contain 2QZ 10k North polygons
|
||||
npol="2qz_north${restag}.pol"
|
||||
|
||||
echo "$MANGLEBINDIR/pixelize $pix $quiet $mtol ngp_ukstfld.lims.txt jnup"
|
||||
$MANGLEBINDIR/pixelize $pix $quiet $mtol ngp_ukstfld.lims.txt jnup || exit
|
||||
echo "$MANGLEBINDIR/pixelize $pix $quiet $mtol ngp_field_coords.txt jnfp"
|
||||
$MANGLEBINDIR/pixelize $pix $quiet $mtol ngp_field_coords.txt jnfp || exit
|
||||
echo "$MANGLEBINDIR/pixelize $pix $quiet $mtol ngp.used.rahole.txt jnhp"
|
||||
$MANGLEBINDIR/pixelize $pix $quiet $mtol ngp.used.rahole.txt jnhp || exit
|
||||
echo "$MANGLEBINDIR/snap $quiet $snaptols $mtol jnup jnu"
|
||||
$MANGLEBINDIR/snap $quiet $snaptols $mtol jnup jnu || exit
|
||||
echo "$MANGLEBINDIR/snap $quiet $snaptols $mtol jnfp jnf"
|
||||
$MANGLEBINDIR/snap $quiet $snaptols $mtol jnfp jnf || exit
|
||||
echo "$MANGLEBINDIR/snap $quiet $snaptols $mtol jnhp jnh"
|
||||
$MANGLEBINDIR/snap $quiet $snaptols $mtol jnhp jnh || exit
|
||||
echo "$MANGLEBINDIR/snap $quiet $snaptols $mtol jnu jnf jnh jnufh"
|
||||
$MANGLEBINDIR/snap $quiet $snaptols $mtol jnu jnf jnh jnufh || exit
|
||||
echo "$MANGLEBINDIR/balkanize $quiet $mtol jnufh jnb"
|
||||
$MANGLEBINDIR/balkanize $quiet $mtol jnufh jnb || exit
|
||||
echo "$MANGLEBINDIR/weight $quiet $mtol -z2QZ10k jnb jnw"
|
||||
$MANGLEBINDIR/weight $quiet $mtol -z2QZ10k jnb jnw || exit
|
||||
echo "$MANGLEBINDIR/unify $quiet $mtol jnw $npol"
|
||||
$MANGLEBINDIR/unify $quiet $mtol jnw $npol || exit
|
||||
echo "Polygons for 2QZ 10k North are in $npol"
|
||||
|
||||
# South
|
||||
|
||||
if [ -z "$quiet" ]; then
|
||||
echo "===========================================";
|
||||
echo " THE SOUTH ";
|
||||
fi
|
||||
|
||||
# name of output file to contain 2QZ 10k South polygons
|
||||
spol="2qz_south${restag}.pol"
|
||||
|
||||
echo "$MANGLEBINDIR/pixelize $pix $quiet $mtol sgp_ukstfld.lims.txt jsup"
|
||||
$MANGLEBINDIR/pixelize $pix $quiet $mtol sgp_ukstfld.lims.txt jsup || exit
|
||||
echo "$MANGLEBINDIR/pixelize $pix $quiet $mtol sgp_field_coords.txt jsfp"
|
||||
$MANGLEBINDIR/pixelize $pix $quiet $mtol sgp_field_coords.txt jsfp || exit
|
||||
echo "$MANGLEBINDIR/pixelize $pix $quiet $mtol sgp.used.rahole.txt jshp"
|
||||
$MANGLEBINDIR/pixelize $pix $quiet $mtol sgp.used.rahole.txt jshp || exit
|
||||
echo "$MANGLEBINDIR/snap $quiet $snaptols $mtol jsup jsu"
|
||||
$MANGLEBINDIR/snap $quiet $snaptols $mtol jsup jsu || exit
|
||||
echo "$MANGLEBINDIR/snap $quiet $snaptols $mtol jsfp jsf"
|
||||
$MANGLEBINDIR/snap $quiet $snaptols $mtol jsfp jsf || exit
|
||||
echo "$MANGLEBINDIR/snap $quiet $snaptols $mtol jshp jsh"
|
||||
$MANGLEBINDIR/snap $quiet $snaptols $mtol jshp jsh || exit
|
||||
echo "$MANGLEBINDIR/snap $quiet $snaptols $mtol jsu jsf jsh jsufh"
|
||||
$MANGLEBINDIR/snap $quiet $snaptols $mtol jsu jsf jsh jsufh || exit
|
||||
echo "$MANGLEBINDIR/balkanize $quiet $mtol jsufh jsb"
|
||||
$MANGLEBINDIR/balkanize $quiet $mtol jsufh jsb || exit
|
||||
echo "$MANGLEBINDIR/weight $quiet $mtol -z2QZ10k jsb jsw"
|
||||
$MANGLEBINDIR/weight $quiet $mtol -z2QZ10k jsb jsw || exit
|
||||
echo "$MANGLEBINDIR/unify $quiet $mtol jsw $spol"
|
||||
$MANGLEBINDIR/unify $quiet $mtol jsw $spol || exit
|
||||
echo "Polygons for 2QZ 10k South are in $spol"
|
||||
|
||||
# Harmonics
|
||||
|
||||
if [ -z "$quiet" ]; then
|
||||
echo "===========================================";
|
||||
echo " THE WORLD ";
|
||||
fi
|
||||
|
||||
# name of output file to contain harmonics
|
||||
wlm="2qz${restag}.wlm"
|
||||
|
||||
echo "$MANGLEBINDIR/harmonize $quiet -l$lmax $npol $spol $wlm"
|
||||
$MANGLEBINDIR/harmonize $quiet $mtol -l$lmax $npol $spol $wlm || exit
|
||||
echo "Harmonics for 2QZ 10k mask up to l = $lmax are in $wlm"
|
||||
|
||||
# Map
|
||||
|
||||
# name of output file to contain map
|
||||
map="2qz${restag}.map"
|
||||
|
||||
echo "$MANGLEBINDIR/map $quiet -w$wlm azel.dat $map"
|
||||
$MANGLEBINDIR/map $quiet -w$wlm azel.dat $map || exit
|
||||
echo "Map of 2QZ 10k mask up to l = $lmax is in $map"
|
||||
|
||||
# Vertices
|
||||
|
||||
# name of output file to contain vertices
|
||||
vert="2qz${restag}.vrt"
|
||||
|
||||
echo "$MANGLEBINDIR/poly2poly -ov $quiet $npol $spol $vert"
|
||||
$MANGLEBINDIR/poly2poly -ov $quiet $mtol $npol $spol $vert || exit
|
||||
echo "Vertices of 2QZ 10k mask are in $vert"
|
||||
|
||||
# Graphics
|
||||
|
||||
# name of output file to contain graphics
|
||||
grph="2qz${restag}.grph"
|
||||
|
||||
# number of points per (2 pi) along each edge of a polygon
|
||||
pts_per_twopi=30
|
||||
|
||||
echo "$MANGLEBINDIR/poly2poly -og$pts_per_twopi $quiet $npol $spol $grph"
|
||||
$MANGLEBINDIR/poly2poly -og$pts_per_twopi $quiet $mtol $npol $spol $grph || exit
|
||||
echo "Data suitable for plotting polygons of the 2QZ 10k mask are in $grph:"
|
||||
echo "each line is a sequence of az, el points delineating the perimeter of a polygon."
|
||||
|
||||
eps="2qz${restag}.eps"
|
||||
neps="2qz_north${restag}.eps"
|
||||
seps="2qz_south${restag}.eps"
|
||||
|
||||
if which matlab >/dev/null 2>&1 ; then
|
||||
# name of output file to contain matlab graphics
|
||||
list="2qz${restag}.list"
|
||||
|
||||
echo "$MANGLEBINDIR/poly2poly -ol$pts_per_twopi $quiet $npol $spol $list"
|
||||
$MANGLEBINDIR/poly2poly -ol$pts_per_twopi $quiet $mtol $npol $spol $list || exit
|
||||
echo "Data for plotting polygons of the 2QZ 10k mask in Matlab are in $list."
|
||||
echo "Using Matlab to plot the 2QZ 10k mask ..."
|
||||
echo "$MANGLESCRIPTSDIR/graphmask.sh $list $eps"
|
||||
$MANGLESCRIPTSDIR/graphmask.sh $list $eps 0 0 0 0 "Completeness mask for 2qz 10k"
|
||||
if [ $? -eq 0 ]; then
|
||||
$MANGLESCRIPTSDIR/graphmask.sh $list $neps 147 223 -6 6 "Completeness mask for 2qz 10k north"
|
||||
$MANGLESCRIPTSDIR/graphmask.sh $list $seps -36 50 -36 -24 "Completeness mask for 2qz 10k south"
|
||||
echo "Made figures illustrating the 2QZ 10k mask:"
|
||||
echo "$eps, $neps, $seps"
|
||||
echo "Type \"ggv $eps\" or \"gv $eps\" to view the figures."
|
||||
elif which sm >/dev/null 2>&1 ; then
|
||||
echo "Using Supermongo to plot the 2QZ 10k mask:"
|
||||
$MANGLESCRIPTSDIR/graphmasksm.sh $grph $eps 0 0 0 0 "Completeness mask for 2qz 10k"
|
||||
if [ $? -eq 0 ]; then
|
||||
echo "Made a figure illustrating the 2QZ 10k mask: $eps"
|
||||
echo "Type \"ggv $eps\" or \"gv $eps\" to view the figure."
|
||||
echo "A script is also available to plot mangle files Matlab (with the mapping toolbox),"
|
||||
echo "or you can plot $grph using your own favorite plotting tool."
|
||||
fi
|
||||
else
|
||||
echo "Scripts are available for plotting mangle polygons in Matlab"
|
||||
echo "(with the mapping toolbox) or Supermongo, or you can plot $grph"
|
||||
echo "using your own favorite plotting tool."
|
||||
fi
|
||||
elif which sm >/dev/null 2>&1 ; then
|
||||
echo "Using Supermongo to plot the 2QZ 10k mask:"
|
||||
$MANGLESCRIPTSDIR/graphmasksm.sh $grph $eps 0 0 0 0 "Completeness mask for 2qz 10k"
|
||||
if [ $? -eq 0 ]; then
|
||||
echo "Made a figure illustrating the 2QZ 10k mask: $eps"
|
||||
echo "Type \"ggv $eps\" or \"gv $eps\" to view the figure."
|
||||
echo "A script is also available to plot mangle files Matlab (with the mapping toolbox),"
|
||||
echo "or you can plot $grph using your own favorite plotting tool."
|
||||
fi
|
||||
else
|
||||
echo "Scripts are available for plotting mangle polygons in Matlab"
|
||||
echo "(with the mapping toolbox) or Supermongo, or you can plot $grph"
|
||||
echo "using your own favorite plotting tool."
|
||||
fi
|
||||
|
||||
# remove temporary files
|
||||
rm j[ns]*
|
||||
|
||||
if [ -z "$quiet" ]; then
|
||||
echo "===========================================";
|
||||
echo "the universe?"
|
||||
fi
|
||||
|
||||
if [ "$quiet" ]; then
|
||||
echo ""
|
||||
echo "If you'd like to repeat that with the sound on,"
|
||||
echo "please turn off the quiet button in 2qz.sh and try again."
|
||||
fi
|
17
masks/2qz10k/README
Normal file
17
masks/2qz10k/README
Normal file
|
@ -0,0 +1,17 @@
|
|||
At the command line, type
|
||||
2qz.sh
|
||||
and find out what happens.
|
||||
|
||||
You should be aware that Intel and Sun chips have different endianness.
|
||||
If your system is having a problem reading unformatted fortran files
|
||||
ngc_obscomp.dat
|
||||
sgc_obscomp.dat
|
||||
it's probably an endianness problem.
|
||||
Read HELP.unformatted in the mangle directory.
|
||||
|
||||
Alternatively, you can use the formatted versions of these files
|
||||
ngc_obscomp.txt
|
||||
sgc_obscomp.txt
|
||||
|
||||
These will be used automatically if there is an error reading
|
||||
the unformatted files.
|
16472
masks/2qz10k/azel.dat
Normal file
16472
masks/2qz10k/azel.dat
Normal file
File diff suppressed because it is too large
Load diff
BIN
masks/2qz10k/ngc_obscomp.dat
Normal file
BIN
masks/2qz10k/ngc_obscomp.dat
Normal file
Binary file not shown.
135
masks/2qz10k/ngp.used.rahole.txt
Normal file
135
masks/2qz10k/ngp.used.rahole.txt
Normal file
|
@ -0,0 +1,135 @@
|
|||
vertices 0 4
|
||||
unit r
|
||||
# RA3 dec3 RA4 dec4 RA2 dec2 RA1 dec1 plate hole field
|
||||
#
|
||||
2.6431146954 0.0260858968 2.6431114304 0.0229366782 2.6462475007 0.0229342082 2.6462509201 0.0260833404 1 1 j10658_853
|
||||
2.6387513686 0.0213119826 2.6387495321 0.0192968522 2.6407561104 0.0192953857 2.6407579987 0.0213104873 1 4 j10658_853
|
||||
2.6176910610 -0.0128549279 2.6176890352 -0.0159353951 2.6207561335 -0.0159372895 2.6207580623 -0.0128568247 1 5 j10658_853
|
||||
2.6126560603 -0.0125400997 2.6126545511 -0.0146767454 2.6147819311 -0.0146781334 2.6147833960 -0.0125414805 1 8 j10658_853
|
||||
2.5776648569 0.0331935074 2.5776654081 0.0301936578 2.5806536277 0.0301928179 2.5806532599 0.0331927848 1 9 j10658_853
|
||||
2.5728621330 0.0065048449 2.5728621316 0.0043845613 2.5738462412 0.0043839526 2.5738473412 0.0065042669 1 10 j10658_853
|
||||
2.6016824092 -0.0474497312 2.6016819672 -0.0478373734 2.6037717328 -0.0478373765 2.6037721500 -0.0474515956 1 13 j10658_853
|
||||
2.5952948048 -0.0279522514 2.5952908454 -0.0314729162 2.5987974414 -0.0314759889 2.5988011479 -0.0279552360 1 14 j10658_853
|
||||
2.6559503555 0.0132757461 2.6559489560 0.0117836755 2.6572277230 0.0117827541 2.6572291372 0.0132748004 1 15 j10658_853
|
||||
2.6365486668 0.0024166962 2.6365428253 -0.0071769629 2.6461327853 -0.0071821107 2.6461384170 0.0024108459 1 16 j10658_853
|
||||
r 2.6601273142 -0.0478372811 2.6548644982 -0.0478373114 2.6548692406 -0.0415046876 2.6601289920 -0.0388904455 1 17 j10658_853
|
||||
r 2.6172637993 -0.0478373690 2.5728621544 -0.0282145490 2.5728621508 -0.0261645032 2.6219076564 -0.0478373700 1 18 j10658_853
|
||||
2.7351919620 0.0316910381 2.7351872163 0.0293203374 2.7375484765 0.0293164234 2.7375533326 0.0316870659 2 1 j12465_854
|
||||
2.7329096006 -0.0404935482 2.7329064334 -0.0458128275 2.7382068219 -0.0458175448 2.7382091600 -0.0404985504 2 2 j12465_854
|
||||
2.7075147213 -0.0095600766 2.7075098404 -0.0130717226 2.7110062431 -0.0130765053 2.7110110241 -0.0095648759 2 7 j12465_854
|
||||
2.7092855735 -0.0337568275 2.7092815785 -0.0368047487 2.7123175375 -0.0368087395 2.7123213093 -0.0337608354 2 8 j12465_854
|
||||
2.7138742191 -0.0083022610 2.7138714018 -0.0103898640 2.7159499349 -0.0103926602 2.7159527226 -0.0083050713 2 9 j12465_854
|
||||
2.7142591796 -0.0015683370 2.7142563999 -0.0035712121 2.7162505288 -0.0035739373 2.7162532992 -0.0015710755 2 10 j12465_854
|
||||
2.7212484755 -0.0110610519 2.7212441038 -0.0145239538 2.7246921925 -0.0145283786 2.7246964552 -0.0110655473 2 11 j12465_854
|
||||
2.6990709709 0.0015886035 2.6990680009 -0.0005175463 2.7011649241 -0.0005204765 2.7011678930 0.0015856807 2 12 j12465_854
|
||||
2.7020300563 -0.0076305520 2.7020269991 -0.0097699685 2.7041570631 -0.0097729501 2.7041600911 -0.0076335304 2 14 j12465_854
|
||||
2.6914956039 0.0018081505 2.6914925933 -0.0003269467 2.6936183649 -0.0003299372 2.6936213752 0.0018051790 2 15 j12465_854
|
||||
2.7082395288 0.0348861221 2.7082376398 0.0336070597 2.7097297862 0.0336049291 2.7097317176 0.0348839890 2 16 j12465_854
|
||||
2.7363118320 -0.0039502646 2.7363048987 -0.0094920085 2.7416321443 -0.0094986319 2.7416389269 -0.0039572203 2 17 j12465_854
|
||||
r 2.6766210603 -0.0192142342 2.6601291336 -0.0182618767 2.6601291315 -0.0167460680 2.6770499656 -0.0177228743 2 19 j12465_854
|
||||
r 2.7468975264 -0.0475625808 2.7419744312 -0.0475626097 2.7420339493 -0.0416817725 2.7468993065 -0.0389279550 2 20 j12465_854
|
||||
2.8181641286 -0.0284601187 2.8181654767 -0.0306690158 2.8203655118 -0.0306683879 2.8203640653 -0.0284595353 3 1 j9309_855
|
||||
2.8330362439 0.0241528772 2.8330345427 0.0208874046 2.8334917666 0.0208872818 2.8334917598 0.0241527344 3 3 j9309_855
|
||||
2.7865183487 -0.0247506539 2.7865183107 -0.0268446241 2.7886035385 -0.0268447670 2.7886034990 -0.0247507907 3 7 j9309_855
|
||||
2.7851874175 0.0008862145 2.7851875830 -0.0014584331 2.7896617023 -0.0014585807 2.7896615290 0.0008860821 3 8 j9309_855
|
||||
2.8284374117 -0.0014585172 2.8284375999 -0.0027371390 2.8297160004 -0.0027370756 2.8297158089 -0.0014584741 3 9 j9309_855
|
||||
r 2.8334900858 -0.0474602821 2.8294747518 -0.0474603057 2.8295282767 -0.0415215491 2.8334917204 -0.0395046618 3 10 j9309_855
|
||||
2.8334917837 -0.0066332502 2.8035547006 -0.0474603798 2.8041356156 -0.0474603791 2.8334917834 -0.0074247431 3 11 j9309_855
|
||||
r 2.8950443466 0.0016279351 2.8928364163 0.0038572361 2.8929866560 0.0066448750 2.8951945403 0.0044155468 4 1 j8487_856
|
||||
2.8806333882 -0.0063065603 2.8806336611 -0.0105953642 2.8851308806 -0.0105952964 2.8851304861 -0.0063065110 4 3 j8487_856
|
||||
2.8744225373 -0.0369715043 2.8744222252 -0.0410456975 2.8784933409 -0.0410459121 2.8784932102 -0.0369716993 4 4 j8487_856
|
||||
2.8480782459 0.0192091386 2.8480798270 0.0159930489 2.8512919699 0.0159934847 2.8512905030 0.0192096788 4 5 j8487_856
|
||||
2.8390771147 -0.0309577373 2.8390738358 -0.0350310748 2.8431440785 -0.0350331077 2.8431469815 -0.0309595552 4 6 j8487_856
|
||||
2.8380037033 -0.0337442279 2.8380013247 -0.0365312028 2.8412147361 -0.0365329614 2.8412168989 -0.0337458658 4 7 j8487_856
|
||||
2.8857740667 -0.0163851609 2.8857744565 -0.0193872941 2.8889870649 -0.0193870870 2.8889865536 -0.0163849776 4 8 j8487_856
|
||||
2.9005546786 0.0367940027 2.9005561130 0.0400932866 2.8966995911 0.0400932923 2.8966984682 0.0367947870 4 9 j8487_856
|
||||
2.8334918981 0.0243508066 2.8334918879 0.0207066947 2.8362982269 0.0207074171 2.8362957279 0.0243516819 4 10 j8487_856
|
||||
2.8857722110 0.0031288743 2.8857720297 0.0061310075 2.8827740178 0.0061310222 2.8827742208 0.0031288761 4 11 j8487_856
|
||||
2.9101907580 -0.0202413558 2.9101891065 -0.0172395843 2.9071909443 -0.0172402408 2.9071924773 -0.0202420985 4 12 j8487_856
|
||||
2.8716383901 0.0067742447 2.8716386150 0.0039865348 2.8744225099 0.0039865794 2.8744223076 0.0067743073 4 13 j8487_856
|
||||
2.8547216384 0.0003413357 2.8547217487 -0.0022316990 2.8575055409 -0.0022318191 2.8575054213 0.0003412727 4 14 j8487_856
|
||||
2.9033404609 -0.0277475408 2.9033414811 -0.0301065919 2.9061265788 -0.0301055285 2.9061254274 -0.0277465316 4 15 j8487_856
|
||||
r 2.9223946731 -0.0471729837 2.9165868813 -0.0471730165 2.9168496221 -0.0427507834 2.9223962909 -0.0392443519 4 16 j8487_856
|
||||
2.9888685618 -0.0233737845 2.9888654436 -0.0263360466 2.9918152298 -0.0263395209 2.9918181983 -0.0233773266 5 1 j5777_857
|
||||
2.9895619553 -0.0093578506 2.9895582170 -0.0123461782 2.9925334141 -0.0123499954 2.9925370830 -0.0093617389 5 2 j5777_857
|
||||
2.9992807085 -0.0459566400 2.9992800415 -0.0474287316 3.0025990638 -0.0474287167 3.0025995939 -0.0459594637 5 3 j5777_857
|
||||
3.0072036813 -0.0252651543 3.0072022439 -0.0273174051 3.0087344182 -0.0273189221 3.0087344226 -0.0252667127 5 4 j5777_857
|
||||
2.9687844420 0.0085610957 2.9687801715 0.0055818469 2.9717459308 0.0055776627 2.9717502381 0.0085569020 5 5 j5777_857
|
||||
2.9718808935 0.0309604584 2.9718760446 0.0277677295 2.9750550732 0.0277630866 2.9750601153 0.0309557935 5 6 j5777_857
|
||||
2.9761219081 -0.0322954788 2.9761182740 -0.0352817908 2.9790923745 -0.0352855735 2.9790958035 -0.0322992926 5 7 j5777_857
|
||||
2.9314513681 -0.0163529592 2.9314475001 -0.0184339037 2.9335196986 -0.0184373395 2.9335235145 -0.0163563453 5 8 j5777_857
|
||||
2.9268198595 0.0054199220 2.9268148289 0.0017019407 2.9305169450 0.0016966530 2.9305220012 0.0054148103 5 9 j5777_857
|
||||
2.9246611382 -0.0184710731 2.9246556815 -0.0211853861 2.9273589518 -0.0211900963 2.9273643078 -0.0184756828 5 11 j5777_857
|
||||
2.9520920815 -0.0229861372 2.9520883650 -0.0252052788 2.9542980218 -0.0252086804 2.9543016569 -0.0229895161 5 13 j5777_857
|
||||
2.9499854949 0.0347355621 2.9499830294 0.0323970219 2.9523118497 0.0323941022 2.9523144342 0.0347326712 5 14 j5777_857
|
||||
2.9423322223 0.0398375804 2.9423308462 0.0381505781 2.9457225664 0.0381467105 2.9457240841 0.0398375869 5 15 j5777_857
|
||||
r 3.0087343788 -0.0393080750 3.0064248905 -0.0400617147 3.0062194645 -0.0257812429 3.0087344232 -0.0249608843 5 16 j5777_857
|
||||
3.0087343976 -0.0344904496 3.0057880279 -0.0334539281 3.0057835167 -0.0460293714 3.0087343370 -0.0470664803 5 17 j5777_857
|
||||
3.0813823841 0.0004413790 3.0813808676 -0.0018225318 3.0836341353 -0.0018240351 3.0836356466 0.0004398256 6 1 j13130_858
|
||||
3.0087345346 -0.0252631765 3.0087345398 -0.0273174808 3.0092826671 -0.0273181185 3.0092857262 -0.0252638012 6 4 j13130_858
|
||||
3.0433348754 0.0230071199 3.0433331327 0.0199151315 3.0464105907 0.0199130685 3.0464124646 0.0230050829 6 6 j13130_858
|
||||
3.0345955634 -0.0360093298 3.0345917421 -0.0392703379 3.0378388755 -0.0392734360 3.0378424254 -0.0360123683 6 7 j13130_858
|
||||
3.0279777413 -0.0076275270 3.0279744485 -0.0114109870 3.0317401918 -0.0114141084 3.0317433868 -0.0076305382 6 8 j13130_858
|
||||
3.0854825582 0.0395096448 3.0854710607 0.0315774449 3.0931786310 0.0315692818 3.0931915442 0.0395007417 6 10 j13130_858
|
||||
r 3.0948362574 -0.0474173799 3.0895002845 -0.0474174109 3.0894981650 -0.0417439585 3.0948378402 -0.0386327627 6 11 j13130_858
|
||||
3.1018649500 0.0161725595 3.1018661302 0.0127420791 3.1052929325 0.0127426148 3.1052918584 0.0161732438 7 2 j9113_859
|
||||
3.1307796544 -0.0134181912 3.1307793612 -0.0157771809 3.1333496404 -0.0157772308 3.1333498709 -0.0134182221 7 3 j9113_859
|
||||
3.1714876092 0.0389063064 3.1714859944 0.0367619427 3.1736287038 0.0367612968 3.1736304317 0.0389056129 7 4 j9113_859
|
||||
3.1252113036 0.0151039811 3.1252115540 0.0131739375 3.1271391874 0.0131741111 3.1271389699 0.0151041737 7 5 j9113_859
|
||||
3.1641930599 0.0166062395 3.1641926509 0.0148906853 3.1661203133 0.0148905944 3.1661207551 0.0166061225 7 6 j9113_859
|
||||
3.1380623927 0.0071699926 3.1380623909 0.0056687467 3.1397757642 0.0056688208 3.1397757754 0.0071700689 7 7 j9113_859
|
||||
3.1337768673 -0.0252134107 3.1337765385 -0.0273580494 3.1357045891 -0.0273581035 3.1357048429 -0.0252134555 7 8 j9113_859
|
||||
r 3.1838929130 -0.0469926838 3.1783514476 -0.0469927153 3.1785651754 -0.0445023208 3.1838942018 -0.0407226548 7 9 j9113_859
|
||||
3.2123487690 -0.0029463670 3.2123480314 -0.0107971305 3.2213537022 -0.0107982520 3.2213540753 -0.0029472073 8 1 j10158_860
|
||||
3.2099076245 -0.0065250676 3.2099070447 -0.0109781664 3.2133978868 -0.0109786909 3.2133983670 -0.0065255034 8 2 j10158_860
|
||||
r 3.2711884316 -0.0468821837 3.2659540843 -0.0468822137 3.2662816460 -0.0416015337 3.2711899662 -0.0388691884 8 4 j10158_860
|
||||
3.3574796187 -0.0154159184 3.3574806862 -0.0173452596 3.3580873705 -0.0173450268 3.3580873727 -0.0154157015 9 1 j5023_861
|
||||
3.3194731025 -0.0218579549 3.3194733897 -0.0240023031 3.3216209580 -0.0240020031 3.3216205979 -0.0218576621 9 2 j5023_861
|
||||
3.3071680836 -0.0150465211 3.3071676040 -0.0255702139 3.3174874905 -0.0255695589 3.3174864422 -0.0150457397 9 3 j5023_861
|
||||
r 3.2816597555 0.0413891895 3.2795298814 0.0436650166 3.2807064972 0.0436650223 3.2825179807 0.0424615550 9 5 j5023_861
|
||||
3.2715889273 0.0072991527 3.2715892478 0.0060129552 3.2748099694 0.0060133978 3.2748096651 0.0072996542 9 6 j5023_861
|
||||
3.2969144929 0.0379649797 3.2969154094 0.0362496881 3.2986338113 0.0362501966 3.2986329662 0.0379655059 9 7 j5023_861
|
||||
3.3263418004 -0.0025580875 3.3263419817 -0.0042735539 3.3278449791 -0.0042733662 3.3278447906 -0.0025579095 9 8 j5023_861
|
||||
3.3007910919 -0.0038470233 3.3007911281 -0.0055624308 3.3029382853 -0.0055623098 3.3029382355 -0.0038468852 9 10 j5023_861
|
||||
3.3186103265 0.0403280700 3.3186103365 0.0381836416 3.3205436427 0.0381837443 3.3205437391 0.0403281675 9 11 j5023_861
|
||||
3.2816597555 0.0413891895 3.2807064972 0.0436650223 3.2795298814 0.0436650166 3.2790799949 0.0431030436 9 12 j5023_861
|
||||
3.4231432123 0.0159426427 3.4231426066 0.0138130682 3.4252630554 0.0138126337 3.4252637031 0.0159421762 10 1 j10971_862
|
||||
3.3752111554 -0.0104522420 3.3752101717 -0.0133984839 3.3781440278 -0.0133993112 3.3781449376 -0.0104529935 10 2 j10971_862
|
||||
3.3717606560 0.0071698765 3.3717606676 0.0043072892 3.3746111101 0.0043069299 3.3746111247 0.0071695982 10 3 j10971_862
|
||||
3.3917294600 -0.0149640156 3.3917290036 -0.0170105934 3.3937668209 -0.0170110072 3.3937672303 -0.0149644152 10 4 j10971_862
|
||||
3.3819165749 0.0339108981 3.3819177383 0.0305194407 3.3852955075 0.0305195783 3.3852945833 0.0339111096 10 5 j10971_862
|
||||
3.3796348428 0.0310694004 3.3796358551 0.0281801569 3.3825133374 0.0281802902 3.3825124843 0.0310695945 10 6 j10971_862
|
||||
3.4404735642 0.0131027277 3.4404730712 0.0118238897 3.4419649160 0.0118235357 3.4419654237 0.0131023494 10 7 j10971_862
|
||||
3.3580874571 -0.0148058670 3.3580874600 -0.0171501668 3.3609780408 -0.0171514200 3.3609793754 -0.0148070227 10 9 j10971_862
|
||||
3.4119164050 0.0107635608 3.4119161428 0.0088448547 3.4138340699 0.0088445669 3.4138343540 0.0107632609 10 10 j10971_862
|
||||
r 3.4446618614 -0.0476019817 3.4404951171 -0.0476020062 3.4404895229 -0.0421006187 3.4446634878 -0.0399121340 10 11 j10971_862
|
||||
3.5046413312 -0.0144513283 3.5046429844 -0.0181622124 3.5082834359 -0.0181608560 3.5082816285 -0.0144500438 11 1 j5099_863
|
||||
3.4851371925 0.0404542006 3.4851377706 0.0390804853 3.4887795351 0.0390815802 3.4887790846 0.0404542014 11 3 j5099_863
|
||||
3.4971353662 0.0302926017 3.4971357768 0.0277196371 3.4997057875 0.0277201358 3.4997055012 0.0302930830 11 4 j5099_863
|
||||
3.4673811189 -0.0061645244 3.4673814915 -0.0085228650 3.4697368528 -0.0085224603 3.4697364499 -0.0061640792 11 5 j5099_863
|
||||
3.5209078409 0.0247207089 3.5209073928 0.0221481998 3.5232630685 0.0221483415 3.5232636079 0.0247207868 11 6 j5099_863
|
||||
3.4628851357 -0.0190285288 3.4628849685 -0.0207436417 3.4645981530 -0.0207435668 3.4645982798 -0.0190284277 11 7 j5099_863
|
||||
3.5389988865 -0.0013740341 3.5389968850 -0.0107843825 3.5483180214 -0.0107879748 3.5483196151 -0.0013766374 12 2 j9108_864
|
||||
r 3.6198653452 -0.0469604843 3.6148968002 -0.0469605130 3.6149951709 -0.0438383330 3.6198667215 -0.0405083301 12 3 j9108_864
|
||||
r 3.5329109329 -0.0159814204 3.5329109322 -0.0153481221 3.6198667876 -0.0153681158 3.6198667870 -0.0160014339 12 4 j9108_864
|
||||
3.6996933586 0.0195299992 3.6996921527 0.0165912934 3.7026174474 0.0165909253 3.7026187523 0.0195295283 13 1 j5785_865
|
||||
3.7028489850 0.0293549789 3.7028469049 0.0263484324 3.7058402714 0.0263476331 3.7058425138 0.0293540625 13 2 j5785_865
|
||||
3.6370083348 0.0242574969 3.6370096466 0.0209556708 3.6402963687 0.0209563033 3.6402952147 0.0242582260 13 5 j5785_865
|
||||
3.6292488834 -0.0202477383 3.6292469296 -0.0237202367 3.6327040554 -0.0237211824 3.6327058269 -0.0202485465 13 6 j5785_865
|
||||
3.6577932545 0.0347832301 3.6577941929 0.0280414861 3.6645050401 0.0280419490 3.6645050258 0.0347837560 13 7 j5785_865
|
||||
3.7053869733 -0.0237569649 3.7054064729 -0.0448616812 3.7070447484 -0.0448605525 3.7070448235 -0.0237562993 13 8 j5785_865
|
||||
3.7544092078 0.0263926097 3.7544095111 0.0244628831 3.7563368035 0.0244630669 3.7563365614 0.0263927899 14 2 j5087_866
|
||||
3.7387814039 0.0115960388 3.7387820003 0.0094519727 3.7409230974 0.0094522797 3.7409225309 0.0115963651 14 3 j5087_866
|
||||
3.7747685423 -0.0332088420 3.7747713287 -0.0370679779 3.7786271573 -0.0370662858 3.7786240149 -0.0332072701 14 4 j5087_866
|
||||
3.7379281895 -0.0345012661 3.7379277237 -0.0372886216 3.7407124195 -0.0372887906 3.7407126957 -0.0345014011 14 5 j5087_866
|
||||
3.7828896491 0.0197465377 3.7828892107 0.0171739635 3.7856727104 0.0171738672 3.7856732334 0.0197463654 14 6 j5087_866
|
||||
3.7522738914 -0.0061984083 3.7522742936 -0.0083425155 3.7544153954 -0.0083422603 3.7544149687 -0.0061981544 14 9 j5087_866
|
||||
3.7122355150 -0.0096302442 3.7122351957 -0.0122024936 3.7148045542 -0.0122027018 3.7148048222 -0.0096303665 14 10 j5087_866
|
||||
3.8529051184 0.0402432586 3.8529081540 0.0337922205 3.8588702258 0.0337957691 3.8588681205 0.0402466070 15 1 j5773_867
|
||||
3.8663911796 -0.0103132605 3.8663932983 -0.0124578791 3.8685527830 -0.0124559436 3.8685506269 -0.0103113670 15 2 j5773_867
|
||||
3.8510386477 0.0177709941 3.8510407885 0.0145537748 3.8540639371 0.0145559163 3.8540618962 0.0177730957 15 3 j5773_867
|
||||
3.8585946798 0.0216366911 3.8585955917 0.0199209072 3.8607551371 0.0199223030 3.8607542746 0.0216380630 15 4 j5773_867
|
||||
3.8748456098 -0.0351811865 3.8748508955 -0.0383978509 3.8783074160 -0.0383935064 3.8783018521 -0.0351769768 15 5 j5773_867
|
||||
3.8822560306 -0.0330088926 3.8822560306 -0.0330088926 3.8822560460 -0.0273517653 3.8787305273 -0.0332466109 15 6 j5773_867
|
||||
3.8822559756 -0.0454855303 3.8822559756 -0.0454855303 3.8822559980 -0.0410845511 3.8785280682 -0.0409661853 15 7 j5773_867
|
||||
3.8789453217 -0.0323884648 3.8789614728 -0.0416091758 3.8822559956 -0.0416047096 3.8822560327 -0.0323843865 15 9 j5773_867
|
278
masks/2qz10k/ngp_field_coords.txt
Normal file
278
masks/2qz10k/ngp_field_coords.txt
Normal file
|
@ -0,0 +1,278 @@
|
|||
circle
|
||||
unit h
|
||||
skip 6
|
||||
coordinates (B1950) radius
|
||||
Field hh mm ss.ss dd mm ss.s d
|
||||
ngp178 11 58 42.31 -02 17 59.2 1
|
||||
ngp179 12 04 35.46 -02 17 59.2 1
|
||||
ngp180 12 10 26.56 -02 17 59.2 1
|
||||
ngp181 12 15 39.52 -02 17 59.2 1
|
||||
ngp182 12 19 56.56 -02 17 59.2 1
|
||||
ngp183 12 25 07.38 -02 17 59.2 1
|
||||
ngp184 12 29 51.32 -02 17 59.2 1
|
||||
ngp185 12 34 47.03 -02 17 59.2 1
|
||||
ngp186 12 38 55.39 -02 17 59.2 1
|
||||
ngp187 12 43 17.17 -02 17 59.2 1
|
||||
ngp188 12 47 23.50 -02 17 59.2 1
|
||||
ngp189 12 51 50.69 -02 17 59.2 1
|
||||
ngp190 12 55 38.72 -02 17 59.2 1
|
||||
ngp191 12 59 37.08 -02 17 59.2 1
|
||||
ngp192 13 00 58.34 -02 17 59.2 1
|
||||
ngp193 13 06 39.34 -02 17 59.2 1
|
||||
ngp194 13 11 01.47 -02 17 59.2 1
|
||||
ngp195 13 16 40.58 -02 17 59.2 1
|
||||
ngp196 13 20 24.05 -02 17 59.2 1
|
||||
ngp197 13 25 46.25 -02 17 59.2 1
|
||||
ngp198 13 28 19.71 -02 17 59.2 1
|
||||
ngp199 13 31 22.63 -02 17 59.2 1
|
||||
ngp200 13 36 08.94 -02 17 59.2 1
|
||||
ngp201 13 42 08.80 -02 17 59.2 1
|
||||
ngp202 13 48 33.94 -02 17 59.2 1
|
||||
ngp203 13 54 02.53 -02 17 59.2 1
|
||||
ngp204 14 00 33.87 -02 17 59.2 1
|
||||
ngp205 14 07 04.00 -02 17 59.2 1
|
||||
ngp206 14 11 52.13 -02 17 59.2 1
|
||||
ngp207 14 17 07.20 -02 17 59.2 1
|
||||
ngp208 14 21 56.98 -02 17 59.2 1
|
||||
ngp209 14 28 01.74 -02 17 59.2 1
|
||||
ngp210 14 32 26.06 -02 17 59.2 1
|
||||
ngp211 14 37 56.77 -02 17 59.2 1
|
||||
ngp212 14 42 24.06 -02 17 59.2 1
|
||||
ngp213 14 48 17.11 -02 17 59.2 1
|
||||
ngp214 09 47 47.31 -02 17 59.2 1
|
||||
ngp215 09 52 52.05 -02 17 59.2 1
|
||||
ngp216 09 57 49.75 -02 17 59.2 1
|
||||
ngp217 10 01 35.20 -02 17 59.2 1
|
||||
ngp218 10 07 13.93 -02 17 59.2 1
|
||||
ngp219 10 11 20.36 -02 17 59.2 1
|
||||
ngp220 10 15 50.43 -02 17 59.2 1
|
||||
ngp221 10 19 14.04 -02 17 59.2 1
|
||||
ngp222 10 24 02.27 -02 17 59.2 1
|
||||
ngp223 10 28 30.00 -02 17 59.2 1
|
||||
ngp224 10 32 07.91 -02 17 59.2 1
|
||||
ngp225 10 36 42.22 -02 17 59.2 1
|
||||
ngp226 10 40 19.14 -02 17 59.2 1
|
||||
ngp227 10 43 33.56 -02 17 59.2 1
|
||||
ngp228 10 49 16.89 -02 17 59.2 1
|
||||
ngp229 10 53 36.48 -02 17 59.2 1
|
||||
ngp230 10 59 28.75 -02 17 59.2 1
|
||||
ngp231 11 03 35.73 -02 17 59.2 1
|
||||
ngp232 11 08 06.52 -02 17 59.2 1
|
||||
ngp233 11 11 34.77 -02 17 59.2 1
|
||||
ngp234 11 16 16.91 -02 17 59.2 1
|
||||
ngp235 11 21 11.16 -02 17 59.2 1
|
||||
ngp236 11 27 42.56 -02 17 59.2 1
|
||||
ngp237 11 32 18.77 -02 17 59.2 1
|
||||
ngp238 11 36 19.60 -02 17 59.2 1
|
||||
ngp239 11 39 47.94 -02 17 59.2 1
|
||||
ngp240 11 42 23.30 -02 17 59.2 1
|
||||
ngp241 11 46 33.15 -02 17 59.2 1
|
||||
ngp242 11 50 19.65 -02 17 59.2 1
|
||||
ngp243 11 53 11.32 -02 17 59.2 1
|
||||
ngp244 11 59 42.45 -02 17 59.2 1
|
||||
ngp245 12 02 05.45 -00 56 59.2 1
|
||||
ngp246 12 08 33.88 -00 56 59.2 1
|
||||
ngp247 12 11 59.91 -00 56 59.2 1
|
||||
ngp248 12 17 03.71 -00 56 59.2 1
|
||||
ngp249 12 23 34.79 -00 56 59.2 1
|
||||
ngp250 12 29 42.93 -00 56 59.2 1
|
||||
ngp251 12 32 48.39 -00 56 59.2 1
|
||||
ngp252 12 38 23.20 -00 56 59.2 1
|
||||
ngp253 12 42 04.85 -00 56 59.2 1
|
||||
ngp254 12 47 04.26 -00 56 59.2 1
|
||||
ngp255 12 49 54.98 -00 56 59.2 1
|
||||
ngp256 12 53 18.10 -00 56 59.2 1
|
||||
ngp257 12 57 55.51 -00 56 59.2 1
|
||||
ngp258 13 02 09.20 -00 56 59.2 1
|
||||
ngp259 13 07 30.88 -00 56 59.2 1
|
||||
ngp260 13 09 59.44 -00 56 59.2 1
|
||||
ngp261 13 13 19.46 -00 56 59.2 1
|
||||
ngp262 13 15 53.82 -00 56 59.2 1
|
||||
ngp263 13 18 47.38 -00 56 59.2 1
|
||||
ngp264 13 21 48.48 -00 56 59.2 1
|
||||
ngp265 13 25 53.11 -00 56 59.2 1
|
||||
ngp266 13 30 28.55 -00 56 59.2 1
|
||||
ngp267 13 35 24.02 -00 56 59.2 1
|
||||
ngp268 13 40 43.44 -00 56 59.2 1
|
||||
ngp269 13 45 58.66 -00 56 59.2 1
|
||||
ngp270 13 51 52.51 -00 56 59.2 1
|
||||
ngp271 13 55 47.83 -00 56 59.2 1
|
||||
ngp272 14 01 13.30 -00 56 59.2 1
|
||||
ngp273 14 04 22.31 -00 56 59.2 1
|
||||
ngp274 14 10 01.36 -00 56 59.2 1
|
||||
ngp275 14 12 48.58 -00 56 59.2 1
|
||||
ngp276 14 18 34.50 -00 56 59.2 1
|
||||
ngp277 14 22 47.13 -00 56 59.2 1
|
||||
ngp278 14 28 52.74 -00 56 59.2 1
|
||||
ngp279 14 32 59.35 -00 56 59.2 1
|
||||
ngp280 14 36 00.82 -00 56 59.2 1
|
||||
ngp281 14 40 56.34 -00 56 59.2 1
|
||||
ngp282 14 44 04.07 -00 56 59.2 1
|
||||
ngp283 14 50 35.44 -00 56 59.2 1
|
||||
ngp284 09 49 18.33 -00 56 59.2 1
|
||||
ngp285 09 53 59.87 -00 56 59.2 1
|
||||
ngp286 09 59 15.28 -00 56 59.2 1
|
||||
ngp287 10 05 11.86 -00 56 59.2 1
|
||||
ngp288 10 10 09.55 -00 56 59.2 1
|
||||
ngp289 10 11 44.68 -00 56 59.2 1
|
||||
ngp290 10 15 38.38 -00 56 59.2 1
|
||||
ngp291 10 19 48.14 -00 56 59.2 1
|
||||
ngp292 10 26 15.68 -00 56 59.2 1
|
||||
ngp293 10 30 59.18 -00 56 59.2 1
|
||||
ngp294 10 35 04.26 -00 56 59.2 1
|
||||
ngp295 10 39 33.68 -00 56 59.2 1
|
||||
ngp296 10 43 26.86 -00 56 59.2 1
|
||||
ngp297 10 48 32.78 -00 56 59.2 1
|
||||
ngp298 10 52 19.35 -00 56 59.2 1
|
||||
ngp299 10 57 20.49 -00 56 59.2 1
|
||||
ngp300 11 02 22.84 -00 56 59.2 1
|
||||
ngp301 11 06 34.05 -00 56 59.2 1
|
||||
ngp302 11 10 49.14 -00 56 59.2 1
|
||||
ngp303 11 13 48.65 -00 56 59.2 1
|
||||
ngp304 11 17 52.30 -00 56 59.2 1
|
||||
ngp305 11 22 35.44 -00 56 59.2 1
|
||||
ngp306 11 28 08.07 -00 56 59.2 1
|
||||
ngp307 11 33 13.45 -00 56 59.2 1
|
||||
ngp308 11 37 41.43 -00 56 59.2 1
|
||||
ngp309 11 42 37.65 -00 56 59.2 1
|
||||
ngp310 11 44 27.93 -00 56 59.2 1
|
||||
ngp311 11 49 15.67 -00 56 59.2 1
|
||||
ngp312 11 53 25.11 -00 56 59.2 1
|
||||
ngp313 11 55 57.18 -00 56 59.2 1
|
||||
ngp314 12 02 32.13 -00 56 59.2 1
|
||||
ngp315 11 59 14.36 +00 24 00.8 1
|
||||
ngp316 12 04 13.85 +00 24 00.8 1
|
||||
ngp317 12 09 36.86 +00 24 00.8 1
|
||||
ngp318 12 14 39.71 +00 24 00.8 1
|
||||
ngp319 12 18 37.94 +00 24 00.8 1
|
||||
ngp320 12 25 03.82 +00 24 00.8 1
|
||||
ngp321 12 31 00.64 +00 24 00.8 1
|
||||
ngp322 12 35 03.14 +00 24 00.8 1
|
||||
ngp323 12 40 28.02 +00 24 00.8 1
|
||||
ngp324 12 44 45.82 +00 24 00.8 1
|
||||
ngp325 12 48 13.55 +00 24 00.8 1
|
||||
ngp326 12 54 13.38 +00 24 00.8 1
|
||||
ngp327 12 59 00.33 +00 24 00.8 1
|
||||
ngp328 13 03 18.78 +00 24 00.8 1
|
||||
ngp329 13 08 53.23 +00 24 00.8 1
|
||||
ngp330 13 12 36.93 +00 24 00.8 1
|
||||
ngp331 13 18 06.60 +00 24 00.8 1
|
||||
ngp332 13 21 41.88 +00 24 00.8 1
|
||||
ngp333 13 27 16.07 +00 24 00.8 1
|
||||
ngp334 13 30 54.53 +00 24 00.8 1
|
||||
ngp335 13 37 16.38 +00 24 00.8 1
|
||||
ngp336 13 41 03.02 +00 24 00.8 1
|
||||
ngp337 13 47 19.09 +00 24 00.8 1
|
||||
ngp338 13 52 31.88 +00 24 00.8 1
|
||||
ngp339 13 57 24.14 +00 24 00.8 1
|
||||
ngp340 14 02 22.44 +00 24 00.8 1
|
||||
ngp341 14 07 54.94 +00 24 00.8 1
|
||||
ngp342 14 11 32.25 +00 24 00.8 1
|
||||
ngp343 14 15 58.66 +00 24 00.8 1
|
||||
ngp344 14 21 50.45 +00 24 00.8 1
|
||||
ngp345 14 28 06.02 +00 24 00.8 1
|
||||
ngp346 14 32 44.10 +00 24 00.8 1
|
||||
ngp347 14 35 36.79 +00 24 00.8 1
|
||||
ngp348 14 41 32.14 +00 24 00.8 1
|
||||
ngp349 14 45 43.02 +00 24 00.8 1
|
||||
ngp350 14 52 17.96 +00 24 00.8 1
|
||||
ngp351 09 50 56.30 +00 24 00.8 1
|
||||
ngp352 09 54 49.85 +00 24 00.8 1
|
||||
ngp353 09 59 03.20 +00 24 00.8 1
|
||||
ngp354 10 02 39.01 +00 24 00.8 1
|
||||
ngp355 10 08 31.34 +00 24 00.8 1
|
||||
ngp356 10 12 04.44 +00 24 00.8 1
|
||||
ngp357 10 14 22.72 +00 24 00.8 1
|
||||
ngp358 10 19 23.28 +00 24 00.8 1
|
||||
ngp359 10 22 37.93 +00 24 00.8 1
|
||||
ngp360 10 28 46.07 +00 24 00.8 1
|
||||
ngp361 10 32 44.34 +00 24 00.8 1
|
||||
ngp362 10 37 36.46 +00 24 00.8 1
|
||||
ngp363 10 41 09.20 +00 24 00.8 1
|
||||
ngp364 10 44 28.68 +00 24 00.8 1
|
||||
ngp365 10 49 06.85 +00 24 00.8 1
|
||||
ngp366 10 52 48.48 +00 24 00.8 1
|
||||
ngp367 10 58 00.21 +00 24 00.8 1
|
||||
ngp368 11 03 19.75 +00 24 00.8 1
|
||||
ngp369 11 08 28.21 +00 24 00.8 1
|
||||
ngp370 11 11 48.46 +00 24 00.8 1
|
||||
ngp371 11 16 16.14 +00 24 00.8 1
|
||||
ngp372 11 19 48.21 +00 24 00.8 1
|
||||
ngp373 11 22 19.36 +00 24 00.8 1
|
||||
ngp374 11 27 22.48 +00 24 00.8 1
|
||||
ngp375 11 31 35.52 +00 24 00.8 1
|
||||
ngp376 11 36 50.80 +00 24 00.8 1
|
||||
ngp377 11 43 20.36 +00 24 00.8 1
|
||||
ngp378 11 49 14.88 +00 24 00.8 1
|
||||
ngp379 11 54 46.77 +00 24 00.8 1
|
||||
ngp380 11 56 21.40 +00 24 00.8 1
|
||||
ngp381 12 02 54.77 +00 24 00.8 1
|
||||
ngp382 12 01 08.40 +01 45 00.8 1
|
||||
ngp383 12 05 09.11 +01 45 00.8 1
|
||||
ngp384 12 09 43.32 +01 45 00.8 1
|
||||
ngp385 12 14 39.10 +01 45 00.8 1
|
||||
ngp386 12 18 50.85 +01 45 00.8 1
|
||||
ngp387 12 24 09.79 +01 45 00.8 1
|
||||
ngp388 12 29 41.36 +01 45 00.8 1
|
||||
ngp389 12 34 02.42 +01 45 00.8 1
|
||||
ngp390 12 39 00.03 +01 45 00.8 1
|
||||
ngp391 12 42 02.43 +01 45 00.8 1
|
||||
ngp392 12 47 27.01 +01 45 00.8 1
|
||||
ngp393 12 53 26.33 +01 45 00.8 1
|
||||
ngp394 12 58 17.15 +01 45 00.8 1
|
||||
ngp395 13 04 09.29 +01 45 00.8 1
|
||||
ngp396 13 09 08.38 +01 45 00.8 1
|
||||
ngp397 13 12 56.88 +01 45 00.8 1
|
||||
ngp398 13 18 02.73 +01 45 00.8 1
|
||||
ngp399 13 21 18.31 +01 45 00.8 1
|
||||
ngp400 13 26 46.30 +01 45 00.8 1
|
||||
ngp401 13 28 53.28 +01 45 00.8 1
|
||||
ngp402 13 35 03.13 +01 45 00.8 1
|
||||
ngp403 13 38 24.25 +01 45 00.8 1
|
||||
ngp404 13 44 39.49 +01 45 00.8 1
|
||||
ngp405 13 49 41.44 +01 45 00.8 1
|
||||
ngp406 13 54 24.49 +01 45 00.8 1
|
||||
ngp407 13 59 10.86 +01 45 00.8 1
|
||||
ngp408 14 03 40.58 +01 45 00.8 1
|
||||
ngp409 14 08 39.92 +01 45 00.8 1
|
||||
ngp410 14 12 05.88 +01 45 00.8 1
|
||||
ngp411 14 15 39.25 +01 45 00.8 1
|
||||
ngp412 14 21 02.68 +01 45 00.8 1
|
||||
ngp413 14 27 20.80 +01 45 00.8 1
|
||||
ngp414 14 31 05.70 +01 45 00.8 1
|
||||
ngp415 14 35 29.46 +01 45 00.8 1
|
||||
ngp416 14 41 08.77 +01 45 00.8 1
|
||||
ngp417 14 46 02.11 +01 45 00.8 1
|
||||
ngp418 14 52 37.31 +01 45 00.8 1
|
||||
ngp419 09 51 34.56 +01 45 00.8 1
|
||||
ngp420 09 56 50.55 +01 45 00.8 1
|
||||
ngp421 10 02 30.97 +01 45 00.8 1
|
||||
ngp422 10 08 13.05 +01 45 00.8 1
|
||||
ngp423 10 13 41.38 +01 45 00.8 1
|
||||
ngp424 10 18 31.56 +01 45 00.8 1
|
||||
ngp425 10 21 21.92 +01 45 00.8 1
|
||||
ngp426 10 26 25.53 +01 45 00.8 1
|
||||
ngp427 10 31 02.28 +01 45 00.8 1
|
||||
ngp428 10 34 06.34 +01 45 00.8 1
|
||||
ngp429 10 37 24.63 +01 45 00.8 1
|
||||
ngp430 10 39 55.07 +01 45 00.8 1
|
||||
ngp431 10 42 55.70 +01 45 00.8 1
|
||||
ngp432 10 47 30.75 +01 45 00.8 1
|
||||
ngp433 10 52 20.41 +01 45 00.8 1
|
||||
ngp434 10 56 16.09 +01 45 00.8 1
|
||||
ngp435 11 01 31.45 +01 45 00.8 1
|
||||
ngp436 11 04 39.05 +01 45 00.8 1
|
||||
ngp437 11 08 48.13 +01 45 00.8 1
|
||||
ngp438 11 11 21.14 +01 45 00.8 1
|
||||
ngp439 11 14 26.30 +01 45 00.8 1
|
||||
ngp440 11 18 33.58 +01 45 00.8 1
|
||||
ngp441 11 20 28.09 +01 45 00.8 1
|
||||
ngp442 11 24 26.46 +01 45 00.8 1
|
||||
ngp443 11 27 55.27 +01 45 00.8 1
|
||||
ngp444 11 31 30.76 +01 45 00.8 1
|
||||
ngp445 11 35 37.61 +01 45 00.8 1
|
||||
ngp446 11 40 26.64 +01 45 00.8 1
|
||||
ngp447 11 46 58.14 +01 45 00.8 1
|
||||
ngp448 11 52 33.43 +01 45 00.8 1
|
||||
ngp449 11 55 16.51 +01 45 00.8 1
|
||||
ngp450 12 01 48.31 +01 45 00.8 1
|
20
masks/2qz10k/ngp_ukstfld.lims.txt
Normal file
20
masks/2qz10k/ngp_ukstfld.lims.txt
Normal file
|
@ -0,0 +1,20 @@
|
|||
rectangle
|
||||
unit r
|
||||
# 2dF QSO Redshift Survey: UKST field limits for the NGP
|
||||
# RA/Dec in radians, B1950, original APM coord. system
|
||||
# RA_min RA_max Dec_min Dec_max UKST_field
|
||||
2.572862 2.660129 -0.047837 0.039429 853
|
||||
2.660129 2.746899 -0.047563 0.039704 854
|
||||
2.746899 2.833492 -0.047460 0.039806 855
|
||||
2.833492 2.922396 -0.047173 0.040093 856
|
||||
2.922396 3.008734 -0.047429 0.039838 857
|
||||
3.008734 3.094838 -0.047418 0.039849 858
|
||||
3.094838 3.183894 -0.046993 0.040274 859
|
||||
3.183894 3.271190 -0.046882 0.040384 860
|
||||
3.271190 3.358087 -0.043601 0.043665 861
|
||||
3.358087 3.444664 -0.047602 0.039664 862
|
||||
3.444664 3.532911 -0.046812 0.040454 863
|
||||
3.532911 3.619867 -0.046961 0.040306 864
|
||||
3.619867 3.707045 -0.047379 0.039888 865
|
||||
3.707045 3.794893 -0.046637 0.040630 866
|
||||
3.794893 3.882256 -0.046700 0.040566 867
|
BIN
masks/2qz10k/sgc_obscomp.dat
Normal file
BIN
masks/2qz10k/sgc_obscomp.dat
Normal file
Binary file not shown.
100
masks/2qz10k/sgp.used.rahole.txt
Normal file
100
masks/2qz10k/sgp.used.rahole.txt
Normal file
|
@ -0,0 +1,100 @@
|
|||
vertices 0 4
|
||||
unit r
|
||||
# RA3 dec3 RA4 dec4 RA2 dec2 RA1 dec1 plate hole field
|
||||
#
|
||||
5.6905181118 -0.5412333834 5.6904242913 -0.5459827409 5.6960030793 -0.5460561728 5.6960810749 -0.5413064332 1 1 f466
|
||||
5.7272294404 -0.5370335034 5.7272364581 -0.5402005034 5.7309431532 -0.5401916086 5.7309291782 -0.5370246519 1 2 f466
|
||||
5.7481421835 -0.4985852798 5.7482069217 -0.5033349971 5.7529238665 -0.5032798714 5.7528466995 -0.4985304721 1 3 f466
|
||||
5.7055193983 -0.4900930826 5.7054878899 -0.4932599005 5.7083747064 -0.4932808503 5.7084012201 -0.4901139659 1 4 f466
|
||||
r 5.8065073127 -0.4920358947 5.8065563319 -0.4860193037 5.8129875999 -0.4860522207 5.8129596740 -0.4920690303 2 2 f467
|
||||
r 5.7887907041 -0.5004023831 5.7888593965 -0.4966032144 5.7931713744 -0.4966603688 5.7931117514 -0.5004597824 2 3 f467
|
||||
r 5.9577735267 -0.4872297296 5.9577062534 -0.4840637136 5.9605610665 -0.4840138262 5.9606332287 -0.4871796673 3 1 f468
|
||||
r 5.9177293050 -0.4815407234 5.9177299276 -0.4799655872 5.9305509912 -0.4799655902 5.9305610268 -0.4815111061 3 2 f468
|
||||
r 5.9180812662 -0.5014938281 5.9180824772 -0.4964264087 5.9238319198 -0.4964211214 5.9238468643 -0.5014885224 3 4 f468
|
||||
r 5.9148250479 -0.5078247178 5.9148322821 -0.5043408851 5.9184415023 -0.5043443431 5.9184413243 -0.5078281948 3 5 f468
|
||||
r 5.9308134535 -0.5188822307 5.9307912927 -0.5157151892 5.9340604326 -0.5156959462 5.9340885165 -0.5188629218 3 6 f468
|
||||
r 5.9698530513 -0.5221497817 5.9697411975 -0.5183515986 5.9713179398 -0.5183162463 5.9713179412 -0.5221169040 3 7 f468
|
||||
r 5.8925237790 -0.5241467951 5.8925713322 -0.5209802392 5.8951215645 -0.5210079215 5.8950786724 -0.5241745820 3 8 f468
|
||||
r 5.9217576961 -0.5417148270 5.9217506138 -0.5379142641 5.9257982076 -0.5379056758 5.9258144427 -0.5417062068 3 9 f468
|
||||
r 5.9046437982 -0.5594085051 5.9046791069 -0.5552914613 5.9095128232 -0.5553162016 5.9094897198 -0.5594333736 3 10 f468
|
||||
r 5.8940870279 -0.5672319588 5.8941448995 -0.5634369710 5.8986290048 -0.5634807411 5.8985822536 -0.5672319652 3 11 f468
|
||||
r 5.8809751348 -0.5672319308 5.8810014183 -0.5661088888 5.8884868083 -0.5662197232 5.8884678164 -0.5672319494 3 12 f468
|
||||
r 6.0288527339 -0.4801984444 6.0288518154 -0.4799655899 6.0320570491 -0.4799655918 6.0320583023 -0.4801862047 4 1 f469
|
||||
r 6.0508390283 -0.4964921153 6.0507880676 -0.4933260002 6.0536575105 -0.4932879410 6.0537134684 -0.4964539186 4 2 f469
|
||||
r 6.0445328928 -0.5092304423 6.0444920089 -0.5060640736 6.0477431315 -0.5060295493 6.0477898060 -0.5091957923 4 3 f469
|
||||
r 6.0549110967 -0.5220877651 6.0548504164 -0.5189218613 6.0581250866 -0.5188723394 6.0581917277 -0.5220380619 4 4 f469
|
||||
r 6.0309248416 -0.5362430655 6.0308084970 -0.5147094109 6.0529514689 -0.5145149597 6.0533459149 -0.5360436961 4 5 f469
|
||||
r 6.0137666950 -0.5099639846 6.0137819392 -0.5064805758 6.0170340824 -0.5064893789 6.0170252202 -0.5099728223 4 6 f469
|
||||
r 5.9854070268 -0.5331267078 5.9858850884 -0.5100166424 6.0137653031 -0.5102806582 6.0136609019 -0.5333978176 4 7 f469
|
||||
r 5.9714500745 -0.5217811202 5.9714500762 -0.5189310147 5.9733268241 -0.5189711419 5.9732477651 -0.5218195880 4 8 f469
|
||||
r 5.9896891592 -0.5588412196 5.9897816029 -0.5540922718 5.9953544404 -0.5541625480 5.9952782030 -0.5589118883 4 9 f469
|
||||
r 6.1641557097 -0.4870750960 6.1640922907 -0.4835928807 6.1669650453 -0.4835490236 6.1670338744 -0.4870310456 5 1 f470
|
||||
r 6.1220574447 -0.4863588133 6.1220804107 -0.4812920049 6.1263848951 -0.4813033828 6.1263737089 -0.4863702118 5 2 f470
|
||||
r 6.1166787461 -0.4841165170 6.1167022553 -0.4809498181 6.1192127203 -0.4809632845 6.1191934929 -0.4841300153 5 3 f470
|
||||
r 6.1130981961 -0.4828258235 6.1131249133 -0.4799655906 6.1163510742 -0.4799655889 6.1163291541 -0.4828476874 5 4 f470
|
||||
r 6.0918740807 -0.5018881693 6.0919348527 -0.4990389034 6.0944698469 -0.4990796433 6.0944130857 -0.5019290269 5 6 f470
|
||||
r 6.0831366497 -0.5029929938 6.0832196350 -0.4998276706 6.0857555239 -0.4998780121 6.0856770016 -0.5030435009 5 7 f470
|
||||
r 6.1659672038 -0.5415119372 6.1659129625 -0.5389795357 6.1688771167 -0.5389315168 6.1689358220 -0.5414637616 5 8 f470
|
||||
r 6.1705782085 -0.5629680523 6.1705144358 -0.5604359148 6.1721074237 -0.5604073580 6.1721074113 -0.5629406141 5 9 f470
|
||||
r 6.2241431842 -0.4923717933 6.2241461732 -0.4898381789 6.2270055014 -0.4898389671 6.2270064723 -0.4923725769 6 2 f471
|
||||
r 6.2194630414 -0.4996475263 6.2194903503 -0.4923629374 6.2273644170 -0.4923724248 6.2273687723 -0.4996570375 6 3 f471
|
||||
r 6.2273820107 -0.5199269301 6.2273798319 -0.5167597732 6.2313708840 -0.5167541907 6.2313803085 -0.5199213153 6 6 f471
|
||||
r 6.2174707564 -0.5392308948 6.2174853053 -0.5363804650 6.2200542053 -0.5363886445 6.2200439972 -0.5392390946 6 7 f471
|
||||
r 6.2486947479 -0.5644734533 6.2486370619 -0.5603567133 6.2522771840 -0.5603182125 6.2522771765 -0.5644355132 6 9 f471
|
||||
r 6.1847936831 -0.5670662194 6.1848988129 -0.5629504911 6.1908645445 -0.5630491969 6.1907746640 -0.5671653845 6 10 f471
|
||||
r 6.1722178895 -0.5630061375 6.1722178742 -0.5601555880 6.1726801285 -0.5601663325 6.1725862784 -0.5630147055 6 11 f471
|
||||
r 0.0375699995 -0.4919402963 0.0374989829 -0.4881414508 0.0410728989 -0.4880856613 0.0411513195 -0.4918842559 7 2 f409
|
||||
r 0.0275877616 -0.4955504173 0.0275286572 -0.4911177634 0.0321826072 -0.4910641347 0.0322530327 -0.4954965026 7 3 f409
|
||||
r 0.0035417876 -0.5020119480 0.0035412838 -0.4991619200 0.0067778694 -0.4991592737 0.0067835002 -0.5020092862 7 4 f409
|
||||
r -0.0065745842 -0.5076910349 -0.0065606961 -0.5051577180 -0.0036741381 -0.5051682167 -0.0036839206 -0.5077015585 7 5 f409
|
||||
r -0.0103836103 -0.5330054680 -0.0102310198 -0.5133726398 0.0136940520 -0.5133884138 0.0138143327 -0.5330212475 7 6 f409
|
||||
r -0.0153929422 -0.5215701812 -0.0153525138 -0.5177704189 -0.0113551467 -0.5177992121 -0.0113868469 -0.5215990892 7 7 f409
|
||||
r 0.0140663649 -0.5149700327 0.0140526571 -0.5127534262 0.0173138934 -0.5127358322 0.0173317117 -0.5149523886 7 8 f409
|
||||
r -0.0308436575 -0.5641452132 -0.0308436664 -0.5600283515 -0.0292378891 -0.5600514778 -0.0293200376 -0.5641671741 7 9 f409
|
||||
r 0.0798173604 -0.5130345092 0.0798711197 -0.5082853184 0.0856645283 -0.5083284102 0.0856263392 -0.5130778442 8 2 f410
|
||||
r 0.1110420837 -0.5130952297 0.1110260691 -0.5105621290 0.1139264945 -0.5105463092 0.1139466727 -0.5130793660 8 3 f410
|
||||
r 0.1121600836 -0.5172059729 0.1121445604 -0.5149895237 0.1146887960 -0.5149746109 0.1147075384 -0.5171910238 8 4 f410
|
||||
r 0.1348288466 -0.5223569933 0.1347715994 -0.5195080142 0.1380507113 -0.5194560670 0.1381133332 -0.5223048782 8 5 f410
|
||||
r 0.0879217621 -0.5485552004 0.0879514257 -0.5444389634 0.0923887563 -0.5444577574 0.0923700894 -0.5485740904 8 6 f410
|
||||
r 0.0577149092 -0.5554827221 0.0577962388 -0.5523177332 0.0611394764 -0.5523764276 0.0610645915 -0.5555416382 8 7 f410
|
||||
r 0.2392313213 -0.5221708834 0.2390427434 -0.5136234150 0.2503511295 -0.5134072179 0.2505950734 -0.5219525554 9 1 f411
|
||||
r 0.2178893917 -0.5512482382 0.2178596282 -0.5483982461 0.2212110610 -0.5483707885 0.2212466040 -0.5512206892 9 2 f411
|
||||
r 0.2646513742 -0.5213236960 0.2647002123 -0.5191076316 0.2668903738 -0.5191431122 0.2668443240 -0.5213592652 10 2 f412
|
||||
r 0.2604599371 -0.5573537726 0.2605338982 -0.5545048091 0.2635157812 -0.5545579182 0.2634470116 -0.5574070565 10 3 f412
|
||||
r 0.3045184846 -0.5434961485 0.3045164515 -0.5412793036 0.3067355466 -0.5412768736 0.3067405187 -0.5434937102 10 4 f412
|
||||
r 0.4510263399 -0.4828191481 0.4509675851 -0.4806036146 0.4517865768 -0.4805859897 0.4517865929 -0.4828027757 11 1 f413
|
||||
r 0.4001846151 -0.5194482066 0.4001870081 -0.5165980026 0.4031034983 -0.5165980755 0.4031058659 -0.5194482794 11 2 f413
|
||||
r 0.4071517158 -0.5286262629 0.4071375789 -0.5241926437 0.4118975552 -0.5241765120 0.4119239600 -0.5286100478 11 3 f413
|
||||
r 0.4034800250 -0.5279986374 0.4034770029 -0.5251484344 0.4060415088 -0.5251450350 0.4060487793 -0.5279952265 11 4 f413
|
||||
r 0.3876878456 -0.5295401847 0.3877135675 -0.5263734442 0.3910130850 -0.5263910998 0.3909934510 -0.5295579048 11 5 f413
|
||||
r 0.3880095513 -0.5352425327 0.3880425063 -0.5311257614 0.3924541051 -0.5311476733 0.3924318312 -0.5352645490 11 6 f413
|
||||
r 0.3688790621 -0.5334661414 0.3689277171 -0.5309333083 0.3715005835 -0.5309684420 0.3714557509 -0.5335013783 11 7 f413
|
||||
r 0.3534189437 -0.5461786744 0.3534830084 -0.5439631521 0.3553347020 -0.5440011236 0.3552730955 -0.5462167443 11 8 f413
|
||||
r 0.3563391008 -0.5614393526 0.3564096908 -0.5589071634 0.3586520122 -0.5589500833 0.3585849153 -0.5614824007 11 9 f413
|
||||
r 0.4027689879 -0.5625182299 0.4027674617 -0.5603014042 0.4053863829 -0.5602987086 0.4053914921 -0.5625155270 11 10 f413
|
||||
r 0.5287020431 -0.5195210737 0.5285900747 -0.5122379974 0.5373173701 -0.5121196640 0.5374656341 -0.5194017397 12 1 f414
|
||||
r 0.5218222808 -0.5246587913 0.5217708566 -0.5202252654 0.5265200638 -0.5201790188 0.5265836440 -0.5246123056 12 2 f414
|
||||
r 0.5167443225 -0.5303983435 0.5167027195 -0.5256479353 0.5214668925 -0.5256120038 0.5215216914 -0.5303622116 12 3 f414
|
||||
r 0.5475837166 -0.4869181945 0.5475208736 -0.4843859371 0.5503849992 -0.4843272712 0.5504517633 -0.4868593597 12 4 f414
|
||||
r 0.4518577161 -0.4833518722 0.4518577377 -0.4805014234 0.4537825927 -0.4805422250 0.4537090983 -0.4833911513 12 5 f414
|
||||
r 0.4738646056 -0.5454816003 0.4739067809 -0.5429483938 0.4768685050 -0.5429822026 0.4768308248 -0.5455155084 12 6 f414
|
||||
r 0.4656396365 -0.5485347878 0.4656945680 -0.5460019174 0.4682906127 -0.5460410040 0.4682396404 -0.5485739897 12 7 f414
|
||||
r 0.4971670595 -0.5671816544 0.4971750313 -0.5643313980 0.5005509098 -0.5643355425 0.5005489240 -0.5671858120 12 8 f414
|
||||
r 0.5671390781 -0.5428723118 0.5672506021 -0.5374899872 0.5735397696 -0.5375763677 0.5734483972 -0.5429592364 13 1 f415
|
||||
r 0.6370569531 -0.5492053356 0.6369769120 -0.5454060535 0.6410652292 -0.5453405226 0.6411546230 -0.5491395130 13 2 f415
|
||||
0.7293228242 -0.4887865186 0.7293920128 -0.4935361938 0.7348104918 -0.4934670706 0.7347272708 -0.4887177676 14 1 f416
|
||||
0.6589376460 -0.4935924185 0.6588076076 -0.4989737969 0.6646043810 -0.4990768589 0.6647172659 -0.4936948538 14 2 f416
|
||||
0.7140899300 -0.5300831919 0.7141153709 -0.5338834744 0.7189207286 -0.5338546304 0.7188845928 -0.5300544755 14 3 f416
|
||||
0.6766660218 -0.5169797932 0.6761164723 -0.5524441498 0.6951794169 -0.5525849658 0.6953347196 -0.5171149594 14 4 f416
|
||||
0.6695371290 -0.5260726096 0.6694575348 -0.5301885886 0.6742521911 -0.5302527313 0.6743203092 -0.5261364487 14 5 f416
|
||||
0.7382660405 -0.5396544803 0.7383467436 -0.5434536633 0.7431785942 -0.5433738381 0.7430869708 -0.5395750087 14 6 f416
|
||||
r 0.8331173418 -0.4863572528 0.8330749838 -0.4838242932 0.8359461226 -0.4837840184 0.8359924112 -0.4863168638 15 1 f417
|
||||
r 0.8086903592 -0.4909897828 0.8086791144 -0.4878226412 0.8119166215 -0.4878112066 0.8119334548 -0.4909783086 15 2 f417
|
||||
r 0.7812462733 -0.4959716005 0.7812862639 -0.4924881205 0.7852532167 -0.4925206007 0.7852208211 -0.4960042114 15 3 f417
|
||||
r 0.7705181769 -0.5101011631 0.7705745746 -0.5069348886 0.7738460935 -0.5069773899 0.7737955298 -0.5101438201 15 4 f417
|
||||
r 0.7621315298 -0.5264395408 0.7621976152 -0.5235903179 0.7655001995 -0.5236452208 0.7654395653 -0.5264946260 15 5 f417
|
||||
r 0.7679790215 -0.5464863667 0.7683489331 -0.5281226800 0.7874835959 -0.5283239777 0.7873227475 -0.5466920615 15 6 f417
|
||||
r 0.8099605372 -0.5343750268 0.8099489831 -0.5318413985 0.8125303995 -0.5318312359 0.8125457986 -0.5343648352 15 8 f417
|
||||
r 0.8345349270 -0.5252930196 0.8344934694 -0.5230766278 0.8370614559 -0.5230391731 0.8371062057 -0.5252554698 15 9 f417
|
||||
r 0.8456453211 -0.5431628164 0.8455797157 -0.5406303459 0.8485446663 -0.5405726000 0.8486147477 -0.5431049007 15 10 f417
|
||||
r 0.8230175871 -0.5146578801 0.8229061445 -0.5051576013 0.8341635907 -0.5050287853 0.8343355162 -0.5145276713 15 11 f417
|
308
masks/2qz10k/sgp_field_coords.txt
Normal file
308
masks/2qz10k/sgp_field_coords.txt
Normal file
|
@ -0,0 +1,308 @@
|
|||
circle
|
||||
unit h
|
||||
skip 6
|
||||
coordinates (B1950) radius
|
||||
Field hh mm ss.ss dd mm ss.s d
|
||||
sgp169 21 39 59.38 -27 42 00.1 1
|
||||
sgp170 21 45 51.51 -27 42 00.1 1
|
||||
sgp171 21 51 06.63 -27 42 00.1 1
|
||||
sgp172 21 55 33.73 -27 42 00.1 1
|
||||
sgp173 22 00 42.89 -27 42 00.1 1
|
||||
sgp174 22 04 23.13 -27 42 00.1 1
|
||||
sgp175 22 07 35.52 -27 42 00.1 1
|
||||
sgp176 22 11 13.48 -27 42 00.1 1
|
||||
sgp177 22 14 35.80 -27 42 00.1 1
|
||||
sgp178 22 17 27.06 -27 42 00.1 1
|
||||
sgp179 22 23 19.19 -27 42 00.1 1
|
||||
sgp180 22 29 11.32 -27 42 00.1 1
|
||||
sgp181 22 34 59.97 -27 42 00.1 1
|
||||
sgp182 22 40 48.84 -27 42 00.1 1
|
||||
sgp183 22 46 36.31 -27 42 00.1 1
|
||||
sgp184 22 51 35.43 -27 42 00.1 1
|
||||
sgp185 22 56 23.52 -27 42 00.1 1
|
||||
sgp186 23 00 57.28 -27 42 00.1 1
|
||||
sgp187 23 06 44.41 -27 42 00.1 1
|
||||
sgp188 23 11 31.95 -27 42 00.1 1
|
||||
sgp189 23 15 33.85 -27 42 00.1 1
|
||||
sgp190 23 19 16.20 -27 42 00.1 1
|
||||
sgp191 23 25 01.63 -27 42 00.1 1
|
||||
sgp192 23 30 39.45 -27 42 00.1 1
|
||||
sgp193 23 36 27.48 -27 42 00.1 1
|
||||
sgp194 23 41 41.02 -27 42 00.1 1
|
||||
sgp195 23 45 11.59 -27 42 00.1 1
|
||||
sgp196 23 48 32.09 -27 42 00.1 1
|
||||
sgp197 23 52 05.57 -27 42 00.1 1
|
||||
sgp198 23 56 40.05 -27 42 00.1 1
|
||||
sgp199 00 00 24.00 -27 42 00.1 1
|
||||
sgp200 00 02 40.46 -27 42 00.1 1
|
||||
sgp201 00 07 25.53 -27 42 00.1 1
|
||||
sgp202 00 12 28.60 -27 42 00.1 1
|
||||
sgp203 00 16 23.42 -27 42 00.1 1
|
||||
sgp204 00 21 02.87 -27 42 00.1 1
|
||||
sgp205 00 25 54.70 -27 42 00.1 1
|
||||
sgp206 00 31 31.26 -27 42 00.1 1
|
||||
sgp207 00 36 01.71 -27 42 00.1 1
|
||||
sgp208 00 39 26.41 -27 42 00.1 1
|
||||
sgp209 00 44 05.41 -27 42 00.1 1
|
||||
sgp210 00 49 42.81 -27 42 00.1 1
|
||||
sgp211 00 55 26.34 -27 42 00.1 1
|
||||
sgp212 00 59 52.91 -27 42 00.1 1
|
||||
sgp213 01 05 38.36 -27 42 00.1 1
|
||||
sgp214 01 11 03.45 -27 42 00.1 1
|
||||
sgp215 01 15 49.68 -27 42 00.1 1
|
||||
sgp216 01 20 42.55 -27 42 00.1 1
|
||||
sgp217 01 25 20.57 -27 42 00.1 1
|
||||
sgp218 01 30 13.25 -27 42 00.1 1
|
||||
sgp219 01 33 56.42 -27 42 00.1 1
|
||||
sgp220 01 38 06.16 -27 42 00.1 1
|
||||
sgp221 01 43 46.00 -27 42 00.1 1
|
||||
sgp222 01 48 42.67 -27 42 00.1 1
|
||||
sgp223 01 53 02.75 -27 42 00.1 1
|
||||
sgp224 01 57 49.07 -27 42 00.1 1
|
||||
sgp225 02 01 50.39 -27 42 00.1 1
|
||||
sgp226 02 05 57.48 -27 42 00.1 1
|
||||
sgp227 02 10 00.90 -27 42 00.1 1
|
||||
sgp228 02 13 28.61 -27 42 00.1 1
|
||||
sgp229 02 17 50.74 -27 42 00.1 1
|
||||
sgp230 02 22 50.26 -27 42 00.1 1
|
||||
sgp231 02 27 35.50 -27 42 00.1 1
|
||||
sgp232 02 32 27.78 -27 42 00.1 1
|
||||
sgp233 02 36 37.24 -27 42 00.1 1
|
||||
sgp234 02 40 42.55 -27 42 00.1 1
|
||||
sgp235 02 45 07.65 -27 42 00.1 1
|
||||
sgp236 02 49 43.96 -27 42 00.1 1
|
||||
sgp237 02 55 32.57 -27 42 00.1 1
|
||||
sgp238 03 01 21.22 -27 42 00.1 1
|
||||
sgp239 03 07 10.09 -27 42 00.1 1
|
||||
sgp240 03 12 15.68 -27 42 00.1 1
|
||||
sgp241 03 15 56.63 -27 42 00.1 1
|
||||
sgp242 03 20 48.42 -27 42 00.1 1
|
||||
sgp243 03 26 28.50 -27 42 00.1 1
|
||||
sgp244 03 32 20.62 -27 42 00.1 1
|
||||
sgp245 03 38 12.75 -27 42 00.1 1
|
||||
sgp246 21 40 21.65 -29 12 00.1 1
|
||||
sgp247 21 44 58.09 -29 12 00.1 1
|
||||
sgp248 21 49 04.66 -29 12 00.1 1
|
||||
sgp249 21 53 55.16 -29 12 00.1 1
|
||||
sgp250 21 58 36.39 -29 12 00.1 1
|
||||
sgp251 22 02 53.42 -29 12 00.1 1
|
||||
sgp252 22 05 57.68 -29 12 00.1 1
|
||||
sgp253 22 09 46.30 -29 12 00.1 1
|
||||
sgp254 22 14 26.39 -29 12 00.1 1
|
||||
sgp255 22 18 27.27 -29 12 00.1 1
|
||||
sgp256 22 23 13.65 -29 12 00.1 1
|
||||
sgp257 22 28 37.48 -29 12 00.1 1
|
||||
sgp258 22 34 28.98 -29 12 00.1 1
|
||||
sgp259 22 40 13.66 -29 12 00.1 1
|
||||
sgp260 22 45 25.98 -29 12 00.1 1
|
||||
sgp261 22 47 39.98 -29 12 00.1 1
|
||||
sgp262 22 53 27.32 -29 12 00.1 1
|
||||
sgp263 22 59 08.19 -29 12 00.1 1
|
||||
sgp264 23 04 19.93 -29 12 00.1 1
|
||||
sgp265 23 08 45.60 -29 12 00.1 1
|
||||
sgp266 23 11 53.90 -29 12 00.1 1
|
||||
sgp267 23 16 17.93 -29 12 00.1 1
|
||||
sgp268 23 21 13.36 -29 12 00.1 1
|
||||
sgp269 23 25 03.21 -29 12 00.1 1
|
||||
sgp270 23 30 43.52 -29 12 00.1 1
|
||||
sgp271 23 35 48.57 -29 12 00.1 1
|
||||
sgp272 23 39 45.96 -29 12 00.1 1
|
||||
sgp273 23 42 49.84 -29 12 00.1 1
|
||||
sgp274 23 47 11.52 -29 12 00.1 1
|
||||
sgp275 23 51 14.57 -29 12 00.1 1
|
||||
sgp276 23 54 44.43 -29 12 00.1 1
|
||||
sgp277 00 00 38.15 -29 12 00.1 1
|
||||
sgp278 00 05 43.12 -29 12 00.1 1
|
||||
sgp279 00 10 28.20 -29 12 00.1 1
|
||||
sgp280 00 14 08.80 -29 12 00.1 1
|
||||
sgp281 00 18 53.19 -29 12 00.1 1
|
||||
sgp282 00 23 29.42 -29 12 00.1 1
|
||||
sgp283 00 27 58.67 -29 12 00.1 1
|
||||
sgp284 00 32 30.92 -29 12 00.1 1
|
||||
sgp285 00 36 05.55 -29 12 00.1 1
|
||||
sgp286 00 38 26.35 -29 12 00.1 1
|
||||
sgp287 00 41 26.67 -29 12 00.1 1
|
||||
sgp288 00 44 22.65 -29 12 00.1 1
|
||||
sgp289 00 48 12.78 -29 12 00.1 1
|
||||
sgp290 00 53 00.93 -29 12 00.1 1
|
||||
sgp291 00 57 30.43 -29 12 00.1 1
|
||||
sgp292 01 02 31.98 -29 12 00.1 1
|
||||
sgp293 01 06 40.33 -29 12 00.1 1
|
||||
sgp294 01 10 31.20 -29 12 00.1 1
|
||||
sgp295 01 14 34.74 -29 12 00.1 1
|
||||
sgp296 01 19 18.16 -29 12 00.1 1
|
||||
sgp297 01 23 04.08 -29 12 00.1 1
|
||||
sgp298 01 26 56.51 -29 12 00.1 1
|
||||
sgp299 01 32 08.13 -29 12 00.1 1
|
||||
sgp300 01 37 06.96 -29 12 00.1 1
|
||||
sgp301 01 42 23.06 -29 12 00.1 1
|
||||
sgp302 01 45 52.31 -29 12 00.1 1
|
||||
sgp303 01 50 42.34 -29 12 00.1 1
|
||||
sgp304 01 55 59.85 -29 12 00.1 1
|
||||
sgp305 02 01 40.84 -29 12 00.1 1
|
||||
sgp306 02 06 44.35 -29 12 00.1 1
|
||||
sgp307 02 10 57.34 -29 12 00.1 1
|
||||
sgp308 02 15 26.05 -29 12 00.1 1
|
||||
sgp309 02 18 49.39 -29 12 00.1 1
|
||||
sgp310 02 23 12.20 -29 12 00.1 1
|
||||
sgp311 02 28 26.71 -29 12 00.1 1
|
||||
sgp312 02 34 11.64 -29 12 00.1 1
|
||||
sgp313 02 39 49.92 -29 12 00.1 1
|
||||
sgp314 02 44 27.09 -29 12 00.1 1
|
||||
sgp315 02 50 10.25 -29 12 00.1 1
|
||||
sgp316 02 56 03.84 -29 12 00.1 1
|
||||
sgp317 03 01 57.59 -29 12 00.1 1
|
||||
sgp318 03 07 51.26 -29 12 00.1 1
|
||||
sgp319 03 13 05.28 -29 12 00.1 1
|
||||
sgp320 03 16 54.84 -29 12 00.1 1
|
||||
sgp321 03 22 01.78 -29 12 00.1 1
|
||||
sgp322 03 27 20.15 -29 12 00.1 1
|
||||
sgp323 03 30 19.88 -29 12 00.1 1
|
||||
sgp324 03 36 12.43 -29 12 00.1 1
|
||||
sgp325 03 42 09.59 -29 12 00.1 1
|
||||
sgp326 21 40 41.85 -30 42 00.1 1
|
||||
sgp327 21 43 50.11 -30 42 00.1 1
|
||||
sgp328 21 47 00.08 -30 42 00.1 1
|
||||
sgp329 21 51 25.58 -30 42 00.1 1
|
||||
sgp330 21 55 29.29 -30 42 00.1 1
|
||||
sgp331 22 00 22.31 -30 42 00.1 1
|
||||
sgp332 22 04 23.68 -30 42 00.1 1
|
||||
sgp333 22 06 55.30 -30 42 00.1 1
|
||||
sgp334 22 10 18.33 -30 42 00.1 1
|
||||
sgp335 22 14 51.99 -30 42 00.1 1
|
||||
sgp336 22 20 19.42 -30 42 00.1 1
|
||||
sgp337 22 24 06.57 -30 42 00.1 1
|
||||
sgp338 22 26 35.19 -30 42 00.1 1
|
||||
sgp339 22 31 30.74 -30 42 00.1 1
|
||||
sgp340 22 36 36.02 -30 42 00.1 1
|
||||
sgp341 22 42 27.69 -30 42 00.1 1
|
||||
sgp342 22 47 14.02 -30 42 00.1 1
|
||||
sgp343 22 50 21.68 -30 42 00.1 1
|
||||
sgp344 22 56 13.09 -30 42 00.1 1
|
||||
sgp345 23 02 08.23 -30 42 00.1 1
|
||||
sgp346 23 07 59.55 -30 42 00.1 1
|
||||
sgp347 23 11 57.59 -30 42 00.1 1
|
||||
sgp348 23 15 55.55 -30 42 00.1 1
|
||||
sgp349 23 21 05.52 -30 42 00.1 1
|
||||
sgp350 23 25 22.09 -30 42 00.1 1
|
||||
sgp351 23 29 25.77 -30 42 00.1 1
|
||||
sgp352 23 34 13.91 -30 42 00.1 1
|
||||
sgp353 23 37 52.99 -30 42 00.1 1
|
||||
sgp354 23 41 52.43 -30 42 00.1 1
|
||||
sgp355 23 47 01.30 -30 42 00.1 1
|
||||
sgp356 23 50 48.74 -30 42 00.1 1
|
||||
sgp357 23 55 21.77 -30 42 00.1 1
|
||||
sgp358 00 00 45.53 -30 42 00.1 1
|
||||
sgp359 00 05 02.26 -30 42 00.1 1
|
||||
sgp360 00 10 16.55 -30 42 00.1 1
|
||||
sgp361 00 14 13.61 -30 42 00.1 1
|
||||
sgp362 00 18 25.19 -30 42 00.1 1
|
||||
sgp363 00 23 05.26 -30 42 00.1 1
|
||||
sgp364 00 25 11.44 -30 42 00.1 1
|
||||
sgp365 00 30 32.21 -30 42 00.1 1
|
||||
sgp366 00 34 58.33 -30 42 00.1 1
|
||||
sgp367 00 38 20.58 -30 42 00.1 1
|
||||
sgp368 00 42 53.81 -30 42 00.1 1
|
||||
sgp369 00 48 24.66 -30 42 00.1 1
|
||||
sgp370 00 52 35.43 -30 42 00.1 1
|
||||
sgp371 00 57 03.45 -30 42 00.1 1
|
||||
sgp372 00 59 41.47 -30 42 00.1 1
|
||||
sgp373 01 03 45.97 -30 42 00.1 1
|
||||
sgp374 01 08 16.35 -30 42 00.1 1
|
||||
sgp375 01 11 18.13 -30 42 00.1 1
|
||||
sgp376 01 15 24.44 -30 42 00.1 1
|
||||
sgp377 01 20 01.69 -30 42 00.1 1
|
||||
sgp378 01 23 33.26 -30 42 00.1 1
|
||||
sgp379 01 28 08.03 -30 42 00.1 1
|
||||
sgp380 01 33 26.47 -30 42 00.1 1
|
||||
sgp381 01 38 37.09 -30 42 00.1 1
|
||||
sgp382 01 44 04.51 -30 42 00.1 1
|
||||
sgp383 01 48 29.95 -30 42 00.1 1
|
||||
sgp384 01 53 56.23 -30 42 00.1 1
|
||||
sgp385 01 59 22.02 -30 42 00.1 1
|
||||
sgp386 02 05 11.72 -30 42 00.1 1
|
||||
sgp387 02 09 44.32 -30 42 00.1 1
|
||||
sgp388 02 14 10.15 -30 42 00.1 1
|
||||
sgp389 02 18 24.97 -30 42 00.1 1
|
||||
sgp390 02 23 58.25 -30 42 00.1 1
|
||||
sgp391 02 29 57.52 -30 42 00.1 1
|
||||
sgp392 02 36 00.11 -30 42 00.1 1
|
||||
sgp393 02 42 00.23 -30 42 00.1 1
|
||||
sgp394 02 48 02.82 -30 42 00.1 1
|
||||
sgp395 02 54 01.87 -30 42 00.1 1
|
||||
sgp396 03 00 02.55 -30 42 00.1 1
|
||||
sgp397 03 06 02.12 -30 42 00.1 1
|
||||
sgp398 03 11 44.59 -30 42 00.1 1
|
||||
sgp399 03 17 06.64 -30 42 00.1 1
|
||||
sgp400 03 23 06.32 -30 42 00.1 1
|
||||
sgp401 03 29 05.55 -30 42 00.1 1
|
||||
sgp402 03 32 56.50 -30 42 00.1 1
|
||||
sgp403 03 38 59.09 -30 42 00.1 1
|
||||
sgp404 21 40 20.04 -32 12 00.1 1
|
||||
sgp405 21 45 46.23 -32 12 00.1 1
|
||||
sgp406 21 51 08.22 -32 12 00.1 1
|
||||
sgp407 21 55 14.11 -32 12 00.1 1
|
||||
sgp408 22 00 56.17 -32 12 00.1 1
|
||||
sgp409 22 06 41.59 -32 12 00.1 1
|
||||
sgp410 22 12 15.49 -32 12 00.1 1
|
||||
sgp411 22 18 14.86 -32 12 00.1 1
|
||||
sgp412 22 23 32.43 -32 12 00.1 1
|
||||
sgp413 22 27 58.51 -32 12 00.1 1
|
||||
sgp414 22 33 58.52 -32 12 00.1 1
|
||||
sgp415 22 39 40.04 -32 12 00.1 1
|
||||
sgp416 22 45 31.70 -32 12 00.1 1
|
||||
sgp417 22 50 01.45 -32 12 00.1 1
|
||||
sgp418 22 54 21.77 -32 12 00.1 1
|
||||
sgp419 22 58 35.08 -32 12 00.1 1
|
||||
sgp420 23 01 12.08 -32 12 00.1 1
|
||||
sgp421 23 04 46.91 -32 12 00.1 1
|
||||
sgp422 23 10 32.45 -32 12 00.1 1
|
||||
sgp423 23 16 03.31 -32 12 00.1 1
|
||||
sgp424 23 21 22.80 -32 12 00.1 1
|
||||
sgp425 23 25 06.02 -32 12 00.1 1
|
||||
sgp426 23 30 15.83 -32 12 00.1 1
|
||||
sgp427 23 33 38.59 -32 12 00.1 1
|
||||
sgp428 23 38 33.30 -32 12 00.1 1
|
||||
sgp429 23 44 33.39 -32 12 00.1 1
|
||||
sgp430 23 49 57.49 -32 12 00.1 1
|
||||
sgp431 23 53 05.34 -32 12 00.1 1
|
||||
sgp432 23 57 01.34 -32 12 00.1 1
|
||||
sgp433 00 01 01.31 -32 12 00.1 1
|
||||
sgp434 00 05 31.67 -32 12 00.1 1
|
||||
sgp435 00 11 06.87 -32 12 00.1 1
|
||||
sgp436 00 13 38.06 -32 12 00.1 1
|
||||
sgp437 00 17 09.99 -32 12 00.1 1
|
||||
sgp438 00 22 10.59 -32 12 00.1 1
|
||||
sgp439 00 27 47.43 -32 12 00.1 1
|
||||
sgp440 00 33 39.66 -32 12 00.1 1
|
||||
sgp441 00 39 28.01 -32 12 00.1 1
|
||||
sgp442 00 45 25.74 -32 12 00.1 1
|
||||
sgp443 00 51 23.40 -32 12 00.1 1
|
||||
sgp444 00 56 27.59 -32 12 00.1 1
|
||||
sgp445 00 59 49.81 -32 12 00.1 1
|
||||
sgp446 01 04 49.40 -32 12 00.1 1
|
||||
sgp447 01 09 21.69 -32 12 00.1 1
|
||||
sgp448 01 14 19.99 -32 12 00.1 1
|
||||
sgp449 01 19 34.34 -32 12 00.1 1
|
||||
sgp450 01 23 28.84 -32 12 00.1 1
|
||||
sgp451 01 26 58.59 -32 12 00.1 1
|
||||
sgp452 01 30 25.04 -32 12 00.1 1
|
||||
sgp453 01 34 33.56 -32 12 00.1 1
|
||||
sgp454 01 39 49.99 -32 12 00.1 1
|
||||
sgp455 01 44 44.33 -32 12 00.1 1
|
||||
sgp456 01 49 31.34 -32 12 00.1 1
|
||||
sgp457 01 55 03.89 -32 12 00.1 1
|
||||
sgp458 01 59 26.09 -32 12 00.1 1
|
||||
sgp459 02 04 57.47 -32 12 00.1 1
|
||||
sgp460 02 09 45.47 -32 12 00.1 1
|
||||
sgp461 02 15 11.33 -32 12 00.1 1
|
||||
sgp462 02 20 49.69 -32 12 00.1 1
|
||||
sgp463 02 26 45.14 -32 12 00.1 1
|
||||
sgp464 02 31 12.89 -32 12 00.1 1
|
||||
sgp465 02 37 17.81 -32 12 00.1 1
|
||||
sgp466 02 43 26.25 -32 12 00.1 1
|
||||
sgp467 02 49 34.69 -32 12 00.1 1
|
||||
sgp468 02 55 43.14 -32 12 00.1 1
|
||||
sgp469 03 01 51.58 -32 12 00.1 1
|
||||
sgp470 03 08 00.02 -32 12 00.1 1
|
||||
sgp471 03 14 08.47 -32 12 00.1 1
|
20
masks/2qz10k/sgp_ukstfld.lims.txt
Normal file
20
masks/2qz10k/sgp_ukstfld.lims.txt
Normal file
|
@ -0,0 +1,20 @@
|
|||
rectangle
|
||||
unit r
|
||||
# 2dF QSO Redshift Survey: UKST field limits for the SGP
|
||||
# RA/Dec in radians, B1950, original APM coord. system
|
||||
# RA_min RA_max Dec_min Dec_max UKST_field
|
||||
6.252329 0.050383 -0.567232 -0.479966 409
|
||||
0.050383 0.150740 -0.567232 -0.479966 410
|
||||
0.150740 0.251096 -0.567232 -0.479966 411
|
||||
0.251096 0.351453 -0.567232 -0.479966 412
|
||||
0.351453 0.451809 -0.567232 -0.479966 413
|
||||
0.451809 0.552166 -0.567232 -0.479966 414
|
||||
0.552166 0.652522 -0.567232 -0.479966 415
|
||||
0.652522 0.752878 -0.567232 -0.479966 416
|
||||
0.752878 0.853235 -0.567232 -0.479966 417
|
||||
5.669933 5.770699 -0.567232 -0.479966 466
|
||||
5.770699 5.871056 -0.567232 -0.479966 467
|
||||
5.871056 5.971412 -0.567232 -0.479966 468
|
||||
5.971412 6.071769 -0.567232 -0.479966 469
|
||||
6.071769 6.172126 -0.567232 -0.479966 470
|
||||
6.172126 6.252329 -0.567232 -0.479966 471
|
4
masks/allsky/README
Normal file
4
masks/allsky/README
Normal file
|
@ -0,0 +1,4 @@
|
|||
To create an allsky file pixelized to a desired resolution, do
|
||||
make_allsky.sh <r> <scheme>
|
||||
where <scheme> is the pixelization scheme and <res> is the resolution.
|
||||
EXAMPLE: make_allsky.sh 6 d
|
1
masks/allsky/args.dat
Normal file
1
masks/allsky/args.dat
Normal file
|
@ -0,0 +1 @@
|
|||
1 16 jhd rast.fits ../../bin/dat2fits_binary.x0 ../../bin/dat2fits_binary.x1 ../../bin/dat2fits_binary.x2 ../../bin/dat2fits_binary.x3 ../../bin/dat2fits_binary.x4 ../../bin/dat2fits_binary.x5 ../../bin/dat2fits_binary.x6 ../../bin/dat2fits_binary.x7 ../../bin/dat2fits_binary.x8 ../../bin/dat2fits_binary.x9 10 11 12 13 14 15 16
|
44
masks/allsky/make_allsky.sh
Executable file
44
masks/allsky/make_allsky.sh
Executable file
|
@ -0,0 +1,44 @@
|
|||
#! /bin/sh
|
||||
# © M E C Swanson 2008
|
||||
#script to generate allsky polygon files with a given pixelization
|
||||
# USAGE: make_allsky.sh <r> <scheme>
|
||||
# EXAMPLE: make_allsky.sh 6 d
|
||||
|
||||
if [ "$MANGLEBINDIR" = "" ] ; then
|
||||
MANGLEBINDIR="../../bin"
|
||||
fi
|
||||
if [ "$MANGLESCRIPTSDIR" = "" ] ; then
|
||||
MANGLESCRIPTSDIR="../../scripts"
|
||||
fi
|
||||
if [ "$MANGLEDATADIR" = "" ] ; then
|
||||
MANGLEDATADIR="../../masks"
|
||||
fi
|
||||
|
||||
res=$1
|
||||
scheme=$2
|
||||
|
||||
#check command line arguments
|
||||
if [ "$res" = "" ] || [ "$scheme" = "" ] ; then
|
||||
echo >&2 "ERROR: enter the desired resolution and pixelization scheme as command line arguments."
|
||||
echo >&2 ""
|
||||
echo >&2 "USAGE: make_allsky.sh <r> <scheme>"
|
||||
echo >&2 "EXAMPLE: make_allsky.sh 6 d"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
|
||||
allsky=$MANGLEDATADIR/allsky/allsky$res$scheme.pol
|
||||
echo "Generating allsky$res$scheme.pol..."
|
||||
if [ ! -d "$MANGLEDATADIR/allsky" ] ; then
|
||||
echo >&2 "ERROR: $MANGLEDATADIR/allsky not found."
|
||||
echo >&2 "Check that the environment variable MANGLEDATADIR is pointing to"
|
||||
echo >&2 "the appropriate directory (e.g., the mangle 'masks' directory)."
|
||||
exit 1
|
||||
fi
|
||||
currentdir=$PWD
|
||||
cd $MANGLEDATADIR/allsky
|
||||
$MANGLEBINDIR/pixelize -P${scheme}0,${res} allsky.pol ja
|
||||
$MANGLEBINDIR/snap ja allsky$res$scheme.pol
|
||||
rm ja
|
||||
cd $currentdir
|
||||
|
2
masks/allsky/north_hemisphere.pol
Normal file
2
masks/allsky/north_hemisphere.pol
Normal file
|
@ -0,0 +1,2 @@
|
|||
polygon 0 ( 1 caps, 1 weight, 0 pixel, 6.283185307179584 str):
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 1
|
2
masks/allsky/south_hemisphere.pol
Normal file
2
masks/allsky/south_hemisphere.pol
Normal file
|
@ -0,0 +1,2 @@
|
|||
polygon 1 ( 1 caps, 1 weight, 0 pixel, 6.283185307179588 str):
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 -1
|
12
masks/cfa1/cfa1.circ
Normal file
12
masks/cfa1/cfa1.circ
Normal file
|
@ -0,0 +1,12 @@
|
|||
CfA1 mask in equatorial B1950 frame.
|
||||
|
||||
Specify degrees:
|
||||
unit d
|
||||
|
||||
North: Dec(B1950) > 0 deg, b2 > 40 deg
|
||||
circle 0 2
|
||||
0 90 90 192.25 27.4 50
|
||||
|
||||
South: Dec(B1950) > -2.5 deg, b2 < -30 deg
|
||||
circle 1 2
|
||||
0 90 92.5 192.25 27.4 -120
|
8
masks/cfa1/cfa1_north.circ
Normal file
8
masks/cfa1/cfa1_north.circ
Normal file
|
@ -0,0 +1,8 @@
|
|||
CfA1 North mask in equatorial B1950 frame.
|
||||
|
||||
Specify degrees:
|
||||
unit d
|
||||
|
||||
North: Dec(B1950) > 0 deg, b2 > 40 deg
|
||||
circle 0 2
|
||||
0 90 90 192.25 27.4 50
|
8
masks/cfa1/cfa1_south.circ
Normal file
8
masks/cfa1/cfa1_south.circ
Normal file
|
@ -0,0 +1,8 @@
|
|||
CfA1 South mask in equatorial B1950 frame.
|
||||
|
||||
Specify degrees:
|
||||
unit d
|
||||
|
||||
South: Dec(B1950) > -2.5 deg, b2 < -30 deg
|
||||
circle 1 2
|
||||
0 90 92.5 192.25 27.4 -120
|
10
masks/cfa2slice1/cfa2slice.rect
Normal file
10
masks/cfa2slice1/cfa2slice.rect
Normal file
|
@ -0,0 +1,10 @@
|
|||
CfA2 Slice 1 mask in equatorial B1950 frame.
|
||||
(de Lapparent et al's 1986 famous Slice of the Universe)
|
||||
|
||||
Specify degrees:
|
||||
unit d
|
||||
|
||||
rectangle
|
||||
|
||||
RA_min RA_max Dec_min Dec_max
|
||||
120 255 26.499 32.5
|
14
masks/healpix/README
Normal file
14
masks/healpix/README
Normal file
|
@ -0,0 +1,14 @@
|
|||
To make a discrete approximation to a mask using approximate
|
||||
HEALPix pixels, do
|
||||
healpixrast.sh <polygon_infile> <Nside> <polygon_outfile>
|
||||
where Nside is the desired HEALPix resolution.
|
||||
|
||||
To generate an output file in FITS format that can later be read
|
||||
by the HEALPix software, do
|
||||
healpixrast2fits.sh <polygon_infile> <Nside> <fits_outfile>
|
||||
|
||||
|
||||
Polygon files of the approximate HEALPix pixels are located in
|
||||
the healpix_polys directory for resolutions up to Nside=32.
|
||||
Files for higher resolutions are available at
|
||||
http://space.mit.edu/home/tegmark/mangle/download/data.html
|
1
masks/healpix/args.dat
Normal file
1
masks/healpix/args.dat
Normal file
|
@ -0,0 +1 @@
|
|||
1 128 jhd toto.fits ../../bin/dat2fits_binary.x0 ../../bin/dat2fits_binary.x1 ../../bin/dat2fits_binary.x2 ../../bin/dat2fits_binary.x3 ../../bin/dat2fits_binary.x4 ../../bin/dat2fits_binary.x5 ../../bin/dat2fits_binary.x6 ../../bin/dat2fits_binary.x7 ../../bin/dat2fits_binary.x8 ../../bin/dat2fits_binary.x9 10 11 12 13 14 15 16
|
18
masks/healpix/base_polys.vrt
Normal file
18
masks/healpix/base_polys.vrt
Normal file
|
@ -0,0 +1,18 @@
|
|||
This is an approximation to the HEALPix base pixelization, consisting of 12 equal-area polygons.
|
||||
Each polygon is specified by its four vertices, each of which consists of an azimuth and elevation, in degrees.
|
||||
|
||||
unit d
|
||||
|
||||
vertices 0 4
|
||||
0 90 45 0 0 48.189685104221 90 48.189685104221
|
||||
0 90 135 0 90 48.189685104221 180 48.189685104221
|
||||
0 90 225 0 180 48.189685104221 270 48.189685104221
|
||||
0 90 315 0 270 48.189685104221 0 48.189685104221
|
||||
0 48.189685104221 0 -48.189685104221 315 0 45 0
|
||||
90 48.189685104221 90 -48.189685104221 45 0 135 0
|
||||
180 48.189685104221 180 -48.189685104221 135 0 225 0
|
||||
270 48.189685104221 270 -48.189685104221 225 0 315 0
|
||||
45 0 0 -90 0 -48.189685104221 90 -48.189685104221
|
||||
135 0 0 -90 90 -48.189685104221 180 -48.189685104221
|
||||
225 0 0 -90 180 -48.189685104221 270 -48.189685104221
|
||||
315 0 0 -90 270 -48.189685104221 0 -48.189685104221
|
3
masks/healpix/healpix_conversion_scripts/call
Executable file
3
masks/healpix/healpix_conversion_scripts/call
Executable file
|
@ -0,0 +1,3 @@
|
|||
# Call a fortran program with up to 25 parameters:
|
||||
echo $2 $3 $4 $5 $6 $7 $8 $9 $10 $11 $12 $13 $14 $15 $16 $17 $18 $19 $20 $21 $22 $23 $24 $25 $26 >args.dat
|
||||
$1
|
420
masks/healpix/healpix_conversion_scripts/dat2fits_binary.f
Normal file
420
masks/healpix/healpix_conversion_scripts/dat2fits_binary.f
Normal file
|
@ -0,0 +1,420 @@
|
|||
Program dat2fits_binary
|
||||
call go
|
||||
end
|
||||
|
||||
subroutine usage
|
||||
implicit none
|
||||
print *,
|
||||
& 'Converts a CMBfast test file (or mangle healpix_weight file)',
|
||||
& ' into a fits file'
|
||||
c print *, 'COMPILE: a f 'f77 dat2fits_binary.f -o dat2fits_binary.x libcfitsio.a'
|
||||
print *,
|
||||
& 'USAGE: call dat2fits_binary.x <ptype> <nside> <in> <out>'
|
||||
print *,
|
||||
& 'EXAMPLE: call dat2fits_binary.x 1 512 qaz_map_data.dat',
|
||||
& ' mytest.fits'
|
||||
return
|
||||
end
|
||||
|
||||
!=======================================================================
|
||||
subroutine go
|
||||
!=======================================================================
|
||||
implicit none
|
||||
integer polar_type, nmap, nside, npix, nnpix
|
||||
integer nlheader, i, j
|
||||
parameter(nnpix=12*1024**2, nlheader=80)
|
||||
real map(0:nnpix,4)
|
||||
character*80 header(nlheader), infile, outfile, card
|
||||
|
||||
c ----------------------------------------------------------------
|
||||
c get the arguments
|
||||
c ----------------------------------------------------------------
|
||||
open (2,file='args.dat',status='old',err=777)
|
||||
read (2,*,err=777,end=777) polar_type, nside, infile, outfile
|
||||
close(2)
|
||||
npix = 12*nside**2
|
||||
if (npix.gt.nnpix) pause 'npix TOO LARGE'
|
||||
if (polar_type.eq.1) then
|
||||
nmap = 1
|
||||
else
|
||||
nmap = 4
|
||||
endif
|
||||
write(*,*) 'Polar_Type____', polar_type
|
||||
write(*,*) 'nmap__________', nmap
|
||||
write(*,*) 'Nside_________', nside
|
||||
write(*,*) 'Npix__________', npix
|
||||
write(*,*) 'Infile________', infile (1:lnblnk( infile))
|
||||
write(*,*) 'Outfile_______', outfile(1:lnblnk(outfile))
|
||||
|
||||
c ----------------------------------------------------------------
|
||||
c loading the ascii file
|
||||
c ----------------------------------------------------------------
|
||||
print *, 'Loading ', infile(1:lnblnk(infile))
|
||||
open (2,file=infile)
|
||||
do i=0,npix-1
|
||||
read (2,*) (map(i,j),j=1,nmap)
|
||||
enddo
|
||||
close(2)
|
||||
|
||||
c ----------------------------------------------------------------
|
||||
c writing the header
|
||||
c ----------------------------------------------------------------
|
||||
do i=1,nlheader
|
||||
header(i) = ' '
|
||||
enddo
|
||||
call a_add_card(header,'COMMENT','---------------------','')
|
||||
call a_add_card(header,'COMMENT',' Sky Map Keywords ','')
|
||||
call a_add_card(header,'COMMENT','---------------------','')
|
||||
call a_add_card
|
||||
& (header,'PIXTYPE' ,'HEALPIX','HEALPIX Pixelisation' )
|
||||
call a_add_card
|
||||
& (header,'ORDERING','NESTED' ,'Pixel ordering scheme' )
|
||||
call i_add_card
|
||||
& (header,'NSIDE' ,nside ,'Resolution for HEALPIX' )
|
||||
call i_add_card
|
||||
& (header,'FIRSTPIX',0 ,'First pixel # (0 based)')
|
||||
call i_add_card
|
||||
& (header,'LASTPIX' ,npix-1 ,'Last pixel # (0 based)')
|
||||
call v_add_card(header)
|
||||
call a_add_card(header,'COMMENT','----------------','')
|
||||
call a_add_card(header,'COMMENT',' Data Keywords ','')
|
||||
call a_add_card(header,'COMMENT','----------------','')
|
||||
call a_add_card
|
||||
& (header,'TTYPE1', 'TEMPERATURE','Temperature map')
|
||||
call a_add_card(header,'TUNIT1', 'unknown','map unit')
|
||||
call v_add_card(header)
|
||||
if (polar_type.ne.1) then
|
||||
call a_add_card
|
||||
& (header,'TTYPE2', 'Q-POLARIZATION','Q Polar map')
|
||||
call a_add_card
|
||||
& (header,'TUNIT2', 'unknown','map unit')
|
||||
call v_add_card(header)
|
||||
call a_add_card
|
||||
& (header,'TTYPE3', 'U-POLARIZATION','U Polar map')
|
||||
call a_add_card
|
||||
& (header,'TUNIT3', 'unknown','map unit')
|
||||
call v_add_card(header)
|
||||
endif
|
||||
|
||||
|
||||
c nlheader = SIZE(header)
|
||||
c print *, 'Writing Header'
|
||||
c call headerLine('COMMENT ------------------',hd(1))
|
||||
c call headerLine('COMMENT = Healpix' ,hd(2))
|
||||
c call headerLine('COMMENT ------------------',hd(3))
|
||||
c call headerLine('PIXTYPE = HEALPIX',hd(4))
|
||||
c call headerLine('ORDERING = NESTED' ,hd(5))
|
||||
c call headerLine(card,hd(6))
|
||||
c write (card,'("NSIDE",i8," /Resolution for HEALPIX")') nside
|
||||
c call headerLine(card,hd(7))
|
||||
c write (card,'("FIRSTPIX",i8," /First pixel")') 0
|
||||
c call headerLine(card,hd(8))
|
||||
c write (card,'("LASTPIX" ,i16," /Last pixel")') npix-1
|
||||
c call headerLine('COMMENT ------------------',hd(9))
|
||||
c call headerLine('COMMENT = Data Description',hd(10))
|
||||
c call headerLine('COMMENT ------------------',hd(11))
|
||||
c call headerLine('TTYPE1 = TEMPERATURE',hd(12))
|
||||
c call headerLine('TUNIT1 = unknown' ,hd(13))
|
||||
c nh = 13
|
||||
c if (polar_type.ne.1) then
|
||||
c call headerLine('TTYPE2 = Q-POLARIZATION',hd(14))
|
||||
c call headerLine('TUNIT2 = unknown' ,hd(15))
|
||||
c call headerLine('TTYPE3 = U-POLARIZATION',hd(16))
|
||||
c call headerLine('TUNIT3 = unknown' ,hd(17))
|
||||
c nh = 17
|
||||
c endif
|
||||
|
||||
|
||||
do i=1,nlheader
|
||||
print *, header(i)
|
||||
enddo
|
||||
print *, 'Saving file'
|
||||
call write_bintab (map,npix,nmap,header,nlheader,outfile)
|
||||
return
|
||||
777 call usage
|
||||
end
|
||||
|
||||
SUBROUTINE a_add_card(header, kwd, value, comment) ! character
|
||||
CHARACTER*(*) value
|
||||
CHARACTER*80 header
|
||||
CHARACTER*(*) kwd
|
||||
CHARACTER*(*) comment
|
||||
CHARACTER*240 st_value, st_comment
|
||||
st_value = ''
|
||||
st_comment = ''
|
||||
write(st_value, '(a)') value
|
||||
write(st_comment,'(a)') comment
|
||||
call write_hl(header, kwd, st_value, st_comment)
|
||||
RETURN
|
||||
END
|
||||
|
||||
SUBROUTINE v_add_card(header) ! blank line
|
||||
CHARACTER*80 header
|
||||
call write_hl(header, 'COMMENT', ' ', ' ')
|
||||
END
|
||||
|
||||
SUBROUTINE i_add_card(header, kwd, value, comment) ! integer (i*4)
|
||||
INTEGER value
|
||||
CHARACTER*80 header
|
||||
CHARACTER*(*) kwd
|
||||
CHARACTER*(*) comment
|
||||
CHARACTER*20 st_value
|
||||
write(st_value,'(i20)') value
|
||||
call write_hl(header, kwd, st_value, comment)
|
||||
RETURN
|
||||
END
|
||||
|
||||
SUBROUTINE write_hl(header, kwd, st_value, comment)
|
||||
IMPLICIT none
|
||||
CHARACTER*80 header(80)
|
||||
CHARACTER*(*) kwd
|
||||
CHARACTER*(*) comment
|
||||
CHARACTER*(*) st_value
|
||||
INTEGER hdtype, status
|
||||
INTEGER iw, lnblnk
|
||||
CHARACTER*240 headerline
|
||||
CHARACTER*80 buffheader
|
||||
CHARACTER*10 pad10
|
||||
iw = 1
|
||||
do while(header(iw) /= '')
|
||||
iw = iw + 1
|
||||
enddo
|
||||
pad10=''
|
||||
buffheader =''
|
||||
headerline = kwd (1:lnblnk(kwd)) //' '//
|
||||
& st_value(1:lnblnk(st_value))//' '//
|
||||
& comment (1:lnblnk(comment))
|
||||
if (headerline .eq. 'COMMENT') then ! COMMENT alone
|
||||
header(iw) = 'COMMENT'
|
||||
iw = iw + 1
|
||||
RETURN
|
||||
endif
|
||||
hdtype = 0
|
||||
status = 0
|
||||
CALL ftgthd(headerline(1:79), buffheader, hdtype, status)
|
||||
header(iw) = buffheader
|
||||
if (len_trim(headerline) > 79) then
|
||||
status = 0
|
||||
CALL ftgthd(pad10//headerline(80:149),
|
||||
& buffheader, hdtype, status)
|
||||
iw = iw + 1
|
||||
header(iw) = buffheader
|
||||
endif
|
||||
if (len_trim(headerline) > 149) then
|
||||
status = 0
|
||||
CALL ftgthd(pad10//headerline(150:219),
|
||||
& buffheader, hdtype, status)
|
||||
iw = iw + 1
|
||||
header(iw) = buffheader
|
||||
endif
|
||||
if (len_trim(headerline) > 219) then
|
||||
status = 0
|
||||
CALL ftgthd(pad10//headerline(220:240),
|
||||
& buffheader, hdtype, status)
|
||||
iw = iw + 1
|
||||
header(iw) = buffheader
|
||||
endif
|
||||
iw = iw + 1
|
||||
RETURN
|
||||
END
|
||||
|
||||
!=======================================================================
|
||||
subroutine write_bintab (map,npix,nmap,header,nlheader,filename)
|
||||
!=======================================================================
|
||||
! Create a FITS file containing a binary table extension with
|
||||
! the temperature map in the first column
|
||||
! written by EH from writeimage and writebintable
|
||||
! (fitsio cookbook package)
|
||||
!
|
||||
! slightly modified to deal with vector column (ie TFORMi = '1024E')
|
||||
! in binary table EH/IAP/Jan-98
|
||||
!
|
||||
! simplified the calling sequence, the header sould be filled in
|
||||
! before calling the routine
|
||||
!=======================================================================
|
||||
IMPLICIT none
|
||||
|
||||
INTEGER npix, nmap, nlheader
|
||||
REAL map(0:npix-1,1:nmap)
|
||||
CHARACTER*80 header(1:nlheader)
|
||||
CHARACTER*(*) filename
|
||||
|
||||
INTEGER status,unit,blocksize,bitpix,naxis,naxes(1)
|
||||
INTEGER group,fpixel,nelements,i
|
||||
LOGICAL simple,extend
|
||||
CHARACTER*80 svalue, comment
|
||||
REAL*8 bscale,bzero
|
||||
|
||||
INTEGER maxdim !number of columns in the extension
|
||||
PARAMETER (maxdim = 20)
|
||||
INTEGER nrows, tfields, varidat
|
||||
INTEGER frow, felem, colnum
|
||||
CHARACTER*20 ttype(maxdim), tform(maxdim), tunit(maxdim), extname
|
||||
CHARACTER*8 date
|
||||
CHARACTER*10 fulldate
|
||||
CHARACTER*10 card
|
||||
CHARACTER*2 stn
|
||||
INTEGER itn
|
||||
|
||||
!-----------------------------------------------------------------------
|
||||
|
||||
status= 0
|
||||
unit = 100
|
||||
|
||||
! ----------------------
|
||||
! create the new empty FITS file
|
||||
! ----------------------
|
||||
blocksize=1
|
||||
call ftinit(unit,filename,blocksize,status)
|
||||
|
||||
! ----------------------
|
||||
! initialize parameters about the FITS image
|
||||
! ----------------------
|
||||
simple =.true.
|
||||
bitpix =32 ! integer*4
|
||||
naxis =0 ! no image
|
||||
naxes(1)=0
|
||||
extend =.true. ! there is an extension
|
||||
|
||||
! ----------------------
|
||||
! primary header
|
||||
! ----------------------
|
||||
! write the required header keywords
|
||||
call ftphpr
|
||||
&(unit,simple,bitpix,naxis,naxes,0,1,extend,status)
|
||||
|
||||
! writes supplementary keywords : none
|
||||
|
||||
! write the current date
|
||||
call ftpdat(unit,status) ! format (dd/mm/yy)
|
||||
|
||||
! update the date (format ccyy-mm-dd)
|
||||
call date_and_time(date)
|
||||
fulldate = date(1:4)//'-'//date(5:6)//'-'//date(7:8)
|
||||
comment = 'FITS file creation date ccyy-mm-dd'
|
||||
call ftukys(unit,'DATE',fulldate,comment,status)
|
||||
|
||||
! ----------------------
|
||||
! image : none
|
||||
! ----------------------
|
||||
|
||||
! ----------------------
|
||||
! extension
|
||||
! ----------------------
|
||||
|
||||
! creates an extension
|
||||
call ftcrhd(unit, status)
|
||||
|
||||
! writes required keywords
|
||||
nrows = npix / 1024 ! naxis1
|
||||
tfields = nmap
|
||||
do i=1,nmap
|
||||
tform(i) = '1024E'
|
||||
if (npix .lt. 1024) then ! for nside <= 8
|
||||
nrows = npix
|
||||
tform(i) = '1E'
|
||||
endif
|
||||
ttype(i) = 'simulation' ! will be updated
|
||||
tunit(i) = '' ! optional, will not appear
|
||||
enddo
|
||||
extname = '' ! optional, will not appear
|
||||
varidat = 0
|
||||
call ftphbn
|
||||
&(unit,nrows,tfields,ttype,tform,tunit,extname,varidat,status)
|
||||
|
||||
! write the header literally, putting TFORM1 at the desired place
|
||||
do i=1,nlheader
|
||||
card = header(i)
|
||||
if (card(1:5) == 'TTYPE') then ! if TTYPE1 is explicitely given
|
||||
stn = card(6:6)
|
||||
read(stn,'(i1)') itn
|
||||
! discard at their original location:
|
||||
call ftmcrd(unit,'TTYPE'//stn,'COMMENT',status) ! old TTYPEi and
|
||||
call ftmcrd(unit,'TFORM'//stn,'COMMENT',status) ! TFORMi
|
||||
call ftprec(unit,header(i), status) ! write new TTYPE1
|
||||
comment = 'data format of field: 4-byte REAL'
|
||||
call ftpkys(unit,'TFORM'//stn,tform(1),comment,status) ! and write new TFORM1 right after
|
||||
elseif (header(i).NE.' ') then
|
||||
call ftprec(unit,header(i), status)
|
||||
endif
|
||||
10 continue
|
||||
enddo
|
||||
|
||||
! write the extension one column by one column
|
||||
frow = 1 ! starting position (row)
|
||||
felem = 1 ! starting position (element)
|
||||
do colnum = 1, nmap
|
||||
call ftpcle
|
||||
& (unit,colnum,frow,felem,npix,map(0,colnum),status)
|
||||
enddo
|
||||
|
||||
! ----------------------
|
||||
! close and exit
|
||||
! ----------------------
|
||||
call ftclos(unit, status)
|
||||
|
||||
! ----------------------
|
||||
! check for any error, and if so print out error messages
|
||||
! ----------------------
|
||||
if (status .gt. 0) call printerror(status)
|
||||
|
||||
return
|
||||
end
|
||||
|
||||
subroutine printerror(status)
|
||||
!=======================================================================
|
||||
! Print out the FITSIO error messages to the user
|
||||
!=======================================================================
|
||||
implicit none
|
||||
INTEGER status
|
||||
CHARACTER*30 errtext
|
||||
CHARACTER*80 errmessage
|
||||
!-----------------------------------------------------------------------
|
||||
! check if status is OK (no error); if so, simply return
|
||||
if (status .le. 0)return
|
||||
|
||||
! get the text string which describes the error
|
||||
call ftgerr(status,errtext)
|
||||
print *,'FITSIO Error Status =',status,': ',errtext
|
||||
|
||||
! read and print out all the error messages on the FITSIO stack
|
||||
call ftgmsg(errmessage)
|
||||
do while (errmessage .ne. ' ')
|
||||
print *,errmessage
|
||||
call ftgmsg(errmessage)
|
||||
end do
|
||||
|
||||
open(unit = 20, file = "dat2fitserr.temp")
|
||||
write(20,*) status
|
||||
close(20)
|
||||
|
||||
return
|
||||
end
|
||||
|
||||
c --------------------------------------------------------------------
|
||||
c return formatted header line
|
||||
c --------------------------------------------------------------------
|
||||
subroutine headerLine(line,hdLine)
|
||||
implicit none
|
||||
integer hdtype,status
|
||||
character*(*) line
|
||||
character*80 hdLine
|
||||
|
||||
hdtype=0
|
||||
status=0
|
||||
call ftgthd(line,hdLine,hdtype,status)
|
||||
if (status.gt.0) call errorMessage(status)
|
||||
end
|
||||
|
||||
c --------------------------------------------------------------------
|
||||
c print error message and stop
|
||||
c --------------------------------------------------------------------
|
||||
subroutine errorMessage(status)
|
||||
implicit none
|
||||
integer status
|
||||
character*30 errmsg
|
||||
|
||||
call ftgerr(status,errmsg)
|
||||
print '("FITS error ",i3,": ",a)', status,errmsg
|
||||
stop
|
||||
end
|
247
masks/healpix/healpix_conversion_scripts/fits2dat_binary.f
Normal file
247
masks/healpix/healpix_conversion_scripts/fits2dat_binary.f
Normal file
|
@ -0,0 +1,247 @@
|
|||
Program fits2dat_binary
|
||||
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
||||
! Angelica Costa Jan/03: From f90 to g77
|
||||
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
||||
call go
|
||||
end
|
||||
|
||||
subroutine usage
|
||||
implicit none
|
||||
print *, 'Converts a map from fits to text'
|
||||
print *,
|
||||
& 'COMPILE: g77 fits2dat_binary.f -o fits2dat_binary.x',
|
||||
& '/home3/max/healpix/cfitsio/libcfitsio.a'
|
||||
print *,
|
||||
& 'USAGE: call fits2dat_binary.x <PolarType>',
|
||||
& ' <Nside> <infile> <outfile>'
|
||||
print *,
|
||||
& 'EXAMPLE: call fits2dat_binary.x 1 32 qaz_map???.fits',
|
||||
& 'qaz_map.dat'
|
||||
return
|
||||
end
|
||||
|
||||
subroutine go
|
||||
implicit none
|
||||
INTEGER npixtot, nnpixtot, nmaps, nnmaps, naxis
|
||||
parameter(nnpixtot=12*1024**2, nnmaps=4)
|
||||
REAL map(0:nnpixtot-1,1:nnmaps)
|
||||
REAL nullval
|
||||
LOGICAL anynull
|
||||
CHARACTER*80 infile, outfile
|
||||
INTEGER status, unit, readwrite, blocksize, naxes(2), nfound, naxis
|
||||
INTEGER group, firstpix, nbuffer, npix, i, polar_type, Nside, lnblnk
|
||||
REAL blank, testval
|
||||
REAL*8 bscale, bzero
|
||||
LOGICAL extend
|
||||
INTEGER nmove, hdutype
|
||||
INTEGER column, frow, imap
|
||||
INTEGER datacode, repeat, width
|
||||
CHARACTER*80 comment
|
||||
INTEGER maxdim !number of columns in the extension
|
||||
PARAMETER(maxdim=20)
|
||||
INTEGER nrows, tfields, varidat
|
||||
CHARACTER*20 ttype(maxdim), tform(maxdim), tunit(maxdim), extname
|
||||
|
||||
c ----------------------------------------------------------------
|
||||
c get the arguments
|
||||
c ----------------------------------------------------------------
|
||||
open (2,file='args.dat',status='old',err=777)
|
||||
read (2,*,err=777,end=777) polar_type, Nside, infile, outfile
|
||||
close(2)
|
||||
npixtot = 12*Nside**2
|
||||
if (npixtot.gt.nnpixtot) pause 'npixtot SIZE ERROR'
|
||||
if (polar_type.eq.1) then
|
||||
nmaps = 1
|
||||
else
|
||||
nmaps = 4
|
||||
endif
|
||||
write(*,*) 'Polarization_Type_________________', polar_type
|
||||
write(*,*) 'Nside_____________________________', Nside
|
||||
write(*,*) 'npix______________________________', npixtot
|
||||
write(*,*) 'Infile____________________________',
|
||||
& infile (1:lnblnk( infile))
|
||||
write(*,*) 'Outfile___________________________',
|
||||
& outfile(1:lnblnk(outfile))
|
||||
|
||||
c ----------------------------------------------------------------
|
||||
c loading the file
|
||||
c ----------------------------------------------------------------
|
||||
status = 0
|
||||
unit = 150
|
||||
naxes(1) = 1
|
||||
naxes(2) = 1
|
||||
nfound = -1
|
||||
anynull = .false.
|
||||
bscale = 1.0d0
|
||||
bzero = 0.0d0
|
||||
blank = -2.e25
|
||||
nullval = bscale*blank + bzero
|
||||
|
||||
readwrite=0
|
||||
call ftopen(unit,infile,readwrite,blocksize,status)
|
||||
if (status .gt. 0) call printerror(status)
|
||||
! -----------------------------------------
|
||||
|
||||
! determines the presence of image
|
||||
call ftgkyj(unit,'NAXIS', naxis, comment, status)
|
||||
if (status .gt. 0) call printerror(status)
|
||||
|
||||
! determines the presence of an extension
|
||||
call ftgkyl(unit,'EXTEND', extend, comment, status)
|
||||
if (status .gt. 0) status = 0 ! no extension :
|
||||
! to be compatible with first version of the code
|
||||
|
||||
if (naxis .gt. 0) then ! there is an image
|
||||
! determine the size of the image (look naxis1 and naxis2)
|
||||
call ftgknj(unit,'NAXIS',1,2,naxes,nfound,status)
|
||||
|
||||
! check that it found only NAXIS1
|
||||
if (nfound .eq. 2 .and. naxes(2) .gt. 1) then
|
||||
print *,'multi-dimensional image'
|
||||
print *,'expected 1-D data.'
|
||||
stop
|
||||
end if
|
||||
|
||||
if (nfound .lt. 1) then
|
||||
call printerror(status)
|
||||
print *,'can not find NAXIS1.'
|
||||
stop
|
||||
endif
|
||||
|
||||
npix=naxes(1)
|
||||
if (npix .ne. npixtot) then
|
||||
print *,'found ',npix,' pixels'
|
||||
print *,'expected ',npixtot
|
||||
stop
|
||||
endif
|
||||
|
||||
call ftgkyd(unit,'BSCALE',bscale,comment,status)
|
||||
if (status .eq. 202) then ! BSCALE not found
|
||||
bscale = 1.0d0
|
||||
status = 0
|
||||
endif
|
||||
call ftgkyd(unit,'BZERO', bzero, comment,status)
|
||||
if (status .eq. 202) then ! BZERO not found
|
||||
bzero = 0.0d0
|
||||
status = 0
|
||||
endif
|
||||
call ftgkye(unit,'BLANK', blank, comment,status)
|
||||
if (status .eq. 202) then ! BLANK not found
|
||||
! (according to fitsio BLANK is integer)
|
||||
blank = -2.e25
|
||||
status = 0
|
||||
endif
|
||||
nullval = bscale*blank + bzero
|
||||
|
||||
! -----------------------------------------
|
||||
|
||||
group = 1
|
||||
firstpix = 1
|
||||
call ftgpve
|
||||
& (unit,group,firstpix,npix,nullval,map,anynull,status)
|
||||
! if there are any NaN pixels, (real data)
|
||||
! or BLANK pixels (integer data) they will take nullval value
|
||||
! and anynull will switch to .true.
|
||||
! otherwise, switch it by hand if necessary
|
||||
testval = 1.e-6 * ABS(nullval)
|
||||
do i=0, npix-1
|
||||
if (ABS(map(i,1)-nullval) .lt. testval) then
|
||||
anynull = .true.
|
||||
c goto 111
|
||||
endif
|
||||
enddo
|
||||
c 111 continue
|
||||
|
||||
else if (extend) then ! there is an extension
|
||||
nmove = +1
|
||||
call ftmrhd(unit, nmove, hdutype, status)
|
||||
!cc write(*,*) hdutype
|
||||
|
||||
if (hdutype .ne. 2) then ! not a binary table
|
||||
stop 'this is not a binary table'
|
||||
endif
|
||||
|
||||
! reads all the keywords
|
||||
call ftghbn
|
||||
& (unit, maxdim,nrows,tfields,ttype,tform,
|
||||
& tunit,extname,varidat,status)
|
||||
|
||||
if (tfields .lt. nmaps) then
|
||||
print *,'found ',tfields,' maps in the file'
|
||||
print *,'expected ',nmaps
|
||||
stop
|
||||
endif
|
||||
|
||||
! finds the bad data value
|
||||
call ftgkye(unit,'BAD_DATA',nullval,comment,status)
|
||||
if (status .eq. 202) then ! bad_data not found
|
||||
nullval = -1.6375e30 ! default value
|
||||
status = 0
|
||||
endif
|
||||
|
||||
do imap = 1, nmaps
|
||||
!parse TFORM keyword to find out the length of the column vector
|
||||
call ftbnfm(tform(imap), datacode, repeat, width, status)
|
||||
|
||||
!reads the columns
|
||||
column = imap
|
||||
frow = 1
|
||||
firstpix = 1
|
||||
npix = nrows * repeat
|
||||
if (npix .ne. npixtot) then
|
||||
print *,'found ',npix,' pixels'
|
||||
print *,'expected ',npixtot
|
||||
stop
|
||||
endif
|
||||
call ftgcve
|
||||
& (unit, column, frow, firstpix, npix, nullval,
|
||||
& map(0,imap), anynull, status)
|
||||
enddo
|
||||
|
||||
else ! no image no extension, you are dead, man
|
||||
stop ' No image, no extension'
|
||||
endif
|
||||
|
||||
! close the file
|
||||
call ftclos(unit, status)
|
||||
|
||||
! saving text file
|
||||
print *, 'Saving ', outfile
|
||||
open (2,file=outfile)
|
||||
do i = 0, npix-1
|
||||
write (2,*) (map(i,imap),imap=1,nmaps)
|
||||
enddo
|
||||
close(2)
|
||||
|
||||
! check for any error, and if so print out error messages
|
||||
if (status .gt. 0) call printerror(status)
|
||||
return
|
||||
777 call usage
|
||||
end
|
||||
|
||||
subroutine printerror(status)
|
||||
!=======================================================================
|
||||
! Print out the FITSIO error messages to the user
|
||||
!=======================================================================
|
||||
implicit none
|
||||
INTEGER status
|
||||
CHARACTER*30 errtext
|
||||
CHARACTER*80 errmessage
|
||||
!-----------------------------------------------------------------------
|
||||
! check if status is OK (no error); if so, simply return
|
||||
if (status .le. 0)return
|
||||
|
||||
! get the text string which describes the error
|
||||
call ftgerr(status,errtext)
|
||||
print *,'FITSIO Error Status =',status,': ',errtext
|
||||
|
||||
! read and print out all the error messages on the FITSIO stack
|
||||
call ftgmsg(errmessage)
|
||||
do while (errmessage .ne. ' ')
|
||||
print *,errmessage
|
||||
call ftgmsg(errmessage)
|
||||
end do
|
||||
|
||||
return
|
||||
end
|
||||
|
43
masks/healpix/healpix_conversion_scripts/plotmap.sh
Executable file
43
masks/healpix/healpix_conversion_scripts/plotmap.sh
Executable file
|
@ -0,0 +1,43 @@
|
|||
#!/bin/sh
|
||||
# USAGE: plotmap.sh <Nside_out> <fits_infile> <gif_outfile>
|
||||
# EXAMPLE: plotmap.sh 512 qaz.fits qaz.gif
|
||||
|
||||
#check command line arguments
|
||||
if [ $# -lt 3 ]; then
|
||||
echo >&2 "ERROR: enter the output Nside value, the name of the input file,"
|
||||
echo >&2 "and the name of the output file as command line arguments."
|
||||
echo >&2 ""
|
||||
echo >&2 "USAGE: plotmap.sh <Nside_out> <fits_infile> <gif_outfile>"
|
||||
echo >&2 "EXAMPLE: plotmap.sh 512 qaz.fits qaz.gif"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
echo ""
|
||||
echo "NOTE: This script requires a HEALPix installation"
|
||||
echo "Creating $3..."
|
||||
#echo 'WARNING: plotmap disabled'
|
||||
#exit
|
||||
|
||||
res=$1
|
||||
infile=$2
|
||||
outfile="qaz_plotmap.fits"
|
||||
|
||||
echo 'nside_out = '$res >qaz_ud_grade.dat
|
||||
echo 'infile = '$infile >>qaz_ud_grade.dat
|
||||
echo 'outfile = '$outfile >>qaz_ud_grade.dat
|
||||
if [ -e $outfile ] ; then
|
||||
/bin/rm $outfile
|
||||
fi
|
||||
ud_grade qaz_ud_grade.dat
|
||||
|
||||
if [ -e $3 ] ; then
|
||||
/bin/rm $3
|
||||
fi
|
||||
|
||||
# default mangle limits (weights range from 0 to 1)
|
||||
map2gif -inp qaz_plotmap.fits -out $3 -bar .true. -add 0 -min 0 -max 1
|
||||
|
||||
# default WMAP limits
|
||||
#map2gif -inp qaz_plotmap.fits -out $1.gif -bar .true. -add 0.2 -min 0 -max 0.4
|
||||
|
||||
rm qaz_plotmap.fits qaz_ud_grade.dat
|
0
masks/healpix/healpix_polys/keep_this_dir
Normal file
0
masks/healpix/healpix_polys/keep_this_dir
Normal file
88
masks/healpix/healpixpolys.sh
Executable file
88
masks/healpix/healpixpolys.sh
Executable file
|
@ -0,0 +1,88 @@
|
|||
#! /bin/bash
|
||||
# (C) J C Hill 2007
|
||||
|
||||
# script to construct, pixelize, and snap the approximate healpix polygons in mangle
|
||||
# If no outfile is given, healpix polygon file is named automatically and put in masks/healpix/healpix_polys directory
|
||||
# USAGE: healpixpolys.sh <Nside> <scheme> <p> <r> <polygon_outfile>
|
||||
# EXAMPLE: healpixpolys.sh 16 s 0 3
|
||||
# EXAMPLE: healpixpolys.sh 16 s 0 3 nside16p3s.pol
|
||||
|
||||
if [ "$MANGLEBINDIR" = "" ] ; then
|
||||
MANGLEBINDIR="../../bin"
|
||||
fi
|
||||
if [ "$MANGLESCRIPTSDIR" = "" ] ; then
|
||||
MANGLESCRIPTSDIR="../../scripts"
|
||||
fi
|
||||
if [ "$MANGLEDATADIR" = "" ] ; then
|
||||
MANGLEDATADIR="../../masks"
|
||||
fi
|
||||
|
||||
#check command line arguments
|
||||
if [ $# -lt 4 ] ; then
|
||||
echo >&2 "ERROR: enter Nside value, pixelization scheme, maximum number of polygons per pixel <p>,"
|
||||
echo >&2 "resolution <r>, and (optionally) the name of the output file as command line arguments."
|
||||
echo >&2 ""
|
||||
echo >&2 "USAGE: healpixpolys.sh <Nside> <scheme> <p> <r> <polygon_outfile>"
|
||||
echo >&2 "EXAMPLE: healpixpolys.sh 16 s 0 3"
|
||||
echo >&2 "EXAMPLE: healpixpolys.sh 16 s 0 3 nside16p3s.pol"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
if [ "$1" != 0 ]; then
|
||||
for (( I = 1 ; I < 8192 ; I = `expr 2 \* $I` ))
|
||||
do
|
||||
if [ "$1" = "$I" ]; then
|
||||
FLAG=1
|
||||
fi
|
||||
done
|
||||
|
||||
if [ "$FLAG" != 1 ]; then
|
||||
echo >&2 "ERROR: <Nside> must be a power of 2."
|
||||
echo >&2 "USAGE: healpixpolys.sh <Nside> <scheme> <p> <r> <polygon_outfile>"
|
||||
echo >&2 "EXAMPLE: healpixpolys.sh 16 s 0 3"
|
||||
echo >&2 "EXAMPLE: healpixpolys.sh 16 s 0 3 nside16p3s.pol"
|
||||
exit 1
|
||||
fi
|
||||
fi
|
||||
|
||||
if [ "$1" = 0 ]; then
|
||||
POLYS=1
|
||||
else
|
||||
POLYS=`expr 12 \* $1 \* $1`
|
||||
fi
|
||||
|
||||
#rm jhw
|
||||
#echo healpix_weight $POLYS >> jhw
|
||||
#for (( I = 0 ; I < POLYS; I++ ))
|
||||
#do
|
||||
# echo 0 >> jhw
|
||||
#done
|
||||
|
||||
$MANGLEBINDIR/poly2poly -ob -iH$1 - jp || exit
|
||||
#$MANGLEBINDIR/poly2poly -ob jhw jp || exit
|
||||
#note that -vo switch is needed in order to keep the correct id numbers (the HEALPix NESTED pixel numbers)
|
||||
|
||||
$MANGLEBINDIR/pixelize -P$2$3,$4 -ib -ob -vo jp jpx || exit
|
||||
rm jp
|
||||
|
||||
if [ "$5" = "" ]; then
|
||||
if [ ! -d "$MANGLEDATADIR/healpix/healpix_polys" ] ; then
|
||||
echo >&2 "ERROR: $MANGLEDATADIR/healpix/healpix_polys not found."
|
||||
# echo >&2 "Check that the environment variable MANGLEDATADIR is pointing to"
|
||||
echo >&2 "the appropriate directory (e.g., the mangle 'masks' directory)."
|
||||
exit 1
|
||||
fi
|
||||
|
||||
if [ "$3" = 0 ]; then
|
||||
outfile="$MANGLEDATADIR/healpix/healpix_polys/nside${1}_p${4}${2}.pol"
|
||||
else
|
||||
outfile="$MANGLEDATADIR/healpix/healpix_polys/nside${1}_p-1${2}.pol"
|
||||
fi
|
||||
else
|
||||
outfile=$5
|
||||
fi
|
||||
|
||||
$MANGLEBINDIR/snap -ib -vo -os jpx $outfile || exit
|
||||
rm jpx
|
||||
|
||||
echo "HEALPix pixels at Nside=$1 written to $outfile."
|
133
masks/healpix/healpixrast.sh
Executable file
133
masks/healpix/healpixrast.sh
Executable file
|
@ -0,0 +1,133 @@
|
|||
#! /bin/sh
|
||||
# (C) J C Hill 2007
|
||||
|
||||
# script to rasterize an arbitrary input mask against the approximate healpix polygons
|
||||
# in mangle at any value of Nside
|
||||
|
||||
# USAGE: healpixrast.sh <polygon_infile> <Nside> <polygon_outfile>
|
||||
# EXAMPLE: healpixrast.sh mask.pol 16 rast_mask_nside16.pol
|
||||
|
||||
if [ "$MANGLEBINDIR" = "" ] ; then
|
||||
MANGLEBINDIR="../../bin"
|
||||
fi
|
||||
if [ "$MANGLESCRIPTSDIR" = "" ] ; then
|
||||
MANGLESCRIPTSDIR="../../scripts"
|
||||
fi
|
||||
if [ "$MANGLEDATADIR" = "" ] ; then
|
||||
MANGLEDATADIR="../../masks"
|
||||
fi
|
||||
|
||||
#check command line arguments
|
||||
if [ $# -lt 3 ] ; then
|
||||
echo >&2 "ERROR: enter the name of the input file, Nside value, pixelization scheme, "
|
||||
echo >&2 "and the name of the output file as command line arguments."
|
||||
echo >&2 ""
|
||||
echo >&2 "USAGE: healpixrast.sh <polygon_infile> <Nside> <polygon_outfile>"
|
||||
echo >&2 "EXAMPLE: healpixrast.sh mask.pol 16 rast_mask_nside16.pol"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
scheme="s"
|
||||
|
||||
if [ "$2" != 0 ]; then
|
||||
for (( I = 1 ; I < 8192 ; I = `expr 2 \* $I` ))
|
||||
do
|
||||
if [ "$2" = "$I" ]; then
|
||||
FLAG=1
|
||||
fi
|
||||
done
|
||||
|
||||
if [ "$FLAG" != 1 ]; then
|
||||
echo >&2 "ERROR: <Nside> must be a power of 2."
|
||||
echo >&2 "USAGE: healpixrast.sh <polygon_infile> <Nside> <polygon_outfile>"
|
||||
echo >&2 "EXAMPLE: healpixrast.sh mask.pol 16 rast_mask_nside16.pol"
|
||||
exit 1
|
||||
fi
|
||||
fi
|
||||
|
||||
|
||||
if [ "$2" -gt 32 ]; then
|
||||
pix=8
|
||||
fi
|
||||
if [ "$2" = 16 ] || [ "$2" = 32 ]; then
|
||||
pix=5
|
||||
fi
|
||||
if [ "$2" -lt 16 ]; then
|
||||
pix=3
|
||||
fi
|
||||
healpixfile=$MANGLEDATADIR/healpix/healpix_polys/nside$2_p${pix}${scheme}.pol
|
||||
|
||||
if [ ! -e $healpixfile ] ; then
|
||||
if [ "$2" -gt 32 ]; then
|
||||
echo "ERROR: file $healpixfile does not exist."
|
||||
echo "You can download it from the website (recommended)"
|
||||
echo "or you can create it by running"
|
||||
echo "sh healpixpolys.sh $2 ${scheme} 0 8"
|
||||
echo "in $MANGLEDATADIR/healpix."
|
||||
echo ""
|
||||
exit 1
|
||||
else
|
||||
echo "Generating HEALPix polygons with healpixpolys.sh ..."
|
||||
$MANGLESCRIPTSDIR/healpixpolys.sh $2 $scheme 0 $pix || exit
|
||||
fi
|
||||
fi
|
||||
|
||||
head -n 100 $1 > jmaskhead
|
||||
|
||||
#grab pixelization info from input file
|
||||
awk '/pixelization/{print $0}' < jmaskhead > jpix
|
||||
res1=`awk '{print substr($2, 1, length($2)-1)}' < jpix`
|
||||
scheme1=`awk '{print substr($2, length($2))}' < jpix`
|
||||
rm jpix
|
||||
|
||||
#check if input file is snapped and balkanized
|
||||
snapped=`awk '/snapped/{print $1}' < jmaskhead`
|
||||
balkanized=`awk '/balkanized/{print $1}' < jmaskhead`
|
||||
rm jmaskhead
|
||||
|
||||
#if input file is unpixelized, pixelize it
|
||||
#if input file is pixelized to the correct resolution, use it as is.
|
||||
if [ "$res1" = "" ]; then
|
||||
echo ""
|
||||
echo "Pixelizing $1 ..."
|
||||
$MANGLEBINDIR/pixelize -P${scheme}0,$pix $1 jp || exit
|
||||
echo ""
|
||||
#if input file is pixelized to a different resolution and scheme,
|
||||
#warn and pixelize again
|
||||
elif [ ! "$res1" = "$pix" ] || [ ! "$scheme1" = "$scheme" ]; then
|
||||
echo "ALERT: input polygon file is not pixelized with the same resolution"
|
||||
echo "and scheme as the provided HEALPix polygons for nside=$2."
|
||||
echo "--> repixelizing input file"
|
||||
echo "(This step can be avoided by using an input file pixelized"
|
||||
echo "with resolution $pix and scheme $scheme, using the flag -P${scheme}0,$pix .)"
|
||||
echo ""
|
||||
echo "Pixelizing $1 ..."
|
||||
$MANGLEBINDIR/pixelize -P${scheme}0,$pix $1 jp || exit
|
||||
else
|
||||
cp $1 jp
|
||||
fi
|
||||
|
||||
#if input file isn't snapped, snap it
|
||||
if [ ! "$snapped" = "snapped" ]; then
|
||||
echo "Snapping $1 ..."
|
||||
$MANGLEBINDIR/snap jp jps || exit
|
||||
rm jp
|
||||
else
|
||||
mv jp jps
|
||||
fi
|
||||
|
||||
#if input file isn't balkanized, balkanize it
|
||||
if [ ! "$balkanized" = "balkanized" ]; then
|
||||
echo "Balkanizing $1 ..."
|
||||
$MANGLEBINDIR/balkanize jps jb || exit
|
||||
rm jps
|
||||
else
|
||||
mv jps jb
|
||||
fi
|
||||
|
||||
echo ""
|
||||
echo "Rasterizing $1 against the Nside=$2 approximate HEALPix pixels..."
|
||||
$MANGLEBINDIR/rasterize $healpixfile jb $3 || exit
|
||||
rm jb
|
||||
|
||||
echo "Rasterized mask written to $3."
|
213
masks/healpix/healpixrast2fits.sh
Executable file
213
masks/healpix/healpixrast2fits.sh
Executable file
|
@ -0,0 +1,213 @@
|
|||
#! /bin/bash
|
||||
# (C) J C Hill 2007
|
||||
# script to rasterize a mask against the approximate HEALPix polygons and then convert the output
|
||||
# into a HEALPix FITS file and (optional) then plot it using map2gif (plot REQUIRES HEALPIX)
|
||||
|
||||
# USAGE: healpixrast2fits.sh <polygon_infile> <Nside> <fits_outfile> <Nside_out> <gif_outfile>
|
||||
# EXAMPLE: healpixrast2fits.sh mask.pol 16 rast_mask_nside16.fits 8 rast_mask_nside16.gif
|
||||
# EXAMPLE (without healpix): healpixrast2fits.sh mask.pol 16 rast_mask_nside16.fits
|
||||
|
||||
if [ "$MANGLEBINDIR" = "" ] ; then
|
||||
MANGLEBINDIR="../../bin"
|
||||
fi
|
||||
if [ "$MANGLESCRIPTSDIR" = "" ] ; then
|
||||
MANGLESCRIPTSDIR="../../scripts"
|
||||
fi
|
||||
if [ "$MANGLEDATADIR" = "" ] ; then
|
||||
MANGLEDATADIR="../../masks"
|
||||
fi
|
||||
|
||||
#check command line arguments
|
||||
if [ $# -lt 3 ] ; then
|
||||
echo >&2 "ERROR: enter the name of the input file, Nside value, pixelization scheme, "
|
||||
echo >&2 "and the name of the output file as command line arguments."
|
||||
echo >&2 ""
|
||||
echo >&2 "USAGE: healpixrast2fits.sh <polygon_infile> <Nside> <fits_outfile> <Nside_out> <gif_outfile>"
|
||||
echo >&2 "EXAMPLE: healpixrast2fits.sh mask.pol 16 rast_mask_nside16.fits 8 rast_mask_nside16.gif"
|
||||
echo >&2 "EXAMPLE (without healpix): healpixrast2fits.sh mask.pol 16 rast_mask_nside16.fits"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
scheme="s"
|
||||
|
||||
if [ "$2" != 0 ]; then
|
||||
for (( I = 1 ; I < 8192 ; I = `expr 2 \* $I` ))
|
||||
do
|
||||
if [ "$2" = "$I" ]; then
|
||||
FLAG=1
|
||||
fi
|
||||
done
|
||||
|
||||
if [ "$FLAG" != 1 ]; then
|
||||
echo >&2 "ERROR: <Nside> must be a power of 2."
|
||||
echo >&2 "USAGE: healpixrast2fits.sh <polygon_infile> <Nside> <fits_outfile> <Nside_out> <gif_outfile>"
|
||||
echo >&2 "EXAMPLE: healpixrast2fits.sh mask.pol 16 rast_mask_nside16.fits 8 rast_mask_nside16.gif"
|
||||
echo >&2 "EXAMPLE (without healpix): healpixrast2fits.sh mask.pol 16 rast_mask_nside16.fits"
|
||||
exit 1
|
||||
fi
|
||||
fi
|
||||
|
||||
|
||||
if [ "$2" -gt 32 ]; then
|
||||
pix=8
|
||||
fi
|
||||
if [ "$2" = 16 ] || [ "$2" = 32 ]; then
|
||||
pix=5
|
||||
fi
|
||||
if [ "$2" -lt 16 ]; then
|
||||
pix=3
|
||||
fi
|
||||
pix=9
|
||||
if [ "$2" = 1024 ]; then
|
||||
pix=11
|
||||
fi
|
||||
healpixfile=$MANGLEDATADIR/healpix/healpix_polys/nside$2_p${pix}${scheme}.pol
|
||||
|
||||
if [ ! -e $healpixfile ] ; then
|
||||
if [ "$2" -gt 32 ]; then
|
||||
echo >&2 "ERROR: file $healpixfile does not exist."
|
||||
echo >&2 "You can download it from the website (recommended)"
|
||||
echo >&2 "or you can create it by running"
|
||||
echo >&2 "sh healpixpolys.sh $2 ${scheme} 0 8"
|
||||
echo >&2 "in $MANGLEDATADIR/healpix."
|
||||
echo >&2 ""
|
||||
exit 1
|
||||
else
|
||||
echo "Generating HEALPix polygons with healpixpolys.sh ..."
|
||||
$MANGLESCRIPTSDIR/healpixpolys.sh $2 $scheme 0 $pix || exit
|
||||
fi
|
||||
fi
|
||||
|
||||
head -n 100 $1 > jmaskhead
|
||||
|
||||
#grab pixelization info from input file
|
||||
awk '/pixelization/{print $0}' < jmaskhead > jpix
|
||||
res1=`awk '{print substr($2, 1, length($2)-1)}' < jpix`
|
||||
scheme1=`awk '{print substr($2, length($2))}' < jpix`
|
||||
rm jpix
|
||||
|
||||
#check if input file is snapped and balkanized
|
||||
snapped=`awk '/snapped/{print $1}' < jmaskhead`
|
||||
balkanized=`awk '/balkanized/{print $1}' < jmaskhead`
|
||||
rm jmaskhead
|
||||
|
||||
#if input file is unpixelized, pixelize it
|
||||
#if input file is pixelized to the correct resolution, use it as is.
|
||||
if [ "$res1" = "" ]; then
|
||||
echo ""
|
||||
echo "Pixelizing $1 ..."
|
||||
$MANGLEBINDIR/pixelize -ib -ob -P${scheme}0,$pix $1 jp || exit
|
||||
echo ""
|
||||
#if input file is pixelized to a different resolution and scheme,
|
||||
#warn and pixelize again
|
||||
elif [ ! "$res1" = "$pix" ] || [ ! "$scheme1" = "$scheme" ]; then
|
||||
echo "ALERT: input polygon file is not pixelized with the same resolution"
|
||||
echo "and scheme as the provided HEALPix polygons for nside=$2."
|
||||
echo "--> repixelizing input file"
|
||||
echo "(This step can be avoided by using an input file pixelized"
|
||||
echo "with resolution $pix and scheme $scheme, using the flag -P${scheme}0,$pix .)"
|
||||
echo ""
|
||||
echo "Pixelizing $1 ..."
|
||||
$MANGLEBINDIR/pixelize -ib -ob -P${scheme}0,$pix $1 jp || exit
|
||||
else
|
||||
cp $1 jp
|
||||
fi
|
||||
|
||||
#if input file isn't snapped, snap it
|
||||
if [ ! "$snapped" = "snapped" ]; then
|
||||
echo "Snapping $1 ..."
|
||||
$MANGLEBINDIR/snap -ib -ob jp jps || exit
|
||||
rm jp
|
||||
else
|
||||
mv jp jps
|
||||
fi
|
||||
|
||||
#if input file isn't balkanized, balkanize it
|
||||
if [ ! "$balkanized" = "balkanized" ]; then
|
||||
echo "Balkanizing $1 ..."
|
||||
$MANGLEBINDIR/balkanize -ib -ob jps jb || exit
|
||||
rm jps
|
||||
else
|
||||
mv jps jb
|
||||
fi
|
||||
|
||||
echo ""
|
||||
echo "Rasterizing $1 against the Nside=$2 approximate HEALPix pixels..."
|
||||
$MANGLEBINDIR/rasterize -H $healpixfile jb jhw || exit
|
||||
rm jb
|
||||
|
||||
# use sed to remove the "healpix_weight N" (the first line) of the healpix_weight file
|
||||
sed '1d' jhw > jhd
|
||||
rm jhw
|
||||
|
||||
datfitsbin=$MANGLEBINDIR/dat2fits_binary.x
|
||||
if [ ! -e $datfitsbin ] ; then
|
||||
echo >&2 "ERROR: binary $datfitsbin does not exist."
|
||||
echo >&2 "You can create it by compiling the fortran file"
|
||||
echo >&2 "$MANGLEDATADIR/healpix/healpix_conversion_scripts/dat2fits_binary.f as follows:"
|
||||
echo >&2 "g77 dat2fits_binary.f -o dat2fits_binary.x libcfitsio.a"
|
||||
echo >&2 "NOTE: You will need to obtain and install the library file libcfitsio.a"
|
||||
echo >&2 "from http://heasarc.nasa.gov/fitsio/fitsio.html"
|
||||
echo >&2 "in order to compile the fortran file successfully."
|
||||
exit 1
|
||||
fi
|
||||
|
||||
if [ -e $3 ] ; then
|
||||
echo "WARNING: overwriting existing version of $3"
|
||||
/bin/rm $3
|
||||
fi
|
||||
|
||||
$MANGLESCRIPTSDIR/call $datfitsbin 1 $2 jhd $3
|
||||
if [ $? -ne 0 ]; then
|
||||
echo >&2 "ERROR: binary $datfitsbin is not executable on your system."
|
||||
echo >&2 "You can recompile it on your system as follows:"
|
||||
echo >&2 "g77 dat2fits_binary.f -o dat2fits_binary.x libcfitsio.a"
|
||||
echo >&2 "NOTE: You will need to obtain and install the library file libcfitsio.a"
|
||||
echo >&2 "from http://heasarc.nasa.gov/fitsio/fitsio.html"
|
||||
echo >&2 "in order to compile the fortran file successfully."
|
||||
exit 1
|
||||
fi
|
||||
|
||||
if [ -e dat2fitserr.temp ]; then
|
||||
rm dat2fitserr.temp
|
||||
exit 1
|
||||
fi
|
||||
|
||||
rm args.dat
|
||||
rm jhd
|
||||
|
||||
echo "Rasterized mask FITS file written to $3."
|
||||
|
||||
OUT=$4
|
||||
OUT=${OUT:=0}
|
||||
|
||||
if [ "$OUT" == 0 ] ; then
|
||||
echo "No gif specifications present"
|
||||
echo "Finished!"
|
||||
fi
|
||||
|
||||
if [ "$OUT" != 0 ]; then
|
||||
for (( I = 1 ; I < 8192 ; I = `expr 2 \* $I` ))
|
||||
do
|
||||
if [ "$4" = "$I" ]; then
|
||||
FLAGG=1
|
||||
fi
|
||||
done
|
||||
if [ "$FLAG" != 1 ]; then
|
||||
echo >&2 "ERROR: <Nside_out> must be a power of 2."
|
||||
echo >&2 "USAGE: healpixrast2fits.sh <polygon_infile> <Nside> <fits_outfile> <Nside_out> <gif_outfile>"
|
||||
echo >&2 "EXAMPLE: healpixrast2fits.sh mask.pol 16 rast_mask_nside16.fits 8 rast_mask_nside16.gif"
|
||||
echo >&2 "EXAMPLE (without healpix): healpixrast2fits.sh mask.pol 16 rast_mask_nside16.fits"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
if which ud_grade >/dev/null 2>&1 && which map2gif >/dev/null 2>&1 ; then
|
||||
$MANGLESCRIPTSDIR/plotmap.sh $4 $3 $5 || exit
|
||||
echo "Rasterized mask image file written to $5."
|
||||
else
|
||||
echo >&2 "ud_grade and/or map2gif not found!"
|
||||
echo >&2 "In order to plot a gif image of $3, you need to install HEALPix,"
|
||||
echo >&2 "which is available at http://healpix.jpl.nasa.gov/."
|
||||
exit 1
|
||||
fi
|
||||
fi
|
20
masks/healpix/tile.circ
Normal file
20
masks/healpix/tile.circ
Normal file
|
@ -0,0 +1,20 @@
|
|||
Tesselation of the sphere by 12 congruent spherical rhombi.
|
||||
No, this is not the Healpix tesselation.
|
||||
|
||||
circle
|
||||
unit d
|
||||
|
||||
90 45 90 270 45 90 -45 0 90 45 0 90
|
||||
0 45 90 180 45 90 45 0 90 135 0 90
|
||||
90 45 90 270 45 90 135 0 90 225 0 90
|
||||
0 45 90 180 45 90 225 0 90 315 0 90
|
||||
|
||||
0 45 90 90 45 90 0 -45 90 90 -45 90
|
||||
90 45 90 180 45 90 90 -45 90 180 -45 90
|
||||
180 45 90 270 45 90 180 -45 90 270 -45 90
|
||||
270 45 90 0 45 90 270 -45 90 0 -45 90
|
||||
|
||||
90 -45 90 270 -45 90 45 0 90 -45 0 90
|
||||
0 -45 90 180 -45 90 135 0 90 45 0 90
|
||||
90 -45 90 270 -45 90 225 0 90 135 0 90
|
||||
0 -45 90 180 -45 90 315 0 90 225 0 90
|
14
masks/icosahedron/icosahedron.dat
Normal file
14
masks/icosahedron/icosahedron.dat
Normal file
|
@ -0,0 +1,14 @@
|
|||
The 12 vertices of an icosohedron, kindly provided by Mathematica.
|
||||
x y z
|
||||
0.0000000000000000000 0.0000000000000000000 1.1755705045849462583
|
||||
1.0514622242382672121 0.0000000000000000000 0.52573111211913360603
|
||||
0.32491969623290632616 1.0000000000000000000 0.52573111211913360603
|
||||
-0.85065080835203993218 0.61803398874989484820 0.52573111211913360603
|
||||
-0.85065080835203993218 -0.61803398874989484820 0.52573111211913360603
|
||||
0.32491969623290632616 -1.0000000000000000000 0.52573111211913360603
|
||||
0.85065080835203993218 0.61803398874989484820 -0.52573111211913360603
|
||||
-0.32491969623290632616 1.0000000000000000000 -0.52573111211913360603
|
||||
-1.0514622242382672121 0.0000000000000000000 -0.52573111211913360603
|
||||
-0.32491969623290632616 -1.0000000000000000000 -0.52573111211913360603
|
||||
0.85065080835203993218 -0.61803398874989484820 -0.52573111211913360603
|
||||
0.0000000000000000000 0.0000000000000000000 -1.1755705045849462583
|
86
masks/icosahedron/icosahedron.pol
Normal file
86
masks/icosahedron/icosahedron.pol
Normal file
|
@ -0,0 +1,86 @@
|
|||
The polygons of an icosohedron projected on the sky.
|
||||
There are 20 triangular faces.
|
||||
This file is created from icosohedron.vrt by:
|
||||
poly2poly icosohedron.vrt icosohedron.pol
|
||||
|
||||
20 polygons
|
||||
polygon 0 ( 3 caps, 1 weight, 0.628318530717959 str):
|
||||
0.0000000000000000 1.0000000000000000 0.0000000000000000 1
|
||||
-0.4253254041760199 -0.3090169943749475 0.8506508083520399 1
|
||||
0.9510565162951535 -0.3090169943749475 -0.0000000000000001 1
|
||||
polygon 1 ( 3 caps, 1 weight, 0.628318530717959 str):
|
||||
-0.9510565162951535 0.3090169943749475 0.0000000000000001 1
|
||||
0.1624598481164531 -0.5000000000000000 0.8506508083520400 1
|
||||
0.5877852522924732 0.8090169943749475 -0.0000000000000000 1
|
||||
polygon 2 ( 3 caps, 1 weight, 0.628318530717958 str):
|
||||
-0.5877852522924732 -0.8090169943749475 0.0000000000000000 1
|
||||
0.5257311121191336 0.0000000000000000 0.8506508083520399 1
|
||||
-0.5877852522924732 0.8090169943749475 0.0000000000000000 1
|
||||
polygon 3 ( 3 caps, 1 weight, 0.628318530717959 str):
|
||||
0.5877852522924732 -0.8090169943749475 -0.0000000000000000 1
|
||||
0.1624598481164531 0.5000000000000000 0.8506508083520400 1
|
||||
-0.9510565162951535 -0.3090169943749475 0.0000000000000001 1
|
||||
polygon 4 ( 3 caps, 1 weight, 0.628318530717959 str):
|
||||
0.9510565162951535 0.3090169943749475 -0.0000000000000001 1
|
||||
-0.4253254041760199 0.3090169943749475 0.8506508083520399 1
|
||||
0.0000000000000000 -1.0000000000000000 0.0000000000000000 1
|
||||
polygon 5 ( 3 caps, 1 weight, 0.628318530717959 str):
|
||||
-0.2628655560595668 0.8090169943749475 0.5257311121191336 1
|
||||
0.6881909602355868 -0.5000000000000001 0.5257311121191336 1
|
||||
0.4253254041760199 0.3090169943749475 -0.8506508083520399 1
|
||||
polygon 6 ( 3 caps, 1 weight, 0.628318530717959 str):
|
||||
-0.8506508083520399 0.0000000000000001 0.5257311121191336 1
|
||||
0.6881909602355869 0.4999999999999999 0.5257311121191336 1
|
||||
-0.1624598481164531 0.5000000000000000 -0.8506508083520400 1
|
||||
polygon 7 ( 3 caps, 1 weight, 0.628318530717958 str):
|
||||
-0.2628655560595669 -0.8090169943749475 0.5257311121191336 1
|
||||
-0.2628655560595667 0.8090169943749476 0.5257311121191336 1
|
||||
-0.5257311121191336 0.0000000000000001 -0.8506508083520400 1
|
||||
polygon 8 ( 3 caps, 1 weight, 0.628318530717959 str):
|
||||
0.6881909602355869 -0.4999999999999999 0.5257311121191336 1
|
||||
-0.8506508083520399 -0.0000000000000001 0.5257311121191336 1
|
||||
-0.1624598481164531 -0.5000000000000000 -0.8506508083520400 1
|
||||
polygon 9 ( 3 caps, 1 weight, 0.628318530717959 str):
|
||||
0.6881909602355868 0.5000000000000001 0.5257311121191336 1
|
||||
-0.2628655560595668 -0.8090169943749475 0.5257311121191336 1
|
||||
0.4253254041760199 -0.3090169943749475 -0.8506508083520399 1
|
||||
polygon 10 ( 3 caps, 1 weight, 0.628318530717958 str):
|
||||
0.2628655560595668 -0.8090169943749475 -0.5257311121191336 1
|
||||
0.2628655560595668 0.8090169943749475 -0.5257311121191336 1
|
||||
0.5257311121191336 0.0000000000000000 0.8506508083520400 1
|
||||
polygon 11 ( 3 caps, 1 weight, 0.628318530717959 str):
|
||||
0.8506508083520399 -0.0000000000000001 -0.5257311121191336 1
|
||||
-0.6881909602355868 0.5000000000000001 -0.5257311121191336 1
|
||||
0.1624598481164532 0.5000000000000000 0.8506508083520399 1
|
||||
polygon 12 ( 3 caps, 1 weight, 0.628318530717959 str):
|
||||
0.2628655560595669 0.8090169943749475 -0.5257311121191336 1
|
||||
-0.6881909602355869 -0.4999999999999999 -0.5257311121191336 1
|
||||
-0.4253254041760199 0.3090169943749475 0.8506508083520399 1
|
||||
polygon 13 ( 3 caps, 1 weight, 0.628318530717959 str):
|
||||
-0.6881909602355869 0.4999999999999999 -0.5257311121191336 1
|
||||
0.2628655560595669 -0.8090169943749475 -0.5257311121191336 1
|
||||
-0.4253254041760199 -0.3090169943749475 0.8506508083520399 1
|
||||
polygon 14 ( 3 caps, 1 weight, 0.628318530717959 str):
|
||||
-0.6881909602355868 -0.5000000000000001 -0.5257311121191336 1
|
||||
0.8506508083520399 0.0000000000000001 -0.5257311121191336 1
|
||||
0.1624598481164532 -0.5000000000000000 0.8506508083520399 1
|
||||
polygon 15 ( 3 caps, 1 weight, 0.628318530717958 str):
|
||||
0.5877852522924731 -0.8090169943749475 0.0000000000000000 1
|
||||
-0.5257311121191336 0.0000000000000000 -0.8506508083520400 1
|
||||
0.5877852522924731 0.8090169943749475 0.0000000000000000 1
|
||||
polygon 16 ( 3 caps, 1 weight, 0.628318530717959 str):
|
||||
0.9510565162951536 0.3090169943749474 0.0000000000000001 1
|
||||
-0.1624598481164532 -0.5000000000000000 -0.8506508083520399 1
|
||||
-0.5877852522924731 0.8090169943749475 -0.0000000000000000 1
|
||||
polygon 17 ( 3 caps, 1 weight, 0.628318530717959 str):
|
||||
0.0000000000000001 1.0000000000000000 0.0000000000000000 1
|
||||
0.4253254041760199 -0.3090169943749475 -0.8506508083520399 1
|
||||
-0.9510565162951536 -0.3090169943749474 -0.0000000000000001 1
|
||||
polygon 18 ( 3 caps, 1 weight, 0.628318530717959 str):
|
||||
-0.9510565162951536 0.3090169943749474 -0.0000000000000001 1
|
||||
0.4253254041760200 0.3090169943749475 -0.8506508083520400 1
|
||||
-0.0000000000000001 -1.0000000000000000 -0.0000000000000000 1
|
||||
polygon 19 ( 3 caps, 1 weight, 0.628318530717959 str):
|
||||
-0.5877852522924731 -0.8090169943749475 -0.0000000000000000 1
|
||||
-0.1624598481164532 0.5000000000000000 -0.8506508083520399 1
|
||||
0.9510565162951536 -0.3090169943749474 0.0000000000000001 1
|
28
masks/icosahedron/icosahedron.vrt
Normal file
28
masks/icosahedron/icosahedron.vrt
Normal file
|
@ -0,0 +1,28 @@
|
|||
The polygons of an icosohedron projected on the sky.
|
||||
There are 20 faces.
|
||||
Each face is a triangle, specified by 3 vertices.
|
||||
Each vertex is specified by an azimuth and elevation, in degrees.
|
||||
|
||||
unit d
|
||||
|
||||
vertices 0 3
|
||||
0 90 0 26.56505117707799 72 26.56505117707799
|
||||
0 90 72 26.56505117707799 144 26.56505117707799
|
||||
0 90 144 26.56505117707799 -144 26.56505117707799
|
||||
0 90 -144 26.56505117707799 -72 26.56505117707799
|
||||
0 90 -72 26.56505117707799 0 26.56505117707799
|
||||
0 26.56505117707799 36 -26.56505117707799 72 26.56505117707799
|
||||
72 26.56505117707799 108 -26.56505117707799 144 26.56505117707799
|
||||
144 26.56505117707799 180 -26.56505117707799 -144 26.56505117707799
|
||||
-144 26.56505117707799 -108 -26.56505117707799 -72 26.56505117707799
|
||||
-72 26.56505117707799 -36 -26.56505117707799 0 26.56505117707799
|
||||
36 -26.56505117707799 0 26.56505117707799 -36 -26.56505117707799
|
||||
108 -26.56505117707799 72 26.56505117707799 36 -26.56505117707799
|
||||
180 -26.56505117707799 144 26.56505117707799 108 -26.56505117707799
|
||||
-108 -26.56505117707799 -144 26.56505117707799 180 -26.56505117707799
|
||||
-36 -26.56505117707799 -72 26.56505117707799 -108 -26.56505117707799
|
||||
0 -90 36 -26.56505117707799 -36 -26.56505117707799
|
||||
0 -90 108 -26.56505117707799 36 -26.56505117707799
|
||||
0 -90 180 -26.56505117707799 108 -26.56505117707799
|
||||
0 -90 -108 -26.56505117707799 180 -26.56505117707799
|
||||
0 -90 -36 -26.56505117707799 -108 -26.56505117707799
|
15
masks/pscz/README
Normal file
15
masks/pscz/README
Normal file
|
@ -0,0 +1,15 @@
|
|||
PSCz_hib holes
|
||||
--------------
|
||||
|
||||
hibpscz.exclude.long original pixelized holes,
|
||||
interpreted from Will Saunders' hibpsczmask.dat
|
||||
hibpscz.exclude.long.rect original pixelized holes in rectangle format
|
||||
|
||||
hibpscz.exclude.orig original holes unify'd by hand in ancient times
|
||||
hibpscz.excludes hibpscz.exclude.orig with comments
|
||||
hibpscz.exclude.rect hibpscz.exclude.orig in rectangle format
|
||||
|
||||
PSCz_hib mask
|
||||
-------------
|
||||
|
||||
hibpscz.pol balkanized polygon file.
|
506
masks/pscz/allsky.pol
Normal file
506
masks/pscz/allsky.pol
Normal file
|
@ -0,0 +1,506 @@
|
|||
Produced by
|
||||
snap allsky.rect allsky.pol
|
||||
|
||||
168 polygons
|
||||
polygon 0 ( 1 caps, 1 weight, 0.126136800963694 str):
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 0.02007529537917041
|
||||
polygon 1 ( 2 caps, 1 weight, 0.022799778821830 str):
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 0.02370399288006664
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 -0.02007529537917041
|
||||
polygon 2 ( 2 caps, 1 weight, 0.024668330407997 str):
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 0.02763007960232344
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 -0.02370399288006664
|
||||
polygon 3 ( 2 caps, 1 weight, 0.026529367781753 str):
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 0.03185235962189226
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 -0.02763007960232344
|
||||
polygon 4 ( 2 caps, 1 weight, 0.028382324053087 str):
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 0.03636954679137705
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 -0.03185235962189226
|
||||
polygon 5 ( 2 caps, 1 weight, 0.030226634793568 str):
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 0.04118026513180695
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 -0.03636954679137705
|
||||
polygon 6 ( 2 caps, 1 weight, 0.032061738208281 str):
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 0.04628304925177318
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 -0.04118026513180695
|
||||
polygon 7 ( 2 caps, 1 weight, 0.033887075306944 str):
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 0.05167634479380068
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 -0.04628304925177318
|
||||
polygon 8 ( 2 caps, 1 weight, 0.035702090074199 str):
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 0.05735850890782157
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 -0.05167634479380068
|
||||
polygon 9 ( 2 caps, 1 weight, 0.037506229638964 str):
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 0.06332781075160243
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 -0.05735850890782157
|
||||
polygon 10 ( 2 caps, 1 weight, 0.039298944442848 str):
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 0.06958243201797543
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 -0.06332781075160243
|
||||
polygon 11 ( 2 caps, 1 weight, 0.041079688407559 str):
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 0.07612046748871326
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 -0.06958243201797543
|
||||
polygon 12 ( 2 caps, 1 weight, 0.042847919101232 str):
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 0.08293992561487595
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 -0.07612046748871326
|
||||
polygon 13 ( 2 caps, 1 weight, 0.044603097903670 str):
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 0.09003872912345678
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 -0.08293992561487595
|
||||
polygon 14 ( 2 caps, 1 weight, 0.046344690170407 str):
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 0.09741471565013948
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 -0.09003872912345678
|
||||
polygon 15 ( 2 caps, 1 weight, 0.048072165395566 str):
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 0.105065638397975
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 -0.09741471565013948
|
||||
polygon 16 ( 2 caps, 1 weight, 0.049784997373461 str):
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 0.1129891668217783
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 -0.105065638397975
|
||||
polygon 17 ( 2 caps, 1 weight, 0.051482664358878 str):
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 0.1211828873380346
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 -0.1129891668217783
|
||||
polygon 18 ( 2 caps, 1 weight, 0.053164649226007 str):
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 0.1296443040601003
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 -0.1211828873380346
|
||||
polygon 19 ( 2 caps, 1 weight, 0.054830439625965 str):
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 0.1383708395584743
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 -0.1296443040601003
|
||||
polygon 20 ( 2 caps, 1 weight, 0.056479528142857 str):
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 0.1473598356459078
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 -0.1383708395584743
|
||||
polygon 21 ( 2 caps, 1 weight, 0.058111412448348 str):
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 0.1566085541871143
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 -0.1473598356459078
|
||||
polygon 22 ( 2 caps, 1 weight, 0.059725595454670 str):
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 0.1661141779328319
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 -0.1566085541871143
|
||||
polygon 23 ( 2 caps, 1 weight, 0.061321585466040 str):
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 0.1758738113779843
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 -0.1661141779328319
|
||||
polygon 24 ( 2 caps, 1 weight, 0.062898896328444 str):
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 0.1858844816436808
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 -0.1758738113779843
|
||||
polygon 25 ( 2 caps, 1 weight, 0.064457047577709 str):
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 0.1961431393827827
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 -0.1858844816436808
|
||||
polygon 26 ( 2 caps, 1 weight, 0.065995564585873 str):
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 0.2066466597087648
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 -0.1961431393827827
|
||||
polygon 27 ( 2 caps, 1 weight, 0.067513978705751 str):
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 0.2173918431475861
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 -0.2066466597087648
|
||||
polygon 28 ( 2 caps, 1 weight, 0.069011827413693 str):
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 0.22837541661228
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 -0.2173918431475861
|
||||
polygon 29 ( 2 caps, 1 weight, 0.070488654450472 str):
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 0.2395940343999691
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 -0.22837541661228
|
||||
polygon 30 ( 2 caps, 1 weight, 0.071944009960266 str):
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 0.2510442792109979
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 -0.2395940343999691
|
||||
polygon 31 ( 2 caps, 1 weight, 0.073377450627688 str):
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 0.262722663189876
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 -0.2510442792109979
|
||||
polygon 32 ( 2 caps, 1 weight, 0.074788539812826 str):
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 0.2746256289877124
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 -0.262722663189876
|
||||
polygon 33 ( 2 caps, 1 weight, 0.076176847684246 str):
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 0.2867495508458184
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 -0.2746256289877124
|
||||
polygon 34 ( 2 caps, 1 weight, 0.077541951349918 str):
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 0.2990907357001491
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 -0.2867495508458184
|
||||
polygon 35 ( 2 caps, 1 weight, 0.078883434986044 str):
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 0.3116454243062461
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 -0.2990907357001491
|
||||
polygon 36 ( 2 caps, 1 weight, 0.080200889963710 str):
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 0.3244097923843398
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 -0.3116454243062461
|
||||
polygon 37 ( 2 caps, 1 weight, 0.081493914973372 str):
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 0.3373799517842625
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 -0.3244097923843398
|
||||
polygon 38 ( 2 caps, 1 weight, 0.082762116147083 str):
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 0.3505519516698163
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 -0.3373799517842625
|
||||
polygon 39 ( 2 caps, 1 weight, 0.084005107178481 str):
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 0.363921779722236
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 -0.3505519516698163
|
||||
polygon 40 ( 2 caps, 1 weight, 0.085222509440457 str):
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 0.3774853633623805
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 -0.363921779722236
|
||||
polygon 41 ( 2 caps, 1 weight, 0.086413952100487 str):
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 0.3912385709912793
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 -0.3774853633623805
|
||||
polygon 42 ( 2 caps, 1 weight, 0.087579072233599 str):
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 0.4051772132486587
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 -0.3912385709912793
|
||||
polygon 43 ( 2 caps, 1 weight, 0.088717514932909 str):
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 0.4192970442890602
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 -0.4051772132486587
|
||||
polygon 44 ( 2 caps, 1 weight, 0.089828933417745 str):
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 0.4335937630751672
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 -0.4192970442890602
|
||||
polygon 45 ( 2 caps, 1 weight, 0.090912989139270 str):
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 0.4480630146879419
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 -0.4335937630751672
|
||||
polygon 46 ( 2 caps, 1 weight, 0.091969351883609 str):
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 0.4627003916531761
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 -0.4480630146879419
|
||||
polygon 47 ( 2 caps, 1 weight, 0.092997699872438 str):
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 0.4775014352840512
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 -0.4627003916531761
|
||||
polygon 48 ( 2 caps, 1 weight, 0.093997719860996 str):
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 0.4924616370392959
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 -0.4775014352840512
|
||||
polygon 49 ( 2 caps, 1 weight, 0.094969107233508 str):
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 0.507576439896533
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 -0.4924616370392959
|
||||
polygon 50 ( 2 caps, 1 weight, 0.095911566095970 str):
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 0.5228412397403917
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 -0.507576439896533
|
||||
polygon 51 ( 2 caps, 1 weight, 0.096824809366283 str):
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 0.5382513867649661
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 -0.5228412397403917
|
||||
polygon 52 ( 2 caps, 1 weight, 0.097708558861701 str):
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 0.5538021868901912
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 -0.5382513867649661
|
||||
polygon 53 ( 2 caps, 1 weight, 0.098562545383565 str):
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 0.5694889031917049
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 -0.5538021868901912
|
||||
polygon 54 ( 2 caps, 1 weight, 0.099386508799308 str):
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 0.5853067573437609
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 -0.5694889031917049
|
||||
polygon 55 ( 2 caps, 1 weight, 0.100180198121693 str):
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 0.6012509310747538
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 -0.5853067573437609
|
||||
polygon 56 ( 2 caps, 1 weight, 0.100943371585262 str):
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 0.6173165676349102
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 -0.6012509310747538
|
||||
polygon 57 ( 2 caps, 1 weight, 0.101675796719986 str):
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 0.6334987732757027
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 -0.6173165676349102
|
||||
polygon 58 ( 2 caps, 1 weight, 0.102377250422074 str):
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 0.6497926187405325
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 -0.6334987732757027
|
||||
polygon 59 ( 2 caps, 1 weight, 0.103047519021932 str):
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 0.6661931407662292
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 -0.6497926187405325
|
||||
polygon 60 ( 2 caps, 1 weight, 0.103686398349252 str):
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 0.6826953435949079
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 -0.6661931407662292
|
||||
polygon 61 ( 2 caps, 1 weight, 0.104293693795202 str):
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 0.6992942004957269
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 -0.6826953435949079
|
||||
polygon 62 ( 2 caps, 1 weight, 0.104869220371707 str):
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 0.7159846552960774
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 -0.6992942004957269
|
||||
polygon 63 ( 2 caps, 1 weight, 0.105412802767796 str):
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 0.7327616239217432
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 -0.7159846552960774
|
||||
polygon 64 ( 2 caps, 1 weight, 0.105924275403004 str):
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 0.7496199959455585
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 -0.7327616239217432
|
||||
polygon 65 ( 2 caps, 1 weight, 0.106403482477814 str):
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 0.7665546361440946
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 -0.7496199959455585
|
||||
polygon 66 ( 2 caps, 1 weight, 0.106850278021108 str):
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 0.7835603860618972
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 -0.7665546361440946
|
||||
polygon 67 ( 2 caps, 1 weight, 0.107264525934633 str):
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 0.8006320655828028
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 -0.7835603860618972
|
||||
polygon 68 ( 2 caps, 1 weight, 0.107646100034465 str):
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 0.8177644745078525
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 -0.8006320655828028
|
||||
polygon 69 ( 2 caps, 1 weight, 0.107994884089435 str):
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 0.8349523941393223
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 -0.8177644745078525
|
||||
polygon 70 ( 2 caps, 1 weight, 0.108310771856541 str):
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 0.8521905888703893
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 -0.8349523941393223
|
||||
polygon 71 ( 2 caps, 1 weight, 0.108593667113310 str):
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 0.8694738077799484
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 -0.8521905888703893
|
||||
polygon 72 ( 2 caps, 1 weight, 0.108843483687105 str):
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 0.8867967862320933
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 -0.8694738077799484
|
||||
polygon 73 ( 2 caps, 1 weight, 0.109060145481379 str):
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 0.904154247479776
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 -0.8867967862320933
|
||||
polygon 74 ( 2 caps, 1 weight, 0.109243586498850 str):
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 0.9215409042721551
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 -0.904154247479776
|
||||
polygon 75 ( 2 caps, 1 weight, 0.109393750861607 str):
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 0.9389514604651431
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 -0.9215409042721551
|
||||
polygon 76 ( 2 caps, 1 weight, 0.109510592828131 str):
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 0.956380612634664
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 -0.9389514604651431
|
||||
polygon 77 ( 2 caps, 1 weight, 0.109594076807226 str):
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 0.9738230516921269
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 -0.956380612634664
|
||||
polygon 78 ( 2 caps, 1 weight, 0.109644177368863 str):
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 0.991273464501626
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 -0.9738230516921269
|
||||
polygon 79 ( 2 caps, 1 weight, 0.109660879251929 str):
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 1.008726535498374
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 -0.991273464501626
|
||||
polygon 80 ( 2 caps, 1 weight, 0.109644177368864 str):
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 1.026176948307873
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 -1.008726535498374
|
||||
polygon 81 ( 2 caps, 1 weight, 0.109594076807227 str):
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 1.043619387365336
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 -1.026176948307873
|
||||
polygon 82 ( 2 caps, 1 weight, 0.109510592828130 str):
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 1.061048539534857
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 -1.043619387365336
|
||||
polygon 83 ( 2 caps, 1 weight, 0.109393750861609 str):
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 1.078459095727845
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 -1.061048539534857
|
||||
polygon 84 ( 2 caps, 1 weight, 0.109243586498850 str):
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 1.095845752520224
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 -1.078459095727845
|
||||
polygon 85 ( 2 caps, 1 weight, 0.109060145481378 str):
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 1.113203213767907
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 -1.095845752520224
|
||||
polygon 86 ( 2 caps, 1 weight, 0.108843483687106 str):
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 1.130526192220052
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 -1.113203213767907
|
||||
polygon 87 ( 2 caps, 1 weight, 0.108593667113310 str):
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 1.147809411129611
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 -1.130526192220052
|
||||
polygon 88 ( 2 caps, 1 weight, 0.108310771856540 str):
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 1.165047605860678
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 -1.147809411129611
|
||||
polygon 89 ( 2 caps, 1 weight, 0.107994884089435 str):
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 1.182235525492147
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 -1.165047605860678
|
||||
polygon 90 ( 2 caps, 1 weight, 0.107646100034465 str):
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 1.199367934417197
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 -1.182235525492147
|
||||
polygon 91 ( 2 caps, 1 weight, 0.107264525934633 str):
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 1.216439613938103
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 -1.199367934417197
|
||||
polygon 92 ( 2 caps, 1 weight, 0.106850278021107 str):
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 1.233445363855905
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 -1.216439613938103
|
||||
polygon 93 ( 2 caps, 1 weight, 0.106403482477815 str):
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 1.250380004054441
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 -1.233445363855905
|
||||
polygon 94 ( 2 caps, 1 weight, 0.105924275403004 str):
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 1.267238376078257
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 -1.250380004054441
|
||||
polygon 95 ( 2 caps, 1 weight, 0.105412802767796 str):
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 1.284015344703923
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 -1.267238376078257
|
||||
polygon 96 ( 2 caps, 1 weight, 0.104869220371707 str):
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 1.300705799504273
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 -1.284015344703923
|
||||
polygon 97 ( 2 caps, 1 weight, 0.104293693795202 str):
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 1.317304656405092
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 -1.300705799504273
|
||||
polygon 98 ( 2 caps, 1 weight, 0.103686398349251 str):
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 1.333806859233771
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 -1.317304656405092
|
||||
polygon 99 ( 2 caps, 1 weight, 0.103047519021932 str):
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 1.350207381259467
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 -1.333806859233771
|
||||
polygon 100 ( 2 caps, 1 weight, 0.102377250422073 str):
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 1.366501226724297
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 -1.350207381259467
|
||||
polygon 101 ( 2 caps, 1 weight, 0.101675796719986 str):
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 1.38268343236509
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 -1.366501226724297
|
||||
polygon 102 ( 2 caps, 1 weight, 0.100943371585262 str):
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 1.398749068925246
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 -1.38268343236509
|
||||
polygon 103 ( 2 caps, 1 weight, 0.100180198121694 str):
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 1.414693242656239
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 -1.398749068925246
|
||||
polygon 104 ( 2 caps, 1 weight, 0.099386508799308 str):
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 1.430511096808295
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 -1.414693242656239
|
||||
polygon 105 ( 2 caps, 1 weight, 0.098562545383565 str):
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 1.446197813109809
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 -1.430511096808295
|
||||
polygon 106 ( 2 caps, 1 weight, 0.097708558861701 str):
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 1.461748613235034
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 -1.446197813109809
|
||||
polygon 107 ( 2 caps, 1 weight, 0.096824809366284 str):
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 1.477158760259608
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 -1.461748613235034
|
||||
polygon 108 ( 2 caps, 1 weight, 0.095911566095970 str):
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 1.492423560103467
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 -1.477158760259608
|
||||
polygon 109 ( 2 caps, 1 weight, 0.094969107233507 str):
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 1.507538362960704
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 -1.492423560103467
|
||||
polygon 110 ( 2 caps, 1 weight, 0.093997719860996 str):
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 1.522498564715949
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 -1.507538362960704
|
||||
polygon 111 ( 2 caps, 1 weight, 0.092997699872440 str):
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 1.537299608346824
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 -1.522498564715949
|
||||
polygon 112 ( 2 caps, 1 weight, 0.091969351883608 str):
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 1.551936985312058
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 -1.537299608346824
|
||||
polygon 113 ( 2 caps, 1 weight, 0.090912989139271 str):
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 1.566406236924833
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 -1.551936985312058
|
||||
polygon 114 ( 2 caps, 1 weight, 0.089828933417746 str):
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 1.58070295571094
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 -1.566406236924833
|
||||
polygon 115 ( 2 caps, 1 weight, 0.088717514932908 str):
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 1.594822786751341
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 -1.58070295571094
|
||||
polygon 116 ( 2 caps, 1 weight, 0.087579072233599 str):
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 1.608761429008721
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 -1.594822786751341
|
||||
polygon 117 ( 2 caps, 1 weight, 0.086413952100487 str):
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 1.62251463663762
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 -1.608761429008721
|
||||
polygon 118 ( 2 caps, 1 weight, 0.085222509440457 str):
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 1.636078220277764
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 -1.62251463663762
|
||||
polygon 119 ( 2 caps, 1 weight, 0.084005107178481 str):
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 1.649448048330184
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 -1.636078220277764
|
||||
polygon 120 ( 2 caps, 1 weight, 0.082762116147084 str):
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 1.662620048215738
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 -1.649448048330184
|
||||
polygon 121 ( 2 caps, 1 weight, 0.081493914973372 str):
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 1.67559020761566
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 -1.662620048215738
|
||||
polygon 122 ( 2 caps, 1 weight, 0.080200889963709 str):
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 1.688354575693754
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 -1.67559020761566
|
||||
polygon 123 ( 2 caps, 1 weight, 0.078883434986043 str):
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 1.700909264299851
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 -1.688354575693754
|
||||
polygon 124 ( 2 caps, 1 weight, 0.077541951349917 str):
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 1.713250449154182
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 -1.700909264299851
|
||||
polygon 125 ( 2 caps, 1 weight, 0.076176847684244 str):
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 1.725374371012288
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 -1.713250449154182
|
||||
polygon 126 ( 2 caps, 1 weight, 0.074788539812827 str):
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 1.737277336810124
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 -1.725374371012288
|
||||
polygon 127 ( 2 caps, 1 weight, 0.073377450627688 str):
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 1.748955720789002
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 -1.737277336810124
|
||||
polygon 128 ( 2 caps, 1 weight, 0.071944009960266 str):
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 1.760405965600031
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 -1.748955720789002
|
||||
polygon 129 ( 2 caps, 1 weight, 0.070488654450471 str):
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 1.77162458338772
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 -1.760405965600031
|
||||
polygon 130 ( 2 caps, 1 weight, 0.069011827413693 str):
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 1.782608156852414
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 -1.77162458338772
|
||||
polygon 131 ( 2 caps, 1 weight, 0.067513978705752 str):
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 1.793353340291235
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 -1.782608156852414
|
||||
polygon 132 ( 2 caps, 1 weight, 0.065995564585873 str):
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 1.803856860617217
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 -1.793353340291235
|
||||
polygon 133 ( 2 caps, 1 weight, 0.064457047577710 str):
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 1.814115518356319
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 -1.803856860617217
|
||||
polygon 134 ( 2 caps, 1 weight, 0.062898896328442 str):
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 1.824126188622016
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 -1.814115518356319
|
||||
polygon 135 ( 2 caps, 1 weight, 0.061321585466039 str):
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 1.833885822067168
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 -1.824126188622016
|
||||
polygon 136 ( 2 caps, 1 weight, 0.059725595454670 str):
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 1.843391445812886
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 -1.833885822067168
|
||||
polygon 137 ( 2 caps, 1 weight, 0.058111412448347 str):
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 1.852640164354092
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 -1.843391445812886
|
||||
polygon 138 ( 2 caps, 1 weight, 0.056479528142856 str):
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 1.861629160441526
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 -1.852640164354092
|
||||
polygon 139 ( 2 caps, 1 weight, 0.054830439625965 str):
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 1.8703556959399
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 -1.861629160441526
|
||||
polygon 140 ( 2 caps, 1 weight, 0.053164649226007 str):
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 1.878817112661965
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 -1.8703556959399
|
||||
polygon 141 ( 2 caps, 1 weight, 0.051482664358878 str):
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 1.887010833178222
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 -1.878817112661965
|
||||
polygon 142 ( 2 caps, 1 weight, 0.049784997373461 str):
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 1.894934361602025
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 -1.887010833178222
|
||||
polygon 143 ( 2 caps, 1 weight, 0.048072165395567 str):
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 1.902585284349861
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 -1.894934361602025
|
||||
polygon 144 ( 2 caps, 1 weight, 0.046344690170408 str):
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 1.909961270876543
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 -1.902585284349861
|
||||
polygon 145 ( 2 caps, 1 weight, 0.044603097903670 str):
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 1.917060074385124
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 -1.909961270876543
|
||||
polygon 146 ( 2 caps, 1 weight, 0.042847919101233 str):
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 1.923879532511287
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 -1.917060074385124
|
||||
polygon 147 ( 2 caps, 1 weight, 0.041079688407559 str):
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 1.930417567982025
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 -1.923879532511287
|
||||
polygon 148 ( 2 caps, 1 weight, 0.039298944442848 str):
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 1.936672189248398
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 -1.930417567982025
|
||||
polygon 149 ( 2 caps, 1 weight, 0.037506229638965 str):
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 1.942641491092179
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 -1.936672189248398
|
||||
polygon 150 ( 2 caps, 1 weight, 0.035702090074198 str):
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 1.948323655206199
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 -1.942641491092179
|
||||
polygon 151 ( 2 caps, 1 weight, 0.033887075306944 str):
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 1.953716950748227
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 -1.948323655206199
|
||||
polygon 152 ( 2 caps, 1 weight, 0.032061738208280 str):
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 1.958819734868193
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 -1.953716950748227
|
||||
polygon 153 ( 2 caps, 1 weight, 0.030226634793567 str):
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 1.963630453208623
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 -1.958819734868193
|
||||
polygon 154 ( 2 caps, 1 weight, 0.028382324053088 str):
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 1.968147640378108
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 -1.963630453208623
|
||||
polygon 155 ( 2 caps, 1 weight, 0.026529367781752 str):
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 1.972369920397677
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 -1.968147640378108
|
||||
polygon 156 ( 2 caps, 1 weight, 0.024668330407997 str):
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 1.976296007119933
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 -1.972369920397677
|
||||
polygon 157 ( 2 caps, 1 weight, 0.022799778821832 str):
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 1.97992470462083
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 -1.976296007119933
|
||||
polygon 158 ( 2 caps, 1 weight, 0.020924282202169 str):
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 1.983254907563955
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 -1.97992470462083
|
||||
polygon 159 ( 2 caps, 1 weight, 0.036197152825067 str):
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 1.989015863361917
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 -1.983254907563955
|
||||
polygon 160 ( 2 caps, 1 weight, 0.015261844619499 str):
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 1.99144486137381
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 -1.989015863361917
|
||||
polygon 161 ( 2 caps, 1 weight, 0.013364299351663 str):
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 1.993571855676588
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 -1.99144486137381
|
||||
polygon 162 ( 2 caps, 1 weight, 0.011462683188781 str):
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 1.995396198367179
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 -1.993571855676588
|
||||
polygon 163 ( 2 caps, 1 weight, 0.009557575381565 str):
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 1.996917333733128
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 -1.995396198367179
|
||||
polygon 164 ( 2 caps, 1 weight, 0.007649556244294 str):
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 1.998134798421867
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 -1.996917333733128
|
||||
polygon 165 ( 2 caps, 1 weight, 0.005739206978094 str):
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 1.999048221581858
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 -1.998134798421867
|
||||
polygon 166 ( 2 caps, 1 weight, 0.003827109493845 str):
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 1.999657324975557
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 -1.999048221581858
|
||||
polygon 167 ( 1 caps, 1 weight, 0.002153090678716 str):
|
||||
0.0000000000000000 0.0000000000000000 1.0000000000000000 -1.999657324975557
|
175
masks/pscz/allsky.rect
Normal file
175
masks/pscz/allsky.rect
Normal file
|
@ -0,0 +1,175 @@
|
|||
This polygon file is actually the entire sky,
|
||||
but arranged so that it produces a shorter polygon file when
|
||||
balkanized with the PSCz_hib holes in hibpscz.exclude.pol
|
||||
|
||||
rectangle
|
||||
unit d
|
||||
az- az+ el- el+
|
||||
0 360 78.5 90.0
|
||||
0 360 77.5 78.5
|
||||
0 360 76.5 77.5
|
||||
0 360 75.5 76.5
|
||||
0 360 74.5 75.5
|
||||
0 360 73.5 74.5
|
||||
0 360 72.5 73.5
|
||||
0 360 71.5 72.5
|
||||
0 360 70.5 71.5
|
||||
0 360 69.5 70.5
|
||||
0 360 68.5 69.5
|
||||
0 360 67.5 68.5
|
||||
0 360 66.5 67.5
|
||||
0 360 65.5 66.5
|
||||
0 360 64.5 65.5
|
||||
0 360 63.5 64.5
|
||||
0 360 62.5 63.5
|
||||
0 360 61.5 62.5
|
||||
0 360 60.5 61.5
|
||||
0 360 59.5 60.5
|
||||
0 360 58.5 59.5
|
||||
0 360 57.5 58.5
|
||||
0 360 56.5 57.5
|
||||
0 360 55.5 56.5
|
||||
0 360 54.5 55.5
|
||||
0 360 53.5 54.5
|
||||
0 360 52.5 53.5
|
||||
0 360 51.5 52.5
|
||||
0 360 50.5 51.5
|
||||
0 360 49.5 50.5
|
||||
0 360 48.5 49.5
|
||||
0 360 47.5 48.5
|
||||
0 360 46.5 47.5
|
||||
0 360 45.5 46.5
|
||||
0 360 44.5 45.5
|
||||
0 360 43.5 44.5
|
||||
0 360 42.5 43.5
|
||||
0 360 41.5 42.5
|
||||
0 360 40.5 41.5
|
||||
0 360 39.5 40.5
|
||||
0 360 38.5 39.5
|
||||
0 360 37.5 38.5
|
||||
0 360 36.5 37.5
|
||||
0 360 35.5 36.5
|
||||
0 360 34.5 35.5
|
||||
0 360 33.5 34.5
|
||||
0 360 32.5 33.5
|
||||
0 360 31.5 32.5
|
||||
0 360 30.5 31.5
|
||||
0 360 29.5 30.5
|
||||
0 360 28.5 29.5
|
||||
0 360 27.5 28.5
|
||||
0 360 26.5 27.5
|
||||
0 360 25.5 26.5
|
||||
0 360 24.5 25.5
|
||||
0 360 23.5 24.5
|
||||
0 360 22.5 23.5
|
||||
0 360 21.5 22.5
|
||||
0 360 20.5 21.5
|
||||
0 360 19.5 20.5
|
||||
0 360 18.5 19.5
|
||||
0 360 17.5 18.5
|
||||
0 360 16.5 17.5
|
||||
0 360 15.5 16.5
|
||||
0 360 14.5 15.5
|
||||
0 360 13.5 14.5
|
||||
0 360 12.5 13.5
|
||||
0 360 11.5 12.5
|
||||
0 360 10.5 11.5
|
||||
0 360 9.5 10.5
|
||||
0 360 8.5 9.5
|
||||
0 360 7.5 8.5
|
||||
0 360 6.5 7.5
|
||||
0 360 5.5 6.5
|
||||
0 360 4.5 5.5
|
||||
0 360 3.5 4.5
|
||||
0 360 2.5 3.5
|
||||
0 360 1.5 2.5
|
||||
0 360 0.5 1.5
|
||||
0 360 -0.5 0.5
|
||||
0 360 -1.5 -0.5
|
||||
0 360 -2.5 -1.5
|
||||
0 360 -3.5 -2.5
|
||||
0 360 -4.5 -3.5
|
||||
0 360 -5.5 -4.5
|
||||
0 360 -6.5 -5.5
|
||||
0 360 -7.5 -6.5
|
||||
0 360 -8.5 -7.5
|
||||
0 360 -9.5 -8.5
|
||||
0 360 -10.5 -9.5
|
||||
0 360 -11.5 -10.5
|
||||
0 360 -12.5 -11.5
|
||||
0 360 -13.5 -12.5
|
||||
0 360 -14.5 -13.5
|
||||
0 360 -15.5 -14.5
|
||||
0 360 -16.5 -15.5
|
||||
0 360 -17.5 -16.5
|
||||
0 360 -18.5 -17.5
|
||||
0 360 -19.5 -18.5
|
||||
0 360 -20.5 -19.5
|
||||
0 360 -21.5 -20.5
|
||||
0 360 -22.5 -21.5
|
||||
0 360 -23.5 -22.5
|
||||
0 360 -24.5 -23.5
|
||||
0 360 -25.5 -24.5
|
||||
0 360 -26.5 -25.5
|
||||
0 360 -27.5 -26.5
|
||||
0 360 -28.5 -27.5
|
||||
0 360 -29.5 -28.5
|
||||
0 360 -30.5 -29.5
|
||||
0 360 -31.5 -30.5
|
||||
0 360 -32.5 -31.5
|
||||
0 360 -33.5 -32.5
|
||||
0 360 -34.5 -33.5
|
||||
0 360 -35.5 -34.5
|
||||
0 360 -36.5 -35.5
|
||||
0 360 -37.5 -36.5
|
||||
0 360 -38.5 -37.5
|
||||
0 360 -39.5 -38.5
|
||||
0 360 -40.5 -39.5
|
||||
0 360 -41.5 -40.5
|
||||
0 360 -42.5 -41.5
|
||||
0 360 -43.5 -42.5
|
||||
0 360 -44.5 -43.5
|
||||
0 360 -45.5 -44.5
|
||||
0 360 -46.5 -45.5
|
||||
0 360 -47.5 -46.5
|
||||
0 360 -48.5 -47.5
|
||||
0 360 -49.5 -48.5
|
||||
0 360 -50.5 -49.5
|
||||
0 360 -51.5 -50.5
|
||||
0 360 -52.5 -51.5
|
||||
0 360 -53.5 -52.5
|
||||
0 360 -54.5 -53.5
|
||||
0 360 -55.5 -54.5
|
||||
0 360 -56.5 -55.5
|
||||
0 360 -57.5 -56.5
|
||||
0 360 -58.5 -57.5
|
||||
0 360 -59.5 -58.5
|
||||
0 360 -60.5 -59.5
|
||||
0 360 -61.5 -60.5
|
||||
0 360 -62.5 -61.5
|
||||
0 360 -63.5 -62.5
|
||||
0 360 -64.5 -63.5
|
||||
0 360 -65.5 -64.5
|
||||
0 360 -66.5 -65.5
|
||||
0 360 -67.5 -66.5
|
||||
0 360 -68.5 -67.5
|
||||
0 360 -69.5 -68.5
|
||||
0 360 -70.5 -69.5
|
||||
0 360 -71.5 -70.5
|
||||
0 360 -72.5 -71.5
|
||||
0 360 -73.5 -72.5
|
||||
0 360 -74.5 -73.5
|
||||
0 360 -75.5 -74.5
|
||||
0 360 -76.5 -75.5
|
||||
0 360 -77.5 -76.5
|
||||
0 360 -78.5 -77.5
|
||||
0 360 -79.5 -78.5
|
||||
0 360 -81.5 -79.5
|
||||
0 360 -82.5 -81.5
|
||||
0 360 -83.5 -82.5
|
||||
0 360 -84.5 -83.5
|
||||
0 360 -85.5 -84.5
|
||||
0 360 -86.5 -85.5
|
||||
0 360 -87.5 -86.5
|
||||
0 360 -88.5 -87.5
|
||||
0 360 -90.0 -88.5
|
11478
masks/pscz/hibpscz.exclude.long
Normal file
11478
masks/pscz/hibpscz.exclude.long
Normal file
File diff suppressed because it is too large
Load diff
11480
masks/pscz/hibpscz.exclude.long.rect
Normal file
11480
masks/pscz/hibpscz.exclude.long.rect
Normal file
File diff suppressed because it is too large
Load diff
669
masks/pscz/hibpscz.exclude.orig
Normal file
669
masks/pscz/hibpscz.exclude.orig
Normal file
|
@ -0,0 +1,669 @@
|
|||
el+ el- az- az+ azt
|
||||
78 78 11 12 74
|
||||
77 77 4 4 80
|
||||
77 77 7 13 80
|
||||
76 76 2 4 87
|
||||
76 76 7 14 87
|
||||
75 75 1 15 93
|
||||
74 74 96 97 99
|
||||
74 74 99 16 99
|
||||
73 73 98 17 105
|
||||
72 72 103 18 111
|
||||
71 71 108 19 117
|
||||
70 70 113 20 123
|
||||
69 69 119 21 129
|
||||
68 68 121 121 134
|
||||
68 68 124 21 134
|
||||
67 67 126 22 140
|
||||
66 66 127 22 146
|
||||
65 65 132 25 152
|
||||
64 64 137 26 157
|
||||
63 63 142 29 163
|
||||
62 62 147 31 169
|
||||
61 61 148 33 174
|
||||
60 60 152 35 179
|
||||
59 59 157 37 185
|
||||
58 58 160 38 190
|
||||
57 57 167 39 196
|
||||
56 56 169 169 201
|
||||
56 56 171 40 201
|
||||
55 55 170 170 206
|
||||
55 55 172 41 206
|
||||
54 54 173 42 211
|
||||
53 53 174 175 216
|
||||
53 53 177 44 216
|
||||
52 52 8 45 221
|
||||
52 52 173 173 221
|
||||
52 52 175 176 221
|
||||
52 52 178 178 221
|
||||
52 52 180 6 221
|
||||
51 51 11 46 226
|
||||
51 51 182 8 226
|
||||
50 50 5 9 231
|
||||
50 50 11 48 231
|
||||
50 50 186 1 231
|
||||
49 49 11 11 236
|
||||
49 49 13 49 236
|
||||
49 49 107 107 236
|
||||
49 49 189 233 236
|
||||
49 49 235 236 236
|
||||
48 48 6 7 240
|
||||
48 48 17 51 240
|
||||
48 48 108 108 240
|
||||
48 48 110 110 240
|
||||
48 48 192 236 240
|
||||
48 48 239 239 240
|
||||
47 47 7 7 245
|
||||
47 47 18 52 245
|
||||
47 47 110 112 245
|
||||
47 47 195 238 245
|
||||
46 46 19 54 250
|
||||
46 46 111 114 250
|
||||
46 46 198 239 250
|
||||
46 46 241 242 250
|
||||
46 46 244 244 250
|
||||
45 45 20 56 254
|
||||
45 45 114 116 254
|
||||
45 45 197 234 254
|
||||
45 45 237 242 254
|
||||
45 45 245 245 254
|
||||
45 45 254 3 254
|
||||
44 44 22 58 258
|
||||
44 44 115 118 258
|
||||
44 44 198 232 258
|
||||
44 44 235 239 258
|
||||
44 44 241 246 258
|
||||
43 43 23 59 263
|
||||
43 43 117 120 263
|
||||
43 43 201 241 263
|
||||
43 43 245 250 263
|
||||
42 42 24 60 267
|
||||
42 42 119 122 267
|
||||
42 42 204 236 267
|
||||
42 42 239 244 267
|
||||
42 42 249 254 267
|
||||
42 42 260 260 267
|
||||
41 41 26 61 271
|
||||
41 41 121 124 271
|
||||
41 41 206 240 271
|
||||
41 41 243 243 271
|
||||
41 41 246 247 271
|
||||
41 41 253 258 271
|
||||
40 40 29 36 275
|
||||
40 40 38 63 275
|
||||
40 40 122 125 275
|
||||
40 40 209 243 275
|
||||
40 40 247 247 275
|
||||
40 40 257 262 275
|
||||
40 40 268 268 275
|
||||
39 39 31 37 279
|
||||
39 39 40 64 279
|
||||
39 39 124 127 279
|
||||
39 39 212 243 279
|
||||
39 39 261 266 279
|
||||
38 38 32 35 283
|
||||
38 38 37 37 283
|
||||
38 38 43 65 283
|
||||
38 38 126 129 283
|
||||
38 38 216 245 283
|
||||
38 38 248 248 283
|
||||
38 38 265 270 283
|
||||
37 37 34 37 287
|
||||
37 37 44 68 287
|
||||
37 37 128 131 287
|
||||
37 37 220 248 287
|
||||
37 37 269 274 287
|
||||
36 36 37 38 291
|
||||
36 36 44 67 291
|
||||
36 36 129 133 291
|
||||
36 36 217 217 291
|
||||
36 36 219 219 291
|
||||
36 36 223 251 291
|
||||
36 36 273 278 291
|
||||
35 35 44 70 294
|
||||
35 35 130 134 294
|
||||
35 35 218 219 294
|
||||
35 35 225 254 294
|
||||
35 35 276 281 294
|
||||
34 34 45 71 298
|
||||
34 34 132 136 298
|
||||
34 34 218 220 298
|
||||
34 34 228 257 298
|
||||
34 34 279 284 298
|
||||
33 33 23 23 301
|
||||
33 33 46 71 301
|
||||
33 33 133 137 301
|
||||
33 33 221 221 301
|
||||
33 33 223 225 301
|
||||
33 33 227 255 301
|
||||
33 33 258 259 301
|
||||
33 33 282 286 301
|
||||
32 32 47 72 305
|
||||
32 32 135 139 305
|
||||
32 32 227 258 305
|
||||
32 32 286 290 305
|
||||
31 31 48 72 308
|
||||
31 31 136 140 308
|
||||
31 31 230 261 308
|
||||
31 31 289 293 308
|
||||
30 30 50 73 311
|
||||
30 30 137 142 311
|
||||
30 30 234 265 311
|
||||
30 30 292 296 311
|
||||
30 30 303 303 311
|
||||
29 29 51 73 314
|
||||
29 29 75 76 314
|
||||
29 29 139 143 314
|
||||
29 29 237 263 314
|
||||
29 29 265 265 314
|
||||
29 29 268 268 314
|
||||
29 29 295 299 314
|
||||
28 28 52 71 317
|
||||
28 28 73 73 317
|
||||
28 28 140 145 317
|
||||
28 28 234 265 317
|
||||
28 28 267 268 317
|
||||
28 28 298 302 317
|
||||
28 28 309 309 317
|
||||
27 27 50 71 320
|
||||
27 27 74 75 320
|
||||
27 27 141 146 320
|
||||
27 27 236 237 320
|
||||
27 27 239 268 320
|
||||
27 27 271 271 320
|
||||
27 27 300 305 320
|
||||
27 27 312 312 320
|
||||
26 26 51 72 323
|
||||
26 26 75 75 323
|
||||
26 26 142 147 323
|
||||
26 26 238 271 323
|
||||
26 26 298 298 323
|
||||
26 26 304 308 323
|
||||
25 25 52 75 326
|
||||
25 25 77 77 326
|
||||
25 25 144 148 326
|
||||
25 25 239 272 326
|
||||
25 25 307 311 326
|
||||
24 24 54 78 328
|
||||
24 24 145 149 328
|
||||
24 24 240 274 328
|
||||
24 24 308 313 328
|
||||
23 23 54 80 331
|
||||
23 23 146 151 331
|
||||
23 23 236 240 331
|
||||
23 23 242 277 331
|
||||
23 23 311 316 331
|
||||
22 22 55 81 333
|
||||
22 22 147 151 333
|
||||
22 22 236 279 333
|
||||
22 22 313 317 333
|
||||
21 21 55 55 336
|
||||
21 21 58 79 336
|
||||
21 21 149 153 336
|
||||
21 21 238 281 336
|
||||
21 21 316 320 336
|
||||
20 20 55 55 338
|
||||
20 20 59 81 338
|
||||
20 20 149 154 338
|
||||
20 20 239 282 338
|
||||
20 20 318 322 338
|
||||
19 19 31 31 340
|
||||
19 19 54 54 340
|
||||
19 19 59 82 340
|
||||
19 19 150 154 340
|
||||
19 19 233 236 340
|
||||
19 19 238 281 340
|
||||
19 19 283 284 340
|
||||
19 19 320 324 340
|
||||
18 18 54 82 342
|
||||
18 18 151 155 342
|
||||
18 18 232 282 342
|
||||
18 18 285 287 342
|
||||
18 18 322 326 342
|
||||
17 17 56 87 344
|
||||
17 17 152 156 344
|
||||
17 17 233 284 344
|
||||
17 17 287 289 344
|
||||
17 17 324 328 344
|
||||
16 16 56 87 346
|
||||
16 16 153 157 346
|
||||
16 16 227 228 346
|
||||
16 16 231 286 346
|
||||
16 16 289 289 346
|
||||
16 16 326 330 346
|
||||
15 15 54 87 347
|
||||
15 15 153 158 347
|
||||
15 15 229 229 347
|
||||
15 15 232 286 347
|
||||
15 15 290 290 347
|
||||
15 15 326 331 347
|
||||
14 14 53 88 349
|
||||
14 14 154 159 349
|
||||
14 14 233 288 349
|
||||
14 14 328 333 349
|
||||
13 13 53 92 350
|
||||
13 13 154 159 350
|
||||
13 13 232 288 350
|
||||
13 13 324 324 350
|
||||
13 13 329 334 350
|
||||
13 13 342 342 350
|
||||
12 12 53 93 352
|
||||
12 12 155 160 352
|
||||
12 12 232 290 352
|
||||
12 12 326 326 352
|
||||
12 12 331 336 352
|
||||
12 12 344 344 352
|
||||
11 11 52 93 353
|
||||
11 11 156 161 353
|
||||
11 11 232 291 353
|
||||
11 11 327 327 353
|
||||
11 11 332 337 353
|
||||
11 11 345 345 353
|
||||
10 10 9 9 354
|
||||
10 10 52 62 354
|
||||
10 10 64 94 354
|
||||
10 10 156 161 354
|
||||
10 10 231 291 354
|
||||
10 10 333 338 354
|
||||
10 10 351 351 354
|
||||
9 9 9 9 355
|
||||
9 9 52 56 355
|
||||
9 9 58 58 355
|
||||
9 9 62 93 355
|
||||
9 9 157 161 355
|
||||
9 9 232 292 355
|
||||
9 9 334 339 355
|
||||
9 9 352 352 355
|
||||
8 8 9 9 356
|
||||
8 8 64 93 356
|
||||
8 8 157 162 356
|
||||
8 8 232 293 356
|
||||
8 8 335 340 356
|
||||
7 7 9 9 357
|
||||
7 7 65 94 357
|
||||
7 7 158 162 357
|
||||
7 7 234 291 357
|
||||
7 7 293 294 357
|
||||
7 7 336 341 357
|
||||
6 6 66 93 358
|
||||
6 6 234 288 358
|
||||
6 5 158 163 358
|
||||
6 5 337 342 358
|
||||
6 5 355 355 358
|
||||
5 5 46 48 358
|
||||
5 5 58 60 358
|
||||
5 5 67 93 358
|
||||
5 5 235 288 358
|
||||
4 4 47 48 359
|
||||
4 4 58 60 359
|
||||
4 4 64 94 359
|
||||
4 4 338 343 359
|
||||
4 3 237 287 359
|
||||
4 1 159 163 359
|
||||
3 3 47 47 359
|
||||
3 3 58 59 359
|
||||
3 3 64 96 359
|
||||
3 3 207 207 359
|
||||
3 3 338 343 359
|
||||
2 2 65 96 359
|
||||
2 2 207 208 359
|
||||
2 2 237 286 359
|
||||
2 1 338 343 359
|
||||
1 1 64 96 359
|
||||
1 1 236 236 359
|
||||
1 1 238 285 359
|
||||
0 0 63 96 360
|
||||
0 0 159 164 360
|
||||
0 0 236 285 360
|
||||
0 0 339 344 360
|
||||
-1 -1 63 96 359
|
||||
-1 -4 159 163 359
|
||||
-1 -4 235 285 359
|
||||
-1 -4 338 343 359
|
||||
-2 -2 59 96 359
|
||||
-3 -3 59 97 359
|
||||
-4 -4 58 98 359
|
||||
-5 -5 49 51 358
|
||||
-5 -5 54 54 358
|
||||
-5 -5 57 98 358
|
||||
-5 -5 230 231 358
|
||||
-5 -5 235 284 358
|
||||
-5 -6 158 163 358
|
||||
-5 -6 337 342 358
|
||||
-5 -6 355 355 358
|
||||
-6 -6 49 99 358
|
||||
-6 -6 233 284 358
|
||||
-7 -7 26 26 357
|
||||
-7 -7 48 98 357
|
||||
-7 -7 158 162 357
|
||||
-7 -7 227 228 357
|
||||
-7 -7 232 283 357
|
||||
-7 -7 336 341 357
|
||||
-8 -8 26 26 356
|
||||
-8 -8 49 98 356
|
||||
-8 -8 157 162 356
|
||||
-8 -8 227 281 356
|
||||
-8 -8 335 340 356
|
||||
-9 -9 26 26 355
|
||||
-9 -9 46 48 355
|
||||
-9 -9 52 55 355
|
||||
-9 -9 57 98 355
|
||||
-9 -9 157 161 355
|
||||
-9 -9 226 279 355
|
||||
-9 -9 334 339 355
|
||||
-9 -9 352 352 355
|
||||
-10 -10 26 26 354
|
||||
-10 -10 46 48 354
|
||||
-10 -10 52 54 354
|
||||
-10 -10 59 99 354
|
||||
-10 -10 156 161 354
|
||||
-10 -10 226 274 354
|
||||
-10 -10 333 338 354
|
||||
-10 -10 351 351 354
|
||||
-11 -11 28 28 353
|
||||
-11 -11 47 47 353
|
||||
-11 -11 49 51 353
|
||||
-11 -11 58 99 353
|
||||
-11 -11 156 161 353
|
||||
-11 -11 226 234 353
|
||||
-11 -11 237 274 353
|
||||
-11 -11 332 337 353
|
||||
-12 -12 58 100 352
|
||||
-12 -12 155 160 352
|
||||
-12 -12 226 233 352
|
||||
-12 -12 237 272 352
|
||||
-12 -12 331 336 352
|
||||
-13 -13 57 57 350
|
||||
-13 -13 59 62 350
|
||||
-13 -13 64 64 350
|
||||
-13 -13 68 68 350
|
||||
-13 -13 71 72 350
|
||||
-13 -13 74 99 350
|
||||
-13 -13 154 159 350
|
||||
-13 -13 225 270 350
|
||||
-13 -13 329 334 350
|
||||
-14 -14 56 57 349
|
||||
-14 -14 75 99 349
|
||||
-14 -14 154 159 349
|
||||
-14 -14 225 268 349
|
||||
-14 -14 274 274 349
|
||||
-14 -14 328 333 349
|
||||
-15 -15 57 57 347
|
||||
-15 -15 59 59 347
|
||||
-15 -15 74 99 347
|
||||
-15 -15 153 158 347
|
||||
-15 -15 225 267 347
|
||||
-15 -15 272 273 347
|
||||
-15 -15 277 277 347
|
||||
-15 -15 326 331 347
|
||||
-16 -16 56 56 346
|
||||
-16 -16 59 59 346
|
||||
-16 -16 75 99 346
|
||||
-16 -16 153 157 346
|
||||
-16 -16 225 266 346
|
||||
-16 -16 326 330 346
|
||||
-17 -17 55 58 344
|
||||
-17 -17 76 100 344
|
||||
-17 -17 152 156 344
|
||||
-17 -17 224 264 344
|
||||
-17 -17 324 328 344
|
||||
-18 -18 54 54 342
|
||||
-18 -18 56 57 342
|
||||
-18 -18 76 100 342
|
||||
-18 -18 151 155 342
|
||||
-18 -18 224 262 342
|
||||
-18 -18 322 326 342
|
||||
-19 -19 53 53 340
|
||||
-19 -19 55 56 340
|
||||
-19 -19 77 100 340
|
||||
-19 -19 150 154 340
|
||||
-19 -19 223 260 340
|
||||
-19 -19 320 324 340
|
||||
-19 -19 335 335 340
|
||||
-20 -20 53 55 338
|
||||
-20 -20 77 100 338
|
||||
-20 -20 149 154 338
|
||||
-20 -20 221 257 338
|
||||
-20 -20 318 322 338
|
||||
-20 -20 333 333 338
|
||||
-21 -21 24 24 336
|
||||
-21 -21 53 54 336
|
||||
-21 -21 76 99 336
|
||||
-21 -21 149 153 336
|
||||
-21 -21 220 255 336
|
||||
-21 -21 316 320 336
|
||||
-21 -21 323 323 336
|
||||
-22 -22 24 24 333
|
||||
-22 -22 52 52 333
|
||||
-22 -22 76 99 333
|
||||
-22 -22 147 151 333
|
||||
-22 -22 212 212 333
|
||||
-22 -22 215 215 333
|
||||
-22 -22 217 253 333
|
||||
-22 -22 313 317 333
|
||||
-22 -22 320 320 333
|
||||
-23 -23 25 25 331
|
||||
-23 -23 75 99 331
|
||||
-23 -23 146 151 331
|
||||
-23 -23 210 211 331
|
||||
-23 -23 214 251 331
|
||||
-23 -23 311 316 331
|
||||
-24 -24 73 98 328
|
||||
-24 -24 145 149 328
|
||||
-24 -24 208 249 328
|
||||
-24 -24 308 313 328
|
||||
-25 -25 71 98 326
|
||||
-25 -25 144 148 326
|
||||
-25 -25 207 247 326
|
||||
-25 -25 307 311 326
|
||||
-26 -26 70 85 323
|
||||
-26 -26 87 97 323
|
||||
-26 -26 142 147 323
|
||||
-26 -26 205 244 323
|
||||
-26 -26 303 308 323
|
||||
-27 -27 69 84 320
|
||||
-27 -27 87 98 320
|
||||
-27 -27 141 146 320
|
||||
-27 -27 203 241 320
|
||||
-27 -27 300 305 320
|
||||
-28 -28 68 83 317
|
||||
-28 -28 85 97 317
|
||||
-28 -28 140 145 317
|
||||
-28 -28 201 239 317
|
||||
-28 -28 298 302 317
|
||||
-29 -29 65 66 314
|
||||
-29 -29 68 98 314
|
||||
-29 -29 139 143 314
|
||||
-29 -29 199 236 314
|
||||
-29 -29 295 299 314
|
||||
-30 -30 64 64 311
|
||||
-30 -30 68 98 311
|
||||
-30 -30 137 142 311
|
||||
-30 -30 198 234 311
|
||||
-30 -30 292 296 311
|
||||
-31 -31 68 99 308
|
||||
-31 -31 136 140 308
|
||||
-31 -31 185 185 308
|
||||
-31 -31 187 187 308
|
||||
-31 -31 189 189 308
|
||||
-31 -31 195 231 308
|
||||
-31 -31 289 293 308
|
||||
-32 -32 67 99 305
|
||||
-32 -32 135 139 305
|
||||
-32 -32 179 179 305
|
||||
-32 -32 183 183 305
|
||||
-32 -32 187 228 305
|
||||
-32 -32 286 290 305
|
||||
-33 -33 66 97 301
|
||||
-33 -33 133 137 301
|
||||
-33 -33 179 180 301
|
||||
-33 -33 184 224 301
|
||||
-33 -33 282 286 301
|
||||
-33 -33 295 295 301
|
||||
-34 -34 67 67 298
|
||||
-34 -34 69 97 298
|
||||
-34 -34 132 136 298
|
||||
-34 -34 182 220 298
|
||||
-34 -34 279 284 298
|
||||
-35 -35 69 98 294
|
||||
-35 -35 130 134 294
|
||||
-35 -35 178 217 294
|
||||
-35 -35 276 280 294
|
||||
-36 -36 71 72 291
|
||||
-36 -36 74 97 291
|
||||
-36 -36 129 133 291
|
||||
-36 -36 176 214 291
|
||||
-36 -36 273 277 291
|
||||
-37 -37 71 71 287
|
||||
-37 -37 75 96 287
|
||||
-37 -37 116 117 287
|
||||
-37 -37 128 131 287
|
||||
-37 -37 161 161 287
|
||||
-37 -37 170 211 287
|
||||
-37 -37 269 273 287
|
||||
-38 -38 74 96 283
|
||||
-38 -38 115 115 283
|
||||
-38 -38 126 129 283
|
||||
-38 -38 164 208 283
|
||||
-38 -38 265 269 283
|
||||
-39 -39 77 97 279
|
||||
-39 -39 114 114 279
|
||||
-39 -39 124 127 279
|
||||
-39 -39 159 159 279
|
||||
-39 -39 162 204 279
|
||||
-39 -39 261 266 279
|
||||
-40 -40 76 95 275
|
||||
-40 -40 112 112 275
|
||||
-40 -40 122 125 275
|
||||
-40 -40 159 201 275
|
||||
-40 -40 257 262 275
|
||||
-41 -41 75 95 271
|
||||
-41 -41 121 124 271
|
||||
-41 -41 157 198 271
|
||||
-41 -41 253 258 271
|
||||
-42 -42 76 79 267
|
||||
-42 -42 81 94 267
|
||||
-42 -42 119 122 267
|
||||
-42 -42 154 195 267
|
||||
-42 -42 249 254 267
|
||||
-43 -43 75 94 263
|
||||
-43 -43 110 111 263
|
||||
-43 -43 118 120 263
|
||||
-43 -43 150 191 263
|
||||
-43 -43 245 250 263
|
||||
-44 -44 75 92 258
|
||||
-44 -44 107 108 258
|
||||
-44 -44 115 118 258
|
||||
-44 -44 134 134 258
|
||||
-44 -44 147 186 258
|
||||
-44 -44 241 245 258
|
||||
-45 -45 79 91 254
|
||||
-45 -45 105 106 254
|
||||
-45 -45 113 116 254
|
||||
-45 -45 131 133 254
|
||||
-45 -45 135 136 254
|
||||
-45 -45 139 182 254
|
||||
-45 -45 237 242 254
|
||||
-46 -46 79 92 250
|
||||
-46 -46 95 95 250
|
||||
-46 -46 102 107 250
|
||||
-46 -46 109 114 250
|
||||
-46 -46 129 131 250
|
||||
-46 -46 133 133 250
|
||||
-46 -46 137 178 250
|
||||
-46 -46 233 238 250
|
||||
-47 -47 78 93 245
|
||||
-47 -47 100 112 245
|
||||
-47 -47 115 115 245
|
||||
-47 -47 126 127 245
|
||||
-47 -47 131 131 245
|
||||
-47 -47 135 175 245
|
||||
-47 -47 228 233 245
|
||||
-48 -48 74 74 240
|
||||
-48 -48 76 92 240
|
||||
-48 -48 97 113 240
|
||||
-48 -48 124 170 240
|
||||
-48 -48 224 228 240
|
||||
-49 -49 76 93 236
|
||||
-49 -49 96 113 236
|
||||
-49 -49 122 167 236
|
||||
-49 -49 219 224 236
|
||||
-50 -50 76 111 231
|
||||
-50 -50 119 162 231
|
||||
-50 -50 214 220 231
|
||||
-51 -51 78 157 226
|
||||
-51 -51 209 215 226
|
||||
-52 -52 76 154 221
|
||||
-52 -52 205 210 221
|
||||
-53 -53 74 150 216
|
||||
-53 -53 200 206 216
|
||||
-54 -54 72 147 211
|
||||
-54 -54 195 200 211
|
||||
-55 -55 70 143 206
|
||||
-55 -55 191 195 206
|
||||
-56 -56 67 139 201
|
||||
-56 -56 186 191 201
|
||||
-57 -57 61 61 196
|
||||
-57 -57 64 135 196
|
||||
-57 -57 181 186 196
|
||||
-58 -58 58 131 190
|
||||
-58 -58 138 138 190
|
||||
-58 -58 175 181 190
|
||||
-59 -59 57 127 185
|
||||
-59 -59 171 176 185
|
||||
-60 -60 57 123 180
|
||||
-60 -60 166 171 180
|
||||
-61 -61 55 55 174
|
||||
-61 -61 57 119 174
|
||||
-61 -61 161 164 174
|
||||
-62 -62 54 119 169
|
||||
-63 -63 54 115 163
|
||||
-64 -64 53 105 157
|
||||
-64 -64 107 109 157
|
||||
-64 -64 135 137 157
|
||||
-65 -65 54 101 152
|
||||
-65 -65 103 104 152
|
||||
-65 -65 131 133 152
|
||||
-66 -66 52 87 146
|
||||
-66 -66 89 89 146
|
||||
-66 -66 93 93 146
|
||||
-66 -66 96 98 146
|
||||
-66 -66 103 103 146
|
||||
-66 -66 127 127 146
|
||||
-67 -67 49 84 140
|
||||
-67 -67 90 90 140
|
||||
-67 -67 92 94 140
|
||||
-67 -67 122 122 140
|
||||
-68 -68 47 80 134
|
||||
-68 -68 86 87 134
|
||||
-68 -68 89 89 134
|
||||
-69 -69 46 75 129
|
||||
-69 -69 84 86 129
|
||||
-70 -70 44 71 123
|
||||
-70 -70 80 81 123
|
||||
-71 -71 43 64 117
|
||||
-71 -71 77 77 117
|
||||
-72 -72 41 59 111
|
||||
-72 -72 74 74 111
|
||||
-73 -73 39 55 105
|
||||
-73 -73 75 75 105
|
||||
-74 -74 39 52 99
|
||||
-74 -74 70 70 99
|
||||
-75 -75 39 44 93
|
||||
-75 -75 46 48 93
|
||||
-75 -75 66 66 93
|
||||
-76 -76 37 38 87
|
||||
-76 -76 40 41 87
|
||||
-77 -77 34 37 80
|
||||
-77 -77 39 39 80
|
||||
-78 -78 33 34 74
|
||||
-78 -78 49 49 74
|
||||
-79 -79 31 31 68
|
||||
-79 -79 44 44 68
|
||||
-82 -82 46 46 50
|
||||
-83 -83 38 42 43
|
||||
-84 -84 31 1 37
|
||||
-85 -85 24 31 31
|
||||
-86 -86 20 1 25
|
||||
-87 -87 15 1 18
|
||||
-88 -88 10 1 12
|
3345
masks/pscz/hibpscz.exclude.pol
Normal file
3345
masks/pscz/hibpscz.exclude.pol
Normal file
File diff suppressed because it is too large
Load diff
3342
masks/pscz/hibpscz.exclude.pol2
Normal file
3342
masks/pscz/hibpscz.exclude.pol2
Normal file
File diff suppressed because it is too large
Load diff
671
masks/pscz/hibpscz.exclude.rect
Normal file
671
masks/pscz/hibpscz.exclude.rect
Normal file
|
@ -0,0 +1,671 @@
|
|||
rectangle
|
||||
unit d
|
||||
azmin azmax elmin elmax
|
||||
48.64864864864865 58.37837837837838 77.5 78.5
|
||||
13.50000000000000 18.00000000000000 76.5 77.5
|
||||
27.00000000000000 58.50000000000000 76.5 77.5
|
||||
4.137931034482759 16.55172413793104 75.5 76.5
|
||||
24.82758620689655 57.93103448275862 75.5 76.5
|
||||
0.000000000000000 58.06451612903226 74.5 75.5
|
||||
345.4545454545454 352.7272727272727 73.5 74.5
|
||||
356.3636363636364 58.18181818181819 73.5 74.5
|
||||
332.5714285714286 58.28571428571429 72.5 73.5
|
||||
330.8108108108108 58.37837837837838 71.5 72.5
|
||||
329.2307692307692 58.46153846153847 70.5 71.5
|
||||
327.8048780487805 58.53658536585365 69.5 70.5
|
||||
329.3023255813953 58.60465116279070 68.5 69.5
|
||||
322.3880597014925 325.0746268656717 67.5 68.5
|
||||
330.4477611940299 56.41791044776119 67.5 68.5
|
||||
321.4285714285714 56.57142857142857 66.5 67.5
|
||||
310.6849315068493 54.24657534246575 65.5 66.5
|
||||
310.2631578947368 59.21052631578948 64.5 65.5
|
||||
311.8471337579618 59.61783439490446 63.5 64.5
|
||||
311.4110429447853 64.04907975460122 62.5 63.5
|
||||
311.0059171597633 66.03550295857988 61.5 62.5
|
||||
304.1379310344828 68.27586206896551 60.5 61.5
|
||||
303.6871508379888 70.39106145251397 59.5 60.5
|
||||
303.5675675675676 72.00000000000000 58.5 59.5
|
||||
301.2631578947369 72.00000000000000 57.5 58.5
|
||||
304.8979591836735 71.63265306122449 56.5 57.5
|
||||
300.8955223880597 302.6865671641791 55.5 56.5
|
||||
304.4776119402985 71.64179104477613 55.5 56.5
|
||||
295.3398058252427 297.0873786407767 54.5 55.5
|
||||
298.8349514563106 71.65048543689321 54.5 55.5
|
||||
293.4597156398104 71.65876777251185 53.5 54.5
|
||||
288.3333333333333 291.6666666666667 52.5 53.5
|
||||
293.3333333333333 73.33333333333333 52.5 53.5
|
||||
11.40271493212670 73.30316742081448 51.5 52.5
|
||||
280.1809954751131 281.8099547511312 51.5 52.5
|
||||
283.4389140271493 286.6968325791855 51.5 52.5
|
||||
288.3257918552036 289.9547511312217 51.5 52.5
|
||||
291.5837104072398 9.773755656108598 51.5 52.5
|
||||
15.92920353982301 73.27433628318585 50.5 51.5
|
||||
288.3185840707965 12.74336283185841 50.5 51.5
|
||||
6.233766233766234 14.02597402597403 49.5 50.5
|
||||
15.58441558441558 74.80519480519482 49.5 50.5
|
||||
288.3116883116883 1.558441558441559 49.5 50.5
|
||||
15.25423728813559 16.77966101694915 48.5 49.5
|
||||
18.30508474576271 74.74576271186440 48.5 49.5
|
||||
161.6949152542373 163.2203389830509 48.5 49.5
|
||||
286.7796610169491 355.4237288135593 48.5 49.5
|
||||
356.9491525423729 360.0000000000000 48.5 49.5
|
||||
7.500000000000000 10.50000000000000 47.5 48.5
|
||||
24.00000000000000 76.50000000000000 47.5 48.5
|
||||
160.5000000000000 162.0000000000000 47.5 48.5
|
||||
163.5000000000000 165.0000000000000 47.5 48.5
|
||||
286.5000000000000 354.0000000000000 47.5 48.5
|
||||
357.0000000000000 358.5000000000000 47.5 48.5
|
||||
8.816326530612244 10.28571428571428 46.5 47.5
|
||||
24.97959183673469 76.40816326530611 46.5 47.5
|
||||
160.1632653061224 164.5714285714286 46.5 47.5
|
||||
285.0612244897959 349.7142857142857 46.5 47.5
|
||||
25.92000000000000 77.76000000000001 45.5 46.5
|
||||
158.4000000000000 164.1600000000000 45.5 46.5
|
||||
283.6800000000000 344.1600000000000 45.5 46.5
|
||||
345.6000000000000 348.4800000000000 45.5 46.5
|
||||
349.9200000000000 351.3600000000000 45.5 46.5
|
||||
26.92913385826772 79.37007874015748 44.5 45.5
|
||||
160.1574803149606 164.4094488188977 44.5 45.5
|
||||
277.7952755905512 331.6535433070866 44.5 45.5
|
||||
334.4881889763780 342.9921259842520 44.5 45.5
|
||||
345.8267716535433 347.2440944881890 44.5 45.5
|
||||
358.5826771653543 4.251968503937007 44.5 45.5
|
||||
29.30232558139535 80.93023255813954 43.5 44.5
|
||||
159.0697674418605 164.6511627906977 43.5 44.5
|
||||
274.8837209302326 323.7209302325581 43.5 44.5
|
||||
326.5116279069767 333.4883720930233 43.5 44.5
|
||||
334.8837209302325 343.2558139534884 43.5 44.5
|
||||
30.11406844106464 80.76045627376426 42.5 43.5
|
||||
158.7832699619772 164.2585551330799 42.5 43.5
|
||||
273.7642585551330 329.8859315589353 42.5 43.5
|
||||
333.9923954372624 342.2053231939163 42.5 43.5
|
||||
31.01123595505618 80.89887640449437 41.5 42.5
|
||||
159.1011235955056 164.4943820224719 41.5 42.5
|
||||
273.7078651685393 318.2022471910113 41.5 42.5
|
||||
320.8988764044944 328.9887640449438 41.5 42.5
|
||||
334.3820224719101 342.4719101123595 41.5 42.5
|
||||
349.2134831460674 350.5617977528090 41.5 42.5
|
||||
33.21033210332104 81.03321033210332 40.5 41.5
|
||||
159.4095940959409 164.7232472324723 40.5 41.5
|
||||
272.3247232472324 318.8191881918819 40.5 41.5
|
||||
321.4760147601476 322.8044280442804 40.5 41.5
|
||||
325.4612546125461 328.1180811808118 40.5 41.5
|
||||
334.7601476014760 342.7306273062730 40.5 41.5
|
||||
36.65454545454546 47.12727272727273 39.5 40.5
|
||||
48.43636363636364 82.47272727272727 39.5 40.5
|
||||
158.4000000000000 163.6363636363636 39.5 40.5
|
||||
272.2909090909091 318.1090909090909 39.5 40.5
|
||||
322.0363636363636 323.3454545454546 39.5 40.5
|
||||
335.1272727272727 342.9818181818182 39.5 40.5
|
||||
349.5272727272728 350.8363636363636 39.5 40.5
|
||||
38.70967741935484 47.74193548387097 38.5 39.5
|
||||
50.32258064516129 82.58064516129032 38.5 39.5
|
||||
158.7096774193548 163.8709677419355 38.5 39.5
|
||||
272.2580645161290 313.5483870967742 38.5 39.5
|
||||
335.4838709677420 343.2258064516129 38.5 39.5
|
||||
39.43462897526502 44.52296819787986 37.5 38.5
|
||||
45.79505300353357 47.06713780918729 37.5 38.5
|
||||
53.42756183745583 82.68551236749117 37.5 38.5
|
||||
159.0106007067138 164.0989399293286 37.5 38.5
|
||||
273.4982332155477 311.6607773851590 37.5 38.5
|
||||
314.2049469964664 315.4770318021202 37.5 38.5
|
||||
335.8303886925795 343.4628975265018 37.5 38.5
|
||||
41.39372822299651 46.41114982578397 36.5 37.5
|
||||
53.93728222996516 85.29616724738676 36.5 37.5
|
||||
159.3031358885017 164.3205574912892 36.5 37.5
|
||||
274.7038327526132 311.0801393728223 36.5 37.5
|
||||
336.1672473867596 343.6933797909408 36.5 37.5
|
||||
44.53608247422680 47.01030927835052 35.5 36.5
|
||||
53.19587628865980 82.88659793814432 35.5 36.5
|
||||
158.3505154639175 164.5360824742268 35.5 36.5
|
||||
267.2164948453608 268.4536082474227 35.5 36.5
|
||||
269.6907216494845 270.9278350515464 35.5 36.5
|
||||
274.6391752577319 310.5154639175258 35.5 36.5
|
||||
336.4948453608247 343.9175257731959 35.5 36.5
|
||||
52.65306122448980 85.71428571428571 34.5 35.5
|
||||
157.9591836734694 164.0816326530612 34.5 35.5
|
||||
265.7142857142857 268.1632653061225 34.5 35.5
|
||||
274.2857142857143 311.0204081632653 34.5 35.5
|
||||
336.7346938775510 344.0816326530612 34.5 35.5
|
||||
53.15436241610739 85.77181208053690 33.5 34.5
|
||||
158.2550335570470 164.2953020134228 33.5 34.5
|
||||
262.1476510067114 265.7718120805369 33.5 34.5
|
||||
274.2281879194631 310.4697986577181 33.5 34.5
|
||||
335.8389261744966 343.0872483221476 33.5 34.5
|
||||
26.31229235880399 27.50830564784053 32.5 33.5
|
||||
53.82059800664452 84.91694352159467 32.5 33.5
|
||||
157.8737541528239 163.8538205980066 32.5 33.5
|
||||
263.1229235880399 264.3189368770765 32.5 33.5
|
||||
265.5149501661130 269.1029900332226 32.5 33.5
|
||||
270.2990033222591 304.9833887043189 32.5 33.5
|
||||
307.3754152823921 309.7674418604651 32.5 33.5
|
||||
336.0797342192691 342.0598006644518 32.5 33.5
|
||||
54.29508196721312 84.98360655737706 31.5 32.5
|
||||
158.1639344262295 164.0655737704918 31.5 32.5
|
||||
266.7540983606557 304.5245901639344 31.5 32.5
|
||||
336.3934426229508 342.2950819672131 31.5 32.5
|
||||
54.93506493506494 84.15584415584415 30.5 31.5
|
||||
157.7922077922078 163.6363636363636 30.5 31.5
|
||||
267.6623376623377 305.0649350649351 30.5 31.5
|
||||
336.6233766233766 342.4675324675325 30.5 31.5
|
||||
56.72025723472669 84.50160771704181 29.5 30.5
|
||||
157.4276527331190 164.3729903536978 29.5 30.5
|
||||
269.7106109324758 306.7524115755627 29.5 30.5
|
||||
336.8488745980707 342.6366559485531 29.5 30.5
|
||||
349.5819935691318 350.7395498392283 29.5 30.5
|
||||
57.32484076433121 83.69426751592357 28.5 29.5
|
||||
84.84076433121020 87.13375796178345 28.5 29.5
|
||||
158.2165605095541 163.9490445859873 28.5 29.5
|
||||
270.5732484076433 301.5286624203822 28.5 29.5
|
||||
302.6751592356688 303.8216560509554 28.5 29.5
|
||||
306.1146496815286 307.2611464968153 28.5 29.5
|
||||
337.0700636942675 342.8025477707006 28.5 29.5
|
||||
57.91798107255521 80.63091482649843 27.5 28.5
|
||||
81.76656151419559 82.90220820189275 27.5 28.5
|
||||
157.8548895899054 164.6687697160883 27.5 28.5
|
||||
264.6056782334385 300.9463722397476 27.5 28.5
|
||||
302.0820189274448 304.3533123028391 27.5 28.5
|
||||
337.2870662460568 342.9652996845426 27.5 28.5
|
||||
349.7791798107255 350.9148264984227 27.5 28.5
|
||||
55.12500000000001 79.87500000000000 26.5 27.5
|
||||
82.12500000000000 84.37500000000000 26.5 27.5
|
||||
157.5000000000000 164.2500000000000 26.5 27.5
|
||||
264.3750000000000 266.6250000000000 26.5 27.5
|
||||
267.7500000000000 301.5000000000000 26.5 27.5
|
||||
303.7500000000000 304.8750000000000 26.5 27.5
|
||||
336.3750000000000 343.1250000000000 26.5 27.5
|
||||
349.8750000000000 351.0000000000000 26.5 27.5
|
||||
55.72755417956657 80.24767801857585 25.5 26.5
|
||||
82.47678018575851 83.59133126934984 25.5 26.5
|
||||
157.1517027863777 163.8390092879257 25.5 26.5
|
||||
264.1486068111455 302.0433436532508 25.5 26.5
|
||||
331.0216718266254 332.1362229102167 25.5 26.5
|
||||
337.7089783281734 343.2817337461300 25.5 26.5
|
||||
56.31901840490798 82.82208588957056 24.5 25.5
|
||||
83.92638036809815 85.03067484662577 24.5 25.5
|
||||
157.9141104294479 163.4355828220859 24.5 25.5
|
||||
262.8220858895705 300.3680981595092 24.5 25.5
|
||||
337.9141104294479 343.4355828220859 24.5 25.5
|
||||
58.17073170731707 85.60975609756098 23.5 24.5
|
||||
158.0487804878049 163.5365853658537 23.5 24.5
|
||||
262.3170731707317 300.7317073170731 23.5 24.5
|
||||
336.9512195121952 343.5365853658536 23.5 24.5
|
||||
57.64350453172205 87.00906344410876 22.5 23.5
|
||||
157.7039274924471 164.2296072507553 22.5 23.5
|
||||
255.5891238670695 261.0271903323263 22.5 23.5
|
||||
262.1148036253776 301.2688821752266 22.5 23.5
|
||||
337.1601208459214 343.6858006042296 22.5 23.5
|
||||
58.37837837837838 87.56756756756758 21.5 22.5
|
||||
157.8378378378378 163.2432432432432 21.5 22.5
|
||||
254.0540540540540 301.6216216216216 21.5 22.5
|
||||
337.2972972972973 342.7027027027027 21.5 22.5
|
||||
57.85714285714286 58.92857142857143 20.5 21.5
|
||||
61.07142857142858 84.64285714285714 20.5 21.5
|
||||
158.5714285714286 163.9285714285714 20.5 21.5
|
||||
253.9285714285714 301.0714285714286 20.5 21.5
|
||||
337.5000000000000 342.8571428571428 20.5 21.5
|
||||
57.51479289940828 58.57988165680473 19.5 20.5
|
||||
61.77514792899408 86.27218934911242 19.5 20.5
|
||||
157.6331360946746 164.0236686390533 19.5 20.5
|
||||
253.4911242603550 300.3550295857988 19.5 20.5
|
||||
337.6331360946746 342.9585798816568 19.5 20.5
|
||||
31.76470588235294 32.82352941176470 18.5 19.5
|
||||
56.11764705882353 57.17647058823529 18.5 19.5
|
||||
61.41176470588236 86.82352941176471 18.5 19.5
|
||||
157.7647058823529 163.0588235294118 18.5 19.5
|
||||
245.6470588235294 249.8823529411765 18.5 19.5
|
||||
250.9411764705882 297.5294117647059 18.5 19.5
|
||||
298.5882352941177 300.7058823529412 18.5 19.5
|
||||
337.7647058823529 343.0588235294118 18.5 19.5
|
||||
55.78947368421052 86.31578947368421 17.5 18.5
|
||||
157.8947368421053 163.1578947368421 17.5 18.5
|
||||
243.1578947368421 296.8421052631579 17.5 18.5
|
||||
298.9473684210526 302.1052631578947 17.5 18.5
|
||||
337.8947368421053 343.1578947368421 17.5 18.5
|
||||
57.55813953488372 91.04651162790698 16.5 17.5
|
||||
158.0232558139535 163.2558139534884 16.5 17.5
|
||||
242.7906976744186 297.2093023255814 16.5 17.5
|
||||
299.3023255813953 302.4418604651163 16.5 17.5
|
||||
338.0232558139535 343.2558139534884 16.5 17.5
|
||||
57.22543352601156 90.52023121387283 15.5 16.5
|
||||
158.1502890173410 163.3526011560694 15.5 16.5
|
||||
235.1445086705202 237.2254335260116 15.5 16.5
|
||||
239.3063583815029 297.5722543352601 15.5 16.5
|
||||
299.6531791907515 300.6936416184971 15.5 16.5
|
||||
338.1502890173410 343.3526011560694 15.5 16.5
|
||||
54.98559077809798 90.25936599423632 14.5 15.5
|
||||
157.6945244956772 163.9193083573487 14.5 15.5
|
||||
236.5417867435158 237.5792507204611 14.5 15.5
|
||||
239.6541786743516 296.7146974063401 14.5 15.5
|
||||
299.8270893371758 300.8645533141211 14.5 15.5
|
||||
337.1757925072046 343.4005763688760 14.5 15.5
|
||||
53.63896848137536 90.77363896848138 13.5 14.5
|
||||
157.8223495702006 164.0114613180516 13.5 14.5
|
||||
239.3123209169054 297.0773638968482 13.5 14.5
|
||||
337.3065902578796 343.4957020057307 13.5 14.5
|
||||
53.48571428571429 94.62857142857142 12.5 13.5
|
||||
157.3714285714286 163.5428571428571 12.5 13.5
|
||||
237.6000000000000 296.2285714285714 12.5 13.5
|
||||
332.2285714285714 333.2571428571429 12.5 13.5
|
||||
337.3714285714286 343.5428571428571 12.5 13.5
|
||||
350.7428571428571 351.7714285714285 12.5 13.5
|
||||
53.18181818181819 95.11363636363637 11.5 12.5
|
||||
157.5000000000000 163.6363636363636 11.5 12.5
|
||||
236.2500000000000 296.5909090909091 11.5 12.5
|
||||
332.3863636363636 333.4090909090909 11.5 12.5
|
||||
337.5000000000000 343.6363636363636 11.5 12.5
|
||||
350.7954545454546 351.8181818181818 11.5 12.5
|
||||
52.01133144475921 94.84419263456090 10.5 11.5
|
||||
158.0736543909348 164.1926345609065 10.5 11.5
|
||||
235.5807365439094 296.7705382436260 10.5 11.5
|
||||
332.4645892351274 333.4844192634561 10.5 11.5
|
||||
337.5637393767705 343.6827195467422 10.5 11.5
|
||||
350.8215297450425 351.8413597733711 10.5 11.5
|
||||
8.135593220338983 9.152542372881356 9.5 10.5
|
||||
51.86440677966102 63.05084745762711 9.5 10.5
|
||||
64.06779661016949 95.59322033898304 9.5 10.5
|
||||
157.6271186440678 163.7288135593220 9.5 10.5
|
||||
233.8983050847458 295.9322033898305 9.5 10.5
|
||||
337.6271186440678 343.7288135593220 9.5 10.5
|
||||
355.9322033898305 356.9491525423729 9.5 10.5
|
||||
8.112676056338028 9.126760563380282 8.5 9.5
|
||||
51.71830985915493 56.78873239436620 8.5 9.5
|
||||
57.80281690140846 58.81690140845070 8.5 9.5
|
||||
61.85915492957746 94.30985915492957 8.5 9.5
|
||||
158.1971830985916 163.2676056338028 8.5 9.5
|
||||
234.2535211267606 296.1126760563380 8.5 9.5
|
||||
337.6901408450704 343.7746478873239 8.5 9.5
|
||||
355.9436619718310 356.9577464788732 8.5 9.5
|
||||
8.089887640449438 9.101123595505618 7.5 8.5
|
||||
63.70786516853932 94.04494382022473 7.5 8.5
|
||||
157.7528089887641 163.8202247191011 7.5 8.5
|
||||
233.5955056179775 296.2921348314607 7.5 8.5
|
||||
337.7528089887641 343.8202247191011 7.5 8.5
|
||||
8.067226890756302 9.075630252100840 6.5 7.5
|
||||
64.53781512605042 94.78991596638656 6.5 7.5
|
||||
158.3193277310924 163.3613445378151 6.5 7.5
|
||||
234.9579831932773 293.4453781512605 6.5 7.5
|
||||
294.4537815126050 296.4705882352941 6.5 7.5
|
||||
337.8151260504202 343.8655462184874 6.5 7.5
|
||||
65.36312849162012 93.51955307262568 5.5 6.5
|
||||
234.3016759776536 289.6089385474860 5.5 6.5
|
||||
157.8770949720671 163.9106145251397 4.5 6.5
|
||||
337.8770949720670 343.9106145251397 4.5 6.5
|
||||
355.9776536312849 356.9832402234637 4.5 6.5
|
||||
45.25139664804470 48.26815642458101 4.5 5.5
|
||||
57.31843575418994 60.33519553072625 4.5 5.5
|
||||
66.36871508379889 93.51955307262568 4.5 5.5
|
||||
235.3072625698324 289.6089385474860 4.5 5.5
|
||||
46.12813370473538 48.13370473537605 3.5 4.5
|
||||
57.15877437325905 60.16713091922006 3.5 4.5
|
||||
63.17548746518106 94.26183844011142 3.5 4.5
|
||||
337.9387186629527 343.9554317548747 3.5 4.5
|
||||
236.6573816155989 287.7994428969359 2.5 4.5
|
||||
158.4401114206128 163.4540389972145 0.5 4.5
|
||||
46.12813370473538 47.13091922005571 2.5 3.5
|
||||
57.15877437325905 59.16434540389972 2.5 3.5
|
||||
63.17548746518106 96.26740947075210 2.5 3.5
|
||||
206.5738161559889 207.5766016713092 2.5 3.5
|
||||
337.9387186629527 343.9554317548747 2.5 3.5
|
||||
64.17827298050139 96.26740947075210 1.5 2.5
|
||||
206.5738161559889 208.5793871866295 1.5 2.5
|
||||
236.6573816155989 286.7966573816156 1.5 2.5
|
||||
337.9387186629527 343.9554317548747 0.5 2.5
|
||||
63.17548746518106 96.26740947075210 0.5 1.5
|
||||
235.6545961002786 236.6573816155989 0.5 1.5
|
||||
237.6601671309192 285.7938718662953 0.5 1.5
|
||||
62.00000000000000 96.00000000000000 -0.5 0.5
|
||||
158.0000000000000 164.0000000000000 -0.5 0.5
|
||||
235.0000000000000 285.0000000000000 -0.5 0.5
|
||||
338.0000000000000 344.0000000000000 -0.5 0.5
|
||||
62.17270194986072 96.26740947075210 -1.5 -0.5
|
||||
158.4401114206128 163.4540389972145 -4.5 -0.5
|
||||
234.6518105849582 285.7938718662953 -4.5 -0.5
|
||||
337.9387186629527 343.9554317548747 -4.5 -0.5
|
||||
58.16155988857939 96.26740947075210 -2.5 -1.5
|
||||
58.16155988857939 97.27019498607241 -3.5 -2.5
|
||||
57.15877437325905 98.27298050139275 -4.5 -3.5
|
||||
48.26815642458101 51.28491620111731 -5.5 -4.5
|
||||
53.29608938547486 54.30167597765363 -5.5 -4.5
|
||||
56.31284916201118 98.54748603351955 -5.5 -4.5
|
||||
230.2793296089386 232.2905027932961 -5.5 -4.5
|
||||
235.3072625698324 285.5865921787710 -5.5 -4.5
|
||||
157.8770949720671 163.9106145251397 -6.5 -4.5
|
||||
337.8770949720670 343.9106145251397 -6.5 -4.5
|
||||
355.9776536312849 356.9832402234637 -6.5 -4.5
|
||||
48.26815642458101 99.55307262569833 -6.5 -5.5
|
||||
233.2960893854749 285.5865921787710 -6.5 -5.5
|
||||
25.21008403361344 26.21848739495799 -7.5 -6.5
|
||||
47.39495798319328 98.82352941176471 -7.5 -6.5
|
||||
158.3193277310924 163.3613445378151 -7.5 -6.5
|
||||
227.8991596638655 229.9159663865546 -7.5 -6.5
|
||||
232.9411764705883 285.3781512605042 -7.5 -6.5
|
||||
337.8151260504202 343.8655462184874 -7.5 -6.5
|
||||
25.28089887640450 26.29213483146067 -8.5 -7.5
|
||||
48.53932584269663 99.10112359550563 -8.5 -7.5
|
||||
157.7528089887641 163.8202247191011 -8.5 -7.5
|
||||
228.5393258426966 284.1573033707865 -8.5 -7.5
|
||||
337.7528089887641 343.8202247191011 -8.5 -7.5
|
||||
25.35211267605634 26.36619718309859 -9.5 -8.5
|
||||
45.63380281690141 48.67605633802816 -9.5 -8.5
|
||||
51.71830985915493 55.77464788732394 -9.5 -8.5
|
||||
56.78873239436620 99.38028169014085 -9.5 -8.5
|
||||
158.1971830985916 163.2676056338028 -9.5 -8.5
|
||||
228.1690140845071 282.9295774647887 -9.5 -8.5
|
||||
337.6901408450704 343.7746478873239 -9.5 -8.5
|
||||
355.9436619718310 356.9577464788732 -9.5 -8.5
|
||||
25.42372881355932 26.44067796610170 -10.5 -9.5
|
||||
45.76271186440677 48.81355932203390 -10.5 -9.5
|
||||
51.86440677966102 54.91525423728814 -10.5 -9.5
|
||||
58.98305084745763 100.6779661016949 -10.5 -9.5
|
||||
157.6271186440678 163.7288135593220 -10.5 -9.5
|
||||
228.8135593220339 278.6440677966102 -10.5 -9.5
|
||||
337.6271186440678 343.7288135593220 -10.5 -9.5
|
||||
355.9322033898305 356.9491525423729 -10.5 -9.5
|
||||
27.53541076487252 28.55524079320113 -11.5 -10.5
|
||||
46.91218130311615 47.93201133144476 -11.5 -10.5
|
||||
48.95184135977338 52.01133144475921 -11.5 -10.5
|
||||
58.13031161473088 100.9631728045326 -11.5 -10.5
|
||||
158.0736543909348 164.1926345609065 -11.5 -10.5
|
||||
229.4617563739377 238.6402266288952 -11.5 -10.5
|
||||
240.6798866855524 279.4334277620397 -11.5 -10.5
|
||||
337.5637393767705 343.6827195467422 -11.5 -10.5
|
||||
58.29545454545455 102.2727272727273 -12.5 -11.5
|
||||
157.5000000000000 163.6363636363636 -12.5 -11.5
|
||||
230.1136363636363 238.2954545454546 -12.5 -11.5
|
||||
241.3636363636363 278.1818181818182 -12.5 -11.5
|
||||
337.5000000000000 343.6363636363636 -12.5 -11.5
|
||||
57.60000000000000 58.62857142857143 -13.5 -12.5
|
||||
59.65714285714285 63.77142857142857 -13.5 -12.5
|
||||
64.80000000000000 65.82857142857142 -13.5 -12.5
|
||||
68.91428571428571 69.94285714285714 -13.5 -12.5
|
||||
72.00000000000000 74.05714285714285 -13.5 -12.5
|
||||
75.08571428571429 101.8285714285714 -13.5 -12.5
|
||||
157.3714285714286 163.5428571428571 -13.5 -12.5
|
||||
230.4000000000000 277.7142857142857 -13.5 -12.5
|
||||
337.3714285714286 343.5428571428571 -13.5 -12.5
|
||||
56.73352435530086 58.79656160458453 -14.5 -13.5
|
||||
76.33237822349570 102.1203438395415 -14.5 -13.5
|
||||
157.8223495702006 164.0114613180516 -14.5 -13.5
|
||||
231.0601719197708 276.4469914040114 -14.5 -13.5
|
||||
281.6045845272207 282.6361031518625 -14.5 -13.5
|
||||
337.3065902578796 343.4957020057307 -14.5 -13.5
|
||||
58.09798270893372 59.13544668587896 -15.5 -14.5
|
||||
60.17291066282420 61.21037463976946 -15.5 -14.5
|
||||
75.73487031700289 102.7089337175793 -15.5 -14.5
|
||||
157.6945244956772 163.9193083573487 -15.5 -14.5
|
||||
232.3919308357349 277.0028818443804 -15.5 -14.5
|
||||
281.1527377521614 283.2276657060519 -15.5 -14.5
|
||||
286.3400576368876 287.3775216138329 -15.5 -14.5
|
||||
337.1757925072046 343.4005763688760 -15.5 -14.5
|
||||
57.22543352601156 58.26589595375722 -16.5 -15.5
|
||||
60.34682080924856 61.38728323699422 -16.5 -15.5
|
||||
76.99421965317919 103.0057803468208 -16.5 -15.5
|
||||
158.1502890173410 163.3526011560694 -16.5 -15.5
|
||||
233.0635838150289 276.7630057803468 -16.5 -15.5
|
||||
338.1502890173410 343.3526011560694 -16.5 -15.5
|
||||
56.51162790697674 60.69767441860465 -17.5 -16.5
|
||||
78.48837209302326 104.6511627906977 -17.5 -16.5
|
||||
158.0232558139535 163.2558139534884 -17.5 -16.5
|
||||
233.3720930232558 276.2790697674419 -17.5 -16.5
|
||||
338.0232558139535 343.2558139534884 -17.5 -16.5
|
||||
55.78947368421052 56.84210526315789 -18.5 -17.5
|
||||
57.89473684210526 60.00000000000000 -18.5 -17.5
|
||||
78.94736842105263 105.2631578947368 -18.5 -17.5
|
||||
157.8947368421053 163.1578947368421 -18.5 -17.5
|
||||
234.7368421052632 275.7894736842105 -18.5 -17.5
|
||||
337.8947368421053 343.1578947368421 -18.5 -17.5
|
||||
55.05882352941177 56.11764705882353 -19.5 -18.5
|
||||
57.17647058823529 59.29411764705883 -19.5 -18.5
|
||||
80.47058823529412 105.8823529411765 -19.5 -18.5
|
||||
157.7647058823529 163.0588235294118 -19.5 -18.5
|
||||
235.0588235294118 275.2941176470588 -19.5 -18.5
|
||||
337.7647058823529 343.0588235294118 -19.5 -18.5
|
||||
353.6470588235294 354.7058823529412 -19.5 -18.5
|
||||
55.38461538461539 58.57988165680473 -20.5 -19.5
|
||||
80.94674556213018 106.5088757396450 -20.5 -19.5
|
||||
157.6331360946746 164.0236686390533 -20.5 -19.5
|
||||
234.3195266272189 273.7278106508876 -20.5 -19.5
|
||||
337.6331360946746 342.9585798816568 -20.5 -19.5
|
||||
353.6094674556213 354.6745562130178 -20.5 -19.5
|
||||
24.64285714285715 25.71428571428571 -21.5 -20.5
|
||||
55.71428571428572 57.85714285714286 -21.5 -20.5
|
||||
80.35714285714286 106.0714285714286 -21.5 -20.5
|
||||
158.5714285714286 163.9285714285714 -21.5 -20.5
|
||||
234.6428571428571 273.2142857142857 -21.5 -20.5
|
||||
337.5000000000000 342.8571428571428 -21.5 -20.5
|
||||
345.0000000000000 346.0714285714286 -21.5 -20.5
|
||||
24.86486486486486 25.94594594594595 -22.5 -21.5
|
||||
55.13513513513513 56.21621621621622 -22.5 -21.5
|
||||
81.08108108108108 107.0270270270270 -22.5 -21.5
|
||||
157.8378378378378 163.2432432432432 -22.5 -21.5
|
||||
228.1081081081081 229.1891891891892 -22.5 -21.5
|
||||
231.3513513513513 232.4324324324324 -22.5 -21.5
|
||||
233.5135135135135 273.5135135135135 -22.5 -21.5
|
||||
337.2972972972973 342.7027027027027 -22.5 -21.5
|
||||
344.8648648648648 345.9459459459459 -22.5 -21.5
|
||||
26.10271903323263 27.19033232628399 -23.5 -22.5
|
||||
80.48338368580060 107.6737160120846 -23.5 -22.5
|
||||
157.7039274924471 164.2296072507553 -23.5 -22.5
|
||||
227.3111782477341 229.4864048338369 -23.5 -22.5
|
||||
231.6616314199396 272.9909365558913 -23.5 -22.5
|
||||
337.1601208459214 343.6858006042296 -23.5 -22.5
|
||||
79.02439024390245 107.5609756097561 -24.5 -23.5
|
||||
158.0487804878049 163.5365853658537 -24.5 -23.5
|
||||
227.1951219512195 273.2926829268293 -24.5 -23.5
|
||||
336.9512195121952 343.5365853658536 -24.5 -23.5
|
||||
77.30061349693251 108.2208588957055 -25.5 -24.5
|
||||
157.9141104294479 163.4355828220859 -25.5 -24.5
|
||||
227.4846625766871 272.7607361963190 -25.5 -24.5
|
||||
337.9141104294479 343.4355828220859 -25.5 -24.5
|
||||
76.90402476780186 94.73684210526315 -26.5 -25.5
|
||||
95.85139318885450 108.1114551083591 -26.5 -25.5
|
||||
157.1517027863777 163.8390092879257 -26.5 -25.5
|
||||
227.3684210526316 271.9504643962848 -26.5 -25.5
|
||||
336.5944272445821 343.2817337461300 -26.5 -25.5
|
||||
76.50000000000000 94.50000000000000 -27.5 -26.5
|
||||
96.75000000000000 110.2500000000000 -27.5 -26.5
|
||||
157.5000000000000 164.2500000000000 -27.5 -26.5
|
||||
227.2500000000000 271.1250000000000 -27.5 -26.5
|
||||
336.3750000000000 343.1250000000000 -27.5 -26.5
|
||||
76.08832807570978 94.25867507886434 -28.5 -27.5
|
||||
95.39432176656152 110.1577287066246 -28.5 -27.5
|
||||
157.8548895899054 164.6687697160883 -28.5 -27.5
|
||||
227.1293375394322 271.4195583596214 -28.5 -27.5
|
||||
337.2870662460568 342.9652996845426 -28.5 -27.5
|
||||
73.37579617834395 75.66878980891720 -29.5 -28.5
|
||||
76.81528662420382 112.3566878980892 -29.5 -28.5
|
||||
158.2165605095541 163.9490445859873 -29.5 -28.5
|
||||
227.0063694267516 270.5732484076433 -29.5 -28.5
|
||||
337.0700636942675 342.8025477707006 -29.5 -28.5
|
||||
72.92604501607717 74.08360128617363 -30.5 -29.5
|
||||
77.55627009646302 113.4405144694534 -30.5 -29.5
|
||||
157.4276527331190 164.3729903536978 -30.5 -29.5
|
||||
228.0385852090032 270.8681672025724 -30.5 -29.5
|
||||
336.8488745980707 342.6366559485531 -30.5 -29.5
|
||||
78.31168831168831 115.7142857142857 -31.5 -30.5
|
||||
157.7922077922078 163.6363636363636 -31.5 -30.5
|
||||
215.0649350649351 216.2337662337662 -31.5 -30.5
|
||||
217.4025974025974 218.5714285714286 -31.5 -30.5
|
||||
219.7402597402597 220.9090909090909 -31.5 -30.5
|
||||
226.7532467532468 270.0000000000000 -31.5 -30.5
|
||||
336.6233766233766 342.4675324675325 -31.5 -30.5
|
||||
77.90163934426229 116.8524590163935 -32.5 -31.5
|
||||
158.1639344262295 164.0655737704918 -32.5 -31.5
|
||||
210.0983606557377 211.2786885245902 -32.5 -31.5
|
||||
214.8196721311475 216.0000000000000 -32.5 -31.5
|
||||
219.5409836065574 269.1147540983607 -32.5 -31.5
|
||||
336.3934426229508 342.2950819672131 -32.5 -31.5
|
||||
77.74086378737542 116.0132890365448 -33.5 -32.5
|
||||
157.8737541528239 163.8538205980066 -33.5 -32.5
|
||||
212.8903654485050 215.2823920265781 -33.5 -32.5
|
||||
218.8704318936877 267.9069767441861 -33.5 -32.5
|
||||
336.0797342192691 342.0598006644518 -33.5 -32.5
|
||||
351.6279069767442 352.8239202657807 -33.5 -32.5
|
||||
79.73154362416108 80.93959731543625 -34.5 -33.5
|
||||
82.14765100671141 117.1812080536913 -34.5 -33.5
|
||||
158.2550335570470 164.2953020134228 -34.5 -33.5
|
||||
218.6577181208054 265.7718120805369 -34.5 -33.5
|
||||
335.8389261744966 343.0872483221476 -34.5 -33.5
|
||||
83.26530612244898 120.0000000000000 -35.5 -34.5
|
||||
157.9591836734694 164.0816326530612 -35.5 -34.5
|
||||
216.7346938775510 265.7142857142857 -35.5 -34.5
|
||||
336.7346938775510 342.8571428571428 -35.5 -34.5
|
||||
86.59793814432990 89.07216494845360 -36.5 -35.5
|
||||
90.30927835051546 120.0000000000000 -36.5 -35.5
|
||||
158.3505154639175 164.5360824742268 -36.5 -35.5
|
||||
216.4948453608247 264.7422680412371 -36.5 -35.5
|
||||
336.4948453608247 342.6804123711340 -36.5 -35.5
|
||||
87.80487804878048 89.05923344947735 -37.5 -36.5
|
||||
92.82229965156795 120.4181184668990 -37.5 -36.5
|
||||
144.2508710801394 146.7595818815331 -37.5 -36.5
|
||||
159.3031358885017 164.3205574912892 -37.5 -36.5
|
||||
200.6968641114983 201.9512195121951 -37.5 -36.5
|
||||
211.9860627177700 264.6689895470383 -37.5 -36.5
|
||||
336.1672473867596 342.4390243902439 -37.5 -36.5
|
||||
92.86219081272085 122.1201413427562 -38.5 -37.5
|
||||
145.0176678445229 146.2897526501767 -38.5 -37.5
|
||||
159.0106007067138 164.0989399293286 -38.5 -37.5
|
||||
207.3498233215548 264.5936395759717 -38.5 -37.5
|
||||
335.8303886925795 342.1908127208480 -38.5 -37.5
|
||||
98.06451612903227 125.1612903225806 -39.5 -38.5
|
||||
145.8064516129032 147.0967741935484 -39.5 -38.5
|
||||
158.7096774193548 163.8709677419355 -39.5 -38.5
|
||||
203.8709677419355 205.1612903225807 -39.5 -38.5
|
||||
207.7419354838710 263.2258064516129 -39.5 -38.5
|
||||
335.4838709677420 343.2258064516129 -39.5 -38.5
|
||||
98.18181818181817 124.3636363636364 -40.5 -39.5
|
||||
145.3090909090909 146.6181818181818 -40.5 -39.5
|
||||
158.4000000000000 163.6363636363636 -40.5 -39.5
|
||||
206.8363636363636 263.1272727272727 -40.5 -39.5
|
||||
335.1272727272727 342.9818181818182 -40.5 -39.5
|
||||
98.30258302583026 126.1992619926199 -41.5 -40.5
|
||||
159.4095940959409 164.7232472324723 -41.5 -40.5
|
||||
207.2324723247232 263.0258302583026 -41.5 -40.5
|
||||
334.7601476014760 342.7306273062730 -41.5 -40.5
|
||||
101.1235955056180 106.5168539325843 -42.5 -41.5
|
||||
107.8651685393259 126.7415730337079 -42.5 -41.5
|
||||
159.1011235955056 164.4943820224719 -42.5 -41.5
|
||||
206.2921348314607 262.9213483146067 -42.5 -41.5
|
||||
334.3820224719101 342.4719101123595 -42.5 -41.5
|
||||
101.2927756653992 128.6692015209125 -43.5 -42.5
|
||||
149.2015209125475 151.9391634980988 -43.5 -42.5
|
||||
160.1520912547528 164.2585551330799 -43.5 -42.5
|
||||
203.9543726235741 261.4448669201521 -43.5 -42.5
|
||||
333.9923954372624 342.2053231939163 -43.5 -42.5
|
||||
103.2558139534884 128.3720930232558 -44.5 -43.5
|
||||
147.9069767441860 150.6976744186047 -44.5 -43.5
|
||||
159.0697674418605 164.6511627906977 -44.5 -43.5
|
||||
185.5813953488372 186.9767441860465 -44.5 -43.5
|
||||
203.7209302325581 259.5348837209302 -44.5 -43.5
|
||||
334.8837209302325 341.8604651162791 -44.5 -43.5
|
||||
110.5511811023622 128.9763779527559 -45.5 -44.5
|
||||
147.4015748031496 150.2362204724409 -45.5 -44.5
|
||||
158.7401574803150 164.4094488188977 -45.5 -44.5
|
||||
184.2519685039370 188.5039370078740 -45.5 -44.5
|
||||
189.9212598425197 192.7559055118111 -45.5 -44.5
|
||||
195.5905511811024 257.9527559055118 -45.5 -44.5
|
||||
334.4881889763780 342.9921259842520 -45.5 -44.5
|
||||
112.3200000000000 132.4800000000000 -46.5 -45.5
|
||||
135.3600000000000 136.8000000000000 -46.5 -45.5
|
||||
145.4400000000000 154.0800000000000 -46.5 -45.5
|
||||
155.5200000000000 164.1600000000000 -46.5 -45.5
|
||||
184.3200000000000 188.6400000000000 -46.5 -45.5
|
||||
190.0800000000000 191.5200000000000 -46.5 -45.5
|
||||
195.8400000000000 256.3200000000000 -46.5 -45.5
|
||||
334.0800000000000 342.7200000000000 -46.5 -45.5
|
||||
113.1428571428571 136.6530612244898 -47.5 -46.5
|
||||
145.4693877551020 164.5714285714286 -47.5 -46.5
|
||||
167.5102040816327 168.9795918367347 -47.5 -46.5
|
||||
183.6734693877551 186.6122448979592 -47.5 -46.5
|
||||
191.0204081632653 192.4897959183673 -47.5 -46.5
|
||||
196.8979591836735 257.1428571428572 -47.5 -46.5
|
||||
333.5510204081633 342.3673469387755 -47.5 -46.5
|
||||
109.5000000000000 111.0000000000000 -48.5 -47.5
|
||||
112.5000000000000 138.0000000000000 -48.5 -47.5
|
||||
144.0000000000000 169.5000000000000 -48.5 -47.5
|
||||
184.5000000000000 255.0000000000000 -48.5 -47.5
|
||||
334.5000000000000 342.0000000000000 -48.5 -47.5
|
||||
114.4067796610169 141.8644067796610 -49.5 -48.5
|
||||
144.9152542372881 172.3728813559322 -49.5 -48.5
|
||||
184.5762711864407 254.7457627118644 -49.5 -48.5
|
||||
332.5423728813559 341.6949152542373 -49.5 -48.5
|
||||
116.8831168831169 172.9870129870130 -50.5 -49.5
|
||||
183.8961038961039 252.4675324675325 -50.5 -49.5
|
||||
331.9480519480520 342.8571428571428 -50.5 -49.5
|
||||
122.6548672566372 250.0884955752212 -51.5 -50.5
|
||||
331.3274336283186 342.4778761061947 -51.5 -50.5
|
||||
122.1719457013575 250.8597285067873 -52.5 -51.5
|
||||
332.3076923076923 342.0814479638009 -52.5 -51.5
|
||||
121.6666666666667 250.0000000000000 -53.5 -52.5
|
||||
331.6666666666667 343.3333333333333 -53.5 -52.5
|
||||
121.1374407582938 250.8056872037915 -54.5 -53.5
|
||||
330.9952606635071 341.2322274881517 -54.5 -53.5
|
||||
120.5825242718447 249.9029126213592 -55.5 -54.5
|
||||
332.0388349514564 340.7766990291262 -55.5 -54.5
|
||||
118.2089552238806 248.9552238805970 -56.5 -55.5
|
||||
331.3432835820896 342.0895522388060 -56.5 -55.5
|
||||
110.2040816326531 112.0408163265306 -57.5 -56.5
|
||||
115.7142857142857 247.9591836734694 -57.5 -56.5
|
||||
330.6122448979592 341.6326530612245 -57.5 -56.5
|
||||
108.0000000000000 248.2105263157895 -58.5 -57.5
|
||||
259.5789473684210 261.4736842105264 -58.5 -57.5
|
||||
329.6842105263158 342.9473684210526 -58.5 -57.5
|
||||
108.9729729729730 247.1351351351351 -59.5 -58.5
|
||||
330.8108108108108 342.4864864864865 -59.5 -58.5
|
||||
112.0000000000000 246.0000000000000 -60.5 -59.5
|
||||
330.0000000000000 342.0000000000000 -60.5 -59.5
|
||||
111.7241379310345 113.7931034482759 -61.5 -60.5
|
||||
115.8620689655172 246.2068965517241 -61.5 -60.5
|
||||
331.0344827586207 339.3103448275862 -61.5 -60.5
|
||||
112.8994082840237 253.4911242603550 -62.5 -61.5
|
||||
117.0552147239264 253.9877300613497 -63.5 -62.5
|
||||
119.2356687898089 240.7643312101911 -64.5 -63.5
|
||||
243.0573248407643 249.9363057324841 -64.5 -63.5
|
||||
307.2611464968153 314.1401273885351 -64.5 -63.5
|
||||
125.5263157894737 239.2105263157895 -65.5 -64.5
|
||||
241.5789473684210 246.3157894736842 -65.5 -64.5
|
||||
307.8947368421053 315.0000000000000 -65.5 -64.5
|
||||
125.7534246575343 214.5205479452055 -66.5 -65.5
|
||||
216.9863013698630 219.4520547945205 -66.5 -65.5
|
||||
226.8493150684931 229.3150684931507 -66.5 -65.5
|
||||
234.2465753424658 241.6438356164384 -66.5 -65.5
|
||||
251.5068493150685 253.9726027397261 -66.5 -65.5
|
||||
310.6849315068493 313.1506849315069 -66.5 -65.5
|
||||
123.4285714285714 216.0000000000000 -67.5 -66.5
|
||||
228.8571428571428 231.4285714285714 -67.5 -66.5
|
||||
234.0000000000000 241.7142857142857 -67.5 -66.5
|
||||
311.1428571428572 313.7142857142857 -67.5 -66.5
|
||||
123.5820895522388 214.9253731343283 -68.5 -67.5
|
||||
228.3582089552239 233.7313432835821 -68.5 -67.5
|
||||
236.4179104477612 239.1044776119403 -68.5 -67.5
|
||||
125.5813953488372 209.3023255813954 -69.5 -68.5
|
||||
231.6279069767442 240.0000000000000 -69.5 -68.5
|
||||
125.8536585365854 207.8048780487805 -70.5 -69.5
|
||||
231.2195121951220 237.0731707317073 -70.5 -69.5
|
||||
129.2307692307692 196.9230769230769 -71.5 -70.5
|
||||
233.8461538461539 236.9230769230769 -71.5 -70.5
|
||||
129.7297297297297 191.3513513513514 -72.5 -71.5
|
||||
236.7567567567568 240.0000000000000 -72.5 -71.5
|
||||
130.2857142857143 188.5714285714286 -73.5 -72.5
|
||||
253.7142857142857 257.1428571428572 -73.5 -72.5
|
||||
138.1818181818182 189.0909090909091 -74.5 -73.5
|
||||
250.9090909090909 254.5454545454545 -74.5 -73.5
|
||||
147.0967741935484 170.3225806451613 -75.5 -74.5
|
||||
174.1935483870968 185.8064516129032 -75.5 -74.5
|
||||
251.6129032258065 255.4838709677420 -75.5 -74.5
|
||||
148.9655172413793 157.2413793103448 -76.5 -75.5
|
||||
161.3793103448276 169.6551724137931 -76.5 -75.5
|
||||
148.5000000000000 166.5000000000000 -77.5 -76.5
|
||||
171.0000000000000 175.5000000000000 -77.5 -76.5
|
||||
155.6756756756757 165.4054054054054 -78.5 -77.5
|
||||
233.5135135135135 238.3783783783784 -78.5 -77.5
|
||||
158.8235294117647 164.1176470588235 -79.5 -78.5
|
||||
227.6470588235294 232.9411764705883 -79.5 -78.5
|
||||
324.0000000000000 331.2000000000000 -82.5 -81.5
|
||||
309.7674418604651 351.6279069767442 -83.5 -82.5
|
||||
291.8918918918919 9.729729729729730 -84.5 -83.5
|
||||
267.0967741935484 360.0000000000000 -85.5 -84.5
|
||||
273.6000000000000 14.40000000000000 -86.5 -85.5
|
||||
280.0000000000000 20.00000000000000 -87.5 -86.5
|
||||
270.0000000000000 30.00000000000000 -88.5 -87.5
|
676
masks/pscz/hibpscz.excludes
Normal file
676
masks/pscz/hibpscz.excludes
Normal file
|
@ -0,0 +1,676 @@
|
|||
PSCz hi-b excluded rectangles.
|
||||
minimum ecliptic latitude in deg = el- - .5
|
||||
maximum ecliptic latitude in deg = el+ + .5
|
||||
minimum ecliptic longitude in deg = (az- - 1)/azt * 360
|
||||
maximum ecliptic longitude in deg = az+/azt * 360
|
||||
If az- > az+, then rectangle folds around zero longitude.
|
||||
All excluded rectangles have azimuthal extent < 180 deg.
|
||||
el+ el- az- az+ azt
|
||||
78 78 11 12 74
|
||||
77 77 4 4 80
|
||||
77 77 7 13 80
|
||||
76 76 2 4 87
|
||||
76 76 7 14 87
|
||||
75 75 1 15 93
|
||||
74 74 96 97 99
|
||||
74 74 99 16 99
|
||||
73 73 98 17 105
|
||||
72 72 103 18 111
|
||||
71 71 108 19 117
|
||||
70 70 113 20 123
|
||||
69 69 119 21 129
|
||||
68 68 121 121 134
|
||||
68 68 124 21 134
|
||||
67 67 126 22 140
|
||||
66 66 127 22 146
|
||||
65 65 132 25 152
|
||||
64 64 137 26 157
|
||||
63 63 142 29 163
|
||||
62 62 147 31 169
|
||||
61 61 148 33 174
|
||||
60 60 152 35 179
|
||||
59 59 157 37 185
|
||||
58 58 160 38 190
|
||||
57 57 167 39 196
|
||||
56 56 169 169 201
|
||||
56 56 171 40 201
|
||||
55 55 170 170 206
|
||||
55 55 172 41 206
|
||||
54 54 173 42 211
|
||||
53 53 174 175 216
|
||||
53 53 177 44 216
|
||||
52 52 8 45 221
|
||||
52 52 173 173 221
|
||||
52 52 175 176 221
|
||||
52 52 178 178 221
|
||||
52 52 180 6 221
|
||||
51 51 11 46 226
|
||||
51 51 182 8 226
|
||||
50 50 5 9 231
|
||||
50 50 11 48 231
|
||||
50 50 186 1 231
|
||||
49 49 11 11 236
|
||||
49 49 13 49 236
|
||||
49 49 107 107 236
|
||||
49 49 189 233 236
|
||||
49 49 235 236 236
|
||||
48 48 6 7 240
|
||||
48 48 17 51 240
|
||||
48 48 108 108 240
|
||||
48 48 110 110 240
|
||||
48 48 192 236 240
|
||||
48 48 239 239 240
|
||||
47 47 7 7 245
|
||||
47 47 18 52 245
|
||||
47 47 110 112 245
|
||||
47 47 195 238 245
|
||||
46 46 19 54 250
|
||||
46 46 111 114 250
|
||||
46 46 198 239 250
|
||||
46 46 241 242 250
|
||||
46 46 244 244 250
|
||||
45 45 20 56 254
|
||||
45 45 114 116 254
|
||||
45 45 197 234 254
|
||||
45 45 237 242 254
|
||||
45 45 245 245 254
|
||||
45 45 254 3 254
|
||||
44 44 22 58 258
|
||||
44 44 115 118 258
|
||||
44 44 198 232 258
|
||||
44 44 235 239 258
|
||||
44 44 241 246 258
|
||||
43 43 23 59 263
|
||||
43 43 117 120 263
|
||||
43 43 201 241 263
|
||||
43 43 245 250 263
|
||||
42 42 24 60 267
|
||||
42 42 119 122 267
|
||||
42 42 204 236 267
|
||||
42 42 239 244 267
|
||||
42 42 249 254 267
|
||||
42 42 260 260 267
|
||||
41 41 26 61 271
|
||||
41 41 121 124 271
|
||||
41 41 206 240 271
|
||||
41 41 243 243 271
|
||||
41 41 246 247 271
|
||||
41 41 253 258 271
|
||||
40 40 29 36 275
|
||||
40 40 38 63 275
|
||||
40 40 122 125 275
|
||||
40 40 209 243 275
|
||||
40 40 247 247 275
|
||||
40 40 257 262 275
|
||||
40 40 268 268 275
|
||||
39 39 31 37 279
|
||||
39 39 40 64 279
|
||||
39 39 124 127 279
|
||||
39 39 212 243 279
|
||||
39 39 261 266 279
|
||||
38 38 32 35 283
|
||||
38 38 37 37 283
|
||||
38 38 43 65 283
|
||||
38 38 126 129 283
|
||||
38 38 216 245 283
|
||||
38 38 248 248 283
|
||||
38 38 265 270 283
|
||||
37 37 34 37 287
|
||||
37 37 44 68 287
|
||||
37 37 128 131 287
|
||||
37 37 220 248 287
|
||||
37 37 269 274 287
|
||||
36 36 37 38 291
|
||||
36 36 44 67 291
|
||||
36 36 129 133 291
|
||||
36 36 217 217 291
|
||||
36 36 219 219 291
|
||||
36 36 223 251 291
|
||||
36 36 273 278 291
|
||||
35 35 44 70 294
|
||||
35 35 130 134 294
|
||||
35 35 218 219 294
|
||||
35 35 225 254 294
|
||||
35 35 276 281 294
|
||||
34 34 45 71 298
|
||||
34 34 132 136 298
|
||||
34 34 218 220 298
|
||||
34 34 228 257 298
|
||||
34 34 279 284 298
|
||||
33 33 23 23 301
|
||||
33 33 46 71 301
|
||||
33 33 133 137 301
|
||||
33 33 221 221 301
|
||||
33 33 223 225 301
|
||||
33 33 227 255 301
|
||||
33 33 258 259 301
|
||||
33 33 282 286 301
|
||||
32 32 47 72 305
|
||||
32 32 135 139 305
|
||||
32 32 227 258 305
|
||||
32 32 286 290 305
|
||||
31 31 48 72 308
|
||||
31 31 136 140 308
|
||||
31 31 230 261 308
|
||||
31 31 289 293 308
|
||||
30 30 50 73 311
|
||||
30 30 137 142 311
|
||||
30 30 234 265 311
|
||||
30 30 292 296 311
|
||||
30 30 303 303 311
|
||||
29 29 51 73 314
|
||||
29 29 75 76 314
|
||||
29 29 139 143 314
|
||||
29 29 237 263 314
|
||||
29 29 265 265 314
|
||||
29 29 268 268 314
|
||||
29 29 295 299 314
|
||||
28 28 52 71 317
|
||||
28 28 73 73 317
|
||||
28 28 140 145 317
|
||||
28 28 234 265 317
|
||||
28 28 267 268 317
|
||||
28 28 298 302 317
|
||||
28 28 309 309 317
|
||||
27 27 50 71 320
|
||||
27 27 74 75 320
|
||||
27 27 141 146 320
|
||||
27 27 236 237 320
|
||||
27 27 239 268 320
|
||||
27 27 271 271 320
|
||||
27 27 300 305 320
|
||||
27 27 312 312 320
|
||||
26 26 51 72 323
|
||||
26 26 75 75 323
|
||||
26 26 142 147 323
|
||||
26 26 238 271 323
|
||||
26 26 298 298 323
|
||||
26 26 304 308 323
|
||||
25 25 52 75 326
|
||||
25 25 77 77 326
|
||||
25 25 144 148 326
|
||||
25 25 239 272 326
|
||||
25 25 307 311 326
|
||||
24 24 54 78 328
|
||||
24 24 145 149 328
|
||||
24 24 240 274 328
|
||||
24 24 308 313 328
|
||||
23 23 54 80 331
|
||||
23 23 146 151 331
|
||||
23 23 236 240 331
|
||||
23 23 242 277 331
|
||||
23 23 311 316 331
|
||||
22 22 55 81 333
|
||||
22 22 147 151 333
|
||||
22 22 236 279 333
|
||||
22 22 313 317 333
|
||||
21 21 55 55 336
|
||||
21 21 58 79 336
|
||||
21 21 149 153 336
|
||||
21 21 238 281 336
|
||||
21 21 316 320 336
|
||||
20 20 55 55 338
|
||||
20 20 59 81 338
|
||||
20 20 149 154 338
|
||||
20 20 239 282 338
|
||||
20 20 318 322 338
|
||||
19 19 31 31 340
|
||||
19 19 54 54 340
|
||||
19 19 59 82 340
|
||||
19 19 150 154 340
|
||||
19 19 233 236 340
|
||||
19 19 238 281 340
|
||||
19 19 283 284 340
|
||||
19 19 320 324 340
|
||||
18 18 54 82 342
|
||||
18 18 151 155 342
|
||||
18 18 232 282 342
|
||||
18 18 285 287 342
|
||||
18 18 322 326 342
|
||||
17 17 56 87 344
|
||||
17 17 152 156 344
|
||||
17 17 233 284 344
|
||||
17 17 287 289 344
|
||||
17 17 324 328 344
|
||||
16 16 56 87 346
|
||||
16 16 153 157 346
|
||||
16 16 227 228 346
|
||||
16 16 231 286 346
|
||||
16 16 289 289 346
|
||||
16 16 326 330 346
|
||||
15 15 54 87 347
|
||||
15 15 153 158 347
|
||||
15 15 229 229 347
|
||||
15 15 232 286 347
|
||||
15 15 290 290 347
|
||||
15 15 326 331 347
|
||||
14 14 53 88 349
|
||||
14 14 154 159 349
|
||||
14 14 233 288 349
|
||||
14 14 328 333 349
|
||||
13 13 53 92 350
|
||||
13 13 154 159 350
|
||||
13 13 232 288 350
|
||||
13 13 324 324 350
|
||||
13 13 329 334 350
|
||||
13 13 342 342 350
|
||||
12 12 53 93 352
|
||||
12 12 155 160 352
|
||||
12 12 232 290 352
|
||||
12 12 326 326 352
|
||||
12 12 331 336 352
|
||||
12 12 344 344 352
|
||||
11 11 52 93 353
|
||||
11 11 156 161 353
|
||||
11 11 232 291 353
|
||||
11 11 327 327 353
|
||||
11 11 332 337 353
|
||||
11 11 345 345 353
|
||||
10 10 9 9 354
|
||||
10 10 52 62 354
|
||||
10 10 64 94 354
|
||||
10 10 156 161 354
|
||||
10 10 231 291 354
|
||||
10 10 333 338 354
|
||||
10 10 351 351 354
|
||||
9 9 9 9 355
|
||||
9 9 52 56 355
|
||||
9 9 58 58 355
|
||||
9 9 62 93 355
|
||||
9 9 157 161 355
|
||||
9 9 232 292 355
|
||||
9 9 334 339 355
|
||||
9 9 352 352 355
|
||||
8 8 9 9 356
|
||||
8 8 64 93 356
|
||||
8 8 157 162 356
|
||||
8 8 232 293 356
|
||||
8 8 335 340 356
|
||||
7 7 9 9 357
|
||||
7 7 65 94 357
|
||||
7 7 158 162 357
|
||||
7 7 234 291 357
|
||||
7 7 293 294 357
|
||||
7 7 336 341 357
|
||||
6 6 66 93 358
|
||||
6 6 234 288 358
|
||||
6 5 158 163 358
|
||||
6 5 337 342 358
|
||||
6 5 355 355 358
|
||||
5 5 46 48 358
|
||||
5 5 58 60 358
|
||||
5 5 67 93 358
|
||||
5 5 235 288 358
|
||||
4 4 47 48 359
|
||||
4 4 58 60 359
|
||||
4 4 64 94 359
|
||||
4 4 338 343 359
|
||||
4 3 237 287 359
|
||||
4 1 159 163 359
|
||||
3 3 47 47 359
|
||||
3 3 58 59 359
|
||||
3 3 64 96 359
|
||||
3 3 207 207 359
|
||||
3 3 338 343 359
|
||||
2 2 65 96 359
|
||||
2 2 207 208 359
|
||||
2 2 237 286 359
|
||||
2 1 338 343 359
|
||||
1 1 64 96 359
|
||||
1 1 236 236 359
|
||||
1 1 238 285 359
|
||||
0 0 63 96 360
|
||||
0 0 159 164 360
|
||||
0 0 236 285 360
|
||||
0 0 339 344 360
|
||||
-1 -1 63 96 359
|
||||
-1 -4 159 163 359
|
||||
-1 -4 235 285 359
|
||||
-1 -4 338 343 359
|
||||
-2 -2 59 96 359
|
||||
-3 -3 59 97 359
|
||||
-4 -4 58 98 359
|
||||
-5 -5 49 51 358
|
||||
-5 -5 54 54 358
|
||||
-5 -5 57 98 358
|
||||
-5 -5 230 231 358
|
||||
-5 -5 235 284 358
|
||||
-5 -6 158 163 358
|
||||
-5 -6 337 342 358
|
||||
-5 -6 355 355 358
|
||||
-6 -6 49 99 358
|
||||
-6 -6 233 284 358
|
||||
-7 -7 26 26 357
|
||||
-7 -7 48 98 357
|
||||
-7 -7 158 162 357
|
||||
-7 -7 227 228 357
|
||||
-7 -7 232 283 357
|
||||
-7 -7 336 341 357
|
||||
-8 -8 26 26 356
|
||||
-8 -8 49 98 356
|
||||
-8 -8 157 162 356
|
||||
-8 -8 227 281 356
|
||||
-8 -8 335 340 356
|
||||
-9 -9 26 26 355
|
||||
-9 -9 46 48 355
|
||||
-9 -9 52 55 355
|
||||
-9 -9 57 98 355
|
||||
-9 -9 157 161 355
|
||||
-9 -9 226 279 355
|
||||
-9 -9 334 339 355
|
||||
-9 -9 352 352 355
|
||||
-10 -10 26 26 354
|
||||
-10 -10 46 48 354
|
||||
-10 -10 52 54 354
|
||||
-10 -10 59 99 354
|
||||
-10 -10 156 161 354
|
||||
-10 -10 226 274 354
|
||||
-10 -10 333 338 354
|
||||
-10 -10 351 351 354
|
||||
-11 -11 28 28 353
|
||||
-11 -11 47 47 353
|
||||
-11 -11 49 51 353
|
||||
-11 -11 58 99 353
|
||||
-11 -11 156 161 353
|
||||
-11 -11 226 234 353
|
||||
-11 -11 237 274 353
|
||||
-11 -11 332 337 353
|
||||
-12 -12 58 100 352
|
||||
-12 -12 155 160 352
|
||||
-12 -12 226 233 352
|
||||
-12 -12 237 272 352
|
||||
-12 -12 331 336 352
|
||||
-13 -13 57 57 350
|
||||
-13 -13 59 62 350
|
||||
-13 -13 64 64 350
|
||||
-13 -13 68 68 350
|
||||
-13 -13 71 72 350
|
||||
-13 -13 74 99 350
|
||||
-13 -13 154 159 350
|
||||
-13 -13 225 270 350
|
||||
-13 -13 329 334 350
|
||||
-14 -14 56 57 349
|
||||
-14 -14 75 99 349
|
||||
-14 -14 154 159 349
|
||||
-14 -14 225 268 349
|
||||
-14 -14 274 274 349
|
||||
-14 -14 328 333 349
|
||||
-15 -15 57 57 347
|
||||
-15 -15 59 59 347
|
||||
-15 -15 74 99 347
|
||||
-15 -15 153 158 347
|
||||
-15 -15 225 267 347
|
||||
-15 -15 272 273 347
|
||||
-15 -15 277 277 347
|
||||
-15 -15 326 331 347
|
||||
-16 -16 56 56 346
|
||||
-16 -16 59 59 346
|
||||
-16 -16 75 99 346
|
||||
-16 -16 153 157 346
|
||||
-16 -16 225 266 346
|
||||
-16 -16 326 330 346
|
||||
-17 -17 55 58 344
|
||||
-17 -17 76 100 344
|
||||
-17 -17 152 156 344
|
||||
-17 -17 224 264 344
|
||||
-17 -17 324 328 344
|
||||
-18 -18 54 54 342
|
||||
-18 -18 56 57 342
|
||||
-18 -18 76 100 342
|
||||
-18 -18 151 155 342
|
||||
-18 -18 224 262 342
|
||||
-18 -18 322 326 342
|
||||
-19 -19 53 53 340
|
||||
-19 -19 55 56 340
|
||||
-19 -19 77 100 340
|
||||
-19 -19 150 154 340
|
||||
-19 -19 223 260 340
|
||||
-19 -19 320 324 340
|
||||
-19 -19 335 335 340
|
||||
-20 -20 53 55 338
|
||||
-20 -20 77 100 338
|
||||
-20 -20 149 154 338
|
||||
-20 -20 221 257 338
|
||||
-20 -20 318 322 338
|
||||
-20 -20 333 333 338
|
||||
-21 -21 24 24 336
|
||||
-21 -21 53 54 336
|
||||
-21 -21 76 99 336
|
||||
-21 -21 149 153 336
|
||||
-21 -21 220 255 336
|
||||
-21 -21 316 320 336
|
||||
-21 -21 323 323 336
|
||||
-22 -22 24 24 333
|
||||
-22 -22 52 52 333
|
||||
-22 -22 76 99 333
|
||||
-22 -22 147 151 333
|
||||
-22 -22 212 212 333
|
||||
-22 -22 215 215 333
|
||||
-22 -22 217 253 333
|
||||
-22 -22 313 317 333
|
||||
-22 -22 320 320 333
|
||||
-23 -23 25 25 331
|
||||
-23 -23 75 99 331
|
||||
-23 -23 146 151 331
|
||||
-23 -23 210 211 331
|
||||
-23 -23 214 251 331
|
||||
-23 -23 311 316 331
|
||||
-24 -24 73 98 328
|
||||
-24 -24 145 149 328
|
||||
-24 -24 208 249 328
|
||||
-24 -24 308 313 328
|
||||
-25 -25 71 98 326
|
||||
-25 -25 144 148 326
|
||||
-25 -25 207 247 326
|
||||
-25 -25 307 311 326
|
||||
-26 -26 70 85 323
|
||||
-26 -26 87 97 323
|
||||
-26 -26 142 147 323
|
||||
-26 -26 205 244 323
|
||||
-26 -26 303 308 323
|
||||
-27 -27 69 84 320
|
||||
-27 -27 87 98 320
|
||||
-27 -27 141 146 320
|
||||
-27 -27 203 241 320
|
||||
-27 -27 300 305 320
|
||||
-28 -28 68 83 317
|
||||
-28 -28 85 97 317
|
||||
-28 -28 140 145 317
|
||||
-28 -28 201 239 317
|
||||
-28 -28 298 302 317
|
||||
-29 -29 65 66 314
|
||||
-29 -29 68 98 314
|
||||
-29 -29 139 143 314
|
||||
-29 -29 199 236 314
|
||||
-29 -29 295 299 314
|
||||
-30 -30 64 64 311
|
||||
-30 -30 68 98 311
|
||||
-30 -30 137 142 311
|
||||
-30 -30 198 234 311
|
||||
-30 -30 292 296 311
|
||||
-31 -31 68 99 308
|
||||
-31 -31 136 140 308
|
||||
-31 -31 185 185 308
|
||||
-31 -31 187 187 308
|
||||
-31 -31 189 189 308
|
||||
-31 -31 195 231 308
|
||||
-31 -31 289 293 308
|
||||
-32 -32 67 99 305
|
||||
-32 -32 135 139 305
|
||||
-32 -32 179 179 305
|
||||
-32 -32 183 183 305
|
||||
-32 -32 187 228 305
|
||||
-32 -32 286 290 305
|
||||
-33 -33 66 97 301
|
||||
-33 -33 133 137 301
|
||||
-33 -33 179 180 301
|
||||
-33 -33 184 224 301
|
||||
-33 -33 282 286 301
|
||||
-33 -33 295 295 301
|
||||
-34 -34 67 67 298
|
||||
-34 -34 69 97 298
|
||||
-34 -34 132 136 298
|
||||
-34 -34 182 220 298
|
||||
-34 -34 279 284 298
|
||||
-35 -35 69 98 294
|
||||
-35 -35 130 134 294
|
||||
-35 -35 178 217 294
|
||||
-35 -35 276 280 294
|
||||
-36 -36 71 72 291
|
||||
-36 -36 74 97 291
|
||||
-36 -36 129 133 291
|
||||
-36 -36 176 214 291
|
||||
-36 -36 273 277 291
|
||||
-37 -37 71 71 287
|
||||
-37 -37 75 96 287
|
||||
-37 -37 116 117 287
|
||||
-37 -37 128 131 287
|
||||
-37 -37 161 161 287
|
||||
-37 -37 170 211 287
|
||||
-37 -37 269 273 287
|
||||
-38 -38 74 96 283
|
||||
-38 -38 115 115 283
|
||||
-38 -38 126 129 283
|
||||
-38 -38 164 208 283
|
||||
-38 -38 265 269 283
|
||||
-39 -39 77 97 279
|
||||
-39 -39 114 114 279
|
||||
-39 -39 124 127 279
|
||||
-39 -39 159 159 279
|
||||
-39 -39 162 204 279
|
||||
-39 -39 261 266 279
|
||||
-40 -40 76 95 275
|
||||
-40 -40 112 112 275
|
||||
-40 -40 122 125 275
|
||||
-40 -40 159 201 275
|
||||
-40 -40 257 262 275
|
||||
-41 -41 75 95 271
|
||||
-41 -41 121 124 271
|
||||
-41 -41 157 198 271
|
||||
-41 -41 253 258 271
|
||||
-42 -42 76 79 267
|
||||
-42 -42 81 94 267
|
||||
-42 -42 119 122 267
|
||||
-42 -42 154 195 267
|
||||
-42 -42 249 254 267
|
||||
-43 -43 75 94 263
|
||||
-43 -43 110 111 263
|
||||
-43 -43 118 120 263
|
||||
-43 -43 150 191 263
|
||||
-43 -43 245 250 263
|
||||
-44 -44 75 92 258
|
||||
-44 -44 107 108 258
|
||||
-44 -44 115 118 258
|
||||
-44 -44 134 134 258
|
||||
-44 -44 147 186 258
|
||||
-44 -44 241 245 258
|
||||
-45 -45 79 91 254
|
||||
-45 -45 105 106 254
|
||||
-45 -45 113 116 254
|
||||
-45 -45 131 133 254
|
||||
-45 -45 135 136 254
|
||||
-45 -45 139 182 254
|
||||
-45 -45 237 242 254
|
||||
-46 -46 79 92 250
|
||||
-46 -46 95 95 250
|
||||
-46 -46 102 107 250
|
||||
-46 -46 109 114 250
|
||||
-46 -46 129 131 250
|
||||
-46 -46 133 133 250
|
||||
-46 -46 137 178 250
|
||||
-46 -46 233 238 250
|
||||
-47 -47 78 93 245
|
||||
-47 -47 100 112 245
|
||||
-47 -47 115 115 245
|
||||
-47 -47 126 127 245
|
||||
-47 -47 131 131 245
|
||||
-47 -47 135 175 245
|
||||
-47 -47 228 233 245
|
||||
-48 -48 74 74 240
|
||||
-48 -48 76 92 240
|
||||
-48 -48 97 113 240
|
||||
-48 -48 124 170 240
|
||||
-48 -48 224 228 240
|
||||
-49 -49 76 93 236
|
||||
-49 -49 96 113 236
|
||||
-49 -49 122 167 236
|
||||
-49 -49 219 224 236
|
||||
-50 -50 76 111 231
|
||||
-50 -50 119 162 231
|
||||
-50 -50 214 220 231
|
||||
-51 -51 78 157 226
|
||||
-51 -51 209 215 226
|
||||
-52 -52 76 154 221
|
||||
-52 -52 205 210 221
|
||||
-53 -53 74 150 216
|
||||
-53 -53 200 206 216
|
||||
-54 -54 72 147 211
|
||||
-54 -54 195 200 211
|
||||
-55 -55 70 143 206
|
||||
-55 -55 191 195 206
|
||||
-56 -56 67 139 201
|
||||
-56 -56 186 191 201
|
||||
-57 -57 61 61 196
|
||||
-57 -57 64 135 196
|
||||
-57 -57 181 186 196
|
||||
-58 -58 58 131 190
|
||||
-58 -58 138 138 190
|
||||
-58 -58 175 181 190
|
||||
-59 -59 57 127 185
|
||||
-59 -59 171 176 185
|
||||
-60 -60 57 123 180
|
||||
-60 -60 166 171 180
|
||||
-61 -61 55 55 174
|
||||
-61 -61 57 119 174
|
||||
-61 -61 161 164 174
|
||||
-62 -62 54 119 169
|
||||
-63 -63 54 115 163
|
||||
-64 -64 53 105 157
|
||||
-64 -64 107 109 157
|
||||
-64 -64 135 137 157
|
||||
-65 -65 54 101 152
|
||||
-65 -65 103 104 152
|
||||
-65 -65 131 133 152
|
||||
-66 -66 52 87 146
|
||||
-66 -66 89 89 146
|
||||
-66 -66 93 93 146
|
||||
-66 -66 96 98 146
|
||||
-66 -66 103 103 146
|
||||
-66 -66 127 127 146
|
||||
-67 -67 49 84 140
|
||||
-67 -67 90 90 140
|
||||
-67 -67 92 94 140
|
||||
-67 -67 122 122 140
|
||||
-68 -68 47 80 134
|
||||
-68 -68 86 87 134
|
||||
-68 -68 89 89 134
|
||||
-69 -69 46 75 129
|
||||
-69 -69 84 86 129
|
||||
-70 -70 44 71 123
|
||||
-70 -70 80 81 123
|
||||
-71 -71 43 64 117
|
||||
-71 -71 77 77 117
|
||||
-72 -72 41 59 111
|
||||
-72 -72 74 74 111
|
||||
-73 -73 39 55 105
|
||||
-73 -73 75 75 105
|
||||
-74 -74 39 52 99
|
||||
-74 -74 70 70 99
|
||||
-75 -75 39 44 93
|
||||
-75 -75 46 48 93
|
||||
-75 -75 66 66 93
|
||||
-76 -76 37 38 87
|
||||
-76 -76 40 41 87
|
||||
-77 -77 34 37 80
|
||||
-77 -77 39 39 80
|
||||
-78 -78 33 34 74
|
||||
-78 -78 49 49 74
|
||||
-79 -79 31 31 68
|
||||
-79 -79 44 44 68
|
||||
-82 -82 46 46 50
|
||||
-83 -83 38 42 43
|
||||
-84 -84 31 1 37
|
||||
-85 -85 24 31 31
|
||||
-86 -86 20 1 25
|
||||
-87 -87 15 1 18
|
||||
-88 -88 10 1 12
|
3561
masks/pscz/hibpscz.pol
Normal file
3561
masks/pscz/hibpscz.pol
Normal file
File diff suppressed because it is too large
Load diff
3343
masks/pscz/hibpscz.pol2
Normal file
3343
masks/pscz/hibpscz.pol2
Normal file
File diff suppressed because it is too large
Load diff
27
masks/sdss/README
Normal file
27
masks/sdss/README
Normal file
|
@ -0,0 +1,27 @@
|
|||
To run the quickstart example script:
|
||||
sdss_quickstart.sh
|
||||
|
||||
|
||||
To prepare the full SDSS mask:
|
||||
|
||||
Download the SDSS window and mask files from the mangle website at
|
||||
http://space.mit.edu/home/tegmark/mangle/download/data.html
|
||||
|
||||
|
||||
or from the NYU VAGC:
|
||||
http://sdss.physics.nyu.edu/lss/<release>/<cut>/<number>/lss/
|
||||
download window.<release><cut><number>.ply and mask.<release><cut><number>.ply
|
||||
|
||||
|
||||
e.g. for the safe0 sample for fixed version of Data Release 6, go to
|
||||
http://sdss.physics.nyu.edu/lss/dr6fix/safe/0/lss/
|
||||
and download window.dr6fixsafe0.ply and mask.dr6fixsafe0.ply
|
||||
|
||||
then run the mangle_sdss.sh script:
|
||||
mangle_sdss.sh <release> <cut><number>
|
||||
|
||||
e.g.:
|
||||
mangle_sdss.sh dr6fix safe0
|
||||
|
||||
This will balkanize the window function and the holes together.
|
||||
|
1
masks/sdss/args.dat
Normal file
1
masks/sdss/args.dat
Normal file
|
@ -0,0 +1 @@
|
|||
1 512 jhd rast_512.fits ../../bin/dat2fits_binary.x0 ../../bin/dat2fits_binary.x1 ../../bin/dat2fits_binary.x2 ../../bin/dat2fits_binary.x3 ../../bin/dat2fits_binary.x4 ../../bin/dat2fits_binary.x5 ../../bin/dat2fits_binary.x6 ../../bin/dat2fits_binary.x7 ../../bin/dat2fits_binary.x8 ../../bin/dat2fits_binary.x9 10 11 12 13 14 15 16
|
142
masks/sdss/mangle_sdss.sh
Executable file
142
masks/sdss/mangle_sdss.sh
Executable file
|
@ -0,0 +1,142 @@
|
|||
#! /bin/sh
|
||||
# © M E C Swanson 2007
|
||||
#script to combine window and holes of SDSS, as provided by the NYU VAGC:
|
||||
# http://sdss.physics.nyu.edu/vagc/
|
||||
#the window and mask files used by this script are in
|
||||
#lss/<release>/<cut>/<number>/lss/
|
||||
#window.<release><cut><number>.ply and mask.<release><cut><number>.ply
|
||||
#USAGE: mangle_sdss.sh <release> <cut><number>
|
||||
#EXAMPLE:mangle_sdss.sh dr7 safe0
|
||||
|
||||
if [ "$MANGLEBINDIR" = "" ] ; then
|
||||
MANGLEBINDIR="../../bin"
|
||||
fi
|
||||
if [ "$MANGLESCRIPTSDIR" = "" ] ; then
|
||||
MANGLESCRIPTSDIR="../../scripts"
|
||||
fi
|
||||
if [ "$MANGLEDATADIR" = "" ] ; then
|
||||
MANGLEDATADIR="../../masks"
|
||||
fi
|
||||
|
||||
sample=$1
|
||||
cuts=$2
|
||||
|
||||
#check command line arguments
|
||||
if [ "$sample" = "" ] || [ "$cuts" = "" ] ; then
|
||||
echo >&2 "ERROR: enter the SDSS release and cuts to use as command line arguments."
|
||||
echo >&2 ""
|
||||
echo >&2 "USAGE: mangle_sdss.sh <release> <cut><number>"
|
||||
echo >&2 "EXAMPLE:mangle_sdss.sh dr7 safe0"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
user=`whoami`
|
||||
names=`finger $user | fgrep "ame:" | sed 's/.*: *\([^ ]*\)[^:]*/\1/'`
|
||||
for name in ${names}; do break; done
|
||||
echo "Hello $name, watch me combine the window function and holes for the SDSS survey."
|
||||
|
||||
# to make verbose
|
||||
quiet=
|
||||
# to make quiet
|
||||
#quiet=-q
|
||||
|
||||
#to assign new id numbers
|
||||
old=
|
||||
#to keep old id numbers
|
||||
#old=-vo
|
||||
|
||||
#to pixelize dynamically
|
||||
#pix=
|
||||
#restag=
|
||||
#to pixelize everything to fixed resolution
|
||||
scheme="d"
|
||||
res=6
|
||||
pix="-P${scheme}0,${res}"
|
||||
restag="_res${res}${scheme}"
|
||||
|
||||
#uncomment this to put files from different releases in individual directories
|
||||
#filedir=$MANGLEDATADIR/$sample/$cuts/
|
||||
#cd $filedir
|
||||
|
||||
# name of output file to contain sdss polygons
|
||||
pol=sdss_${sample}${cuts}${restag}.pol
|
||||
grph=sdss_${sample}${cuts}${restag}.grph
|
||||
list=sdss_${sample}${cuts}${restag}.list
|
||||
eps=sdss_${sample}${cuts}${restag}.eps
|
||||
fields=window.${sample}${cuts}.ply
|
||||
mask=mask.${sample}${cuts}.ply
|
||||
holes=holes.${sample}${cuts}.ply
|
||||
|
||||
echo 0 > jw
|
||||
echo "$MANGLEBINDIR/weight -zjw $mask $holes"
|
||||
$MANGLEBINDIR/weight -zjw $mask $holes
|
||||
|
||||
echo "$MANGLEBINDIR/snap -S $quiet $fields $holes jfhs"
|
||||
$MANGLEBINDIR/snap -S $quiet $fields $holes jfhs || exit
|
||||
echo "$MANGLEBINDIR/pixelize $quiet $old $pix jfhs jfhp"
|
||||
$MANGLEBINDIR/pixelize $quiet $old $pix jfhs jfhp || exit
|
||||
echo "$MANGLEBINDIR/snap $quiet $old jfhp jfh"
|
||||
$MANGLEBINDIR/snap $quiet $old jfhp jfh || exit
|
||||
echo "$MANGLEBINDIR/balkanize $quiet $old jfh jb"
|
||||
$MANGLEBINDIR/balkanize $quiet $old jfh jb || exit
|
||||
echo "$MANGLEBINDIR/unify $quiet $old jb $pol"
|
||||
$MANGLEBINDIR/unify $quiet $old jb $pol || exit
|
||||
|
||||
echo "Polygons for SDSS $1 $2 are in $pol"
|
||||
|
||||
# Graphics
|
||||
|
||||
# number of points per (2 pi) along each edge of a polygon
|
||||
pts_per_twopi=30
|
||||
|
||||
echo "$MANGLEBINDIR/poly2poly -og$pts_per_twopi $quiet $pol $grph"
|
||||
$MANGLEBINDIR/poly2poly -og$pts_per_twopi $quiet $pol $grph || exit
|
||||
echo "Data suitable for plotting polygons of the SDSS $1 $2 mask are in $grph:"
|
||||
echo "each line is a sequence of az, el points delineating the perimeter of a polygon."
|
||||
|
||||
# for plotting with the matlab script
|
||||
|
||||
if which matlab >/dev/null 2>&1 ; then
|
||||
# name of output file to contain matlab graphics
|
||||
|
||||
echo "$MANGLEBINDIR/poly2poly -ol$pts_per_twopi $quiet $pol $list"
|
||||
$MANGLEBINDIR/poly2poly -ol$pts_per_twopi $quiet $pol $list || exit
|
||||
echo "Data for plotting polygons of the SDSS $1 $2 mask in Matlab are in $list."
|
||||
echo "Using Matlab to plot the SDSS $1 $2 mask ..."
|
||||
echo "$MANGLESCRIPTSDIR/graphmask.sh $list $eps"
|
||||
$MANGLESCRIPTSDIR/graphmask.sh $list $eps 0 0 0 0 "Completeness mask for SDSS $sample $cuts"
|
||||
if [ $? -eq 0 ]; then
|
||||
echo "Made a figure illustrating the SDSS $1 $2 mask: $eps"
|
||||
echo "Type \"ggv $eps\" or \"gv $eps\" to view the figure."
|
||||
###uncomment to automatically plot usng the sm script -- sm tends to get overloaded with the SDSS mask
|
||||
# elif which sm >/dev/null 2>&1 ; then
|
||||
# echo "Using Supermongo to plot the SDSS $1 $2 mask:"
|
||||
# $MANGLESCRIPTSDIR/graphmasksm.sh $grph $eps 0 0 0 0 "Completeness mask for SDSS $sample $cuts"
|
||||
# if [ $? -eq 0 ]; then
|
||||
# echo "Made a figure illustrating the SDSS $1 $2 mask: $eps"
|
||||
# echo "Type \"ggv $eps\" or \"gv $eps\" to view the figure."
|
||||
# echo "A script is also available to plot mangle files Matlab (with the mapping toolbox),"
|
||||
# echo "or you can plot $grph using your own favorite plotting tool."
|
||||
# fi
|
||||
else
|
||||
echo "Scripts are available for plotting mangle polygons in Matlab"
|
||||
echo "(with the mapping toolbox) or Supermongo, or you can plot $grph"
|
||||
echo "using your own favorite plotting tool."
|
||||
fi
|
||||
###uncomment to automatically plot usng the sm script -- sm tends to get overloaded with the SDSS mask
|
||||
#elif which sm >/dev/null 2>&1 ; then
|
||||
# echo "Using Supermongo to plot the SDSS $1 $2 mask:"
|
||||
# $MANGLESCRIPTSDIR/graphmasksm.sh $grph $eps 0 0 0 0 "Completeness mask for SDSS $sample $cuts"
|
||||
# if [ $? -eq 0 ]; then
|
||||
# echo "Made a figure illustrating the SDSS $1 $2 mask: $eps"
|
||||
# echo "Type \"ggv $eps\" or \"gv $eps\" to view the figure."
|
||||
# echo "A script is also available to plot mangle files Matlab (with the mapping toolbox),"
|
||||
# echo "or you can plot $grph using your own favorite plotting tool."
|
||||
# fi
|
||||
else
|
||||
echo "Scripts are available for plotting mangle polygons in Matlab"
|
||||
echo "(with the mapping toolbox) or Supermongo, or you can plot $grph"
|
||||
echo "using your own favorite plotting tool."
|
||||
fi
|
||||
|
||||
rm jw jfhs jfhp jfh jb
|
152
masks/sdss/sdss_quickstart.sh
Executable file
152
masks/sdss/sdss_quickstart.sh
Executable file
|
@ -0,0 +1,152 @@
|
|||
#! /bin/sh
|
||||
# © M E C Swanson 2008
|
||||
#Example script showing how to combine the hole and window functions for SDSS
|
||||
#Calculates mask for one of the equitorial slices of SDSS
|
||||
#type "sdss_quickstart.sh" and see what happens!
|
||||
|
||||
if [ "$MANGLEBINDIR" = "" ] ; then
|
||||
MANGLEBINDIR="../../bin"
|
||||
fi
|
||||
if [ "$MANGLESCRIPTSDIR" = "" ] ; then
|
||||
MANGLESCRIPTSDIR="../../scripts"
|
||||
fi
|
||||
if [ "$MANGLEDATADIR" = "" ] ; then
|
||||
MANGLEDATADIR="../../masks"
|
||||
fi
|
||||
|
||||
sample='dr6'
|
||||
cuts='safe0'
|
||||
|
||||
user=`whoami`
|
||||
names=`finger $user | fgrep "ame:" | sed 's/.*: *\([^ ]*\)[^:]*/\1/'`
|
||||
for name in ${names}; do break; done
|
||||
echo "Hello $name, watch me combine the window function and holes for the SDSS survey."
|
||||
|
||||
# to make verbose
|
||||
quiet=
|
||||
# to make quiet
|
||||
#quiet=-q
|
||||
|
||||
#to assign new id numbers
|
||||
old=
|
||||
#to keep old id numbers
|
||||
#old=-vo
|
||||
|
||||
#to pixelize dynamically
|
||||
pix=
|
||||
restag=
|
||||
#to pixelize everything to fixed resolution
|
||||
#scheme="d"
|
||||
#res=6
|
||||
#pix="-P${scheme}0,${res}"
|
||||
#restag="_res${res}${scheme}"
|
||||
|
||||
#uncomment this to put files from different releases in individual directories
|
||||
#filedir=$MANGLEDATADIR/sdss/$sample/$cuts/
|
||||
#cd $filedir
|
||||
|
||||
# name of output file to contain sdss polygons
|
||||
pol=sdss_${sample}${cuts}${restag}_slice.pol
|
||||
grph=sdss_${sample}${cuts}${restag}_slice.grph
|
||||
list=sdss_${sample}${cuts}${restag}_slice.list
|
||||
eps=sdss_${sample}${cuts}${restag}_slice.eps
|
||||
eps1=sdss_${sample}${cuts}${restag}_slice1.eps
|
||||
eps2=sdss_${sample}${cuts}${restag}_slice2.eps
|
||||
fields=window.${sample}${cuts}.slice.ply
|
||||
mask=mask.${sample}${cuts}.slice.ply
|
||||
holes=holes.${sample}${cuts}.slice.ply
|
||||
|
||||
echo 0 > jw
|
||||
echo "$MANGLEBINDIR/weight -zjw $mask $holes"
|
||||
$MANGLEBINDIR/weight -zjw $mask $holes
|
||||
|
||||
echo "$MANGLEBINDIR/snap -S $quiet $fields $holes jfhs"
|
||||
$MANGLEBINDIR/snap -S $quiet $fields $holes jfhs || exit
|
||||
echo "$MANGLEBINDIR/pixelize $quiet $old $pix jfhs jfhp"
|
||||
$MANGLEBINDIR/pixelize $quiet $old $pix jfhs jfhp || exit
|
||||
echo "$MANGLEBINDIR/snap $quiet $old jfhp jfh"
|
||||
$MANGLEBINDIR/snap $quiet $old jfhp jfh || exit
|
||||
echo "$MANGLEBINDIR/balkanize $quiet $old jfh jb"
|
||||
$MANGLEBINDIR/balkanize $quiet $old jfh jb || exit
|
||||
echo "$MANGLEBINDIR/unify $quiet $old jb $pol"
|
||||
$MANGLEBINDIR/unify $quiet $old jb $pol || exit
|
||||
|
||||
echo "Polygons for the example slice of SDSS $sample $cuts are in $pol"
|
||||
|
||||
# Graphics
|
||||
|
||||
# number of points per (2 pi) along each edge of a polygon
|
||||
pts_per_twopi=30
|
||||
|
||||
echo "$MANGLEBINDIR/poly2poly -og$pts_per_twopi $quiet $pol $grph"
|
||||
$MANGLEBINDIR/poly2poly -og$pts_per_twopi $quiet $pol $grph || exit
|
||||
echo "Data suitable for plotting polygons for the example slice of the SDSS $sample $cuts mask are in $grph:"
|
||||
echo "each line is a sequence of az, el points delineating the perimeter of a polygon."
|
||||
|
||||
# for plotting with the matlab script
|
||||
|
||||
if which matlab >/dev/null 2>&1 ; then
|
||||
# name of output file to contain matlab graphics
|
||||
|
||||
echo "$MANGLEBINDIR/poly2poly -ol$pts_per_twopi $quiet $pol $list"
|
||||
$MANGLEBINDIR/poly2poly -ol$pts_per_twopi $quiet $pol $list || exit
|
||||
echo "Data for plotting polygons for the example slice of the SDSS $sample $cuts mask in Matlab are in $list."
|
||||
echo "Using Matlab to plot the example slice of the SDSS $sample $cuts mask ..."
|
||||
echo "$MANGLESCRIPTSDIR/graphmask.sh $list $eps"
|
||||
$MANGLESCRIPTSDIR/graphmask.sh $list $eps -45 35 8 21 "Completeness mask for slice of SDSS $sample $cuts"
|
||||
if [ $? -eq 0 ]; then
|
||||
echo "Made a figure illustrating example slice of the SDSS $sample $cuts mask: $eps"
|
||||
echo "Type \"ggv $eps\" or \"gv $eps\" to view the figure."
|
||||
elif which sm >/dev/null 2>&1 ; then
|
||||
echo "$MANGLEBINDIR/poly2poly -og12 -p3 $quiet $pol $grph"
|
||||
$MANGLEBINDIR/poly2poly -og10 -p3 $quiet $pol $grph || exit
|
||||
echo "Data suitable for plotting polygons for the example slice of the SDSS $sample $cuts mask are in $grph:"
|
||||
echo "each line is a sequence of az, el points delineating the perimeter of a polygon."
|
||||
echo "Using Supermongo to plot the example slice of the SDSS $sample $cuts mask:"
|
||||
$MANGLESCRIPTSDIR/graphmasksm.sh $grph $eps1 0 35 0 0 "Completeness mask for slice of SDSS $sample $cuts"
|
||||
if [ $? -eq 0 ]; then
|
||||
echo "Made a figure of half of the example slice of the SDSS $sample $cuts mask: $eps1"
|
||||
echo "Type \"ggv $eps1\" or \"gv $eps1\" to view the figure."
|
||||
echo "A script is also available to plot mangle files Matlab (with the mapping toolbox),"
|
||||
echo "or you can plot $grph using your own favorite plotting tool."
|
||||
fi
|
||||
$MANGLESCRIPTSDIR/graphmasksm.sh $grph $eps2 315 360 0 0 "Completeness mask for slice of SDSS $sample $cuts"
|
||||
if [ $? -eq 0 ]; then
|
||||
echo "Made a figure of the other half of the example slice of the SDSS $sample $cuts mask: $eps2"
|
||||
echo "Type \"ggv $eps2\" or \"gv $eps2\" to view the figure."
|
||||
echo "A script is also available to plot mangle files Matlab (with the mapping toolbox),"
|
||||
echo "or you can plot $grph using your own favorite plotting tool."
|
||||
fi
|
||||
else
|
||||
echo "Scripts are available for plotting mangle polygons in Matlab"
|
||||
echo "(with the mapping toolbox) or Supermongo, or you can plot $grph"
|
||||
echo "using your own favorite plotting tool."
|
||||
fi
|
||||
elif which sm >/dev/null 2>&1 ; then
|
||||
echo "$MANGLEBINDIR/poly2poly -og12 -p3 $quiet $pol $grph"
|
||||
$MANGLEBINDIR/poly2poly -og10 -p3 $quiet $pol $grph || exit
|
||||
echo "Data suitable for plotting polygons for the example slice of the SDSS $sample $cuts mask are in $grph:"
|
||||
echo "each line is a sequence of az, el points delineating the perimeter of a polygon."
|
||||
echo "Using Supermongo to plot the example slice of the SDSS $sample $cuts mask:"
|
||||
$MANGLESCRIPTSDIR/graphmasksm.sh $grph $eps1 0 35 0 0 "Completeness mask for slice of SDSS $sample $cuts"
|
||||
if [ $? -eq 0 ]; then
|
||||
echo "Made a figure of half of the example slice of the SDSS $sample $cuts mask: $eps1"
|
||||
echo "Type \"ggv $eps1\" or \"gv $eps1\" to view the figure."
|
||||
echo "A script is also available to plot mangle files Matlab (with the mapping toolbox),"
|
||||
echo "or you can plot $grph using your own favorite plotting tool."
|
||||
fi
|
||||
$MANGLESCRIPTSDIR/graphmasksm.sh $grph $eps2 315 360 0 0 "Completeness mask for slice of SDSS $sample $cuts"
|
||||
if [ $? -eq 0 ]; then
|
||||
echo "Made a figure of the other half of the example slice of the SDSS $sample $cuts mask: $eps2"
|
||||
echo "Type \"ggv $eps2\" or \"gv $eps2\" to view the figure."
|
||||
echo "A script is also available to plot mangle files Matlab (with the mapping toolbox),"
|
||||
echo "or you can plot $grph using your own favorite plotting tool."
|
||||
fi
|
||||
echo "Using Supermongo to plot the example slice of the SDSS $sample $cuts mask:"
|
||||
else
|
||||
echo "Scripts are available for plotting mangle polygons in Matlab"
|
||||
echo "(with the mapping toolbox) or Supermongo, or you can plot $grph"
|
||||
echo "using your own favorite plotting tool."
|
||||
fi
|
||||
|
||||
rm jw jfhs jfhp jfh jb
|
8
masks/ssrs1/ssrs1.circ
Normal file
8
masks/ssrs1/ssrs1.circ
Normal file
|
@ -0,0 +1,8 @@
|
|||
SSRS1 mask in equatorial B1950 frame.
|
||||
|
||||
Angular units are degrees:
|
||||
unit d
|
||||
|
||||
Dec(B1950) < -17.5 deg, b2 < -30 deg
|
||||
circle 0 2
|
||||
0 90 -107.5 192.25 27.4 -120
|
Loading…
Add table
Reference in a new issue