Hot-keys on this page

r m x p   toggle line displays

j k   next/prev highlighted chunk

0   (zero) top of page

1   (one) first highlighted chunk

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

37

38

39

40

41

42

43

44

45

46

47

48

49

50

51

52

53

54

55

56

57

58

59

60

61

62

63

64

65

66

67

68

69

70

71

72

73

74

75

76

77

78

79

80

81

82

83

84

85

86

87

88

89

90

91

92

93

94

95

96

97

98

99

100

101

102

103

104

105

106

107

108

109

110

111

112

113

114

115

116

117

118

119

120

121

122

123

124

125

126

127

128

129

130

131

132

133

134

135

136

137

138

139

140

141

142

143

144

145

146

147

148

149

150

151

152

153

154

155

156

157

158

159

160

161

162

163

164

165

166

167

168

169

170

171

172

173

174

175

176

177

178

179

180

181

182

183

184

185

186

187

188

189

190

191

192

193

194

195

196

197

198

199

200

201

202

203

204

205

206

207

208

209

210

211

212

213

214

215

216

217

218

219

220

221

222

223

224

225

226

227

228

229

230

231

232

233

234

235

236

237

238

239

240

241

242

243

244

245

246

247

248

249

250

251

252

253

254

255

256

257

258

259

260

261

262

263

264

265

266

267

268

269

270

271

272

273

274

275

276

277

278

279

280

281

282

283

284

285

286

287

288

289

290

291

292

293

294

295

296

297

298

299

300

301

302

303

304

305

306

307

308

309

310

311

312

313

314

315

316

317

318

319

320

321

322

323

324

325

326

327

328

329

330

331

332

333

334

335

336

337

338

339

340

341

342

343

344

345

346

347

348

349

350

351

352

353

354

355

356

357

358

359

360

361

362

363

364

365

366

367

368

369

370

371

372

373

374

375

376

377

378

379

380

381

382

383

384

385

386

387

388

389

390

391

392

393

394

395

396

397

398

399

400

401

402

403

404

405

406

407

408

409

410

411

412

413

414

415

416

417

418

419

420

421

422

423

424

425

426

427

428

429

430

431

432

433

434

435

436

437

438

439

440

441

442

443

444

445

446

447

448

449

450

451

452

453

454

455

456

457

458

459

460

461

462

463

464

465

466

467

468

469

470

471

472

473

474

475

476

477

478

479

480

481

482

483

484

485

486

487

488

489

490

491

492

493

494

495

496

497

498

499

500

501

502

503

504

505

506

507

508

509

510

511

512

513

514

515

516

517

518

519

520

521

522

523

524

525

526

527

528

529

530

531

532

533

534

535

536

537

538

539

540

541

542

543

544

545

546

547

548

549

550

551

552

553

554

555

556

557

558

559

560

561

562

563

564

565

566

567

568

569

570

571

572

573

574

575

576

577

578

579

580

581

582

583

584

585

586

587

588

589

590

591

592

593

594

595

596

597

598

599

600

601

602

603

604

605

606

607

608

609

610

611

612

613

614

615

616

617

618

619

620

621

622

623

624

625

626

627

628

629

630

631

632

633

634

635

636

637

638

639

640

641

642

643

644

645

646

647

648

649

650

651

652

653

654

655

656

657

658

659

660

661

662

663

664

665

666

667

668

669

670

671

672

673

674

675

676

677

678

679

680

681

682

683

684

685

686

687

688

689

690

691

692

693

694

695

696

697

698

699

700

701

702

703

704

705

706

707

708

709

710

711

712

713

714

715

716

717

718

719

720

721

722

723

724

725

726

727

728

729

730

731

732

733

734

735

736

737

738

739

740

741

742

743

744

745

746

747

748

749

750

751

752

753

754

755

756

757

758

759

760

761

762

763

764

765

766

767

768

769

770

771

772

773

774

775

776

777

778

779

780

781

782

783

784

785

786

787

788

789

790

791

792

793

794

795

796

797

798

799

800

801

802

803

804

805

806

807

808

809

810

811

812

813

814

815

816

817

818

819

820

821

822

823

824

825

826

827

828

829

830

831

832

833

834

835

836

837

838

839

840

841

842

843

844

845

846

847

848

849

850

851

852

853

854

855

856

857

858

859

860

861

862

863

864

865

866

867

868

869

870

871

872

873

874

875

876

877

878

879

880

881

882

883

884

885

886

887

888

889

890

891

892

893

894

895

896

897

898

899

900

901

902

903

904

905

906

907

908

909

910

911

912

913

914

915

916

917

918

919

920

921

922

923

924

925

926

927

928

929

930

931

932

933

934

935

936

937

938

939

940

941

942

943

944

945

946

947

948

949

950

951

952

953

954

955

956

957

958

959

960

961

962

963

964

965

966

967

968

969

970

971

972

973

974

975

976

977

978

979

980

981

982

983

984

985

986

987

988

989

990

991

992

993

994

995

996

997

998

999

1000

1001

1002

1003

1004

1005

1006

1007

1008

1009

1010

1011

1012

1013

1014

1015

1016

1017

1018

1019

1020

1021

1022

1023

1024

1025

1026

1027

1028

1029

1030

1031

1032

1033

1034

1035

1036

1037

1038

1039

1040

1041

1042

1043

1044

1045

1046

1047

1048

1049

1050

1051

1052

1053

1054

1055

1056

1057

1058

1059

1060

1061

1062

1063

1064

1065

1066

1067

1068

1069

1070

1071

1072

1073

1074

1075

1076

1077

1078

1079

1080

1081

1082

1083

1084

1085

1086

1087

1088

1089

1090

1091

1092

1093

1094

1095

1096

1097

1098

1099

1100

1101

1102

1103

1104

1105

1106

1107

1108

1109

1110

1111

1112

1113

1114

1115

1116

1117

1118

1119

1120

1121

1122

1123

1124

1125

1126

1127

1128

1129

1130

1131

1132

1133

1134

1135

1136

1137

1138

1139

1140

1141

1142

1143

1144

1145

1146

1147

1148

1149

1150

1151

1152

1153

1154

1155

1156

1157

1158

1159

1160

1161

1162

1163

1164

1165

1166

1167

1168

1169

1170

1171

1172

1173

1174

1175

1176

1177

1178

1179

1180

1181

1182

1183

1184

1185

1186

1187

1188

1189

1190

1191

1192

1193

1194

1195

1196

1197

1198

1199

1200

1201

1202

1203

1204

1205

1206

1207

1208

1209

1210

1211

1212

1213

1214

1215

1216

1217

1218

1219

1220

1221

1222

1223

1224

1225

1226

1227

1228

1229

1230

1231

1232

1233

1234

1235

1236

1237

1238

1239

1240

