GithubHelp home page GithubHelp logo

Comments (6)

mroberge avatar mroberge commented on June 3, 2024

Hi @DavidLitwin !
Thank you for using HydroFunctions. I apologize, but it looks like I may have updated the interface to hydrofunctions, but haven't updated the documentation. I've actually just made a major change for 0.1.8 that will really improve the user experience, so I haven't worked too hard on fixing all of the old documentation. Anyway, that's no excuse!

Here is what you can do to get yourself a dataframe of hydrology data:

import hydrofunctions as hf

site = '01646000'
start_date = '2017-10-01'
end_date = '2018-10-01'

response = hf.get_nwis(site,'iv', start_date,end_date,parameterCd='00060')
my_dataframe = hf.extract_nwis_df(response.json())

my_dataframe

... and this will produce a nice listing of your new dataframe.

Good luck, and let me know if you have any further trouble!

from hydrofunctions.

DavidLitwin avatar DavidLitwin commented on June 3, 2024

Ah, easy enough, thank you. Another question - is there capability to download multiple parameters in the same call? Say:

response = hf.get_nwis(site,'iv', start_date,end_date,parameterCd=['00060','99133','63680'])

Thanks!

from hydrofunctions.

mroberge avatar mroberge commented on June 3, 2024

I can't remember if you can do that in 0.1.7, but the new version defaults to request everything collected at a site, and you can list multiple parameters. Unfortunately, you would have to install it from the develop branch on GitHub, because it's not on pypi yet.

from hydrofunctions.

DavidLitwin avatar DavidLitwin commented on June 3, 2024

I'm sorry, I'm new to github so I'm still trying to figure this out. I've just tried to install it with:
pip install git+https://github.com/mroberge/hydrofunctions.git@develop
But it seems to give me just version 0.1.7. Am I doing something wrong? Thanks for your help.

from hydrofunctions.

mroberge avatar mroberge commented on June 3, 2024

Actually, you have the latest material by installing from Develop, but I didn't modify the version number yet. I usually do that when I finally post everything onto PyPI.

Try loading new data this way (if you don't specify what parameter you want, you'll get every parameter measured at this site:

my_data = hf.NWIS(['01585200','03543500'] 'iv', period='P100D')

This will print out what you have loaded:

my_data

and this will give you a dataframe of just the discharge data:

my_data.df('Q')

If you save the discharge dataframe to a variable, then it is easy to use the Pandas convenience methods, like .plot() or .describe().

from hydrofunctions.

DavidLitwin avatar DavidLitwin commented on June 3, 2024

Thanks, got it working!

from hydrofunctions.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.