this.astro and Come in Cielo Così in Terra, report and tutorial: how to make location-based apps

Just back from our event at the MACRO Museum of Rome where we were hosted in the Miltos Manetas’ electronicOrphanage to present this.astro and Come in Cielo Così in Terra in occasion of the Global Astronomy Month, in the event called Connect the Dots and see the Unseen, curated by Elena Giulia Abbiatici and Valentina Levy.

the workshop

the workshop

In this article you will find some of the images of the workshop and, here below, is a view taken from the this.astro projection we showed in the entrance hall of the museum:

A great part of our presence was focused on the creation of Come in Cielo Così in Terra, a software-enabled participatory performance through which people can collaborate in drawing constellations onto their cities using their bodies:

  1. you form groups,
  2. you choose a constellation,
  3. each member of the group heads off towards a star (or, more precisely, to the city-location where the star is placed)
  4. when each star is covered on the map by at least one member of the group: YOU WIN!
  5. You have actually just collaboratively drawn a constellation onto your city, showing up on the global map.

You can see the application HERE: Click here to open CiCCiT (Come in Cielo Così in Terra)

the workshop

the workshop

And here are the sources (HTML, CSS, JavaScript, PHP) for the application:

CLICK HERE TO DOWNLOAD THE SOURCES

The application is designed completely using HTML, CSS, JavaScript and PHP on the back end: just unzip onto your server online, create a database, update the parameters found in the “db.php” file to reflect your DB configuration and you’re done! You have Come in Cielo Così in Terra on your server.

the workshop

the workshop

The application is designed for access through smartphones: just open up the URL using your iPhone or Android and you will be able to start right away.

A couple of things:

  • there are bugs: we’ve just started this project and haven’t had time for the righteous tests until now; we will do them in a few days; if you find any bugs/strange behaviors, please do CONTACT US and tell them to us! You will do us a great favor and we will be able to correct issues and distribute updates for the application!
  • there is no security in this app!  for now this is a proof of concept, so that there is only a minimal registration/login/logout process implemented, with the password in clear on the DB, no email verification, no-nothing; we will replace it soon with a decent authentication model; if you want to go ahead, you can work on the login.php, logout.php and accountManager.php files.

So: just download and install its, or use it FROM HERE and check for updates on Art is Open Source for new releases.

 

the workshop

the workshop

And, as a follow up to the workshop: here are is a basic tutorial on how to make an HTML application which can track users’ positions using only standard features of W3C compliant browsers.

the workshop

the workshop

TUTORIAL

What we want to achieve is an application which runs on a user’s web browser (for example Firefox, Chrome or Safari) and:

  1. asks the uses if he/she would like to have their geographic location taken
  2. if the user decides to do so, it grabs its geo position
  3. sends it to a database
  4. generates a map and shows the user’s position on it

Let’s start.

First step: localize the user

The geolocation API specified by the W3C consortium allows us to do just what we require.

First let’s create a standard, almost empty HTML page.






Then, in the HEAD section, let’s add these lines, to create some javaScript:

If you wrote everything correctly, you can upload this file (save it as an HTML file) to your webserver (if you don’t have a web server anywhere, you can download and install on your computer one of the Bitnami Stacks from here: choose WAMPStack for Windows, LAMPStack for Linux or MAMPStack for OSX).