1241

1242

1243

1244

1245

1246

1247

1248

1249

1250

1251

1252

1253

1254

1255

1256

1257

1258

1259

1260

1261

1262

1263

1264

1265

1266

1267

1268

1269

1270

1271

1272

1273

1274

1275

1276

1277

1278

1279

1280

1281

1282

1283

1284

1285

1286

1287

1288

1289

1290

1291

1292

1293

1294

1295

1296

1297

1298

1299

1300

1301

1302

1303

1304

1305

1306

1307

1308

1309

1310

1311

1312

1313

1314

1315

1316

1317

1318

1319

1320

1321

1322

1323

1324

1325

1326

1327

1328

1329

1330

1331

1332

1333

1334

1335

1336

1337

1338

1339

1340

1341

1342

1343

1344

1345

1346

1347

1348

1349

1350

1351

1352

1353

1354

1355

1356

1357

1358

1359

1360

1361

1362

1363

1364

1365

1366

1367

1368

1369

1370

1371

1372

1373

1374

1375

1376

1377

1378

1379

1380

1381

1382

1383

1384

1385

1386

1387

1388

1389

1390

1391

1392

1393

1394

1395

1396

1397

1398

1399

1400

1401

1402

1403

1404

1405

1406

1407

1408

1409

1410

1411

1412

1413

1414

1415

1416

1417

1418

1419

# -*- coding: utf-8 -*- 

""" 

Module containing a UTC-based datetime class. 

 

:copyright: 

    The ObsPy Development Team (devs@obspy.org) 

:license: 

    GNU Lesser General Public License, Version 3 

    (http://www.gnu.org/copyleft/lesser.html) 

""" 

import datetime 

import time 

 

 

TIMESTAMP0 = datetime.datetime(1970, 1, 1) 

 

 

