sunposition


Namesunposition JSON
Version 1.1.1 PyPI version JSON
download
home_pagehttps://github.com/s-bear/sun-position
SummaryCompute the sun's observed position based on Reda & Adreas's 2004 paper "Solar position algorithm for solar radiation applications"
upload_time2023-05-23 14:48:17
maintainer
docs_urlNone
authorSamuel Powell
requires_python>=3.5
licenseMIT
keywords sun solar astronomy
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # sunposition

## Description

`sunposition` is a python module for computing the sun's position based on the algorithms from "Solar position algorithm for solar radiation applications" by Ibrahim Reda and Afshin Anreas, Solar Energy (2004).
The algorithm calculates "the solar zenith and azimuth angles in the period from the year −2000 to 6000, with uncertainties of ±0.0003°".
See http://dx.doi.org/10.1016/j.solener.2003.12.003 for more information.

In this code, the latitude and longitude are positive for North and East, respectively.
The azimuth angle is 0 at North and positive towards the east.
The zenith angle is 0 at vertical and positive towards the horizon.

The code is hosted at https://github.com/s-bear/sun-position

The module is a single python file `sunposition.py` and may be used as a command-line utility or imported into a script.

## Installation

`sunposition` is hosted at https://pypi.org/project/sunposition/ and may be installed using `pip`:

```
$ pip install sunposition
```

## Example usage on the command line

```
$ sunposition --help
usage: sunposition [-h] [--test TEST] [--version] [--citation] [-t TIME] [-lat LATITUDE] [-lon LONGITUDE]
                   [-e ELEVATION] [-T TEMPERATURE] [-p PRESSURE] [-a ATMOS_REFRACT] [-dt DT] [-r] [--csv] [--jit]

Compute sun position parameters given the time and location

options:
  -h, --help            show this help message and exit
  --test TEST           Test against output from https://midcdmz.nrel.gov/solpos/spa.html
  --version             show program's version number and exit
  --citation            Print citation information
  -t TIME, --time TIME  "now" or date and time (UTC) in "YYYY-MM-DD hh:mm:ss.ssssss" format or a (UTC) POSIX timestamp
  -lat LATITUDE, --latitude LATITUDE
                        observer latitude, in decimal degrees, positive for north
  -lon LONGITUDE, --longitude LONGITUDE
                        observer longitude, in decimal degrees, positive for east
  -e ELEVATION, --elevation ELEVATION
                        observer elevation, in meters
  -T TEMPERATURE, --temperature TEMPERATURE
                        temperature, in degrees celcius
  -p PRESSURE, --pressure PRESSURE
                        atmospheric pressure, in millibar
  -a ATMOS_REFRACT, --atmos_refract ATMOS_REFRACT
                        atmospheric refraction at sunrise and sunset, in degrees
  -dt DT                difference between earth's rotation time (TT) and universal time (UT1)
  -r, --radians         Output in radians instead of degrees
  --csv                 Comma separated values (time,dt,lat,lon,elev,temp,pressure,az,zen,RA,dec,H)
  --jit                 Enable Numba acceleration (jit compilation time may overwhelm speed-up)

$ sunposition
Computing sun position at T = 2021-05-21 06:47:44.644873 + 0.0 s
Lat, Lon, Elev = 51.48 deg, 0.0 deg, 0 m
T, P = 14.6 C, 1013.0 mbar
Results:
Azimuth, zenith = 86.68229367131721 deg, 66.38510410296101 deg
RA, dec, H = 58.28648711185745 deg, 20.241411055526044 deg, 282.7836435018984 deg

$ sunposition -t "1953-05-29 05:45:00" -lat 27.9881 -lon 86.9253 -e 8848
Computing sun position at T = 1953-05-29 05:45:00 + 0.0 s
Lat, Lon, Elev = 27.9881 deg, 86.9253 deg, 8848.0 m
T, P = 14.6 C, 1013.0 mbar
Results:
Azimuth, zenith = 137.73675146015 deg, 8.481271417778686 deg
RA, dec, H = 65.7605040841157 deg, 21.576417030912577 deg, 353.8751689030205 deg
```