You can now access your file using your browser (for example, if you installed a Bitnami Stack you can point your browser to http://localhost/the_name_of_your_file.html).

The browser should ask you if you want to be geo-located: if you answer “no” it will pop up an error message, if you answer “yes” it will pop up your geographical coordinates.

This should work consistently on both your computer web browsers and on the web browsers found on your smartphones.

the workshop

the workshop

 

STEP 2 CREATE A DATABASE:

Now we want to store our coordinates somewhere.

So we need to create a database and, inside it, a table to hold them.

Use the tools you have to manipulate your databases (for example, if you installed the Bitnami stack, you will have the PhpMyAdmin application which you can use through your browser) to create a table (let’s call it “coordinates“) with two FLOAT columns named lat and lon, to hold the coordinates.

Here is what my PhpMyAdmin schema looks like:

the table created for the coordinates

the table created for the coordinates

now, let’s create a PHP file (a regular text file, saved with extension “.php”), and let’s save it as “storeCoordinates.php“.

Inside it, let’s write this code:

if(isset($_REQUEST["lat"]) && isset($_REQUEST["lon]")){
// customize this file to reflect configuration data for your database
$DB_NAME="NAME_OF_DATABASE";
$DB_HOST="HOST_IN_WHICH_IS_YOUR_DATABASE";
$DB_USER="DB_USER";
$DB_PWD="DB_PASSWORD";
$con = mysql_connect($DB_HOST,$DB_USER,$DB_PWD);
mysql_select_db($DB_NAME);
$q = "INSERT INTO coordinates(lat,lon)VALUES(" . mysql_real_escape_string($_REQUEST["lat"]) . "," . mysql_real_escape_string($_REQUEST["lon"]) . ")";
$r = mysql_query($q);
mysql_close($con);
}
?>

Put this file on your webserver, as right next to the one we created before.

This file:

  1. checks that two parameters have been passed in the HTTP request (using the isset command, and the $_REQUEST variable, which contains all parameters which have been passed on by whoever invoked the script)
  2. if they are present: opens up a database connection (“DB_*” parameters, which you have to configure to reflect your DB’s configuration, and the mysql_connect command)
  3. prepares an INSERT query in SQL language, concatenating the values for latitude and longitude which we will see in a bit being passed on by our HTML page
  4. executes using the mysql_query command

 

THIRD STEP: store coordinates

 Now we will modify our HTML file to invoke the functionality we just implemented using PHP.

Download the jQuery library from HERE.

This is a JavaScript library which offers many useful functionalities. We will use some of these.

Save the javascript library file naming it “jquery.js” and upload it to your web server right next to the other files you just created.

Add the following line right after the <head> tag in the HTML file we created in the first step:

This tells the browser to load the jQuery library.

Then modify the updatePosition function we have created in the first step, so that it looks like this:

function updatePosition(currentPosition){
$.getJSON("storeCoordinates.php",
{
lat: currentPosition.coords.latitude,
lon: currentPosition.coords.longitude
}
);
}

What we are doing with the getJSON command is to call the storeCoordinates PHP file we created earlier on and pass to it the coordinates we just captured.

 

THAT’S IT!

Just update the file you just modified on your web server (so, in the same folder used by the web server there should be the HTML file together with the jquery.js file and the storeCoordinates.php file.

If you navigate to the HTML file using your browser and you answer “yes” when it asks you to be geo-localized, you should see a row being automatically added to your DB, containing your coordinates.

(about accuracy: if you are using this through a web browser, accuracy could not be perfect, as localization will be performed using your network information; this, according to the setup of your provider, will yield results of different degrees of accuracy; the same can be said when using GPS enabled devices: according to where you are, the GPS could provide more or less accurate results)

Here’s my first coordinates automatically captured in this way:

my geo position, finally on the DB

my geo position, finally on the DB

 

 

LAST STEP: SHOW’EM ON A MAP!

To show these coordinates on a map, let’s prepare another PHP file to get them from the database and add them to a Google Map. To use Google Maps you have to register and obtain a KEY. Click here to know how to obtain your key (read under the “Obtaining API Key).

Create another PHP file, and call it “map.php“.

Inside it write the following code:










Phew! that’s quite a lot of code!

let’s browse through it to see the new things which we introduced here. Starting from the top, here are the interesting lines:

  • the <meta name=”viewport” … HTML tag, is used for smartphones, so that the content adapts to the device’s screen
  •  the <style>…</style> tag and its contents: some CSS rules to define the margins and dimensions of our resulting HTML page
  • the <script …> tag through which we add the googleapis.com/maps… javascript library: it includes Google Maps functionalities in your web page; please note that it is here where you have to add your API key
  • in the next <script> tag:
    • we define a map variable (var map;)
    • we define the initialize javascript function
    • we define the MapOptions javascript object to contain configuration information for our map (in the example: we set the zoom level and the type of map we want to use); more information about the MapOptions object can be found HERE
    • we use the google.maps.Map object to initialize the map, and we use the document.getElementById javascript function to tell where we want the map to appear on our web page (in the example: in the DIV element with ID=”map_canvas” found below in the body of the web page)
    • then we open a PHP section to query the database and obtain the info we need to create the markers
      • we create a SELECT query using the SQL language and we put it in the $q variable
      • we execute the query using the mysql_query command and we store the result in the $r variable
      • we check if the result was obtained correctly ( using if($r) )
      • we use a while loop to fetch each row of the result into the $row variable using the mysql_fetch_assoc command, which gives us a series of associative arrays
      • we use the values contained in the rows to fill in the parameters of each marker, printing them out using a series of echo commands (through which we are actually injecting values coming from the DB into the HTML, using PHP)
    • each marker is a separate javascript variable; to make them all different we have chosen to use a PHP variable named $i which will contain 0 for the first variable, 1 for the second one, 2 for the third, and so on (if you see, it is incremented using the $i++; command at the end of each while cycle); so the variable names for the markers will become var marker0, var marker1, var marker2 etcetera;
    • each marker is initialized by using an instance of the google.maps.Marker class provided by the Google APIs
      • each marker gets a series of parameters, such as position (through an instance of the google.maps.LatLng class), the map parameter which takes as a value the map we have initialized before, and a title)
    • out of the cycle, the <head> section ends, and the <body> section begins with the onload=”initialize()” event handler to invoke the map initialization function as soon as the page has completely loaded.

And that’s it!

If you upload this PHP file to your web server and open up these two web pages we created (this last file and the initial HTML file with the request for geo location) on two different tabs of your browser (even on your smartphone) and you refresh first one and then the other (maybe moving a block or two between each refresh, so that you will record  different coordinates) you will see the map populate with the markers describing your movements.

the workshop

the workshop

Squatting Supermarkets / iSee at La Sapienza University in Rome

Squatting Supermarkets at La Sapienza in Rome

Squatting Supermarkets at La Sapienza in Rome

FakePress, Art is Open Source and The Hub Roma

in collaboration with

the “Multimedia Technologies and Communications Experimentations” course at the “Ludovico Quaroni” Faculty of Architecture at Rome’s University “La Sapienza”, Industrial Design Department

and

the “Management of Non profit Organizations” course at the Faculty of Economics at the “Tor Vergata” University

are happy to invite you to the lecture:

Squatting Supermarkets/iSee

Artistic fundamentals, eco-sustainability, market: from Shoptivism to the Active Consumer.

Who: Oriana Persico and Cary Hendrickson (AOS/FakePress), Dario Carrera and Ivan Fadini (The Hub Roma/Faculty of Economics, Tor Vergata), Ilaria Bassi, Vanessa D’Acquisto, Piergiorgio Malfa, Vittoria Mauro (research group at the “Management of Non Profit Organizations” course, Tor Vergata), Salvatore Iaconesi (visiting professor)

What: lecture/workshop

Where: Faculty of Architecture “Ludovico Quaroni”, via E.Gianturco 2 (Rome) – room G 11 [ MAP ]

When: May 4th, 2010 – from 9am to 12pm

A radical version of a marketplace, a point of sale in augmented reality, Squatting Supermarkets tells the tale of the evolution of our daily realities, entering the live and pulsating heart of consumism. Looking at products on the shelves, choosing, paying, debts, persuasion and seduction, relations with logos, messages and other people. Buying is an experience that fills our daily lives, built through images, suggestions and strategies that are so complex that they systematically evade the perception of the final user. Technologies can be used to create new spaces for action/communication, and to overlay them onto our ordinary reality, thus creating new action/communication spaces, allowing new possibilities for interaction and fruition: ubiquitous, accessible, emergent and polyphonic, emotional and relational. Squatting Supermarkets narrates this possibility: an augmented reality space that is technologically layered to everyday life, an interstitial marketplace living in squat on the physical and immaterial infrastructures.

Presented for the first time at the Piemonte Share Festival in 2009, Squatting Supermarkets has two souls: a site-specific installation and an innovative technology, iSee. The installation reproduces an interactive supermarket in which the widespread interconnection network defining products’ histories and stories can become explicit and accessible. The techniques of traceability and control are transformed into their ecosystemic, narrative and poetic versions: information is not only for corporations anymore. By overlaying and integrating codes coming from barcodes, tags, RFIDs, credit cads, financial tranactions.
Grabbing a product becomes an immersive experience with its story, and the possibility of writing a part of it: moving hands, drawing gestures, exposing our points of view and our emotions. Products animate, becoming a space for expression, a network of relations, a domain for possibility and opportunity. Distributed storytelling practices in which the hidden stories of producers and consumers come in contact. The access door to these domains are the logos. iSee, the technological heart of the installation is a mobile application based on image recognition and computer vision techniques.
Framing the product on the camera, an image processing algorithm identifies the logo, allowing the user to access an additional set of information coming from a plurality of sources. Narrative galaxies (open, emergent, multi-author) connected to p2p thematic social networks layered over products.
Logos become wikis, open communication infrastructures, distributed social networks, p2p ecosystems.
The Project is based on the analisys of the contemporary technological/economic context. On one side, environmentalism and eco-sustainability are issues that are acknowledged as being among the globally most important drivers in piloting the shopping choices of large parts of the population. On the other side, statistics demonstrate that progressively large numbers of individuals search for information on social networks befre purchasing commodities and services, and that the users of last-generation mobile devices are steadily growing by the numbers.
In all this, enterprises start feeling the need to confront a globally interconnected communication and relation system, emergent, polyphonic, in which the acquisition and the maintenance of a “good reputation” goes through complex social and cultural dynamics that are progressively more chaotic. The “Company” is not the sole center of communication and of the shaping of its corporate identity.

On may 4th 2010, from 9am to 12pm,  FakePress’ interaction design lab will analyze the possibilities for expression and interaction enabled by the shopping based narratives offered by Squatting Supermarkets under an artistic/performative point of view and by iSee under the perspectives of technology and infrastructures.

Oriana Persico will confront the themes related to the installation, introducing the artistic statement,

Cary Hendrickson will focus on the themes of eco-susteinability, social responsibility and on the governance of related processes;

The research group of the “Management of Non profit Organizations” course at the Tor Vergata University coordinated by Dario Carrera and Ivan Fadini will expose the first results coming from the research titled “Active Consumer: from Movements to Shopping Based Publishing“.

How are consumers sensible to the environment and to critical consumism? How do they relate to the opinions generated on social media and on brand reputation created through User Generated Content? How widespread are smartphones? How many individuals would be willing to use a mobile application such as iSee? Who could finance it? What are the possible business models?

The theoretical and artistic premises, the analisys on eco-sustainability and the market scenarios will be used by the students of the course at the Faculty of Architecture to create a series of project works focused on the evolutions of the iSee platform and on the creation of a site specific installation to be implemented in a public commercial space, integrating multiple skills and points of view and, most of all, creating multidisciplinary and inter-university collaboration paths among students and faculties to achieve common goals.

The project works will be presented together with the research during the Open Day at the end of the course.

Entrance to the lecture is free and open to all.

Additional information

Squatting Supermarkets/iSee is a co-production by FakePress/Art is Open Source. Special project at the Piemonte Share Festival 2009, winner of the “Zero Impact Technlogy” prize offered by the Environment Park in Turin. Squatting Supermarkets/iSee is part of the SMIR project under the artistic direction of The Sharing:

http://www.fakepress.it/FP/?p=523

http://www.fakepress.it/FP/?p=47

http://www.toshare.it/

http://www.smirproject.eu/ (site available next week)

Site

http://www.fakepress.it/

http://www.artisopensource.net

http://www.hubroma.net/

http://designinteraction.it/

please use the Facebook Event to stay updated:

http://www.facebook.com/#!/event.php?eid=122966341053373