-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Export Sample NRC Data #7
Comments
@ezys do you have a lat/lon box I should use for extracting records around Taylor? |
@ezys and what do you mean by "two different data streams" ? |
@pwoods25443 Will this do for bounding box? http://alerts.skytruth.org/subscribe?l=28.9096,-89.0009,28.9584,-88.9408#RSS |
@pwoods25443 Will this do for bounding box? http://alerts.skytruth.org/subscribe?l=28.9096,-89.0009,28.9584,-88.9408#RSS And by "two datastreams" I mean the public-facing server from before Heartbleed (or whatever) took the NRC offline in February 2014 and then the excel dumps afterwards. I just want to make sure the resulting data is consistent across the board. |
Ok - here is an export joining 3 of the NRC scraped tables select *
from "NrcScrapedReport" r join "NrcParsedReport" p on r.reportnum = p.reportnum
join "NrcAnalysis" a on r.reportnum = a.reportnum
where latitude > 28.9 and latitude < 28.96 and longitude > -89 and longitude < -88.95
order by incident_datetime |
And here is an export of the alerts select *
from feedentry
where lat > 28.9 and lat < 28.96 and lng > -89 and lng < -88.95
order by incident_datetime |
Please export about 100 rows of NRC reports from incidents from the Alerts Database so I can compare against the NRC raw spreadsheets.
Because there are two different data streams, could you give me two sets?
The text was updated successfully, but these errors were encountered: