Coder Social home page Coder Social logo

Comments (18)

jamesturk avatar jamesturk commented on September 28, 2024

verified that anyone not listed voted yea, might be possible to support this kind of vote

from openstates-scrapers.

jsullivanlive avatar jsullivanlive commented on September 28, 2024

Turk says: It's because HI only lists the Nays, not the Yays

from openstates-scrapers.

paultag avatar paultag commented on September 28, 2024

@jamesturk is this a thing we should / could turn into a data exception?

from openstates-scrapers.

paultag avatar paultag commented on September 28, 2024

Eeek, nevermind, it's state-wide.

from openstates-scrapers.

 avatar commented on September 28, 2024

I just found http://HawaiiVotes.org , who copied roll call vote information directly from the Hawaii Legislature website. Apparently the site and process was assisted by Mackinac Center for Public Policy and the "pajama ladies" doing manual, copy-paste transcription.

Missed votes data exists as well... http://hawaiivotes.org/MissedVotes.aspx , which should improve the accuracy of the yes votes, correct?

I assume if Hawaii Votes' manual, copy-paste process directly from http://capitol.hawaii.gov can accomplish these ends, then so can screen-scraping?

from openstates-scrapers.

jamesturk avatar jamesturk commented on September 28, 2024

@SustainHawaii as discussed, we're not entirely comfortable providing data that the state doesn't provide, we have to manage a huge amount of data and relying on third parties/manual sources isn't something that we can do on top of the 100+ scrapers we maintain already