An example test file is provided at https://raw.githubusercontent.com/s-bear/sun-position/master/sunposition_test.txt

## Example usage in a script

```python
import numpy as np
import matplotlib.pyplot as plt
#sunposition will use numba.jit if available, which may negatively
#impact performance if few positions are being computed.
#To disable jit, before importing sunposition, either set 
#the environment variable NUMBA_DISABLE_JIT to 1 or
#set numba.config.DISABLE_JIT = False
# e.g. import os; os.environ['NUMBA_DISABLE_JIT'] = 1
# or import numba; numba.config.DISABLE_JIT = True
from sunposition import sunpos
from datetime import datetime

#evaluate on a 2 degree grid
lon  = np.linspace(-180,180,181)
lat = np.linspace(-90,90,91)
LON, LAT = np.meshgrid(lon,lat)
#at the current time
now = datetime.utcnow()
az,zen = sunpos(now,LAT,LON,0)[:2] #discard RA, dec, H
#convert zenith to elevation
elev = 90 - zen
#convert azimuth to vectors
u, v = np.cos((90-az)*np.pi/180), np.sin((90-az)*np.pi/180)
#plot
fig, ax = plt.subplots(figsize=(6,3),layout='constrained')
img = ax.imshow(elev,cmap=plt.cm.CMRmap,origin='lower',vmin=-90,vmax=90,extent=(-181,181,-91,91))
s = slice(5,-1,5) # equivalent to 5:-1:5
ax.quiver(lon[s],lat[s],u[s,s],v[s,s],pivot='mid',scale_units='xy')
ax.contour(lon,lat,elev,[0])
ax.set_aspect('equal')
ax.set_xticks(np.arange(-180,181,45))
ax.set_yticks(np.arange(-90,91,45))
ax.set_xlabel('Longitude (deg)')
ax.set_ylabel('Latitude (deg)')
cb = plt.colorbar(img,ax=ax,shrink=0.8,pad=0.03)
cb.set_label('Sun Elevation (deg)')
#display plot
plt.show() #unnecessary in interactive sessions

```

## Citation
Ibrahim Reda, Afshin Andreas, Solar position algorithm for solar radiation applications, Solar Energy, Volume 76, Issue 5, 2004, Pages 577-589, ISSN 0038-092X, http://dx.doi.org/10.1016/j.solener.2003.12.003.
Keywords: Global solar irradiance; Solar zenith angle; Solar azimuth angle; VSOP87 theory; Universal time; ΔUT1

# LICENSE

