Index: src/django_gheat/gheat/management/commands/import_kismet.py
===================================================================
--- src/django_gheat/gheat/management/commands/import_kismet.py	(revision 9562)
+++ src/django_gheat/gheat/management/commands/import_kismet.py	(revision 9563)
@@ -178,8 +178,13 @@
       raise CommandError("Not all arguments are provided")
 
+    # Please first the netxml and then the gpsxml files
+    sorted_args = [x for x in args if "netxml" in x] + [x for x in args if "gpsxml" in x]
+    remainder = list(set(args) - set(sorted_args))
+    args = sorted_args + remainder
+    logger.debug("Parsing files in the following order: %s", args)
+
     for xml_file in args:
       if not os.path.isfile(xml_file):
         raise CommandError("xml file '%s' does not exists" % xml_file)
-
 
     for xml_file in args:
