Where to find field names in Aggregate for remote service

Quick code question - We're using FusionTables with ODK Aggregate, thank
you.

We'd like all field names to be lower case when passing to FusionTables,
including the auto generated fields such as Submissiondate, Accuracy, and
Altitude. Is this something we can change in the Aggregate code (I'd prefer
there not in Collect) and where-about generally in the code would you
suggest? When creating the service connection?

Aggregate uses constants, to modify the constants go to the constant
package. Assuming you are using 0.9.x

The Lat, Long, Altitude, Accuracy constants is defined in BasicConsts.

http://code.google.com/p/opendatakit/source/browse/src/org/odk/aggregate/constants/BasicConsts.java?repo=aggregate

The SubmissionDate is defined in TableConsts.

http://code.google.com/p/opendatakit/source/browse/src/org/odk/aggregate/constants/TableConsts.java?repo=aggregate

Waylon

ยทยทยท On Mon, Jun 13, 2011 at 8:57 PM, James Dailey wrote: > Quick code question - We're using FusionTables with ODK Aggregate, thank > you. > > We'd like all field names to be lower case when passing to FusionTables, > including the auto generated fields such as Submissiondate, Accuracy, and > Altitude. Is this something we can change in the Aggregate code (I'd prefer > there not in Collect) and where-about generally in the code would you > suggest? When creating the service connection? > > > -- > Post: opendatakit@googlegroups.com > Unsubscribe: opendatakit+unsubscribe@googlegroups.com > Options: http://groups.google.com/group/opendatakit?hl=en >