That said, Open States doesn't have to be the end all for your needs, it should be trivial for you all to figure out the no votes given the method you've described (more trivial than for us in fact as we'd need to build in HI-specific exemptions), is there a specific reason why it'd have to be upstream for you?

We'll reconsider if there's a compelling need, but I'm inclined to say that until the HI legislature gets its act together we're not going to have 100% complete votes.

from openstates-scrapers.

 avatar commented on September 28, 2024

Just to clarify, the State of Hawaii does provide the information mentioned, and Hawaii Votes is just going to the State of Hawaii site to copy and paste it into their own site.

I do understand that you have plenty more fish to fry, though.

from openstates-scrapers.

jamesturk avatar jamesturk commented on September 28, 2024

Oh perhaps I misunderstood then, the Yes votes are on the HI site now? If
so and you can point us towards them I'm sure we can resolve this.

On Mon, Aug 27, 2012 at 2:37 PM, SustainHawaii [email protected]:

Just to clarify, the State of Hawaii does provide the information
mentioned, and Hawaii Votes is just going to the State of Hawaii site to
copy and paste it into their own site.

I do understand that you have plenty more fish to fry, though.


Reply to this email directly or view it on GitHubhttps://github.com//issues/43#issuecomment-8065765.

from openstates-scrapers.

jamesturk avatar jamesturk commented on September 28, 2024

I just noted on another issue (#398) that Oregon now also does this, if it is something that occurs in at least two states perhaps it is worth the effort to try and come up with a generic solution.

from openstates-scrapers.

 avatar commented on September 28, 2024

Here's a link to a Senate Bill's measure status - http://www.capitol.hawaii.gov/measure_indiv.aspx?year=2012&billtype=SB&billnumber=2748

I'm not sure if this is what's being scraped or not, but it looks like each Measure Status page has "Ayes, Ayes with Reservations, Noes and Excused" for each committee member.

"The committee(s) on CPN recommend(s) that the measure be PASSED, UNAMENDED. The votes in CPN were as follows: 4 Aye(s): Senator(s) Baker, Taniguchi, Solomon; Aye(s) with reservations: Senator(s) Slom ; 0 No(es): none; and 3 Excused: Senator(s) Galuteria, Green, Nishihara."

from openstates-scrapers.

jamesturk avatar jamesturk commented on September 28, 2024

Those only exist for committee votes (which we collect) - you'll notice the
COW votes don't include the Ayes.

Passed Final Reading, as amended (CD 1). 25 Aye(s); Aye(s) with
reservations: none . 0 No(es): none. 0 Excused: none.

On Tue, Aug 28, 2012 at 2:00 PM, SustainHawaii [email protected]:

Here's a link to a Senate Bill's measure status -
http://www.capitol.hawaii.gov/measure_indiv.aspx?year=2012&billtype=SB&billnumber=2748

I'm not sure if this is what's being scraped or not, but it looks like
each Measure Status page has "Ayes, Ayes with Reservations, Noes and
Excused" for each committee member.

"The committee(s) on CPN recommend(s) that the measure be PASSED,
UNAMENDED. The votes in CPN were as follows: 4 Aye(s): Senator(s) Baker,
Taniguchi, Solomon; Aye(s) with reservations: Senator(s) Slom ; 0 No(es):
none; and 3 Excused: Senator(s) Galuteria, Green, Nishihara."


Reply to this email directly or view it on GitHubhttps://github.com//issues/43#issuecomment-8100938.

from openstates-scrapers.

 avatar commented on September 28, 2024

In this example below I can see there are no Aye(s) explicitly written:

Passed Final Reading as amended in CD 1 with none voting aye with reservations; none voting no (0) and Representative(s) Ching excused (1).

Sorry for being coding-obtuse, but if I'm understanding correctly, the challenge is because the Aye votes are not explicit to screen scrape, so more code is required to "pull the Aye(s)" by identifying the total members voting in this hearing and removing the ones that are listed from the total list of Aye(s) with Reservations, Noes and Excused?

from openstates-scrapers.

jamesturk avatar jamesturk commented on September 28, 2024

Right, if a member is absent for example it is unclear if they voted Yes or
not at all.

On Tue, Aug 28, 2012 at 2:19 PM, SustainHawaii [email protected]:

In this example below I can see there are no Aye(s) explicitly written:

Passed Final Reading as amended in CD 1 with none voting aye with
reservations; none voting no (0) and Representative(s) Ching excused (1).

Sorry for being coding-obtuse, but if I'm understanding correctly, the
challenge is because the Aye votes are not explicit to screen scrape, so
more code is required to "pull the Aye(s)" by identifying the total members
voting in this hearing and removing the ones that are listed from the total
list of Aye(s) with Reservations, Noes and Excused?


Reply to this email directly or view it on GitHubhttps://github.com//issues/43#issuecomment-8101576.

from openstates-scrapers.

 avatar commented on September 28, 2024

For our purposes, can we just have a qualifier on the site that says "absent vote" or "excused" means "no vote"?

from openstates-scrapers.

 avatar commented on September 28, 2024

Just curious what the status was on this issue... does it look like something you folks will be able to address or is it too customized and best left to a Hawaii interest to address?

from openstates-scrapers.

jamesturk avatar jamesturk commented on September 28, 2024

It is probably best left to Hawaii but there is still some small amount of
hope, investigating a solution that would make it possible to fix this for
HI and OR (the two states that don't include Yes votes)

On Fri, Sep 7, 2012 at 2:25 PM, SustainHawaii [email protected]:

Just curious what the status was on this issue... does it look like
something you folks will be able to address or is it too customized and
best left to a Hawaii interest to address?


Reply to this email directly or view it on GitHubhttps://github.com//issues/43#issuecomment-8374143.

from openstates-scrapers.

bshor avatar bshor commented on September 28, 2024

Is this fixed in OR and HI?

from openstates-scrapers.

jamesturk avatar jamesturk commented on September 28, 2024

Sorry, should have included a message. It hasn't but the issue list was
woefully out of date as it had been split across two ticketing systems for
a while and a lot of stale 2012 issues were around from before the
migration to the Sunlight JIRA bugtracker, many of which were closed
there. We're going to start fresh and will most likely be opening
state-specific issue trackers in coming weeks as we get things up and
running again.

On Mon, Nov 7, 2016 at 7:05 PM, Boris Shor [email protected] wrote:

Is this fixed in OR and HI?


You are receiving this because you modified the open/close state.
Reply to this email directly, view it on GitHub
#43 (comment),
or mute the thread
https://github.com/notifications/unsubscribe-auth/AAAfYpP9S6NLkYGXceNs-M0_ojoaLECUks5q77zigaJpZM4AEfwI
.

from openstates-scrapers.

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.