GithubHelp home page GithubHelp logo

Comments (4)

mroberge avatar mroberge commented on June 3, 2024

Hi Nick!
Thanks for this question and for using hydrofunctions. I changed this function a few versions ago- I've been encouraging people to use the hf.NWIS interface instead. I can send you some code suggestions in the morning.

As you said, the tuple contains a data frame and a dictionary. The dictionary contains some metadata, but I don't remember if it has lat &long. One way to access just the dataframe is to do this:

discharge, meta = hf.extract_nwis_df(resp)

This line would replace the line where you extract values to a dataframe. You could use meta if you want or just ignore it. The rest of your code should work as is. I'll try it out in the morning!

from hydrofunctions.

mroberge avatar mroberge commented on June 3, 2024

I see what you are trying to do here! It looks like you want to create a dataframe that is in the long format similar to R's 'tidy' format. I've been wanting to provide this functionality for my NWIS class for a while.

First, my code above works for your example.

Second, you said that sometimes you get two columns instead of four columns. This is because sometimes when you request data from a site it is only returning stage data instead of stage and discharge. I've never seen that before, so I'm curious. But this can be fixed by creating a more robust system for renaming your columns. Right now you just assume that you have four columns and you give them names. Instead, you could use the 'rename' method of dataframes to change the column names and create a mapper function. It would work like this: my_df.rename(mapper_function, axis=columns) now you just need a mapper function that takes the column string, looks to see if it is for qualifiers or data, and looks to see if it is for stage or discharge and return something appropriate.

Third, right now your function gives the same name to two different columns. Until we come up with a better renaming function, I would replace that line with something like this:

discharge.columns = ["discharge", "discharge-flag", 'stage', 'stage-flag']

from hydrofunctions.

nlamkey avatar nlamkey commented on June 3, 2024

from hydrofunctions.

mroberge avatar mroberge commented on June 3, 2024

Glad to help!

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.