Example #1
0
 def newPlane(self, icao):
     plane = Plane()
     plane.icao = icao
     query = Aircraft.query(Aircraft.icao == icao).fetch()
     if (query == []):
         tmp = Aircraft()
         tmp.icao = icao
         tmp.put()
         del tmp
         del query
     else:
         del query
     self.pushPlane(icao, plane)
     return plane
Example #2
0
	def lookupType(self):
		query = Aircraft.query(Aircraft.icao == self.icao).fetch()
		if len(query) == 0:
			time.sleep(1)
			query = Aircraft.query(Aircraft.icao == self.icao).fetch()

		self.type = query[0].icao_type
		if query[0].operator_flag == '':
			query[0].operator_flag = "@@@"
			query[0].put()
		else:
			self.operator = query[0].operator_flag

		self.registration = query[0].registration
		self.serialNo = query[0].serialNo
		self.manufacturer = query[0].manufacturer
		self.isMilitary = query[0].flag_isMilitary
		self.mantma_id = query[0].mantma_id
Example #3
0
    def lookupType(self):
        query = Aircraft.query(Aircraft.icao == self.icao).fetch()
        if len(query) == 0:
            time.sleep(1)
            query = Aircraft.query(Aircraft.icao == self.icao).fetch()

        self.type = query[0].icao_type
        if query[0].operator_flag == '':
            query[0].operator_flag = "@@@"
            query[0].put()
        else:
            self.operator = query[0].operator_flag

        self.registration = query[0].registration
        self.serialNo = query[0].serialNo
        self.manufacturer = query[0].manufacturer
        self.isMilitary = query[0].flag_isMilitary
        self.mantma_id = query[0].mantma_id
Example #4
0
 def newPlane(self, icao):
     plane = Plane()
     plane.icao = icao
     query = Aircraft.query(Aircraft.icao == icao).fetch()
     if (query == []):
         tmp = Aircraft()
         tmp.icao = icao
         tmp.put()
         del tmp
         del query
     else:
         del query
     self.pushPlane(icao, plane)
     return plane
def UpdateSchema(start=1, linemax=0):
    # The array of puts to put!
    to_put = []

    # Do our start/stop math
    start = int(start)
    linemax = int(linemax)
    stop = start + BATCH_SIZE

    # Open the basestation file
    with open('data/basestation.csv', 'r') as csvfile:
        # If start is 1, set max to total lines in the file
        if start is 1:
            linemax = len(list(csvfile))
        else:
            if stop > int(linemax):
                stop = int(linemax)

        # Grab the BATCH_SIZE number of lines
        lines = csvfile.readlines()[start:stop]

        # For each line, find the existing, then update it!
        for row in lines:
            split = row.split(',')
            mantma_id = int(split[0])

            query = Aircraft().query(Aircraft.mantma_id == mantma_id).get()

            if (query == None):
                tmp = datastore.Aircraft()
            else:
                tmp = query

            try:
                tmp.mantma_id = mantma_id
                tmp.icao = split[3]
                tmp.registration = split[5]
                tmp.icao_type = split[6]
                if str(split[7]).replace('"', '') != " ":
                    tmp.serialNo = split[7]
                else:
                    tmp.serialNo = ''
                tmp.operator_flag = split[8]

                x = countryLookup(tmp, split)
                tmp.country = x['country']
                tmp.country_short = x['country_short']
                tmp.country_flag = x['country_flag']
                tmp.flag_isMilitary = x['flag_isMilitary']
                tmp.flag_new = False
                tmp.flag_reviewed = False
                tmp.flag_updated = False

                tmp.put()
            except:
                logging.warning('Deferred Status: [%s] fails somehow' %
                                (split[3]))

        csvfile.close()

    if (linemax > start):
        logging.info('Deferred Status: %s / %s' % (start, linemax))
        deferred.defer(UpdateSchema, start=stop, linemax=linemax)
    else:
        logging.info('Deferred Status: Done! (%s lines checked)' % (linemax))