Stefano Costa

There's more than potsherds out here

Faccio l’archeologo e vivo a Genova

  • Late Roman Coarse Wares

    Domani mattina all’alba parto per Parma, dove seguirò la prima parte del 3° convegno internazionale Late Roman Coarse Wares, dedicata al Mediterraneo Orientale. Poi venerdì mi sposterò a Pisa per la seconda parte del convegno, che ovviamente sarà dedicata al Mediterraneo Occidentale.

    La mia tesi di laurea affronterà argomenti di questo genere, quindi ho pensato che fosse una saggia idea seguire il convegno.

    Non porterò con me il portatile ma al mio ritorno cercherò di fare un breve riassunto, per uso e consumo di chi non c’era.

  • I rivoluzionari delle carte geografiche

    I rivoluzionari delle carte geografiche (meglio noti come OpenStreetMap) sono finiti su La Stampa di ieri a pagina 24… Grazie Edoardo!!

    OsmLaStampa

  • M(‘)appare Milano – campagna di mappatura OpenStreetMap sotto la Madonnina

    M(‘)appare Milano è la nuova iniziativa lanciata da GFOSS.it e OpenStreetMap per coinvolgere i mappatori milanesi in micro eventi della durata massima di 3 ore durante i quali si procede alla raccolta dei dati di una zona limitata di territorio. La fase di editing della mappa verrà svolta dai partecipanti al proprio domicilio.

    Lo scopo collaterale è quello di far conoscere il progetto ad altri potenziali partecipanti coinvolgendoli in una mappatura a due nella loro prima esperienza.

    Il primo Micro Mapping Party si è svolto il 2 marzo 2008 nella zona compresa tra:

    • viale Zara-Fulvio Testi
    • viale Marche
    • viale Monza
    • via Giosué Carducci a Sesto San Giovanni

    milano

    Se abiti a Milano o nei dintorni, mappa anche tu!

  • Export from OpenOffice to Mediawiki

    Sono amministratore di (circa…) 8 installazioni di Mediawiki. Mediawiki è il software (libero) che fa girare Wikipedia e migliaia di altri wiki in tutto il mondo. Inoltre, sono utente di qualcosa come 20-25 wiki che utilizzano Mediawiki. Insomma… lo uso spesso.

    Oggi ho scoperto che per chi usa OpenOffice.org 2.4 è disponibile la fa-vo-lo-sa possibilità di esportare un file di testo nel formato di Mediawiki, tabelle incluse – chi ha mai avuto necessità di usare tabelle può capire cosa ciò significhi.

    Provare per credere! Spero che questo sia un ulteriore incentivo per usare OpenOffice.org.

    Schermata-Esporta

  • Candidature

    Ora il PD candiderà anche un operaio della Truck Center di Molfetta nelle sue liste, dopo averne candidato uno della Thyssen Krupp?

  • Arsenico

    Sarebbe interessante sommare le informazioni che risultano da queste due ricerche:

    Io abito a Siena e bevo l’acqua del rubinetto. Fate voi. Ma sapere che anche 200 anni fa un alto numero di persone era esposto a quantità ingenti di arsenico è straordinariamente interessante. Abbiamo ancora un po’ di cose da scoprire sui veleni…

    A proposito di Napoleone: ma come è stato possibile analizzare campioni di capelli prelevati da Napoleone fanciullo, durante il suo esilio nell’Isola d’Elba, nell’isola di Sant’Elena il giorno della sua morte ed in quello successivo ? Molto buffo.

  • stai invecchiando quando…

    ti accorgi che è passato molto tempo dall’ultima volta che hai visto un brufolo sulla tua faccia.

    Non parliamo poi del fatto che quest’anno compio 25 anni.

  • Total Station and GNU/Linux: Zeiss Elta R55 done!

    The pySerial library is really good. Today I installed it and in half an hour I got acquainted with its class methods, even though I have little knowledge about serial ports and the like.

    With some trial and error about the connection parameters, I was even able to solve the problem with non-printable characters, tweaking the bytesize of the connection.

    Briefly, these are the steps I did in the interactive ipython console:

    1. >>> import serial
      >>> ser = serial.Serial('/dev/ttyUSB0', \
      baudrate=9600, bytesize=serial.SEVENBITS, timeout=0, \
      parity=serial.PARITY_NONE, rtscts=1)
      >>> ser.open()
    2. at this point, start the transfer from the device
    3. check that you have received some data:
      >>> ser.inWaiting()
      648L
      

      A non-zero result means that you have received something.

    4. I saved this value to use it with the read() method of the Serial class:
      >>> n = ser.inWaiting()
      >>> result = ser.read(n)
      
    5. The result object is a string, seeing its contents is as simple as:
      >>> print(result)
      0001 OR.COOR
      0002                   0S        X        0.000 Y         0.000 Z     0.000
      0003                                            Om     397.0370
      0004 POLAR
      0005 INPUT                       th       1.500 ih        0.000
      0006 INPUT                       th       0.000 ih        0.000 Z     0.000
      0007                   1         X       -0.472 Y         1.576 Z     0.004
      END
      

      As you can see, there are no errors after the END sentence, because the serial connection is handled gracefully now. The previous attempt with cat /dev/ttyUSB0 was a bit brutal…

    For now, that’s all. I go back studying and maybe also writing some Python code for this Total Station. If you have got a total station and want to contribute to this project, let me know by leaving a comment here.

  • Total stations and GNU/Linux, part 2

    In this off-line weekend, I went on investigating the output from the Zeiss Elta R55 total station.

    First of all, it turns out that the file was not binary. A simple

    $ file downloaded_data
    downloaded_data: Non-ISO extended-ASCII text

    could have revealed this simple truth. My error was due mainly to the fact that most of the content in the file was made by non-printable characters. But my guess about the lines that contained the point coordinates was right. Probably due to a wrong download procedure, there were some problems with that file. All characters with code > 128 (hex 80) had to be translated shifting their code by 128. I used this simple Python script for this task:

    >>> read_file = open("downloaded_data", 'r')
    >>> des = read_file.read()
    >>> for i in des:
    ...     if ord(i) > 127:
    ...         print chr(ord(i)-128)
    ...     else:
    ...         print chr(ord(i))
    

    Probably this could be done in a better way, but I’m no hexpert at all. And I think this can be completely avoided by downloading from the serial port with the right connection parameters. I think I’m going to use the pySerial library for this task.

    Obviously, I’m solving the problem for one model of one manufacturer, but there are many models and many brands. With my short experience, the best solution I can think of is a modular approach, with an abstract connection class that can be subclassed, with the connection parameters for each model.

    The second part of the story comes when it’s time to process the downloaded data. First of all, take a look at the clean file contents:

       0001 OR.COOR
       0002                   0S        X        0.000 Y         0.000 Z     0.000
       0003                                            Om     397.0370
       0004 POLAR
       0005 INPUT                       th       1.500 ih        0.000
       0006 INPUT                       th       0.000 ih        0.000 Z     0.000
       0007                   1         X       -0.472 Y         1.576 Z     0.004
    END
    E
    E

    Let’s comment it, line by line:

    1. the first line contains the OR.COOR string, but I’m not sure about the other possible values it can take; the line starts with 0001 like all other lines, except the last one
    2. the second line contains the X Y Z coordinates of the origin point (maybe represented by the string 0S?); please note that it uses the same format as for normal points, except that instead of the id number there is this special string
    3. the third line contains information about the orientation angle, but I can’t tell anything more specific about this
    4. the fourth line contains the POLAR string, that is probably referred to the orientation method; I’m not sure about the other values this field can take
    5. the fifth and sixth lines both start with an INPUT string, that should refer to the height of the reflector prism: 1.500 m is in fact the usual height of the reflector
    6. the seventh line contains our only recorded point, with its id (an integer number) and the X Y X coordinates with precision 3
    7. the eighth line indicates that there are no more points to download, and starts with the END string: when downloading, the program should stop here, otherwise the device emits an error (and also a noisy beep), that is represented by the E string on the following lines
    8. attempts to let the download go on even if the device emits the error simply result in more E lines

    Part 3 will follow soon.

  • cat /dev/total_station > file

    This post is one of the “dear lazyweb” ones.

    Here at the department we have a Zeiss Elta R55 total station. This device has its own software for downloading recorded data, but, as usual, it’s a Windows-only, non-free application.

    Is it possible to download data from such a device using a GNU/Linux machine? Nobody knows. I have asked a number of people and no one has ever tried to do this. 🙁 With some good advice from Frankie, today I made my first test.

    With substantial help from Elisa, I recorded 1 point. This point has coordinates:

    X    -0.472
    Y     1.576
    Z     0.004

    I downloaded from the device using this simple command (it’s ttyUSB0 because my laptop has no serial port)

    cat /dev/ttyUSB0 > data

    The total number of points is 7. Points 1-6 contain information about the origin point and other parameters. For now, I’m ignoring them. The resulting data file is binary. You can see it here. I am no expert of binary files, so I used GHex to see its contents. Its dumped form looks like this:

    ...000.....................
    ...........................
    ...........................
    ...000....................0
    S.................0.000.Y..
    .......0.000.Z.....0.000...
    ...0003....................
    ...........................
    ....39..03.0...............
    ...000..P..A...............
    ...........................
    ...........................
    ...0005..NPU...............
    .........t..........500.i..
    .......0.000...............
    ...0006..NPU...............
    .........t........0.000.i..
    .......0.000.Z.....0.000...
    ...000.....................
    .................-0.....Y..
    .........5.6.Z.....0.00....
    .ND........................
    ...........................
    ...........................
    ...............

    Some comments about this first test:

    • anything after the ND means there are no more data.
    • the recorded point seems to be in the part immediately before ND

    If anyone has any other suggestions about this test, please tell me.