How to get MORPH-II dataset - dataset

Recently I needed facial images and corresponding height and weight information as supporting data for a study, and I found that MORPH-II dataset had the data I needed.
Does anyone know where to apply for this dataset, and is my application channel wrong?
I have not received any response to the application form I submitted to the official website (https://uncw.edu/oic/tech/morph.html) for academic use and have tried to contact the author and the official contact email address.
It doesn't look like I can get the data this way, and I tried the links mentioned in the other questions and they don't seem to work anymore.

Related

How do I pull the live weather radar from the new (2020) NWS Weather Radar API?

NWS has depricated their old (pre 2020) weather radar site here.
I am trying to find their new API endpoint for pulling the live weather radar image for a lat/long point. All I've been able to find about it is just JSON feeds for forecast.
There is no way (that I know of) to do this anymore. If there is, it is well hidden. The best I can do is use their endpoint with lat/lon and it will show the closest weather forecast office - which will get you close... but not the actual radar needed.
For my answer I would suggest using MRMS or a national level-2 mosaic. I am not sure how your maps are setup so this may not be ideal. However, you can find them here :
Level-2 Mosaic Files :
https://mrms.ncep.noaa.gov/data/RIDGEII/L2/CONUS/
MRMS (Multi-Radar-Multi-Sensor) :
https://mrms.ncep.noaa.gov/data/2D/

Prototyping a workflow app with Apps Script [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 5 years ago.
Improve this question
I want to prototype an app and I thought Apps Script could be a quick way to do this, but being new to Google toolset I need someone to put me in the right direction to figure what is available and what components I need to put together to get this working.
Here's what the app does:
I put in an order in a form on a web page. (Google Forms? App Script web app?)
Some inputs in the form are dynamically shown depending on previous inputs.
The inputs are validated.
There is a list of receivers with mobile numbers (Google Spreadsheets?)
When submitted, the order is sent to a web service (Twilio REST API) that sends SMS text messages to each of the receivers.
Before submitting I want to be able to see a preview of the generated text message and the total cost for sending SMS.
After submitting, the order is also logged (Spreadsheets?)
In the text message there is a link to a web page that is specific to that order for more details
I don't need specific code but I need to find out what to use for each step. Also any examples or samples that could help me on the way would be very useful.
Update - My specific question for now to get started is:
Is it possible to use Google Forms to have dynamic fields (entering data in one field defines next fields with their choices), custom validations (validations are more than regex and multiple fields are validated together) and previews (when entering data, show some live calculations)? If not, how can I use Apps Script with Html to do that?
Thanks!
So you might what to use a Google Form, I do not know what type of Order you are trying to do, but in my example I will be assuming that an order is some type of department work order that is submitted and you want it to send a txt message to "supervisors" so that they can review the work order.
Here is a poorly drawn overview of how I envision this.
Overview Image
How I would Start
Create your form.
When you create a Google Form it automatically creates a Google Spreadsheet.
You are able to input validate the data on the form itself OR if you are really picky, you can validate the data on the spreadsheet itself with Formulas or even app script itself.
Here is a start on setting rules on your form.
Email validation
Advance Validation(Pretty much everything else)
you set responses to direct the form to different pages or sections of the form based on an answer.
Image With example on how to base questions on previous answers
Prepare your spreadsheet
So you already have a sheet for your Form Submission. Lets make another Sheet for your receivers. This way you can edit your receivers mobile numbers so your App Script does all the heavy lifting by cycling through this sheet when sending the messages.
You can also add any other information you need
Google App Script
Ok, The fun part. Now you have code. This is where you can get everything else you want or need. I would first write a function that all it does is collect the receivers data from your receivers sheet. Link to SpreadsheetApp I would recommend looking at the guide to get you situated on how things work in App Script.
The Second function would be the Twilio API. I have not written anything for Twilio yet but here is what I found that I would use to get started to send a message. Of cousre you will have to modify it to cycle through your recipients and anything else you would want to do. I think this Post will be able to get the Twilio Door Open
Here is also Twilios Documentation on sending SMS
I think that is plenty information for you to get a leaping start into this very interesting project you have. If you have any further questions please ask. If I don't know the answers I can definitely help point you in the right direction.
You will first have to start this project before I can get into some detail.
Hope this helps !

Working with json.net/vb or c# and Fiddler attempting to scrape content

I've been working on this for days now and just can not wrap my head around it.
Straight up I am trying to grab prices from a big box store and failing, I can get all other content using the htmlagilitypack no problem but they use a json api to display the price tag.
I am using Fiddler and I am seeing the flow of data. In the Fiddler results I can see the json content coming back with the prices and the header information being passed, but I just can't seem to put any code together that would remotely work to get the same data that Fiddler sees.
Please, any pointers would be greatly appreciated, or even some online tutorials. I don't expect anyone to work this for me, I just need a starting point.
This is the page I am trying to get the price from.
http://www.walmart.ca/en/ip/10321728
Just an fyi, this is for my own purposes only, I search daily for pricing on products on several different sites and I am trying to just display the pricing on my own localhost from a few different sites.

Where to get a web graph with corresponding web pages dataset

I'm trying to implement PageRank algorithm on a set of web pages, for that I need a sample dataset of web pages, and the web graph corresponding to them, this web graph represents the links between the pages that the data set contains.
I need the web graph so I can get the transition matrix and do the calculation needed. Example:
URL1 -> URL2
URL3390 -> URL5
URLxxxx is an id, somehow mapped to the corresponding web page
My question is: how/where can I get this resource (I've tried many links on the internet but nothing really helps), I would also like it to be not of a very large size, (internet connection limitation), if I can't have this as it is, could sou give me some advice on what I should do?
Update: for people who may consider this off topic, and they may be right, networks like Software Recommendation or on Computer Science, don't even have corresponding tags, and doesn't really fit the kind of this question, I appreciate your help.
May be Site Visualizer is the tool you're looking for. The app has the feature to generate visual sitemap.
Download and install the app (Standard or Pro version), click Create new project toolbutton, type the URL of the website you need to crawl, and then click Start button.
After the crawling is finished, click Draw button on the Visual Sitemap tab. Graph of the website will be drawn as a set of pages (rectangles) and links (lines with arrows). Click on a box to select the certain page and highlight its outbound links:
Dataset of all links of the website you can get by using All Links report (on the Reports tab). 'From URL' and 'To URL' columns are what you need.
Besides of that, you can represent a dataset of pages or links of the crawled website by using your particular SQL query. For instance, go to the Database tab, type the following query and click Execute toolbutton:
SELECT * FROM links WHERE link_type='A'
The resultset will contain only A-tag links, excluding images, CSS files, JS, etc.
The program has full-featured 30-days trial period, so you can carry out your tasks for free.
you might try searching for datasets used in supplementary information for PageRank papers. Here's an example:
this paper: http://langvillea.people.cofc.edu/ReorderingPageRank.pdf
uses this dataset:
http://www.cs.cornell.edu/Courses/cs685/2002fa/data/gr0.California
which supposedly contains 9,664 nodes and 16,773 links. The links are at the end of the file and appear to be in a connection format similar to what you're looking for.
from this page (which also has other datasets):
http://www.cs.cornell.edu/Courses/cs685/2002fa/
here's a few other pages that aggregate network datasets:
http://snap.stanford.edu/data/, see particularly
http://snap.stanford.edu/data/web-Stanford.html
http://www.datawrangling.com/some-datasets-available-on-the-web
http://networkdata.ics.uci.edu/resources.php
good luck!

Possible to SQL Server database drive a Google Map by UK postcode?

We have a property/accommodation profile page that lists a property address including postcode. This information is stored in a SQL Server database table and the page has a recordset that allows us to feed profile information onto a page depending on the propertyID that is selected (either via link or using a form) by the user.
We created a field in the database table that would allow us to insert the Google Map embed code for a property and, subsequently, we'd then call that on the property profile page but this requires us to create the embed code in Google Maps first, have to paste that into our database field etc, before it would display a map on our page.
So...we would like to database drive the map based on the postcode. Is that possible?
We really don't want to have to get into longitude/latitude coordinates, we just want the map to identify the postcode and put a place marker on a map where that postcode appears.
How do we acheive this? We've tried looking through the documentation and help files, but we really don't know what we're asking for so finding answers is proving incredibly difficult or the answers that we've found seem extremely technical (Google API, Geocoding, etc) for what we're trying to acheive.
Could someone point us in the right direction?
We hoped that there would be some way of inserting the postcode, dynamically, into generic embed code from Google Maps and that Google Maps would do the rest.
Anyway, we would appreciate any help and advice that could be offered. Thank you.
Regards
NJ
Traditionally Postcode data in the UK costs lots of money.
You can now download the Ordnance Survey data and convert their data into Latitude and longitude which would let you plot coordinates on google maps. (http://www.ordnancesurvey.co.uk/oswebsite/products/code-point-open/index.html)

Resources