示例#1
0
 public void GetOutput_CollaborationsByInstitutionKml(string filePath)
 {
     try
     {
         collaborations_byInstitution.WriteKml(filePath);
     }
     catch (Exception e)
     {
         logger.Error(e, "Error while creating collaboration KML (by institution).");
         throw;
     }
 }
示例#2
0
 public void GetOutput_CollaborationsByCountryKml(string filePath)
 {
     try
     {
         collaborations_byCountry.WriteKml(filePath);
     }
     catch (Exception e)
     {
         logger.Error(e, "Error while creating collaboration KML (by country).");
         throw;
     }
 }