models/earthquake-props.model.ts
Earthquake properties from Feature.
Properties |
|
alert |
alert:
|
Type : string
|
Optional |
cdi |
cdi:
|
Type : number
|
Optional |
code |
code:
|
Type : string
|
Optional |
detail |
detail:
|
Type : string
|
Optional |
dmin |
dmin:
|
Type : number
|
Optional |
eventId |
eventId:
|
Type : string
|
Optional |
felt |
felt:
|
Type : number
|
Optional |
gap |
gap:
|
Type : number
|
Optional |
ids |
ids:
|
Type : string
|
Optional |
mag |
mag:
|
Type : number
|
Optional |
magType |
magType:
|
Type : string
|
Optional |
mmi |
mmi:
|
Type : number
|
Optional |
net |
net:
|
Type : string
|
Optional |
nst |
nst:
|
Type : number
|
Optional |
place |
place:
|
Type : string
|
Optional |
rms |
rms:
|
Type : number
|
Optional |
sig |
sig:
|
Type : number
|
Optional |
sources |
sources:
|
Type : string
|
Optional |
status |
status:
|
Type : string
|
Optional |
time |
time:
|
Type : number
|
Optional |
title |
title:
|
Type : string
|
Optional |
tsunami |
tsunami:
|
Type : number
|
Optional |
type |
type:
|
Type : string
|
Optional |
types |
types:
|
Type : string
|
Optional |
tz |
tz:
|
Type : number
|
Optional |
updated |
updated:
|
Type : number
|
Optional |
url |
url:
|
Type : string
|
Optional |
export interface EarthquakeFeatureProperties {
alert?: string;
cdi?: number;
code?: string;
detail?: string;
dmin?: number;
eventId?: string;
felt?: number;
gap?: number;
ids?: string;
mag?: number;
magType?: string;
mmi?: number;
net?: string;
nst?: number;
place?: string;
rms?: number;
sig?: number;
sources?: string;
status?: string;
time?: number;
title?: string;
tsunami?: number;
type?: string;
types?: string;
tz?: number;
updated?: number;
url?: string;
}