Changeset 49


Ignore:
Timestamp:
Sep 19, 2014 4:53:22 PM (10 years ago)
Author:
JohnLightfoot
Message:

almost working

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/templates/uvmapgenerator.html

    r17 r49  
    88fig, ax = plt.subplots()
    99bxby = context['data']['uvmapgenerator']['bxby']
    10 ax.plot(bxby[:,0], bxby[:,1], 'go-')
     10ax.plot(list(bxby[:,0]) + list(-bxby[:,0]), list(bxby[:,1]) + list(-bxby[:,1]),
     11  'go')
    1112ax.grid()
     13plt.xlabel('u (m)')
     14plt.ylabel('v (m)')
     15plt.title('u-v plane')
    1216ax.axis('equal')
    1317
     
    2428          % for k,v in uvmap.items():
    2529             <!-- don't render large arrays-->
    26              % if k not in ['bxby']:
     30             % if k not in ['bxby', 'obs_framework']:
    2731          <tr>
    2832            <td>${k}</td>
Note: See TracChangeset for help on using the changeset viewer.