#!/bin/csh # Draw basemap # ------------ pscoast -Jm5.06891185669175 -R-122.4252546/-121.5535794/41.2621032/42.5641578 \ -Ba1.0f10mwSnE \ -W3/0/0/0 -Na/1 -N2/5/255/255/255 -N2/2/0/0/0 -S153/255/255 \ -Df -Ir/1/114/187/243 \ -Lf-122.171549/41.49292197/41.49292197/50 \ -G255/255/255 -P -K >! Shasta.ps # Calif lakes # ------------ psxy /attic/mapdata/lakes.calif \ -: -Jm -R -MS -W3/102/102/102 -G153/255/255 -O -K \ >> Shasta.ps # Nevada faults # ------------- psxy /attic/mapdata/nevada.car \ -: -Jm -R -MS -W3/255/102/102 -O -K \ >> Shasta.ps # Calif faults # ------------ # Historic and Holocene psxy /attic/mapdata/Qfaults2007_ungen_wgs84/his_hol_solid \ -Jm -R -MS -W2/175/0/0 -O -K \ >> Shasta.ps psxy /attic/mapdata/Qfaults2007_ungen_wgs84/his_hol_dash \ -Jm -R -MS -W1/175/0/0 -O -K \ >> Shasta.ps psxy /attic/mapdata/Qfaults2007_ungen_wgs84/his_hol_dots \ -Jm -R -MS -W1/175/0/0ta -O -K \ >> Shasta.ps # Late Quaternary psxy /attic/mapdata/Qfaults2007_ungen_wgs84/lq_solid \ -Jm -R -MS -W2/255/150/100 -O -K \ >> Shasta.ps psxy /attic/mapdata/Qfaults2007_ungen_wgs84/lq_dash \ -Jm -R -MS -W1/255/150/100 -O -K \ >> Shasta.ps psxy /attic/mapdata/Qfaults2007_ungen_wgs84/lq_dots \ -Jm -R -MS -W1/255/150/100ta -O -K \ >> Shasta.ps # Quaternary psxy /attic/mapdata/Qfaults2007_ungen_wgs84/q_solid \ -Jm -R -MS -W2/200/200/0 -O -K \ >> Shasta.ps psxy /attic/mapdata/Qfaults2007_ungen_wgs84/q_dashed \ -Jm -R -MS -W1/200/200/0 -O -K \ >> Shasta.ps psxy /attic/mapdata/Qfaults2007_ungen_wgs84/q_dots \ -Jm -R -MS -W1/200/200/0ta -O -K \ >> Shasta.ps # All M7-7.9 Earthquakes in the last week # --------------------------------------- psxy << EOT -: -R -W3/0/0/0 -G255/255/0 \ -Jm -Ss.90 -O -K \ >> Shasta.ps EOT # All M6-6.9 Earthquakes in the last week # --------------------------------------- psxy << EOT -: -R -W3/0/0/0 -G255/255/0 \ -Jm -Ss.75 -O -K \ >> Shasta.ps EOT # All M5-5.9 Earthquakes in the last week # --------------------------------------- psxy << EOT -: -R -W3/0/0/0 -G255/255/0 \ -Jm -Ss.60 -O -K \ >> Shasta.ps EOT # All M4-4.9 Earthquakes in the last week # --------------------------------------- psxy << EOT -: -R -W3/0/0/0 -G255/255/0 \ -Jm -Ss.45 -O -K \ >> Shasta.ps EOT # All M3-3.9 Earthquakes in the last week # --------------------------------------- psxy << EOT -: -R -W3/0/0/0 -G255/255/0 \ -Jm -Ss.30 -O -K \ >> Shasta.ps EOT # All M2-2.9 Earthquakes in the last week # --------------------------------------- psxy << EOT -: -R -W3/0/0/0 -G255/255/0 \ -Jm -Ss.20 -O -K \ >> Shasta.ps EOT # All M1-1.9 Earthquakes in the last week # --------------------------------------- psxy << EOT -: -R -W3/0/0/0 -G255/255/0 \ -Jm -Ss.10 -O -K \ >> Shasta.ps EOT # All M7-7.9 Earthquakes in the last day # -------------------------------------- psxy << EOT -: -R -W3/0/0/0 -G0/175/223 \ -Jm -Ss.90 -O -K \ >> Shasta.ps EOT # All M6-6.9 Earthquakes in the last day # -------------------------------------- psxy << EOT -: -R -W3/0/0/0 -G0/175/223 \ -Jm -Ss.75 -O -K \ >> Shasta.ps EOT # All M5-5.9 Earthquakes in the last day # -------------------------------------- psxy << EOT -: -R -W3/0/0/0 -G0/175/223 \ -Jm -Ss.60 -O -K \ >> Shasta.ps EOT # All M4-4.9 Earthquakes in the last day # -------------------------------------- psxy << EOT -: -R -W3/0/0/0 -G0/175/223 \ -Jm -Ss.45 -O -K \ >> Shasta.ps EOT # All M3-3.9 Earthquakes in the last day # -------------------------------------- psxy << EOT -: -R -W3/0/0/0 -G0/175/223 \ -Jm -Ss.30 -O -K \ >> Shasta.ps EOT # All M2-2.9 Earthquakes in the last day # -------------------------------------- psxy << EOT -: -R -W3/0/0/0 -G0/175/223 \ -Jm -Ss.20 -O -K \ >> Shasta.ps EOT # All M1-1.9 Earthquakes in the last day # -------------------------------------- psxy << EOT -: -R -W3/0/0/0 -G0/175/223 \ -Jm -Ss.10 -O -K \ >> Shasta.ps EOT # All M7-7.9 Earthquakes in the last hour # --------------------------------------- psxy << EOT -: -R -W3/0/0/0 -G255/0/24 \ -Jm -Ss.90 -O -K \ >> Shasta.ps EOT # All M6-6.9 Earthquakes in the last hour # --------------------------------------- psxy << EOT -: -R -W3/0/0/0 -G255/0/24 \ -Jm -Ss.75 -O -K \ >> Shasta.ps EOT # All M5-5.9 Earthquakes in the last hour # --------------------------------------- psxy << EOT -: -R -W3/0/0/0 -G255/0/24 \ -Jm -Ss.60 -O -K \ >> Shasta.ps EOT # All M4-4.9 Earthquakes in the last hour # --------------------------------------- psxy << EOT -: -R -W3/0/0/0 -G255/0/24 \ -Jm -Ss.45 -O -K \ >> Shasta.ps EOT # All M3-3.9 Earthquakes in the last hour # --------------------------------------- psxy << EOT -: -R -W3/0/0/0 -G255/0/24 \ -Jm -Ss.30 -O -K \ >> Shasta.ps EOT # All M2-2.9 Earthquakes in the last hour # --------------------------------------- psxy << EOT -: -R -W3/0/0/0 -G255/0/24 \ -Jm -Ss.20 -O -K \ >> Shasta.ps EOT # All M1-1.9 Earthquakes in the last hour # --------------------------------------- psxy << EOT -: -R -W3/0/0/0 -G255/0/24 \ -Jm -Ss.10 -O -K \ >> Shasta.ps EOT # Station labels # -------------- pstext << EOT -: -R -Jm -G0/0/0 -D.07/-.07 -O -K \ >> Shasta.ps 41.768464 -122.055949 9 0.0 1 5 02UK 41.617209 -122.201157 9 0.0 1 5 9719 41.689076 -122.061797 9 0.0 1 5 9728 41.653465 -122.119387 9 0.0 1 5 CM24 41.894479 -121.964163 9 0.0 1 5 MEIS 41.643411 -121.794713 9 0.0 1 5 VANB 41.953638 -121.924511 9 0.0 1 5 ENG8 41.628177 -122.231549 9 0.0 1 5 HERD 42.000888 -121.870580 9 0.0 1 5 114X 41.824773 -122.008635 9 0.0 1 5 3987 42.122490 -121.826044 9 0.0 1 5 MDL2 42.192377 -121.787942 9 0.0 1 5 CEME 42.209052 -121.747285 9 0.0 1 5 ALTA EOT # Kodiak Earthquake # ------------------ psxy << EOT -: -R -W5/51/51/255 -G255/255/255 \ -Jm -Sa.15 -O -K \ >> Shasta.ps 56.6833 -153.3000 EOT # Kodiak Earthquake label # ------------------------ pstext << EOT -: -R -Jm -G0 -O -K \ >> Shasta.ps 57.0 -153.2 9 0.0 1 5 Kodiak_Eq_20010110 56.8 -153.2 9 0.0 1 5 M6.7 EOT # Kodiak Earthquake # ------------------ psxy << EOT -: -R -W5/51/51/255 -G255/255/255 \ -Jm -Sa.15 -O -K \ >> Shasta.ps 57.51 -154.67 EOT # Kodiak Earthquake label # ------------------------ pstext << EOT -: -R -Jm -G0 -O -K \ >> Shasta.ps 57.4 -154.3 9 0.0 1 5 Kodiak_Eq_19991206 57.2 -154.3 9 0.0 1 5 M7.0 EOT # Velocity vectors # ---------------- psvelo << EOT -R \ -W1/255/0/63 -G70/100/190 \ -Se0.0989119683481701/.95/0 -B \ -Jm -A0.01/0.12/0.03 -O -K \ >> Shasta.ps -122.055949 41.768464 -1.50 8.02 4.21 1.84 0.0532 02UK -122.201157 41.617209 0.00 0.00 0.00 0.00 -0.0744 9719 -122.061797 41.689076 -4.45 10.11 3.08 1.98 -0.0350 9728 -122.119387 41.653465 -2.33 9.18 1.63 1.24 -0.0301 CM24 -121.964163 41.894479 -3.43 9.57 2.96 2.16 0.0402 MEIS -121.794713 41.643411 -3.07 5.85 0.33 0.28 0.0253 VANB -121.924511 41.953638 -3.05 6.91 0.57 0.47 0.0500 ENG8 -122.231549 41.628177 -3.68 6.77 0.36 0.29 -0.0037 HERD -121.870580 42.000888 0.00 0.00 0.00 0.00 0.1068 114X -122.008635 41.824773 0.00 0.00 0.00 0.00 0.0641 3987 -121.826044 42.122490 0.00 0.00 0.00 0.00 -0.0005 MDL2 -121.787942 42.192377 -3.13 6.13 0.44 0.33 0.0096 CEME -121.747285 42.209052 -2.50 6.26 1.27 0.63 -0.0372 ALTA EOT # Station dots # ------------ psxy << EOT -: -R -W2/0/0/0 -G255/0/0 \ -Jm -St0.10 -O -K \ >> Shasta.ps 41.768464 -122.055949 02UK EOT # Station dots # ------------ psxy << EOT -: -R -W2/0/0/0 -G255/0/0 \ -Jm -St0.10 -O -K \ >> Shasta.ps 41.617209 -122.201157 9719 EOT # Station dots # ------------ psxy << EOT -: -R -W2/0/0/0 -G255/0/0 \ -Jm -St0.10 -O -K \ >> Shasta.ps 41.689076 -122.061797 9728 EOT # Station dots # ------------ psxy << EOT -: -R -W2/0/0/0 -G250/181/62 \ -Jm -St0.10 -O -K \ >> Shasta.ps 41.653465 -122.119387 CM24 EOT # Station dots # ------------ psxy << EOT -: -R -W2/0/0/0 -G255/0/0 \ -Jm -St0.10 -O -K \ >> Shasta.ps 41.894479 -121.964163 MEIS EOT # Station dots # ------------ psxy << EOT -: -R -W2/0/0/0 -G255/0/0 \ -Jm -St0.10 -O -K \ >> Shasta.ps 41.643411 -121.794713 VANB EOT # Station dots # ------------ psxy << EOT -: -R -W2/0/0/0 -G250/181/62 \ -Jm -St0.10 -O -K \ >> Shasta.ps 41.953638 -121.924511 ENG8 EOT # Station dots # ------------ psxy << EOT -: -R -W2/0/0/0 -G255/0/0 \ -Jm -St0.10 -O -K \ >> Shasta.ps 41.628177 -122.231549 HERD EOT # Station dots # ------------ psxy << EOT -: -R -W2/0/0/0 -G250/181/62 \ -Jm -St0.10 -O -K \ >> Shasta.ps 42.000888 -121.870580 114X EOT # Station dots # ------------ psxy << EOT -: -R -W2/0/0/0 -G250/181/62 \ -Jm -St0.10 -O -K \ >> Shasta.ps 41.824773 -122.008635 3987 EOT # Station dots # ------------ psxy << EOT -: -R -W2/0/0/0 -G250/181/62 \ -Jm -St0.10 -O -K \ >> Shasta.ps 42.122490 -121.826044 MDL2 EOT # Station dots # ------------ psxy << EOT -: -R -W2/0/0/0 -G250/181/62 \ -Jm -St0.10 -O -K \ >> Shasta.ps 42.192377 -121.787942 CEME EOT # Station dots # ------------ psxy << EOT -: -R -W2/0/0/0 -G250/181/62 \ -Jm -St0.10 -O -K \ >> Shasta.ps 42.209052 -121.747285 ALTA EOT # Olympia Earthquake # ------------------ psxy << EOT -: -R -W5/51/51/255 -G255/255/255 \ -Jm -Sa.15 -O -K \ >> Shasta.ps 47.167 -122.733 EOT # HM Earthquake # ------------- psxy << EOT -: -R -W5/51/51/255 -G255/255/255 \ -Jm -Sa.15 -O -K \ >> Shasta.ps 34.595500 -116.268167 EOT # HM Earthquake label # -- -------------- pstext << EOT -: -R -Jm -G0 -O -K \ >> Shasta.ps 34.55 -116.268167 9 0.0 1 5 Hector_Mine_Eq 34.53 -116.268167 9 0.0 1 5 M7.1 EOT # Landers Earthquake # ------------------ psxy << EOT -: -R -W5/51/51/255 -G255/255/255 \ -Jm -Sa.15 -O -K \ >> Shasta.ps 34.216666667 -116.43333333333 EOT # Landers Earthquake label # ------------------------ pstext << EOT -: -R -Jm -G0 -O -K \ >> Shasta.ps 34.18 -116.43333333333 9 0.0 1 5 Landers_Eq 34.16 -116.43333333333 9 0.0 1 5 M7.3 EOT # Label plot and vector scale # --------------------------- psvelo << EOT -: -R \ -W1/255/0/0 -G70/100/190 -Se0.0989119683481701/.95/0 -B \ -Jm -A0.03/0.12/0.03 -O -K \ >> Shasta.ps 41.40414552 -122.171549 0.0 20.0 0.0 0.0 0.0 Scale EOT pstext << EOT -: -R -Jm -O \ >> Shasta.ps 41.359757295 -122.171549 9 0.0 0 5 20 mm/yr EOT