Skip to content

Commit

Permalink
Merge pull request #300 from dhellfeld/nudat2-3
Browse files Browse the repository at this point in the history
Update nudat2 to nudat3
  • Loading branch information
dhellfeld authored Nov 19, 2021
2 parents a115833 + e957230 commit b4ae59e
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions becquerel/tools/nndc.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
References:
http://www.nndc.bnl.gov
http://www.nndc.bnl.gov/nudat2/indx_sigma.jsp
http://www.nndc.bnl.gov/nudat2/indx_dec.jsp
http://www.nndc.bnl.gov/nudat3/indx_sigma.jsp
http://www.nndc.bnl.gov/nudat3/indx_dec.jsp
"""

Expand Down Expand Up @@ -649,9 +649,9 @@ class _NuclearWalletCardQuery(_NNDCQuery):
"""NNDC Nuclear Wallet Card data query.
Nuclear Wallet Card Search can be performed at this URL:
http://www.nndc.bnl.gov/nudat2/indx_sigma.jsp
http://www.nndc.bnl.gov/nudat3/indx_sigma.jsp
Help page: http://www.nndc.bnl.gov/nudat2/help/wchelp.jsp
Help page: http://www.nndc.bnl.gov/nudat3/help/wchelp.jsp
* Energy: Level energy in MeV.
* JPi: Level spin and parity.
Expand Down Expand Up @@ -684,7 +684,7 @@ class _NuclearWalletCardQuery(_NNDCQuery):
"""

_URL = "https://www.nndc.bnl.gov/nudat2/sigma_searchi.jsp"
_URL = "https://www.nndc.bnl.gov/nudat3/sigma_searchi.jsp"
_DATA = dict(_NNDCQuery._DATA)
_DATA.update(
{
Expand Down Expand Up @@ -756,9 +756,9 @@ def fetch_wallet_card(**kwargs):
"""Perform NNDC Nuclear Wallet Card data query and return a DataFrame.
Nuclear Wallet Card Search can be performed at this URL:
http://www.nndc.bnl.gov/nudat2/indx_sigma.jsp
http://www.nndc.bnl.gov/nudat3/indx_sigma.jsp
Help page: http://www.nndc.bnl.gov/nudat2/help/wchelp.jsp
Help page: http://www.nndc.bnl.gov/nudat3/help/wchelp.jsp
* Energy: Level energy in MeV.
* JPi: Level spin and parity.
Expand Down Expand Up @@ -801,9 +801,9 @@ class _DecayRadiationQuery(_NNDCQuery):
"""NNDC Decay Radiation data query.
Decay Radiation Search can be performed at this URL:
http://www.nndc.bnl.gov/nudat2/indx_dec.jsp
http://www.nndc.bnl.gov/nudat3/indx_dec.jsp
Help page: http://www.nndc.bnl.gov/nudat2/help/dehelp.jsp
Help page: http://www.nndc.bnl.gov/nudat3/help/dehelp.jsp
* Radiation: Radiation type, i.e. G for gamma, E for electron.
* Rad subtype: Further classification of the radiation type.
Expand Down Expand Up @@ -833,7 +833,7 @@ class _DecayRadiationQuery(_NNDCQuery):
"""

_URL = "https://www.nndc.bnl.gov/nudat2/dec_searchi.jsp"
_URL = "https://www.nndc.bnl.gov/nudat3/dec_searchi.jsp"
_DATA = dict(_NNDCQuery._DATA)
_DATA.update(
{
Expand Down Expand Up @@ -911,9 +911,9 @@ def fetch_decay_radiation(**kwargs):
"""Perform NNDC Decay Radiation data query and return a DataFrame.
Decay Radiation Search can be performed at this URL:
http://www.nndc.bnl.gov/nudat2/indx_dec.jsp
http://www.nndc.bnl.gov/nudat3/indx_dec.jsp
Help page: http://www.nndc.bnl.gov/nudat2/help/dehelp.jsp
Help page: http://www.nndc.bnl.gov/nudat3/help/dehelp.jsp
* Radiation: Radiation type, i.e. G for gamma, E for electron.
* Rad subtype: Further classification of the radiation type.
Expand Down

0 comments on commit b4ae59e

Please sign in to comment.