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
|
"""Downloadable datasets of 3D Celestial Bodies."""
from __future__ import annotations
import numpy as np
import pyvista
from pyvista._deprecate_positional_args import _deprecate_positional_args
from pyvista.examples._dataset_loader import _download_dataset
from pyvista.examples._dataset_loader import _SingleFileDownloadableDatasetLoader
def _download_dataset_texture(
loader: _SingleFileDownloadableDatasetLoader, *, load: bool, texture: bool
):
dataset = _download_dataset(loader, load=load)
if texture:
from pyvista.plotting.texture import Texture # noqa: PLC0415
return Texture(dataset) # type: ignore[abstract]
return dataset
def _sphere_with_texture_map(radius=1.0, lat_resolution=50, lon_resolution=100):
"""Sphere with texture coordinates.
Parameters
----------
radius : float, default: 1.0
Sphere radius.
lat_resolution : int, default: 100
Set the number of points in the latitude direction.
lon_resolution : int, default: 100
Set the number of points in the longitude direction.
Returns
-------
pyvista.PolyData
Sphere mesh with texture coordinates.
"""
# https://github.com/pyvista/pyvista/pull/2994#issuecomment-1200520035
theta, phi = np.mgrid[0 : np.pi : lat_resolution * 1j, 0 : 2 * np.pi : lon_resolution * 1j] # type: ignore[misc]
x = radius * np.sin(theta) * np.cos(phi)
y = radius * np.sin(theta) * np.sin(phi)
z = radius * np.cos(theta)
sphere = pyvista.StructuredGrid(x, y, z)
texture_coords = np.empty((sphere.n_points, 2))
texture_coords[:, 0] = phi.ravel('F') / phi.max()
texture_coords[:, 1] = theta[::-1, :].ravel('F') / theta.max()
sphere.active_texture_coordinates = texture_coords
return sphere.extract_surface(pass_pointid=False, pass_cellid=False)
@_deprecate_positional_args
def load_sun(radius=1.0, lat_resolution=50, lon_resolution=100): # pragma: no cover
"""Load the Sun as a textured sphere.
Parameters
----------
radius : float, default: 1.0
Sphere radius.
lat_resolution : int, default: 50
Set the number of points in the latitude direction.
lon_resolution : int, default: 100
Set the number of points in the longitude direction.
Returns
-------
pyvista.PolyData
Sun dataset.
Examples
--------
>>> import pyvista as pv
>>> from pyvista import examples
>>> mesh = examples.planets.load_sun()
>>> texture = examples.planets.download_sun_surface(texture=True)
>>> image_path = examples.planets.download_stars_sky_background(load=False)
>>> mesh.plot(texture=texture, background=image_path)
.. seealso::
:func:`~pyvista.examples.planets.download_sun_surface`
Download the surface of the Sun.
:ref:`planets_example`
Example plot of the solar system.
"""
return _sphere_with_texture_map(
radius=radius,
lat_resolution=lat_resolution,
lon_resolution=lon_resolution,
)
@_deprecate_positional_args
def load_moon(radius=1.0, lat_resolution=50, lon_resolution=100): # pragma: no cover
"""Load the Moon as a textured sphere.
Parameters
----------
radius : float, default: 1.0
Sphere radius.
lat_resolution : int, default: 50
Set the number of points in the latitude direction.
lon_resolution : int, default: 100
Set the number of points in the longitude direction.
Returns
-------
pyvista.PolyData
Moon dataset.
Examples
--------
>>> import pyvista as pv
>>> from pyvista import examples
>>> mesh = examples.planets.load_moon()
>>> texture = examples.planets.download_moon_surface(texture=True)
>>> image_path = examples.planets.download_stars_sky_background(load=False)
>>> mesh.plot(texture=texture, background=image_path)
.. seealso::
:func:`~pyvista.examples.planets.download_moon_surface`
Download the surface of the Moon.
:ref:`planets_example`
Example plot of the solar system.
"""
return _sphere_with_texture_map(
radius=radius,
lat_resolution=lat_resolution,
lon_resolution=lon_resolution,
)
@_deprecate_positional_args
def load_mercury(radius=1.0, lat_resolution=50, lon_resolution=100): # pragma: no cover
"""Load the planet Mercury as a textured sphere.
Parameters
----------
radius : float, default: 1.0
Sphere radius.
lat_resolution : int, default: 50
Set the number of points in the latitude direction.
lon_resolution : int, default: 100
Set the number of points in the longitude direction.
Returns
-------
pyvista.PolyData
Mercury dataset.
Examples
--------
>>> import pyvista as pv
>>> from pyvista import examples
>>> mesh = examples.planets.load_mercury()
>>> texture = examples.planets.download_mercury_surface(texture=True)
>>> image_path = examples.planets.download_stars_sky_background(load=False)
>>> mesh.plot(texture=texture, background=image_path)
.. seealso::
:func:`~pyvista.examples.planets.download_mercury_surface`
Download the surface of Mercury.
:ref:`planets_example`
Example plot of the solar system.
"""
return _sphere_with_texture_map(
radius=radius,
lat_resolution=lat_resolution,
lon_resolution=lon_resolution,
)
@_deprecate_positional_args
def load_venus(radius=1.0, lat_resolution=50, lon_resolution=100): # pragma: no cover
"""Load the planet Venus as a textured sphere.
Parameters
----------
radius : float, default: 1.0
Sphere radius.
lat_resolution : int, default: 50
Set the number of points in the latitude direction.
lon_resolution : int, default: 100
Set the number of points in the longitude direction.
Returns
-------
pyvista.PolyData
Venus dataset.
Examples
--------
>>> import pyvista as pv
>>> from pyvista import examples
>>> mesh = examples.planets.load_venus()
>>> texture = examples.planets.download_venus_surface(texture=True)
>>> image_path = examples.planets.download_stars_sky_background(load=False)
>>> mesh.plot(texture=texture, background=image_path)
.. seealso::
:func:`~pyvista.examples.planets.download_venus_surface`
Download the surface of the Venus.
:ref:`planets_example`
Example plot of the solar system.
"""
return _sphere_with_texture_map(
radius=radius,
lat_resolution=lat_resolution,
lon_resolution=lon_resolution,
)
@_deprecate_positional_args
def load_earth(radius=1.0, lat_resolution=50, lon_resolution=100):
"""Load the planet Earth as a textured sphere.
Parameters
----------
radius : float, default: 1.0
Sphere radius.
lat_resolution : int, default: 50
Set the number of points in the latitude direction.
lon_resolution : int, default: 100
Set the number of points in the longitude direction.
Returns
-------
pyvista.PolyData
Earth dataset.
Examples
--------
>>> import pyvista as pv
>>> from pyvista import examples
>>> mesh = examples.planets.load_earth()
>>> texture = examples.load_globe_texture()
>>> image_path = examples.planets.download_stars_sky_background(load=False)
>>> mesh.plot(texture=texture, background=image_path)
.. seealso::
:func:`~pyvista.examples.examples.load_globe_texture`
Download the surface of the Earth.
:ref:`planets_example`
Example plot of the solar system.
"""
return _sphere_with_texture_map(
radius=radius,
lat_resolution=lat_resolution,
lon_resolution=lon_resolution,
)
@_deprecate_positional_args
def load_mars(radius=1.0, lat_resolution=50, lon_resolution=100): # pragma: no cover
"""Load the planet Mars as a textured Sphere.
Parameters
----------
radius : float, default: 1.0
Sphere radius.
lat_resolution : int, default: 50
Set the number of points in the latitude direction.
lon_resolution : int, default: 100
Set the number of points in the longitude direction.
Returns
-------
pyvista.PolyData
Mars dataset.
Examples
--------
>>> import pyvista as pv
>>> from pyvista import examples
>>> mesh = examples.planets.load_mars()
>>> texture = examples.planets.download_mars_surface(texture=True)
>>> image_path = examples.planets.download_stars_sky_background(load=False)
>>> mesh.plot(texture=texture, background=image_path)
.. seealso::
:func:`~pyvista.examples.planets.download_mars_surface`
Download the surface of Mars.
:ref:`planets_example`
Example plot of the solar system.
"""
return _sphere_with_texture_map(
radius=radius,
lat_resolution=lat_resolution,
lon_resolution=lon_resolution,
)
@_deprecate_positional_args
def load_jupiter(radius=1.0, lat_resolution=50, lon_resolution=100): # pragma: no cover
"""Load the planet Jupiter as a textured sphere.
Parameters
----------
radius : float, default: 1.0
Sphere radius.
lat_resolution : int, default: 50
Set the number of points in the latitude direction.
lon_resolution : int, default: 100
Set the number of points in the longitude direction.
Returns
-------
pyvista.PolyData
Jupiter dataset.
Examples
--------
>>> import pyvista as pv
>>> from pyvista import examples
>>> mesh = examples.planets.load_jupiter()
>>> texture = examples.planets.download_jupiter_surface(texture=True)
>>> image_path = examples.planets.download_stars_sky_background(load=False)
>>> mesh.plot(texture=texture, background=image_path)
.. seealso::
:func:`~pyvista.examples.planets.download_jupiter_surface`
Download the surface of Jupiter.
:ref:`planets_example`
Example plot of the solar system.
"""
return _sphere_with_texture_map(
radius=radius,
lat_resolution=lat_resolution,
lon_resolution=lon_resolution,
)
@_deprecate_positional_args
def load_saturn(radius=1.0, lat_resolution=50, lon_resolution=100): # pragma: no cover
"""Load the planet Saturn as a textured sphere.
Parameters
----------
radius : float, default: 1.0
Sphere radius.
lat_resolution : int, default: 50
Set the number of points in the latitude direction.
lon_resolution : int, default: 100
Set the number of points in the longitude direction.
Returns
-------
pyvista.PolyData
Saturn dataset.
Examples
--------
>>> import pyvista as pv
>>> from pyvista import examples
>>> mesh = examples.planets.load_saturn()
>>> texture = examples.planets.download_saturn_surface(texture=True)
>>> image_path = examples.planets.download_stars_sky_background(load=False)
>>> mesh.plot(texture=texture, background=image_path)
.. seealso::
:func:`~pyvista.examples.planets.download_saturn_surface`
Download the surface of Saturn.
:func:`~pyvista.examples.planets.load_saturn_rings`
Load Saturn's rings as a textured disc.
:func:`~pyvista.examples.planets.download_saturn_rings`
Download the texture of Saturn's rings.
:ref:`planets_example`
Example plot of the solar system.
"""
return _sphere_with_texture_map(
radius=radius,
lat_resolution=lat_resolution,
lon_resolution=lon_resolution,
)
@_deprecate_positional_args
def load_saturn_rings(inner=0.25, outer=0.5, c_res=6): # pragma: no cover
"""Load the planet Saturn's rings.
Arguments are passed on to :func:`pyvista.Disc`.
Parameters
----------
inner : float, optional
The inner radius.
outer : float, optional
The outer radius.
c_res : int, optional
The number of points in the circumferential direction.
Returns
-------
pyvista.PolyData
Dataset with texture for Saturn's rings.
Examples
--------
>>> import pyvista as pv
>>> from pyvista import examples
>>> mesh = examples.planets.load_saturn_rings()
>>> texture = examples.planets.download_saturn_rings(texture=True)
>>> image_path = examples.planets.download_stars_sky_background(load=False)
>>> mesh.plot(texture=texture, background=image_path)
.. seealso::
:func:`~pyvista.examples.planets.download_saturn_rings`
Download the texture of Saturn's rings.
:func:`~pyvista.examples.planets.load_saturn`
Load the planet Saturn as a textured sphere.
:func:`~pyvista.examples.planets.download_saturn_surface`
Download the surface of Saturn.
:ref:`planets_example`
Example plot of the solar system.
"""
disc = pyvista.Disc(inner=inner, outer=outer, c_res=c_res)
texture_coordinates = np.zeros((disc.points.shape[0], 2))
radius = np.sqrt(disc.points[:, 0] ** 2 + disc.points[:, 1] ** 2)
texture_coordinates[:, 0] = (radius - inner) / (outer - inner)
texture_coordinates[:, 1] = 0.0
disc.active_texture_coordinates = texture_coordinates
return disc
@_deprecate_positional_args
def load_uranus(radius=1.0, lat_resolution=50, lon_resolution=100): # pragma: no cover
"""Load the planet Uranus as a textured sphere.
Parameters
----------
radius : float, default: 1.0
Sphere radius.
lat_resolution : int, default: 50
Set the number of points in the latitude direction.
lon_resolution : int, default: 100
Set the number of points in the longitude direction.
Returns
-------
pyvista.PolyData
Uranus dataset.
Examples
--------
>>> import pyvista as pv
>>> from pyvista import examples
>>> mesh = examples.planets.load_uranus()
>>> texture = examples.planets.download_uranus_surface(texture=True)
>>> image_path = examples.planets.download_stars_sky_background(load=False)
>>> mesh.plot(texture=texture, background=image_path)
.. seealso::
:func:`~pyvista.examples.planets.download_uranus_surface`
Download the surface of Uranus.
:ref:`planets_example`
Example plot of the solar system.
"""
return _sphere_with_texture_map(
radius=radius,
lat_resolution=lat_resolution,
lon_resolution=lon_resolution,
)
@_deprecate_positional_args
def load_neptune(radius=1.0, lat_resolution=50, lon_resolution=100): # pragma: no cover
"""Load the planet Neptune as a textured sphere.
Parameters
----------
radius : float, default: 1.0
Sphere radius.
lat_resolution : int, default: 50
Set the number of points in the latitude direction.
lon_resolution : int, default: 100
Set the number of points in the longitude direction.
Returns
-------
pyvista.PolyData
Neptune dataset.
Examples
--------
>>> import pyvista as pv
>>> from pyvista import examples
>>> mesh = examples.planets.load_neptune()
>>> texture = examples.planets.download_neptune_surface(texture=True)
>>> image_path = examples.planets.download_stars_sky_background(load=False)
>>> mesh.plot(texture=texture, background=image_path)
.. seealso::
:func:`~pyvista.examples.planets.download_neptune_surface`
Download the surface of Neptune.
:ref:`planets_example`
Example plot of the solar system.
"""
return _sphere_with_texture_map(
radius=radius,
lat_resolution=lat_resolution,
lon_resolution=lon_resolution,
)
@_deprecate_positional_args
def load_pluto(radius=1.0, lat_resolution=50, lon_resolution=100): # pragma: no cover
"""Load the dwarf planet Pluto as a textured sphere.
Parameters
----------
radius : float, default: 1.0
Sphere radius.
lat_resolution : int, default: 50
Set the number of points in the latitude direction.
lon_resolution : int, default: 100
Set the number of points in the longitude direction.
Returns
-------
pyvista.PolyData
Pluto dataset.
Examples
--------
>>> import pyvista as pv
>>> from pyvista import examples
>>> mesh = examples.planets.load_pluto()
>>> texture = examples.planets.download_pluto_surface(texture=True)
>>> image_path = examples.planets.download_stars_sky_background(load=False)
>>> mesh.plot(texture=texture, background=image_path)
.. seealso::
:func:`~pyvista.examples.planets.download_pluto_surface`
Download the surface of Pluto.
:ref:`planets_example`
Example plot of the solar system.
"""
return _sphere_with_texture_map(
radius=radius,
lat_resolution=lat_resolution,
lon_resolution=lon_resolution,
)
@_deprecate_positional_args
def download_sun_surface(texture=False, load=True): # pragma: no cover # noqa: FBT002
"""Download the surface of the Sun.
Textures obtained from `Solar Textures
<https://www.solarsystemscope.com/textures/>`_.
Parameters
----------
texture : bool, default: False
Set to ``True`` when loading the surface as a texture.
load : bool, default: True
Load the dataset. When ``False``, return the path to the file.
Returns
-------
pyvista.DataSet | pyvista.Texture | str
Texture, Dataset, or path to the file depending on the ``load`` and
``texture`` parameters.
Examples
--------
>>> from pyvista import examples
>>> texture = examples.planets.download_sun_surface(texture=True)
>>> texture.plot(zoom='tight', show_axes=False)
.. seealso::
:ref:`Sun Surface Dataset <sun_surface_dataset>`
See this dataset in the Dataset Gallery for more info.
:func:`~pyvista.examples.planets.load_sun`
Load the Sun as a textured sphere.
:ref:`planets_example`
Example plot of the solar system.
"""
return _download_dataset_texture(_dataset_sun_surface, load=load, texture=texture)
_dataset_sun_surface = _SingleFileDownloadableDatasetLoader(
'solar_textures/sun.jpg',
)
@_deprecate_positional_args
def download_moon_surface(texture=False, load=True): # pragma: no cover # noqa: FBT002
"""Download the surface of the Earth's Moon.
Textures obtained from `Solar Textures
<https://www.solarsystemscope.com/textures/>`_.
Parameters
----------
texture : bool, default: False
Set to ``True`` when loading the surface as a texture.
load : bool, default: True
Load the dataset. When ``False``, return the path to the file.
Returns
-------
pyvista.DataSet | pyvista.Texture | str
Texture, Dataset, or path to the file depending on the ``load`` and
``texture`` parameters.
Examples
--------
>>> from pyvista import examples
>>> texture = examples.planets.download_moon_surface(texture=True)
>>> texture.plot(zoom='tight', show_axes=False)
.. seealso::
:ref:`Moon Surface Dataset <moon_surface_dataset>`
See this dataset in the Dataset Gallery for more info.
:func:`~pyvista.examples.planets.load_moon`
Load the Moon as a textured sphere.
:ref:`planets_example`
Example plot of the solar system.
"""
return _download_dataset_texture(_dataset_moon_surface, load=load, texture=texture)
_dataset_moon_surface = _SingleFileDownloadableDatasetLoader(
'solar_textures/moon.jpg',
)
@_deprecate_positional_args
def download_mercury_surface(texture=False, load=True): # pragma: no cover # noqa: FBT002
"""Download the surface of planet Mercury.
Textures obtained from `Solar Textures
<https://www.solarsystemscope.com/textures/>`_.
Parameters
----------
texture : bool, default: False
Set to ``True`` when loading the surface as a texture.
load : bool, default: True
Load the dataset. When ``False``, return the path to the file.
Returns
-------
pyvista.DataSet | pyvista.Texture | str
Texture, Dataset, or path to the file depending on the ``load`` and
``texture`` parameters.
Examples
--------
>>> from pyvista import examples
>>> texture = examples.planets.download_mercury_surface(texture=True)
>>> texture.plot(zoom='tight', show_axes=False)
.. seealso::
:ref:`Mercury Surface Dataset <mercury_surface_dataset>`
See this dataset in the Dataset Gallery for more info.
:func:`~pyvista.examples.planets.load_mercury`
Load Mercury as a textured sphere.
:ref:`planets_example`
Example plot of the solar system.
"""
return _download_dataset_texture(_dataset_mercury_surface, load=load, texture=texture)
_dataset_mercury_surface = _SingleFileDownloadableDatasetLoader(
'solar_textures/mercury.jpg',
)
@_deprecate_positional_args
def download_venus_surface(
atmosphere=True, # noqa: FBT002
texture=False, # noqa: FBT002
load=True, # noqa: FBT002
): # pragma: no cover
"""Download the surface or atmosphere of Planet Venus.
Textures obtained from `Solar Textures
<https://www.solarsystemscope.com/textures/>`_.
Parameters
----------
atmosphere : bool, optional
Load the atmosphere texture when ``True``.
texture : bool, default: False
Set to ``True`` when loading the surface as a texture.
load : bool, default: True
Load the dataset. When ``False``, return the path to the file.
Returns
-------
pyvista.DataSet | pyvista.Texture | str
Texture, Dataset, or path to the file depending on the ``load`` and
``texture`` parameters.
Examples
--------
>>> from pyvista import examples
>>> texture = examples.planets.download_venus_surface(texture=True)
>>> texture.plot(zoom='tight', show_axes=False)
.. seealso::
:ref:`Venus Surface Dataset <venus_surface_dataset>`
See this dataset in the Dataset Gallery for more info.
:func:`~pyvista.examples.planets.load_venus`
Load Venus as a textured sphere.
:ref:`planets_example`
Example plot of the solar system.
"""
if atmosphere:
return _download_dataset_texture(_dataset_venus_surface, load=load, texture=texture)
return _download_dataset_texture(
__dataset_venus_surface_no_atmosphere, load=load, texture=texture
)
_dataset_venus_surface = _SingleFileDownloadableDatasetLoader(
'solar_textures/venus_atmosphere.jpg',
)
__dataset_venus_surface_no_atmosphere = _SingleFileDownloadableDatasetLoader(
'solar_textures/venus_surface.jpg',
)
@_deprecate_positional_args
def download_mars_surface(texture=False, load=True): # pragma: no cover # noqa: FBT002
"""Download the surface of the planet Mars.
Textures obtained from `Solar Textures
<https://www.solarsystemscope.com/textures/>`_.
Parameters
----------
texture : bool, default: False
Set to ``True`` when loading the surface as a texture.
load : bool, default: True
Load the dataset. When ``False``, return the path to the file.
Returns
-------
pyvista.DataSet | pyvista.Texture | str
Texture, Dataset, or path to the file depending on the ``load`` and
``texture`` parameters.
Examples
--------
>>> from pyvista import examples
>>> texture = examples.planets.download_mars_surface(texture=True)
>>> texture.plot(zoom='tight', show_axes=False)
.. seealso::
:ref:`Mars Surface Dataset <mars_surface_dataset>`
See this dataset in the Dataset Gallery for more info.
:func:`~pyvista.examples.planets.load_mars`
Load Mars as a textured sphere.
:ref:`planets_example`
Example plot of the solar system.
"""
return _download_dataset_texture(_dataset_mars_surface, load=load, texture=texture)
_dataset_mars_surface = _SingleFileDownloadableDatasetLoader(
'solar_textures/mars.jpg',
)
@_deprecate_positional_args
def download_jupiter_surface(texture=False, load=True): # pragma: no cover # noqa: FBT002
"""Download the surface of the planet Jupiter.
Textures obtained from `Solar Textures
<https://www.solarsystemscope.com/textures/>`_.
Parameters
----------
texture : bool, default: False
Set to ``True`` when loading the surface as a texture.
load : bool, default: True
Load the dataset. When ``False``, return the path to the file.
Returns
-------
pyvista.DataSet | pyvista.Texture | str
Texture, Dataset, or path to the file depending on the ``load`` and
``texture`` parameters.
Examples
--------
>>> from pyvista import examples
>>> texture = examples.planets.download_jupiter_surface(texture=True)
>>> texture.plot(zoom='tight', show_axes=False)
.. seealso::
:ref:`Jupiter Surface Dataset <jupiter_surface_dataset>`
See this dataset in the Dataset Gallery for more info.
:func:`~pyvista.examples.planets.load_jupiter`
Load Jupiter as a textured sphere.
:ref:`planets_example`
Example plot of the solar system.
"""
return _download_dataset_texture(_dataset_jupiter_surface, load=load, texture=texture)
_dataset_jupiter_surface = _SingleFileDownloadableDatasetLoader(
'solar_textures/jupiter.jpg',
)
@_deprecate_positional_args
def download_saturn_surface(texture=False, load=True): # pragma: no cover # noqa: FBT002
"""Download the surface of the planet Saturn.
Textures obtained from `Solar Textures
<https://www.solarsystemscope.com/textures/>`_.
Parameters
----------
texture : bool, default: False
Set to ``True`` when loading the surface as a texture.
load : bool, default: True
Load the dataset. When ``False``, return the path to the file.
Returns
-------
pyvista.DataSet | pyvista.Texture | str
Texture, Dataset, or path to the file depending on the ``load`` and
``texture`` parameters.
Examples
--------
>>> from pyvista import examples
>>> texture = examples.planets.download_saturn_surface(texture=True)
>>> texture.plot(zoom='tight', show_axes=False)
.. seealso::
:ref:`Saturn Surface Dataset <saturn_surface_dataset>`
See this dataset in the Dataset Gallery for more info.
:func:`~pyvista.examples.planets.load_saturn`
Load the planet Saturn as a textured sphere.
:func:`~pyvista.examples.planets.load_saturn_rings`
Load Saturn's rings as a textured disc.
:func:`~pyvista.examples.planets.download_saturn_rings`
Download the texture of Saturn's rings.
:ref:`planets_example`
Example plot of the solar system.
"""
return _download_dataset_texture(_dataset_saturn_surface, load=load, texture=texture)
_dataset_saturn_surface = _SingleFileDownloadableDatasetLoader(
'solar_textures/saturn.jpg',
)
@_deprecate_positional_args
def download_saturn_rings(texture=False, load=True): # pragma: no cover # noqa: FBT002
"""Download the texture of Saturn's rings.
Textures obtained from `Solar Textures
<https://www.solarsystemscope.com/textures/>`_.
Parameters
----------
texture : bool, default: False
Set to ``True`` when loading the surface as a texture.
load : bool, default: True
Load the dataset. When ``False``, return the path to the file.
Returns
-------
pyvista.ImageData | pyvista.Texture | str
Dataset, texture, or filename of the Saturn's rings.
Examples
--------
>>> from pyvista import examples
>>> texture = examples.planets.download_saturn_rings(texture=True)
>>> texture.plot(cpos='xy')
.. seealso::
:ref:`Saturn Rings Dataset <saturn_rings_dataset>`
See this dataset in the Dataset Gallery for more info.
:func:`~pyvista.examples.planets.load_saturn_rings`
Load Saturn's rings as a textured disc.
:func:`~pyvista.examples.planets.load_saturn`
Load the planet Saturn as a textured sphere.
:func:`~pyvista.examples.planets.download_saturn_surface`
Download the surface of Saturn.
:ref:`planets_example`
Example plot of the solar system.
"""
return _download_dataset_texture(_dataset_saturn_rings, load=load, texture=texture)
_dataset_saturn_rings = _SingleFileDownloadableDatasetLoader(
'solar_textures/saturn_ring_alpha.png',
)
@_deprecate_positional_args
def download_uranus_surface(texture=False, load=True): # pragma: no cover # noqa: FBT002
"""Download and the texture of the surface of planet Uranus.
Textures obtained from `Solar Textures
<https://www.solarsystemscope.com/textures/>`_.
Parameters
----------
texture : bool, default: False
Set to ``True`` when loading the surface as a texture.
load : bool, default: True
Load the dataset. When ``False``, return the path to the file.
Returns
-------
pyvista.DataSet | pyvista.Texture | str
Texture, Dataset, or path to the file depending on the ``load`` and
``texture`` parameters.
Examples
--------
>>> from pyvista import examples
>>> texture = examples.planets.download_uranus_surface(texture=True)
>>> texture.plot(zoom='tight', show_axes=False)
.. seealso::
:ref:`Uranus Surface Dataset <uranus_surface_dataset>`
See this dataset in the Dataset Gallery for more info.
:func:`~pyvista.examples.planets.load_uranus`
Load Uranus as a textured sphere.
:ref:`planets_example`
Example plot of the solar system.
"""
return _download_dataset_texture(_dataset_uranus_surface, load=load, texture=texture)
_dataset_uranus_surface = _SingleFileDownloadableDatasetLoader(
'solar_textures/uranus.jpg',
)
@_deprecate_positional_args
def download_neptune_surface(texture=False, load=True): # pragma: no cover # noqa: FBT002
"""Download the texture of the surface of planet Neptune.
Textures obtained from `Solar Textures
<https://www.solarsystemscope.com/textures/>`_.
Parameters
----------
texture : bool, default: False
Set to ``True`` when loading the surface as a texture.
load : bool, default: True
Load the dataset. When ``False``, return the path to the file.
Returns
-------
pyvista.DataSet | pyvista.Texture | str
Texture, Dataset, or path to the file depending on the ``load`` and
``texture`` parameters.
Examples
--------
>>> from pyvista import examples
>>> texture = examples.planets.download_neptune_surface(texture=True)
>>> texture.plot(zoom='tight', show_axes=False)
.. seealso::
:ref:`Neptune Surface Dataset <neptune_surface_dataset>`
See this dataset in the Dataset Gallery for more info.
:func:`~pyvista.examples.planets.load_neptune`
Load Neptune as a textured sphere.
:ref:`planets_example`
Example plot of the solar system.
"""
return _download_dataset_texture(_dataset_neptune_surface, load=load, texture=texture)
_dataset_neptune_surface = _SingleFileDownloadableDatasetLoader(
'solar_textures/neptune.jpg',
)
@_deprecate_positional_args
def download_pluto_surface(texture=False, load=True): # pragma: no cover # noqa: FBT002
"""Download the texture of the surface of the dwarf planet Pluto.
Textures obtained from `Solar Textures
<https://www.solarsystemscope.com/textures/>`_.
Parameters
----------
texture : bool, default: False
Set to ``True`` when loading the surface as a texture.
load : bool, default: True
Load the dataset. When ``False``, return the path to the file.
Returns
-------
pyvista.DataSet | pyvista.Texture | str
Texture, Dataset, or path to the file depending on the ``load`` and
``texture`` parameters.
Examples
--------
>>> from pyvista import examples
>>> texture = examples.planets.download_pluto_surface(texture=True)
>>> texture.plot(zoom='tight', show_axes=False)
.. seealso::
:ref:`Pluto Surface Dataset <pluto_surface_dataset>`
See this dataset in the Dataset Gallery for more info.
:func:`~pyvista.examples.planets.load_pluto`
Load Pluto as a textured sphere.
:ref:`planets_example`
Example plot of the solar system.
"""
return _download_dataset_texture(_dataset_pluto_surface, load=load, texture=texture)
_dataset_pluto_surface = _SingleFileDownloadableDatasetLoader(
'solar_textures/pluto.jpg',
)
@_deprecate_positional_args
def download_stars_sky_background(texture=False, load=True): # pragma: no cover # noqa: FBT002
"""Download the night sky stars texture.
Textures obtained from `tamaskis/planet3D-MATLAB
<https://github.com/tamaskis/planet3D-MATLAB>`_.
Parameters
----------
texture : bool, default: False
Set to ``True`` when loading the surface as a texture.
load : bool, default: True
Load the dataset. When ``False``, return the path to the file.
Returns
-------
pyvista.DataSet | pyvista.Texture | str
Texture, Dataset, or path to the file depending on the ``load`` and
``texture`` parameters.
Examples
--------
Load the night sky image as a background image.
>>> from pyvista import examples
>>> import pyvista as pv
>>> pl = pv.Plotter()
>>> image_path = examples.planets.download_stars_sky_background(load=False)
>>> pl.add_background_image(image_path)
>>> pl.show()
.. seealso::
:ref:`Stars Sky Background Dataset <stars_sky_background_dataset>`
See this dataset in the Dataset Gallery for more info.
:func:`~pyvista.examples.planets.load_mars`
Load Mars as a textured sphere.
:ref:`Milkyway Sky Background Dataset <milkyway_sky_background_dataset>`
Sky texture of the Milky Way galaxy.
:ref:`planets_example`
Example plot of the solar system.
"""
return _download_dataset_texture(_dataset_stars_sky_background, load=load, texture=texture)
_dataset_stars_sky_background = _SingleFileDownloadableDatasetLoader(
'planet3d-matlab/stars.jpg',
)
@_deprecate_positional_args
def download_milkyway_sky_background(texture=False, load=True): # pragma: no cover # noqa: FBT002
"""Download the sky texture of the Milky Way galaxy.
Textures obtained from `tamaskis/planet3D-MATLAB
<https://github.com/tamaskis/planet3D-MATLAB>`_.
Parameters
----------
texture : bool, default: False
Set to ``True`` when loading the surface as a texture.
load : bool, default: True
Load the dataset. When ``False``, return the path to the file.
Returns
-------
pyvista.DataSet | pyvista.Texture | str
Texture, Dataset, or path to the file depending on the ``load`` and
``texture`` parameters.
Examples
--------
Load the Milky Way sky image as a background image.
>>> from pyvista import examples
>>> import pyvista as pv
>>> pl = pv.Plotter()
>>> image_path = examples.planets.download_milkyway_sky_background(load=False)
>>> pl.add_background_image(image_path)
>>> pl.show()
.. seealso::
:ref:`Milkyway Sky Background Dataset <milkyway_sky_background_dataset>`
See this dataset in the Dataset Gallery for more info.
:ref:`Stars Sky Background Dataset <stars_sky_background_dataset>`
Night sky stars texture.
:ref:`planets_example`
Example plot of the solar system.
"""
return _download_dataset_texture(_dataset_milkyway_sky_background, load=load, texture=texture)
_dataset_milkyway_sky_background = _SingleFileDownloadableDatasetLoader(
'planet3d-matlab/milkyway.jpg',
)
|