-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgenindex.html
5293 lines (4827 loc) · 377 KB
/
genindex.html
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
<!DOCTYPE html>
<html class="writer-html5" lang="en" data-content_root="./">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Index — OpenDrift documentation</title>
<link rel="stylesheet" type="text/css" href="_static/pygments.css?v=b86133f3" />
<link rel="stylesheet" type="text/css" href="_static/css/theme.css?v=e59714d7" />
<link rel="stylesheet" type="text/css" href="_static/graphviz.css?v=4ae1632d" />
<link rel="stylesheet" type="text/css" href="_static/plot_directive.css" />
<link rel="stylesheet" type="text/css" href="_static/sg_gallery.css?v=d2d258e8" />
<link rel="stylesheet" type="text/css" href="_static/sg_gallery-binder.css?v=f4aeca0c" />
<link rel="stylesheet" type="text/css" href="_static/sg_gallery-dataframe.css?v=2082cf3c" />
<link rel="stylesheet" type="text/css" href="_static/sg_gallery-rendered-html.css?v=1277b6f3" />
<link rel="stylesheet" type="text/css" href="_static/theme_overrides.css" />
<script src="_static/jquery.js?v=5d32c60e"></script>
<script src="_static/_sphinx_javascript_frameworks_compat.js?v=2cd50e6c"></script>
<script src="_static/documentation_options.js?v=5929fcd5"></script>
<script src="_static/doctools.js?v=9bcbadda"></script>
<script src="_static/sphinx_highlight.js?v=dc90522c"></script>
<script src="_static/js/theme.js"></script>
<link rel="index" title="Index" href="#" />
<link rel="search" title="Search" href="search.html" />
</head>
<body class="wy-body-for-nav">
<div class="wy-grid-for-nav">
<nav data-toggle="wy-nav-shift" class="wy-nav-side">
<div class="wy-side-scroll">
<div class="wy-side-nav-search" >
<a href="index.html" class="icon icon-home">
OpenDrift
<img src="_static/opendrift_logo.png" class="logo" alt="Logo"/>
</a>
<div role="search">
<form id="rtd-search-form" class="wy-form" action="search.html" method="get">
<input type="text" name="q" placeholder="Search docs" aria-label="Search docs" />
<input type="hidden" name="check_keywords" value="yes" />
<input type="hidden" name="area" value="default" />
</form>
</div>
</div><div class="wy-menu wy-menu-vertical" data-spy="affix" role="navigation" aria-label="Navigation menu">
<ul>
<li class="toctree-l1"><a class="reference internal" href="index.html">Introduction to OpenDrift</a></li>
</ul>
<ul>
<li class="toctree-l1"><a class="reference internal" href="history_link.html">History</a></li>
<li class="toctree-l1"><a class="reference internal" href="install.html">Installing OpenDrift</a></li>
<li class="toctree-l1"><a class="reference internal" href="performance.html">Performance in OpenDrift</a></li>
<li class="toctree-l1"><a class="reference internal" href="tutorial.html">Tutorial</a></li>
<li class="toctree-l1"><a class="reference internal" href="theory/index.html">Theory</a></li>
<li class="toctree-l1"><a class="reference internal" href="theory/index.html#drift-in-the-ocean">Drift in the Ocean</a></li>
<li class="toctree-l1"><a class="reference internal" href="choosing_a_model.html">How to choose which model to use</a></li>
<li class="toctree-l1"><a class="reference internal" href="writing_a_new_model.html">How to write a new module</a></li>
<li class="toctree-l1"><a class="reference internal" href="gallery/index.html">Gallery</a></li>
<li class="toctree-l1"><a class="reference internal" href="oil_types.html">Oil types</a></li>
<li class="toctree-l1"><a class="reference internal" href="interaction_with_coastline.html">Interaction with coastline</a></li>
<li class="toctree-l1"><a class="reference internal" href="docker.html">Using OpenDrift in a container</a></li>
<li class="toctree-l1"><a class="reference internal" href="gui.html">Graphical User Interface</a></li>
<li class="toctree-l1"><a class="reference internal" href="references.html">Publications</a></li>
<li class="toctree-l1"><a class="reference internal" href="services.html">Services using OpenDrift</a></li>
<li class="toctree-l1"><a class="reference internal" href="autoapi/index.html">API Reference</a></li>
</ul>
</div>
</div>
</nav>
<section data-toggle="wy-nav-shift" class="wy-nav-content-wrap"><nav class="wy-nav-top" aria-label="Mobile navigation menu" >
<i data-toggle="wy-nav-top" class="fa fa-bars"></i>
<a href="index.html">OpenDrift</a>
</nav>
<div class="wy-nav-content">
<div class="rst-content">
<div role="navigation" aria-label="Page navigation">
<ul class="wy-breadcrumbs">
<li><a href="index.html" class="icon icon-home" aria-label="Home"></a></li>
<li class="breadcrumb-item active">Index</li>
<li class="wy-breadcrumbs-aside">
</li>
</ul>
<hr/>
</div>
<div role="main" class="document" itemscope="itemscope" itemtype="http://schema.org/Article">
<div itemprop="articleBody">
<h1 id="index">Index</h1>
<div class="genindex-jumpbox">
<a href="#_"><strong>_</strong></a>
| <a href="#A"><strong>A</strong></a>
| <a href="#B"><strong>B</strong></a>
| <a href="#C"><strong>C</strong></a>
| <a href="#D"><strong>D</strong></a>
| <a href="#E"><strong>E</strong></a>
| <a href="#F"><strong>F</strong></a>
| <a href="#G"><strong>G</strong></a>
| <a href="#H"><strong>H</strong></a>
| <a href="#I"><strong>I</strong></a>
| <a href="#J"><strong>J</strong></a>
| <a href="#K"><strong>K</strong></a>
| <a href="#L"><strong>L</strong></a>
| <a href="#M"><strong>M</strong></a>
| <a href="#N"><strong>N</strong></a>
| <a href="#O"><strong>O</strong></a>
| <a href="#P"><strong>P</strong></a>
| <a href="#R"><strong>R</strong></a>
| <a href="#S"><strong>S</strong></a>
| <a href="#T"><strong>T</strong></a>
| <a href="#U"><strong>U</strong></a>
| <a href="#V"><strong>V</strong></a>
| <a href="#W"><strong>W</strong></a>
| <a href="#X"><strong>X</strong></a>
| <a href="#Y"><strong>Y</strong></a>
| <a href="#Z"><strong>Z</strong></a>
</div>
<h2 id="_">_</h2>
<table style="width: 100%" class="indextable genindextable"><tr>
<td style="width: 33%; vertical-align: top;"><ul>
<li><a href="autoapi/opendrift/readers/basereader/index.html#opendrift.readers.basereader.Combine.__add__">__add__() (opendrift.readers.basereader.Combine method)</a>
<ul>
<li><a href="autoapi/opendrift/readers/operators/ops/index.html#opendrift.readers.operators.ops.Combine.__add__">(opendrift.readers.operators.ops.Combine method)</a>
</li>
</ul></li>
<li><a href="autoapi/opendrift/models/basemodel/index.html#opendrift.models.basemodel.Environment.__add_auto_landmask__">__add_auto_landmask__() (opendrift.models.basemodel.Environment method)</a>
<ul>
<li><a href="autoapi/opendrift/models/basemodel/environment/index.html#opendrift.models.basemodel.environment.Environment.__add_auto_landmask__">(opendrift.models.basemodel.environment.Environment method)</a>
</li>
</ul></li>
<li><a href="autoapi/opendrift/models/basemodel/index.html#opendrift.models.basemodel.Environment.__assert_no_missing_variables__">__assert_no_missing_variables__() (opendrift.models.basemodel.Environment method)</a>
<ul>
<li><a href="autoapi/opendrift/models/basemodel/environment/index.html#opendrift.models.basemodel.environment.Environment.__assert_no_missing_variables__">(opendrift.models.basemodel.environment.Environment method)</a>
</li>
</ul></li>
<li><a href="autoapi/opendrift/readers/basereader/index.html#opendrift.readers.basereader.Variables.__calculate_derived_environment_variables__">__calculate_derived_environment_variables__() (opendrift.readers.basereader.Variables method)</a>
<ul>
<li><a href="autoapi/opendrift/readers/basereader/variables/index.html#opendrift.readers.basereader.variables.Variables.__calculate_derived_environment_variables__">(opendrift.readers.basereader.variables.Variables method)</a>
</li>
</ul></li>
<li><a href="autoapi/opendrift/readers/basereader/fakeproj/index.html#opendrift.readers.basereader.fakeproj.fakeproj.__call__">__call__() (opendrift.readers.basereader.fakeproj.fakeproj method)</a>
<ul>
<li><a href="autoapi/opendrift/readers/interpolation/interpolators/index.html#opendrift.readers.interpolation.interpolators.Linear1DInterpolator.__call__">(opendrift.readers.interpolation.interpolators.Linear1DInterpolator method)</a>
</li>
<li><a href="autoapi/opendrift/readers/interpolation/interpolators/index.html#opendrift.readers.interpolation.interpolators.Linear2DInterpolator.__call__">(opendrift.readers.interpolation.interpolators.Linear2DInterpolator method)</a>
</li>
<li><a href="autoapi/opendrift/readers/interpolation/interpolators/index.html#opendrift.readers.interpolation.interpolators.LinearND2DInterpolator.__call__">(opendrift.readers.interpolation.interpolators.LinearND2DInterpolator method)</a>
</li>
<li><a href="autoapi/opendrift/readers/interpolation/interpolators/index.html#opendrift.readers.interpolation.interpolators.NDImage2DInterpolator.__call__">(opendrift.readers.interpolation.interpolators.NDImage2DInterpolator method)</a>
</li>
<li><a href="autoapi/opendrift/readers/interpolation/interpolators/index.html#opendrift.readers.interpolation.interpolators.Nearest1DInterpolator.__call__">(opendrift.readers.interpolation.interpolators.Nearest1DInterpolator method)</a>
</li>
<li><a href="autoapi/opendrift/readers/interpolation/interpolators/index.html#opendrift.readers.interpolation.interpolators.Nearest2DInterpolator.__call__">(opendrift.readers.interpolation.interpolators.Nearest2DInterpolator method)</a>
</li>
<li><a href="autoapi/opendrift/readers/interpolation/index.html#opendrift.readers.interpolation.Linear1DInterpolator.__call__">(opendrift.readers.interpolation.Linear1DInterpolator method)</a>
</li>
<li><a href="autoapi/opendrift/readers/interpolation/index.html#opendrift.readers.interpolation.Linear2DInterpolator.__call__">(opendrift.readers.interpolation.Linear2DInterpolator method)</a>
</li>
<li><a href="autoapi/opendrift/readers/interpolation/index.html#opendrift.readers.interpolation.LinearND2DInterpolator.__call__">(opendrift.readers.interpolation.LinearND2DInterpolator method)</a>
</li>
<li><a href="autoapi/opendrift/readers/interpolation/index.html#opendrift.readers.interpolation.NDImage2DInterpolator.__call__">(opendrift.readers.interpolation.NDImage2DInterpolator method)</a>
</li>
<li><a href="autoapi/opendrift/readers/interpolation/index.html#opendrift.readers.interpolation.Nearest1DInterpolator.__call__">(opendrift.readers.interpolation.Nearest1DInterpolator method)</a>
</li>
<li><a href="autoapi/opendrift/readers/interpolation/index.html#opendrift.readers.interpolation.Nearest2DInterpolator.__call__">(opendrift.readers.interpolation.Nearest2DInterpolator method)</a>
</li>
</ul></li>
<li><a href="autoapi/opendrift/readers/basereader/structured/index.html#opendrift.readers.basereader.structured.StructuredReader.__check_env_arrays__">__check_env_arrays__() (opendrift.readers.basereader.structured.StructuredReader method)</a>
<ul>
<li><a href="autoapi/opendrift/readers/basereader/index.html#opendrift.readers.basereader.StructuredReader.__check_env_arrays__">(opendrift.readers.basereader.StructuredReader method)</a>
</li>
<li><a href="autoapi/opendrift/readers/basereader/index.html#opendrift.readers.basereader.Variables.__check_env_arrays__">(opendrift.readers.basereader.Variables method)</a>
</li>
<li><a href="autoapi/opendrift/readers/basereader/variables/index.html#opendrift.readers.basereader.variables.Variables.__check_env_arrays__">(opendrift.readers.basereader.variables.Variables method)</a>
</li>
</ul></li>
<li><a href="autoapi/opendrift/readers/basereader/index.html#opendrift.readers.basereader.Variables.__check_env_coordinates__">__check_env_coordinates__() (opendrift.readers.basereader.Variables method)</a>
<ul>
<li><a href="autoapi/opendrift/readers/basereader/variables/index.html#opendrift.readers.basereader.variables.Variables.__check_env_coordinates__">(opendrift.readers.basereader.variables.Variables method)</a>
</li>
</ul></li>
<li><a href="autoapi/opendrift/readers/basereader/index.html#opendrift.readers.basereader.Variables.__check_variable_array__">__check_variable_array__() (opendrift.readers.basereader.Variables static method)</a>
<ul>
<li><a href="autoapi/opendrift/readers/basereader/variables/index.html#opendrift.readers.basereader.variables.Variables.__check_variable_array__">(opendrift.readers.basereader.variables.Variables static method)</a>
</li>
</ul></li>
<li><a href="autoapi/opendrift/readers/basereader/structured/index.html#opendrift.readers.basereader.structured.StructuredReader.__convolve_block__">__convolve_block__() (opendrift.readers.basereader.structured.StructuredReader method)</a>
<ul>
<li><a href="autoapi/opendrift/readers/basereader/index.html#opendrift.readers.basereader.StructuredReader.__convolve_block__">(opendrift.readers.basereader.StructuredReader method)</a>
</li>
<li><a href="autoapi/opendrift/readers/reader_schism_native/index.html#opendrift.readers.reader_schism_native.Reader.__convolve_block__">(opendrift.readers.reader_schism_native.Reader method)</a>
</li>
</ul></li>
<li><a href="autoapi/opendrift/readers/basereader/structured/index.html#opendrift.readers.basereader.structured.StructuredReader.__disable_parallel__">__disable_parallel__ (opendrift.readers.basereader.structured.StructuredReader attribute)</a>
<ul>
<li><a href="autoapi/opendrift/readers/basereader/index.html#opendrift.readers.basereader.StructuredReader.__disable_parallel__">(opendrift.readers.basereader.StructuredReader attribute)</a>
</li>
</ul></li>
<li><a href="autoapi/opendrift/readers/reader_telemac_selafin/index.html#opendrift.readers.reader_telemac_selafin.Reader.__extractslf__">__extractslf__() (opendrift.readers.reader_telemac_selafin.Reader method)</a>
</li>
<li><a href="autoapi/opendrift/models/basemodel/index.html#opendrift.models.basemodel.Environment.__finalized__">__finalized__ (opendrift.models.basemodel.Environment attribute)</a>
<ul>
<li><a href="autoapi/opendrift/models/basemodel/environment/index.html#opendrift.models.basemodel.environment.Environment.__finalized__">(opendrift.models.basemodel.environment.Environment attribute)</a>
</li>
</ul></li>
<li><a href="autoapi/opendrift/models/basemodel/index.html#opendrift.models.basemodel.Environment.__generate_constant_readers__">__generate_constant_readers__() (opendrift.models.basemodel.Environment method)</a>
<ul>
<li><a href="autoapi/opendrift/models/basemodel/environment/index.html#opendrift.models.basemodel.environment.Environment.__generate_constant_readers__">(opendrift.models.basemodel.environment.Environment method)</a>
</li>
</ul></li>
<li><a href="autoapi/opendrift/models/openoil/adios/dirjs/index.html#opendrift.models.openoil.adios.dirjs.__get_archive__">__get_archive__() (in module opendrift.models.openoil.adios.dirjs)</a>
</li>
<li><a href="autoapi/opendrift/readers/operators/filter/index.html#opendrift.readers.operators.filter.FilterVariables.__getattr__">__getattr__() (opendrift.readers.operators.filter.FilterVariables method)</a>
<ul>
<li><a href="autoapi/opendrift/readers/operators/numops/index.html#opendrift.readers.operators.numops.Combined.__getattr__">(opendrift.readers.operators.numops.Combined method)</a>
</li>
<li><a href="autoapi/opendrift/readers/reader_lazy/index.html#opendrift.readers.reader_lazy.Reader.__getattr__">(opendrift.readers.reader_lazy.Reader method)</a>
</li>
</ul></li>
<li><a href="autoapi/opendrift/elements/elements/index.html#opendrift.elements.elements.LagrangianArray.__len__">__len__() (opendrift.elements.elements.LagrangianArray method)</a>
<ul>
<li><a href="autoapi/opendrift/elements/index.html#opendrift.elements.LagrangianArray.__len__">(opendrift.elements.LagrangianArray method)</a>
</li>
</ul></li>
<li><a href="autoapi/opendrift/readers/basereader/structured/index.html#opendrift.readers.basereader.structured.StructuredReader.__lonlat2xy_parallel__">__lonlat2xy_parallel__ (opendrift.readers.basereader.structured.StructuredReader attribute)</a>
<ul>
<li><a href="autoapi/opendrift/readers/basereader/index.html#opendrift.readers.basereader.StructuredReader.__lonlat2xy_parallel__">(opendrift.readers.basereader.StructuredReader attribute)</a>
</li>
</ul></li>
<li><a href="autoapi/opendrift/models/eulerdrift/grid/index.html#opendrift.models.eulerdrift.grid.RegularGrid.__make_grid__">__make_grid__() (opendrift.models.eulerdrift.grid.RegularGrid method)</a>
</li>
<li><a href="autoapi/opendrift/models/basemodel/index.html#opendrift.models.basemodel.OpenDriftSimulation.__metaclass__">__metaclass__ (opendrift.models.basemodel.OpenDriftSimulation attribute)</a>
<ul>
<li><a href="autoapi/opendrift/readers/basereader/index.html#opendrift.readers.basereader.BaseReader.__metaclass__">(opendrift.readers.basereader.BaseReader attribute)</a>
</li>
</ul></li>
<li><a href="autoapi/opendrift/readers/basereader/index.html#opendrift.readers.basereader.Combine.__mul__">__mul__() (opendrift.readers.basereader.Combine method)</a>
<ul>
<li><a href="autoapi/opendrift/readers/operators/ops/index.html#opendrift.readers.operators.ops.Combine.__mul__">(opendrift.readers.operators.ops.Combine method)</a>
</li>
</ul></li>
<li><a href="autoapi/opendrift/readers/basereader/unstructured/index.html#opendrift.readers.basereader.unstructured.UnstructuredReader.__nearest_ckdtree__">__nearest_ckdtree__() (opendrift.readers.basereader.unstructured.UnstructuredReader method)</a>
<ul>
<li><a href="autoapi/opendrift/readers/basereader/index.html#opendrift.readers.basereader.UnstructuredReader.__nearest_ckdtree__">(opendrift.readers.basereader.UnstructuredReader method)</a>
</li>
</ul></li>
<li><a href="autoapi/opendrift/readers/reader_netCDF_CF_unstructured/index.html#opendrift.readers.reader_netCDF_CF_unstructured.Reader.__nearest_face_sigma__">__nearest_face_sigma__() (opendrift.readers.reader_netCDF_CF_unstructured.Reader method)</a>
</li>
<li><a href="autoapi/opendrift/readers/reader_telemac_selafin/index.html#opendrift.readers.reader_telemac_selafin.Reader.__nearest_idx__">__nearest_idx__() (opendrift.readers.reader_telemac_selafin.Reader static method)</a>
</li>
<li><a href="autoapi/shyfem/index.html#shyfem.Reader.__nearest_level__">__nearest_level__() (shyfem.Reader method)</a>
</li>
<li><a href="autoapi/opendrift/readers/reader_netCDF_CF_unstructured/index.html#opendrift.readers.reader_netCDF_CF_unstructured.Reader.__nearest_node_sigma__">__nearest_node_sigma__() (opendrift.readers.reader_netCDF_CF_unstructured.Reader method)</a>
</li>
<li><a href="autoapi/opendrift/readers/basereader/unstructured/index.html#opendrift.readers.basereader.unstructured.UnstructuredReader.__nearest_rtree__">__nearest_rtree__() (opendrift.readers.basereader.unstructured.UnstructuredReader static method)</a>
<ul>
<li><a href="autoapi/opendrift/readers/basereader/index.html#opendrift.readers.basereader.UnstructuredReader.__nearest_rtree__">(opendrift.readers.basereader.UnstructuredReader static method)</a>
</li>
</ul></li>
<li><a href="autoapi/opendrift/readers/reader_global_landmask/index.html#opendrift.readers.reader_global_landmask.Reader.__on_land__">__on_land__() (opendrift.readers.reader_global_landmask.Reader method)</a>
<ul>
<li><a href="autoapi/opendrift/readers/reader_shape/index.html#opendrift.readers.reader_shape.Reader.__on_land__">(opendrift.readers.reader_shape.Reader method)</a>
</li>
</ul></li>
<li><a href="autoapi/opendrift/readers/reader_global_landmask/index.html#opendrift.readers.reader_global_landmask.__polys__">__polys__ (in module opendrift.readers.reader_global_landmask)</a>
</li>
<li><a href="autoapi/opendrift/readers/basereader/index.html#opendrift.readers.basereader.Combine.__radd__">__radd__() (opendrift.readers.basereader.Combine method)</a>
<ul>
<li><a href="autoapi/opendrift/readers/operators/ops/index.html#opendrift.readers.operators.ops.Combine.__radd__">(opendrift.readers.operators.ops.Combine method)</a>
</li>
</ul></li>
<li><a href="autoapi/opendrift/elements/elements/index.html#opendrift.elements.elements.LagrangianArray.__repr__">__repr__() (opendrift.elements.elements.LagrangianArray method)</a>
<ul>
<li><a href="autoapi/opendrift/elements/index.html#opendrift.elements.LagrangianArray.__repr__">(opendrift.elements.LagrangianArray method)</a>
</li>
<li><a href="autoapi/opendrift/models/basemodel/index.html#opendrift.models.basemodel.OpenDriftSimulation.__repr__">(opendrift.models.basemodel.OpenDriftSimulation method)</a>
</li>
<li><a href="autoapi/opendrift/models/openoil/adios/oil/index.html#opendrift.models.openoil.adios.oil.OpendriftOil.__repr__">(opendrift.models.openoil.adios.oil.OpendriftOil method)</a>
</li>
<li><a href="autoapi/opendrift/readers/basereader/variables/index.html#opendrift.readers.basereader.variables.ReaderDomain.__repr__">(opendrift.readers.basereader.variables.ReaderDomain method)</a>
</li>
<li><a href="autoapi/opendrift/readers/reader_lazy/index.html#opendrift.readers.reader_lazy.Reader.__repr__">(opendrift.readers.reader_lazy.Reader method)</a>
</li>
</ul></li>
<li><a href="autoapi/opendrift/models/openoil/adios/oil/index.html#opendrift.models.openoil.adios.oil.__require_gnome_oil__">__require_gnome_oil__() (in module opendrift.models.openoil.adios.oil)</a>
</li>
<li><a href="autoapi/opendrift/readers/basereader/index.html#opendrift.readers.basereader.Combine.__rmul__">__rmul__() (opendrift.readers.basereader.Combine method)</a>
<ul>
<li><a href="autoapi/opendrift/readers/operators/ops/index.html#opendrift.readers.operators.ops.Combine.__rmul__">(opendrift.readers.operators.ops.Combine method)</a>
</li>
</ul></li>
<li><a href="autoapi/opendrift/readers/reader_global_landmask/index.html#opendrift.readers.reader_global_landmask.__roaring_mask__">__roaring_mask__ (in module opendrift.readers.reader_global_landmask)</a>
</li>
<li><a href="autoapi/opendrift/models/basemodel/index.html#opendrift.models.basemodel.OpenDriftSimulation.__save_animation__">__save_animation__() (opendrift.models.basemodel.OpenDriftSimulation method)</a>
</li>
<li><a href="autoapi/opendrift/models/basemodel/index.html#opendrift.models.basemodel.OpenDriftSimulation.__save_or_plot_animation__">__save_or_plot_animation__() (opendrift.models.basemodel.OpenDriftSimulation method)</a>
</li>
<li><a href="autoapi/opendrift/models/basemodel/index.html#opendrift.models.basemodel.OpenDriftSimulation.__set_seed_config__">__set_seed_config__() (opendrift.models.basemodel.OpenDriftSimulation method)</a>
</li>
<li><a href="autoapi/opendrift/models/physics_methods/index.html#opendrift.models.physics_methods.__stokes_coefficients__">__stokes_coefficients__ (in module opendrift.models.physics_methods)</a>
</li>
<li><a href="autoapi/opendrift/models/physics_methods/index.html#opendrift.models.physics_methods.__stokes_hs_coefficients__">__stokes_hs_coefficients__ (in module opendrift.models.physics_methods)</a>
</li>
<li><a href="autoapi/opendrift/readers/basereader/index.html#opendrift.readers.basereader.Combine.__sub__">__sub__() (opendrift.readers.basereader.Combine method)</a>
<ul>
<li><a href="autoapi/opendrift/readers/operators/ops/index.html#opendrift.readers.operators.ops.Combine.__sub__">(opendrift.readers.operators.ops.Combine method)</a>
</li>
</ul></li>
<li><a href="autoapi/opendrift/models/basemodel/index.html#opendrift.models.basemodel.Timeable.__timers__">__timers__ (opendrift.models.basemodel.Timeable attribute)</a>
<ul>
<li><a href="autoapi/opendrift/timer/index.html#opendrift.timer.Timeable.__timers__">(opendrift.timer.Timeable attribute)</a>
</li>
</ul></li>
</ul></td>
<td style="width: 33%; vertical-align: top;"><ul>
<li><a href="autoapi/opendrift/models/basemodel/index.html#opendrift.models.basemodel.Timeable.__timing__">__timing__ (opendrift.models.basemodel.Timeable attribute)</a>
<ul>
<li><a href="autoapi/opendrift/timer/index.html#opendrift.timer.Timeable.__timing__">(opendrift.timer.Timeable attribute)</a>
</li>
</ul></li>
<li><a href="autoapi/opendrift/readers/basereader/index.html#opendrift.readers.basereader.Combine.__truediv__">__truediv__() (opendrift.readers.basereader.Combine method)</a>
<ul>
<li><a href="autoapi/opendrift/readers/operators/ops/index.html#opendrift.readers.operators.ops.Combine.__truediv__">(opendrift.readers.operators.ops.Combine method)</a>
</li>
</ul></li>
<li><a href="autoapi/opendrift/readers/basereader/structured/index.html#opendrift.readers.basereader.structured.StructuredReader.__validate_projected_grid__">__validate_projected_grid__() (opendrift.readers.basereader.structured.StructuredReader method)</a>
<ul>
<li><a href="autoapi/opendrift/readers/basereader/index.html#opendrift.readers.basereader.StructuredReader.__validate_projected_grid__">(opendrift.readers.basereader.StructuredReader method)</a>
</li>
</ul></li>
<li><a href="autoapi/opendrift/index.html#opendrift.__version__">__version__ (in module opendrift)</a>
<ul>
<li><a href="autoapi/opendrift/version/index.html#opendrift.version.__version__">(in module opendrift.version)</a>
</li>
</ul></li>
<li><a href="autoapi/opendrift/config/index.html#opendrift.config.Configurable._add_config">_add_config() (opendrift.config.Configurable method)</a>
<ul>
<li><a href="autoapi/opendrift/models/basemodel/index.html#opendrift.models.basemodel.Configurable._add_config">(opendrift.models.basemodel.Configurable method)</a>
</li>
</ul></li>
<li><a href="autoapi/opendrift/readers/reader_ROMS_native/index.html#opendrift.readers.reader_ROMS_native.Reader._angle">_angle (opendrift.readers.reader_ROMS_native.Reader attribute)</a>
</li>
<li><a href="autoapi/opendrift/readers/reader_lazy/index.html#opendrift.readers.reader_lazy.Reader._args">_args (opendrift.readers.reader_lazy.Reader attribute)</a>
</li>
<li><a href="autoapi/opendrift/index.html#opendrift._available_models">_available_models (in module opendrift)</a>
</li>
<li><a href="autoapi/opendrift/readers/basereader/structured/index.html#opendrift.readers.basereader.structured.StructuredReader._bbox_">_bbox_() (opendrift.readers.basereader.structured.StructuredReader method)</a>
<ul>
<li><a href="autoapi/opendrift/readers/basereader/index.html#opendrift.readers.basereader.StructuredReader._bbox_">(opendrift.readers.basereader.StructuredReader method)</a>
</li>
</ul></li>
<li><a href="autoapi/opendrift/readers/basereader/unstructured/index.html#opendrift.readers.basereader.unstructured.UnstructuredReader._build_boundary_polygon_">_build_boundary_polygon_() (opendrift.readers.basereader.unstructured.UnstructuredReader method)</a>
<ul>
<li><a href="autoapi/opendrift/readers/basereader/index.html#opendrift.readers.basereader.UnstructuredReader._build_boundary_polygon_">(opendrift.readers.basereader.UnstructuredReader method)</a>
</li>
</ul></li>
<li><a href="autoapi/opendrift/readers/basereader/unstructured/index.html#opendrift.readers.basereader.unstructured.UnstructuredReader._build_ckdtree_">_build_ckdtree_() (opendrift.readers.basereader.unstructured.UnstructuredReader method)</a>
<ul>
<li><a href="autoapi/opendrift/readers/basereader/index.html#opendrift.readers.basereader.UnstructuredReader._build_ckdtree_">(opendrift.readers.basereader.UnstructuredReader method)</a>
</li>
</ul></li>
<li><a href="autoapi/opendrift/readers/basereader/unstructured/index.html#opendrift.readers.basereader.unstructured.UnstructuredReader._build_rtree_">_build_rtree_() (opendrift.readers.basereader.unstructured.UnstructuredReader method)</a>
<ul>
<li><a href="autoapi/opendrift/readers/basereader/index.html#opendrift.readers.basereader.UnstructuredReader._build_rtree_">(opendrift.readers.basereader.UnstructuredReader method)</a>
</li>
</ul></li>
<li><a href="autoapi/opendrift/config/index.html#opendrift.config.Configurable._config">_config (opendrift.config.Configurable attribute)</a>
<ul>
<li><a href="autoapi/opendrift/models/basemodel/index.html#opendrift.models.basemodel.Configurable._config">(opendrift.models.basemodel.Configurable attribute)</a>
</li>
<li><a href="autoapi/opendrift/models/basemodel/index.html#opendrift.models.basemodel.Environment._config">(opendrift.models.basemodel.Environment attribute)</a>
</li>
<li><a href="autoapi/opendrift/models/basemodel/environment/index.html#opendrift.models.basemodel.environment.Environment._config">(opendrift.models.basemodel.environment.Environment attribute)</a>
</li>
</ul></li>
<li><a href="autoapi/opendrift/readers/basereader/structured/index.html#opendrift.readers.basereader.structured.StructuredReader._coverage_unit_">_coverage_unit_() (opendrift.readers.basereader.structured.StructuredReader method)</a>
<ul>
<li><a href="autoapi/opendrift/readers/basereader/index.html#opendrift.readers.basereader.StructuredReader._coverage_unit_">(opendrift.readers.basereader.StructuredReader method)</a>
</li>
<li><a href="autoapi/opendrift/readers/basereader/variables/index.html#opendrift.readers.basereader.variables.ReaderDomain._coverage_unit_">(opendrift.readers.basereader.variables.ReaderDomain method)</a>
</li>
</ul></li>
<li><a href="autoapi/opendrift/models/basemodel/index.html#opendrift.models.basemodel.OpenDriftSimulation._figure_title">_figure_title() (opendrift.models.basemodel.OpenDriftSimulation method)</a>
</li>
<li><a href="autoapi/opendrift/models/basemodel/index.html#opendrift.models.basemodel.OpenDriftSimulation._get_comparison_xy_for_plots">_get_comparison_xy_for_plots() (opendrift.models.basemodel.OpenDriftSimulation method)</a>
</li>
<li><a href="autoapi/opendrift/readers/basereader/continuous/index.html#opendrift.readers.basereader.continuous.ContinuousReader._get_variables_interpolated_">_get_variables_interpolated_() (opendrift.readers.basereader.continuous.ContinuousReader method)</a>
<ul>
<li><a href="autoapi/opendrift/readers/basereader/index.html#opendrift.readers.basereader.ContinuousReader._get_variables_interpolated_">(opendrift.readers.basereader.ContinuousReader method)</a>
</li>
<li><a href="autoapi/opendrift/readers/basereader/structured/index.html#opendrift.readers.basereader.structured.StructuredReader._get_variables_interpolated_">(opendrift.readers.basereader.structured.StructuredReader method)</a>
</li>
<li><a href="autoapi/opendrift/readers/basereader/index.html#opendrift.readers.basereader.StructuredReader._get_variables_interpolated_">(opendrift.readers.basereader.StructuredReader method)</a>
</li>
<li><a href="autoapi/opendrift/readers/basereader/unstructured/index.html#opendrift.readers.basereader.unstructured.UnstructuredReader._get_variables_interpolated_">(opendrift.readers.basereader.unstructured.UnstructuredReader method)</a>
</li>
<li><a href="autoapi/opendrift/readers/basereader/index.html#opendrift.readers.basereader.UnstructuredReader._get_variables_interpolated_">(opendrift.readers.basereader.UnstructuredReader method)</a>
</li>
<li><a href="autoapi/opendrift/readers/basereader/index.html#opendrift.readers.basereader.Variables._get_variables_interpolated_">(opendrift.readers.basereader.Variables method)</a>
</li>
<li><a href="autoapi/opendrift/readers/basereader/variables/index.html#opendrift.readers.basereader.variables.Variables._get_variables_interpolated_">(opendrift.readers.basereader.variables.Variables method)</a>
</li>
<li><a href="autoapi/opendrift/readers/reader_schism_native/index.html#opendrift.readers.reader_schism_native.Reader._get_variables_interpolated_">(opendrift.readers.reader_schism_native.Reader method)</a>
</li>
</ul></li>
<li><a href="autoapi/opendrift/models/basemodel/index.html#opendrift.models.basemodel.Environment._initialise_next_lazy_reader">_initialise_next_lazy_reader() (opendrift.models.basemodel.Environment method)</a>
<ul>
<li><a href="autoapi/opendrift/models/basemodel/environment/index.html#opendrift.models.basemodel.environment.Environment._initialise_next_lazy_reader">(opendrift.models.basemodel.environment.Environment method)</a>
</li>
</ul></li>
<li><a href="autoapi/opendrift/readers/basereader/index.html#opendrift.readers.basereader.ReaderBlock._initialize_interpolator">_initialize_interpolator() (opendrift.readers.basereader.ReaderBlock method)</a>
<ul>
<li><a href="autoapi/opendrift/readers/interpolation/index.html#opendrift.readers.interpolation.ReaderBlock._initialize_interpolator">(opendrift.readers.interpolation.ReaderBlock method)</a>
</li>
<li><a href="autoapi/opendrift/readers/interpolation/structured/index.html#opendrift.readers.interpolation.structured.ReaderBlock._initialize_interpolator">(opendrift.readers.interpolation.structured.ReaderBlock method)</a>
</li>
<li><a href="autoapi/opendrift/readers/reader_schism_native/index.html#opendrift.readers.reader_schism_native.ReaderBlockUnstruct._initialize_interpolator">(opendrift.readers.reader_schism_native.ReaderBlockUnstruct method)</a>
</li>
</ul></li>
<li><a href="autoapi/opendrift/readers/basereader/index.html#opendrift.readers.basereader.ReaderBlock._interpolate_horizontal_layers">_interpolate_horizontal_layers() (opendrift.readers.basereader.ReaderBlock method)</a>
<ul>
<li><a href="autoapi/opendrift/readers/interpolation/index.html#opendrift.readers.interpolation.ReaderBlock._interpolate_horizontal_layers">(opendrift.readers.interpolation.ReaderBlock method)</a>
</li>
<li><a href="autoapi/opendrift/readers/interpolation/structured/index.html#opendrift.readers.interpolation.structured.ReaderBlock._interpolate_horizontal_layers">(opendrift.readers.interpolation.structured.ReaderBlock method)</a>
</li>
<li><a href="autoapi/opendrift/readers/reader_schism_native/index.html#opendrift.readers.reader_schism_native.ReaderBlockUnstruct._interpolate_horizontal_layers">(opendrift.readers.reader_schism_native.ReaderBlockUnstruct method)</a>
</li>
</ul></li>
<li><a href="autoapi/opendrift/readers/reader_lazy/index.html#opendrift.readers.reader_lazy.Reader._kwargs">_kwargs (opendrift.readers.reader_lazy.Reader attribute)</a>
</li>
<li><a href="autoapi/opendrift/models/basemodel/index.html#opendrift.models.basemodel.Environment._lazy_readers">_lazy_readers() (opendrift.models.basemodel.Environment method)</a>
<ul>
<li><a href="autoapi/opendrift/models/basemodel/environment/index.html#opendrift.models.basemodel.environment.Environment._lazy_readers">(opendrift.models.basemodel.environment.Environment method)</a>
</li>
</ul></li>
<li><a href="autoapi/opendrift/readers/basereader/structured/index.html#opendrift.readers.basereader.structured.StructuredReader._make_projected_grid_">_make_projected_grid_() (opendrift.readers.basereader.structured.StructuredReader method)</a>
<ul>
<li><a href="autoapi/opendrift/readers/basereader/index.html#opendrift.readers.basereader.StructuredReader._make_projected_grid_">(opendrift.readers.basereader.StructuredReader method)</a>
</li>
</ul></li>
<li><a href="autoapi/opendrift/readers/reader_ROMS_native/index.html#opendrift.readers.reader_ROMS_native.Reader._mask_rho">_mask_rho (opendrift.readers.reader_ROMS_native.Reader attribute)</a>
</li>
<li><a href="autoapi/opendrift/readers/reader_ROMS_native/index.html#opendrift.readers.reader_ROMS_native.Reader._mask_u">_mask_u (opendrift.readers.reader_ROMS_native.Reader attribute)</a>
</li>
<li><a href="autoapi/opendrift/readers/reader_ROMS_native/index.html#opendrift.readers.reader_ROMS_native.Reader._mask_v">_mask_v (opendrift.readers.reader_ROMS_native.Reader attribute)</a>
</li>
<li><a href="autoapi/opendrift/readers/basereader/unstructured/index.html#opendrift.readers.basereader.unstructured.UnstructuredReader._nearest_face_">_nearest_face_() (opendrift.readers.basereader.unstructured.UnstructuredReader method)</a>
<ul>
<li><a href="autoapi/opendrift/readers/basereader/index.html#opendrift.readers.basereader.UnstructuredReader._nearest_face_">(opendrift.readers.basereader.UnstructuredReader method)</a>
</li>
</ul></li>
<li><a href="autoapi/opendrift/readers/basereader/unstructured/index.html#opendrift.readers.basereader.unstructured.UnstructuredReader._nearest_node_">_nearest_node_() (opendrift.readers.basereader.unstructured.UnstructuredReader method)</a>
<ul>
<li><a href="autoapi/opendrift/readers/basereader/index.html#opendrift.readers.basereader.UnstructuredReader._nearest_node_">(opendrift.readers.basereader.UnstructuredReader method)</a>
</li>
</ul></li>
<li><a href="autoapi/opendrift/readers/reader_constant/index.html#opendrift.readers.reader_constant.Reader._parameter_value_map">_parameter_value_map (opendrift.readers.reader_constant.Reader attribute)</a>
<ul>
<li><a href="autoapi/opendrift/readers/reader_timeseries/index.html#opendrift.readers.reader_timeseries.Reader._parameter_value_map">(opendrift.readers.reader_timeseries.Reader attribute)</a>
</li>
</ul></li>
<li><a href="autoapi/opendrift/models/basemodel/index.html#opendrift.models.basemodel.OpenDriftSimulation._plot_drifter">_plot_drifter() (opendrift.models.basemodel.OpenDriftSimulation method)</a>
</li>
<li><a href="autoapi/opendrift/config/index.html#opendrift.config.Configurable._set_config_default">_set_config_default() (opendrift.config.Configurable method)</a>
<ul>
<li><a href="autoapi/opendrift/models/basemodel/index.html#opendrift.models.basemodel.Configurable._set_config_default">(opendrift.models.basemodel.Configurable method)</a>
</li>
</ul></li>
<li><a href="autoapi/opendrift/readers/basereader/structured/index.html#opendrift.readers.basereader.structured.StructuredReader._slice_variable_">_slice_variable_() (opendrift.readers.basereader.structured.StructuredReader method)</a>
<ul>
<li><a href="autoapi/opendrift/readers/basereader/index.html#opendrift.readers.basereader.StructuredReader._slice_variable_">(opendrift.readers.basereader.StructuredReader method)</a>
</li>
</ul></li>
<li><a href="autoapi/opendrift/models/basemodel/index.html#opendrift.models.basemodel.OpenDriftSimulation._sphinx_gallery_filename">_sphinx_gallery_filename() (opendrift.models.basemodel.OpenDriftSimulation method)</a>
</li>
<li><a href="autoapi/opendrift/models/basemodel/index.html#opendrift.models.basemodel.OpenDriftSimulation._substance_name">_substance_name() (opendrift.models.basemodel.OpenDriftSimulation method)</a>
<ul>
<li><a href="autoapi/opendrift/models/leeway/index.html#opendrift.models.leeway.Leeway._substance_name">(opendrift.models.leeway.Leeway method)</a>
</li>
<li><a href="autoapi/opendrift/models/openoil/index.html#opendrift.models.openoil.OpenOil._substance_name">(opendrift.models.openoil.OpenOil method)</a>
</li>
<li><a href="autoapi/opendrift/models/openoil/openoil/index.html#opendrift.models.openoil.openoil.OpenOil._substance_name">(opendrift.models.openoil.openoil.OpenOil method)</a>
</li>
</ul></li>
<li><a href="autoapi/opendrift/models/basemodel/index.html#opendrift.models.basemodel.Environment._unlazy_readers">_unlazy_readers() (opendrift.models.basemodel.Environment method)</a>
<ul>
<li><a href="autoapi/opendrift/models/basemodel/environment/index.html#opendrift.models.basemodel.environment.Environment._unlazy_readers">(opendrift.models.basemodel.environment.Environment method)</a>
</li>
</ul></li>
<li><a href="autoapi/opendrift/readers/reader_netCDF_CF_unstructured/index.html#opendrift.readers.reader_netCDF_CF_unstructured.Reader._vector_nearest_">_vector_nearest_() (opendrift.readers.reader_netCDF_CF_unstructured.Reader static method)</a>
</li>
<li><a href="autoapi/opendrift/models/basemodel/index.html#opendrift.models.basemodel.PhysicsMethods._wave_frequency">_wave_frequency() (opendrift.models.basemodel.PhysicsMethods method)</a>
<ul>
<li><a href="autoapi/opendrift/models/physics_methods/index.html#opendrift.models.physics_methods.PhysicsMethods._wave_frequency">(opendrift.models.physics_methods.PhysicsMethods method)</a>
</li>
</ul></li>
<li><a href="autoapi/opendrift/readers/basereader/index.html#opendrift.readers.basereader.ReaderBlock._wrap_longitude">_wrap_longitude() (opendrift.readers.basereader.ReaderBlock method)</a>
<ul>
<li><a href="autoapi/opendrift/readers/interpolation/index.html#opendrift.readers.interpolation.ReaderBlock._wrap_longitude">(opendrift.readers.interpolation.ReaderBlock method)</a>
</li>
<li><a href="autoapi/opendrift/readers/interpolation/structured/index.html#opendrift.readers.interpolation.structured.ReaderBlock._wrap_longitude">(opendrift.readers.interpolation.structured.ReaderBlock method)</a>
</li>
</ul></li>
<li><a href="autoapi/opendrift/readers/reader_ROMS_native/index.html#opendrift.readers.reader_ROMS_native.Reader._zeta">_zeta (opendrift.readers.reader_ROMS_native.Reader attribute)</a>
</li>
</ul></td>
</tr></table>
<h2 id="A">A</h2>
<table style="width: 100%" class="indextable genindextable"><tr>
<td style="width: 33%; vertical-align: top;"><ul>
<li><a href="autoapi/opendrift/readers/operators/readerops/index.html#opendrift.readers.operators.readerops.Combined.a">a (opendrift.readers.operators.readerops.Combined attribute)</a>
</li>
<li><a href="autoapi/opendrift/readers/reader_double_gyre/index.html#opendrift.readers.reader_double_gyre.Reader.A">A (opendrift.readers.reader_double_gyre.Reader attribute)</a>
</li>
<li><a href="autoapi/opendrift/readers/basereader/index.html#opendrift.readers.basereader.Variables.activate_environment_mapping">activate_environment_mapping() (opendrift.readers.basereader.Variables method)</a>
<ul>
<li><a href="autoapi/opendrift/readers/basereader/variables/index.html#opendrift.readers.basereader.variables.Variables.activate_environment_mapping">(opendrift.readers.basereader.variables.Variables method)</a>
</li>
</ul></li>
<li><a href="autoapi/opendrift/readers/operators/numops/index.html#opendrift.readers.operators.numops.Combined.add">add() (opendrift.readers.operators.numops.Combined static method)</a>
</li>
<li><a href="autoapi/opendrift/models/basemodel/index.html#opendrift.models.basemodel.OpenDriftSimulation.add_halo_readers">add_halo_readers() (opendrift.models.basemodel.OpenDriftSimulation method)</a>
</li>
<li><a href="autoapi/opendrift/models/basemodel/index.html#opendrift.models.basemodel.OpenDriftSimulation.add_metadata">add_metadata() (opendrift.models.basemodel.OpenDriftSimulation method)</a>
</li>
<li><a href="autoapi/opendrift/models/basemodel/index.html#opendrift.models.basemodel.Environment.add_reader">add_reader() (opendrift.models.basemodel.Environment method)</a>
<ul>
<li><a href="autoapi/opendrift/models/basemodel/environment/index.html#opendrift.models.basemodel.environment.Environment.add_reader">(opendrift.models.basemodel.environment.Environment method)</a>
</li>
<li><a href="autoapi/opendrift/models/basemodel/index.html#opendrift.models.basemodel.OpenDriftSimulation.add_reader">(opendrift.models.basemodel.OpenDriftSimulation method)</a>
</li>
</ul></li>
<li><a href="autoapi/opendrift/models/basemodel/index.html#opendrift.models.basemodel.Environment.add_readers_from_file">add_readers_from_file() (opendrift.models.basemodel.Environment method)</a>
<ul>
<li><a href="autoapi/opendrift/models/basemodel/environment/index.html#opendrift.models.basemodel.environment.Environment.add_readers_from_file">(opendrift.models.basemodel.environment.Environment method)</a>
</li>
<li><a href="autoapi/opendrift/models/basemodel/index.html#opendrift.models.basemodel.OpenDriftSimulation.add_readers_from_file">(opendrift.models.basemodel.OpenDriftSimulation method)</a>
</li>
</ul></li>
<li><a href="autoapi/opendrift/models/basemodel/index.html#opendrift.models.basemodel.Environment.add_readers_from_list">add_readers_from_list() (opendrift.models.basemodel.Environment method)</a>
<ul>
<li><a href="autoapi/opendrift/models/basemodel/environment/index.html#opendrift.models.basemodel.environment.Environment.add_readers_from_list">(opendrift.models.basemodel.environment.Environment method)</a>
</li>
<li><a href="autoapi/opendrift/models/basemodel/index.html#opendrift.models.basemodel.OpenDriftSimulation.add_readers_from_list">(opendrift.models.basemodel.OpenDriftSimulation method)</a>
</li>
</ul></li>
<li><a href="autoapi/opendrift/elements/elements/index.html#opendrift.elements.elements.LagrangianArray.add_variables">add_variables() (opendrift.elements.elements.LagrangianArray class method)</a>
<ul>
<li><a href="autoapi/opendrift/elements/index.html#opendrift.elements.LagrangianArray.add_variables">(opendrift.elements.LagrangianArray class method)</a>
</li>
</ul></li>
<li><a href="autoapi/opendrift/models/openberg/index.html#opendrift.models.openberg.OpenBerg.advect_iceberg">advect_iceberg() (opendrift.models.openberg.OpenBerg method)</a>
</li>
<li><a href="autoapi/opendrift/models/openberg/index.html#opendrift.models.openberg.advect_iceberg_no_acc">advect_iceberg_no_acc() (in module opendrift.models.openberg)</a>
</li>
<li><a href="autoapi/opendrift/models/basemodel/index.html#opendrift.models.basemodel.PhysicsMethods.advect_ocean_current">advect_ocean_current() (opendrift.models.basemodel.PhysicsMethods method)</a>
<ul>
<li><a href="autoapi/opendrift/models/physics_methods/index.html#opendrift.models.physics_methods.PhysicsMethods.advect_ocean_current">(opendrift.models.physics_methods.PhysicsMethods method)</a>
</li>
</ul></li>
</ul></td>
<td style="width: 33%; vertical-align: top;"><ul>
<li><a href="autoapi/opendrift/models/openoil/index.html#opendrift.models.openoil.OpenOil.advect_oil">advect_oil() (opendrift.models.openoil.OpenOil method)</a>
<ul>
<li><a href="autoapi/opendrift/models/openoil/openoil/index.html#opendrift.models.openoil.openoil.OpenOil.advect_oil">(opendrift.models.openoil.openoil.OpenOil method)</a>
</li>
</ul></li>
<li><a href="autoapi/opendrift/models/basemodel/index.html#opendrift.models.basemodel.PhysicsMethods.advect_wind">advect_wind() (opendrift.models.basemodel.PhysicsMethods method)</a>
<ul>
<li><a href="autoapi/opendrift/models/physics_methods/index.html#opendrift.models.physics_methods.PhysicsMethods.advect_wind">(opendrift.models.physics_methods.PhysicsMethods method)</a>
</li>
</ul></li>
<li><a href="autoapi/opendrift/models/basemodel/index.html#opendrift.models.basemodel.PhysicsMethods.advect_with_sea_ice">advect_with_sea_ice() (opendrift.models.basemodel.PhysicsMethods method)</a>
<ul>
<li><a href="autoapi/opendrift/models/physics_methods/index.html#opendrift.models.physics_methods.PhysicsMethods.advect_with_sea_ice">(opendrift.models.physics_methods.PhysicsMethods method)</a>
</li>
</ul></li>
<li><a href="autoapi/opendrift/models/basemodel/index.html#opendrift.models.basemodel.PhysicsMethods.air_density">air_density() (opendrift.models.basemodel.PhysicsMethods method)</a>
<ul>
<li><a href="autoapi/opendrift/models/physics_methods/index.html#opendrift.models.physics_methods.PhysicsMethods.air_density">(opendrift.models.physics_methods.PhysicsMethods method)</a>
</li>
</ul></li>
<li><a href="autoapi/opendrift/readers/reader_telemac_selafin/index.html#opendrift.readers.reader_telemac_selafin.Reader.altitude_ID">altitude_ID (opendrift.readers.reader_telemac_selafin.Reader attribute)</a>
</li>
<li><a href="autoapi/opendrift/readers/basereader/index.html#opendrift.readers.basereader.BaseReader.always_valid">always_valid (opendrift.readers.basereader.BaseReader attribute)</a>
<ul>
<li><a href="autoapi/opendrift/readers/basereader/variables/index.html#opendrift.readers.basereader.variables.ReaderDomain.always_valid">(opendrift.readers.basereader.variables.ReaderDomain attribute)</a>
</li>
<li><a href="autoapi/opendrift/readers/reader_shape/index.html#opendrift.readers.reader_shape.Reader.always_valid">(opendrift.readers.reader_shape.Reader attribute)</a>
</li>
</ul></li>
<li><a href="autoapi/opendrift/readers/reader_oscillating/index.html#opendrift.readers.reader_oscillating.Reader.amplitude">amplitude (opendrift.readers.reader_oscillating.Reader attribute)</a>
</li>
<li><a href="autoapi/opendrift/readers/reader_ROMS_native/index.html#opendrift.readers.reader_ROMS_native.Reader.angle">angle (opendrift.readers.reader_ROMS_native.Reader property)</a>
</li>
<li><a href="autoapi/opendrift/models/oceandrift/index.html#opendrift.models.oceandrift.OceanDrift.animate_vertical_distribution">animate_vertical_distribution() (opendrift.models.oceandrift.OceanDrift method)</a>
<ul>
<li><a href="autoapi/opendrift/models/openoil/index.html#opendrift.models.openoil.OceanDrift.animate_vertical_distribution">(opendrift.models.openoil.OceanDrift method)</a>
</li>
</ul></li>
<li><a href="autoapi/opendrift/models/basemodel/index.html#opendrift.models.basemodel.OpenDriftSimulation.animation">animation() (opendrift.models.basemodel.OpenDriftSimulation method)</a>
</li>
<li><a href="autoapi/opendrift/models/basemodel/index.html#opendrift.models.basemodel.OpenDriftSimulation.animation_profile">animation_profile() (opendrift.models.basemodel.OpenDriftSimulation method)</a>
</li>
<li><a href="autoapi/opendrift/models/openoil/adios/oil/index.html#opendrift.models.openoil.adios.oil.OpendriftOil.API">API (opendrift.models.openoil.adios.oil.OpendriftOil attribute)</a>
</li>
<li><a href="autoapi/opendrift/readers/index.html#opendrift.readers.applicable_readers">applicable_readers() (in module opendrift.readers)</a>
</li>
<li><a href="autoapi/opendrift/readers/reader_constant_2d/index.html#opendrift.readers.reader_constant_2d.Reader.array_dict">array_dict (opendrift.readers.reader_constant_2d.Reader attribute)</a>
</li>
<li><a href="autoapi/NO00159_SVALE/index.html#NO00159_SVALE.asphaltenes_percent">asphaltenes_percent (in module NO00159_SVALE)</a>
</li>
</ul></td>
</tr></table>
<h2 id="B">B</h2>
<table style="width: 100%" class="indextable genindextable"><tr>
<td style="width: 33%; vertical-align: top;"><ul>
<li><a href="autoapi/opendrift/readers/operators/readerops/index.html#opendrift.readers.operators.readerops.Combined.b">b (opendrift.readers.operators.readerops.Combined attribute)</a>
</li>
<li><a href="autoapi/opendrift/readers/basereader/index.html#opendrift.readers.basereader.BaseReader">BaseReader (class in opendrift.readers.basereader)</a>
</li>
<li><a href="autoapi/opendrift/models/openoil/index.html#opendrift.models.openoil.OpenOil.biodegradation">biodegradation() (opendrift.models.openoil.OpenOil method)</a>
<ul>
<li><a href="autoapi/opendrift/models/openoil/openoil/index.html#opendrift.models.openoil.openoil.OpenOil.biodegradation">(opendrift.models.openoil.openoil.OpenOil method)</a>
</li>
</ul></li>
<li><a href="autoapi/opendrift/models/openoil/index.html#opendrift.models.openoil.OpenOil.biodegradation_adcroft">biodegradation_adcroft() (opendrift.models.openoil.OpenOil method)</a>
<ul>
<li><a href="autoapi/opendrift/models/openoil/openoil/index.html#opendrift.models.openoil.openoil.OpenOil.biodegradation_adcroft">(opendrift.models.openoil.openoil.OpenOil method)</a>
</li>
</ul></li>
<li><a href="autoapi/opendrift/models/openoil/index.html#opendrift.models.openoil.OpenOil.biodegradation_half_time">biodegradation_half_time() (opendrift.models.openoil.OpenOil method)</a>
<ul>
<li><a href="autoapi/opendrift/models/openoil/openoil/index.html#opendrift.models.openoil.openoil.OpenOil.biodegradation_half_time">(opendrift.models.openoil.openoil.OpenOil method)</a>
</li>
</ul></li>
<li><a href="autoapi/opendrift/models/openoil/adios/harvest_oils/index.html#opendrift.models.openoil.adios.harvest_oils.blacklist">blacklist (in module opendrift.models.openoil.adios.harvest_oils)</a>
</li>
<li><a href="autoapi/opendrift/readers/reader_schism_native/index.html#opendrift.readers.reader_schism_native.ReaderBlockUnstruct.block_KDtree">block_KDtree (opendrift.readers.reader_schism_native.ReaderBlockUnstruct attribute)</a>
</li>
<li><a href="autoapi/opendrift/readers/interpolation/interpolators/index.html#opendrift.readers.interpolation.interpolators.LinearND2DInterpolator.block_x">block_x (opendrift.readers.interpolation.interpolators.LinearND2DInterpolator attribute)</a>
<ul>
<li><a href="autoapi/opendrift/readers/interpolation/index.html#opendrift.readers.interpolation.LinearND2DInterpolator.block_x">(opendrift.readers.interpolation.LinearND2DInterpolator attribute)</a>
</li>
</ul></li>
<li><a href="autoapi/opendrift/readers/interpolation/interpolators/index.html#opendrift.readers.interpolation.interpolators.LinearND2DInterpolator.block_y">block_y (opendrift.readers.interpolation.interpolators.LinearND2DInterpolator attribute)</a>
<ul>
<li><a href="autoapi/opendrift/readers/interpolation/index.html#opendrift.readers.interpolation.LinearND2DInterpolator.block_y">(opendrift.readers.interpolation.LinearND2DInterpolator attribute)</a>
</li>
</ul></li>
<li><a href="autoapi/opendrift/models/chemicaldrift/index.html#opendrift.models.chemicaldrift.ChemicalDrift.bottom_interaction">bottom_interaction() (opendrift.models.chemicaldrift.ChemicalDrift method)</a>
<ul>
<li><a href="autoapi/opendrift/models/model_template/index.html#opendrift.models.model_template.ModelTemplate.bottom_interaction">(opendrift.models.model_template.ModelTemplate method)</a>
</li>
<li><a href="autoapi/opendrift/models/oceandrift/index.html#opendrift.models.oceandrift.OceanDrift.bottom_interaction">(opendrift.models.oceandrift.OceanDrift method)</a>
</li>
<li><a href="autoapi/opendrift/models/openoil/index.html#opendrift.models.openoil.OceanDrift.bottom_interaction">(opendrift.models.openoil.OceanDrift method)</a>
</li>
<li><a href="autoapi/opendrift/models/radionuclides/index.html#opendrift.models.radionuclides.RadionuclideDrift.bottom_interaction">(opendrift.models.radionuclides.RadionuclideDrift method)</a>
</li>
<li><a href="autoapi/opendrift/models/sedimentdrift/index.html#opendrift.models.sedimentdrift.SedimentDrift.bottom_interaction">(opendrift.models.sedimentdrift.SedimentDrift method)</a>
</li>
</ul></li>
</ul></td>
<td style="width: 33%; vertical-align: top;"><ul>
<li><a href="autoapi/opendrift/readers/basereader/unstructured/index.html#opendrift.readers.basereader.unstructured.UnstructuredReader.boundary">boundary (opendrift.readers.basereader.unstructured.UnstructuredReader attribute)</a>
<ul>
<li><a href="autoapi/opendrift/readers/basereader/index.html#opendrift.readers.basereader.UnstructuredReader.boundary">(opendrift.readers.basereader.UnstructuredReader attribute)</a>
</li>
<li><a href="autoapi/opendrift/readers/reader_netCDF_CF_unstructured/index.html#opendrift.readers.reader_netCDF_CF_unstructured.Reader.boundary">(opendrift.readers.reader_netCDF_CF_unstructured.Reader attribute)</a>
</li>
<li><a href="autoapi/opendrift/readers/reader_schism_native/index.html#opendrift.readers.reader_schism_native.Reader.boundary">(opendrift.readers.reader_schism_native.Reader attribute)</a>
</li>
<li><a href="autoapi/opendrift/readers/reader_telemac_selafin/index.html#opendrift.readers.reader_telemac_selafin.Reader.boundary">(opendrift.readers.reader_telemac_selafin.Reader attribute)</a>
</li>
<li><a href="autoapi/shyfem/index.html#shyfem.Reader.boundary">(shyfem.Reader attribute)</a>
</li>
</ul></li>
<li><a href="autoapi/opendrift/readers/basereader/index.html#opendrift.readers.basereader.Variables.buffer">buffer (opendrift.readers.basereader.Variables attribute)</a>
<ul>
<li><a href="autoapi/opendrift/readers/basereader/variables/index.html#opendrift.readers.basereader.variables.Variables.buffer">(opendrift.readers.basereader.variables.Variables attribute)</a>
</li>
</ul></li>
<li><a href="autoapi/opendrift/models/openoil/adios/oil/index.html#opendrift.models.openoil.adios.oil.OpendriftOil.bulltime">bulltime (opendrift.models.openoil.adios.oil.OpendriftOil property)</a>
</li>
<li><a href="autoapi/opendrift/models/openoil/adios/oil/index.html#opendrift.models.openoil.adios.oil.OpendriftOil.bullwinkle">bullwinkle (opendrift.models.openoil.adios.oil.OpendriftOil property)</a>
</li>
</ul></td>
</tr></table>
<h2 id="C">C</h2>
<table style="width: 100%" class="indextable genindextable"><tr>
<td style="width: 33%; vertical-align: top;"><ul>
<li><a href="autoapi/opendrift/models/chemicaldrift/index.html#opendrift.models.chemicaldrift.ChemicalDrift.calc_KOC_sedcorr">calc_KOC_sedcorr() (opendrift.models.chemicaldrift.ChemicalDrift method)</a>
</li>
<li><a href="autoapi/opendrift/models/chemicaldrift/index.html#opendrift.models.chemicaldrift.ChemicalDrift.calc_KOC_watcorrDOM">calc_KOC_watcorrDOM() (opendrift.models.chemicaldrift.ChemicalDrift method)</a>
</li>
<li><a href="autoapi/opendrift/models/chemicaldrift/index.html#opendrift.models.chemicaldrift.ChemicalDrift.calc_KOC_watcorrSPM">calc_KOC_watcorrSPM() (opendrift.models.chemicaldrift.ChemicalDrift method)</a>
</li>
<li><a href="autoapi/opendrift/models/basemodel/index.html#opendrift.models.basemodel.OpenDriftSimulation.calculate_ftle">calculate_ftle() (opendrift.models.basemodel.OpenDriftSimulation method)</a>
</li>
<li><a href="autoapi/opendrift/models/basemodel/index.html#opendrift.models.basemodel.PhysicsMethods.calculate_missing_environment_variables">calculate_missing_environment_variables() (opendrift.models.basemodel.PhysicsMethods method)</a>
<ul>
<li><a href="autoapi/opendrift/models/physics_methods/index.html#opendrift.models.physics_methods.PhysicsMethods.calculate_missing_environment_variables">(opendrift.models.physics_methods.PhysicsMethods method)</a>
</li>
</ul></li>
<li><a href="autoapi/opendrift/models/leeway/index.html#opendrift.models.leeway.Leeway.capsize_probability">capsize_probability() (opendrift.models.leeway.Leeway method)</a>
</li>
<li><a href="autoapi/opendrift/models/eulerdrift/grid/index.html#opendrift.models.eulerdrift.grid.RegularGrid.ccrs">ccrs (opendrift.models.eulerdrift.grid.RegularGrid attribute)</a>
</li>
<li><a href="autoapi/opendrift/models/eulerdrift/grid/index.html#opendrift.models.eulerdrift.grid.RegularGrid.center">center() (opendrift.models.eulerdrift.grid.RegularGrid method)</a>
<ul>
<li><a href="autoapi/opendrift/readers/basereader/variables/index.html#opendrift.readers.basereader.variables.ReaderDomain.center">(opendrift.readers.basereader.variables.ReaderDomain method)</a>
</li>
</ul></li>
<li><a href="autoapi/opendrift/models/basemodel/index.html#opendrift.models.basemodel.OpenDriftSimulation.center_of_gravity">center_of_gravity() (opendrift.models.basemodel.OpenDriftSimulation method)</a>
</li>
<li><a href="autoapi/opendrift/readers/basereader/variables/index.html#opendrift.readers.basereader.variables.ReaderDomain.check_arguments">check_arguments() (opendrift.readers.basereader.variables.ReaderDomain method)</a>
</li>
<li><a href="autoapi/opendrift_gui/index.html#opendrift_gui.OpenDriftGUI.check_seeding">check_seeding() (opendrift_gui.OpenDriftGUI method)</a>
</li>
<li><a href="autoapi/opendrift/models/radionuclides/index.html#opendrift.models.radionuclides.RadionuclideDrift.check_speciation">check_speciation() (opendrift.models.radionuclides.RadionuclideDrift method)</a>
</li>
<li><a href="autoapi/opendrift/models/chemicaldrift/index.html#opendrift.models.chemicaldrift.Chemical">Chemical (class in opendrift.models.chemicaldrift)</a>
</li>
<li><a href="autoapi/opendrift/models/chemicaldrift/index.html#opendrift.models.chemicaldrift.ChemicalDrift">ChemicalDrift (class in opendrift.models.chemicaldrift)</a>
</li>
<li><a href="autoapi/parse_oil_pdf/index.html#parse_oil_pdf.ParseOilPDF.clicktable">clicktable() (parse_oil_pdf.ParseOilPDF method)</a>
</li>
<li><a href="autoapi/opendrift/readers/basereader/index.html#opendrift.readers.basereader.BaseReader.clip_boundary_pixels">clip_boundary_pixels() (opendrift.readers.basereader.BaseReader method)</a>
</li>
<li><a href="autoapi/opendrift/readers/basereader/structured/index.html#opendrift.readers.basereader.structured.StructuredReader.clipped">clipped (opendrift.readers.basereader.structured.StructuredReader attribute)</a>
<ul>
<li><a href="autoapi/opendrift/readers/basereader/index.html#opendrift.readers.basereader.StructuredReader.clipped">(opendrift.readers.basereader.StructuredReader attribute)</a>
</li>
</ul></li>
<li><a href="autoapi/opendrift/models/basemodel/index.html#opendrift.models.basemodel.OpenDriftSimulation.clone">clone() (opendrift.models.basemodel.OpenDriftSimulation method)</a>
</li>
<li><a href="autoapi/opendrift/export/io_netcdf/index.html#opendrift.export.io_netcdf.close">close() (in module opendrift.export.io_netcdf)</a>
<ul>
<li><a href="autoapi/opendrift/export/io_parquet/index.html#opendrift.export.io_parquet.close">(in module opendrift.export.io_parquet)</a>
</li>
</ul></li>
<li><a href="autoapi/opendrift/models/basemodel/index.html#opendrift.models.basemodel.OpenDriftSimulation.closest_ocean_points">closest_ocean_points() (opendrift.models.basemodel.OpenDriftSimulation method)</a>
</li>
<li><a href="autoapi/opendrift_gui/index.html#opendrift_gui.OpenDriftGUI.coastline">coastline (opendrift_gui.OpenDriftGUI attribute)</a>
</li>
<li><a href="autoapi/opendrift/readers/basereader/index.html#opendrift.readers.basereader.Combine">Combine (class in opendrift.readers.basereader)</a>
<ul>
<li><a href="autoapi/opendrift/readers/operators/ops/index.html#opendrift.readers.operators.ops.Combine">(class in opendrift.readers.operators.ops)</a>
</li>
</ul></li>
<li><a href="autoapi/opendrift/readers/basereader/index.html#opendrift.readers.basereader.Combine.combine_gaussian">combine_gaussian() (opendrift.readers.basereader.Combine method)</a>
<ul>
<li><a href="autoapi/opendrift/readers/operators/ops/index.html#opendrift.readers.operators.ops.Combine.combine_gaussian">(opendrift.readers.operators.ops.Combine method)</a>
</li>
</ul></li>
<li><a href="autoapi/opendrift/readers/operators/numops/index.html#opendrift.readers.operators.numops.Combined">Combined (class in opendrift.readers.operators.numops)</a>
<ul>
<li><a href="autoapi/opendrift/readers/operators/readerops/index.html#opendrift.readers.operators.readerops.Combined">(class in opendrift.readers.operators.readerops)</a>
</li>
</ul></li>
<li><a href="autoapi/opendrift/models/openberg_old/index.html#opendrift.models.openberg_old.OpenBergOld.composite_iceberg">composite_iceberg() (opendrift.models.openberg_old.OpenBergOld method)</a>
</li>
<li><a href="autoapi/opendrift_gui/index.html#opendrift_gui.OpenDriftGUI.config">config (opendrift_gui.OpenDriftGUI attribute)</a>
</li>
<li><a href="autoapi/opendrift/config/index.html#opendrift.config.CONFIG_LEVEL_ADVANCED">CONFIG_LEVEL_ADVANCED (in module opendrift.config)</a>
<ul>
<li><a href="autoapi/opendrift/models/basemodel/index.html#opendrift.models.basemodel.CONFIG_LEVEL_ADVANCED">(in module opendrift.models.basemodel)</a>
</li>
<li><a href="autoapi/opendrift/models/openoil/index.html#opendrift.models.openoil.CONFIG_LEVEL_ADVANCED">(in module opendrift.models.openoil)</a>
</li>
</ul></li>
<li><a href="autoapi/opendrift/config/index.html#opendrift.config.CONFIG_LEVEL_BASIC">CONFIG_LEVEL_BASIC (in module opendrift.config)</a>
<ul>
<li><a href="autoapi/opendrift/models/basemodel/index.html#opendrift.models.basemodel.CONFIG_LEVEL_BASIC">(in module opendrift.models.basemodel)</a>
</li>
<li><a href="autoapi/opendrift/models/openoil/index.html#opendrift.models.openoil.CONFIG_LEVEL_BASIC">(in module opendrift.models.openoil)</a>
</li>
</ul></li>
<li><a href="autoapi/opendrift/config/index.html#opendrift.config.CONFIG_LEVEL_ESSENTIAL">CONFIG_LEVEL_ESSENTIAL (in module opendrift.config)</a>
<ul>
<li><a href="autoapi/opendrift/models/basemodel/index.html#opendrift.models.basemodel.CONFIG_LEVEL_ESSENTIAL">(in module opendrift.models.basemodel)</a>
</li>
<li><a href="autoapi/opendrift/models/openoil/index.html#opendrift.models.openoil.CONFIG_LEVEL_ESSENTIAL">(in module opendrift.models.openoil)</a>
</li>
</ul></li>
</ul></td>
<td style="width: 33%; vertical-align: top;"><ul>
<li><a href="autoapi/opendrift_gui/index.html#opendrift_gui.OpenDriftGUI.confignotebook">confignotebook (opendrift_gui.OpenDriftGUI attribute)</a>
</li>
<li><a href="autoapi/opendrift/config/index.html#opendrift.config.Configurable">Configurable (class in opendrift.config)</a>
<ul>
<li><a href="autoapi/opendrift/models/basemodel/index.html#opendrift.models.basemodel.Configurable">(class in opendrift.models.basemodel)</a>
</li>
</ul></li>
<li><a href="autoapi/opendrift/models/eulerdrift/index.html#opendrift.models.eulerdrift.ConstantReader">ConstantReader (class in opendrift.models.eulerdrift)</a>
<ul>
<li><a href="autoapi/opendrift/models/eulerdrift/readers/index.html#opendrift.models.eulerdrift.readers.ConstantReader">(class in opendrift.models.eulerdrift.readers)</a>
</li>
</ul></li>
<li><a href="autoapi/opendrift/models/eulerdrift/index.html#opendrift.models.eulerdrift.ConstantReader.consts">consts (opendrift.models.eulerdrift.ConstantReader attribute)</a>
<ul>
<li><a href="autoapi/opendrift/models/eulerdrift/readers/index.html#opendrift.models.eulerdrift.readers.ConstantReader.consts">(opendrift.models.eulerdrift.readers.ConstantReader attribute)</a>
</li>
</ul></li>
<li><a href="autoapi/opendrift/models/eulerdrift/grid/index.html#opendrift.models.eulerdrift.grid.RegularGrid.contains">contains() (opendrift.models.eulerdrift.grid.RegularGrid method)</a>
</li>
<li><a href="autoapi/opendrift/readers/basereader/index.html#opendrift.readers.basereader.ContinuousReader">ContinuousReader (class in opendrift.readers.basereader)</a>
<ul>
<li><a href="autoapi/opendrift/readers/basereader/continuous/index.html#opendrift.readers.basereader.continuous.ContinuousReader">(class in opendrift.readers.basereader.continuous)</a>
</li>
</ul></li>
<li><a href="autoapi/opendrift/readers/reader_schism_native/index.html#opendrift.readers.reader_schism_native.Reader.convert_3d_to_array">convert_3d_to_array() (opendrift.readers.reader_schism_native.Reader method)</a>
</li>
<li><a href="autoapi/opendrift_gui/index.html#opendrift_gui.OpenDriftGUI.convert_lonlat">convert_lonlat() (opendrift_gui.OpenDriftGUI method)</a>
</li>
<li><a href="autoapi/opendrift/readers/basereader/structured/index.html#opendrift.readers.basereader.structured.StructuredReader.convolve">convolve (opendrift.readers.basereader.structured.StructuredReader attribute)</a>
<ul>
<li><a href="autoapi/opendrift/readers/basereader/index.html#opendrift.readers.basereader.StructuredReader.convolve">(opendrift.readers.basereader.StructuredReader attribute)</a>
</li>
<li><a href="autoapi/opendrift/readers/reader_schism_native/index.html#opendrift.readers.reader_schism_native.Reader.convolve">(opendrift.readers.reader_schism_native.Reader attribute)</a>
</li>
</ul></li>
<li><a href="autoapi/opendrift_gui/index.html#opendrift_gui.OpenDriftGUI.copy_position">copy_position() (opendrift_gui.OpenDriftGUI method)</a>
</li>
<li><a href="autoapi/opendrift/models/openberg/index.html#opendrift.models.openberg.coriolis_force">coriolis_force() (in module opendrift.models.openberg)</a>
</li>
<li><a href="autoapi/opendrift/readers/basereader/variables/index.html#opendrift.readers.basereader.variables.ReaderDomain.coverage_string">coverage_string() (opendrift.readers.basereader.variables.ReaderDomain method)</a>
</li>
<li><a href="autoapi/opendrift/readers/basereader/index.html#opendrift.readers.basereader.ReaderBlock.covers_positions">covers_positions() (opendrift.readers.basereader.ReaderBlock method)</a>
<ul>
<li><a href="autoapi/opendrift/readers/basereader/unstructured/index.html#opendrift.readers.basereader.unstructured.UnstructuredReader.covers_positions">(opendrift.readers.basereader.unstructured.UnstructuredReader method)</a>
</li>
<li><a href="autoapi/opendrift/readers/basereader/index.html#opendrift.readers.basereader.UnstructuredReader.covers_positions">(opendrift.readers.basereader.UnstructuredReader method)</a>
</li>
<li><a href="autoapi/opendrift/readers/basereader/variables/index.html#opendrift.readers.basereader.variables.ReaderDomain.covers_positions">(opendrift.readers.basereader.variables.ReaderDomain method)</a>
</li>
<li><a href="autoapi/opendrift/readers/interpolation/index.html#opendrift.readers.interpolation.ReaderBlock.covers_positions">(opendrift.readers.interpolation.ReaderBlock method)</a>
</li>
<li><a href="autoapi/opendrift/readers/interpolation/structured/index.html#opendrift.readers.interpolation.structured.ReaderBlock.covers_positions">(opendrift.readers.interpolation.structured.ReaderBlock method)</a>
</li>
<li><a href="autoapi/opendrift/readers/operators/readerops/index.html#opendrift.readers.operators.readerops.Combined.covers_positions">(opendrift.readers.operators.readerops.Combined method)</a>
</li>
<li><a href="autoapi/opendrift/readers/reader_schism_native/index.html#opendrift.readers.reader_schism_native.ReaderBlockUnstruct.covers_positions">(opendrift.readers.reader_schism_native.ReaderBlockUnstruct method)</a>
</li>
</ul></li>
<li><a href="autoapi/opendrift/readers/basereader/variables/index.html#opendrift.readers.basereader.variables.ReaderDomain.covers_positions_xy">covers_positions_xy() (opendrift.readers.basereader.variables.ReaderDomain method)</a>
<ul>
<li><a href="autoapi/opendrift/readers/reader_schism_native/index.html#opendrift.readers.reader_schism_native.Reader.covers_positions_xy">(opendrift.readers.reader_schism_native.Reader method)</a>
</li>
</ul></li>
<li><a href="autoapi/opendrift/readers/basereader/variables/index.html#opendrift.readers.basereader.variables.ReaderDomain.covers_time">covers_time() (opendrift.readers.basereader.variables.ReaderDomain method)</a>
<ul>
<li><a href="autoapi/opendrift/readers/operators/readerops/index.html#opendrift.readers.operators.readerops.Combined.covers_time">(opendrift.readers.operators.readerops.Combined method)</a>
</li>
</ul></li>
<li><a href="autoapi/opendrift_gui/index.html#opendrift_gui.CreateToolTip">CreateToolTip() (in module opendrift_gui)</a>
</li>
<li><a href="autoapi/opendrift/models/eulerdrift/grid/index.html#opendrift.models.eulerdrift.grid.RegularGrid.crs">crs (opendrift.models.eulerdrift.grid.RegularGrid attribute)</a>
<ul>
<li><a href="autoapi/opendrift/readers/basereader/fakeproj/index.html#opendrift.readers.basereader.fakeproj.fakeproj.crs">(opendrift.readers.basereader.fakeproj.fakeproj attribute)</a>
</li>
<li><a href="autoapi/opendrift/readers/reader_global_landmask/index.html#opendrift.readers.reader_global_landmask.Reader.crs">(opendrift.readers.reader_global_landmask.Reader attribute)</a>
</li>
<li><a href="autoapi/opendrift/readers/reader_shape/index.html#opendrift.readers.reader_shape.Reader.crs">(opendrift.readers.reader_shape.Reader attribute)</a>
</li>
</ul></li>
<li><a href="autoapi/opendrift/models/openberg/index.html#opendrift.models.openberg.csi">csi (in module opendrift.models.openberg)</a>
</li>
<li><a href="autoapi/opendrift/models/openoil/index.html#opendrift.models.openoil.OpenOil.cumulative_oil_entrainment_fraction">cumulative_oil_entrainment_fraction() (opendrift.models.openoil.OpenOil method)</a>
<ul>
<li><a href="autoapi/opendrift/models/openoil/openoil/index.html#opendrift.models.openoil.openoil.OpenOil.cumulative_oil_entrainment_fraction">(opendrift.models.openoil.openoil.OpenOil method)</a>
</li>
</ul></li>
<li><a href="autoapi/opendrift/models/basemodel/index.html#opendrift.models.basemodel.PhysicsMethods.current_speed">current_speed() (opendrift.models.basemodel.PhysicsMethods method)</a>
<ul>
<li><a href="autoapi/opendrift/models/physics_methods/index.html#opendrift.models.physics_methods.PhysicsMethods.current_speed">(opendrift.models.physics_methods.PhysicsMethods method)</a>
</li>
</ul></li>
<li><a href="autoapi/NO00159_SVALE/index.html#NO00159_SVALE.cuts">cuts (in module NO00159_SVALE)</a>
</li>
</ul></td>
</tr></table>
<h2 id="D">D</h2>
<table style="width: 100%" class="indextable genindextable"><tr>
<td style="width: 33%; vertical-align: top;"><ul>
<li><a href="autoapi/opendrift/models/eulerdrift/index.html#opendrift.models.eulerdrift.Simulation.D">D (opendrift.models.eulerdrift.Simulation attribute)</a>
<ul>
<li><a href="autoapi/opendrift/models/eulerdrift/simulation/index.html#opendrift.models.eulerdrift.simulation.Simulation.D">(opendrift.models.eulerdrift.simulation.Simulation attribute)</a>
</li>
</ul></li>
<li><a href="autoapi/opendrift/models/openoil/adios/oil/index.html#opendrift.models.openoil.adios.oil.OpendriftOil.data">data (opendrift.models.openoil.adios.oil.OpendriftOil attribute)</a>
</li>
<li><a href="autoapi/opendrift/readers/basereader/index.html#opendrift.readers.basereader.ReaderBlock.data_dict">data_dict (opendrift.readers.basereader.ReaderBlock attribute)</a>