rgovdata 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/.document +5 -0
- data/.rvmrc +2 -0
- data/CHANGELOG +7 -0
- data/Gemfile +18 -0
- data/Gemfile.lock +48 -0
- data/LICENSE +20 -0
- data/README.rdoc +114 -0
- data/Rakefile +61 -0
- data/bin/rgd +12 -0
- data/examples/all_quakes.rb +8 -0
- data/examples/arbitrary_data.rb +26 -0
- data/examples/catalog_traversal.rb +34 -0
- data/examples/earthquakes.rb +5 -0
- data/lib/rgovdata.rb +4 -0
- data/lib/rgovdata/catalog.rb +4 -0
- data/lib/rgovdata/catalog/catalog.rb +79 -0
- data/lib/rgovdata/catalog/dn.rb +63 -0
- data/lib/rgovdata/catalog/registry_strategy/internal_registry.rb +12 -0
- data/lib/rgovdata/catalog/registry_strategy/registry_strategy.rb +26 -0
- data/lib/rgovdata/config.rb +5 -0
- data/lib/rgovdata/config/common_config.rb +13 -0
- data/lib/rgovdata/config/config.rb +133 -0
- data/lib/rgovdata/data/config_template.yml +19 -0
- data/lib/rgovdata/data/sg/registry.yml +147 -0
- data/lib/rgovdata/data/template.rb +27 -0
- data/lib/rgovdata/data/us/registry.yml +12 -0
- data/lib/rgovdata/service.rb +10 -0
- data/lib/rgovdata/service/csv_service.rb +3 -0
- data/lib/rgovdata/service/dataset/csv_dataset.rb +43 -0
- data/lib/rgovdata/service/dataset/dataset.rb +91 -0
- data/lib/rgovdata/service/dataset/file_dataset.rb +46 -0
- data/lib/rgovdata/service/dataset/odata_dataset.rb +31 -0
- data/lib/rgovdata/service/file_service.rb +10 -0
- data/lib/rgovdata/service/listing.rb +47 -0
- data/lib/rgovdata/service/odata_service.rb +50 -0
- data/lib/rgovdata/service/service.rb +93 -0
- data/lib/rgovdata/shell/shell.rb +157 -0
- data/lib/rgovdata/version.rb +9 -0
- data/rgovdata.gemspec +128 -0
- data/spec/fixtures/sample.csv +821 -0
- data/spec/integration/service/sg/nlb_spec.rb +57 -0
- data/spec/integration/service/sg/places_spec.rb +73 -0
- data/spec/integration/service/us/eqs7day-M1_spec.rb +57 -0
- data/spec/spec_helper.rb +25 -0
- data/spec/support/config_examples.rb +8 -0
- data/spec/support/mocks.rb +22 -0
- data/spec/support/utility.rb +18 -0
- data/spec/unit/catalog/base_spec.rb +93 -0
- data/spec/unit/catalog/registry_strategy_spec.rb +28 -0
- data/spec/unit/config/config_spec.rb +130 -0
- data/spec/unit/data/template_spec.rb +32 -0
- data/spec/unit/service/dataset/csv_dataset_spec.rb +42 -0
- data/spec/unit/service/dataset/dataset_spec.rb +37 -0
- data/spec/unit/service/dataset/file_dataset_spec.rb +40 -0
- data/spec/unit/service/dataset/odata_dataset_spec.rb +36 -0
- data/spec/unit/service/file_service_spec.rb +25 -0
- data/spec/unit/service/listing_spec.rb +100 -0
- data/spec/unit/service/odata_service_spec.rb +42 -0
- data/spec/unit/service/service_spec.rb +82 -0
- data/spec/unit/shell/shell_spec.rb +10 -0
- metadata +228 -0
@@ -0,0 +1,157 @@
|
|
1
|
+
class RGovData::Shell
|
2
|
+
include RGovData::CommonConfig
|
3
|
+
attr_accessor :options, :prompt
|
4
|
+
attr_accessor :discovery_path
|
5
|
+
|
6
|
+
# command line options definition
|
7
|
+
OPTIONS = %w(help verbose command=@s)
|
8
|
+
# Usage message
|
9
|
+
def self.usage
|
10
|
+
puts <<-EOS
|
11
|
+
|
12
|
+
rgovdata client v#{RGovData::Version::STRING}
|
13
|
+
===================================
|
14
|
+
|
15
|
+
Usage:
|
16
|
+
rgd [options]
|
17
|
+
|
18
|
+
Command Options
|
19
|
+
-c | --command immediately executes the command provided
|
20
|
+
|
21
|
+
The following commands are supported in the rgovdata shell.
|
22
|
+
They can also be passed on the command line:
|
23
|
+
|
24
|
+
rgd -c command
|
25
|
+
|
26
|
+
== Core Commands ==
|
27
|
+
help
|
28
|
+
exit
|
29
|
+
show status
|
30
|
+
|
31
|
+
== Discovery Commands ==
|
32
|
+
ls
|
33
|
+
cd
|
34
|
+
info
|
35
|
+
|
36
|
+
EOS
|
37
|
+
end
|
38
|
+
|
39
|
+
# +new+
|
40
|
+
def initialize(options)
|
41
|
+
require_config_file
|
42
|
+
@options = (options||{}).each{|k,v| {k => v} }
|
43
|
+
@discovery_path = [config.default_realm].compact
|
44
|
+
end
|
45
|
+
|
46
|
+
# run the basic REPL
|
47
|
+
def run
|
48
|
+
if options[:command].present?
|
49
|
+
evaluate options[:command].join(' ')
|
50
|
+
return
|
51
|
+
end
|
52
|
+
welcome
|
53
|
+
repl = lambda do |prompt|
|
54
|
+
print prompt
|
55
|
+
evaluate( STDIN.gets.chomp! )
|
56
|
+
end
|
57
|
+
loop { break unless repl[prompt] }
|
58
|
+
end
|
59
|
+
|
60
|
+
protected
|
61
|
+
|
62
|
+
# Update and return the formatted prompt
|
63
|
+
def prompt
|
64
|
+
@prompt = "rgd:#{current_path}> "
|
65
|
+
end
|
66
|
+
# Returns the current path string
|
67
|
+
def current_path
|
68
|
+
"//#{discovery_path.join('/')}"
|
69
|
+
end
|
70
|
+
# Returns the RGovData object corresponding to the current path
|
71
|
+
def current_object
|
72
|
+
RGovData::Catalog.get(current_path)
|
73
|
+
rescue
|
74
|
+
STDERR.puts "ERROR: there is no object matching #{current_path}"
|
75
|
+
nil
|
76
|
+
end
|
77
|
+
|
78
|
+
# Evaluates a specific command
|
79
|
+
def evaluate(cmd)
|
80
|
+
if cmd =~ /exit/i
|
81
|
+
puts "bfn!\n\n"
|
82
|
+
return false
|
83
|
+
end
|
84
|
+
begin
|
85
|
+
tokens = cmd.strip.split
|
86
|
+
return true unless tokens.size>0
|
87
|
+
self.send tokens.shift.downcase, tokens
|
88
|
+
rescue => e
|
89
|
+
puts "sorry, I have a problem doing \"#{cmd}\"\nerror => #{e}"
|
90
|
+
puts e.backtrace if options[:trace]
|
91
|
+
end
|
92
|
+
return true
|
93
|
+
end
|
94
|
+
|
95
|
+
# Print usage details
|
96
|
+
def help(*args)
|
97
|
+
self.class.usage
|
98
|
+
end
|
99
|
+
|
100
|
+
# Print welcome message
|
101
|
+
def welcome(*args)
|
102
|
+
puts <<-EOS
|
103
|
+
rgovdata client v#{RGovData::Version::STRING}. Type 'help' for info...
|
104
|
+
EOS
|
105
|
+
end
|
106
|
+
|
107
|
+
# Prints current status
|
108
|
+
def show_status
|
109
|
+
puts "shell options: #{options.inspect}"
|
110
|
+
end
|
111
|
+
|
112
|
+
# handle show command
|
113
|
+
def show(args=[])
|
114
|
+
cmd = args.shift || "help"
|
115
|
+
|
116
|
+
case cmd
|
117
|
+
when /^set/i
|
118
|
+
set(args)
|
119
|
+
when /^status?$/i
|
120
|
+
status(args)
|
121
|
+
else
|
122
|
+
help
|
123
|
+
end
|
124
|
+
end
|
125
|
+
|
126
|
+
# handle status command
|
127
|
+
def status(args=[])
|
128
|
+
show_status
|
129
|
+
config.show_status
|
130
|
+
end
|
131
|
+
|
132
|
+
# handle ls command
|
133
|
+
def ls(args=[])
|
134
|
+
rgd_object = current_object
|
135
|
+
if rgd_object
|
136
|
+
puts "Current node: #{current_object}"
|
137
|
+
puts "Records:"
|
138
|
+
current_object.records.each do |record|
|
139
|
+
puts record
|
140
|
+
end
|
141
|
+
end
|
142
|
+
end
|
143
|
+
|
144
|
+
# handle cd command
|
145
|
+
def cd(args=[])
|
146
|
+
cmd = args.shift || "ls"
|
147
|
+
case cmd
|
148
|
+
when '..'
|
149
|
+
discovery_path.pop
|
150
|
+
when /^ls$/i
|
151
|
+
ls
|
152
|
+
else
|
153
|
+
discovery_path.push(*cmd.split('/'))
|
154
|
+
end
|
155
|
+
end
|
156
|
+
|
157
|
+
end
|
data/rgovdata.gemspec
ADDED
@@ -0,0 +1,128 @@
|
|
1
|
+
# Generated by jeweler
|
2
|
+
# DO NOT EDIT THIS FILE DIRECTLY
|
3
|
+
# Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
|
4
|
+
# -*- encoding: utf-8 -*-
|
5
|
+
|
6
|
+
Gem::Specification.new do |s|
|
7
|
+
s.name = %q{rgovdata}
|
8
|
+
s.version = "0.1.0"
|
9
|
+
|
10
|
+
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
|
+
s.authors = ["Paul Gallagher"]
|
12
|
+
s.date = %q{2011-11-05}
|
13
|
+
s.default_executable = %q{rgd}
|
14
|
+
s.description = %q{Consuming government-published data in a ruby or rails application shouldn't require a PhD}
|
15
|
+
s.email = %q{gallagher.paul@gmail.com}
|
16
|
+
s.executables = ["rgd"]
|
17
|
+
s.extra_rdoc_files = [
|
18
|
+
"LICENSE",
|
19
|
+
"README.rdoc"
|
20
|
+
]
|
21
|
+
s.files = [
|
22
|
+
".document",
|
23
|
+
".rvmrc",
|
24
|
+
"CHANGELOG",
|
25
|
+
"Gemfile",
|
26
|
+
"Gemfile.lock",
|
27
|
+
"LICENSE",
|
28
|
+
"README.rdoc",
|
29
|
+
"Rakefile",
|
30
|
+
"bin/rgd",
|
31
|
+
"examples/all_quakes.rb",
|
32
|
+
"examples/arbitrary_data.rb",
|
33
|
+
"examples/catalog_traversal.rb",
|
34
|
+
"examples/earthquakes.rb",
|
35
|
+
"lib/rgovdata.rb",
|
36
|
+
"lib/rgovdata/catalog.rb",
|
37
|
+
"lib/rgovdata/catalog/catalog.rb",
|
38
|
+
"lib/rgovdata/catalog/dn.rb",
|
39
|
+
"lib/rgovdata/catalog/registry_strategy/internal_registry.rb",
|
40
|
+
"lib/rgovdata/catalog/registry_strategy/registry_strategy.rb",
|
41
|
+
"lib/rgovdata/config.rb",
|
42
|
+
"lib/rgovdata/config/common_config.rb",
|
43
|
+
"lib/rgovdata/config/config.rb",
|
44
|
+
"lib/rgovdata/data/config_template.yml",
|
45
|
+
"lib/rgovdata/data/sg/registry.yml",
|
46
|
+
"lib/rgovdata/data/template.rb",
|
47
|
+
"lib/rgovdata/data/us/registry.yml",
|
48
|
+
"lib/rgovdata/service.rb",
|
49
|
+
"lib/rgovdata/service/csv_service.rb",
|
50
|
+
"lib/rgovdata/service/dataset/csv_dataset.rb",
|
51
|
+
"lib/rgovdata/service/dataset/dataset.rb",
|
52
|
+
"lib/rgovdata/service/dataset/file_dataset.rb",
|
53
|
+
"lib/rgovdata/service/dataset/odata_dataset.rb",
|
54
|
+
"lib/rgovdata/service/file_service.rb",
|
55
|
+
"lib/rgovdata/service/listing.rb",
|
56
|
+
"lib/rgovdata/service/odata_service.rb",
|
57
|
+
"lib/rgovdata/service/service.rb",
|
58
|
+
"lib/rgovdata/shell/shell.rb",
|
59
|
+
"lib/rgovdata/version.rb",
|
60
|
+
"rgovdata.gemspec",
|
61
|
+
"spec/fixtures/sample.csv",
|
62
|
+
"spec/integration/service/sg/nlb_spec.rb",
|
63
|
+
"spec/integration/service/sg/places_spec.rb",
|
64
|
+
"spec/integration/service/us/eqs7day-M1_spec.rb",
|
65
|
+
"spec/spec_helper.rb",
|
66
|
+
"spec/support/config_examples.rb",
|
67
|
+
"spec/support/mocks.rb",
|
68
|
+
"spec/support/utility.rb",
|
69
|
+
"spec/unit/catalog/base_spec.rb",
|
70
|
+
"spec/unit/catalog/registry_strategy_spec.rb",
|
71
|
+
"spec/unit/config/config_spec.rb",
|
72
|
+
"spec/unit/data/template_spec.rb",
|
73
|
+
"spec/unit/service/dataset/csv_dataset_spec.rb",
|
74
|
+
"spec/unit/service/dataset/dataset_spec.rb",
|
75
|
+
"spec/unit/service/dataset/file_dataset_spec.rb",
|
76
|
+
"spec/unit/service/dataset/odata_dataset_spec.rb",
|
77
|
+
"spec/unit/service/file_service_spec.rb",
|
78
|
+
"spec/unit/service/listing_spec.rb",
|
79
|
+
"spec/unit/service/odata_service_spec.rb",
|
80
|
+
"spec/unit/service/service_spec.rb",
|
81
|
+
"spec/unit/shell/shell_spec.rb"
|
82
|
+
]
|
83
|
+
s.homepage = %q{http://github.com/tardate/rgovdata}
|
84
|
+
s.licenses = ["MIT"]
|
85
|
+
s.require_paths = ["lib"]
|
86
|
+
s.rubygems_version = %q{1.5.2}
|
87
|
+
s.summary = %q{Really simple access to government data for ruby}
|
88
|
+
|
89
|
+
if s.respond_to? :specification_version then
|
90
|
+
s.specification_version = 3
|
91
|
+
|
92
|
+
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
|
93
|
+
s.add_runtime_dependency(%q<activesupport>, [">= 3.0.3"])
|
94
|
+
s.add_runtime_dependency(%q<i18n>, [">= 0.5.0"])
|
95
|
+
s.add_runtime_dependency(%q<ruby_odata>, ["~> 0.0.10"])
|
96
|
+
s.add_runtime_dependency(%q<getoptions>, ["~> 0.3"])
|
97
|
+
s.add_development_dependency(%q<bundler>, ["~> 1.0.0"])
|
98
|
+
s.add_development_dependency(%q<jeweler>, ["~> 1.6.4"])
|
99
|
+
s.add_development_dependency(%q<rcov>, [">= 0"])
|
100
|
+
s.add_development_dependency(%q<rdoc>, ["~> 3.11"])
|
101
|
+
s.add_development_dependency(%q<rake>, ["~> 0.9.2.2"])
|
102
|
+
s.add_development_dependency(%q<rspec>, ["~> 2.7.0"])
|
103
|
+
else
|
104
|
+
s.add_dependency(%q<activesupport>, [">= 3.0.3"])
|
105
|
+
s.add_dependency(%q<i18n>, [">= 0.5.0"])
|
106
|
+
s.add_dependency(%q<ruby_odata>, ["~> 0.0.10"])
|
107
|
+
s.add_dependency(%q<getoptions>, ["~> 0.3"])
|
108
|
+
s.add_dependency(%q<bundler>, ["~> 1.0.0"])
|
109
|
+
s.add_dependency(%q<jeweler>, ["~> 1.6.4"])
|
110
|
+
s.add_dependency(%q<rcov>, [">= 0"])
|
111
|
+
s.add_dependency(%q<rdoc>, ["~> 3.11"])
|
112
|
+
s.add_dependency(%q<rake>, ["~> 0.9.2.2"])
|
113
|
+
s.add_dependency(%q<rspec>, ["~> 2.7.0"])
|
114
|
+
end
|
115
|
+
else
|
116
|
+
s.add_dependency(%q<activesupport>, [">= 3.0.3"])
|
117
|
+
s.add_dependency(%q<i18n>, [">= 0.5.0"])
|
118
|
+
s.add_dependency(%q<ruby_odata>, ["~> 0.0.10"])
|
119
|
+
s.add_dependency(%q<getoptions>, ["~> 0.3"])
|
120
|
+
s.add_dependency(%q<bundler>, ["~> 1.0.0"])
|
121
|
+
s.add_dependency(%q<jeweler>, ["~> 1.6.4"])
|
122
|
+
s.add_dependency(%q<rcov>, [">= 0"])
|
123
|
+
s.add_dependency(%q<rdoc>, ["~> 3.11"])
|
124
|
+
s.add_dependency(%q<rake>, ["~> 0.9.2.2"])
|
125
|
+
s.add_dependency(%q<rspec>, ["~> 2.7.0"])
|
126
|
+
end
|
127
|
+
end
|
128
|
+
|
@@ -0,0 +1,821 @@
|
|
1
|
+
Src,Eqid,Version,Datetime,Lat,Lon,Magnitude,Depth,NST,Region
|
2
|
+
ak,10345315,1,"Monday, October 31, 2011 06:13:12 UTC",61.8199,-149.7165,1.5,68.90, 9,"Southern Alaska"
|
3
|
+
nc,71673371,1,"Monday, October 31, 2011 05:41:37 UTC",38.8433,-122.8280,1.8,2.30,31,"Northern California"
|
4
|
+
ak,10345306,1,"Monday, October 31, 2011 05:23:39 UTC",60.7023,-152.0183,1.5,36.00,10,"Southern Alaska"
|
5
|
+
us,b0006gq5,5,"Monday, October 31, 2011 04:48:44 UTC",-8.2231,106.7733,4.8,29.70,41,"south of Java, Indonesia"
|
6
|
+
us,b0006gqc,3,"Monday, October 31, 2011 04:45:43 UTC",-23.4109,-115.0063,5.1,10.00,164,"southern East Pacific Rise"
|
7
|
+
ak,10345295,1,"Monday, October 31, 2011 04:43:51 UTC",62.1632,-150.0445,2.3,57.80,31,"Central Alaska"
|
8
|
+
ci,11027501,0,"Monday, October 31, 2011 04:20:00 UTC",33.1580,-115.5927,1.2,0.40,12,"Southern California"
|
9
|
+
ci,11027485,0,"Monday, October 31, 2011 04:12:20 UTC",33.2795,-116.7777,1.0,13.70,51,"Southern California"
|
10
|
+
ak,10345285,1,"Monday, October 31, 2011 03:50:40 UTC",58.5350,-153.5384,2.2,65.60,14,"Kodiak Island region, Alaska"
|
11
|
+
nc,71673336,1,"Monday, October 31, 2011 03:49:06 UTC",36.6058,-121.2210,2.0,7.70,29,"Central California"
|
12
|
+
us,b0006gpr,6,"Monday, October 31, 2011 03:40:10 UTC",-25.6387,-71.6935,4.8,41.70,46,"off the coast of Antofagasta, Chile"
|
13
|
+
ak,10345282,1,"Monday, October 31, 2011 03:28:13 UTC",60.5127,-152.1848,2.1,80.40,12,"Southern Alaska"
|
14
|
+
nc,71673331,1,"Monday, October 31, 2011 02:46:35 UTC",37.6330,-121.8945,1.6,8.40,20,"San Francisco Bay area, California"
|
15
|
+
us,b0006gpi,5,"Monday, October 31, 2011 02:11:49 UTC",36.3832,70.7455,4.6,202.90,48,"Hindu Kush region, Afghanistan"
|
16
|
+
nc,71673306,0,"Monday, October 31, 2011 02:03:52 UTC",35.5087,-120.8095,1.4,5.30,17,"Central California"
|
17
|
+
ci,11027461,0,"Monday, October 31, 2011 01:43:32 UTC",34.3780,-118.6303,1.9,13.00,44,"Greater Los Angeles area, California"
|
18
|
+
us,b0006gpe,5,"Monday, October 31, 2011 01:31:40 UTC",35.7955,140.2958,4.7,65.10,25,"near the east coast of Honshu, Japan"
|
19
|
+
us,b0006gpf,3,"Monday, October 31, 2011 01:22:05 UTC",12.4187,48.0663,5.0,10.00,29,"Gulf of Aden"
|
20
|
+
ci,11027445,0,"Monday, October 31, 2011 00:08:38 UTC",34.0357,-117.2282,1.4,16.20,48,"Greater Los Angeles area, California"
|
21
|
+
nc,71673261,0,"Sunday, October 30, 2011 23:58:54 UTC",38.8305,-122.8378,1.0,1.70,16,"Northern California"
|
22
|
+
ci,11027437,0,"Sunday, October 30, 2011 23:29:42 UTC",35.0020,-117.7133,1.6,0.10,27,"Southern California"
|
23
|
+
us,b0006gp4,5,"Sunday, October 30, 2011 23:08:29 UTC",38.7833,142.4219,4.9,33.70,64,"near the east coast of Honshu, Japan"
|
24
|
+
hv,60279581,1,"Sunday, October 30, 2011 22:58:56 UTC",19.1440,-155.5520,1.9,7.10,33,"Island of Hawaii, Hawaii"
|
25
|
+
nc,71673231,0,"Sunday, October 30, 2011 22:52:35 UTC",37.5468,-118.8753,1.2,6.30,13,"Central California"
|
26
|
+
ci,11027429,0,"Sunday, October 30, 2011 21:21:27 UTC",32.9035,-116.3527,1.3,11.00,37,"Southern California"
|
27
|
+
ci,11027421,0,"Sunday, October 30, 2011 21:19:50 UTC",33.8855,-117.2620,1.6,25.30,24,"Greater Los Angeles area, California"
|
28
|
+
ci,11027413,0,"Sunday, October 30, 2011 21:13:49 UTC",32.9127,-116.3645,2.6,9.10,122,"Southern California"
|
29
|
+
ak,10345238,1,"Sunday, October 30, 2011 20:36:12 UTC",59.9055,-151.6462,2.3,23.60,25,"Kenai Peninsula, Alaska"
|
30
|
+
nc,71673181,0,"Sunday, October 30, 2011 19:43:08 UTC",35.7495,-121.1158,1.0,5.80, 7,"Central California"
|
31
|
+
nc,71673176,1,"Sunday, October 30, 2011 19:38:49 UTC",38.8333,-122.7995,1.4,2.60,26,"Northern California"
|
32
|
+
ci,11027405,0,"Sunday, October 30, 2011 19:27:16 UTC",33.2295,-116.7633,1.1,8.50,45,"Southern California"
|
33
|
+
ci,11027397,0,"Sunday, October 30, 2011 19:25:04 UTC",33.4155,-116.2512,1.4,8.40,15,"Southern California"
|
34
|
+
ci,11027373,0,"Sunday, October 30, 2011 19:07:18 UTC",33.3923,-115.8170,1.5,12.70,12,"Southern California"
|
35
|
+
nc,71673161,0,"Sunday, October 30, 2011 19:00:55 UTC",38.3473,-122.6588,1.5,6.00, 5,"Northern California"
|
36
|
+
us,b0006glr,8,"Sunday, October 30, 2011 18:53:43 UTC",-25.8121,-70.5671,5.7,31.40,129,"Antofagasta, Chile"
|
37
|
+
ci,11027365,0,"Sunday, October 30, 2011 18:51:05 UTC",33.1997,-115.5825,1.8,2.10,21,"Southern California"
|
38
|
+
nc,71673151,0,"Sunday, October 30, 2011 18:31:50 UTC",37.4857,-118.8043,1.0,10.60, 6,"Central California"
|
39
|
+
nc,71673136,1,"Sunday, October 30, 2011 18:03:20 UTC",35.9385,-120.0360,2.8,8.20,54,"Central California"
|
40
|
+
ci,11027349,0,"Sunday, October 30, 2011 18:01:34 UTC",33.4877,-116.5383,1.3,15.60,48,"Southern California"
|
41
|
+
nc,71673131,1,"Sunday, October 30, 2011 17:57:16 UTC",37.4133,-118.5553,2.2,18.00,29,"Central California"
|
42
|
+
ci,11027333,0,"Sunday, October 30, 2011 17:54:09 UTC",32.3218,-115.4958,2.5,3.50,17,"Baja California, Mexico"
|
43
|
+
ci,11027325,0,"Sunday, October 30, 2011 17:47:56 UTC",33.5758,-117.6295,1.5,7.90,13,"Greater Los Angeles area, California"
|
44
|
+
nc,71673111,0,"Sunday, October 30, 2011 17:26:09 UTC",37.4008,-118.4220,1.3,10.10,11,"Central California"
|
45
|
+
us,b0006gkx,7,"Sunday, October 30, 2011 16:58:41 UTC",2.6162,128.6977,4.7,190.20,20,"Halmahera, Indonesia"
|
46
|
+
nc,71673081,1,"Sunday, October 30, 2011 16:34:15 UTC",37.8708,-122.2500,1.7,8.90,36,"San Francisco Bay area, California"
|
47
|
+
ci,11027309,0,"Sunday, October 30, 2011 16:28:51 UTC",33.4708,-116.5717,1.5,11.90,72,"Southern California"
|
48
|
+
us,2011srbd,4,"Sunday, October 30, 2011 16:16:02 UTC",8.6984,58.2174,4.4,10.00,11,"Carlsberg Ridge"
|
49
|
+
ci,11027293,0,"Sunday, October 30, 2011 15:43:14 UTC",33.8668,-116.2293,1.5,28.50,16,"Southern California"
|
50
|
+
us,2011srbb,5,"Sunday, October 30, 2011 15:34:05 UTC",-9.5234,158.6351,4.7,10.00,15,"Solomon Islands"
|
51
|
+
pr,11303000,0,"Sunday, October 30, 2011 15:23:52 UTC",18.0729,-67.0039,2.2,22.00, 6,"Puerto Rico"
|
52
|
+
nc,71673041,1,"Sunday, October 30, 2011 14:49:50 UTC",38.8215,-122.7938,1.4,3.40,31,"Northern California"
|
53
|
+
ak,10345173,1,"Sunday, October 30, 2011 14:46:40 UTC",62.8155,-143.5587,2.5,0.00,18,"Central Alaska"
|
54
|
+
nc,71673016,0,"Sunday, October 30, 2011 13:52:30 UTC",39.8647,-122.8883,1.7,6.50,10,"Northern California"
|
55
|
+
nc,71673011,0,"Sunday, October 30, 2011 13:34:39 UTC",38.8675,-122.8257,1.0,0.00, 8,"Northern California"
|
56
|
+
nc,71673001,5,"Sunday, October 30, 2011 13:26:42 UTC",35.9753,-120.0228,3.5,0.00,50,"Central California"
|
57
|
+
nc,71672996,7,"Sunday, October 30, 2011 13:25:19 UTC",39.6037,-120.4727,3.8,14.00,17,"Northern California"
|
58
|
+
nc,71672991,0,"Sunday, October 30, 2011 13:02:14 UTC",36.4468,-121.0073,1.8,1.50,13,"Central California"
|
59
|
+
nc,71672981,1,"Sunday, October 30, 2011 12:56:18 UTC",38.8153,-122.8112,1.6,3.50,35,"Northern California"
|
60
|
+
hv,60279491,1,"Sunday, October 30, 2011 12:48:07 UTC",19.2940,-154.9970,1.7,37.30,47,"Hawaii region, Hawaii"
|
61
|
+
ci,11027269,0,"Sunday, October 30, 2011 12:44:19 UTC",33.1877,-115.5693,1.3,0.10,13,"Southern California"
|
62
|
+
us,b0006gju,9,"Sunday, October 30, 2011 11:52:27 UTC",-3.1111,101.4093,5.6,38.10,365,"southern Sumatra, Indonesia"
|
63
|
+
nn,00353240,8,"Sunday, October 30, 2011 11:43:34 UTC",37.4012,-117.0277,1.4,2.10,21,"Nevada"
|
64
|
+
us,b0006gjp,C,"Sunday, October 30, 2011 10:57:58 UTC",-14.3591,-75.9483,4.8,20.60,29,"near the coast of central Peru"
|
65
|
+
nc,71672891,0,"Sunday, October 30, 2011 10:32:30 UTC",36.1313,-121.5983,1.2,7.30, 6,"Central California"
|
66
|
+
ak,10345132,1,"Sunday, October 30, 2011 10:06:59 UTC",60.0424,-152.5323,2.5,15.80,10,"Southern Alaska"
|
67
|
+
ci,11027237,0,"Sunday, October 30, 2011 10:05:45 UTC",36.0308,-117.7693,2.1,3.70,11,"Central California"
|
68
|
+
nc,71672836,1,"Sunday, October 30, 2011 09:51:20 UTC",38.8345,-122.7755,2.4,2.50,51,"Northern California"
|
69
|
+
ci,11027229,0,"Sunday, October 30, 2011 09:32:11 UTC",33.2593,-116.3140,1.5,11.10,39,"Southern California"
|
70
|
+
us,b0006gj4,4,"Sunday, October 30, 2011 09:17:13 UTC",43.4079,-110.6639,2.0,5.10,32,"Wyoming"
|
71
|
+
ci,11027213,0,"Sunday, October 30, 2011 09:11:42 UTC",34.5942,-115.9322,2.3,0.00,36,"Southern California"
|
72
|
+
ak,10345313,2,"Sunday, October 30, 2011 09:02:23 UTC",52.3267,-164.8506,2.8,33.10,28,"south of Alaska"
|
73
|
+
nc,71672806,1,"Sunday, October 30, 2011 08:56:22 UTC",38.8107,-122.7895,1.1,2.90,27,"Northern California"
|
74
|
+
nn,00353230,8,"Sunday, October 30, 2011 08:07:03 UTC",38.8247,-119.5398,1.5,17.20,19,"Nevada"
|
75
|
+
nn,00353228,8,"Sunday, October 30, 2011 07:48:09 UTC",37.1182,-115.4207,1.5,7.00,16,"Nevada"
|
76
|
+
us,b0006gia,6,"Sunday, October 30, 2011 07:34:33 UTC",-47.4027,100.1214,4.5,10.00,13,"southeast Indian Ridge"
|
77
|
+
ak,10345108,1,"Sunday, October 30, 2011 07:24:50 UTC",60.2280,-152.5501,2.3,82.90, 8,"Southern Alaska"
|
78
|
+
ci,11027181,0,"Sunday, October 30, 2011 07:01:52 UTC",33.1892,-115.5717,1.9,1.80,29,"Southern California"
|
79
|
+
ci,11027173,0,"Sunday, October 30, 2011 06:58:44 UTC",33.1695,-115.5738,1.1,1.20,14,"Southern California"
|
80
|
+
ci,11027165,0,"Sunday, October 30, 2011 06:52:42 UTC",32.8363,-116.0010,1.4,0.40,19,"Southern California"
|
81
|
+
us,b0006ghx,4,"Sunday, October 30, 2011 06:30:04 UTC",35.3138,142.8031,4.5,10.00,27,"off the east coast of Honshu, Japan"
|
82
|
+
us,b0006gi2,6,"Sunday, October 30, 2011 06:28:51 UTC",15.5294,-90.2929,4.4,303.00,87,"Guatemala"
|
83
|
+
ak,10345101,1,"Sunday, October 30, 2011 06:27:50 UTC",60.4754,-143.8242,1.3,0.50, 5,"Southern Alaska"
|
84
|
+
nc,71672766,1,"Sunday, October 30, 2011 06:23:18 UTC",37.3998,-118.4225,2.3,11.40,27,"Central California"
|
85
|
+
us,b0006ghm,5,"Sunday, October 30, 2011 05:48:57 UTC",-17.0424,-178.3198,4.6,550.80,16,"Fiji region"
|
86
|
+
ak,10345086,1,"Sunday, October 30, 2011 05:24:17 UTC",63.1342,-151.2157,1.5,0.00, 7,"Central Alaska"
|
87
|
+
us,b0006ghd,9,"Sunday, October 30, 2011 05:24:07 UTC",37.6816,144.5306,5.2,9.90,253,"off the east coast of Honshu, Japan"
|
88
|
+
ak,10345082,1,"Sunday, October 30, 2011 05:21:56 UTC",63.1009,-151.2171,1.4,0.00, 5,"Central Alaska"
|
89
|
+
ak,10345076,1,"Sunday, October 30, 2011 05:15:09 UTC",66.2748,-146.6453,2.6,36.80,17,"northern Alaska"
|
90
|
+
us,b0006gh4,6,"Sunday, October 30, 2011 05:09:07 UTC",5.2279,125.4243,4.9,214.40,36,"Mindanao, Philippines"
|
91
|
+
nn,00353223,8,"Sunday, October 30, 2011 04:52:25 UTC",38.8235,-118.6048,1.9,1.50,23,"Nevada"
|
92
|
+
ak,10345073,2,"Sunday, October 30, 2011 04:39:15 UTC",51.5041,-174.8158,2.8,3.60, 5,"Andreanof Islands, Aleutian Islands, Alaska"
|
93
|
+
nc,71672711,0,"Sunday, October 30, 2011 04:25:05 UTC",38.8418,-122.8290,1.1,1.40,15,"Northern California"
|
94
|
+
ak,10345068,1,"Sunday, October 30, 2011 04:13:49 UTC",63.5252,-151.0121,1.8,0.50, 8,"Central Alaska"
|
95
|
+
us,b0006ggt,3,"Sunday, October 30, 2011 04:01:27 UTC",-5.4293,147.1880,4.8,185.70,24,"eastern New Guinea region, Papua New Guinea"
|
96
|
+
ci,11027109,0,"Sunday, October 30, 2011 03:43:42 UTC",33.9163,-116.7210,1.8,17.80,99,"Southern California"
|
97
|
+
ak,10345062,2,"Sunday, October 30, 2011 03:41:24 UTC",52.1208,-169.9668,3.9,25.60,15,"Fox Islands, Aleutian Islands, Alaska"
|
98
|
+
us,b0006ggi,6,"Sunday, October 30, 2011 03:25:02 UTC",13.8054,-91.2416,4.4,60.30,43,"offshore Guatemala"
|
99
|
+
us,b0006ggh,6,"Sunday, October 30, 2011 03:23:45 UTC",25.3612,123.0040,5.5,215.70,287,"northeast of Taiwan"
|
100
|
+
ak,10345045,1,"Sunday, October 30, 2011 03:21:22 UTC",63.0004,-150.9281,2.3,110.20,36,"Central Alaska"
|
101
|
+
nc,71672681,0,"Sunday, October 30, 2011 03:11:12 UTC",36.5872,-121.1302,1.8,9.60,23,"Central California"
|
102
|
+
nc,71672651,1,"Sunday, October 30, 2011 02:13:35 UTC",36.5597,-121.0245,2.0,8.90,24,"Central California"
|
103
|
+
us,b0006gg7,4,"Sunday, October 30, 2011 02:10:47 UTC",-9.4057,-75.3951,4.9,31.80,131,"central Peru"
|
104
|
+
us,b0006gg5,6,"Sunday, October 30, 2011 02:10:40 UTC",-4.3482,144.3407,5.3,62.00,80,"near the north coast of New Guinea, Papua New Guinea"
|
105
|
+
ak,10345025,1,"Sunday, October 30, 2011 02:06:45 UTC",64.7534,-147.3059,2.8,48.30, 8,"Central Alaska"
|
106
|
+
us,b0006gg3,5,"Sunday, October 30, 2011 02:02:14 UTC",4.8918,96.1406,4.7,18.60,27,"northern Sumatra, Indonesia"
|
107
|
+
us,b0006gg1,5,"Sunday, October 30, 2011 01:55:05 UTC",38.4899,43.7112,4.5,6.60,40,"eastern Turkey"
|
108
|
+
nn,00353213,8,"Sunday, October 30, 2011 01:48:29 UTC",37.1328,-115.4212,1.7,0.20,18,"Nevada"
|
109
|
+
us,b0006gfz,7,"Sunday, October 30, 2011 01:44:26 UTC",-16.3029,-175.5204,4.4,329.40,86,"Tonga"
|
110
|
+
nc,71672641,1,"Sunday, October 30, 2011 01:09:59 UTC",38.7835,-122.7365,1.6,2.10,26,"Northern California"
|
111
|
+
ak,10345020,2,"Sunday, October 30, 2011 01:09:54 UTC",51.6640,-174.8070,2.2,57.90, 8,"Andreanof Islands, Aleutian Islands, Alaska"
|
112
|
+
ci,11027093,0,"Sunday, October 30, 2011 01:00:22 UTC",32.9345,-116.0798,1.8,26.80,14,"Southern California"
|
113
|
+
ak,10345009,1,"Saturday, October 29, 2011 23:26:35 UTC",60.4401,-142.9006,1.3,4.40,11,"Southern Alaska"
|
114
|
+
ak,10345002,1,"Saturday, October 29, 2011 23:04:41 UTC",61.0191,-150.6321,1.8,44.00, 7,"Southern Alaska"
|
115
|
+
nc,71672616,0,"Saturday, October 29, 2011 22:59:29 UTC",38.8273,-122.8522,1.0,2.10,20,"Northern California"
|
116
|
+
ci,11027085,0,"Saturday, October 29, 2011 22:29:33 UTC",34.2097,-117.2063,1.7,12.60,11,"Southern California"
|
117
|
+
us,b0006gep,A,"Saturday, October 29, 2011 22:24:24 UTC",38.7502,43.5914,4.9,10.80,101,"eastern Turkey"
|
118
|
+
us,b0006gej,4,"Saturday, October 29, 2011 22:16:02 UTC",36.6434,142.4581,4.9,33.60,44,"off the east coast of Honshu, Japan"
|
119
|
+
us,b0006gdw,8,"Saturday, October 29, 2011 21:59:53 UTC",-6.5113,105.3183,4.7,9.40,48,"Sunda Strait, Indonesia"
|
120
|
+
uu,10292158,2,"Saturday, October 29, 2011 21:58:50 UTC",39.4372,-111.2340,1.6,2.40, 8,"Utah"
|
121
|
+
ak,10344987,1,"Saturday, October 29, 2011 21:34:48 UTC",61.3969,-140.1013,2.2,0.00,18,"Southern Yukon Territory, Canada"
|
122
|
+
nc,71672581,1,"Saturday, October 29, 2011 21:32:37 UTC",36.4858,-120.8587,1.7,12.30,20,"Central California"
|
123
|
+
ak,10344982,2,"Saturday, October 29, 2011 21:17:11 UTC",52.0307,-174.0129,1.7,15.10, 9,"Andreanof Islands, Aleutian Islands, Alaska"
|
124
|
+
ak,10344976,1,"Saturday, October 29, 2011 21:09:57 UTC",60.4176,-143.0162,2.0,35.90,10,"Southern Alaska"
|
125
|
+
pr,11302003,0,"Saturday, October 29, 2011 21:02:29 UTC",17.9440,-66.7210,1.3,19.00, 4,"Puerto Rico region"
|
126
|
+
ci,11027053,0,"Saturday, October 29, 2011 20:59:29 UTC",32.6277,-115.7163,2.0,6.70,14,"Baja California, Mexico"
|
127
|
+
uu,10292034,2,"Saturday, October 29, 2011 20:34:08 UTC",39.4353,-111.2310,1.7,0.10, 8,"Utah"
|
128
|
+
uu,10292024,2,"Saturday, October 29, 2011 20:24:10 UTC",38.0387,-112.8845,1.4,3.90, 4,"Utah"
|
129
|
+
ci,11027045,0,"Saturday, October 29, 2011 20:16:57 UTC",34.0222,-116.8248,1.5,14.00,72,"Southern California"
|
130
|
+
nc,71672566,0,"Saturday, October 29, 2011 20:07:42 UTC",38.8237,-122.7797,1.5,1.60,23,"Northern California"
|
131
|
+
ak,10344967,1,"Saturday, October 29, 2011 19:55:57 UTC",61.0935,-145.9046,1.3,5.80, 9,"Southern Alaska"
|
132
|
+
uw,10291952,1,"Saturday, October 29, 2011 19:52:01 UTC",47.8488,-122.5276,1.1,16.90, 9,"Seattle-Tacoma urban area, Washington"
|
133
|
+
us,b0006gcp,4,"Saturday, October 29, 2011 19:51:28 UTC",-0.8238,122.5008,4.5,25.10,19,"Sulawesi, Indonesia"
|
134
|
+
uu,10291943,2,"Saturday, October 29, 2011 19:43:56 UTC",39.4373,-111.2287,1.4,2.50, 7,"Utah"
|
135
|
+
ak,10344964,1,"Saturday, October 29, 2011 19:25:41 UTC",62.4283,-149.4751,2.0,18.70,10,"Central Alaska"
|
136
|
+
uu,10291923,2,"Saturday, October 29, 2011 19:23:38 UTC",39.4200,-111.2275,1.2,7.60, 7,"Utah"
|
137
|
+
ci,11027029,0,"Saturday, October 29, 2011 19:21:38 UTC",32.3688,-115.4850,2.4,1.80,31,"Baja California, Mexico"
|
138
|
+
nc,71672546,0,"Saturday, October 29, 2011 18:58:12 UTC",36.2563,-121.6795,1.0,6.70, 4,"Central California"
|
139
|
+
us,b0006gbl,4,"Saturday, October 29, 2011 18:45:51 UTC",38.5252,43.2840,4.4,16.90,35,"eastern Turkey"
|
140
|
+
nc,71672531,1,"Saturday, October 29, 2011 18:44:24 UTC",37.8300,-121.7803,2.4,10.80,51,"San Francisco Bay area, California"
|
141
|
+
ci,11027013,0,"Saturday, October 29, 2011 18:38:08 UTC",32.3562,-115.4932,2.5,1.90,25,"Baja California, Mexico"
|
142
|
+
us,b0006gb2,9,"Saturday, October 29, 2011 18:24:41 UTC",0.1326,-77.3997,4.3,23.80,24,"Colombia-Ecuador border region"
|
143
|
+
nc,71672521,1,"Saturday, October 29, 2011 18:17:41 UTC",38.8178,-122.7903,1.8,2.10,34,"Northern California"
|
144
|
+
nc,71672526,0,"Saturday, October 29, 2011 18:17:24 UTC",38.8210,-122.7928,1.2,2.60, 8,"Northern California"
|
145
|
+
ak,10344946,1,"Saturday, October 29, 2011 17:59:47 UTC",63.1791,-149.3215,1.8,79.90,10,"Central Alaska"
|
146
|
+
ci,11027005,0,"Saturday, October 29, 2011 17:58:57 UTC",33.9528,-117.2012,1.2,13.60,27,"Greater Los Angeles area, California"
|
147
|
+
uu,10291735,2,"Saturday, October 29, 2011 17:35:41 UTC",39.4325,-111.2350,1.3,4.90,10,"Utah"
|
148
|
+
ak,10344940,2,"Saturday, October 29, 2011 17:11:54 UTC",51.3909,-177.4259,3.9,50.00,10,"Andreanof Islands, Aleutian Islands, Alaska"
|
149
|
+
ak,10344937,1,"Saturday, October 29, 2011 16:41:11 UTC",61.5459,-146.5180,1.5,21.50, 6,"Southern Alaska"
|
150
|
+
pr,11302002,0,"Saturday, October 29, 2011 15:54:20 UTC",17.9899,-66.4280,2.1,16.00, 4,"Puerto Rico"
|
151
|
+
ci,11026997,0,"Saturday, October 29, 2011 15:37:14 UTC",36.0388,-117.7280,1.4,4.10,12,"Central California"
|
152
|
+
nc,71672426,0,"Saturday, October 29, 2011 15:24:02 UTC",36.5453,-121.1400,1.7,7.40,18,"Central California"
|
153
|
+
ak,10344930,1,"Saturday, October 29, 2011 15:21:47 UTC",60.5299,-147.8740,1.9,14.80,12,"Southern Alaska"
|
154
|
+
uw,10291509,1,"Saturday, October 29, 2011 15:09:24 UTC",46.3783,-119.2754,1.3,5.40,10,"Washington"
|
155
|
+
uu,10291426,2,"Saturday, October 29, 2011 14:26:27 UTC",39.4362,-111.2315,1.6,2.80, 8,"Utah"
|
156
|
+
hv,60279221,1,"Saturday, October 29, 2011 14:16:09 UTC",19.3185,-155.1663,1.8,5.00,41,"Island of Hawaii, Hawaii"
|
157
|
+
ci,11026981,0,"Saturday, October 29, 2011 14:15:27 UTC",32.8470,-116.0495,1.6,6.60,51,"Southern California"
|
158
|
+
us,b0006g7i,5,"Saturday, October 29, 2011 14:13:58 UTC",-2.9176,100.0163,4.8,26.30,33,"Kepulauan Mentawai region, Indonesia"
|
159
|
+
nc,71672406,1,"Saturday, October 29, 2011 14:10:00 UTC",38.8217,-122.7920,1.9,3.40,44,"Northern California"
|
160
|
+
ci,11026973,0,"Saturday, October 29, 2011 14:08:06 UTC",33.9658,-117.2208,1.5,13.40,68,"Greater Los Angeles area, California"
|
161
|
+
ci,11026965,0,"Saturday, October 29, 2011 14:01:39 UTC",36.1047,-117.6602,1.6,3.90,25,"Central California"
|
162
|
+
us,b0006g8r,4,"Saturday, October 29, 2011 13:50:49 UTC",-0.1300,-78.3700,4.0,3.00, 0,"Ecuador"
|
163
|
+
uu,10291204,2,"Saturday, October 29, 2011 12:04:19 UTC",39.4380,-111.2177,1.3,7.40, 6,"Utah"
|
164
|
+
nc,71672361,1,"Saturday, October 29, 2011 11:25:59 UTC",38.7615,-122.7407,1.4,1.90,26,"Northern California"
|
165
|
+
ak,10344908,1,"Saturday, October 29, 2011 11:15:37 UTC",61.6110,-150.4678,2.2,27.70,21,"Southern Alaska"
|
166
|
+
ak,10344900,1,"Saturday, October 29, 2011 10:26:08 UTC",63.3802,-148.2022,2.0,87.20,21,"Central Alaska"
|
167
|
+
nc,71672346,1,"Saturday, October 29, 2011 09:58:29 UTC",38.8170,-122.8052,1.1,3.60,26,"Northern California"
|
168
|
+
ci,11026941,0,"Saturday, October 29, 2011 09:45:01 UTC",33.0017,-116.4080,2.2,7.40,100,"Southern California"
|
169
|
+
nc,71672311,0,"Saturday, October 29, 2011 08:59:00 UTC",36.3593,-120.9338,1.4,5.30,10,"Central California"
|
170
|
+
nc,71672306,1,"Saturday, October 29, 2011 08:37:42 UTC",35.5903,-120.8425,1.6,6.70,28,"Central California"
|
171
|
+
ci,11026917,0,"Saturday, October 29, 2011 08:33:07 UTC",33.2737,-116.2880,1.3,11.30,40,"Southern California"
|
172
|
+
us,b0006g48,8,"Saturday, October 29, 2011 08:31:05 UTC",-14.7153,-75.9462,4.7,19.60,41,"near the coast of central Peru"
|
173
|
+
ak,10344881,1,"Saturday, October 29, 2011 08:03:06 UTC",61.6456,-146.6422,1.7,19.50,14,"Southern Alaska"
|
174
|
+
nc,71672291,1,"Saturday, October 29, 2011 07:53:20 UTC",38.7765,-122.7693,1.5,0.80,25,"Northern California"
|
175
|
+
ci,11026901,0,"Saturday, October 29, 2011 07:46:58 UTC",33.4743,-117.2535,1.5,0.10,13,"Southern California"
|
176
|
+
us,b0006g41,4,"Saturday, October 29, 2011 07:34:52 UTC",-14.5379,167.2083,4.9,128.40,39,"Vanuatu"
|
177
|
+
us,b0006g43,4,"Saturday, October 29, 2011 07:30:52 UTC",12.5667,142.4751,4.6,131.10,31,"Mariana Islands region"
|
178
|
+
ak,10344871,1,"Saturday, October 29, 2011 07:29:19 UTC",57.2066,-154.9269,2.8,24.50,15,"Kodiak Island region, Alaska"
|
179
|
+
nc,71672281,0,"Saturday, October 29, 2011 07:18:42 UTC",39.1690,-122.8597,2.0,6.50,10,"Northern California"
|
180
|
+
nc,71672276,0,"Saturday, October 29, 2011 07:17:01 UTC",38.8472,-122.8228,1.2,1.80,23,"Northern California"
|
181
|
+
nc,71672271,0,"Saturday, October 29, 2011 07:15:05 UTC",37.8750,-122.2548,1.1,8.80,18,"San Francisco Bay area, California"
|
182
|
+
us,b0006g3p,5,"Saturday, October 29, 2011 06:59:41 UTC",-23.6735,171.2786,4.7,50.10,26,"southeast of the Loyalty Islands"
|
183
|
+
us,b0006g3j,4,"Saturday, October 29, 2011 06:24:44 UTC",38.2308,141.9337,4.9,50.00,251,"near the east coast of Honshu, Japan"
|
184
|
+
nc,71672256,1,"Saturday, October 29, 2011 06:14:18 UTC",36.5460,-121.1402,2.3,6.90,35,"Central California"
|
185
|
+
hv,60279186,1,"Saturday, October 29, 2011 06:10:52 UTC",19.9920,-155.4300,1.9,1.50,12,"Island of Hawaii, Hawaii"
|
186
|
+
nc,71672246,1,"Saturday, October 29, 2011 06:00:19 UTC",38.8168,-122.8042,2.0,3.50,44,"Northern California"
|
187
|
+
nc,71672231,0,"Saturday, October 29, 2011 05:37:53 UTC",38.0723,-122.1665,1.5,6.30,14,"San Francisco Bay area, California"
|
188
|
+
us,b0006g3a,5,"Saturday, October 29, 2011 05:33:45 UTC",-14.5241,-76.1298,4.8,22.40,59,"near the coast of central Peru"
|
189
|
+
nc,71672221,0,"Saturday, October 29, 2011 05:22:24 UTC",38.7883,-122.7455,1.2,1.60,19,"Northern California"
|
190
|
+
nc,71672216,0,"Saturday, October 29, 2011 04:48:50 UTC",36.5953,-121.1175,1.5,4.40,11,"Central California"
|
191
|
+
ak,10344845,1,"Saturday, October 29, 2011 04:25:27 UTC",61.2746,-148.3008,1.4,28.50,10,"Southern Alaska"
|
192
|
+
us,b0006g2x,6,"Saturday, October 29, 2011 04:23:36 UTC",-14.6679,-75.9201,4.8,19.10,28,"near the coast of central Peru"
|
193
|
+
hv,60279101,1,"Saturday, October 29, 2011 04:13:47 UTC",19.3722,-155.4840,1.7,8.50,33,"Island of Hawaii, Hawaii"
|
194
|
+
us,b0006g2r,5,"Saturday, October 29, 2011 04:13:34 UTC",45.7361,10.9348,4.4,11.60,32,"northern Italy"
|
195
|
+
us,b0006g2q,6,"Saturday, October 29, 2011 03:52:44 UTC",38.5036,43.2663,4.3,4.90,24,"eastern Turkey"
|
196
|
+
ci,11026853,0,"Saturday, October 29, 2011 03:26:31 UTC",34.0135,-117.0987,1.6,16.90,105,"Greater Los Angeles area, California"
|
197
|
+
nc,71672206,0,"Saturday, October 29, 2011 03:26:09 UTC",38.7702,-122.7368,1.2,2.70,18,"Northern California"
|
198
|
+
uu,10290308,2,"Saturday, October 29, 2011 03:08:55 UTC",44.4330,-110.5878,1.5,2.80, 9,"Yellowstone National Park, Wyoming"
|
199
|
+
ci,11026845,0,"Saturday, October 29, 2011 03:05:19 UTC",32.9078,-116.2427,2.2,7.30,96,"Southern California"
|
200
|
+
nc,71672196,0,"Saturday, October 29, 2011 02:32:57 UTC",35.4657,-120.7312,1.5,0.00,10,"Central California"
|
201
|
+
ak,10344826,1,"Saturday, October 29, 2011 02:23:36 UTC",63.9560,-149.3330,1.9,0.00,14,"Central Alaska"
|
202
|
+
uu,10290145,2,"Saturday, October 29, 2011 01:45:59 UTC",44.6947,-110.4245,1.7,2.20,12,"Yellowstone National Park, Wyoming"
|
203
|
+
ak,10344815,1,"Saturday, October 29, 2011 01:41:14 UTC",63.3799,-151.7762,2.1,20.30,13,"Central Alaska"
|
204
|
+
nc,71672181,1,"Saturday, October 29, 2011 01:40:41 UTC",38.8187,-122.7940,1.1,3.20,29,"Northern California"
|
205
|
+
us,b0006g1x,4,"Saturday, October 29, 2011 01:37:47 UTC",-14.7329,-75.8631,4.7,20.00,30,"near the coast of central Peru"
|
206
|
+
ci,11026837,0,"Saturday, October 29, 2011 01:32:06 UTC",32.8900,-116.2270,1.7,8.10,67,"Southern California"
|
207
|
+
ak,10344797,1,"Saturday, October 29, 2011 01:00:58 UTC",61.4965,-150.7806,2.1,72.00,15,"Southern Alaska"
|
208
|
+
us,b0006g1l,6,"Saturday, October 29, 2011 00:57:21 UTC",-10.6532,165.0058,5.1,58.10,54,"Santa Cruz Islands"
|
209
|
+
us,b0006g1h,9,"Saturday, October 29, 2011 00:48:56 UTC",-14.3616,-75.9687,4.9,20.00,175,"near the coast of central Peru"
|
210
|
+
ci,11026821,0,"Saturday, October 29, 2011 00:37:26 UTC",36.0102,-117.4025,1.6,4.10, 8,"Central California"
|
211
|
+
ci,11026805,0,"Saturday, October 29, 2011 00:28:33 UTC",33.7192,-116.8115,1.2,16.60,44,"Southern California"
|
212
|
+
ak,10344693,1,"Saturday, October 29, 2011 00:17:57 UTC",58.8028,-152.3298,2.3,35.90, 8,"Kodiak Island region, Alaska"
|
213
|
+
pr,11302000,0,"Saturday, October 29, 2011 00:17:02 UTC",18.5790,-66.7580,3.0,9.70,11,"Puerto Rico region"
|
214
|
+
pr,11301003,0,"Friday, October 28, 2011 23:58:35 UTC",19.3719,-68.3939,3.2,56.60, 7,"Dominican Republic region"
|
215
|
+
us,b0006g0u,7,"Friday, October 28, 2011 23:50:57 UTC",-3.0729,129.6375,5.4,32.20,136,"Seram, Indonesia"
|
216
|
+
us,b0006g0p,9,"Friday, October 28, 2011 23:46:03 UTC",-14.5280,-75.9272,5.5,19.70,348,"near the coast of central Peru"
|
217
|
+
uu,10282334,2,"Friday, October 28, 2011 23:34:22 UTC",39.4177,-111.2253,1.5,8.10, 7,"Utah"
|
218
|
+
nc,71672136,0,"Friday, October 28, 2011 23:28:01 UTC",38.8268,-122.8557,1.4,2.10,22,"Northern California"
|
219
|
+
uu,10282323,2,"Friday, October 28, 2011 23:23:24 UTC",44.6855,-110.4360,1.7,1.70,18,"Yellowstone National Park, Wyoming"
|
220
|
+
us,b0006g0e,7,"Friday, October 28, 2011 22:48:03 UTC",32.5577,48.9572,4.7,40.00,106,"western Iran"
|
221
|
+
ak,10344647,2,"Friday, October 28, 2011 22:24:14 UTC",60.7436,-150.0422,3.0,43.00,62,"Kenai Peninsula, Alaska"
|
222
|
+
ak,10344648,1,"Friday, October 28, 2011 22:19:30 UTC",61.0560,-150.9143,1.4,60.10, 4,"Southern Alaska"
|
223
|
+
ci,11026757,0,"Friday, October 28, 2011 22:12:25 UTC",33.8508,-117.4895,1.6,1.10,39,"Greater Los Angeles area, California"
|
224
|
+
ak,10344641,1,"Friday, October 28, 2011 22:10:56 UTC",56.9999,-154.8163,2.3,1.70, 4,"Kodiak Island region, Alaska"
|
225
|
+
us,b0006g00,6,"Friday, October 28, 2011 22:00:01 UTC",-14.6839,-76.0385,5.0,5.90,133,"near the coast of central Peru"
|
226
|
+
us,b0006fzy,6,"Friday, October 28, 2011 21:51:58 UTC",-14.4922,-76.0399,4.9,21.70,110,"near the coast of central Peru"
|
227
|
+
ci,11026741,0,"Friday, October 28, 2011 21:29:38 UTC",32.8052,-116.1627,1.7,16.50,34,"Southern California"
|
228
|
+
uu,10282027,2,"Friday, October 28, 2011 20:27:37 UTC",39.4220,-111.2287,1.5,6.40, 7,"Utah"
|
229
|
+
us,b0006fxe,5,"Friday, October 28, 2011 20:26:49 UTC",-14.4247,-76.0458,4.7,22.70,32,"near the coast of central Peru"
|
230
|
+
nc,71672071,1,"Friday, October 28, 2011 20:21:33 UTC",38.8068,-122.8098,1.7,3.80,36,"Northern California"
|
231
|
+
ak,10344605,1,"Friday, October 28, 2011 20:05:38 UTC",61.2107,-143.5932,1.7,18.40,15,"Southern Alaska"
|
232
|
+
us,b0006fv2,8,"Friday, October 28, 2011 18:54:33 UTC",-14.5149,-76.0093,6.9,23.90,507,"near the coast of central Peru"
|
233
|
+
us,b0006fu3,7,"Friday, October 28, 2011 18:19:50 UTC",54.4202,-165.6666,4.8,101.50,108,"Fox Islands, Aleutian Islands, Alaska"
|
234
|
+
ci,11026717,0,"Friday, October 28, 2011 18:15:24 UTC",32.1015,-116.3297,2.2,21.00,15,"Baja California, Mexico"
|
235
|
+
nc,71672016,0,"Friday, October 28, 2011 17:54:52 UTC",37.3210,-122.1115,1.2,0.00, 6,"San Francisco Bay area, California"
|
236
|
+
uu,10281749,2,"Friday, October 28, 2011 17:49:15 UTC",39.4212,-111.2303,1.7,9.70, 7,"Utah"
|
237
|
+
ak,10344536,1,"Friday, October 28, 2011 17:40:28 UTC",63.3450,-145.4049,1.8,4.00,12,"Central Alaska"
|
238
|
+
ak,10344529,1,"Friday, October 28, 2011 17:30:01 UTC",64.6681,-147.0314,1.1,5.20, 7,"Central Alaska"
|
239
|
+
ci,11026701,0,"Friday, October 28, 2011 17:17:13 UTC",33.7057,-116.7158,1.1,4.50,14,"Southern California"
|
240
|
+
ak,10344526,2,"Friday, October 28, 2011 17:11:25 UTC",50.8759,176.1456,4.4,50.00,10,"Rat Islands, Aleutian Islands, Alaska"
|
241
|
+
nm,102811f,A,"Friday, October 28, 2011 16:57:40 UTC",35.3544,-92.2795,2.3,6.30,11,"Arkansas"
|
242
|
+
us,b0006fre,9,"Friday, October 28, 2011 16:55:54 UTC",51.5472,176.5210,4.9,48.00,114,"Rat Islands, Aleutian Islands, Alaska"
|
243
|
+
us,b0006frb,6,"Friday, October 28, 2011 16:50:34 UTC",-6.7961,143.9550,4.9,10.00,37,"New Guinea, Papua New Guinea"
|
244
|
+
nm,102811e,A,"Friday, October 28, 2011 16:49:23 UTC",35.3586,-92.2723,2.4,6.20,12,"Arkansas"
|
245
|
+
us,b0006frr,3,"Friday, October 28, 2011 16:34:11 UTC",38.7085,43.7932,4.5,5.00,23,"eastern Turkey"
|
246
|
+
uu,10281624,2,"Friday, October 28, 2011 16:24:26 UTC",39.4018,-111.2252,1.6,10.40, 8,"Utah"
|
247
|
+
uw,10281612,1,"Friday, October 28, 2011 16:12:35 UTC",46.6256,-122.1538,1.6,15.10,19,"Washington"
|
248
|
+
nc,71671941,3,"Friday, October 28, 2011 15:54:29 UTC",38.7680,-122.7130,2.1,2.30,68,"Northern California"
|
249
|
+
nm,102811d,A,"Friday, October 28, 2011 15:43:33 UTC",35.3578,-92.2710,2.4,6.60,13,"Arkansas"
|
250
|
+
nm,102811c,A,"Friday, October 28, 2011 15:43:33 UTC",35.3574,-92.2703,2.5,6.60,11,"Arkansas"
|
251
|
+
ci,11026669,0,"Friday, October 28, 2011 15:42:31 UTC",32.6132,-115.7203,2.0,7.10,26,"Baja California, Mexico"
|
252
|
+
uu,10281533,2,"Friday, October 28, 2011 15:33:55 UTC",39.4193,-111.2248,1.4,7.90, 7,"Utah"
|
253
|
+
nn,00352994,8,"Friday, October 28, 2011 15:23:46 UTC",38.1462,-119.1127,1.1,16.00, 5,"Central California"
|
254
|
+
ci,11026661,0,"Friday, October 28, 2011 15:13:03 UTC",33.0035,-116.3422,1.3,10.40,35,"Southern California"
|
255
|
+
ci,11026653,0,"Friday, October 28, 2011 15:11:28 UTC",35.6185,-117.7030,2.5,22.70, 8,"Southern California"
|
256
|
+
nc,71671896,2,"Friday, October 28, 2011 14:13:34 UTC",37.9933,-118.7507,1.2,8.40,18,"Central California"
|
257
|
+
uu,10281357,2,"Friday, October 28, 2011 13:57:27 UTC",39.4433,-111.2317,1.5,4.20, 5,"Utah"
|
258
|
+
nm,102811b,A,"Friday, October 28, 2011 13:38:09 UTC",35.3551,-92.2780,1.9,6.00, 7,"Arkansas"
|
259
|
+
uu,10281308,2,"Friday, October 28, 2011 13:08:08 UTC",39.4432,-111.2262,1.2,2.40, 6,"Utah"
|
260
|
+
pr,11301001,0,"Friday, October 28, 2011 13:03:15 UTC",18.9750,-64.3079,3.5,19.80, 5,"Virgin Islands region"
|
261
|
+
nm,102811a,B,"Friday, October 28, 2011 12:48:33 UTC",35.3549,-92.2778,2.0,5.60,13,"Arkansas"
|
262
|
+
ak,10344462,1,"Friday, October 28, 2011 12:42:35 UTC",63.0219,-151.0111,1.6,115.50, 7,"Central Alaska"
|
263
|
+
uu,10281227,2,"Friday, October 28, 2011 12:27:08 UTC",39.4405,-111.2305,1.6,4.90, 8,"Utah"
|
264
|
+
nc,71671851,2,"Friday, October 28, 2011 12:10:38 UTC",38.0012,-118.7253,1.6,4.90,32,"Central California"
|
265
|
+
uw,10281209,1,"Friday, October 28, 2011 12:09:22 UTC",48.6413,-122.2884,1.1,2.40, 7,"Washington"
|
266
|
+
nc,71672061,4,"Friday, October 28, 2011 11:50:09 UTC",37.6243,-119.4208,1.1,6.80,10,"Central California"
|
267
|
+
ak,10344450,1,"Friday, October 28, 2011 11:48:44 UTC",62.4597,-149.7475,2.2,105.90,18,"Central Alaska"
|
268
|
+
ak,10344448,1,"Friday, October 28, 2011 11:48:04 UTC",61.5993,-148.2922,1.5,8.60, 7,"Southern Alaska"
|
269
|
+
nc,71671836,3,"Friday, October 28, 2011 11:47:07 UTC",37.4750,-118.8403,1.5,4.40,32,"Central California"
|
270
|
+
hv,60279011,1,"Friday, October 28, 2011 11:42:48 UTC",19.2318,-155.4113,1.9,34.30,41,"Island of Hawaii, Hawaii"
|
271
|
+
ci,11026621,0,"Friday, October 28, 2011 11:41:01 UTC",32.5933,-115.7015,1.9,7.90,15,"Baja California, Mexico"
|
272
|
+
ak,10344439,1,"Friday, October 28, 2011 11:23:15 UTC",63.5315,-147.3106,1.5,13.00, 7,"Central Alaska"
|
273
|
+
ak,10344432,1,"Friday, October 28, 2011 11:18:42 UTC",60.5559,-147.3516,2.0,20.70,19,"Southern Alaska"
|
274
|
+
us,b0006fj5,4,"Friday, October 28, 2011 11:06:58 UTC",-28.5594,-175.9288,5.4,35.50,50,"Kermadec Islands region"
|
275
|
+
ci,11026605,0,"Friday, October 28, 2011 11:02:47 UTC",33.0168,-116.3748,1.2,11.10,47,"Southern California"
|
276
|
+
uu,10281055,2,"Friday, October 28, 2011 10:55:04 UTC",39.4360,-111.2290,1.5,3.00, 8,"Utah"
|
277
|
+
nc,71671821,0,"Friday, October 28, 2011 10:44:47 UTC",38.8117,-122.8123,1.1,3.00,19,"Northern California"
|
278
|
+
nc,71671816,2,"Friday, October 28, 2011 10:33:09 UTC",35.8442,-121.3562,1.8,7.40,42,"Central California"
|
279
|
+
nc,71671811,0,"Friday, October 28, 2011 10:33:03 UTC",38.8675,-123.0857,1.8,3.40,16,"Northern California"
|
280
|
+
ak,10344424,1,"Friday, October 28, 2011 10:26:20 UTC",61.9241,-151.2925,1.6,90.10, 6,"Southern Alaska"
|
281
|
+
uu,10281004,2,"Friday, October 28, 2011 10:04:20 UTC",39.4370,-111.2313,1.4,2.50, 8,"Utah"
|
282
|
+
us,b0006fhz,5,"Friday, October 28, 2011 09:47:58 UTC",38.5016,43.5689,4.3,9.90,21,"eastern Turkey"
|
283
|
+
ci,11026581,0,"Friday, October 28, 2011 09:30:54 UTC",35.9587,-117.3427,2.5,3.80,45,"Central California"
|
284
|
+
nc,71671791,1,"Friday, October 28, 2011 09:24:20 UTC",38.8117,-122.7403,1.6,2.90,32,"Northern California"
|
285
|
+
us,b0006fgu,6,"Friday, October 28, 2011 09:18:46 UTC",35.5321,-97.3663,3.5,5.00,35,"Oklahoma City urban area, Oklahoma"
|
286
|
+
us,b0006fgp,5,"Friday, October 28, 2011 09:08:37 UTC",-40.6332,126.4221,4.7,10.00,16,"south of Australia"
|
287
|
+
uu,10280900,2,"Friday, October 28, 2011 09:00:25 UTC",39.4355,-111.2320,1.4,2.50, 8,"Utah"
|
288
|
+
uu,10280858,2,"Friday, October 28, 2011 08:58:35 UTC",39.4382,-111.2328,1.4,2.50, 8,"Utah"
|
289
|
+
nc,71671786,2,"Friday, October 28, 2011 08:50:31 UTC",39.5943,-120.3678,1.2,30.40,18,"Northern California"
|
290
|
+
us,b0006fgc,7,"Friday, October 28, 2011 08:48:09 UTC",38.5468,43.7172,4.6,9.90,33,"eastern Turkey"
|
291
|
+
ci,11026573,0,"Friday, October 28, 2011 08:46:36 UTC",33.8628,-119.3568,2.4,0.00,24,"Channel Islands region, California"
|
292
|
+
us,b0006ffv,5,"Friday, October 28, 2011 08:14:28 UTC",5.0390,94.1666,4.9,50.00,50,"northern Sumatra, Indonesia"
|
293
|
+
pr,11301000,0,"Friday, October 28, 2011 08:10:18 UTC",18.0119,-66.9869,2.4,11.80, 7,"Puerto Rico"
|
294
|
+
nc,71671761,0,"Friday, October 28, 2011 07:30:16 UTC",38.8185,-122.7858,1.0,2.50,14,"Northern California"
|
295
|
+
pr,11301002,0,"Friday, October 28, 2011 07:21:35 UTC",19.2709,-67.8399,3.0,67.00, 6,"Dominican Republic region"
|
296
|
+
nc,71672041,2,"Friday, October 28, 2011 07:15:52 UTC",37.5320,-119.3980,1.0,9.70,15,"Central California"
|
297
|
+
uu,10280710,2,"Friday, October 28, 2011 07:10:37 UTC",39.4365,-111.2342,1.7,2.70, 8,"Utah"
|
298
|
+
us,b0006fej,4,"Friday, October 28, 2011 06:24:58 UTC",35.5226,-97.3593,3.3,5.00,40,"Oklahoma City urban area, Oklahoma"
|
299
|
+
uu,10280614,2,"Friday, October 28, 2011 06:13:59 UTC",39.4308,-111.2380,1.5,8.10,18,"Utah"
|
300
|
+
hv,60278986,1,"Friday, October 28, 2011 06:05:32 UTC",19.2045,-155.3088,2.1,46.70,34,"Island of Hawaii, Hawaii"
|
301
|
+
us,b0006fec,7,"Friday, October 28, 2011 05:57:13 UTC",-10.6138,161.4151,5.2,54.10,59,"Solomon Islands"
|
302
|
+
nc,71671721,3,"Friday, October 28, 2011 05:36:49 UTC",38.8222,-122.7863,2.0,2.40,68,"Northern California"
|
303
|
+
nc,71671711,3,"Friday, October 28, 2011 05:25:12 UTC",35.7045,-120.3203,1.7,12.80,67,"Central California"
|
304
|
+
nc,71671706,2,"Friday, October 28, 2011 05:20:48 UTC",35.7125,-120.3238,1.0,11.00,35,"Central California"
|
305
|
+
ak,10344392,1,"Friday, October 28, 2011 05:20:38 UTC",61.5013,-146.3309,1.7,30.70,10,"Southern Alaska"
|
306
|
+
uu,10280514,2,"Friday, October 28, 2011 05:14:25 UTC",39.4385,-111.2347,1.6,5.30,10,"Utah"
|
307
|
+
nc,71057109,2,"Friday, October 28, 2011 04:46:06 UTC",37.5202,-119.3802,1.1,9.70,13,"Central California"
|
308
|
+
us,b0006fdt,6,"Friday, October 28, 2011 04:27:19 UTC",-26.3443,-70.7357,4.9,42.20,46,"offshore Atacama, Chile"
|
309
|
+
nc,71671651,2,"Friday, October 28, 2011 03:55:08 UTC",37.5122,-119.3800,1.5,8.90,27,"Central California"
|
310
|
+
ak,10344369,2,"Friday, October 28, 2011 03:51:24 UTC",59.4252,-153.0253,1.9,103.50,28,"Southern Alaska"
|
311
|
+
ak,10344365,1,"Friday, October 28, 2011 03:43:47 UTC",63.4961,-150.1218,1.8,136.90,14,"Central Alaska"
|
312
|
+
nc,71671636,2,"Friday, October 28, 2011 03:17:58 UTC",37.5207,-119.3783,1.1,10.20,16,"Central California"
|
313
|
+
nc,71671626,3,"Friday, October 28, 2011 02:50:44 UTC",37.8705,-122.2577,1.3,8.50,63,"San Francisco Bay area, California"
|
314
|
+
ci,11026493,0,"Friday, October 28, 2011 02:50:21 UTC",34.0300,-116.2037,1.2,8.20,21,"Southern California"
|
315
|
+
uu,10280248,2,"Friday, October 28, 2011 02:48:08 UTC",39.4393,-111.2320,1.5,2.40,10,"Utah"
|
316
|
+
ak,10344356,1,"Friday, October 28, 2011 02:37:20 UTC",60.4762,-144.1237,1.6,1.40, 7,"Southern Alaska"
|
317
|
+
ak,10344353,1,"Friday, October 28, 2011 02:20:33 UTC",64.7876,-148.6567,1.4,26.90, 8,"Central Alaska"
|
318
|
+
nc,71671611,3,"Friday, October 28, 2011 02:12:18 UTC",37.4258,-119.0122,1.8,8.00,38,"Central California"
|
319
|
+
nc,71671616,0,"Friday, October 28, 2011 02:12:02 UTC",37.8735,-122.2527,1.1,8.70,16,"San Francisco Bay area, California"
|
320
|
+
ak,10344346,1,"Friday, October 28, 2011 02:04:53 UTC",63.1914,-145.3629,2.0,7.60,12,"Central Alaska"
|
321
|
+
ci,11026485,2,"Friday, October 28, 2011 02:00:49 UTC",34.5948,-118.6548,1.5,11.30,36,"Southern California"
|
322
|
+
nn,00352949,8,"Friday, October 28, 2011 01:55:07 UTC",38.3928,-118.3710,1.2,14.50,14,"Nevada"
|
323
|
+
nc,71671601,3,"Friday, October 28, 2011 01:51:46 UTC",37.8700,-122.2550,1.4,8.90,75,"San Francisco Bay area, California"
|
324
|
+
ak,10344338,1,"Friday, October 28, 2011 01:46:37 UTC",65.7632,-151.2357,2.1,0.00, 6,"northern Alaska"
|
325
|
+
us,b0006fch,8,"Friday, October 28, 2011 01:35:30 UTC",52.0378,-171.5136,5.5,53.30,270,"Fox Islands, Aleutian Islands, Alaska"
|
326
|
+
nc,71671591,2,"Friday, October 28, 2011 01:34:24 UTC",37.3223,-119.4568,1.8,31.60,11,"Central California"
|
327
|
+
ak,10344320,1,"Friday, October 28, 2011 01:32:32 UTC",63.9591,-148.7675,2.0,0.00,12,"Central Alaska"
|
328
|
+
nc,71671576,2,"Friday, October 28, 2011 00:58:20 UTC",37.5560,-119.0003,1.2,5.60,28,"Central California"
|
329
|
+
uu,10280053,2,"Friday, October 28, 2011 00:53:01 UTC",39.4385,-111.2322,1.3,3.00, 8,"Utah"
|
330
|
+
nc,71671566,1,"Friday, October 28, 2011 00:46:46 UTC",38.8140,-122.8025,1.2,2.00,22,"Northern California"
|
331
|
+
us,b0006fc1,6,"Friday, October 28, 2011 00:25:35 UTC",38.4679,43.2791,4.4,10.00,40,"eastern Turkey"
|
332
|
+
nn,00352940,8,"Friday, October 28, 2011 00:22:14 UTC",38.8985,-118.7712,1.8,14.70,12,"Nevada"
|
333
|
+
nn,00352937,8,"Friday, October 28, 2011 00:19:52 UTC",37.2117,-114.8982,2.2,18.40,22,"Nevada"
|
334
|
+
ci,11026453,4,"Friday, October 28, 2011 00:03:31 UTC",33.9625,-117.2267,1.1,14.00,61,"Greater Los Angeles area, California"
|
335
|
+
ak,10344274,2,"Thursday, October 27, 2011 23:41:37 UTC",63.3361,-145.3886,1.5,8.50,13,"Central Alaska"
|
336
|
+
nc,71671561,2,"Thursday, October 27, 2011 23:40:45 UTC",36.6063,-121.2113,1.1,6.70,24,"Central California"
|
337
|
+
uu,10272335,2,"Thursday, October 27, 2011 23:35:30 UTC",39.4383,-111.2345,1.5,3.90, 8,"Utah"
|
338
|
+
pr,11300003,0,"Thursday, October 27, 2011 23:20:55 UTC",18.5020,-67.4520,2.9,9.40,13,"Mona Passage, Puerto Rico"
|
339
|
+
uu,10272320,2,"Thursday, October 27, 2011 23:20:08 UTC",40.4687,-111.9862,1.7,0.20,11,"Wasatch Front Urban Corridor, Utah"
|
340
|
+
nc,71671556,0,"Thursday, October 27, 2011 23:13:22 UTC",38.7580,-122.6987,1.3,1.10,13,"Northern California"
|
341
|
+
hv,60278916,1,"Thursday, October 27, 2011 23:13:01 UTC",19.3170,-155.1227,1.8,5.20,22,"Island of Hawaii, Hawaii"
|
342
|
+
ci,11026405,2,"Thursday, October 27, 2011 23:05:40 UTC",33.2658,-115.6642,1.1,3.50,22,"Southern California"
|
343
|
+
ak,10344257,2,"Thursday, October 27, 2011 23:02:26 UTC",65.0213,-147.2944,1.2,0.00, 6,"northern Alaska"
|
344
|
+
ak,10344256,2,"Thursday, October 27, 2011 23:01:30 UTC",61.3930,-150.7087,1.8,64.80,20,"Southern Alaska"
|
345
|
+
ci,11026397,2,"Thursday, October 27, 2011 22:08:32 UTC",35.4978,-118.4092,2.1,5.20,38,"Central California"
|
346
|
+
nc,71671541,2,"Thursday, October 27, 2011 22:02:23 UTC",37.4847,-121.8118,1.0,5.70,23,"San Francisco Bay area, California"
|
347
|
+
nc,71671526,2,"Thursday, October 27, 2011 21:35:27 UTC",40.3973,-121.5792,2.0,1.50, 8,"Northern California"
|
348
|
+
us,b0006f8u,6,"Thursday, October 27, 2011 21:25:57 UTC",-20.6700,-179.0465,4.9,621.00,95,"Fiji region"
|
349
|
+
ak,10344125,2,"Thursday, October 27, 2011 21:20:38 UTC",60.2363,-141.3963,1.5,0.00,11,"Southern Alaska"
|
350
|
+
ak,10344744,2,"Thursday, October 27, 2011 21:13:11 UTC",57.3832,-152.7482,1.8,24.80, 8,"Kodiak Island region, Alaska"
|
351
|
+
ci,11026373,2,"Thursday, October 27, 2011 21:12:58 UTC",33.0518,-114.9758,1.5,7.00,13,"Southern California"
|
352
|
+
ak,10344119,2,"Thursday, October 27, 2011 21:08:19 UTC",64.6791,-147.5709,1.1,6.80,10,"Central Alaska"
|
353
|
+
nc,71671506,4,"Thursday, October 27, 2011 21:03:11 UTC",39.6025,-120.4713,1.3,14.10,20,"Northern California"
|
354
|
+
nc,71671496,1,"Thursday, October 27, 2011 20:58:12 UTC",38.8405,-122.8287,1.7,2.50,34,"Northern California"
|
355
|
+
hv,60278866,1,"Thursday, October 27, 2011 20:42:23 UTC",19.2685,-155.2507,1.8,28.40,43,"Island of Hawaii, Hawaii"
|
356
|
+
ci,11026349,2,"Thursday, October 27, 2011 20:33:24 UTC",32.5948,-116.9868,1.8,7.00,36,"San Diego County urban area, California"
|
357
|
+
nc,71671486,2,"Thursday, October 27, 2011 20:31:58 UTC",35.7303,-121.1193,1.3,7.10,25,"Central California"
|
358
|
+
nm,102711b,A,"Thursday, October 27, 2011 20:20:58 UTC",35.3521,-92.2915,2.1,3.80,10,"Arkansas"
|
359
|
+
ak,10344741,2,"Thursday, October 27, 2011 20:08:28 UTC",63.9038,-148.7198,1.6,106.00,15,"Central Alaska"
|
360
|
+
ak,10344740,2,"Thursday, October 27, 2011 19:56:14 UTC",63.1674,-150.4654,1.7,112.40,16,"Central Alaska"
|
361
|
+
pr,11300004,0,"Thursday, October 27, 2011 19:56:11 UTC",18.6870,-64.5729,3.1,1.80, 7,"Virgin Islands region"
|
362
|
+
uu,10271944,2,"Thursday, October 27, 2011 19:44:13 UTC",39.4352,-111.2327,1.6,3.30, 7,"Utah"
|
363
|
+
ak,10343903,2,"Thursday, October 27, 2011 19:29:09 UTC",54.2672,-162.6335,2.5,18.90,15,"Alaska Peninsula"
|
364
|
+
ci,11026333,2,"Thursday, October 27, 2011 19:27:13 UTC",33.0718,-116.3965,1.0,14.10,28,"Southern California"
|
365
|
+
ak,10343890,2,"Thursday, October 27, 2011 19:17:52 UTC",60.8143,-149.7891,2.3,46.20,42,"Kenai Peninsula, Alaska"
|
366
|
+
nn,00352905,1,"Thursday, October 27, 2011 19:11:42 UTC",38.8573,-118.7448,1.7,4.50,13,"Nevada"
|
367
|
+
ci,11026309,2,"Thursday, October 27, 2011 19:02:41 UTC",34.0248,-116.3220,1.2,11.20,21,"Southern California"
|
368
|
+
ci,11026285,5,"Thursday, October 27, 2011 18:40:41 UTC",32.3488,-115.2233,3.3,10.00,28,"Baja California, Mexico"
|
369
|
+
ci,11026277,2,"Thursday, October 27, 2011 18:28:11 UTC",34.6180,-117.1203,1.3,7.00,11,"Southern California"
|
370
|
+
nc,71671461,2,"Thursday, October 27, 2011 18:17:21 UTC",37.3462,-119.4717,2.0,28.30,25,"Central California"
|
371
|
+
ak,10343861,2,"Thursday, October 27, 2011 18:11:27 UTC",60.9695,-146.8055,1.5,25.00,19,"Southern Alaska"
|
372
|
+
us,b0006ey6,7,"Thursday, October 27, 2011 18:06:25 UTC",37.6030,144.5404,5.0,42.60,204,"off the east coast of Honshu, Japan"
|
373
|
+
ak,10343851,3,"Thursday, October 27, 2011 18:06:18 UTC",60.9807,-146.7990,3.2,23.90,81,"Southern Alaska"
|
374
|
+
ak,10343848,2,"Thursday, October 27, 2011 17:58:58 UTC",61.2105,-151.8520,1.7,82.30,19,"Southern Alaska"
|
375
|
+
uu,10271749,2,"Thursday, October 27, 2011 17:49:13 UTC",39.4205,-111.2268,1.5,7.20, 7,"Utah"
|
376
|
+
ak,10343839,2,"Thursday, October 27, 2011 17:30:26 UTC",62.1416,-150.3580,1.7,1.70,20,"Central Alaska"
|
377
|
+
uw,10271727,1,"Thursday, October 27, 2011 17:27:25 UTC",47.6839,-121.9150,1.3,27.90,11,"Puget Sound region, Washington"
|
378
|
+
ak,10344733,2,"Thursday, October 27, 2011 17:03:56 UTC",58.0659,-153.7974,1.9,65.50, 8,"Kodiak Island region, Alaska"
|
379
|
+
ne,00001286,a,"Thursday, October 27, 2011 16:51:31 UTC",46.0731,-69.7018,1.9,5.10, 8,"Maine"
|
380
|
+
uu,10271641,2,"Thursday, October 27, 2011 16:41:35 UTC",40.4013,-111.9533,1.7,3.60, 7,"Wasatch Front Urban Corridor, Utah"
|
381
|
+
ak,10344732,2,"Thursday, October 27, 2011 16:24:20 UTC",60.1986,-152.6591,1.6,108.80,15,"Southern Alaska"
|
382
|
+
ak,10343818,2,"Thursday, October 27, 2011 16:23:58 UTC",62.1176,-148.0810,1.4,37.80,18,"Central Alaska"
|
383
|
+
ak,10343813,2,"Thursday, October 27, 2011 15:48:22 UTC",54.0131,-165.1652,2.3,70.00,16,"Fox Islands, Aleutian Islands, Alaska"
|
384
|
+
nc,71671376,2,"Thursday, October 27, 2011 15:43:59 UTC",39.6222,-120.4618,1.1,14.60, 8,"Northern California"
|
385
|
+
ci,11026237,2,"Thursday, October 27, 2011 15:43:56 UTC",33.4745,-116.5645,1.2,12.40,53,"Southern California"
|
386
|
+
us,b0006esh,6,"Thursday, October 27, 2011 15:41:34 UTC",38.7267,43.5979,4.5,5.80,15,"eastern Turkey"
|
387
|
+
ak,10343803,2,"Thursday, October 27, 2011 15:35:32 UTC",60.3532,-143.0442,1.2,5.10,17,"Southern Alaska"
|
388
|
+
nc,71671366,9,"Thursday, October 27, 2011 15:26:40 UTC",38.9763,-123.0750,1.0,3.20,13,"Northern California"
|
389
|
+
nc,71671361,2,"Thursday, October 27, 2011 15:24:40 UTC",39.6123,-120.4663,1.5,13.20,21,"Northern California"
|
390
|
+
uu,10271522,2,"Thursday, October 27, 2011 15:22:22 UTC",39.4363,-111.2290,1.5,2.30, 8,"Utah"
|
391
|
+
pr,11300002,0,"Thursday, October 27, 2011 15:17:26 UTC",18.7999,-67.6480,2.5,3.30, 7,"Puerto Rico region"
|
392
|
+
us,b0006eri,5,"Thursday, October 27, 2011 15:15:39 UTC",40.1031,24.5319,4.2,13.60,16,"Aegean Sea"
|
393
|
+
ci,11026229,2,"Thursday, October 27, 2011 14:49:54 UTC",34.0035,-116.8553,1.1,20.40,29,"Southern California"
|
394
|
+
nc,71671346,1,"Thursday, October 27, 2011 14:48:12 UTC",38.8033,-122.8143,1.1,3.40,28,"Northern California"
|
395
|
+
hv,60278826,1,"Thursday, October 27, 2011 14:47:32 UTC",19.4227,-155.4822,1.7,10.70,35,"Island of Hawaii, Hawaii"
|
396
|
+
ak,10343792,2,"Thursday, October 27, 2011 14:46:20 UTC",62.1582,-148.7685,1.9,25.10,30,"Central Alaska"
|
397
|
+
ak,10343788,2,"Thursday, October 27, 2011 14:20:56 UTC",60.7940,-150.4451,1.6,38.70,20,"Kenai Peninsula, Alaska"
|
398
|
+
nc,71671311,0,"Thursday, October 27, 2011 14:19:25 UTC",38.8252,-122.8450,1.0,0.00,12,"Northern California"
|
399
|
+
ak,10343787,2,"Thursday, October 27, 2011 14:18:11 UTC",60.7281,-151.3993,1.6,68.00,15,"Kenai Peninsula, Alaska"
|
400
|
+
nc,71671306,0,"Thursday, October 27, 2011 14:04:58 UTC",38.8397,-122.8302,1.1,2.50,18,"Northern California"
|
401
|
+
nc,71671291,1,"Thursday, October 27, 2011 13:43:40 UTC",38.7908,-122.7443,1.7,3.40,37,"Northern California"
|
402
|
+
nc,71671296,0,"Thursday, October 27, 2011 13:42:27 UTC",38.8365,-122.8105,1.2,2.40,22,"Northern California"
|
403
|
+
nc,71671281,3,"Thursday, October 27, 2011 13:28:15 UTC",37.1865,-122.0372,1.9,13.60,53,"Northern California"
|
404
|
+
ak,10343764,2,"Thursday, October 27, 2011 13:25:39 UTC",58.2996,-154.2695,3.3,69.20,73,"Alaska Peninsula"
|
405
|
+
nc,71671271,1,"Thursday, October 27, 2011 13:25:33 UTC",38.8210,-122.7767,1.8,2.10,32,"Northern California"
|
406
|
+
ak,10343757,2,"Thursday, October 27, 2011 13:18:23 UTC",61.7708,-149.5040,2.1,34.20,47,"Southern Alaska"
|
407
|
+
ci,11026189,2,"Thursday, October 27, 2011 13:12:02 UTC",33.8782,-117.6820,1.4,10.40,32,"Greater Los Angeles area, California"
|
408
|
+
ci,11026181,4,"Thursday, October 27, 2011 13:11:19 UTC",34.3330,-118.4457,1.6,5.10,30,"Greater Los Angeles area, California"
|
409
|
+
ci,11026173,2,"Thursday, October 27, 2011 13:07:45 UTC",33.0405,-116.4333,1.3,5.70,53,"Southern California"
|
410
|
+
ak,10343752,2,"Thursday, October 27, 2011 12:54:38 UTC",64.8376,-147.2797,1.1,8.80,13,"Central Alaska"
|
411
|
+
ci,11026157,2,"Thursday, October 27, 2011 12:48:23 UTC",35.9530,-117.3488,1.1,4.70,17,"Central California"
|
412
|
+
nc,71671261,2,"Thursday, October 27, 2011 12:42:26 UTC",39.6132,-120.4710,1.3,14.90,15,"Northern California"
|
413
|
+
ak,10344722,2,"Thursday, October 27, 2011 12:37:14 UTC",62.7678,-149.7600,1.2,79.30, 8,"Central Alaska"
|
414
|
+
nc,71671256,A,"Thursday, October 27, 2011 12:36:44 UTC",37.8667,-122.2605,3.6,8.20,297,"San Francisco Bay area, California"
|
415
|
+
ci,11026125,4,"Thursday, October 27, 2011 12:30:49 UTC",34.3303,-118.4453,2.2,4.90,64,"Greater Los Angeles area, California"
|
416
|
+
ak,10344721,2,"Thursday, October 27, 2011 12:28:19 UTC",62.1659,-151.1716,1.7,83.60,24,"Central Alaska"
|
417
|
+
ci,11026117,2,"Thursday, October 27, 2011 12:21:17 UTC",33.2113,-116.0743,2.9,8.30,100,"Southern California"
|
418
|
+
nc,71671406,2,"Thursday, October 27, 2011 12:12:39 UTC",37.5352,-119.3922,1.0,9.00,16,"Central California"
|
419
|
+
nc,71671236,0,"Thursday, October 27, 2011 12:00:43 UTC",38.7990,-122.7810,1.0,3.70,21,"Northern California"
|
420
|
+
nn,00352848,8,"Thursday, October 27, 2011 11:56:48 UTC",38.4165,-118.7496,1.5,0.00,12,"Nevada"
|
421
|
+
ak,10343741,2,"Thursday, October 27, 2011 11:46:30 UTC",51.9349,-171.4877,3.3,42.70,14,"Fox Islands, Aleutian Islands, Alaska"
|
422
|
+
ak,10343740,2,"Thursday, October 27, 2011 11:41:59 UTC",60.5841,-151.7183,1.8,76.80,25,"Kenai Peninsula, Alaska"
|
423
|
+
ci,11026109,2,"Thursday, October 27, 2011 11:31:49 UTC",35.9540,-117.3473,2.2,4.40,27,"Central California"
|
424
|
+
ci,11026101,2,"Thursday, October 27, 2011 11:14:27 UTC",34.1997,-118.1208,1.3,10.80,31,"Greater Los Angeles area, California"
|
425
|
+
ak,10343735,2,"Thursday, October 27, 2011 11:09:30 UTC",61.3106,-149.8935,1.2,37.40,14,"Southern Alaska"
|
426
|
+
nc,71671226,4,"Thursday, October 27, 2011 10:37:55 UTC",37.8445,-121.8845,1.3,5.80,20,"San Francisco Bay area, California"
|
427
|
+
ak,10343733,2,"Thursday, October 27, 2011 10:26:32 UTC",61.1859,-148.5422,1.3,23.90,17,"Southern Alaska"
|
428
|
+
uw,10271026,1,"Thursday, October 27, 2011 10:26:06 UTC",48.9480,-122.4453,2.4,15.50,29,"Washington"
|
429
|
+
hv,60278786,1,"Thursday, October 27, 2011 10:25:46 UTC",19.3320,-155.1713,2.5,6.20,61,"Island of Hawaii, Hawaii"
|
430
|
+
mb,11293522,2,"Thursday, October 27, 2011 10:10:04 UTC",42.9356,-111.1756,2.4,1.10,25,"southern Idaho"
|
431
|
+
nc,71671216,2,"Thursday, October 27, 2011 09:53:55 UTC",37.5068,-119.3820,1.5,15.20,17,"Central California"
|
432
|
+
se,102711a,A,"Thursday, October 27, 2011 09:49:22 UTC",35.6044,-85.0610,1.9,20.70,11,"eastern Tennessee"
|
433
|
+
ci,11026085,2,"Thursday, October 27, 2011 09:27:28 UTC",33.2098,-116.0735,2.8,9.70,99,"Southern California"
|
434
|
+
ak,10344716,2,"Thursday, October 27, 2011 09:18:24 UTC",63.2802,-151.0446,1.4,3.40,16,"Central Alaska"
|
435
|
+
nc,71671186,4,"Thursday, October 27, 2011 09:01:24 UTC",39.6153,-120.4693,1.3,13.40,23,"Northern California"
|
436
|
+
ak,10344715,2,"Thursday, October 27, 2011 08:58:46 UTC",59.7423,-153.3152,1.9,121.30,26,"Southern Alaska"
|
437
|
+
ci,11026077,2,"Thursday, October 27, 2011 08:57:37 UTC",32.9063,-116.2218,1.1,7.50,27,"Southern California"
|
438
|
+
ci,11026069,2,"Thursday, October 27, 2011 08:50:32 UTC",32.9113,-116.2275,1.3,7.30,46,"Southern California"
|
439
|
+
ak,10343724,2,"Thursday, October 27, 2011 08:49:19 UTC",63.7298,-147.9056,1.0,65.60,14,"Central Alaska"
|
440
|
+
nc,71671171,2,"Thursday, October 27, 2011 08:36:29 UTC",39.6180,-120.4648,1.2,13.40,15,"Northern California"
|
441
|
+
us,b0006ejj,8,"Thursday, October 27, 2011 08:04:23 UTC",37.2494,43.8461,5.2,17.50,109,"Turkey-Iraq border region"
|
442
|
+
ak,10343713,3,"Thursday, October 27, 2011 07:46:42 UTC",52.1002,-171.6276,3.1,25.50,14,"Fox Islands, Aleutian Islands, Alaska"
|
443
|
+
nc,71671146,1,"Thursday, October 27, 2011 07:42:47 UTC",38.8378,-122.8268,1.5,2.40,25,"Northern California"
|
444
|
+
ak,10343701,2,"Thursday, October 27, 2011 07:39:18 UTC",59.9376,-152.7069,3.1,100.60,87,"Southern Alaska"
|
445
|
+
nc,71671141,3,"Thursday, October 27, 2011 07:36:11 UTC",39.6090,-120.4758,2.5,14.20,31,"Northern California"
|
446
|
+
nc,71671111,1,"Thursday, October 27, 2011 07:22:44 UTC",38.8173,-122.7852,1.4,2.30,29,"Northern California"
|
447
|
+
nc,71671081,2,"Thursday, October 27, 2011 06:54:25 UTC",39.6083,-120.4678,1.5,12.80,20,"Northern California"
|
448
|
+
nc,71671076,3,"Thursday, October 27, 2011 06:51:01 UTC",39.6078,-120.4667,2.4,14.80,34,"Northern California"
|
449
|
+
nc,71671071,2,"Thursday, October 27, 2011 06:49:36 UTC",39.6157,-120.4647,1.2,15.00,13,"Northern California"
|
450
|
+
nc,71671061,2,"Thursday, October 27, 2011 06:41:53 UTC",39.6048,-120.4660,1.9,13.80,21,"Northern California"
|
451
|
+
nc,71671056,9,"Thursday, October 27, 2011 06:37:09 UTC",39.6055,-120.4715,4.7,13.90,33,"Northern California"
|
452
|
+
nn,00352788,8,"Thursday, October 27, 2011 06:28:28 UTC",37.8187,-115.9478,1.2,0.00, 7,"Nevada"
|
453
|
+
us,b0006ehy,4,"Thursday, October 27, 2011 06:15:59 UTC",-17.8735,-179.6012,4.3,611.00,19,"Fiji region"
|
454
|
+
nc,71671046,3,"Thursday, October 27, 2011 05:59:10 UTC",36.7080,-121.3457,1.7,3.00,45,"Central California"
|
455
|
+
us,b0006ehp,6,"Thursday, October 27, 2011 05:56:19 UTC",49.7251,155.9273,4.6,75.50,56,"Kuril Islands"
|
456
|
+
ak,10343676,2,"Thursday, October 27, 2011 05:46:10 UTC",62.8268,-148.8761,1.8,62.00,33,"Central Alaska"
|
457
|
+
ak,10343670,2,"Thursday, October 27, 2011 05:33:38 UTC",60.4685,-147.2953,1.9,10.70,35,"Southern Alaska"
|
458
|
+
nc,71671031,1,"Thursday, October 27, 2011 05:21:10 UTC",38.8300,-122.8080,1.6,2.30,29,"Northern California"
|
459
|
+
ak,10344708,2,"Thursday, October 27, 2011 05:16:19 UTC",52.5413,-169.1740,2.5,20.90, 8,"Fox Islands, Aleutian Islands, Alaska"
|
460
|
+
nn,00352787,8,"Thursday, October 27, 2011 05:14:42 UTC",37.8244,-115.9641,1.3,6.80,12,"Nevada"
|
461
|
+
uu,10270509,2,"Thursday, October 27, 2011 05:09:01 UTC",39.4202,-111.2265,1.6,7.10, 7,"Utah"
|
462
|
+
us,b0006egk,5,"Thursday, October 27, 2011 05:04:05 UTC",-26.7442,-178.1042,4.6,75.80,26,"south of the Fiji Islands"
|
463
|
+
ak,10343662,2,"Thursday, October 27, 2011 04:56:52 UTC",60.2821,-143.0406,1.3,2.70,18,"Southern Alaska"
|
464
|
+
ak,10343661,2,"Thursday, October 27, 2011 04:29:14 UTC",61.8099,-149.5199,1.4,4.60,16,"Southern Alaska"
|
465
|
+
us,b0006efy,6,"Thursday, October 27, 2011 03:29:34 UTC",-17.5252,-178.7549,4.4,515.50,78,"Fiji region"
|
466
|
+
nc,71671551,2,"Thursday, October 27, 2011 03:13:13 UTC",40.4293,-121.9402,1.1,15.60,13,"Northern California"
|
467
|
+
ak,10344705,2,"Thursday, October 27, 2011 02:51:34 UTC",57.2890,-155.6313,2.1,79.10,10,"Alaska Peninsula"
|
468
|
+
ci,11026013,2,"Thursday, October 27, 2011 02:37:32 UTC",32.9062,-116.2288,2.6,6.70,70,"Southern California"
|
469
|
+
ak,10344704,2,"Thursday, October 27, 2011 02:31:53 UTC",57.0127,-155.2426,2.1,9.40,12,"Alaska Peninsula"
|
470
|
+
nc,71670986,1,"Thursday, October 27, 2011 02:30:06 UTC",38.8003,-122.8120,1.0,3.50,23,"Northern California"
|
471
|
+
ak,10343652,2,"Thursday, October 27, 2011 02:21:31 UTC",60.7091,-150.6541,1.8,45.60,26,"Kenai Peninsula, Alaska"
|
472
|
+
uu,10270209,2,"Thursday, October 27, 2011 02:09:51 UTC",39.4262,-111.2283,1.7,7.10,11,"Utah"
|
473
|
+
ci,11025997,2,"Thursday, October 27, 2011 01:26:41 UTC",33.9677,-116.9825,1.0,16.80,29,"Southern California"
|
474
|
+
pr,11300001,0,"Thursday, October 27, 2011 01:26:20 UTC",18.4860,-66.1370,3.0,104.80,15,"Puerto Rico region"
|
475
|
+
us,b0006eep,6,"Thursday, October 27, 2011 01:20:33 UTC",-15.8081,168.1462,4.9,39.70,29,"Vanuatu"
|
476
|
+
uu,10270103,2,"Thursday, October 27, 2011 01:03:49 UTC",39.4395,-111.2422,1.3,2.40, 9,"Utah"
|
477
|
+
us,b0006edd,4,"Thursday, October 27, 2011 00:15:25 UTC",-17.9142,-179.4242,6.0,611.90,372,"Fiji region"
|
478
|
+
nc,71670961,4,"Thursday, October 27, 2011 00:15:20 UTC",37.8468,-121.8805,1.6,6.00,27,"San Francisco Bay area, California"
|
479
|
+
ci,11025965,2,"Thursday, October 27, 2011 00:14:29 UTC",32.8045,-116.1390,1.2,5.00,23,"Southern California"
|
480
|
+
pr,11300000,0,"Thursday, October 27, 2011 00:02:18 UTC",18.8519,-67.3379,3.0,10.70, 9,"Puerto Rico region"
|
481
|
+
ci,11025957,2,"Wednesday, October 26, 2011 23:59:00 UTC",34.2292,-117.4568,1.4,15.70,34,"Greater Los Angeles area, California"
|
482
|
+
nc,71670951,2,"Wednesday, October 26, 2011 23:47:02 UTC",37.6587,-119.4480,1.5,9.80,11,"Central California"
|
483
|
+
us,b0006ect,7,"Wednesday, October 26, 2011 23:42:28 UTC",38.5221,43.2438,4.6,11.50,48,"eastern Turkey"
|
484
|
+
nc,71670946,1,"Wednesday, October 26, 2011 23:41:42 UTC",38.8122,-122.7940,1.0,2.90,24,"Northern California"
|
485
|
+
pr,11299002,0,"Wednesday, October 26, 2011 23:36:09 UTC",19.1389,-64.5279,3.1,39.00, 4,"Virgin Islands region"
|
486
|
+
ci,11025949,2,"Wednesday, October 26, 2011 23:32:38 UTC",35.0355,-117.6770,1.5,7.00,10,"Southern California"
|
487
|
+
ak,10344198,2,"Wednesday, October 26, 2011 23:19:35 UTC",52.0341,-172.1252,3.0,42.00, 8,"Andreanof Islands, Aleutian Islands, Alaska"
|
488
|
+
us,2011sma4,7,"Wednesday, October 26, 2011 23:15:08 UTC",38.9543,43.7212,4.3,5.00,27,"eastern Turkey"
|
489
|
+
ak,10343597,2,"Wednesday, October 26, 2011 23:09:32 UTC",63.9281,-148.8960,1.6,0.00,10,"Central Alaska"
|
490
|
+
ak,10343593,2,"Wednesday, October 26, 2011 23:01:06 UTC",65.0028,-147.3960,1.0,0.00, 8,"northern Alaska"
|
491
|
+
nc,71670931,6,"Wednesday, October 26, 2011 22:44:21 UTC",37.8538,-121.8915,3.0,8.90,133,"San Francisco Bay area, California"
|
492
|
+
hv,60278711,1,"Wednesday, October 26, 2011 22:28:19 UTC",19.3437,-155.4937,1.7,10.30,35,"Island of Hawaii, Hawaii"
|
493
|
+
nc,71670916,5,"Wednesday, October 26, 2011 22:04:13 UTC",37.3458,-120.0008,1.0,1.90, 4,"Central California"
|
494
|
+
ci,11025869,2,"Wednesday, October 26, 2011 21:38:07 UTC",33.4637,-116.4577,1.4,7.80,59,"Southern California"
|
495
|
+
uu,10262133,2,"Wednesday, October 26, 2011 21:33:18 UTC",39.4217,-111.2303,1.6,6.80, 7,"Utah"
|
496
|
+
ak,10343465,2,"Wednesday, October 26, 2011 21:15:20 UTC",61.3140,-149.8730,2.1,34.40,30,"Southern Alaska"
|
497
|
+
ci,11025845,2,"Wednesday, October 26, 2011 21:10:08 UTC",33.4647,-116.4592,1.8,6.50,62,"Southern California"
|
498
|
+
ak,10344194,2,"Wednesday, October 26, 2011 20:56:13 UTC",67.8366,-157.1246,2.4,0.50, 7,"northern Alaska"
|
499
|
+
ci,11025837,2,"Wednesday, October 26, 2011 20:52:23 UTC",33.9303,-117.1855,1.2,13.80,46,"Greater Los Angeles area, California"
|
500
|
+
ci,11025829,2,"Wednesday, October 26, 2011 20:42:49 UTC",34.4597,-117.9652,1.8,9.50,10,"Southern California"
|
501
|
+
ci,11025813,2,"Wednesday, October 26, 2011 20:40:15 UTC",33.2660,-116.0202,1.3,5.00,30,"Southern California"
|
502
|
+
ak,10343446,2,"Wednesday, October 26, 2011 20:32:34 UTC",60.6925,-151.3649,2.0,67.20,27,"Kenai Peninsula, Alaska"
|
503
|
+
us,2011sma7,1,"Wednesday, October 26, 2011 20:31:44 UTC",14.2650,53.6612,5.2,10.00,27,"Owen Fracture Zone region"
|
504
|
+
ci,11025805,2,"Wednesday, October 26, 2011 20:31:20 UTC",32.9993,-116.3952,2.2,7.90,84,"Southern California"
|
505
|
+
ak,10343438,2,"Wednesday, October 26, 2011 20:24:13 UTC",63.4249,-151.5167,2.1,8.90,21,"Central Alaska"
|
506
|
+
nc,71670866,3,"Wednesday, October 26, 2011 20:22:07 UTC",37.3420,-119.4668,1.8,32.50,12,"Central California"
|
507
|
+
ak,10344191,2,"Wednesday, October 26, 2011 19:39:40 UTC",58.0022,-142.6409,2.7,29.80,30,"Gulf of Alaska"
|
508
|
+
ci,11025749,6,"Wednesday, October 26, 2011 19:32:44 UTC",33.8763,-117.6960,2.0,11.70,79,"Greater Los Angeles area, California"
|
509
|
+
ci,11025741,2,"Wednesday, October 26, 2011 19:16:23 UTC",33.1742,-115.7363,1.8,0.90,12,"Southern California"
|
510
|
+
ci,11025733,2,"Wednesday, October 26, 2011 19:10:57 UTC",33.7770,-116.1378,1.0,9.20,32,"Southern California"
|
511
|
+
nc,71670826,3,"Wednesday, October 26, 2011 18:53:32 UTC",37.6980,-119.4118,1.8,29.40, 9,"Central California"
|
512
|
+
ak,10343292,2,"Wednesday, October 26, 2011 18:37:41 UTC",63.1575,-143.4901,1.8,10.80,10,"Central Alaska"
|
513
|
+
ak,10344189,2,"Wednesday, October 26, 2011 18:33:43 UTC",51.5712,-176.4034,2.2,35.90,12,"Andreanof Islands, Aleutian Islands, Alaska"
|
514
|
+
nc,71670801,3,"Wednesday, October 26, 2011 18:27:32 UTC",38.1162,-122.1812,1.4,0.00,11,"San Francisco Bay area, California"
|
515
|
+
ak,10343283,2,"Wednesday, October 26, 2011 18:11:45 UTC",51.3188,-178.2804,2.6,24.10,11,"Andreanof Islands, Aleutian Islands, Alaska"
|
516
|
+
ak,10344187,2,"Wednesday, October 26, 2011 17:55:59 UTC",52.2709,-169.8902,3.0,24.00, 9,"Fox Islands, Aleutian Islands, Alaska"
|
517
|
+
ci,11025725,2,"Wednesday, October 26, 2011 17:35:12 UTC",35.0482,-118.3497,1.1,7.00,10,"Southern California"
|
518
|
+
nc,71670761,2,"Wednesday, October 26, 2011 17:21:12 UTC",36.4543,-121.0337,1.1,8.40,15,"Central California"
|
519
|
+
nm,102611e,A,"Wednesday, October 26, 2011 17:06:09 UTC",35.3544,-92.2720,2.2,5.40,11,"Arkansas"
|
520
|
+
ci,11025669,2,"Wednesday, October 26, 2011 16:58:05 UTC",34.3280,-116.9393,1.4,7.00, 9,"Southern California"
|
521
|
+
us,b0006duw,7,"Wednesday, October 26, 2011 16:53:14 UTC",19.2169,-108.7996,4.0,10.00,31,"Revilla Gigedo Islands region"
|
522
|
+
ak,10343254,2,"Wednesday, October 26, 2011 16:23:19 UTC",59.9688,-153.4762,2.7,145.70,44,"Southern Alaska"
|
523
|
+
uu,10261620,2,"Wednesday, October 26, 2011 16:20:09 UTC",39.4368,-111.2317,1.5,2.50, 8,"Utah"
|
524
|
+
nm,102611d,A,"Wednesday, October 26, 2011 16:07:54 UTC",35.3563,-92.2748,2.2,6.10,10,"Arkansas"
|
525
|
+
nc,71670716,1,"Wednesday, October 26, 2011 16:05:20 UTC",38.8202,-122.8080,1.8,3.10,37,"Northern California"
|
526
|
+
ak,10343248,2,"Wednesday, October 26, 2011 16:04:22 UTC",61.0885,-150.6826,1.8,8.30,22,"Southern Alaska"
|
527
|
+
ak,10343238,2,"Wednesday, October 26, 2011 15:58:25 UTC",61.2880,-146.8138,1.8,15.00,26,"Southern Alaska"
|
528
|
+
us,b0006drn,5,"Wednesday, October 26, 2011 15:37:11 UTC",-41.2813,-85.5169,4.9,10.00,50,"West Chile Rise"
|
529
|
+
us,b0006dqp,6,"Wednesday, October 26, 2011 15:14:38 UTC",38.4879,43.5609,4.3,19.70,25,"eastern Turkey"
|
530
|
+
ak,10343233,2,"Wednesday, October 26, 2011 14:46:59 UTC",61.2414,-146.7192,1.5,31.10,20,"Southern Alaska"
|
531
|
+
pr,11299001,0,"Wednesday, October 26, 2011 14:25:11 UTC",17.7919,-66.6600,1.7,23.90, 7,"Puerto Rico region"
|
532
|
+
pr,11299000,0,"Wednesday, October 26, 2011 14:24:11 UTC",17.8010,-66.5749,1.5,29.30, 5,"Puerto Rico region"
|
533
|
+
nc,71670646,0,"Wednesday, October 26, 2011 14:03:35 UTC",38.8437,-122.8410,1.3,1.60,23,"Northern California"
|
534
|
+
ak,10343229,2,"Wednesday, October 26, 2011 14:00:45 UTC",62.0288,-150.2769,1.8,49.10,21,"Central Alaska"
|
535
|
+
nc,71670636,3,"Wednesday, October 26, 2011 13:55:34 UTC",38.8435,-122.8400,1.9,1.60,54,"Northern California"
|
536
|
+
ak,10343217,3,"Wednesday, October 26, 2011 12:50:14 UTC",57.8895,-155.7483,2.4,106.40,19,"Alaska Peninsula"
|
537
|
+
ci,11025597,2,"Wednesday, October 26, 2011 12:49:24 UTC",32.7190,-117.2255,1.3,14.20,37,"San Diego County urban area, California"
|
538
|
+
ak,10343213,2,"Wednesday, October 26, 2011 12:37:18 UTC",60.9792,-146.6179,1.7,21.20,26,"Southern Alaska"
|
539
|
+
us,b0006dn7,A,"Wednesday, October 26, 2011 12:05:16 UTC",38.5243,43.7161,4.3,13.80,34,"eastern Turkey"
|
540
|
+
ak,10343212,2,"Wednesday, October 26, 2011 11:40:40 UTC",63.0849,-151.4811,1.5,6.80,18,"Central Alaska"
|
541
|
+
nc,71670586,2,"Wednesday, October 26, 2011 11:23:43 UTC",36.9777,-121.4627,1.0,3.10,26,"Central California"
|
542
|
+
ak,10343209,2,"Wednesday, October 26, 2011 11:11:51 UTC",56.5827,-154.5681,2.7,36.40,15,"Kodiak Island region, Alaska"
|
543
|
+
uw,10261111,1,"Wednesday, October 26, 2011 11:11:50 UTC",47.8316,-122.7531,1.3,10.70,18,"Puget Sound region, Washington"
|
544
|
+
ci,11025589,2,"Wednesday, October 26, 2011 11:01:45 UTC",33.8748,-117.6908,1.6,11.40,82,"Greater Los Angeles area, California"
|
545
|
+
us,b0006dmh,5,"Wednesday, October 26, 2011 10:44:33 UTC",20.8322,121.7072,4.3,60.30,23,"Batan Islands region, Philippines"
|
546
|
+
ak,10344177,2,"Wednesday, October 26, 2011 10:38:05 UTC",51.6789,-175.7967,2.2,52.10,12,"Andreanof Islands, Aleutian Islands, Alaska"
|
547
|
+
nc,71670581,2,"Wednesday, October 26, 2011 10:26:39 UTC",37.2937,-121.6753,1.1,2.20,18,"Northern California"
|
548
|
+
ci,11025581,3,"Wednesday, October 26, 2011 10:05:24 UTC",32.8615,-118.3865,2.2,8.60,10,"Gulf of Santa Catalina, California"
|
549
|
+
nc,71670571,3,"Wednesday, October 26, 2011 09:38:17 UTC",37.4013,-119.7052,1.8,27.40,11,"Central California"
|
550
|
+
ci,11025573,2,"Wednesday, October 26, 2011 09:32:36 UTC",32.8937,-116.2417,1.3,7.40,31,"Southern California"
|
551
|
+
ak,10343203,2,"Wednesday, October 26, 2011 09:24:57 UTC",55.1306,-161.7873,2.6,88.90,10,"Alaska Peninsula"
|
552
|
+
ci,11025565,0,"Wednesday, October 26, 2011 09:15:46 UTC",34.0653,-116.4642,1.3,11.60,40,"Southern California"
|
553
|
+
nn,00352708,8,"Wednesday, October 26, 2011 09:07:49 UTC",39.5183,-119.4189,1.2,6.00,16,"Nevada"
|
554
|
+
nc,71670566,0,"Wednesday, October 26, 2011 09:07:42 UTC",38.7713,-122.7112,1.0,3.20, 9,"Northern California"
|
555
|
+
nc,71670561,1,"Wednesday, October 26, 2011 09:06:01 UTC",38.7947,-122.8047,1.1,3.60,28,"Northern California"
|
556
|
+
ak,10343194,2,"Wednesday, October 26, 2011 09:03:43 UTC",63.5136,-151.0761,1.1,14.40,12,"Central Alaska"
|
557
|
+
ak,10344174,2,"Wednesday, October 26, 2011 09:02:01 UTC",53.8062,-166.4125,2.2,93.70,11,"Fox Islands, Aleutian Islands, Alaska"
|
558
|
+
ak,10344173,2,"Wednesday, October 26, 2011 08:55:34 UTC",61.3731,-147.3053,1.4,19.80,14,"Southern Alaska"
|
559
|
+
ci,11025557,0,"Wednesday, October 26, 2011 08:34:35 UTC",34.0368,-117.2490,1.3,18.00,64,"Greater Los Angeles area, California"
|
560
|
+
ak,10343191,2,"Wednesday, October 26, 2011 08:28:47 UTC",63.3013,-151.7266,1.5,6.00,16,"Central Alaska"
|
561
|
+
ak,10343190,2,"Wednesday, October 26, 2011 08:23:30 UTC",61.3596,-147.3699,1.6,10.60,16,"Southern Alaska"
|
562
|
+
ak,10343188,2,"Wednesday, October 26, 2011 07:59:41 UTC",63.4311,-146.1774,1.6,10.50,20,"Central Alaska"
|
563
|
+
nc,71670551,0,"Wednesday, October 26, 2011 07:46:18 UTC",38.8228,-122.7995,1.0,2.80,16,"Northern California"
|
564
|
+
nc,71670546,1,"Wednesday, October 26, 2011 07:43:52 UTC",38.8217,-122.8007,1.6,3.00,34,"Northern California"
|
565
|
+
ne,00001285,a,"Wednesday, October 26, 2011 07:35:32 UTC",46.8006,-71.0401,2.0,2.50,10,"St. Lawrence Valley region, Quebec, Canada"
|
566
|
+
ak,10344169,2,"Wednesday, October 26, 2011 07:17:48 UTC",65.9888,-150.7221,1.4,8.30, 9,"northern Alaska"
|
567
|
+
ak,10343183,2,"Wednesday, October 26, 2011 07:14:59 UTC",53.8545,-165.1393,2.2,63.70,13,"Fox Islands, Aleutian Islands, Alaska"
|
568
|
+
ci,11025549,0,"Wednesday, October 26, 2011 06:34:42 UTC",32.6902,-115.8778,1.7,2.80,13,"Southern California"
|
569
|
+
uu,10260623,2,"Wednesday, October 26, 2011 06:23:20 UTC",39.4362,-111.2350,1.6,2.70, 8,"Utah"
|
570
|
+
ak,10343179,2,"Wednesday, October 26, 2011 05:46:42 UTC",65.4492,-148.6214,1.9,5.30,21,"northern Alaska"
|
571
|
+
ak,10343177,2,"Wednesday, October 26, 2011 05:28:14 UTC",53.6819,-165.8236,2.6,35.40,22,"Fox Islands, Aleutian Islands, Alaska"
|
572
|
+
ak,10343176,2,"Wednesday, October 26, 2011 05:04:59 UTC",54.1232,-164.1321,2.2,31.10,13,"Unimak Island region, Alaska"
|
573
|
+
ci,11025533,2,"Wednesday, October 26, 2011 04:47:05 UTC",34.6947,-116.2893,2.7,0.90,51,"Southern California"
|
574
|
+
ak,10343168,2,"Wednesday, October 26, 2011 04:39:05 UTC",62.9495,-149.6637,1.9,78.80,25,"Central Alaska"
|
575
|
+
nc,71670496,2,"Wednesday, October 26, 2011 04:36:51 UTC",37.2020,-119.8113,2.0,23.80,12,"Central California"
|
576
|
+
hv,60278571,1,"Wednesday, October 26, 2011 04:35:43 UTC",19.0407,-155.3975,1.7,37.80,17,"Island of Hawaii, Hawaii"
|
577
|
+
ak,10344163,2,"Wednesday, October 26, 2011 04:22:56 UTC",66.4611,-141.9717,2.5,24.80,11,"northern Alaska"
|
578
|
+
nc,71670486,2,"Wednesday, October 26, 2011 04:22:45 UTC",40.4967,-123.9735,2.0,19.60,16,"Northern California"
|
579
|
+
nc,71670481,0,"Wednesday, October 26, 2011 04:21:32 UTC",38.7847,-122.7398,1.1,0.00,16,"Northern California"
|
580
|
+
ak,10343160,2,"Wednesday, October 26, 2011 04:07:15 UTC",60.3077,-150.9249,2.0,62.50,27,"Kenai Peninsula, Alaska"
|
581
|
+
uu,10260344,2,"Wednesday, October 26, 2011 03:44:11 UTC",39.4388,-111.2370,1.5,2.50, 9,"Utah"
|
582
|
+
us,b0006djn,7,"Wednesday, October 26, 2011 03:38:50 UTC",-2.4508,99.9501,5.3,20.30,54,"Kepulauan Mentawai region, Indonesia"
|
583
|
+
ak,10343155,2,"Wednesday, October 26, 2011 03:20:13 UTC",60.7071,-151.2997,1.7,59.30,18,"Kenai Peninsula, Alaska"
|
584
|
+
us,b0006djh,6,"Wednesday, October 26, 2011 03:18:51 UTC",-4.4396,146.3558,4.7,120.30,17,"eastern New Guinea region, Papua New Guinea"
|
585
|
+
us,b0006djf,6,"Wednesday, October 26, 2011 03:16:19 UTC",38.6227,43.2372,4.7,10.00,29,"eastern Turkey"
|
586
|
+
ak,10344160,2,"Wednesday, October 26, 2011 03:14:01 UTC",52.1669,-171.7240,2.9,48.30,12,"Fox Islands, Aleutian Islands, Alaska"
|
587
|
+
uu,10260309,2,"Wednesday, October 26, 2011 03:09:29 UTC",44.6093,-110.6628,1.0,6.20,11,"Yellowstone National Park, Wyoming"
|
588
|
+
ak,10343149,2,"Wednesday, October 26, 2011 03:06:56 UTC",59.9738,-153.1410,2.7,124.70,60,"Southern Alaska"
|
589
|
+
uu,10260304,2,"Wednesday, October 26, 2011 03:04:29 UTC",39.4357,-111.2292,1.7,2.80, 8,"Utah"
|
590
|
+
uu,10260301,2,"Wednesday, October 26, 2011 03:01:27 UTC",39.4370,-111.2335,1.4,2.20, 8,"Utah"
|
591
|
+
us,b0006dj9,5,"Wednesday, October 26, 2011 02:59:08 UTC",38.6632,43.4564,4.5,10.10,18,"eastern Turkey"
|
592
|
+
se,102611a,B,"Wednesday, October 26, 2011 02:34:04 UTC",36.2066,-83.2897,1.7,6.90, 7,"eastern Tennessee"
|
593
|
+
uu,10260214,2,"Wednesday, October 26, 2011 02:14:43 UTC",39.5068,-111.0823,2.1,3.10,14,"Utah"
|
594
|
+
nm,102611c,A,"Wednesday, October 26, 2011 02:12:29 UTC",36.5373,-89.5970,1.3,7.00,18,"southeastern Missouri"
|
595
|
+
ci,11025485,2,"Wednesday, October 26, 2011 02:09:19 UTC",35.9678,-117.3883,1.1,5.70,14,"Central California"
|
596
|
+
ak,10343143,2,"Wednesday, October 26, 2011 02:03:46 UTC",61.9894,-150.8367,1.8,3.80,27,"Southern Alaska"
|
597
|
+
ak,10344157,2,"Wednesday, October 26, 2011 01:12:58 UTC",63.7243,-148.5734,1.3,89.10, 6,"Central Alaska"
|
598
|
+
ci,11025477,4,"Wednesday, October 26, 2011 01:11:41 UTC",34.0185,-117.2682,1.1,19.30,21,"Greater Los Angeles area, California"
|
599
|
+
uu,10260055,2,"Wednesday, October 26, 2011 00:55:36 UTC",39.4360,-111.2223,1.4,4.10, 6,"Utah"
|
600
|
+
nc,71670416,1,"Wednesday, October 26, 2011 00:31:16 UTC",38.8450,-122.8292,1.1,2.30,21,"Northern California"
|
601
|
+
us,b0006di1,3,"Wednesday, October 26, 2011 00:13:22 UTC",-26.8125,-176.6120,4.8,36.00,32,"south of the Fiji Islands"
|
602
|
+
us,b0006dhu,2,"Tuesday, October 25, 2011 23:39:05 UTC",38.5739,43.6498,4.4,4.50,24,"eastern Turkey"
|
603
|
+
ak,10343064,2,"Tuesday, October 25, 2011 23:29:53 UTC",63.0956,-150.6171,2.7,118.30,51,"Central Alaska"
|
604
|
+
ci,11025445,2,"Tuesday, October 25, 2011 23:29:38 UTC",32.6373,-115.7432,2.2,4.60,35,"Baja California, Mexico"
|
605
|
+
nm,102511d,A,"Tuesday, October 25, 2011 23:24:52 UTC",35.3596,-92.2655,2.7,6.10,12,"Arkansas"
|
606
|
+
ci,11025437,2,"Tuesday, October 25, 2011 23:22:14 UTC",35.0347,-117.6728,1.8,7.00,21,"Southern California"
|
607
|
+
ak,10343058,2,"Tuesday, October 25, 2011 23:16:41 UTC",64.9841,-147.3696,1.0,0.00, 5,"Central Alaska"
|
608
|
+
nc,71670401,3,"Tuesday, October 25, 2011 23:10:06 UTC",37.5928,-121.5950,2.1,2.30,66,"Northern California"
|
609
|
+
uu,10252252,2,"Tuesday, October 25, 2011 22:52:01 UTC",39.4382,-111.2327,1.7,2.30, 8,"Utah"
|
610
|
+
hv,60278511,1,"Tuesday, October 25, 2011 22:36:55 UTC",19.6615,-156.4563,2.1,36.20,41,"Hawaii region, Hawaii"
|
611
|
+
ak,10343029,2,"Tuesday, October 25, 2011 22:35:09 UTC",54.6410,-161.1433,3.5,12.90,17,"Alaska Peninsula"
|
612
|
+
pr,11298004,0,"Tuesday, October 25, 2011 22:33:52 UTC",19.5279,-66.8000,3.5,122.90, 4,"Puerto Rico region"
|
613
|
+
us,b0006dd4,5,"Tuesday, October 25, 2011 22:33:08 UTC",38.0793,20.8333,4.3,33.40,38,"Greece"
|
614
|
+
ak,10343026,2,"Tuesday, October 25, 2011 22:32:46 UTC",63.2516,-151.0858,1.4,12.70,12,"Central Alaska"
|
615
|
+
ci,11025421,2,"Tuesday, October 25, 2011 22:11:06 UTC",34.0442,-117.2688,1.1,16.50,38,"Greater Los Angeles area, California"
|
616
|
+
us,b0006dbj,5,"Tuesday, October 25, 2011 22:08:43 UTC",-45.7232,-72.7232,5.2,13.40,118,"Aisen, Chile"
|
617
|
+
uu,10252138,2,"Tuesday, October 25, 2011 21:38:08 UTC",39.4417,-111.2243,1.6,3.10, 7,"Utah"
|
618
|
+
nc,71670361,1,"Tuesday, October 25, 2011 21:28:19 UTC",38.8222,-122.7940,1.0,3.40,24,"Northern California"
|
619
|
+
nc,71670351,0,"Tuesday, October 25, 2011 21:22:04 UTC",38.8192,-122.7993,1.2,2.90,21,"Northern California"
|
620
|
+
nc,71670341,3,"Tuesday, October 25, 2011 21:15:06 UTC",40.7477,-122.3158,2.1,0.10,29,"Northern California"
|
621
|
+
uw,10252109,1,"Tuesday, October 25, 2011 21:09:59 UTC",46.7490,-121.9000,1.2,12.10,19,"Washington"
|
622
|
+
ak,10342976,3,"Tuesday, October 25, 2011 21:03:09 UTC",60.3149,-151.4661,2.2,73.90,34,"Kenai Peninsula, Alaska"
|
623
|
+
ci,11025365,2,"Tuesday, October 25, 2011 21:00:31 UTC",33.8473,-117.5205,1.4,7.00,19,"Greater Los Angeles area, California"
|
624
|
+
ak,10343532,2,"Tuesday, October 25, 2011 20:45:17 UTC",52.0351,-179.4909,2.6,97.00, 9,"Andreanof Islands, Aleutian Islands, Alaska"
|
625
|
+
uu,10252037,2,"Tuesday, October 25, 2011 20:37:41 UTC",39.4348,-111.2302,1.3,2.50, 8,"Utah"
|
626
|
+
ak,10343531,2,"Tuesday, October 25, 2011 20:33:56 UTC",52.5908,-171.7854,2.9,47.90, 8,"Fox Islands, Aleutian Islands, Alaska"
|
627
|
+
ak,10342967,2,"Tuesday, October 25, 2011 20:27:07 UTC",62.0185,-149.7889,1.8,27.10,23,"Central Alaska"
|
628
|
+
ci,11025349,2,"Tuesday, October 25, 2011 20:18:55 UTC",33.2653,-116.0802,1.3,13.20,50,"Southern California"
|
629
|
+
nc,71670316,0,"Tuesday, October 25, 2011 19:46:25 UTC",38.7735,-122.7157,1.2,2.30,15,"Northern California"
|
630
|
+
us,b0006d2a,5,"Tuesday, October 25, 2011 19:34:20 UTC",-15.0351,167.3081,5.2,150.60,47,"Vanuatu"
|
631
|
+
us,b0006d2e,6,"Tuesday, October 25, 2011 19:34:12 UTC",32.0549,138.3387,5.3,10.20,249,"Izu Islands, Japan region"
|
632
|
+
uu,10251837,2,"Tuesday, October 25, 2011 18:37:07 UTC",39.4423,-111.2232,1.5,3.10, 7,"Utah"
|
633
|
+
ak,10342916,2,"Tuesday, October 25, 2011 18:31:33 UTC",64.6578,-149.3521,1.0,24.50, 9,"Central Alaska"
|
634
|
+
us,b0006czh,8,"Tuesday, October 25, 2011 18:20:24 UTC",34.8547,-112.5007,3.5,5.00,24,"Arizona"
|
635
|
+
ak,10342774,2,"Tuesday, October 25, 2011 18:12:31 UTC",63.5214,-151.1573,1.2,6.10,11,"Central Alaska"
|
636
|
+
ci,11025293,2,"Tuesday, October 25, 2011 18:12:11 UTC",35.4982,-118.4183,1.3,5.60,16,"Central California"
|
637
|
+
nc,71670271,3,"Tuesday, October 25, 2011 18:12:10 UTC",38.3833,-119.4623,1.7,0.30,24,"Central California"
|
638
|
+
ak,10342766,2,"Tuesday, October 25, 2011 18:08:31 UTC",60.7744,-150.7299,2.4,46.80,44,"Kenai Peninsula, Alaska"
|
639
|
+
uw,10251718,1,"Tuesday, October 25, 2011 17:18:59 UTC",45.8856,-122.2975,1.2,11.60,10,"Washington"
|
640
|
+
ci,11025285,2,"Tuesday, October 25, 2011 17:09:07 UTC",36.0710,-114.7040,2.0,2.50, 4,"Arizona"
|
641
|
+
us,b0006cxr,7,"Tuesday, October 25, 2011 17:08:52 UTC",37.0361,140.9804,5.2,16.00,220,"eastern Honshu, Japan"
|
642
|
+
ci,11025277,2,"Tuesday, October 25, 2011 17:02:08 UTC",35.7670,-117.5610,1.6,6.80,35,"Southern California"
|
643
|
+
nc,71670241,0,"Tuesday, October 25, 2011 16:43:23 UTC",38.8138,-122.7883,1.0,2.00,20,"Northern California"
|
644
|
+
ak,10343526,2,"Tuesday, October 25, 2011 16:15:40 UTC",52.3427,-171.8412,2.9,41.70, 6,"Fox Islands, Aleutian Islands, Alaska"
|
645
|
+
ci,11025261,2,"Tuesday, October 25, 2011 16:13:57 UTC",36.0150,-117.3998,1.2,7.90,16,"Central California"
|
646
|
+
hv,60278366,1,"Tuesday, October 25, 2011 15:36:28 UTC",19.5073,-155.1070,2.0,25.30,63,"Island of Hawaii, Hawaii"
|
647
|
+
us,b0006cui,7,"Tuesday, October 25, 2011 15:27:12 UTC",38.4055,43.6584,4.3,10.00,16,"eastern Turkey"
|
648
|
+
nm,102611b,A,"Tuesday, October 25, 2011 15:18:40 UTC",35.3653,-92.2745,2.0,5.70, 7,"Arkansas"
|
649
|
+
uu,10251517,2,"Tuesday, October 25, 2011 15:17:25 UTC",39.4225,-111.2335,1.6,3.40, 7,"Utah"
|
650
|
+
ak,10342600,2,"Tuesday, October 25, 2011 15:02:11 UTC",51.6029,-176.8916,2.9,43.30,15,"Andreanof Islands, Aleutian Islands, Alaska"
|
651
|
+
us,b0006cuc,4,"Tuesday, October 25, 2011 14:55:08 UTC",38.7500,43.5686,5.7,19.30,374,"eastern Turkey"
|
652
|
+
hv,60278341,1,"Tuesday, October 25, 2011 14:18:59 UTC",19.2140,-156.3923,2.4,13.30, 9,"Hawaii region, Hawaii"
|
653
|
+
ak,10342595,2,"Tuesday, October 25, 2011 14:11:29 UTC",57.7037,-154.5778,2.2,46.70,12,"Kodiak Island region, Alaska"
|
654
|
+
nc,71670151,0,"Tuesday, October 25, 2011 12:21:42 UTC",38.7825,-122.7562,1.4,2.40,23,"Northern California"
|
655
|
+
ci,11025245,2,"Tuesday, October 25, 2011 11:55:01 UTC",35.2095,-116.9147,1.1,6.20, 9,"Southern California"
|
656
|
+
pr,11298002,0,"Tuesday, October 25, 2011 11:53:40 UTC",18.6720,-66.0250,3.3,62.40,11,"Puerto Rico region"
|
657
|
+
ak,10342584,2,"Tuesday, October 25, 2011 11:38:56 UTC",52.7088,-169.4142,3.1,8.70, 9,"Fox Islands, Aleutian Islands, Alaska"
|
658
|
+
nc,71670136,1,"Tuesday, October 25, 2011 11:05:31 UTC",38.8155,-122.8275,1.1,3.00,28,"Northern California"
|
659
|
+
us,b0006cry,6,"Tuesday, October 25, 2011 11:03:57 UTC",38.5461,43.2126,4.2,28.40,12,"eastern Turkey"
|
660
|
+
us,b0006cs0,4,"Tuesday, October 25, 2011 11:01:10 UTC",-29.2261,61.2379,4.9,9.80,16,"Southwest Indian Ridge"
|
661
|
+
ci,11025229,2,"Tuesday, October 25, 2011 10:52:23 UTC",32.6605,-115.9565,1.0,5.80,16,"Southern California"
|
662
|
+
ak,10343522,2,"Tuesday, October 25, 2011 10:42:03 UTC",66.2383,-142.4487,2.3,24.00,12,"northern Alaska"
|
663
|
+
uu,10251032,2,"Tuesday, October 25, 2011 10:32:11 UTC",39.4365,-111.2347,1.4,3.90, 6,"Utah"
|
664
|
+
uw,10251026,1,"Tuesday, October 25, 2011 10:26:21 UTC",46.8673,-121.7476,2.2,1.60,29,"Mount Rainier area, Washington"
|
665
|
+
us,b0006crq,3,"Tuesday, October 25, 2011 10:23:20 UTC",0.9980,125.5129,4.6,81.50,17,"Molucca Sea"
|
666
|
+
ak,10342573,2,"Tuesday, October 25, 2011 10:13:22 UTC",61.7665,-150.4590,1.5,44.70,15,"Southern Alaska"
|
667
|
+
ak,10342568,2,"Tuesday, October 25, 2011 10:08:13 UTC",62.9461,-149.9153,2.4,84.30,39,"Central Alaska"
|
668
|
+
nn,00352604,8,"Tuesday, October 25, 2011 09:55:21 UTC",37.2090,-118.2468,1.2,6.90, 6,"Central California"
|
669
|
+
nc,71670116,3,"Tuesday, October 25, 2011 09:47:24 UTC",37.1968,-119.4842,2.1,45.90,11,"Central California"
|
670
|
+
uw,10250931,1,"Tuesday, October 25, 2011 09:31:04 UTC",42.2176,-124.4434,2.4,19.50, 8,"offshore Oregon"
|
671
|
+
ci,11025213,0,"Tuesday, October 25, 2011 09:29:54 UTC",36.1422,-117.8245,1.4,6.40,19,"Central California"
|
672
|
+
hv,60278306,1,"Tuesday, October 25, 2011 09:19:57 UTC",19.3378,-155.4383,2.0,9.60,40,"Island of Hawaii, Hawaii"
|
673
|
+
us,b0006cqy,4,"Tuesday, October 25, 2011 08:50:30 UTC",-0.3570,132.9045,4.5,41.10,21,"near the north coast of Papua, Indonesia"
|
674
|
+
nc,71670101,2,"Tuesday, October 25, 2011 08:45:10 UTC",39.8293,-120.7162,1.2,1.00,20,"Northern California"
|
675
|
+
ak,10342559,2,"Tuesday, October 25, 2011 08:31:02 UTC",60.4466,-151.6371,1.9,72.00,21,"Kenai Peninsula, Alaska"
|
676
|
+
ak,10343518,2,"Tuesday, October 25, 2011 08:27:35 UTC",63.1372,-147.7949,1.3,7.40,10,"Central Alaska"
|
677
|
+
ci,11025181,0,"Tuesday, October 25, 2011 08:07:21 UTC",33.2397,-116.0430,1.8,12.50,82,"Southern California"
|
678
|
+
uu,10250801,2,"Tuesday, October 25, 2011 08:01:37 UTC",39.4335,-111.2210,1.7,2.50, 8,"Utah"
|
679
|
+
ak,10342556,3,"Tuesday, October 25, 2011 07:55:29 UTC",52.1371,-171.7596,3.2,51.00,14,"Fox Islands, Aleutian Islands, Alaska"
|
680
|
+
pr,11298001,0,"Tuesday, October 25, 2011 06:54:16 UTC",18.2290,-66.7580,2.5,26.00, 9,"Puerto Rico"
|
681
|
+
us,b0006cqa,3,"Tuesday, October 25, 2011 06:36:19 UTC",38.5916,43.6033,4.2,10.60,22,"eastern Turkey"
|
682
|
+
ci,11025157,5,"Tuesday, October 25, 2011 06:27:30 UTC",33.7738,-115.8365,1.2,5.50,38,"Southern California"
|
683
|
+
ak,10342547,2,"Tuesday, October 25, 2011 06:10:12 UTC",51.9597,-171.6978,3.5,41.80,16,"Fox Islands, Aleutian Islands, Alaska"
|
684
|
+
us,b0006cq1,6,"Tuesday, October 25, 2011 06:07:31 UTC",-11.6725,-14.4384,5.2,10.00,47,"Ascension Island region"
|
685
|
+
ak,10342546,2,"Tuesday, October 25, 2011 05:42:04 UTC",62.0938,-150.5283,1.7,3.30,19,"Central Alaska"
|
686
|
+
se,102511a,A,"Tuesday, October 25, 2011 05:38:28 UTC",37.9596,-77.9445,2.0,6.30,12,"Virginia"
|
687
|
+
ci,11025141,4,"Tuesday, October 25, 2011 05:07:49 UTC",34.3075,-116.9738,1.4,4.50,60,"Southern California"
|
688
|
+
ak,10342541,2,"Tuesday, October 25, 2011 04:47:15 UTC",61.6932,-150.0172,1.4,31.60,12,"Southern Alaska"
|
689
|
+
uu,10250427,2,"Tuesday, October 25, 2011 04:27:02 UTC",39.3092,-111.1860,1.1,20.20, 6,"Utah"
|
690
|
+
nn,00352594,8,"Tuesday, October 25, 2011 04:03:28 UTC",38.1099,-115.7563,2.3,7.20, 6,"Nevada"
|
691
|
+
ci,11025117,2,"Tuesday, October 25, 2011 03:57:34 UTC",34.2430,-116.8835,1.1,9.80,48,"Southern California"
|
692
|
+
ak,10342534,2,"Tuesday, October 25, 2011 03:41:18 UTC",61.6933,-151.3273,1.7,75.30,13,"Southern Alaska"
|
693
|
+
us,b0006cnr,4,"Tuesday, October 25, 2011 03:24:52 UTC",52.1545,-171.8020,5.8,59.20,342,"Fox Islands, Aleutian Islands, Alaska"
|
694
|
+
nc,71670046,2,"Tuesday, October 25, 2011 03:23:32 UTC",37.0490,-121.8940,1.4,17.30,30,"Northern California"
|
695
|
+
ak,10342514,2,"Tuesday, October 25, 2011 03:03:48 UTC",61.1184,-146.4822,1.4,17.00,12,"Southern Alaska"
|
696
|
+
ci,11025085,2,"Tuesday, October 25, 2011 03:02:20 UTC",32.1715,-115.3635,2.0,13.30,16,"Baja California, Mexico"
|
697
|
+
ak,10342509,2,"Tuesday, October 25, 2011 02:49:17 UTC",63.1571,-151.3659,1.5,6.80,15,"Central Alaska"
|
698
|
+
ak,10342507,2,"Tuesday, October 25, 2011 02:47:59 UTC",66.3546,-142.2743,2.6,28.70,11,"northern Alaska"
|
699
|
+
pr,11298003,0,"Tuesday, October 25, 2011 02:38:49 UTC",19.2099,-67.3550,3.1,36.20, 5,"Puerto Rico region"
|
700
|
+
us,b0006cna,6,"Tuesday, October 25, 2011 02:32:22 UTC",70.8041,-5.3640,5.0,16.60,151,"Jan Mayen Island region"
|
701
|
+
us,b0006cn1,4,"Tuesday, October 25, 2011 02:23:29 UTC",-29.4079,-175.9643,4.8,39.40,24,"Kermadec Islands region"
|
702
|
+
uu,10250207,2,"Tuesday, October 25, 2011 02:07:17 UTC",39.4207,-111.2270,1.4,6.40, 7,"Utah"
|
703
|
+
ak,10342501,2,"Tuesday, October 25, 2011 01:27:13 UTC",60.1869,-152.4600,2.1,89.60,36,"Southern Alaska"
|
704
|
+
nm,102511c,A,"Tuesday, October 25, 2011 01:26:42 UTC",36.5503,-89.6152,1.4,6.60,10,"southeastern Missouri"
|
705
|
+
nc,71670016,0,"Tuesday, October 25, 2011 01:16:51 UTC",38.7487,-122.7028,1.0,2.20,11,"Northern California"
|
706
|
+
us,b0006cll,5,"Tuesday, October 25, 2011 00:32:17 UTC",38.2865,43.2180,4.3,10.00,41,"eastern Turkey"
|
707
|
+
nc,71669996,3,"Tuesday, October 25, 2011 00:29:05 UTC",37.9245,-121.6050,1.8,0.00,12,"Northern California"
|
708
|
+
pr,11298000,0,"Tuesday, October 25, 2011 00:19:37 UTC",18.8640,-67.6139,2.9,38.00, 8,"Puerto Rico region"
|
709
|
+
nm,102511b,A,"Tuesday, October 25, 2011 00:15:24 UTC",36.5473,-89.6163,1.3,7.40,10,"southeastern Missouri"
|
710
|
+
ci,11025069,2,"Tuesday, October 25, 2011 00:09:07 UTC",32.1560,-115.3733,2.5,10.00,17,"Baja California, Mexico"
|
711
|
+
ci,11025061,5,"Tuesday, October 25, 2011 00:06:45 UTC",32.2042,-115.3515,3.3,5.60,18,"Baja California, Mexico"
|
712
|
+
nc,71669981,2,"Monday, October 24, 2011 23:55:22 UTC",37.6980,-119.3398,1.6,15.20,17,"Central California"
|
713
|
+
us,b0006cl7,5,"Monday, October 24, 2011 23:55:15 UTC",38.4624,43.6197,4.7,7.60,55,"eastern Turkey"
|
714
|
+
ak,10343363,2,"Monday, October 24, 2011 23:48:24 UTC",61.5750,-149.6054,1.5,31.20,17,"Southern Alaska"
|
715
|
+
ci,11025029,0,"Monday, October 24, 2011 23:43:04 UTC",33.2405,-116.4198,1.4,6.30,54,"Southern California"
|
716
|
+
nc,71669971,2,"Monday, October 24, 2011 23:39:42 UTC",37.3978,-121.7505,1.5,6.70,50,"San Francisco Bay area, California"
|
717
|
+
ci,11025013,3,"Monday, October 24, 2011 23:22:37 UTC",32.9052,-116.2242,1.0,7.10,38,"Southern California"
|
718
|
+
ci,11025021,2,"Monday, October 24, 2011 23:20:13 UTC",35.0317,-117.6718,2.0,7.00,15,"Southern California"
|
719
|
+
nc,71669961,1,"Monday, October 24, 2011 23:14:04 UTC",38.8318,-122.8773,1.5,2.70,27,"Northern California"
|
720
|
+
ak,10341194,2,"Monday, October 24, 2011 23:07:41 UTC",60.8606,-152.4458,1.9,105.00,29,"Southern Alaska"
|
721
|
+
nc,71669956,2,"Monday, October 24, 2011 23:06:28 UTC",37.4027,-118.4213,1.5,10.40,15,"Central California"
|
722
|
+
nc,71669946,3,"Monday, October 24, 2011 22:55:10 UTC",38.8332,-122.8778,2.1,2.60,65,"Northern California"
|
723
|
+
ci,11025005,2,"Monday, October 24, 2011 22:54:29 UTC",32.2425,-115.3725,2.2,10.00,17,"Baja California, Mexico"
|
724
|
+
nc,71669941,2,"Monday, October 24, 2011 22:51:09 UTC",37.4005,-118.4223,1.5,11.10,18,"Central California"
|
725
|
+
ak,10341184,2,"Monday, October 24, 2011 22:49:11 UTC",63.5321,-147.9450,1.4,7.30,21,"Central Alaska"
|
726
|
+
us,b0006cjq,8,"Monday, October 24, 2011 22:41:52 UTC",-25.0323,-68.2350,4.6,96.40,30,"Salta, Argentina"
|
727
|
+
ci,11024973,0,"Monday, October 24, 2011 22:31:04 UTC",34.2352,-117.4060,1.4,7.80,40,"Greater Los Angeles area, California"
|
728
|
+
ci,11024965,0,"Monday, October 24, 2011 22:19:52 UTC",33.6640,-116.9305,1.2,16.00,58,"Southern California"
|
729
|
+
us,b0006ciy,8,"Monday, October 24, 2011 22:13:32 UTC",38.6147,43.1631,4.5,10.00,49,"eastern Turkey"
|
730
|
+
ci,11024949,0,"Monday, October 24, 2011 22:03:20 UTC",34.0722,-117.3965,1.3,0.10,16,"Greater Los Angeles area, California"
|
731
|
+
us,b0006cir,3,"Monday, October 24, 2011 21:37:31 UTC",38.5056,141.4028,4.8,72.70,35,"near the east coast of Honshu, Japan"
|
732
|
+
uu,10242134,2,"Monday, October 24, 2011 21:34:14 UTC",39.4358,-111.2335,1.6,2.90, 7,"Utah"
|
733
|
+
nc,71669901,1,"Monday, October 24, 2011 21:27:06 UTC",38.8398,-122.8305,1.6,2.60,25,"Northern California"
|
734
|
+
nc,71669896,2,"Monday, October 24, 2011 21:21:44 UTC",37.5405,-121.8445,1.0,6.00,23,"San Francisco Bay area, California"
|
735
|
+
ak,10341135,2,"Monday, October 24, 2011 21:15:53 UTC",53.3591,-167.2752,2.4,25.80,14,"Fox Islands, Aleutian Islands, Alaska"
|
736
|
+
ak,10341120,2,"Monday, October 24, 2011 20:50:52 UTC",63.1831,-150.8524,2.6,131.90,35,"Central Alaska"
|
737
|
+
uu,10242039,2,"Monday, October 24, 2011 20:39:28 UTC",39.4370,-111.2387,1.6,2.40, 8,"Utah"
|
738
|
+
nc,71669876,3,"Monday, October 24, 2011 20:38:40 UTC",36.6462,-121.1057,1.7,10.60,43,"Central California"
|
739
|
+
ak,10343358,2,"Monday, October 24, 2011 20:37:30 UTC",57.8090,-154.3327,2.1,41.40,11,"Kodiak Island region, Alaska"
|
740
|
+
nc,71669881,2,"Monday, October 24, 2011 20:35:38 UTC",37.2128,-119.7472,2.1,19.60, 8,"Central California"
|
741
|
+
ak,10341106,2,"Monday, October 24, 2011 19:48:25 UTC",60.6084,-151.8916,1.7,77.90,19,"Kenai Peninsula, Alaska"
|
742
|
+
nc,71669861,3,"Monday, October 24, 2011 19:44:32 UTC",37.4017,-118.4233,2.1,10.90,41,"Central California"
|
743
|
+
uu,10241927,2,"Monday, October 24, 2011 19:27:01 UTC",39.4377,-111.2365,1.7,2.70, 9,"Utah"
|
744
|
+
nn,00352489,8,"Monday, October 24, 2011 19:20:48 UTC",38.8838,-117.8697,1.7,10.30, 6,"Nevada"
|
745
|
+
nc,71669846,0,"Monday, October 24, 2011 19:05:17 UTC",38.8373,-122.8050,1.0,2.30,18,"Northern California"
|
746
|
+
uw,10241902,1,"Monday, October 24, 2011 19:02:28 UTC",47.4898,-121.7078,1.7,15.00,22,"Washington"
|
747
|
+
uu,10241859,2,"Monday, October 24, 2011 18:59:14 UTC",37.4330,-113.1252,1.5,1.80,10,"Utah"
|
748
|
+
ak,10340948,2,"Monday, October 24, 2011 18:48:30 UTC",63.9412,-148.7528,1.2,0.00,10,"Central Alaska"
|
749
|
+
ak,10340946,3,"Monday, October 24, 2011 18:41:52 UTC",58.2236,-155.1368,1.3,5.40,10,"Alaska Peninsula"
|
750
|
+
ci,11024853,0,"Monday, October 24, 2011 18:31:47 UTC",34.3597,-118.4617,1.5,7.40,17,"Greater Los Angeles area, California"
|
751
|
+
ci,11024845,0,"Monday, October 24, 2011 18:23:05 UTC",35.9658,-117.6592,1.5,4.90,21,"Central California"
|
752
|
+
ak,10340927,2,"Monday, October 24, 2011 18:08:04 UTC",59.9573,-152.1834,2.1,67.30,29,"Southern Alaska"
|
753
|
+
ak,10340928,2,"Monday, October 24, 2011 18:04:46 UTC",59.1845,-136.2810,1.5,5.60, 6,"Southeastern Alaska"
|
754
|
+
ci,11024773,0,"Monday, October 24, 2011 17:44:34 UTC",33.3837,-116.3538,1.1,10.50,31,"Southern California"
|
755
|
+
nc,71669821,5,"Monday, October 24, 2011 17:42:13 UTC",37.0980,-119.9562,2.2,15.50,12,"Central California"
|
756
|
+
ci,11024757,4,"Monday, October 24, 2011 17:35:53 UTC",32.2683,-115.3605,2.4,5.70,15,"Baja California, Mexico"
|
757
|
+
us,b0006c9x,4,"Monday, October 24, 2011 17:34:58 UTC",-31.7881,-179.1302,5.0,99.30,81,"Kermadec Islands region"
|
758
|
+
ci,11024749,2,"Monday, October 24, 2011 17:31:32 UTC",35.1485,-118.4165,1.5,7.00, 9,"Central California"
|
759
|
+
ak,10340895,2,"Monday, October 24, 2011 17:18:28 UTC",60.0084,-152.2750,1.8,84.80,21,"Southern Alaska"
|
760
|
+
pr,11297003,0,"Monday, October 24, 2011 17:07:20 UTC",18.6429,-64.6969,2.8,3.40, 7,"Virgin Islands region"
|
761
|
+
ci,11024717,6,"Monday, October 24, 2011 17:05:49 UTC",35.9658,-117.6620,1.2,2.70,37,"Central California"
|
762
|
+
ak,10340887,2,"Monday, October 24, 2011 16:56:41 UTC",59.5040,-152.0874,1.9,68.10,18,"Southern Alaska"
|
763
|
+
ak,10340879,2,"Monday, October 24, 2011 16:52:56 UTC",62.6715,-151.0653,2.0,93.40,35,"Central Alaska"
|
764
|
+
us,b0006c9e,5,"Monday, October 24, 2011 16:51:25 UTC",38.7112,43.7106,4.3,7.80,15,"eastern Turkey"
|
765
|
+
ci,11024693,2,"Monday, October 24, 2011 16:42:42 UTC",33.8062,-117.6168,1.5,5.20,40,"Greater Los Angeles area, California"
|
766
|
+
us,b0006c8d,4,"Monday, October 24, 2011 16:40:26 UTC",38.7226,43.6442,4.3,15.50,14,"eastern Turkey"
|
767
|
+
us,2011ska6,3,"Monday, October 24, 2011 16:26:37 UTC",-5.3045,146.8814,4.5,187.80, 9,"eastern New Guinea region, Papua New Guinea"
|
768
|
+
nc,71669786,3,"Monday, October 24, 2011 16:22:22 UTC",35.9413,-120.0010,1.5,11.10,24,"Central California"
|
769
|
+
nc,71669776,5,"Monday, October 24, 2011 16:05:35 UTC",38.8168,-122.7798,2.3,2.30,71,"Northern California"
|
770
|
+
nc,71669771,3,"Monday, October 24, 2011 15:58:43 UTC",40.0462,-122.0030,2.6,16.20,43,"Northern California"
|
771
|
+
ak,10340852,2,"Monday, October 24, 2011 15:39:50 UTC",61.5456,-146.4828,1.8,13.90,28,"Southern Alaska"
|
772
|
+
nc,71669761,2,"Monday, October 24, 2011 15:36:15 UTC",37.4035,-118.4212,1.1,10.60,13,"Central California"
|
773
|
+
ak,10340845,2,"Monday, October 24, 2011 15:31:17 UTC",62.6811,-149.5114,1.5,74.20,22,"Central Alaska"
|
774
|
+
us,b0006c69,8,"Monday, October 24, 2011 15:28:06 UTC",38.6174,43.1662,4.9,14.20,82,"eastern Turkey"
|
775
|
+
ak,10340842,2,"Monday, October 24, 2011 15:21:41 UTC",61.6919,-156.1321,2.1,20.00,17,"Southern Alaska"
|
776
|
+
nc,71669746,3,"Monday, October 24, 2011 15:18:52 UTC",40.5557,-124.2380,1.7,10.50,20,"Northern California"
|
777
|
+
ak,10343344,2,"Monday, October 24, 2011 15:07:37 UTC",63.9860,-150.2841,1.4,14.30,15,"Central Alaska"
|
778
|
+
ak,10340837,2,"Monday, October 24, 2011 14:57:12 UTC",59.9677,-140.7585,1.8,0.00,21,"Southeastern Alaska"
|
779
|
+
uu,10241441,2,"Monday, October 24, 2011 14:41:31 UTC",39.4405,-111.2172,1.3,7.00, 5,"Utah"
|
780
|
+
ak,10340836,3,"Monday, October 24, 2011 14:26:23 UTC",51.0120,-179.5008,2.9,46.90,12,"Andreanof Islands, Aleutian Islands, Alaska"
|
781
|
+
pr,11297004,0,"Monday, October 24, 2011 14:10:26 UTC",19.1809,-67.4039,2.8,64.70, 4,"Puerto Rico region"
|
782
|
+
ci,11024637,2,"Monday, October 24, 2011 13:25:43 UTC",35.2005,-120.2970,2.4,0.50,38,"Central California"
|
783
|
+
nc,71669691,1,"Monday, October 24, 2011 13:14:41 UTC",38.8098,-122.7912,1.6,3.00,26,"Northern California"
|
784
|
+
us,b0006c4j,5,"Monday, October 24, 2011 13:07:56 UTC",38.7892,43.6334,4.3,4.50,25,"eastern Turkey"
|
785
|
+
nc,71669676,0,"Monday, October 24, 2011 12:35:16 UTC",38.8278,-122.8543,1.0,2.20,20,"Northern California"
|
786
|
+
ak,10340823,2,"Monday, October 24, 2011 12:32:22 UTC",60.0796,-152.0679,1.6,82.30,15,"Southern Alaska"
|
787
|
+
ak,10343340,2,"Monday, October 24, 2011 12:21:10 UTC",60.1861,-152.9905,2.0,123.00,28,"Southern Alaska"
|
788
|
+
nc,71669666,2,"Monday, October 24, 2011 12:10:35 UTC",38.0960,-118.8845,1.5,6.60,20,"Central California"
|
789
|
+
ak,10340818,2,"Monday, October 24, 2011 11:54:42 UTC",60.2145,-141.0906,1.1,11.90,16,"Southern Alaska"
|
790
|
+
us,b0006c3y,7,"Monday, October 24, 2011 11:49:58 UTC",-29.7732,-176.2797,4.9,36.20,91,"Kermadec Islands region"
|
791
|
+
nn,00352395,8,"Monday, October 24, 2011 11:09:28 UTC",36.5583,-116.1525,1.3,4.60,17,"Nevada"
|
792
|
+
ak,10340812,2,"Monday, October 24, 2011 11:09:01 UTC",61.2643,-146.7792,1.5,20.30,24,"Southern Alaska"
|
793
|
+
nc,71669631,3,"Monday, October 24, 2011 11:05:22 UTC",37.3593,-120.0273,2.0,20.60,17,"Central California"
|
794
|
+
ak,10340811,2,"Monday, October 24, 2011 10:52:53 UTC",60.1433,-141.5929,1.0,0.00, 7,"Southern Alaska"
|
795
|
+
us,b0006c3j,5,"Monday, October 24, 2011 10:30:20 UTC",38.5798,43.5661,4.4,17.40,31,"eastern Turkey"
|
796
|
+
pr,11297002,0,"Monday, October 24, 2011 10:24:39 UTC",19.2420,-67.0350,3.1,45.40,11,"Puerto Rico region"
|
797
|
+
nc,71669616,0,"Monday, October 24, 2011 10:17:29 UTC",38.8010,-122.8115,1.2,3.20,19,"Northern California"
|
798
|
+
us,b0006c3e,8,"Monday, October 24, 2011 10:17:01 UTC",16.3329,-99.1655,4.1,14.10,66,"offshore Guerrero, Mexico"
|
799
|
+
hv,60278011,1,"Monday, October 24, 2011 09:41:20 UTC",19.8852,-155.5417,2.5,17.00,26,"Island of Hawaii, Hawaii"
|
800
|
+
nc,71669596,3,"Monday, October 24, 2011 09:30:52 UTC",37.5373,-118.8638,2.1,8.80,46,"Central California"
|
801
|
+
ak,10340798,2,"Monday, October 24, 2011 09:13:24 UTC",62.8384,-150.8743,1.7,92.50,22,"Central Alaska"
|
802
|
+
uw,10240906,1,"Monday, October 24, 2011 09:06:54 UTC",47.6101,-121.7996,1.7,9.10,22,"Washington"
|
803
|
+
us,b0006c2l,8,"Monday, October 24, 2011 08:49:20 UTC",38.5290,43.5479,4.8,6.70,50,"eastern Turkey"
|
804
|
+
ak,10340784,2,"Monday, October 24, 2011 08:46:22 UTC",60.1280,-153.5427,2.6,154.60,55,"Southern Alaska"
|
805
|
+
nc,71669581,0,"Monday, October 24, 2011 08:44:11 UTC",38.8095,-122.7995,1.1,2.30,24,"Northern California"
|
806
|
+
ci,11024589,2,"Monday, October 24, 2011 08:31:26 UTC",34.0768,-117.5232,1.2,15.80,41,"Greater Los Angeles area, California"
|
807
|
+
ak,10343329,2,"Monday, October 24, 2011 08:29:31 UTC",60.0718,-152.9517,1.8,111.10,20,"Southern Alaska"
|
808
|
+
us,b0006c2a,6,"Monday, October 24, 2011 08:28:27 UTC",38.6252,43.5135,4.7,6.30,39,"eastern Turkey"
|
809
|
+
ak,10343328,2,"Monday, October 24, 2011 08:27:56 UTC",58.2706,-155.7515,2.1,144.40,12,"Alaska Peninsula"
|
810
|
+
us,b0006c23,5,"Monday, October 24, 2011 08:12:13 UTC",38.6199,43.6664,4.5,10.00,34,"eastern Turkey"
|
811
|
+
nc,71669556,5,"Monday, October 24, 2011 08:11:41 UTC",38.1893,-119.1458,1.7,6.80,50,"Central California"
|
812
|
+
ci,11024565,2,"Monday, October 24, 2011 08:07:30 UTC",33.6348,-116.6942,1.1,14.80,58,"Southern California"
|
813
|
+
uw,10240757,1,"Monday, October 24, 2011 07:57:30 UTC",48.5096,-122.5650,1.5,18.40,18,"San Juan Islands region, Washington"
|
814
|
+
ci,11024533,2,"Monday, October 24, 2011 07:50:29 UTC",33.6405,-116.6918,1.1,15.00,50,"Southern California"
|
815
|
+
nc,71669541,2,"Monday, October 24, 2011 07:40:17 UTC",40.0583,-120.0678,1.3,10.50,15,"Northern California"
|
816
|
+
pr,11297001,0,"Monday, October 24, 2011 07:15:27 UTC",17.9969,-67.0429,2.2,14.50, 6,"Puerto Rico"
|
817
|
+
nc,71669526,3,"Monday, October 24, 2011 07:13:50 UTC",37.2742,-119.9303,1.1,0.00, 6,"Central California"
|
818
|
+
ak,10340759,2,"Monday, October 24, 2011 07:10:16 UTC",61.9443,-149.5767,1.5,35.00,26,"Southern Alaska"
|
819
|
+
nc,71669521,3,"Monday, October 24, 2011 07:09:55 UTC",39.2997,-122.8055,1.4,4.10,13,"Northern California"
|
820
|
+
us,b0006c1m,C,"Monday, October 24, 2011 06:44:57 UTC",38.7430,43.3450,4.4,5.40, 0,"eastern Turkey"
|
821
|
+
ak,10340751,2,"Monday, October 24, 2011 06:23:34 UTC",60.1665,-140.7891,1.3,5.70,18,"Southern Yukon Territory, Canada"
|