class UTCDateTime(object): 

    """ 

    A UTC-based datetime object. 

 

    This datetime class is based on the POSIX time, a system for describing 

    instants in time, defined as the number of seconds elapsed since midnight 

    Coordinated Universal Time (UTC) of Thursday, January 1, 1970. Using a 

    single float timestamp allows higher precision as the default Python 

    :class:`datetime.datetime` class. It features the full `ISO8601:2004`_ 

    specification and some additional string patterns during object 

    initialization. 

 

    :type args: int, float, string, :class:`datetime.datetime`, optional 

    :param args: The creation of a new `UTCDateTime` object depends from the 

        given input parameters. All possible options are summarized in the 

        `Examples`_ section below. 

    :type iso8601: boolean, optional 

    :param iso8601: Enforce `ISO8601:2004`_ detection. Works only with a string 

        as first input argument. 

    :type precision: int, optional 

    :param precision: Sets the precision used by the rich comparison operators. 

        Defaults to ``6`` digits after the decimal point. See also `Precision`_ 

        section below. 

 

    .. versionchanged:: 0.5.1 

        UTCDateTime is no longer based on Python's datetime.datetime class 

        instead uses timestamp as a single floating point value which allows 

        higher precision. 

 

    .. rubric:: Supported Operations 

 

    ``UTCDateTime = UTCDateTime + delta`` 

        Adds/removes ``delta`` seconds (given as int or float) to/from the 

        current ``UTCDateTime`` object and returns a new ``UTCDateTime`` 

        object. 

        See also: :meth:`~obspy.core.utcdatetime.UTCDateTime.__add__`. 

 

    ``delta = UTCDateTime - UTCDateTime`` 

        Calculates the time difference in seconds between two ``UTCDateTime`` 

        objects. The time difference is given as float data type and may also 

        contain a negative number. 

        See also: :meth:`~obspy.core.utcdatetime.UTCDateTime.__sub__`. 

 

    .. rubric:: _`Examples` 

 

    (1) Using a timestamp. 

 

        >>> UTCDateTime(0) 

        UTCDateTime(1970, 1, 1, 0, 0) 

 

        >>> UTCDateTime(1240561632) 

        UTCDateTime(2009, 4, 24, 8, 27, 12) 

 

        >>> UTCDateTime(1240561632.5) 

        UTCDateTime(2009, 4, 24, 8, 27, 12, 500000) 

 

    (2) Using a `ISO8601:2004`_ string. The detection may be enforced by 

        setting the ``iso8601`` parameter to True. 

 

        * Calendar date representation. 

 

            >>> UTCDateTime("2009-12-31T12:23:34.5") 

            UTCDateTime(2009, 12, 31, 12, 23, 34, 500000) 

 

            >>> UTCDateTime("20091231T122334.5")           # compact 

            UTCDateTime(2009, 12, 31, 12, 23, 34, 500000) 

 

            >>> UTCDateTime("2009-12-31T12:23:34.5Z")      # w/o time zone 

            UTCDateTime(2009, 12, 31, 12, 23, 34, 500000) 

 

            >>> UTCDateTime("2009-12-31T12:23:34+01:15")   # w/ time zone 

            UTCDateTime(2009, 12, 31, 11, 8, 34) 

 

        * Ordinal date representation. 

 

            >>> UTCDateTime("2009-365T12:23:34.5") 

            UTCDateTime(2009, 12, 31, 12, 23, 34, 500000) 

 

            >>> UTCDateTime("2009365T122334.5")            # compact 

            UTCDateTime(2009, 12, 31, 12, 23, 34, 500000) 

 

            >>> UTCDateTime("2009001", iso8601=True)       # enforce ISO8601 

            UTCDateTime(2009, 1, 1, 0, 0) 

 

        * Week date representation. 

 

            >>> UTCDateTime("2009-W53-7T12:23:34.5") 

            UTCDateTime(2010, 1, 3, 12, 23, 34, 500000) 

 

            >>> UTCDateTime("2009W537T122334.5")           # compact 

            UTCDateTime(2010, 1, 3, 12, 23, 34, 500000) 

 

            >>> UTCDateTime("2009W011", iso8601=True)      # enforce ISO8601 

            UTCDateTime(2008, 12, 29, 0, 0) 

 

    (3) Using not ISO8601 compatible strings. 

 

        >>> UTCDateTime("1970-01-01 12:23:34") 

        UTCDateTime(1970, 1, 1, 12, 23, 34) 

 

        >>> UTCDateTime("1970,01,01,12:23:34") 

        UTCDateTime(1970, 1, 1, 12, 23, 34) 

 

        >>> UTCDateTime("1970,001,12:23:34") 

        UTCDateTime(1970, 1, 1, 12, 23, 34) 

 

        >>> UTCDateTime("20090701121212") 

        UTCDateTime(2009, 7, 1, 12, 12, 12) 

 

        >>> UTCDateTime("19700101") 

        UTCDateTime(1970, 1, 1, 0, 0) 

 

        >>> UTCDateTime("20110818_03:00:00") 

        UTCDateTime(2011, 8, 18, 3, 0) 

 

    (4) Using multiple arguments in the following order: `year, month, 

        day[, hour[, minute[, second[, microsecond]]]`. The year, month and day 

        arguments are required. 

 

        >>> UTCDateTime(1970, 1, 1) 

        UTCDateTime(1970, 1, 1, 0, 0) 

 

        >>> UTCDateTime(1970, 1, 1, 12, 23, 34, 123456) 

        UTCDateTime(1970, 1, 1, 12, 23, 34, 123456) 

 

    (5) Using the following keyword arguments: `year, month, day, julday, hour, 

        minute, second, microsecond`. Either the combination of year, month and 

        day, or year and julday are required. 

 

        >>> UTCDateTime(year=1970, month=1, day=1, minute=15, microsecond=20) 

        UTCDateTime(1970, 1, 1, 0, 15, 0, 20) 

 

        >>> UTCDateTime(year=2009, julday=234, hour=14, minute=13) 

        UTCDateTime(2009, 8, 22, 14, 13) 

 

    (6) Using a Python :class:`datetime.datetime` object. 

 

        >>> dt = datetime.datetime(2009, 5, 24, 8, 28, 12, 5001) 

        >>> UTCDateTime(dt) 

        UTCDateTime(2009, 5, 24, 8, 28, 12, 5001) 

 

    .. rubric:: _`Precision` 

 

    The :class:`UTCDateTime` class works with a default precision of ``6`` 

    digits which effects the comparison of date/time values, e.g.: 

 

    >>> dt = UTCDateTime(0) 

    >>> dt2 = UTCDateTime(0.00001) 

    >>> dt3 = UTCDateTime(0.0000001) 

    >>> print(dt.precision) 

    6 

    >>> dt == dt2  # 5th digit is within current precision 

    False 

    >>> dt == dt3  # 7th digit will be neglected 

    True 

 

    You may change that behaviour either by, 

 

    (1) using the ``precision`` keyword during object initialization: 

 

        >>> dt = UTCDateTime(0, precision=4) 

        >>> dt2 = UTCDateTime(0.00001, precision=4) 

        >>> print(dt.precision) 

        4 

        >>> dt == dt2 

        True 

 

    (2) or set it the class attribute ``DEFAULT_PRECISION`` for all new 

        :class:`UTCDateTime` objects using a monkey patch: 

 

        >>> UTCDateTime.DEFAULT_PRECISION = 4 

        >>> dt = UTCDateTime(0) 

        >>> dt2 = UTCDateTime(0.00001) 

        >>> print(dt.precision) 

        4 

        >>> dt == dt2 

        True 

 

        Don't forget to reset ``DEFAULT_PRECISION`` if not needed anymore! 

 

        >>> UTCDateTime.DEFAULT_PRECISION = 6 

 

    .. _ISO8601:2004: http://en.wikipedia.org/wiki/ISO_8601 

    """ 

    timestamp = 0.0 

    DEFAULT_PRECISION = 6 

 

    def __init__(self, *args, **kwargs): 

        """ 

        Creates a new UTCDateTime object. 

        """ 

        # set default precision 

        self.precision = kwargs.pop('precision', self.DEFAULT_PRECISION) 

        # iso8601 flag 

        iso8601 = kwargs.pop('iso8601', False) == True 

        # check parameter 

        if len(args) == 0 and len(kwargs) == 0: 

            # use current time if no time is given 

            self.timestamp = time.time() 

            return 

        elif len(args) == 1 and len(kwargs) == 0: 

            value = args[0] 

            # check types 

            try: 

                # got a timestamp 

                self.timestamp = value.__float__() 

                return 

            except: 

                pass 

            if isinstance(value, datetime.datetime): 

                # got a Python datetime.datetime object 

                self._fromDateTime(value) 

                return 

            elif isinstance(value, datetime.date): 

                # got a Python datetime.date object 

                dt = datetime.datetime(value.year, value.month, value.day) 

                self._fromDateTime(dt) 

                return 

            elif isinstance(value, basestring): 

                # got a string instance 

                value = value.strip() 

                # check for ISO8601 date string 

                if value.count("T") == 1 or iso8601: 

                    try: 

                        self.timestamp = self._parseISO8601(value).timestamp 

                        return 

                    except: 

                        if iso8601: 

                            raise 

                # try to apply some standard patterns 

                value = value.replace('T', ' ') 

                value = value.replace('_', ' ') 

                value = value.replace('-', ' ') 

                value = value.replace(':', ' ') 

                value = value.replace(',', ' ') 

                value = value.replace('Z', ' ') 

                value = value.replace('W', ' ') 

                # check for ordinal date (julian date) 

                parts = value.split(' ') 

                # check for patterns 

                if len(parts) == 1 and len(value) == 7 and value.isdigit(): 

                    # looks like an compact ordinal date string 

                    pattern = "%Y%j" 

                elif len(parts) > 1 and len(parts[1]) == 3 and \ 

                   parts[1].isdigit(): 

                    # looks like an ordinal date string 

                    value = ''.join(parts) 

                    if len(parts) > 2: 

                        pattern = "%Y%j%H%M%S" 

                    else: 

                        pattern = "%Y%j" 

                else: 

                    # some parts should have 2 digits 

                    for i in range(1, min(len(parts), 6)): 

                        if len(parts[i]) == 1: 

                            parts[i] = '0' + parts[i] 

                    # standard date string 

                    value = ''.join(parts) 

                    if len(value) > 8: 

                        pattern = "%Y%m%d%H%M%S" 

                    else: 

                        pattern = "%Y%m%d" 

                ms = 0 

                if '.' in value: 

                    parts = value.split('.') 

                    value = parts[0].strip() 

                    try: 

                        ms = float('.' + parts[1].strip()) 

                    except: 

                        pass 

                # The module copy.deepcopy passes a (binary) string to 

                # UTCDateTime which contains the class specifications. If 

                # argument is not a digit by now, it must be a binary string 

                # and we pass it to datetime.datetime, 

                if not ''.join(parts).isdigit(): 

                    dt = datetime.datetime(*args, **kwargs) 

                    self._fromDateTime(dt) 

                    return 

                dt = datetime.datetime.strptime(value, pattern) 

                self._fromDateTime(dt, ms) 

                return 

        # check for ordinal/julian date kwargs 

        if 'julday' in kwargs: 

            if 'year' in kwargs: 

                # year given as kwargs 

                year = kwargs['year'] 

            elif len(args) == 1: 

                # year is first (and only) argument 

                year = args[0] 

            try: 

                temp = "%4d%03d" % (int(year), 

                                    int(kwargs['julday'])) 

                dt = datetime.datetime.strptime(temp, '%Y%j') 

            except: 

                pass 

            else: 

                kwargs['month'] = dt.month 

                kwargs['day'] = dt.day 

                kwargs.pop('julday') 

 

        # check if seconds are given as float value 

        if len(args) == 6 and isinstance(args[5], float): 

            kwargs['microsecond'] = int(args[5] % 1 * 1000000) 

            kwargs['second'] = int(args[5]) 

            args = args[0:5] 

        dt = datetime.datetime(*args, **kwargs) 

        self._fromDateTime(dt) 

 

    def _set(self, **kwargs): 

        """ 

        Sets current timestamp using kwargs. 

        """ 

        year = kwargs.get('year', self.year) 

        month = kwargs.get('month', self.month) 

        day = kwargs.get('day', self.day) 

        hour = kwargs.get('hour', self.hour) 

        minute = kwargs.get('minute', self.minute) 

        second = kwargs.get('second', self.second) 

        microsecond = kwargs.get('microsecond', self.microsecond) 

        julday = kwargs.get('julday', None) 

        if julday: 

            self.timestamp = UTCDateTime(year=year, julday=julday, hour=hour, 

                                         minute=minute, second=second, 

                                         microsecond=microsecond).timestamp 

        else: 

            self.timestamp = UTCDateTime(year, month, day, hour, minute, 

                                         second, microsecond).timestamp 

 

    def _fromDateTime(self, dt, ms=0): 

        """ 

        Use Python datetime object to set current time. 

 

        :type dt: :class:`datetime.datetime` 

        :param dt: Python datetime object. 

        :type ms: float 

        :param ms: extra seconds to add to current UTCDateTime object. 

        """ 

        # see datetime.timedelta.total_seconds 

        td = (dt - TIMESTAMP0) 

        self.timestamp = (td.microseconds + (td.seconds + td.days * 86400) * \ 

                          1000000) / 1000000.0 + ms 

 

    @staticmethod 

    def _parseISO8601(value): 

        """ 

        Parses an ISO8601:2004 date time string. 

        """ 

        # remove trailing 'Z' 

        value = value.replace('Z', '') 

        # split between date and time 

        try: 

            (date, time) = value.split("T") 

        except: 

            date = value 

            time = "" 

        # remove all hyphens in date 

        date = date.replace('-', '') 

        # remove colons in time 

        time = time.replace(':', '') 

        # guess date pattern 

        length_date = len(date) 

        if date.count('W') == 1 and length_date == 8: 

            # we got a week date: YYYYWwwD 

            # remove week indicator 'W' 

            date = date.replace('W', '') 

            date_pattern = "%Y%W%w" 

            year = int(date[0:4]) 

            # [Www] is the week number prefixed by the letter 'W', from W01 

            # through W53. 

            # strpftime %W == Week number of the year (Monday as the first day 

            # of the week) as a decimal number [00,53]. All days in a new year 

            # preceding the first Monday are considered to be in week 0. 

            week = int(date[4:6]) - 1 

            # [D] is the weekday number, from 1 through 7, beginning with 

            # Monday and ending with Sunday. 

            # strpftime %w == Weekday as a decimal number [0(Sunday),6] 

            day = int(date[6]) 

            if day == 7: 

                day = 0 

            date = "%04d%02d%1d" % (year, week, day) 

        elif length_date == 7 and date.isdigit() and value.count('-') != 2: 

            # we got a ordinal date: YYYYDDD 

            date_pattern = "%Y%j" 

        elif length_date == 8 and date.isdigit(): 

            # we got a calendar date: YYYYMMDD 

            date_pattern = "%Y%m%d" 

        else: 

            raise ValueError("Wrong or incomplete ISO8601:2004 date format") 

        # check for time zone information 

        # note that the zone designator is the actual offset from UTC and 

        # does not include any information on daylight saving time 

        delta = 0 

        if time.count('+') == 1: 

            (time, tz) = time.split('+') 

            delta = -1 * (int(tz[0:2]) * 60 * 60 + int(tz[2:]) * 60) 

        elif time.count('-') == 1: 

            (time, tz) = time.split('-') 

            delta = int(tz[0:2]) * 60 * 60 + int(tz[2:]) * 60 

        # split microseconds 

        ms = 0 

        if '.' in time: 

            (time, ms) = time.split(".") 

            ms = float('0.' + ms.strip()) 

        # guess time pattern 

        length_time = len(time) 

        if length_time == 6 and time.isdigit(): 

            time_pattern = "%H%M%S" 

        elif length_time == 4 and time.isdigit(): 

            time_pattern = "%H%M" 

        elif length_time == 2 and time.isdigit(): 

            time_pattern = "%H" 

        elif length_time == 0: 

            time_pattern = "" 

        else: 

            raise ValueError("Wrong or incomplete ISO8601:2004 time format") 

        # parse patterns 

        dt = datetime.datetime.strptime(date + 'T' + time, 

                                        date_pattern + 'T' + time_pattern) 

        # add microseconds and eventually correct time zone 

        return UTCDateTime(dt) + (delta + ms) 

 

    def _getTimeStamp(self): 

        """ 

        Returns UTC timestamp in seconds. 

 

        :rtype: float 

        :return: Timestamp in seconds. 

 

        .. rubric:: Example 

 

        >>> dt = UTCDateTime(2008, 10, 1, 12, 30, 35, 123456) 

        >>> dt.timestamp 

        1222864235.123456 

        """ 

        return self.timestamp 

 

    def __float__(self): 

        """ 

        Returns UTC timestamp in seconds. 

 

        :rtype: float 

        :return: Timestamp in seconds. 

 

        .. rubric:: Example 

 

        >>> dt = UTCDateTime(2008, 10, 1, 12, 30, 35, 123456) 

        >>> float(dt) 

        1222864235.123456 

        """ 

        return self.timestamp 

 

    def _getDateTime(self): 

        """ 

        Returns a Python datetime object. 

 

        :rtype: :class:`datetime.datetime` 

        :return: Python datetime object. 

 

        .. rubric:: Example 

 

        >>> dt = UTCDateTime(2008, 10, 1, 12, 30, 35, 45020) 

        >>> dt.datetime 

        datetime.datetime(2008, 10, 1, 12, 30, 35, 45020) 

        """ 

        return datetime.datetime.utcfromtimestamp(self.timestamp) 

 

    datetime = property(_getDateTime) 

 

    def _getDate(self): 

        """ 

        Returns a Python date object.. 

 

        :rtype: :class:`datetime.date` 

        :return: Python date object. 

 

        .. rubric:: Example 

 

        >>> dt = UTCDateTime(2008, 10, 1, 12, 30, 35, 45020) 

        >>> dt.date 

        datetime.date(2008, 10, 1) 

        """ 

        return self._getDateTime().date() 

 

    date = property(_getDate) 

 

    def _getYear(self): 

        """ 

        Returns year of the current UTCDateTime object. 

 

        :rtype: int 

        :return: Returns year as an integer. 

 

        .. rubric:: Example 

 

        >>> dt = UTCDateTime(2012, 2, 11) 

        >>> dt.year 

        2012 

        """ 

        return self._getDateTime().year 

 

    def _setYear(self, value): 

        """ 

        Sets year of current UTCDateTime object. 

 

        :param value: Year 

        :type value: int 

 

        .. rubric:: Example 

 

        >>> dt = UTCDateTime(2012, 2, 11, 10, 11, 12) 

        >>> dt.year = 2010 

        >>> dt 

        UTCDateTime(2010, 2, 11, 10, 11, 12) 

        """ 

        self._set(year=value) 

 

    year = property(_getYear, _setYear) 

 

    def _getMonth(self): 

        """ 

        Returns month as an integer (January is 1, December is 12). 

 

        :rtype: int 

        :return: Returns month as an integer, where January is 1 and December 

            is 12. 

 

        .. rubric:: Example 

 

        >>> dt = UTCDateTime(2012, 2, 11) 

        >>> dt.month 

        2 

        """ 

        return self._getDateTime().month 

 

    def _setMonth(self, value): 

        """ 

        Sets month of current UTCDateTime object. 

 

        :param value: Month 

        :type value: int 

 

        .. rubric:: Example 

 

        >>> dt = UTCDateTime(2012, 2, 11, 10, 11, 12) 

        >>> dt.month = 10 

        >>> dt 

        UTCDateTime(2012, 10, 11, 10, 11, 12) 

        """ 

        self._set(month=value) 

 

    month = property(_getMonth, _setMonth) 

 

    def _getDay(self): 

        """ 

        Returns day as an integer. 

 

        :rtype: int 

        :return: Returns day as an integer. 

 

        .. rubric:: Example 

 

        >>> dt = UTCDateTime(2012, 2, 11) 

        >>> dt.day 

        11 

        """ 

        return self._getDateTime().day 

 

    def _setDay(self, value): 

        """ 

        Sets day of current UTCDateTime object. 

 

        :param value: Day 

        :type value: int 

 

        .. rubric:: Example 

 

        >>> dt = UTCDateTime(2012, 2, 11, 10, 11, 12) 

        >>> dt.day = 20 

        >>> dt 

        UTCDateTime(2012, 2, 20, 10, 11, 12) 

        """ 

        self._set(day=value) 

 

    day = property(_getDay, _setDay) 

 

    def _getWeekday(self): 

        """ 

        Return the day of the week as an integer (Monday is 0, Sunday is 6). 

 

        :rtype: int 

        :return: Returns day of the week as an integer, where Monday is 0 and 

            Sunday is 6. 

 

        .. rubric:: Example 

 

        >>> dt = UTCDateTime(2008, 10, 1, 12, 30, 35, 45020) 

        >>> dt.weekday 

        2 

        """ 

        return self._getDateTime().weekday() 

 

    weekday = property(_getWeekday) 

 

    def _getTime(self): 

        """ 

        Returns a Python time object. 

 

        :rtype: :class:`datetime.time` 

        :return: Python time object. 

 

        .. rubric:: Example 

 

        >>> dt = UTCDateTime(2008, 10, 1, 12, 30, 35, 45020) 

        >>> dt.time 

        datetime.time(12, 30, 35, 45020) 

        """ 

        return self._getDateTime().time() 

 

    time = property(_getTime) 

 

    def _getHour(self): 

        """ 

        Returns hour as an integer. 

 

        :rtype: int 

        :return: Returns hour as an integer. 

 

        .. rubric:: Example 

 

        >>> dt = UTCDateTime(2012, 2, 11, 10, 11, 12) 

        >>> dt.hour 

        10 

        """ 

        return self._getDateTime().hour 

 

    def _setHour(self, value): 

        """ 

        Sets hours of current UTCDateTime object. 

 

        :param value: Hours 

        :type value: int 

 

        .. rubric:: Example 

 

        >>> dt = UTCDateTime(2012, 2, 11, 10, 11, 12) 

        >>> dt.hour = 20 

        >>> dt 

        UTCDateTime(2012, 2, 11, 20, 11, 12) 

        """ 

        self._set(hour=value) 

 

    hour = property(_getHour, _setHour) 

 

    def _getMinute(self): 

        """ 

        Returns minute as an integer. 

 

        :rtype: int 

        :return: Returns minute as an integer. 

 

        .. rubric:: Example 

 

        >>> dt = UTCDateTime(2012, 2, 11, 10, 11, 12) 

        >>> dt.minute 

        11 

        """ 

        return self._getDateTime().minute 

 

    def _setMinute(self, value): 

        """ 

        Sets minutes of current UTCDateTime object. 

 

        :param value: Minutes 

        :type value: int 

 

        .. rubric:: Example 

 

        >>> dt = UTCDateTime(2012, 2, 11, 10, 11, 12) 

        >>> dt.minute = 20 

        >>> dt 

        UTCDateTime(2012, 2, 11, 10, 20, 12) 

        """ 

        self._set(minute=value) 

 

    minute = property(_getMinute, _setMinute) 

 

    def _getSecond(self): 

        """ 

        Returns seconds as an integer. 

 

        :rtype: int 

        :return: Returns seconds as an integer. 

 

        .. rubric:: Example 

 

        >>> dt = UTCDateTime(2012, 2, 11, 10, 11, 12) 

        >>> dt.second 

        12 

        """ 

        return self._getDateTime().second 

 

    def _setSecond(self, value): 

        """ 

        Sets seconds of current UTCDateTime object. 

 

        :param value: Seconds 

        :type value: int 

 

        .. rubric:: Example 

 

        >>> dt = UTCDateTime(2012, 2, 11, 10, 11, 12) 

        >>> dt.second = 20 

        >>> dt 

        UTCDateTime(2012, 2, 11, 10, 11, 20) 

        """ 

        self.timestamp += value - self.second 

 

    second = property(_getSecond, _setSecond) 

 

    def _getMicrosecond(self): 

        """ 

        Returns microseconds as an integer. 

 

        :rtype: int 

        :return: Returns microseconds as an integer. 

 

        .. rubric:: Example 

 

        >>> dt = UTCDateTime(2012, 2, 11, 10, 11, 12, 345234) 

        >>> dt.microsecond 

        345234 

        """ 

        return self._getDateTime().microsecond 

 

    def _setMicrosecond(self, value): 

        """ 

        Sets microseconds of current UTCDateTime object. 

 

        :param value: Microseconds 

        :type value: int 

 

        .. rubric:: Example 

 

        >>> dt = UTCDateTime(2012, 2, 11, 10, 11, 12, 345234) 

        >>> dt.microsecond = 999123 

        >>> dt 

        UTCDateTime(2012, 2, 11, 10, 11, 12, 999123) 

        """ 

        self._set(microsecond=value) 

 

    microsecond = property(_getMicrosecond, _setMicrosecond) 

 

    def _getJulday(self): 

        """ 

        Returns Julian day as an integer. 

 

        :rtype: int 

        :return: Julian day as an integer. 

 

        .. rubric:: Example 

 

        >>> dt = UTCDateTime(2008, 10, 1, 12, 30, 35, 45020) 

        >>> dt.julday 

        275 

        """ 

        return self.utctimetuple().tm_yday 

 

    def _setJulday(self, value): 

        """ 

        Sets Julian day of current UTCDateTime object. 

 

        :param value: Julian day 

        :type value: int 

 

        .. rubric:: Example 

 

        >>> dt = UTCDateTime(2008, 12, 5, 12, 30, 35, 45020) 

        >>> dt.julday = 275 

        >>> dt 

        UTCDateTime(2008, 10, 1, 12, 30, 35, 45020) 

        """ 

        self._set(julday=value) 

 

    julday = property(_getJulday, _setJulday) 

 

    def timetuple(self): 

        """ 

        Return a time.struct_time such as returned by time.localtime(). 

 

        :rtype: time.struct_time 

        """ 

        return self._getDateTime().timetuple() 

 

    def utctimetuple(self): 

        """ 

        Return a time.struct_time of current UTCDateTime object. 

 

        :rtype: time.struct_time 

        """ 

        return self._getDateTime().utctimetuple() 

 

    def __add__(self, value): 

        """ 

        Adds seconds and microseconds to current UTCDateTime object. 

 

        :type value: int, float 

        :param value: Seconds to add 

        :rtype: :class:`~obspy.core.utcdatetime.UTCDateTime` 

        :return: New UTCDateTime object. 

 

        .. rubric:: Example 

 

        >>> dt = UTCDateTime(1970, 1, 1, 0, 0) 

        >>> dt + 2 

        UTCDateTime(1970, 1, 1, 0, 0, 2) 

 

        >>> UTCDateTime(1970, 1, 1, 0, 0) + 1.123456 

        UTCDateTime(1970, 1, 1, 0, 0, 1, 123456) 

        """ 

        if isinstance(value, datetime.timedelta): 

            # see datetime.timedelta.total_seconds 

            value = (value.microseconds + (value.seconds + value.days * \ 

                86400) * 1000000) / 1000000.0 

        return UTCDateTime(self.timestamp + value) 

 

    def __sub__(self, value): 

        """ 

        Subtracts seconds and microseconds from current UTCDateTime object. 

 

        :type value: int, float or :class:`~obspy.core.utcdatetime.UTCDateTime` 

        :param value: Seconds or UTCDateTime object to subtract. Subtracting an 

            UTCDateTime objects results into a relative time span in seconds. 

        :rtype: :class:`~obspy.core.utcdatetime.UTCDateTime` or float 

        :return: New UTCDateTime object or relative time span in seconds. 

 

        .. rubric:: Example 

 

        >>> dt = UTCDateTime(1970, 1, 2, 0, 0) 

        >>> dt - 2 

        UTCDateTime(1970, 1, 1, 23, 59, 58) 

 

        >>> UTCDateTime(1970, 1, 2, 0, 0) - 1.123456 

        UTCDateTime(1970, 1, 1, 23, 59, 58, 876544) 

 

        >>> UTCDateTime(1970, 1, 2, 0, 0) - UTCDateTime(1970, 1, 1, 0, 0) 

        86400.0 

        """ 

        if isinstance(value, UTCDateTime): 

            return round(self.timestamp - value.timestamp, self.__precision) 

        elif isinstance(value, datetime.timedelta): 

            # see datetime.timedelta.total_seconds 

            value = (value.microseconds + (value.seconds + value.days * \ 

                86400) * 1000000) / 1000000.0 

        return UTCDateTime(self.timestamp - value) 

 

    def __str__(self): 

        """ 

        Returns ISO8601 string representation from current UTCDateTime object. 

 

        :return: string 

 

        .. rubric:: Example 

 

        >>> dt = UTCDateTime(2008, 10, 1, 12, 30, 35, 45020) 

        >>> str(dt) 

        '2008-10-01T12:30:35.045020Z' 

        """ 

        return "%s%sZ" % (self.strftime('%Y-%m-%dT%H:%M:%S'), 

                          (self.__ms_pattern % (abs(self.timestamp % 1)))[1:]) 

 

    def __unicode__(self): 

        """ 

        Returns ISO8601 unicode representation from current UTCDateTime object. 

 

        :return: unicode 

 

        .. rubric:: Example 

 

        >>> dt = UTCDateTime(2008, 10, 1, 12, 30, 35, 45020) 

        >>> unicode(dt) 

        u'2008-10-01T12:30:35.045020Z' 

        """ 

        return unicode(self.__str__()) 

 

    def __eq__(self, other): 

        """ 

        Rich comparison operator '=='. 

 

        .. rubric: Example 

 

        Comparing two UTCDateTime object will always compare timestamps rounded 

        to a precision of 6 digits by default. 

 

        >>> t1 = UTCDateTime(123.000000012) 

        >>> t2 = UTCDateTime(123.000000099) 

        >>> t1 == t2 

        True 

 

        But the actual timestamp differ 

 

        >>> t1.timestamp == t2.timestamp 

        False 

 

        Resetting the precision changes the behaviour of the operator 

 

        >>> t1.precision = 11 

        >>> t1 == t2 

        False 

        """ 

        try: 

            return round(self.timestamp - float(other), self.__precision) == 0 

        except (TypeError, ValueError): 

            return False 

 

    def __ne__(self, other): 

        """ 

        Rich comparison operator '!='. 

 

        .. rubric: Example 

 

        Comparing two UTCDateTime object will always compare timestamps rounded 

        to a precision of 6 digits by default. 

 

        >>> t1 = UTCDateTime(123.000000012) 

        >>> t2 = UTCDateTime(123.000000099) 

        >>> t1 != t2 

        False 

 

        But the actual timestamp differ 

 

        >>> t1.timestamp != t2.timestamp 

        True 

 

        Resetting the precision changes the behaviour of the operator 

 

        >>> t1.precision = 11 

        >>> t1 != t2 

        True 

        """ 

        return not self.__eq__(other) 

 

    def __lt__(self, other): 

        """ 

        Rich comparison operator '<'. 

 

        .. rubric: Example 

 

        Comparing two UTCDateTime object will always compare timestamps rounded 

        to a precision of 6 digits by default. 

 

        >>> t1 = UTCDateTime(123.000000012) 

        >>> t2 = UTCDateTime(123.000000099) 

        >>> t1 < t2 

        False 

 

        But the actual timestamp differ 

 

        >>> t1.timestamp < t2.timestamp 

        True 

 

        Resetting the precision changes the behaviour of the operator 

 

        >>> t1.precision = 11 

        >>> t1 < t2 

        True 

        """ 

        try: 

            return round(self.timestamp - float(other), self.__precision) < 0 

        except (TypeError, ValueError): 

            return False 

 

    def __le__(self, other): 

        """ 

        Rich comparison operator '<='. 

 

        .. rubric: Example 

 

        Comparing two UTCDateTime object will always compare timestamps rounded 

        to a precision of 6 digits by default. 

 

        >>> t1 = UTCDateTime(123.000000099) 

        >>> t2 = UTCDateTime(123.000000012) 

        >>> t1 <= t2 

        True 

 

        But the actual timestamp differ 

 

        >>> t1.timestamp <= t2.timestamp 

        False 

 

        Resetting the precision changes the behaviour of the operator 

 

        >>> t1.precision = 11 

        >>> t1 <= t2 

        False 

        """ 

        try: 

            return round(self.timestamp - float(other), self.__precision) <= 0 

        except (TypeError, ValueError): 

            return False 

 

    def __gt__(self, other): 

        """ 

        Rich comparison operator '>'. 

 

        .. rubric: Example 

 

        Comparing two UTCDateTime object will always compare timestamps rounded 

        to a precision of 6 digits by default. 

 

        >>> t1 = UTCDateTime(123.000000099) 

        >>> t2 = UTCDateTime(123.000000012) 

        >>> t1 > t2 

        False 

 

        But the actual timestamp differ 

 

        >>> t1.timestamp > t2.timestamp 

        True 

 

        Resetting the precision changes the behaviour of the operator 

 

        >>> t1.precision = 11 

        >>> t1 > t2 

        True 

        """ 

        try: 

            return round(self.timestamp - float(other), self.__precision) > 0 

        except (TypeError, ValueError): 

            return False 

 

    def __ge__(self, other): 

        """ 

        Rich comparison operator '>='. 

 

        .. rubric: Example 

 

        Comparing two UTCDateTime object will always compare timestamps rounded 

        to a precision of 6 digits by default. 

 

        >>> t1 = UTCDateTime(123.000000012) 

        >>> t2 = UTCDateTime(123.000000099) 

        >>> t1 >= t2 

        True 

 

        But the actual timestamp differ 

 

        >>> t1.timestamp >= t2.timestamp 

        False 

 

        Resetting the precision changes the behaviour of the operator 

 

        >>> t1.precision = 11 

        >>> t1 >= t2 

        False 

        """ 

        try: 

            return round(self.timestamp - float(other), self.__precision) >= 0 

        except (TypeError, ValueError): 

            return False 

 

    def __repr__(self): 

        """ 

        Returns a representation of UTCDatetime object. 

        """ 

        return 'UTCDateTime' + self._getDateTime().__repr__()[17:] 

 

    def __abs__(self): 

        """ 

        Returns absolute timestamp value of the current UTCDateTime object. 

        """ 

        # needed for unittest.assertAlmostEqual tests on linux 

        return abs(self.timestamp) 

 

    def strftime(self, format): 

        """ 

        Return a string representing the date and time, controlled by an 

        explicit format string. 

 

        :type format: str 

        :param format: Format string. 

        :return: Formated string representing the date and time. 

 

        Format codes referring to hours, minutes or seconds will see 0 values. 

        See methods :meth:`~datetime.datetime.strftime()` and 

        :meth:`~datetime.datetime.strptime()` for more information. 

        """ 

        return self._getDateTime().strftime(format) 

 

    def strptime(self, date_string, format): 

        """ 

        Return a UTCDateTime corresponding to date_string, parsed according to 

        given format. 

 

        :type date_string: str 

        :param date_string: Date and time string. 

        :type format: str 

        :param format: Format string. 

        :return: :class:`~obspy.core.utcdatetime.UTCDateTime` 

 

        See methods :meth:`~datetime.datetime.strftime()` and 

        :meth:`~datetime.datetime.strptime()` for more information. 

        """ 

        return UTCDateTime(datetime.datetime.strptime(date_string, format)) 

 

    def timetz(self): 

        """ 

        Return time object with same hour, minute, second, microsecond, and 

        tzinfo attributes. See also method :meth:`datetime.datetime.time()`. 

 

        .. rubric:: Example 

 

        >>> dt = UTCDateTime(2008, 10, 1, 12, 30, 35, 45020) 

        >>> dt.timetz() 

        datetime.time(12, 30, 35, 45020) 

        """ 

        return self._getDateTime().timetz() 

 

    def utcoffset(self): 

        """ 

        Returns None (to stay compatible with :class:`datetime.datetime`) 

 

        .. rubric:: Example 

 

        >>> dt = UTCDateTime(2008, 10, 1, 12, 30, 35, 45020) 

        >>> dt.utcoffset() 

        """ 

        return self._getDateTime().utcoffset() 

 

    def dst(self): 

        """ 

        Returns None (to stay compatible with :class:`datetime.datetime`) 

 

        .. rubric:: Example 

 

        >>> dt = UTCDateTime(2008, 10, 1, 12, 30, 35, 45020) 

        >>> dt.dst() 

        """ 

        return self._getDateTime().dst() 

 

    def tzname(self): 

        """ 

        Returns None (to stay compatible with :class:`datetime.datetime`) 

 

        .. rubric:: Example 

 

        >>> dt = UTCDateTime(2008, 10, 1, 12, 30, 35, 45020) 

        >>> dt.tzname() 

        """ 

        return self._getDateTime().tzname() 

 

    def ctime(self): 

        """ 

        Return a string representing the date and time. 

 

        .. rubric:: Example 

 

        >>> UTCDateTime(2002, 12, 4, 20, 30, 40).ctime() 

        'Wed Dec  4 20:30:40 2002' 

        """ 

        return self._getDateTime().ctime() 

 

    def isoweekday(self): 

        """ 

        Return the day of the week as an integer (Monday is 1, Sunday is 7). 

 

        :rtype: int 

        :return: Returns day of the week as an integer, where Monday is 1 and 

            Sunday is 7. 

 

        .. rubric:: Example 

 

        >>> dt = UTCDateTime(2008, 10, 1, 12, 30, 35, 45020) 

        >>> dt.isoweekday() 

        3 

        """ 

        return self._getDateTime().isoweekday() 

 

    def isocalendar(self): 

        """ 

        Returns a tuple containing (ISO year, ISO week number, ISO weekday). 

 

        :rtype: tuple of ints 

        :return: Returns a tuple containing ISO year, ISO week number and ISO 

            weekday. 

 

        .. rubric:: Example 

 

        >>> dt = UTCDateTime(2008, 10, 1, 12, 30, 35, 45020) 

        >>> dt.isocalendar() 

        (2008, 40, 3) 

        """ 

        return self._getDateTime().isocalendar() 

 

    def isoformat(self, sep="T"): 

        """ 

        Return a string representing the date and time in ISO 8601 format. 

 

        :rtype: str 

        :return: String representing the date and time in ISO 8601 format like 

            YYYY-MM-DDTHH:MM:SS.mmmmmm or, if microsecond is 0, 

            YYYY-MM-DDTHH:MM:SS. 

 

        .. rubric:: Example 

 

        >>> dt = UTCDateTime(2008, 10, 1, 12, 30, 35, 45020) 

        >>> dt.isoformat() 

        '2008-10-01T12:30:35.045020' 

 

        >>> dt = UTCDateTime(2008, 10, 1) 

        >>> dt.isoformat() 

        '2008-10-01T00:00:00' 

        """ 

        return self._getDateTime().isoformat(sep=sep) 

 

    def formatFissures(self): 

        """ 

        Returns string representation for the IRIS Fissures protocol. 

 

        :return: string 

 

        .. rubric:: Example 

 

        >>> dt = UTCDateTime(2008, 10, 1, 12, 30, 35, 45020) 

        >>> dt.formatFissures() 

        '2008275T123035.0450Z' 

        """ 

        return "%04d%03dT%02d%02d%02d.%04dZ" % \ 

                (self.year, self.julday, self.hour, self.minute, self.second, 

                 self.microsecond // 100) 

 

    def formatArcLink(self): 

        """ 

        Returns string representation for the ArcLink protocol. 

 

        :return: string 

 

        .. rubric:: Example 

 

        >>> dt = UTCDateTime(2008, 10, 1, 12, 30, 35, 45020) 

        >>> dt.formatArcLink() 

        '2008,10,1,12,30,35,45020' 

        """ 

        return "%d,%d,%d,%d,%d,%d,%d" % (self.year, self.month, self.day, 

                                         self.hour, self.minute, self.second, 

                                         self.microsecond) 

 

    def formatSeedLink(self): 

        """ 

        Returns string representation for the SeedLink protocol. 

 

        :return: string 

 

        .. rubric:: Example 

 

        >>> dt = UTCDateTime(2008, 10, 1, 12, 30, 35.45020) 

        >>> dt.formatSeedLink() 

        '2008,10,1,12,30,35' 

        """ 

        # round seconds down to integer 

        seconds = int(float(self.second) + float(self.microsecond) / 1.0e6) 

        return "%d,%d,%d,%d,%d,%g" % (self.year, self.month, self.day, 

                                      self.hour, self.minute, seconds) 

 

    def formatSEED(self, compact=False): 

        """ 

        Returns string representation for a SEED volume. 

 

        :type compact: boolean, optional 

        :param compact: Delivers a compact SEED date string if enabled. Default 

            value is set to False. 

        :rtype: string 

        :return: Datetime string in the SEED format. 

 

        .. rubric:: Example 

 

        >>> dt = UTCDateTime(2008, 10, 1, 12, 30, 35, 45020) 

        >>> dt.formatSEED() 

        '2008,275,12:30:35.0450' 

 

        >>> dt = UTCDateTime(2008, 10, 1, 0, 30, 0, 0) 

        >>> dt.formatSEED(compact=True) 

        '2008,275,00:30' 

        """ 

        if not compact: 

            if not self.time: 

                return "%04d,%03d" % (self.year, self.julday) 

            return "%04d,%03d,%02d:%02d:%02d.%04d" % (self.year, self.julday, 

                                                      self.hour, self.minute, 

                                                      self.second, 

                                                      self.microsecond // 100) 

        temp = "%04d,%03d" % (self.year, self.julday) 

        if not self.time: 

            return temp 

        temp += ",%02d" % self.hour 

        if self.microsecond: 

            return temp + ":%02d:%02d.%04d" % (self.minute, self.second, 

                                               self.microsecond // 100) 

        elif self.second: 

            return temp + ":%02d:%02d" % (self.minute, self.second) 

        elif self.minute: 

            return temp + ":%02d" % (self.minute) 

        return temp 

 

    def formatIRISWebService(self): 

        """ 

        Returns string representation usable for the IRIS Web services. 

 

        :return: string 

 

        .. rubric:: Example 

 

        >>> dt = UTCDateTime(2008, 5, 27, 12, 30, 35, 45020) 

        >>> dt.formatIRISWebService() 

        '2008-05-27T12:30:35.045' 

        """ 

        return "%04d-%02d-%02dT%02d:%02d:%02d.%03d" % \ 

                (self.year, self.month, self.day, self.hour, self.minute, 

                 self.second, self.microsecond // 1000) 

 

    def _getPrecision(self): 

        """ 

        Returns precision of current UTCDateTime object. 

 

        :return: int 

 

        .. rubric:: Example 

 

        >>> dt = UTCDateTime() 

        >>> dt.precision 

        6 

        """ 

        return self.__precision 

 

    def _setPrecision(self, value=6): 

        """ 

        Set precision of current UTCDateTime object. 

 

        :type value: int, optional 

        :param value: Precision value used by the rich comparison operators. 

            Defaults to ``6``. 

 

        .. rubric:: Example 

 

        (1) Default precision 

 

            >>> dt = UTCDateTime() 

            >>> dt.precision 

            6 

 

        (2) Set precision during initialization of UTCDateTime object. 

 

            >>> dt = UTCDateTime(precision=5) 

            >>> dt.precision 

            5 

 

        (3) Set precision for an existing UTCDateTime object. 

 

            >>> dt = UTCDateTime() 

            >>> dt.precision = 12 

            >>> dt.precision 

            12 

        """ 

        self.__precision = int(value) 

        self.__ms_pattern = "%%0.%df" % (self.__precision) 

 

    precision = property(_getPrecision, _setPrecision) 

 

    def toordinal(self): 

        """ 

        Return proleptic Gregorian ordinal. January 1 of year 1 is day 1. 

 

        See :meth:`datetime.datetime.toordinal()`. 

 

        :return: int 

 

        .. rubric:: Example 

 

        >>> dt = UTCDateTime(2012, 1, 1) 

        >>> dt.toordinal() 

        734503 

        """ 

        return self._getDateTime().toordinal() 

 

    @staticmethod 

    def now(): 

        """ 

        Returns current UTC datetime. 

        """ 

        return UTCDateTime() 

 

    @staticmethod 

    def utcnow(): 

        """ 

        Returns current UTC datetime. 

        """ 

        return UTCDateTime() 

 

 

if __name__ == '__main__': 

    import doctest 

    doctest.testmod(exclude_empty=True)