Copyright (c) 2023 Samuel Bear Powell, samuel.powell@uq.edu.au

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/s-bear/sun-position",
    "name": "sunposition",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.5",
    "maintainer_email": "",
    "keywords": "sun,solar,astronomy",
    "author": "Samuel Powell",
    "author_email": "samuel.powell@uq.edu.au",
    "download_url": "",
    "platform": null,
    "description": "# sunposition\r\n\r\n## Description\r\n\r\n`sunposition` is a python module for computing the sun's position based on the algorithms from \"Solar position algorithm for solar radiation applications\" by Ibrahim Reda and Afshin Anreas, Solar Energy (2004).\r\nThe algorithm calculates \"the solar zenith and azimuth angles in the period from the year \u22122000 to 6000, with uncertainties of \u00b10.0003\u00b0\".\r\nSee http://dx.doi.org/10.1016/j.solener.2003.12.003 for more information.\r\n\r\nIn this code, the latitude and longitude are positive for North and East, respectively.\r\nThe azimuth angle is 0 at North and positive towards the east.\r\nThe zenith angle is 0 at vertical and positive towards the horizon.\r\n\r\nThe code is hosted at https://github.com/s-bear/sun-position\r\n\r\nThe module is a single python file `sunposition.py` and may be used as a command-line utility or imported into a script.\r\n\r\n## Installation\r\n\r\n`sunposition` is hosted at https://pypi.org/project/sunposition/ and may be installed using `pip`:\r\n\r\n```\r\n$ pip install sunposition\r\n```\r\n\r\n## Example usage on the command line\r\n\r\n```\r\n$ sunposition --help\r\nusage: sunposition [-h] [--test TEST] [--version] [--citation] [-t TIME] [-lat LATITUDE] [-lon LONGITUDE]\r\n                   [-e ELEVATION] [-T TEMPERATURE] [-p PRESSURE] [-a ATMOS_REFRACT] [-dt DT] [-r] [--csv] [--jit]\r\n\r\nCompute sun position parameters given the time and location\r\n\r\noptions:\r\n  -h, --help            show this help message and exit\r\n  --test TEST           Test against output from https://midcdmz.nrel.gov/solpos/spa.html\r\n  --version             show program's version number and exit\r\n  --citation            Print citation information\r\n  -t TIME, --time TIME  \"now\" or date and time (UTC) in \"YYYY-MM-DD hh:mm:ss.ssssss\" format or a (UTC) POSIX timestamp\r\n  -lat LATITUDE, --latitude LATITUDE\r\n                        observer latitude, in decimal degrees, positive for north\r\n  -lon LONGITUDE, --longitude LONGITUDE\r\n                        observer longitude, in decimal degrees, positive for east\r\n  -e ELEVATION, --elevation ELEVATION\r\n                        observer elevation, in meters\r\n  -T TEMPERATURE, --temperature TEMPERATURE\r\n                        temperature, in degrees celcius\r\n  -p PRESSURE, --pressure PRESSURE\r\n                        atmospheric pressure, in millibar\r\n  -a ATMOS_REFRACT, --atmos_refract ATMOS_REFRACT\r\n                        atmospheric refraction at sunrise and sunset, in degrees\r\n  -dt DT                difference between earth's rotation time (TT) and universal time (UT1)\r\n  -r, --radians         Output in radians instead of degrees\r\n  --csv                 Comma separated values (time,dt,lat,lon,elev,temp,pressure,az,zen,RA,dec,H)\r\n  --jit                 Enable Numba acceleration (jit compilation time may overwhelm speed-up)\r\n\r\n$ sunposition\r\nComputing sun position at T = 2021-05-21 06:47:44.644873 + 0.0 s\r\nLat, Lon, Elev = 51.48 deg, 0.0 deg, 0 m\r\nT, P = 14.6 C, 1013.0 mbar\r\nResults:\r\nAzimuth, zenith = 86.68229367131721 deg, 66.38510410296101 deg\r\nRA, dec, H = 58.28648711185745 deg, 20.241411055526044 deg, 282.7836435018984 deg\r\n\r\n$ sunposition -t \"1953-05-29 05:45:00\" -lat 27.9881 -lon 86.9253 -e 8848\r\nComputing sun position at T = 1953-05-29 05:45:00 + 0.0 s\r\nLat, Lon, Elev = 27.9881 deg, 86.9253 deg, 8848.0 m\r\nT, P = 14.6 C, 1013.0 mbar\r\nResults:\r\nAzimuth, zenith = 137.73675146015 deg, 8.481271417778686 deg\r\nRA, dec, H = 65.7605040841157 deg, 21.576417030912577 deg, 353.8751689030205 deg\r\n```\r\n\r\nAn example test file is provided at https://raw.githubusercontent.com/s-bear/sun-position/master/sunposition_test.txt\r\n\r\n## Example usage in a script\r\n\r\n```python\r\nimport numpy as np\r\nimport matplotlib.pyplot as plt\r\n#sunposition will use numba.jit if available, which may negatively\r\n#impact performance if few positions are being computed.\r\n#To disable jit, before importing sunposition, either set \r\n#the environment variable NUMBA_DISABLE_JIT to 1 or\r\n#set numba.config.DISABLE_JIT = False\r\n# e.g. import os; os.environ['NUMBA_DISABLE_JIT'] = 1\r\n# or import numba; numba.config.DISABLE_JIT = True\r\nfrom sunposition import sunpos\r\nfrom datetime import datetime\r\n\r\n#evaluate on a 2 degree grid\r\nlon  = np.linspace(-180,180,181)\r\nlat = np.linspace(-90,90,91)\r\nLON, LAT = np.meshgrid(lon,lat)\r\n#at the current time\r\nnow = datetime.utcnow()\r\naz,zen = sunpos(now,LAT,LON,0)[:2] #discard RA, dec, H\r\n#convert zenith to elevation\r\nelev = 90 - zen\r\n#convert azimuth to vectors\r\nu, v = np.cos((90-az)*np.pi/180), np.sin((90-az)*np.pi/180)\r\n#plot\r\nfig, ax = plt.subplots(figsize=(6,3),layout='constrained')\r\nimg = ax.imshow(elev,cmap=plt.cm.CMRmap,origin='lower',vmin=-90,vmax=90,extent=(-181,181,-91,91))\r\ns = slice(5,-1,5) # equivalent to 5:-1:5\r\nax.quiver(lon[s],lat[s],u[s,s],v[s,s],pivot='mid',scale_units='xy')\r\nax.contour(lon,lat,elev,[0])\r\nax.set_aspect('equal')\r\nax.set_xticks(np.arange(-180,181,45))\r\nax.set_yticks(np.arange(-90,91,45))\r\nax.set_xlabel('Longitude (deg)')\r\nax.set_ylabel('Latitude (deg)')\r\ncb = plt.colorbar(img,ax=ax,shrink=0.8,pad=0.03)\r\ncb.set_label('Sun Elevation (deg)')\r\n#display plot\r\nplt.show() #unnecessary in interactive sessions\r\n\r\n```\r\n\r\n## Citation\r\nIbrahim Reda, Afshin Andreas, Solar position algorithm for solar radiation applications, Solar Energy, Volume 76, Issue 5, 2004, Pages 577-589, ISSN 0038-092X, http://dx.doi.org/10.1016/j.solener.2003.12.003.\r\nKeywords: Global solar irradiance; Solar zenith angle; Solar azimuth angle; VSOP87 theory; Universal time; \u0394UT1\r\n\r\n# LICENSE\r\n\r\nCopyright (c) 2023 Samuel Bear Powell, samuel.powell@uq.edu.au\r\n\r\nPermission is hereby granted, free of charge, to any person obtaining a copy\r\nof this software and associated documentation files (the \"Software\"), to deal\r\nin the Software without restriction, including without limitation the rights\r\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\ncopies of the Software, and to permit persons to whom the Software is\r\nfurnished to do so, subject to the following conditions:\r\n\r\nThe above copyright notice and this permission notice shall be included in all\r\ncopies or substantial portions of the Software.\r\n\r\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\nSOFTWARE.\r\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "Compute the sun's observed position based on Reda & Adreas's 2004 paper \"Solar position algorithm for solar radiation applications\"",
    "version": "1.1.1",
    "project_urls": {
        "Homepage": "https://github.com/s-bear/sun-position"
    },
    "split_keywords": [
        "sun",
        "solar",
        "astronomy"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6916c1fce05dfdc0e705d410016255053993da3fe8b230ab2222c4eb4c5d17ab",
                "md5": "1f12f35c559b39b4f93397364c853099",
                "sha256": "f0d920c3a8db58ee85f71365c2d8e0d190366efa4fc7b0c8fe13379bc2530469"
            },
            "downloads": -1,
            "filename": "sunposition-1.1.1-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "1f12f35c559b39b4f93397364c853099",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.5",
            "size": 17939,
            "upload_time": "2023-05-23T14:48:17",
            "upload_time_iso_8601": "2023-05-23T14:48:17.120828Z",
            "url": "https://files.pythonhosted.org/packages/69/16/c1fce05dfdc0e705d410016255053993da3fe8b230ab2222c4eb4c5d17ab/sunposition-1.1.1-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-05-23 14:48:17",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "s-bear",
    "github_project": "sun-position",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": false,
    "lcname": "sunposition"
}
        
Elapsed time: 0.07510s